Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp1121 ? SE.getSMaxExpr(Smallest, SE.getSMinExpr(Greatest, S)) in calculateSubRanges()
1659 return SE.getMinusSCEV(X, SE.getSMaxExpr(Y, XMinusSIntMax), in computeSafeIterationSpace()
1689 return SE.getAddExpr(SE.getSMaxExpr(SE.getSMinExpr(X, Zero), NegOne), One); in computeSafeIterationSpace()
1726 const SCEV *NewBegin = SE.getSMaxExpr(R1Value.getBegin(), R2.getBegin()); in IntersectSignedRange()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolution.h592 const SCEV *getSMaxExpr(const SCEV *LHS, const SCEV *RHS);
593 const SCEV *getSMaxExpr(SmallVectorImpl<const SCEV *> &Operands);
H A DScalarEvolutionExpressions.h815 return !Changed ? Expr : SE.getSMaxExpr(Operands); in visitSMaxExpr()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp3667 return getSMaxExpr(Op, getNegativeSCEV(Op, Flags)); in getAbsExpr()
3806 const SCEV *ScalarEvolution::getSMaxExpr(const SCEV *LHS, const SCEV *RHS) { in getSMaxExpr() function in ScalarEvolution
3808 return getSMaxExpr(Ops); in getSMaxExpr()
3811 const SCEV *ScalarEvolution::getSMaxExpr(SmallVectorImpl<const SCEV *> &Ops) { in getSMaxExpr() function in ScalarEvolution
5675 return Signed ? getSMaxExpr(LS, RS) : getUMaxExpr(LS, RS); in createNodeForSelectOrPHI()
5698 return getAddExpr(Signed ? getSMaxExpr(LS, RS) : getUMaxExpr(LS, RS), in createNodeForSelectOrPHI()
7112 return getSMaxExpr(getSCEV(II->getArgOperand(0)), in createSCEV()
11840 End = IsSigned ? getSMaxExpr(RHS, Start) : getUMaxExpr(RHS, Start); in howManyLessThans()
14013 getSMaxExpr(RewrittenLHS, getAddExpr(RHS, getOne(RHS->getType()))); in applyLoopGuards()
14019 RewrittenRHS = getSMaxExpr(RewrittenLHS, RHS); in applyLoopGuards()
H A DDependenceAnalysis.cpp1039 SE->getMinusSCEV(S, SE->getSMaxExpr(Size, SE->getOne(Size->getType()))); in isKnownLessThan()
1322 SE->getSMaxExpr(SE->getZero(Delta->getType()), Delta), in weakCrossingSIVtest()
2887 return SE->getSMaxExpr(X, SE->getZero(X->getType())); in getPositivePart()