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

  /src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
OMPIRBuilder.cpp 1273 Type *IVTy = IV->getType();
1274 FunctionCallee StaticInit = getKmpcForStaticInitForType(IVTy, M, *this);
1282 Value *PLowerBound = Builder.CreateAlloca(IVTy, nullptr, "p.lowerbound");
1283 Value *PUpperBound = Builder.CreateAlloca(IVTy, nullptr, "p.upperbound");
1284 Value *PStride = Builder.CreateAlloca(IVTy, nullptr, "p.stride");
1291 Constant *Zero = ConstantInt::get(IVTy, 0);
1292 Constant *One = ConstantInt::get(IVTy, 1);
1311 Value *LowerBound = Builder.CreateLoad(IVTy, PLowerBound);
1312 Value *InclusiveUpperBound = Builder.CreateLoad(IVTy, PUpperBound);
1397 Type *IVTy = IV->getType()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
InductiveRangeCheckElimination.cpp 1421 IntegerType *IVTy =
1439 cast<SCEVConstant>(SE.getConstant(IVTy, -1, true /* isSigned */));
1464 ExitPreLoopAt = Expander.expandCodeFor(ExitPreLoopAtSCEV, IVTy, InsertPt);
1491 ExitMainLoopAt = Expander.expandCodeFor(ExitMainLoopAtSCEV, IVTy, InsertPt);
LoopStrengthReduce.cpp 3186 Type *IVTy = IVSrc->getType();
3187 Type *IntTy = SE.getEffectiveSCEVType(IVTy);
3210 IVOper = Rewriter.expandCodeFor(IVOperExpr, IVTy, InsertPt);
3214 assert(IVTy == IVOper->getType() && "inconsistent IV increment type");
3220 if (IVTy != OperTy) {
3221 assert(SE.getTypeSizeInBits(IVTy) >= SE.getTypeSizeInBits(OperTy) &&
3242 if (IVTy != PostIncTy) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 539 Type *IVTy = IV->getType();
547 if (IVSCEV == SE->getSignExtendExpr(TISCEV, IVTy))
549 if (IVSCEV == SE->getZeroExtendExpr(TISCEV, IVTy))
613 Ext = new ZExtInst(Op1, IVTy, "zext", ICI);
617 Ext = new SExtInst(Op1, IVTy, "sext", ICI);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 333 const auto *IVTy = cast<VectorType>(II.getType());
341 IVTy->getElementCount().getKnownMinValue())
345 if (Cursor->getType() == IVTy)

Completed in 24 milliseconds