Searched refs:StepRec (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopCacheAnalysis.cpp94 const SCEV *StepRec = AR->getStepRecurrence(SE);
95 if (StepRec && SE.isKnownNegative(StepRec))
96 StepRec = SE.getNegativeSCEV(StepRec);
98 return StepRec == &ElemSize;
366 const SCEV *StepRec = AccessFnAR ? AccessFnAR->getStepRecurrence(SE) : nullptr;
368 if (StepRec && SE.isKnownNegative(StepRec))
370 SE.getNegativeSCEV(StepRec),
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp858 const SCEV* StepRec = IndVarBase->getStepRecurrence(SE); local
859 if (!isa<SCEVConstant>(StepRec)) {
863 ConstantInt *StepCI = cast<SCEVConstant>(StepRec)->getValue();
H A DLoopStrengthReduce.cpp3814 if (auto *StepRec =
3816 const APInt &StepInt = StepRec->getAPInt();

Completed in 134 milliseconds