Searched refs:getSMaxExpr (Results 1 – 5 of 5) sorted by relevance
/openbsd/gnu/llvm/llvm/lib/Transforms/Scalar/ |
H A D | InductiveRangeCheckElimination.cpp | 1122 ? SE.getSMaxExpr(Smallest, SE.getSMinExpr(Greatest, S)) in calculateSubRanges() 1664 return SE.getMinusSCEV(X, SE.getSMaxExpr(Y, XMinusSIntMax), in computeSafeIterationSpace() 1694 return SE.getAddExpr(SE.getSMaxExpr(SE.getSMinExpr(X, Zero), NegOne), One); in computeSafeIterationSpace() 1731 const SCEV *NewBegin = SE.getSMaxExpr(R1Value.getBegin(), R2.getBegin()); in IntersectSignedRange()
|
/openbsd/gnu/llvm/llvm/include/llvm/Analysis/ |
H A D | ScalarEvolution.h | 639 const SCEV *getSMaxExpr(const SCEV *LHS, const SCEV *RHS); 640 const SCEV *getSMaxExpr(SmallVectorImpl<const SCEV *> &Operands);
|
H A D | ScalarEvolutionExpressions.h | 837 return !Changed ? Expr : SE.getSMaxExpr(Operands); in visitSMaxExpr()
|
/openbsd/gnu/llvm/llvm/lib/Analysis/ |
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()
|
H A D | ScalarEvolution.cpp | 3834 return getSMaxExpr(Op, getNegativeSCEV(Op, Flags)); in getAbsExpr() 4310 const SCEV *ScalarEvolution::getSMaxExpr(const SCEV *LHS, const SCEV *RHS) { in getSMaxExpr() function in ScalarEvolution 4312 return getSMaxExpr(Ops); in getSMaxExpr() 4315 const SCEV *ScalarEvolution::getSMaxExpr(SmallVectorImpl<const SCEV *> &Ops) { in getSMaxExpr() function in ScalarEvolution 6146 return Signed ? getSMaxExpr(LS, RS) : getUMaxExpr(LS, RS); in createNodeForSelectOrPHIInstWithICmpInstCond() 6169 return getAddExpr(Signed ? getSMaxExpr(LS, RS) : getUMaxExpr(LS, RS), in createNodeForSelectOrPHIInstWithICmpInstCond() 8037 return getSMaxExpr(LHS, RHS); in createSCEV() 13043 End = IsSigned ? getSMaxExpr(RHS, Start) : getUMaxExpr(RHS, Start); in howManyLessThans() 15075 getSMaxExpr(RewrittenLHS, getAddExpr(RHS, getOne(RHS->getType()))); in applyLoopGuards() 15081 RewrittenRHS = getSMaxExpr(RewrittenLHS, RHS); in applyLoopGuards()
|