Home
last modified time | relevance | path

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

/external/llvm/lib/Analysis/
DScalarEvolutionNormalization.cpp206 case scSMaxExpr: return SE.getSMaxExpr(Operands); in TransformImpl()
DScalarEvolution.cpp3023 const SCEV *ScalarEvolution::getSMaxExpr(const SCEV *LHS, in getSMaxExpr() function in ScalarEvolution
3026 return getSMaxExpr(Ops); in getSMaxExpr()
3030 ScalarEvolution::getSMaxExpr(SmallVectorImpl<const SCEV *> &Ops) { in getSMaxExpr() function in ScalarEvolution
3086 return getSMaxExpr(Ops); in getSMaxExpr()
3228 return getNotSCEV(getSMaxExpr(getNotSCEV(LHS), getNotSCEV(RHS))); in getSMinExpr()
4260 return getAddExpr(getSMaxExpr(LS, RS), LDiff); in createNodeForSelectOrPHI()
6829 return getSMaxExpr(NewOps); in computeSCEVAtScope()
8678 End = IsSigned ? getSMaxExpr(RHS, Start) : getUMaxExpr(RHS, Start); in howManyLessThans()
DDependenceAnalysis.cpp1243 SE->getSMaxExpr(SE->getZero(Delta->getType()), Delta), in weakCrossingSIVtest()
2813 return SE->getSMaxExpr(X, SE->getZero(X->getType())); in getPositivePart()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DScalarEvolutionNormalization.cpp176 case scSMaxExpr: return SE.getSMaxExpr(Operands); in TransformImpl()
DScalarEvolution.cpp2354 const SCEV *ScalarEvolution::getSMaxExpr(const SCEV *LHS, in getSMaxExpr() function in ScalarEvolution
2359 return getSMaxExpr(Ops); in getSMaxExpr()
2363 ScalarEvolution::getSMaxExpr(SmallVectorImpl<const SCEV *> &Ops) { in getSMaxExpr() function in ScalarEvolution
2420 return getSMaxExpr(Ops); in getSMaxExpr()
2565 return getNotSCEV(getSMaxExpr(getNotSCEV(LHS), getNotSCEV(RHS))); in getSMinExpr()
3839 return getAddExpr(getSMaxExpr(LS, RS), LDiff); in createSCEV()
5030 return getSMaxExpr(NewOps); in computeSCEVAtScope()
6149 End = isSigned ? getSMaxExpr(RHS, Start) in HowManyLessThans()
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DScalarEvolution.h609 const SCEV *getSMaxExpr(const SCEV *LHS, const SCEV *RHS);
610 const SCEV *getSMaxExpr(SmallVectorImpl<const SCEV *> &Operands);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DInductiveRangeCheckElimination.cpp1179 ? SE.getSMaxExpr(Smallest, SE.getSMinExpr(Greatest, S)) in calculateSubRanges()
1726 return SE.getMinusSCEV(X, SE.getSMaxExpr(Y, XMinusSIntMax), in computeSafeIterationSpace()
1756 return SE.getAddExpr(SE.getSMaxExpr(SE.getSMinExpr(X, Zero), NegOne), One); in computeSafeIterationSpace()
1793 const SCEV *NewBegin = SE.getSMaxExpr(R1Value.getBegin(), R2.getBegin()); in IntersectSignedRange()
/external/llvm/include/llvm/Analysis/
DScalarEvolution.h1244 const SCEV *getSMaxExpr(const SCEV *LHS, const SCEV *RHS);
1245 const SCEV *getSMaxExpr(SmallVectorImpl<const SCEV *> &Operands);
DScalarEvolutionExpressions.h598 return SE.getSMaxExpr(Operands); in visitSMaxExpr()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DScalarEvolution.h585 const SCEV *getSMaxExpr(const SCEV *LHS, const SCEV *RHS);
586 const SCEV *getSMaxExpr(SmallVectorImpl<const SCEV *> &Operands);
DScalarEvolutionExpressions.h671 return !Changed ? Expr : SE.getSMaxExpr(Operands); in visitSMaxExpr()
/external/llvm/lib/Transforms/Scalar/
DInductiveRangeCheckElimination.cpp876 return SE.getSMaxExpr(Smallest, SE.getSMinExpr(Greatest, S)); in calculateSubRanges()
1358 const SCEV *NewBegin = SE.getSMaxExpr(R1Value.getBegin(), R2.getBegin()); in IntersectRange()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DDependenceAnalysis.cpp1026 SE->getMinusSCEV(S, SE->getSMaxExpr(Size, SE->getOne(Size->getType()))); in isKnownLessThan()
1309 SE->getSMaxExpr(SE->getZero(Delta->getType()), Delta), in weakCrossingSIVtest()
2885 return SE->getSMaxExpr(X, SE->getZero(X->getType())); in getPositivePart()
DScalarEvolution.cpp3491 const SCEV *ScalarEvolution::getSMaxExpr(const SCEV *LHS, in getSMaxExpr() function in ScalarEvolution
3494 return getSMaxExpr(Ops); in getSMaxExpr()
3498 ScalarEvolution::getSMaxExpr(SmallVectorImpl<const SCEV *> &Ops) { in getSMaxExpr() function in ScalarEvolution
3554 return getSMaxExpr(Ops); in getSMaxExpr()
3707 return getNotSCEV(getSMaxExpr(NotOps)); in getSMinExpr()
5367 return getAddExpr(getSMaxExpr(LS, RS), LDiff); in createNodeForSelectOrPHI()
8200 return getSMaxExpr(NewOps); in computeSCEVAtScope()
10404 End = IsSigned ? getSMaxExpr(RHS, Start) : getUMaxExpr(RHS, Start); in howManyLessThans()