Searched refs:IncValue (Results 1 – 10 of 10) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | IndVarSimplify.cpp | 231 int64_t IncValue; in handleFloatingPointIV() local 233 !ConvertToSInt(IncValueVal->getValueAPF(), IncValue)) in handleFloatingPointIV() 298 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV() 302 if (IncValue == 0) in handleFloatingPointIV() 306 if (IncValue > 0) { in handleFloatingPointIV() 319 unsigned Leftover = Range % uint32_t(IncValue); in handleFloatingPointIV() 330 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue) in handleFloatingPointIV() 345 unsigned Leftover = Range % uint32_t(-IncValue); in handleFloatingPointIV() 356 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue) in handleFloatingPointIV() 368 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue), in handleFloatingPointIV()
|
| H A D | LICM.cpp | 1378 for (const Value *IncValue : PN.incoming_values()) in isTriviallyReplaceablePHI() local 1379 if (IncValue != &I) in isTriviallyReplaceablePHI()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCasts.cpp | 461 for (Value *IncValue : PN->incoming_values()) in canEvaluateTruncated() 462 if (!canEvaluateTruncated(IncValue, Ty, IC, CxtI)) in canEvaluateTruncated() 1444 for (Value *IncValue : PN->incoming_values()) in canEvaluateSExtd() 1445 if (!canEvaluateSExtd(IncValue, Ty)) return false; in canEvaluateSExtd() 2405 for (Value *IncValue : OldPN->incoming_values()) { in optimizeBitCastFromPhi() 2406 if (isa<Constant>(IncValue)) in optimizeBitCastFromPhi() 2409 if (auto *LI = dyn_cast<LoadInst>(IncValue)) { in optimizeBitCastFromPhi() 2430 if (auto *PNode = dyn_cast<PHINode>(IncValue)) { in optimizeBitCastFromPhi() 2436 auto *BCI = dyn_cast<BitCastInst>(IncValue); in optimizeBitCastFromPhi()
|
| H A D | InstCombinePHI.cpp | 739 for (Value *IncValue : PN.incoming_values()) in foldPHIArgLoadIntoPHI() 740 cast<LoadInst>(IncValue)->setVolatile(false); in foldPHIArgLoadIntoPHI()
|
| H A D | InstCombineShifts.cpp | 521 for (Value *IncValue : PN->incoming_values()) in canEvaluateShifted() 522 if (!canEvaluateShifted(IncValue, NumBits, IsLeftShift, IC, PN)) in canEvaluateShifted()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| H A D | FunctionAttrs.cpp | 908 for (Value *IncValue : PN->incoming_values()) in isFunctionMallocLike() 909 FlowsToReturn.insert(IncValue); in isFunctionMallocLike()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | ValueTracking.cpp | 1479 Value *IncValue = P->getIncomingValue(u); in computeKnownBitsFromOperator() local 1481 if (IncValue == P) continue; in computeKnownBitsFromOperator() 1493 computeKnownBits(IncValue, Known2, MaxAnalysisRecursionDepth - 1, RecQ); in computeKnownBitsFromOperator() 4200 for (Value *IncValue : PN->incoming_values()) { in GetStringLengthH() 4201 uint64_t Len = GetStringLengthH(IncValue, PHIs, CharSize); in GetStringLengthH() 4485 for (Value *IncValue : PN->incoming_values()) in findAllocaForValue() 4486 AddWork(IncValue); in findAllocaForValue()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | Verifier.cpp | 3101 for (Value *IncValue : PN.incoming_values()) { in visitPHINode() 3102 Assert(PN.getType() == IncValue->getType(), in visitPHINode()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
| H A D | SLPVectorizer.cpp | 6259 for (Value *IncValue : PN->incoming_values()) in collectValuesToDemote() 6260 if (!collectValuesToDemote(IncValue, Expr, ToDemote, Roots)) in collectValuesToDemote()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelLowering.cpp | 15009 int IncValue = IncOffset; in PerformDAGCombine() local 15017 --IncValue; in PerformDAGCombine() 15020 DAG.getConstant(IncValue, dl, getPointerTy(MF.getDataLayout())); in PerformDAGCombine()
|