Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DLoopPeel.cpp363 const SCEV *LeftSCEV = SE.getSCEV(LeftVal); in countToEliminateCompares() local
368 if (SE.evaluatePredicate(Pred, LeftSCEV, RightSCEV)) in countToEliminateCompares()
373 if (!isa<SCEVAddRecExpr>(LeftSCEV)) { in countToEliminateCompares()
375 std::swap(LeftSCEV, RightSCEV); in countToEliminateCompares()
381 const SCEVAddRecExpr *LeftAR = cast<SCEVAddRecExpr>(LeftSCEV); in countToEliminateCompares()
396 SE.getConstant(LeftSCEV->getType(), NewPeelCount), SE); in countToEliminateCompares()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp799 const SCEV *LeftSCEV = SE.getSCEV(LeftValue); in parseLoopStructure() local
806 if (!isa<SCEVAddRecExpr>(LeftSCEV)) { in parseLoopStructure()
808 std::swap(LeftSCEV, RightSCEV); in parseLoopStructure()
846 const SCEVAddRecExpr *IndVarBase = cast<SCEVAddRecExpr>(LeftSCEV); in parseLoopStructure()