HomeSort by: relevance | last modified time | path
    Searched refs:ARTy (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 1364 auto *ARTy = LHSS->getType();
1367 if (SE->getTypeSizeInBits(ARTy) > SE->getTypeSizeInBits(MaxIterTy))
1368 MaxIter = SE->getZeroExtendExpr(MaxIter, ARTy);
1369 else if (SE->getTypeSizeInBits(ARTy) < SE->getTypeSizeInBits(MaxIterTy)) {
1370 const SCEV *MinusOne = SE->getMinusOne(ARTy);
1373 MaxIter = SE->getTruncateExpr(MaxIter, ARTy);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
ScalarEvolutionExpander.cpp 2496 Type *ARTy = AR->getType();
2498 unsigned DstBits = SE.getTypeSizeInBits(ARTy);
2510 IntegerType::get(Loc->getContext(), SE.getTypeSizeInBits(ARTy));
2511 Type *ARExpandTy = DL.isNonIntegralPointerType(ARTy) ? ARTy : Ty;

Completed in 21 milliseconds