Searched refs:getSMaxExpr (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | InductiveRangeCheckElimination.cpp | 624 ? SE.getSMaxExpr(Smallest, SE.getSMinExpr(Greatest, S)) in map() 734 return SE.getMinusSCEV(X, SE.getSMaxExpr(Y, XMinusSIntMax), 765 return SE.getAddExpr(SE.getSMaxExpr(SE.getSMinExpr(X, Zero), NegOne), One); 846 const SCEV *NewBegin = SE.getSMaxExpr(R1Value.getBegin(), R2.getBegin()); in isSafeIncreasingBound()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | ScalarEvolution.h | 644 const SCEV *getSMaxExpr(const SCEV *LHS, const SCEV *RHS); 645 const SCEV *getSMaxExpr(SmallVectorImpl<const SCEV *> &Operands);
|
H A D | ScalarEvolutionExpressions.h | 847 return !Changed ? Expr : SE.getSMaxExpr(Operands); in visitSMaxExpr()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ScalarEvolution.cpp | 2135 return getSMaxExpr(Operands); in getSignExtendExprImpl() 3832 return getSMaxExpr(Op, getNegativeSCEV(Op, Flags)); in getAbsExpr() 4365 const SCEV *ScalarEvolution::getSMaxExpr(const SCEV *LHS, const SCEV *RHS) { in getSMaxExpr() function in ScalarEvolution 4367 return getSMaxExpr(Ops); in getSMaxExpr() 4370 const SCEV *ScalarEvolution::getSMaxExpr(SmallVectorImpl<const SCEV *> &Ops) { in getSMaxExpr() function in ScalarEvolution 6114 return Signed ? getSMaxExpr(LS, RS) : getUMaxExpr(LS, RS); in createNodeForSelectOrPHIInstWithICmpInstCond() 6137 return getAddExpr(Signed ? getSMaxExpr(LS, RS) : getUMaxExpr(LS, RS), in createNodeForSelectOrPHIInstWithICmpInstCond() 8104 return getSMaxExpr(LHS, RHS); in createSCEV() 13039 End = IsSigned ? getSMaxExpr(RHSStart, Start) in howManyLessThans() 13136 End = IsSigned ? getSMaxExpr(RHS, Start) : getUMaxExpr(RHS, Start); in howManyLessThans() [all …]
|
H A D | DependenceAnalysis.cpp | 1124 SE->getMinusSCEV(S, SE->getSMaxExpr(Size, SE->getOne(Size->getType()))); in isKnownLessThan() 1407 SE->getSMaxExpr(SE->getZero(Delta->getType()), Delta), in weakCrossingSIVtest() 2985 return SE->getSMaxExpr(X, SE->getZero(X->getType())); in getPositivePart()
|