Home | History | Annotate | Download | only in Scalar

Lines Matching refs:IncValue

262   int64_t IncValue;
264 !ConvertToSInt(IncValueVal->getValueAPF(), IncValue))
330 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
334 if (IncValue == 0)
338 if (IncValue > 0) {
351 unsigned Leftover = Range % uint32_t(IncValue);
362 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
378 unsigned Leftover = Range % uint32_t(-IncValue);
389 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue)
401 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue),