Lines Matching defs:IncValue
223 int64_t IncValue;
225 !ConvertToSInt(IncValueVal->getValueAPF(), IncValue))
290 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
294 if (IncValue == 0)
298 if (IncValue > 0) {
311 unsigned Leftover = Range % uint32_t(IncValue);
322 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
337 unsigned Leftover = Range % uint32_t(-IncValue);
348 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue)
362 NewPHI, ConstantInt::getSigned(Int32Ty, IncValue),