Home
last modified time | relevance | path

Searched refs:LeftSCEV (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DLoopPeel.cpp248 const SCEV *LeftSCEV = SE.getSCEV(LeftVal); in countToEliminateCompares() local
253 if (SE.evaluatePredicate(Pred, LeftSCEV, RightSCEV)) in countToEliminateCompares()
258 if (!isa<SCEVAddRecExpr>(LeftSCEV)) { in countToEliminateCompares()
260 std::swap(LeftSCEV, RightSCEV); in countToEliminateCompares()
266 const SCEVAddRecExpr *LeftAR = cast<SCEVAddRecExpr>(LeftSCEV); in countToEliminateCompares()
281 SE.getConstant(LeftSCEV->getType(), NewPeelCount), SE); in countToEliminateCompares()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp800 const SCEV *LeftSCEV = SE.getSCEV(LeftValue); in parseLoopStructure() local
807 if (!isa<SCEVAddRecExpr>(LeftSCEV)) { in parseLoopStructure()
809 std::swap(LeftSCEV, RightSCEV); in parseLoopStructure()
847 const SCEVAddRecExpr *IndVarBase = cast<SCEVAddRecExpr>(LeftSCEV); in parseLoopStructure()