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

/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp875 // We compute `Smallest` and `Greatest` such that [Smallest, Greatest) is the
878 const SCEV *Smallest = nullptr, *Greatest = nullptr; local
882 Greatest = End;
894 // * if `Greatest` sign-overflows, we know it can only be `INT_SMIN`. In
901 Greatest = SE.getAddExpr(Start, SE.getSCEV(One));
904 auto Clamp = [this, Smallest, Greatest](const SCEV *S) {
905 return SE.getSMaxExpr(Smallest, SE.getSMinExpr(Greatest, S));
916 SE.isKnownPredicate(ICmpInst::ICMP_SLE, Greatest, Range.getEnd());

Completed in 61 milliseconds