HomeSort by: relevance | last modified time | path
    Searched refs:LeftSCEV (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LoopPeel.cpp 209 const SCEV *LeftSCEV = SE.getSCEV(LeftVal);
214 if (SE.evaluatePredicate(Pred, LeftSCEV, RightSCEV))
218 // expression. Normalize LeftSCEV to be the AddRec.
219 if (!isa<SCEVAddRecExpr>(LeftSCEV)) {
221 std::swap(LeftSCEV, RightSCEV);
227 const SCEVAddRecExpr *LeftAR = cast<SCEVAddRecExpr>(LeftSCEV);
242 SE.getConstant(LeftSCEV->getType(), NewPeelCount), SE);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
InductiveRangeCheckElimination.cpp 802 const SCEV *LeftSCEV = SE.getSCEV(LeftValue);
808 // We canonicalize `ICI` such that `LeftSCEV` is an add recurrence.
809 if (!isa<SCEVAddRecExpr>(LeftSCEV)) {
811 std::swap(LeftSCEV, RightSCEV);
849 const SCEVAddRecExpr *IndVarBase = cast<SCEVAddRecExpr>(LeftSCEV);

Completed in 16 milliseconds