Searched refs:IncValue (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp266 int64_t IncValue; local
268 !ConvertToSInt(IncValueVal->getValueAPF(), IncValue))
334 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
338 if (IncValue == 0)
342 if (IncValue > 0) {
355 unsigned Leftover = Range % uint32_t(IncValue);
366 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
382 unsigned Leftover = Range % uint32_t(-IncValue);
393 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue)
405 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue),
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1780 Value *IncValue = PN->getIncomingValue(i); local
1782 if (IncValue == PN) continue;
1783 AllocaInst *IncValueAI = findAllocaForValue(IncValue);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp8166 // alignment), and the value of IncValue (which is actually used to
8171 int IncValue = IncOffset; local
8179 --IncValue;
8181 SDValue Increment = DAG.getConstant(IncValue, getPointerTy());

Completed in 276 milliseconds