Home
last modified time | relevance | path

Searched refs:getSMinExpr (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp624 ? SE.getSMaxExpr(Smallest, SE.getSMinExpr(Greatest, S)) in map()
747 return SE.getMinusSCEV(X, SE.getSMinExpr(X, Y), SCEV::FlagNUW);
765 return SE.getAddExpr(SE.getSMaxExpr(SE.getSMinExpr(X, Zero), NegOne), One);
847 const SCEV *NewEnd = SE.getSMinExpr(R1Value.getEnd(), R2.getEnd()); in isSafeIncreasingBound()
H A DLoopBoundSplit.cpp404 ? SE.getSMinExpr(NewBoundSCEV, SplitBoundSCEV) in splitLoopBound()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolution.h648 const SCEV *getSMinExpr(const SCEV *LHS, const SCEV *RHS);
649 const SCEV *getSMinExpr(SmallVectorImpl<const SCEV *> &Operands);
H A DScalarEvolutionExpressions.h867 return !Changed ? Expr : SE.getSMinExpr(Operands); in visitSMinExpr()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp2134 return getSMinExpr(Operands); in getSignExtendExprImpl()
4383 const SCEV *ScalarEvolution::getSMinExpr(const SCEV *LHS, in getSMinExpr() function in ScalarEvolution
4386 return getSMinExpr(Ops); in getSMinExpr()
4389 const SCEV *ScalarEvolution::getSMinExpr(SmallVectorImpl<const SCEV *> &Ops) { in getSMinExpr() function in ScalarEvolution
6116 return Signed ? getSMinExpr(LS, RS) : getUMinExpr(LS, RS); in createNodeForSelectOrPHIInstWithICmpInstCond()
6142 return getAddExpr(Signed ? getSMinExpr(LS, RS) : getUMinExpr(LS, RS), in createNodeForSelectOrPHIInstWithICmpInstCond()
8108 return getSMinExpr(LHS, RHS); in createSCEV()
13302 End = IsSigned ? getSMinExpr(RHS, Start) : getUMinExpr(RHS, Start); in howManyGreaterThans()
15396 To = SE.getSMinExpr(FromRewritten, RHS); in collect()
H A DDependenceAnalysis.cpp2991 return SE->getSMinExpr(X, SE->getZero(X->getType())); in getNegativePart()