HomeSort by: relevance | last modified time | path
    Searched defs:StepV (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
CanonicalizeFreezeInLoops.cpp 146 Value *StepV = Info.StepInst->getOperand(Info.StepValIdx);
147 if (auto *StepI = dyn_cast<Instruction>(StepV)) {
ScalarEvolutionExpander.cpp 1095 Value *SCEVExpander::expandIVInc(PHINode *PN, Value *StepV, const Loop *L,
1104 if (!isa<ConstantInt>(StepV))
1107 IncV = expandAddToGEP(SE.getSCEV(StepV), GEPPtrTy, IntTy, PN);
1112 Builder.CreateSub(PN, StepV, Twine(IVName) + ".iv.next") :
1113 Builder.CreateAdd(PN, StepV, Twine(IVName) + ".iv.next");
1304 // this AddRec is quadratic, the StepV may itself be an AddRec in this
1307 // (i.e. StepV can never dominate its loop header). Ideally, we could do
1336 Value *StepV = expandCodeForImpl(
1368 Value *IncV = expandIVInc(PN, StepV, L, ExpandTy, IntTy, useSubtract);
1483 // inserting an extra IV increment. StepV might fold into PostLoopOffset
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp 4590 llvm::Value *StepV = Builder.CreateZExtOrBitCast(CondV, CGF.Int64Ty);
4592 CGF.incrementProfileCounter(E, StepV);

Completed in 22 milliseconds