HomeSort by: relevance | last modified time | path
    Searched defs:IncValue (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 231 int64_t IncValue;
233 !ConvertToSInt(IncValueVal->getValueAPF(), IncValue))
298 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
302 if (IncValue == 0)
306 if (IncValue > 0) {
319 unsigned Leftover = Range % uint32_t(IncValue);
330 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
345 unsigned Leftover = Range % uint32_t(-IncValue);
356 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue)
368 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue),
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueTracking.cpp 1479 Value *IncValue = P->getIncomingValue(u);
1481 if (IncValue == P) continue;
1493 computeKnownBits(IncValue, Known2, MaxAnalysisRecursionDepth - 1, RecQ);
4200 for (Value *IncValue : PN->incoming_values()) {
4201 uint64_t Len = GetStringLengthH(IncValue, PHIs, CharSize);
4485 for (Value *IncValue : PN->incoming_values())
4486 AddWork(IncValue);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 15004 // alignment), and the value of IncValue (which is actually used to
15009 int IncValue = IncOffset;
15017 --IncValue;
15020 DAG.getConstant(IncValue, dl, getPointerTy(MF.getDataLayout()));

Completed in 29 milliseconds