Searched refs:StepV (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | CanonicalizeFreezeInLoops.cpp | 173 Value *StepV = Info.StepInst->getOperand(Info.StepValIdx); in run() local 174 if (auto *StepI = dyn_cast<Instruction>(StepV)) { in run()
|
H A D | ScalarEvolutionExpander.cpp | 852 Value *SCEVExpander::expandIVInc(PHINode *PN, Value *StepV, const Loop *L, in expandIVInc() argument 858 IncV = Builder.CreatePtrAdd(PN, StepV, "scevgep"); in expandIVInc() 861 Builder.CreateSub(PN, StepV, Twine(IVName) + ".iv.next") : in expandIVInc() 862 Builder.CreateAdd(PN, StepV, Twine(IVName) + ".iv.next"); in expandIVInc() 1062 Value *StepV = expand(Step, L->getHeader()->getFirstInsertionPt()); in getAddRecExprPHILiterally() local 1090 Value *IncV = expandIVInc(PN, StepV, L, useSubtract); in getAddRecExprPHILiterally() 1177 Value *StepV; in expandAddRecExprLiterally() local 1181 StepV = expand(Step, L->getHeader()->getFirstInsertionPt()); in expandAddRecExprLiterally() 1183 Result = expandIVInc(PN, StepV, L, useSubtract); in expandAddRecExprLiterally()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenPGO.h | 114 llvm::Value *StepV);
|
H A D | CodeGenPGO.cpp | 1192 llvm::Value *StepV) { in emitCounterSetOrIncrement() argument 1201 Builder.getInt32(Counter), StepV}; in emitCounterSetOrIncrement() 1207 if (!StepV) in emitCounterSetOrIncrement()
|
H A D | CodeGenFunction.h | 1628 void incrementProfileCounter(const Stmt *S, llvm::Value *StepV = nullptr) { 1633 PGO.emitCounterSetOrIncrement(Builder, S, StepV);
|
H A D | CGExprScalar.cpp | 5278 llvm::Value *StepV = Builder.CreateZExtOrBitCast(CondV, CGF.Int64Ty); in VisitAbstractConditionalOperator() local 5285 CGF.incrementProfileCounter(E, StepV); in VisitAbstractConditionalOperator()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | ScalarEvolutionExpander.h | 522 Value *expandIVInc(PHINode *PN, Value *StepV, const Loop *L,
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VPlanTransforms.cpp | 593 VPValue *StepV = PtrIV->getOperand(1); in legalizeAndOptimizeInductions() local 596 SE, nullptr, StartV, StepV, InsertPt); in legalizeAndOptimizeInductions()
|