/external/llvm/unittests/Analysis/ |
D | ScalarEvolutionTest.cpp | 149 dyn_cast<SCEVAddRecExpr>(SE.getMulExpr(A_rec, B_rec)); in TEST_F() 154 Sum.push_back(SE.getMulExpr(A[0], B[0])); in TEST_F() 161 Sum.push_back(SE.getMulExpr(A[1], B[0])); in TEST_F() 162 Sum.push_back(SE.getMulExpr(A[0], B[1])); in TEST_F() 163 Sum.push_back(SE.getMulExpr(A[1], B[1])); in TEST_F() 167 Sum.push_back(SE.getMulExpr(A[2], B[0])); in TEST_F() 168 Sum.push_back(SE.getMulExpr(SE.getConstant(Ty, 2), A[1], B[1])); in TEST_F() 169 Sum.push_back(SE.getMulExpr(A[0], B[2])); in TEST_F() 170 Sum.push_back(SE.getMulExpr(SE.getConstant(Ty, 2), A[2], B[1])); in TEST_F() 171 Sum.push_back(SE.getMulExpr(SE.getConstant(Ty, 2), A[1], B[2])); in TEST_F() [all …]
|
/external/llvm/lib/Analysis/ |
D | DependenceAnalysis.cpp | 468 const SCEV *Prod1 = SE->getMulExpr(X->getA(), Y->getB()); in intersectConstraints() 469 const SCEV *Prod2 = SE->getMulExpr(X->getB(), Y->getA()); in intersectConstraints() 473 Prod1 = SE->getMulExpr(X->getC(), Y->getB()); in intersectConstraints() 474 Prod2 = SE->getMulExpr(X->getB(), Y->getC()); in intersectConstraints() 487 const SCEV *C1B2 = SE->getMulExpr(X->getC(), Y->getB()); in intersectConstraints() 488 const SCEV *C1A2 = SE->getMulExpr(X->getC(), Y->getA()); in intersectConstraints() 489 const SCEV *C2B1 = SE->getMulExpr(Y->getC(), X->getB()); in intersectConstraints() 490 const SCEV *C2A1 = SE->getMulExpr(Y->getC(), X->getA()); in intersectConstraints() 491 const SCEV *A1B2 = SE->getMulExpr(X->getA(), Y->getB()); in intersectConstraints() 492 const SCEV *A2B1 = SE->getMulExpr(Y->getA(), X->getB()); in intersectConstraints() [all …]
|
D | ScalarEvolution.cpp | 861 Quotient = SE.getMulExpr(Qs); in visitMulExpr() 1024 Dividend = SE.getMulExpr(Dividend, in BinomialCoefficient() 1033 return SE.getMulExpr(SE.getConstant(MultiplyFactor), in BinomialCoefficient() 1057 Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff)); in evaluateAtIteration() 1126 return getMulExpr(Operands); in getTruncateExpr() 1482 const SCEV *ZMul = getMulExpr(CastedMaxBECount, Step); in getZeroExtendExpr() 1489 getMulExpr(WideMaxBECount, in getZeroExtendExpr() 1503 getMulExpr(WideMaxBECount, in getZeroExtendExpr() 1695 const SCEV *SMul = getMulExpr(CastedMaxBECount, Step); in getSignExtendExpr() 1702 getMulExpr(WideMaxBECount, in getSignExtendExpr() [all …]
|
D | ScalarEvolutionNormalization.cpp | 205 case scMulExpr: return SE.getMulExpr(Operands); in TransformImpl()
|
D | ScalarEvolutionExpander.cpp | 273 S = SE.getMulExpr(NewMulOps); in FactorOutConstant() 1485 SE.getMulExpr(SE.getUnknown(CanonicalIV), in visitAddRecExpr()
|
/external/llvm/include/llvm/Analysis/ |
D | ScalarEvolution.h | 844 const SCEV *getMulExpr(SmallVectorImpl<const SCEV *> &Ops, 846 const SCEV *getMulExpr(const SCEV *LHS, const SCEV *RHS, 849 return getMulExpr(Ops, Flags); 851 const SCEV *getMulExpr(const SCEV *Op0, const SCEV *Op1, const SCEV *Op2, 854 return getMulExpr(Ops, Flags);
|
D | ScalarEvolutionExpressions.h | 595 return SE.getMulExpr(Operands); in visitMulExpr()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopIdiomRecognize.cpp | 488 Index = SE->getMulExpr(Index, SE->getConstant(IntPtr, StoreSize), in getStartForNegStride() 566 NumBytesS = SE->getMulExpr(NumBytesS, SE->getConstant(IntPtr, StoreSize), in processLoopStridedStore() 697 NumBytesS = SE->getMulExpr(NumBytesS, SE->getConstant(IntPtrTy, StoreSize), in processLoopStoreOfLoopLoad()
|
D | LoopStrengthReduce.cpp | 340 const SCEV *NewMul = SE.getMulExpr(Ops); in DoInitialMatch() 348 Good.push_back(SE.getMulExpr(NegOne, S)); in DoInitialMatch() 350 Bad.push_back(SE.getMulExpr(NegOne, S)); in DoInitialMatch() 551 return SE.getMulExpr(LHS, RC); in getExactSDiv() 613 return Found ? SE.getMulExpr(Ops) : nullptr; in getExactSDiv() 3192 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder); in CollectSubexprs() 3205 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder); in CollectSubexprs() 3223 C = C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0; in CollectSubexprs() 3227 Ops.push_back(SE.getMulExpr(C, Remainder)); in CollectSubexprs() 3514 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS); in GenerateICmpZeroScales() [all …]
|
D | AlignmentFromAssumptions.cpp | 110 const SCEV *DiffAlign = SE->getMulExpr(DiffAlignDiv, AlignSCEV); in getNewAlignmentDiff()
|
D | NaryReassociate.cpp | 547 return SE->getMulExpr(LHS, RHS); in getBinarySCEV()
|
D | IndVarSimplify.cpp | 1046 WideUse = SE->getMulExpr(WideLHS, WideRHS); in cloneArithmeticIVUser() 1094 return SE->getMulExpr(LHS, RHS); in getSCEVByOpCode()
|
D | LoopRerollPass.cpp | 859 if (ADR->getStepRecurrence(*SE) != SE->getMulExpr(StepSCEV, ScaleSCEV)) { in findRoots()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCLoopDataPrefetch.cpp | 205 const SCEV *NextLSCEV = SE->getAddExpr(LSCEVAddRec, SE->getMulExpr( in runOnLoop()
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyIndVar.cpp | 373 GetExprForBO = &ScalarEvolution::getMulExpr; in strengthenOverflowingOperation()
|