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

  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 265 int64_t IncValue;
267 !ConvertToSInt(IncValueVal->getValueAPF(), IncValue))
333 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
337 if (IncValue == 0)
341 if (IncValue > 0) {
354 unsigned Leftover = Range % uint32_t(IncValue);
365 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
381 unsigned Leftover = Range % uint32_t(-IncValue);
392 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue)
404 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue),
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
IndVarSimplify.cpp 274 int64_t IncValue;
276 !ConvertToSInt(IncValueVal->getValueAPF(), IncValue))
342 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
346 if (IncValue == 0)
350 if (IncValue > 0) {
363 unsigned Leftover = Range % uint32_t(IncValue);
374 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
390 unsigned Leftover = Range % uint32_t(-IncValue);
401 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue)
413 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue),
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]

Completed in 369 milliseconds