Searched refs:Greatest (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp868 // We compute `Smallest` and `Greatest` such that [Smallest, Greatest) is the
871 const SCEV *Smallest = nullptr, *Greatest = nullptr; local
875 Greatest = End;
887 // * if `Greatest` sign-overflows, we know it can only be `INT_SMIN`. In
894 Greatest = SE.getAddExpr(Start, SE.getSCEV(One));
897 auto Clamp = [this, Smallest, Greatest](const SCEV *S) {
898 return SE.getSMaxExpr(Smallest, SE.getSMinExpr(Greatest, S));
909 SE.isKnownPredicate(ICmpInst::ICMP_SLE, Greatest, Range.getEnd());

Completed in 58 milliseconds