Searched defs:IncValue (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp299 int64_t IncValue; local
301 !ConvertToSInt(IncValueVal->getValueAPF(), IncValue))
367 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
371 if (IncValue == 0)
375 if (IncValue > 0) {
388 unsigned Leftover = Range % uint32_t(IncValue);
399 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
415 unsigned Leftover = Range % uint32_t(-IncValue);
426 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue)
438 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue),
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp10367 // alignment), and the value of IncValue (which is actually used to
10372 int IncValue = IncOffset; local
10380 --IncValue;
10383 DAG.getConstant(IncValue, dl, getPointerTy(MF.getDataLayout()));

Completed in 105 milliseconds