Home | History | Annotate | Download | only in Scalar

Lines Matching refs:IncValue

266   int64_t IncValue;
268 !ConvertToSInt(IncValueVal->getValueAPF(), IncValue))
334 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
338 if (IncValue == 0)
342 if (IncValue > 0) {
355 unsigned Leftover = Range % uint32_t(IncValue);
366 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
382 unsigned Leftover = Range % uint32_t(-IncValue);
393 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue)
405 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue),