HomeSort by relevance Sort by last modified time
    Searched refs:getAddExpr (Results 1 - 12 of 12) 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/Analysis/
ScalarEvolution.cpp 810 Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff));
862 return getAddExpr(Operands);
    [all...]
ScalarEvolutionExpander.cpp 244 SE.getAddExpr(Remainder,
321 SE.getAddExpr(NoAddRecs);
452 expandCodeFor(SE.getAddExpr(ScaledOps), Ty);
525 Value *Idx = expandCodeFor(SE.getAddExpr(Ops), Ty);
617 return expand(SE.getAddExpr(Ops));
    [all...]
ScalarEvolutionNormalization.cpp 173 case scAddExpr: return SE.getAddExpr(Operands);
DependenceAnalysis.cpp 550 const SCEV *Sum = SE->getAddExpr(A1X1, B1Y1);
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 575 const SCEV *getAddExpr(SmallVectorImpl<const SCEV *> &Ops,
577 const SCEV *getAddExpr(const SCEV *LHS, const SCEV *RHS,
582 return getAddExpr(Ops, Flags);
584 const SCEV *getAddExpr(const SCEV *Op0, const SCEV *Op1, const SCEV *Op2,
590 return getAddExpr(Ops, Flags);
    [all...]
ScalarEvolutionExpressions.h 347 return cast<SCEVAddRecExpr>(SE.getAddExpr(this, getStepRecurrence(SE)));
584 return SE.getAddExpr(Operands);
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 337 const SCEV *Sum = SE.getAddExpr(Good);
343 const SCEV *Sum = SE.getAddExpr(Bad);
526 return SE.getAddExpr(Ops);
569 S = SE.getAddExpr(NewOps);
596 S = SE.getAddExpr(NewOps);
    [all...]
IndVarSimplify.cpp 821 SE->getAddExpr(SE->getSCEV(DU.WideDef), ExtendOperExpr));
    [all...]
LoopIdiomRecognize.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
LoopUnrollRuntime.cpp 254 SE->getAddExpr(BECount, SE->getConstant(BECount->getType(), 1));
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 190 milliseconds