Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenPGO.h105 llvm::Value *StepV);
H A DCodeGenPGO.cpp894 llvm::Value *StepV) { in emitCounterIncrement() argument
906 Builder.getInt32(Counter), StepV}; in emitCounterIncrement()
907 if (!StepV) in emitCounterIncrement()
H A DCodeGenFunction.h1334 void incrementProfileCounter(const Stmt *S, llvm::Value *StepV = nullptr) {
1336 PGO.emitCounterIncrement(Builder, S, StepV);
H A DCGExprScalar.cpp4086 llvm::Value *StepV = Builder.CreateZExtOrBitCast(CondV, CGF.Int64Ty); in VisitAbstractConditionalOperator() local
4088 CGF.incrementProfileCounter(E, StepV); in VisitAbstractConditionalOperator()
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp1033 Value *SCEVExpander::expandIVInc(PHINode *PN, Value *StepV, const Loop *L, in expandIVInc() argument
1042 if (!isa<ConstantInt>(StepV)) in expandIVInc()
1045 IncV = expandAddToGEP(SE.getSCEV(StepV), GEPPtrTy, IntTy, PN); in expandIVInc()
1052 Builder.CreateSub(PN, StepV, Twine(IVName) + ".iv.next") : in expandIVInc()
1053 Builder.CreateAdd(PN, StepV, Twine(IVName) + ".iv.next"); in expandIVInc()
1265 Value *StepV = expandCodeFor(Step, IntTy, &L->getHeader()->front()); in getAddRecExprPHILiterally() local
1297 Value *IncV = expandIVInc(PN, StepV, L, ExpandTy, IntTy, useSubtract); in getAddRecExprPHILiterally()
1407 Value *StepV; in expandAddRecExprLiterally() local
1411 StepV = expandCodeFor(Step, IntTy, &L->getHeader()->front()); in expandAddRecExprLiterally()
1413 Result = expandIVInc(PN, StepV, L, ExpandTy, IntTy, useSubtract); in expandAddRecExprLiterally()
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpander.h388 Value *expandIVInc(PHINode *PN, Value *StepV, const Loop *L,