Home
last modified time | relevance | path

Searched refs:StepCI (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopConstrainer.cpp239 ConstantInt *StepCI = cast<SCEVConstant>(StepRec)->getValue(); in parseLoopStructure() local
246 assert(!StepCI->isZero() && "Zero step?"); in parseLoopStructure()
247 bool IsIncreasing = !StepCI->isNegative(); in parseLoopStructure()
252 const SCEV *Step = SE.getSCEV(StepCI); in parseLoopStructure()
264 if (StepCI->isOne()) { in parseLoopStructure()
332 if (StepCI->isMinusOne()) { in parseLoopStructure()
420 Result.IndVarStep = StepCI; in parseLoopStructure()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopBoundSplit.cpp146 ConstantInt *StepCI = cast<SCEVConstant>(StepRecSCEV)->getValue(); in hasProcessableCondition() local
149 if (StepCI->isNegative() || StepCI->isZero()) in hasProcessableCondition()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanTransforms.cpp753 auto *StepCI = dyn_cast<ConstantInt>(Step->getLiveInIRValue()); in getOptimizableIVOf() local
755 return StepCI && IVStepCI && in getOptimizableIVOf()
756 StepCI->getValue() == (-1 * IVStepCI->getValue()); in getOptimizableIVOf()