Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DScalarEvolution.h581 const SCEV *getSMaxExpr(const SCEV *LHS, const SCEV *RHS);
582 const SCEV *getSMaxExpr(SmallVectorImpl<const SCEV *> &Operands);
H A DScalarEvolutionExpressions.h807 return !Changed ? Expr : SE.getSMaxExpr(Operands); in visitSMaxExpr()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
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()
H A DScalarEvolution.cpp3516 return getSMaxExpr(Op, getNegativeSCEV(Op, Flags)); in getAbsExpr()
3651 const SCEV *ScalarEvolution::getSMaxExpr(const SCEV *LHS, const SCEV *RHS) { in getSMaxExpr() function in ScalarEvolution
3653 return getSMaxExpr(Ops); in getSMaxExpr()
3656 const SCEV *ScalarEvolution::getSMaxExpr(SmallVectorImpl<const SCEV *> &Ops) { in getSMaxExpr() function in ScalarEvolution
5467 return getAddExpr(getSMaxExpr(LS, RS), LDiff); in createNodeForSelectOrPHI()
6895 return getSMaxExpr(getSCEV(II->getArgOperand(0)), in createSCEV()
11408 End = IsSigned ? getSMaxExpr(RHS, Start) : getUMaxExpr(RHS, Start); in howManyLessThans()