Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp1100 ? SE.getSMaxExpr(Smallest, SE.getSMinExpr(Greatest, S)) in calculateSubRanges()
1626 return SE.getMinusSCEV(X, SE.getSMaxExpr(Y, XMinusSIntMax), in computeSafeIterationSpace()
1656 return SE.getAddExpr(SE.getSMaxExpr(SE.getSMinExpr(X, Zero), NegOne), One); in computeSafeIterationSpace()
1693 const SCEV *NewBegin = SE.getSMaxExpr(R1Value.getBegin(), R2.getBegin()); in IntersectSignedRange()
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DScalarEvolution.h585 const SCEV *getSMaxExpr(const SCEV *LHS, const SCEV *RHS);
586 const SCEV *getSMaxExpr(SmallVectorImpl<const SCEV *> &Operands);
H A DScalarEvolutionExpressions.h671 return !Changed ? Expr : SE.getSMaxExpr(Operands); in visitSMaxExpr()
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1033 SE->getMinusSCEV(S, SE->getSMaxExpr(Size, SE->getOne(Size->getType()))); in isKnownLessThan()
1316 SE->getSMaxExpr(SE->getZero(Delta->getType()), Delta), in weakCrossingSIVtest()
2892 return SE->getSMaxExpr(X, SE->getZero(X->getType())); in getPositivePart()
H A DScalarEvolution.cpp3496 const SCEV *ScalarEvolution::getSMaxExpr(const SCEV *LHS, in getSMaxExpr() function in ScalarEvolution
3499 return getSMaxExpr(Ops); in getSMaxExpr()
3503 ScalarEvolution::getSMaxExpr(SmallVectorImpl<const SCEV *> &Ops) { in getSMaxExpr() function in ScalarEvolution
3559 return getSMaxExpr(Ops); in getSMaxExpr()
3712 return getNotSCEV(getSMaxExpr(NotOps)); in getSMinExpr()
5372 return getAddExpr(getSMaxExpr(LS, RS), LDiff); in createNodeForSelectOrPHI()
8205 return getSMaxExpr(NewOps); in computeSCEVAtScope()
10605 End = IsSigned ? getSMaxExpr(RHS, Start) : getUMaxExpr(RHS, Start); in howManyLessThans()