Home
last modified time | relevance | path

Searched refs:IncValue (Results 1 – 15 of 15) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
DIndVarSimplify.cpp299 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()
DLICM.cpp526 for (const Value *IncValue : PN.incoming_values()) in isTriviallyReplacablePHI() local
527 if (IncValue != &I) in isTriviallyReplacablePHI()
/external/llvm/lib/Transforms/Utils/
DBasicBlockUtils.cpp138 for (Value *IncValue : PN->incoming_values()) in MergeBlockIntoPredecessor()
139 if (IncValue == PN) in MergeBlockIntoPredecessor()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp420 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()
DInstCombineShifts.cpp178 for (Value *IncValue : PN->incoming_values()) in CanEvaluateShifted()
179 if (!CanEvaluateShifted(IncValue, NumBits, isLeftShift, in CanEvaluateShifted()
DInstCombinePHI.cpp393 for (Value *IncValue : PN.incoming_values()) in FoldPHIArgLoadIntoPHI()
394 cast<LoadInst>(IncValue)->setVolatile(false); in FoldPHIArgLoadIntoPHI()
DInstCombineLoadStoreAlloca.cpp604 for (Value *IncValue : PN->incoming_values()) in isObjectSizeLessThanOrEq()
605 Worklist.push_back(IncValue); in isObjectSizeLessThanOrEq()
/external/llvm/lib/Analysis/
DValueTracking.cpp1454 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()
DBasicAliasAnalysis.cpp518 for (Value *IncValue : PN->incoming_values()) in pointsToConstantMemory()
519 Worklist.push_back(IncValue); in pointsToConstantMemory()
/external/llvm/lib/Transforms/Instrumentation/
DAddressSanitizer.cpp2072 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/
DFunctionAttrs.cpp758 for (Value *IncValue : PN->incoming_values()) in isFunctionMallocLike()
759 FlowsToReturn.insert(IncValue); in isFunctionMallocLike()
/external/llvm/lib/Transforms/ObjCARC/
DObjCARCOpts.cpp108 for (Value *IncValue : PN->incoming_values()) in AreAnyUnderlyingObjectsAnAlloca()
109 Worklist.push_back(IncValue); in AreAnyUnderlyingObjectsAnAlloca()
/external/llvm/lib/IR/
DVerifier.cpp2285 for (Value *IncValue : PN.incoming_values()) { in visitPHINode()
2286 Assert(PN.getType() == IncValue->getType(), in visitPHINode()
/external/llvm/lib/CodeGen/
DCodeGenPrepare.cpp3659 for (Value *IncValue : P->incoming_values()) in optimizeMemoryInst()
3660 worklist.push_back(IncValue); in optimizeMemoryInst()
/external/llvm/lib/Target/PowerPC/
DPPCISelLowering.cpp10372 int IncValue = IncOffset; in PerformDAGCombine() local
10380 --IncValue; in PerformDAGCombine()
10383 DAG.getConstant(IncValue, dl, getPointerTy(MF.getDataLayout())); in PerformDAGCombine()