/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | IndVarSimplify.cpp | 327 int64_t IncValue; in handleFloatingPointIV() local 329 !ConvertToSInt(IncValueVal->getValueAPF(), IncValue)) in handleFloatingPointIV() 394 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV() 398 if (IncValue == 0) in handleFloatingPointIV() 402 if (IncValue > 0) { in handleFloatingPointIV() 415 unsigned Leftover = Range % uint32_t(IncValue); in handleFloatingPointIV() 426 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue) in handleFloatingPointIV() 441 unsigned Leftover = Range % uint32_t(-IncValue); in handleFloatingPointIV() 452 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue) in handleFloatingPointIV() 464 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue), in handleFloatingPointIV()
|
D | LICM.cpp | 1297 for (const Value *IncValue : PN.incoming_values()) in isTriviallyReplaceablePHI() local 1298 if (IncValue != &I) in isTriviallyReplaceablePHI()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 438 for (Value *IncValue : PN->incoming_values()) in canEvaluateTruncated() 439 if (!canEvaluateTruncated(IncValue, Ty, IC, CxtI)) in canEvaluateTruncated() 1351 for (Value *IncValue : PN->incoming_values()) in canEvaluateSExtd() 1352 if (!canEvaluateSExtd(IncValue, Ty)) return false; in canEvaluateSExtd() 2242 for (Value *IncValue : OldPN->incoming_values()) { in optimizeBitCastFromPhi() 2243 if (isa<Constant>(IncValue)) in optimizeBitCastFromPhi() 2246 if (auto *LI = dyn_cast<LoadInst>(IncValue)) { in optimizeBitCastFromPhi() 2261 if (auto *PNode = dyn_cast<PHINode>(IncValue)) { in optimizeBitCastFromPhi() 2267 auto *BCI = dyn_cast<BitCastInst>(IncValue); in optimizeBitCastFromPhi()
|
D | InstCombinePHI.cpp | 652 for (Value *IncValue : PN.incoming_values()) in FoldPHIArgLoadIntoPHI() 653 cast<LoadInst>(IncValue)->setVolatile(false); in FoldPHIArgLoadIntoPHI()
|
D | InstCombineShifts.cpp | 538 for (Value *IncValue : PN->incoming_values()) in canEvaluateShifted() 539 if (!canEvaluateShifted(IncValue, NumBits, IsLeftShift, IC, PN)) in canEvaluateShifted()
|
D | InstCombineLoadStoreAlloca.cpp | 786 for (Value *IncValue : PN->incoming_values()) in isObjectSizeLessThanOrEq() 787 Worklist.push_back(IncValue); in isObjectSizeLessThanOrEq()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | BasicBlockUtils.cpp | 209 for (Value *IncValue : PN.incoming_values()) in MergeBlockIntoPredecessor() 210 if (IncValue == &PN) in MergeBlockIntoPredecessor()
|
D | Local.cpp | 2989 for (Value *IncValue : PN->incoming_values()) { in findAllocaForValue() 2991 if (IncValue == PN) in findAllocaForValue() 2993 AllocaInst *IncValueAI = findAllocaForValue(IncValue, AllocaForValue); in findAllocaForValue()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 897 for (Value *IncValue : PN->incoming_values()) in isFunctionMallocLike() 898 FlowsToReturn.insert(IncValue); in isFunctionMallocLike()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 1519 Value *IncValue = P->getIncomingValue(u); in computeKnownBitsFromOperator() local 1521 if (IncValue == P) continue; in computeKnownBitsFromOperator() 1533 computeKnownBits(IncValue, Known2, MaxDepth - 1, RecQ); in computeKnownBitsFromOperator() 3768 for (Value *IncValue : PN->incoming_values()) { in GetStringLengthH() 3769 uint64_t Len = GetStringLengthH(IncValue, PHIs, CharSize); in GetStringLengthH() 3959 for (Value *IncValue : PN->incoming_values()) in GetUnderlyingObjects() 3960 Worklist.push_back(IncValue); in GetUnderlyingObjects()
|
D | BasicAliasAnalysis.cpp | 699 for (Value *IncValue : PN->incoming_values()) in pointsToConstantMemory() 700 Worklist.push_back(IncValue); in pointsToConstantMemory()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Verifier.cpp | 2837 for (Value *IncValue : PN.incoming_values()) { in visitPHINode() 2838 Assert(PN.getType() == IncValue->getType(), in visitPHINode()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | CodeGenPrepare.cpp | 4811 for (Value *IncValue : P->incoming_values()) in optimizeMemoryInst() 4812 worklist.push_back(IncValue); in optimizeMemoryInst()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | SLPVectorizer.cpp | 5383 for (Value *IncValue : PN->incoming_values()) in collectValuesToDemote() 5384 if (!collectValuesToDemote(IncValue, Expr, ToDemote, Roots)) in collectValuesToDemote()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCISelLowering.cpp | 14028 int IncValue = IncOffset; in PerformDAGCombine() local 14036 --IncValue; in PerformDAGCombine() 14039 DAG.getConstant(IncValue, dl, getPointerTy(MF.getDataLayout())); in PerformDAGCombine()
|