HomeSort by relevance Sort by last modified time
    Searched refs:getAddExpr (Results 1 - 19 of 19) sorted by null

  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 60 const SCEV *P0 = SE.getAddExpr(S0, S0);
61 const SCEV *P1 = SE.getAddExpr(S1, S1);
62 const SCEV *P2 = SE.getAddExpr(S2, S2);
148 EXPECT_EQ(Product->getOperand(0), SE.getAddExpr(Sum));
157 EXPECT_EQ(Product->getOperand(1), SE.getAddExpr(Sum));
166 EXPECT_EQ(Product->getOperand(2), SE.getAddExpr(Sum));
179 EXPECT_EQ(Product->getOperand(3), SE.getAddExpr(Sum));
197 EXPECT_EQ(Product->getOperand(4), SE.getAddExpr(Sum));
210 EXPECT_EQ(Product->getOperand(5), SE.getAddExpr(Sum));
219 EXPECT_EQ(Product->getOperand(6), SE.getAddExpr(Sum))
    [all...]
  /external/llvm/lib/Transforms/Scalar/
NaryReassociate.cpp 219 if (auto *NewI = tryReassociatedAdd(SE->getAddExpr(AExpr, RHSExpr), B, I))
221 if (auto *NewI = tryReassociatedAdd(SE->getAddExpr(BExpr, RHSExpr), A, I))
InductiveRangeCheckElimination.cpp 817 const SCEV *IndVarStart = SE.getAddExpr(StartNext, Addend);
893 Smallest = SE.getAddExpr(End, SE.getSCEV(One));
894 Greatest = SE.getAddExpr(Start, SE.getSCEV(One));
    [all...]
LoopStrengthReduce.cpp 351 const SCEV *Sum = SE.getAddExpr(Good);
357 const SCEV *Sum = SE.getAddExpr(Bad);
586 return SE.getAddExpr(Ops);
629 S = SE.getAddExpr(NewOps);
656 S = SE.getAddExpr(NewOps);
    [all...]
LoopIdiomRecognize.cpp     [all...]
IndVarSimplify.cpp     [all...]
LoopRerollPass.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionNormalization.cpp 183 Result = SE.getAddExpr(Result, TransformedStep);
204 case scAddExpr: return SE.getAddExpr(Operands);
ScalarEvolution.cpp 822 Quotient = SE.getAddExpr(Qs);
823 Remainder = SE.getAddExpr(Rs);
    [all...]
ScalarEvolutionExpander.cpp 240 SE.getAddExpr(Remainder,
299 SE.getAddExpr(NoAddRecs);
432 expandCodeFor(SE.getAddExpr(ScaledOps), Ty);
487 Value *Idx = expandCodeFor(SE.getAddExpr(Ops), Ty);
573 return expand(SE.getAddExpr(Ops));
801 Rest = SE.getAddExpr(Rest,
    [all...]
DependenceAnalysis.cpp 554 const SCEV *Sum = SE->getAddExpr(A1X1, B1Y1);
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 614 const SCEV *getAddExpr(SmallVectorImpl<const SCEV *> &Ops,
616 const SCEV *getAddExpr(const SCEV *LHS, const SCEV *RHS,
621 return getAddExpr(Ops, Flags);
623 const SCEV *getAddExpr(const SCEV *Op0, const SCEV *Op1, const SCEV *Op2,
629 return getAddExpr(Ops, Flags);
    [all...]
ScalarEvolutionExpressions.h 352 return cast<SCEVAddRecExpr>(SE.getAddExpr(this, getStepRecurrence(SE)));
674 return SE.getAddExpr(Operands);
770 return SE.getAddExpr(Operands);
  /external/llvm/lib/Target/PowerPC/
PPCLoopDataPrefetch.cpp 204 const SCEV *NextLSCEV = SE->getAddExpr(LSCEVAddRec, SE->getMulExpr(
PPCCTRLoops.cpp 542 ExitCount = SE->getAddExpr(ExitCount,
  /external/llvm/lib/Transforms/Utils/
LoopUnrollRuntime.cpp 312 SE->getAddExpr(BECountSC, SE->getConstant(BECountSC->getType(), 1));
SimplifyIndVar.cpp 285 GetExprForBO = &ScalarEvolution::getAddExpr;
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp     [all...]
LoopVectorize.cpp     [all...]

Completed in 582 milliseconds