Searched refs:StepV (Results 1 – 7 of 7) sorted by relevance
| /freebsd-14.2/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 | 793 Value *SCEVExpander::expandIVInc(PHINode *PN, Value *StepV, const Loop *L, in expandIVInc() argument 798 IncV = expandAddToGEP(SE.getSCEV(StepV), PN); in expandIVInc() 801 Builder.CreateSub(PN, StepV, Twine(IVName) + ".iv.next") : in expandIVInc() 802 Builder.CreateAdd(PN, StepV, Twine(IVName) + ".iv.next"); in expandIVInc() 1002 Value *StepV = expand(Step, L->getHeader()->getFirstInsertionPt()); in getAddRecExprPHILiterally() local 1033 Value *IncV = expandIVInc(PN, StepV, L, useSubtract); in getAddRecExprPHILiterally() 1120 Value *StepV; in expandAddRecExprLiterally() local 1124 StepV = expand(Step, L->getHeader()->getFirstInsertionPt()); in expandAddRecExprLiterally() 1126 Result = expandIVInc(PN, StepV, L, useSubtract); in expandAddRecExprLiterally()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenPGO.h | 114 llvm::Value *StepV);
|
| H A D | CodeGenPGO.cpp | 1100 llvm::Value *StepV) { in emitCounterIncrement() argument 1109 Builder.getInt32(Counter), StepV}; in emitCounterIncrement() 1110 if (!StepV) in emitCounterIncrement()
|
| H A D | CodeGenFunction.h | 1540 void incrementProfileCounter(const Stmt *S, llvm::Value *StepV = nullptr) { 1544 PGO.emitCounterIncrement(Builder, S, StepV);
|
| H A D | CGExprScalar.cpp | 4936 llvm::Value *StepV = Builder.CreateZExtOrBitCast(CondV, CGF.Int64Ty); in VisitAbstractConditionalOperator() local 4938 CGF.incrementProfileCounter(E, StepV); in VisitAbstractConditionalOperator()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | ScalarEvolutionExpander.h | 494 Value *expandIVInc(PHINode *PN, Value *StepV, const Loop *L,
|