Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopPeel.cpp446 const SCEV *LeftSCEV = SE.getSCEV(LeftVal); in countToEliminateCompares() local
451 if (SE.evaluatePredicate(Pred, LeftSCEV, RightSCEV)) in countToEliminateCompares()
456 if (!isa<SCEVAddRecExpr>(LeftSCEV)) { in countToEliminateCompares()
458 std::swap(LeftSCEV, RightSCEV); in countToEliminateCompares()
464 const SCEVAddRecExpr *LeftAR = cast<SCEVAddRecExpr>(LeftSCEV); in countToEliminateCompares()
479 SE.getConstant(LeftSCEV->getType(), NewPeelCount), SE); in countToEliminateCompares()
H A DLoopConstrainer.cpp178 const SCEV *LeftSCEV = SE.getSCEV(LeftValue); in parseLoopStructure() local
185 if (!isa<SCEVAddRecExpr>(LeftSCEV)) { in parseLoopStructure()
187 std::swap(LeftSCEV, RightSCEV); in parseLoopStructure()
225 const SCEVAddRecExpr *IndVarBase = cast<SCEVAddRecExpr>(LeftSCEV); in parseLoopStructure()