Lines Matching defs:IncValue
226 int64_t IncValue;
228 !ConvertToSInt(IncValueVal->getValueAPF(), IncValue))
293 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
297 if (IncValue == 0)
301 if (IncValue > 0) {
314 unsigned Leftover = Range % uint32_t(IncValue);
325 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
340 unsigned Leftover = Range % uint32_t(-IncValue);
351 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue)
365 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue),