Searched defs:AccumulatedConstant (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp1362 /// and add 13 + A*B*29 to AccumulatedConstant.
1378 APInt &AccumulatedConstant,
1389 if (Scale != 1 || AccumulatedConstant != 0 || C->getValue()->isZero())
1391 AccumulatedConstant += Scale * C->getValue()->getValue();
1405 CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant,
1617 APInt AccumulatedConstant(BitWidth, 0);
1618 if (CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant,
1630 if (AccumulatedConstant != 0)
1631 Ops.push_back(getConstant(AccumulatedConstant));
1376 CollectAddOperandsWithScales(DenseMap<const SCEV *, APInt> &M, SmallVector<const SCEV *, 8> &NewOps, APInt &AccumulatedConstant, const SCEV *const *Ops, size_t NumOperands, const APInt &Scale, ScalarEvolution &SE) argument

Completed in 38 milliseconds