Searched refs:StepV (Results 1 – 7 of 7) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/Transforms/Utils/ |
| H A D | CanonicalizeFreezeInLoops.cpp | 144 Value *StepV = Info.StepInst->getOperand(Info.StepValIdx); in run() local 145 if (auto *StepI = dyn_cast<Instruction>(StepV)) { in run()
|
| H A D | ScalarEvolutionExpander.cpp | 1078 Value *SCEVExpander::expandIVInc(PHINode *PN, Value *StepV, const Loop *L, in expandIVInc() argument 1087 if (!isa<ConstantInt>(StepV)) in expandIVInc() 1090 IncV = expandAddToGEP(SE.getSCEV(StepV), GEPPtrTy, IntTy, PN); in expandIVInc() 1095 Builder.CreateSub(PN, StepV, Twine(IVName) + ".iv.next") : in expandIVInc() 1096 Builder.CreateAdd(PN, StepV, Twine(IVName) + ".iv.next"); in expandIVInc() 1299 Value *StepV = expandCodeForImpl( in getAddRecExprPHILiterally() local 1331 Value *IncV = expandIVInc(PN, StepV, L, ExpandTy, IntTy, useSubtract); in getAddRecExprPHILiterally() 1453 Value *StepV; in expandAddRecExprLiterally() local 1457 StepV = expandCodeForImpl( in expandAddRecExprLiterally() 1460 Result = expandIVInc(PN, StepV, L, ExpandTy, IntTy, useSubtract); in expandAddRecExprLiterally()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CodeGenPGO.h | 108 llvm::Value *StepV);
|
| H A D | CodeGenPGO.cpp | 951 llvm::Value *StepV) { in emitCounterIncrement() argument 963 Builder.getInt32(Counter), StepV}; in emitCounterIncrement() 964 if (!StepV) in emitCounterIncrement()
|
| H A D | CodeGenFunction.h | 1528 void incrementProfileCounter(const Stmt *S, llvm::Value *StepV = nullptr) { 1531 PGO.emitCounterIncrement(Builder, S, StepV);
|
| H A D | CGExprScalar.cpp | 4667 llvm::Value *StepV = Builder.CreateZExtOrBitCast(CondV, CGF.Int64Ty); in VisitAbstractConditionalOperator() local 4669 CGF.incrementProfileCounter(E, StepV); in VisitAbstractConditionalOperator()
|
| /llvm-project-15.0.7/llvm/include/llvm/Transforms/Utils/ |
| H A D | ScalarEvolutionExpander.h | 491 Value *expandIVInc(PHINode *PN, Value *StepV, const Loop *L, Type *ExpandTy,
|