Home
last modified time | relevance | path

Searched refs:StepV (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCanonicalizeFreezeInLoops.cpp173 Value *StepV = Info.StepInst->getOperand(Info.StepValIdx); in run() local
174 if (auto *StepI = dyn_cast<Instruction>(StepV)) { in run()
H A DScalarEvolutionExpander.cpp793 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 DCodeGenPGO.h114 llvm::Value *StepV);
H A DCodeGenPGO.cpp1100 llvm::Value *StepV) { in emitCounterIncrement() argument
1109 Builder.getInt32(Counter), StepV}; in emitCounterIncrement()
1110 if (!StepV) in emitCounterIncrement()
H A DCodeGenFunction.h1540 void incrementProfileCounter(const Stmt *S, llvm::Value *StepV = nullptr) {
1544 PGO.emitCounterIncrement(Builder, S, StepV);
H A DCGExprScalar.cpp4936 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 DScalarEvolutionExpander.h494 Value *expandIVInc(PHINode *PN, Value *StepV, const Loop *L,