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

  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 299 int64_t IncValue;
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...]
LICM.cpp 526 for (const Value *IncValue : PN.incoming_values())
527 if (IncValue != &I)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 604 for (Value *IncValue : PN->incoming_values())
605 Worklist.push_back(IncValue);
    [all...]
InstCombinePHI.cpp 393 for (Value *IncValue : PN.incoming_values())
394 cast<LoadInst>(IncValue)->setVolatile(false);
    [all...]
InstCombineShifts.cpp 178 for (Value *IncValue : PN->incoming_values())
179 if (!CanEvaluateShifted(IncValue, NumBits, isLeftShift,
    [all...]
InstCombineCasts.cpp 420 for (Value *IncValue : PN->incoming_values())
421 if (!canEvaluateTruncated(IncValue, Ty, IC, CxtI))
    [all...]
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 138 for (Value *IncValue : PN->incoming_values())
139 if (IncValue == PN)
    [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 518 for (Value *IncValue : PN->incoming_values())
519 Worklist.push_back(IncValue);
    [all...]
ValueTracking.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 758 for (Value *IncValue : PN->incoming_values())
759 FlowsToReturn.insert(IncValue);
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 108 for (Value *IncValue : PN->incoming_values())
109 Worklist.push_back(IncValue);
    [all...]
  /external/llvm/lib/IR/
Verifier.cpp     [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]

Completed in 1109 milliseconds