Searched refs:IncValue (Results 1 – 15 of 15) sorted by relevance
/external/llvm/lib/Transforms/Scalar/ |
D | IndVarSimplify.cpp | 299 int64_t IncValue; in handleFloatingPointIV() local 301 !ConvertToSInt(IncValueVal->getValueAPF(), IncValue)) in handleFloatingPointIV() 367 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV() 371 if (IncValue == 0) in handleFloatingPointIV() 375 if (IncValue > 0) { in handleFloatingPointIV() 388 unsigned Leftover = Range % uint32_t(IncValue); in handleFloatingPointIV() 399 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue) in handleFloatingPointIV() 415 unsigned Leftover = Range % uint32_t(-IncValue); in handleFloatingPointIV() 426 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue) in handleFloatingPointIV() 438 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue), in handleFloatingPointIV()
|
D | LICM.cpp | 526 for (const Value *IncValue : PN.incoming_values()) in isTriviallyReplacablePHI() local 527 if (IncValue != &I) in isTriviallyReplacablePHI()
|
/external/llvm/lib/Transforms/Utils/ |
D | BasicBlockUtils.cpp | 138 for (Value *IncValue : PN->incoming_values()) in MergeBlockIntoPredecessor() 139 if (IncValue == PN) in MergeBlockIntoPredecessor()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 420 for (Value *IncValue : PN->incoming_values()) in canEvaluateTruncated() 421 if (!canEvaluateTruncated(IncValue, Ty, IC, CxtI)) in canEvaluateTruncated() 1105 for (Value *IncValue : PN->incoming_values()) in canEvaluateSExtd() 1106 if (!canEvaluateSExtd(IncValue, Ty)) return false; in canEvaluateSExtd()
|
D | InstCombineShifts.cpp | 178 for (Value *IncValue : PN->incoming_values()) in CanEvaluateShifted() 179 if (!CanEvaluateShifted(IncValue, NumBits, isLeftShift, in CanEvaluateShifted()
|
D | InstCombinePHI.cpp | 393 for (Value *IncValue : PN.incoming_values()) in FoldPHIArgLoadIntoPHI() 394 cast<LoadInst>(IncValue)->setVolatile(false); in FoldPHIArgLoadIntoPHI()
|
D | InstCombineLoadStoreAlloca.cpp | 604 for (Value *IncValue : PN->incoming_values()) in isObjectSizeLessThanOrEq() 605 Worklist.push_back(IncValue); in isObjectSizeLessThanOrEq()
|
/external/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 1454 for (Value *IncValue : P->incoming_values()) { in computeKnownBitsFromOperator() 1456 if (IncValue == P) continue; in computeKnownBitsFromOperator() 1462 computeKnownBits(IncValue, KnownZero2, KnownOne2, DL, in computeKnownBitsFromOperator() 2961 for (Value *IncValue : PN->incoming_values()) { in GetStringLengthH() 2962 uint64_t Len = GetStringLengthH(IncValue, PHIs); in GetStringLengthH() 3096 for (Value *IncValue : PN->incoming_values()) in GetUnderlyingObjects() 3097 Worklist.push_back(IncValue); in GetUnderlyingObjects()
|
D | BasicAliasAnalysis.cpp | 518 for (Value *IncValue : PN->incoming_values()) in pointsToConstantMemory() 519 Worklist.push_back(IncValue); in pointsToConstantMemory()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | AddressSanitizer.cpp | 2072 for (Value *IncValue : PN->incoming_values()) { in findAllocaForValue() 2074 if (IncValue == PN) continue; in findAllocaForValue() 2075 AllocaInst *IncValueAI = findAllocaForValue(IncValue); in findAllocaForValue()
|
/external/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 758 for (Value *IncValue : PN->incoming_values()) in isFunctionMallocLike() 759 FlowsToReturn.insert(IncValue); in isFunctionMallocLike()
|
/external/llvm/lib/Transforms/ObjCARC/ |
D | ObjCARCOpts.cpp | 108 for (Value *IncValue : PN->incoming_values()) in AreAnyUnderlyingObjectsAnAlloca() 109 Worklist.push_back(IncValue); in AreAnyUnderlyingObjectsAnAlloca()
|
/external/llvm/lib/IR/ |
D | Verifier.cpp | 2285 for (Value *IncValue : PN.incoming_values()) { in visitPHINode() 2286 Assert(PN.getType() == IncValue->getType(), in visitPHINode()
|
/external/llvm/lib/CodeGen/ |
D | CodeGenPrepare.cpp | 3659 for (Value *IncValue : P->incoming_values()) in optimizeMemoryInst() 3660 worklist.push_back(IncValue); in optimizeMemoryInst()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCISelLowering.cpp | 10372 int IncValue = IncOffset; in PerformDAGCombine() local 10380 --IncValue; in PerformDAGCombine() 10383 DAG.getConstant(IncValue, dl, getPointerTy(MF.getDataLayout())); in PerformDAGCombine()
|