HomeSort by relevance Sort by last modified time
    Searched refs:IncValue (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 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),
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp     [all...]

Completed in 111 milliseconds