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

/external/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp267 int64_t IncValue; local
269 !ConvertToSInt(IncValueVal->getValueAPF(), IncValue))
335 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
339 if (IncValue == 0)
343 if (IncValue > 0) {
356 unsigned Leftover = Range % uint32_t(IncValue);
367 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
383 unsigned Leftover = Range % uint32_t(-IncValue);
394 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue)
406 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue),
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1950 Value *IncValue = PN->getIncomingValue(i); local
1952 if (IncValue == PN) continue;
1953 AllocaInst *IncValueAI = findAllocaForValue(IncValue);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp10045 // alignment), and the value of IncValue (which is actually used to
10050 int IncValue = IncOffset; local
10058 --IncValue;
10060 SDValue Increment = DAG.getConstant(IncValue, getPointerTy());

Completed in 144 milliseconds