Home
last modified time | relevance | path

Searched refs:getSMaxExpr (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp624 ? SE.getSMaxExpr(Smallest, SE.getSMinExpr(Greatest, S)) in calculateSubRanges()
734 return SE.getMinusSCEV(X, SE.getSMaxExpr(Y, XMinusSIntMax), in computeSafeIterationSpace()
765 return SE.getAddExpr(SE.getSMaxExpr(SE.getSMinExpr(X, Zero), NegOne), One); in computeSafeIterationSpace()
846 const SCEV *NewBegin = SE.getSMaxExpr(R1Value.getBegin(), R2.getBegin()); in IntersectSignedRange()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolution.h643 const SCEV *getSMaxExpr(const SCEV *LHS, const SCEV *RHS);
644 const SCEV *getSMaxExpr(SmallVectorImpl<const SCEV *> &Operands);
H A DScalarEvolutionExpressions.h847 return !Changed ? Expr : SE.getSMaxExpr(Operands); in visitSMaxExpr()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1124 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 DScalarEvolution.cpp2133 return getSMaxExpr(Operands); in getSignExtendExprImpl()
3827 return getSMaxExpr(Op, getNegativeSCEV(Op, Flags)); in getAbsExpr()
4360 const SCEV *ScalarEvolution::getSMaxExpr(const SCEV *LHS, const SCEV *RHS) { in getSMaxExpr() function in ScalarEvolution
4362 return getSMaxExpr(Ops); in getSMaxExpr()
4365 const SCEV *ScalarEvolution::getSMaxExpr(SmallVectorImpl<const SCEV *> &Ops) { in getSMaxExpr() function in ScalarEvolution
6107 return Signed ? getSMaxExpr(LS, RS) : getUMaxExpr(LS, RS); in createNodeForSelectOrPHIInstWithICmpInstCond()
6130 return getAddExpr(Signed ? getSMaxExpr(LS, RS) : getUMaxExpr(LS, RS), in createNodeForSelectOrPHIInstWithICmpInstCond()
8088 return getSMaxExpr(LHS, RHS); in createSCEV()
13016 End = IsSigned ? getSMaxExpr(RHS, Start) : getUMaxExpr(RHS, Start); in howManyLessThans()
15318 To = getSMaxExpr(FromRewritten, RHS); in applyLoopGuards()