Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DLoopPeel.cpp209 const SCEV *LeftSCEV = SE.getSCEV(LeftVal); in countToEliminateCompares() local
214 if (SE.evaluatePredicate(Pred, LeftSCEV, RightSCEV)) in countToEliminateCompares()
219 if (!isa<SCEVAddRecExpr>(LeftSCEV)) { in countToEliminateCompares()
221 std::swap(LeftSCEV, RightSCEV); in countToEliminateCompares()
227 const SCEVAddRecExpr *LeftAR = cast<SCEVAddRecExpr>(LeftSCEV); in countToEliminateCompares()
242 SE.getConstant(LeftSCEV->getType(), NewPeelCount), SE); in countToEliminateCompares()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp802 const SCEV *LeftSCEV = SE.getSCEV(LeftValue); in parseLoopStructure() local
809 if (!isa<SCEVAddRecExpr>(LeftSCEV)) { in parseLoopStructure()
811 std::swap(LeftSCEV, RightSCEV); in parseLoopStructure()
849 const SCEVAddRecExpr *IndVarBase = cast<SCEVAddRecExpr>(LeftSCEV); in parseLoopStructure()