Home
last modified time | relevance | path

Searched refs:StepC (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Analysis/
DScalarEvolution.cpp5314 const SCEVConstant *StepC = dyn_cast<SCEVConstant>(Step); in HowFarToZero() local
5315 if (StepC == 0) in HowFarToZero()
5323 bool CountDown = StepC->getValue()->getValue().isNegative(); in HowFarToZero()
5329 if (StepC->getValue()->equalsInt(1) || StepC->getValue()->isAllOnesValue()) { in HowFarToZero()
5359 return SolveLinEquationWithOverflow(StepC->getValue()->getValue(), in HowFarToZero()
/external/llvm/lib/Analysis/
DScalarEvolution.cpp7109 const SCEVConstant *StepC = dyn_cast<SCEVConstant>(Step); in howFarToZero() local
7110 if (!StepC || StepC->getValue()->equalsInt(0)) in howFarToZero()
7118 bool CountDown = StepC->getAPInt().isNegative(); in howFarToZero()
7124 if (StepC->getValue()->equalsInt(1) || StepC->getValue()->isAllOnesValue()) { in howFarToZero()
7143 const APInt &StepV = StepC->getAPInt(); in howFarToZero()
7209 StepC->getValue()->getValue(), -StartC->getValue()->getValue(), *this); in howFarToZero()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DScalarEvolution.cpp8490 const SCEVConstant *StepC = dyn_cast<SCEVConstant>(Step); in howFarToZero() local
8491 if (!StepC || StepC->getValue()->isZero()) in howFarToZero()
8499 bool CountDown = StepC->getAPInt().isNegative(); in howFarToZero()
8505 if (StepC->getValue()->isOne() || StepC->getValue()->isMinusOne()) { in howFarToZero()
8544 const SCEV *E = SolveLinEquationWithOverflow(StepC->getAPInt(), in howFarToZero()