53#define DEBUG_TYPE "loop-utils"
68 "Must start with an empty predecessors list!");
73 bool IsDedicatedExit =
true;
75 if (L->contains(PredBB)) {
82 IsDedicatedExit =
false;
85 assert(!InLoopPredecessors.
empty() &&
"Must have *some* loop predecessor!");
92 BB, InLoopPredecessors,
".loopexit", DT, LI, MSSAU, PreserveLCSSA);
96 dbgs() <<
"WARNING: Can't create a dedicated exit block for loop: "
99 LLVM_DEBUG(
dbgs() <<
"LoopSimplify: Creating dedicated exit block "
100 << NewExitBB->getName() <<
"\n");
107 for (
auto *BB : L->blocks())
110 if (L->contains(SuccBB))
114 if (!Visited.
insert(SuccBB).second)
117 Changed |= RewriteExit(SuccBB);
127 for (
auto *
Block : L->getBlocks())
130 for (
auto &Inst : *
Block) {
131 auto Users = Inst.users();
134 return !L->contains(
Use->getParent());
221 for (
unsigned i = 1, ie = LoopID->
getNumOperands(); i < ie; ++i) {
224 if (
Node->getNumOperands() == 2) {
257 if (
Node->getNumOperands() == 1)
259 if (S->getString() == StringMD)
270std::optional<ElementCount>
272 std::optional<int> Width =
288 const char *InheritOptionsExceptPrefix,
bool AlwaysNew) {
297 bool InheritAllAttrs = !InheritOptionsExceptPrefix;
298 bool InheritSomeAttrs =
299 InheritOptionsExceptPrefix && InheritOptionsExceptPrefix[0] !=
'\0';
304 if (InheritAllAttrs || InheritSomeAttrs) {
308 auto InheritThisAttribute = [InheritSomeAttrs,
309 InheritOptionsExceptPrefix](
MDNode *
Op) {
310 if (!InheritSomeAttrs)
314 if (
Op->getNumOperands() == 0)
322 return !AttrName.
starts_with(InheritOptionsExceptPrefix);
325 if (InheritThisAttribute(
Op))
335 bool HasAnyFollowup =
false;
336 for (
StringRef OptionName : FollowupOptions) {
341 HasAnyFollowup =
true;
350 if (!AlwaysNew && !HasAnyFollowup)
364 return FollowupLoopID;
378 if (IsVectorBody && IsEpilogue)
379 return "vectorized epilogue ";
381 return "vectorized ";
391 std::optional<int>
Count =
412 std::optional<int>
Count =
432 std::optional<ElementCount> VectorizeWidth =
434 std::optional<int> InterleaveCount =
439 if (
Enable && VectorizeWidth && VectorizeWidth->isScalar() &&
440 InterleaveCount == 1)
449 if ((VectorizeWidth && VectorizeWidth->isScalar()) && InterleaveCount == 1)
452 if ((VectorizeWidth && VectorizeWidth->isVector()) || InterleaveCount > 1)
488 const Loop *CurLoop) {
497 AddRegionToWorklist(
N);
499 for (
size_t I = 0;
I < Worklist.
size();
I++) {
501 AddRegionToWorklist(Child);
509 assert(LatchIdx != -1 &&
"LatchBlock is not a case in this PHINode");
513 if (U !=
Cond && U != IncV)
return false;
516 if (U !=
Cond && U != PN)
return false;
523 assert((!DT || L->isLCSSAForm(*DT)) &&
"Expected LCSSA!");
524 auto *Preheader = L->getLoopPreheader();
525 assert(Preheader &&
"Preheader should exist!");
527 std::unique_ptr<MemorySSAUpdater> MSSAU;
529 MSSAU = std::make_unique<MemorySSAUpdater>(MSSA);
547 "Preheader must end with a side-effect-free terminator");
549 "Preheader must have a single successor");
577 auto *ExitBlock = L->getUniqueExitBlock();
580 assert(ExitBlock &&
"Should have a unique exit block!");
581 assert(L->hasDedicatedExits() &&
"Loop should have dedicated exits!");
583 Builder.CreateCondBr(Builder.getFalse(), L->getHeader(), ExitBlock);
589 for (
PHINode &
P : ExitBlock->phis()) {
594 P.setIncomingBlock(PredIndex, Preheader);
598 P.removeIncomingValueIf([](
unsigned Idx) {
return Idx != 0; },
601 assert((
P.getNumIncomingValues() == 1 &&
602 P.getIncomingBlock(PredIndex) == Preheader) &&
603 "Should have exactly one value and that's from the preheader!");
617 Builder.SetInsertPoint(Preheader->getTerminator());
618 Builder.CreateBr(ExitBlock);
620 Preheader->getTerminator()->eraseFromParent();
623 "Loop should have either zero or one exit blocks.");
625 Builder.SetInsertPoint(OldTerm);
626 Builder.CreateUnreachable();
627 Preheader->getTerminator()->eraseFromParent();
637 MSSAU->removeBlocks(DeadBlockSet);
655 for (
auto *
Block : L->blocks())
660 if (L->contains(Usr->getParent()))
666 "Unexpected user in reachable block");
677 DVR.getDebugLoc().get());
681 DVR.removeFromParent();
696 ExitBlock->getFirstInsertionPt();
697 assert(InsertDbgValueBefore != ExitBlock->end() &&
698 "There should be a non-PHI instruction in exit block, else these "
699 "instructions will have no parent.");
706 ExitBlock->insertDbgRecordBefore(DVR, InsertDbgValueBefore);
711 for (
auto *
Block : L->blocks())
712 Block->dropAllReferences();
726 BB->eraseFromParent();
733 if (
Loop *ParentLoop = L->getParentLoop()) {
735 assert(
I != ParentLoop->end() &&
"Couldn't find loop");
736 ParentLoop->removeChildLoop(
I);
739 assert(
I != LI->
end() &&
"Couldn't find loop");
748 auto *Latch = L->getLoopLatch();
749 assert(Latch &&
"multiple latches not yet supported");
750 auto *Header = L->getHeader();
751 Loop *OutermostLoop = L->getOutermostLoop();
756 std::unique_ptr<MemorySSAUpdater> MSSAU;
758 MSSAU = std::make_unique<MemorySSAUpdater>(MSSA);
771 if (L->isLoopExiting(Latch)) {
776 const unsigned ExitIdx = L->contains(BI->getSuccessor(0)) ? 1 : 0;
777 BasicBlock *ExitBB = BI->getSuccessor(ExitIdx);
780 Header->removePredecessor(Latch,
true);
783 auto *NewBI = Builder.CreateBr(ExitBB);
786 NewBI->copyMetadata(*BI, {LLVMContext::MD_dbg,
787 LLVMContext::MD_annotation});
789 BI->eraseFromParent();
800 auto *BackedgeBB =
SplitEdge(Latch, Header, &DT, &LI, MSSAU.get());
804 true, &DTU, MSSAU.get());
816 if (OutermostLoop != L)
830 if (!LatchBR || !L->isLoopExiting(Latch))
835 "At least one edge out of the latch must go to the header");
848 D.L->getHeader()->getParent()->printAsOperand(OS,
false);
849 return OS <<
" " << *
D.L;
859 if (!ExitingBranch) {
860 LLVM_DEBUG(
dbgs() <<
"estimateLoopTripCount: Failed to find exiting "
861 <<
"latch branch of required form in " <<
DbgLoop(L)
871 LLVM_DEBUG(
dbgs() <<
"estimateLoopTripCount: Failed to extract branch "
872 <<
"weights for " <<
DbgLoop(L) <<
"\n");
881 LLVM_DEBUG(
dbgs() <<
"estimateLoopTripCount: Failed because of zero exit "
882 <<
"probability for " <<
DbgLoop(L) <<
"\n");
891 if (ExitCount >= std::numeric_limits<unsigned>::max())
892 return std::numeric_limits<unsigned>::max();
896 LLVM_DEBUG(
dbgs() <<
"estimateLoopTripCount: Estimated trip count of " << TC
897 <<
" for " <<
DbgLoop(L) <<
"\n");
901std::optional<unsigned>
903 unsigned *EstimatedLoopInvocationWeight) {
936 if (EstimatedLoopInvocationWeight) {
937 uint64_t LoopWeight = 0, ExitWeight = 0;
944 *EstimatedLoopInvocationWeight = ExitWeight;
956 if (std::optional<unsigned> TC =
960 <<
"count of " << *TC <<
" for " <<
DbgLoop(L) <<
"\n");
969 Loop *L,
unsigned EstimatedTripCount,
970 std::optional<unsigned> EstimatedloopInvocationWeight) {
990 if (!EstimatedloopInvocationWeight)
994 unsigned LatchExitWeight = 1;
995 unsigned BackedgeTakenWeight = 0;
997 if (EstimatedTripCount != 0) {
998 LatchExitWeight = *EstimatedloopInvocationWeight;
999 BackedgeTakenWeight = (EstimatedTripCount - 1) * LatchExitWeight;
1004 std::swap(BackedgeTakenWeight, LatchExitWeight);
1017 bool FirstTargetIsLoop = LatchBranch->
getSuccessor(0) == L->getHeader();
1025 bool FirstTargetIsLoop = LatchBranch->
getSuccessor(0) == L->getHeader();
1031 bool ForFirstTarget) {
1032 uint64_t Weight0, Weight1;
1035 uint64_t Denominator = Weight0 + Weight1;
1036 if (Denominator == 0)
1038 if (!ForFirstTarget)
1044 assert(Src != Dst &&
"Passed in same source as destination");
1057 "Missing weights in branch_weights");
1063 Numerator += Weight;
1071 if (
Total == 0 ||
Total > std::numeric_limits<uint32_t>::max())
1078 bool ForFirstTarget) {
1081 if (!ForFirstTarget)
1095 const SCEV *InnerLoopBECountSC = SE.
getExitCount(InnerLoop, InnerLoopLatch);
1116 return Intrinsic::vector_reduce_add;
1118 return Intrinsic::vector_reduce_mul;
1120 return Intrinsic::vector_reduce_and;
1122 return Intrinsic::vector_reduce_or;
1124 return Intrinsic::vector_reduce_xor;
1129 return Intrinsic::vector_reduce_fadd;
1131 return Intrinsic::vector_reduce_fmul;
1133 return Intrinsic::vector_reduce_smax;
1135 return Intrinsic::vector_reduce_smin;
1137 return Intrinsic::vector_reduce_umax;
1139 return Intrinsic::vector_reduce_umin;
1142 return Intrinsic::vector_reduce_fmax;
1145 return Intrinsic::vector_reduce_fmin;
1147 return Intrinsic::vector_reduce_fmaximum;
1149 return Intrinsic::vector_reduce_fminimum;
1151 return Intrinsic::vector_reduce_fmax;
1153 return Intrinsic::vector_reduce_fmin;
1161 case Intrinsic::umin:
1162 return Intrinsic::vector_reduce_umin;
1163 case Intrinsic::umax:
1164 return Intrinsic::vector_reduce_umax;
1165 case Intrinsic::smin:
1166 return Intrinsic::vector_reduce_smin;
1167 case Intrinsic::smax:
1168 return Intrinsic::vector_reduce_smax;
1175 case Intrinsic::vector_reduce_fadd:
1176 return Instruction::FAdd;
1177 case Intrinsic::vector_reduce_fmul:
1178 return Instruction::FMul;
1179 case Intrinsic::vector_reduce_add:
1180 return Instruction::Add;
1181 case Intrinsic::vector_reduce_mul:
1182 return Instruction::Mul;
1183 case Intrinsic::vector_reduce_and:
1184 return Instruction::And;
1185 case Intrinsic::vector_reduce_or:
1186 return Instruction::Or;
1187 case Intrinsic::vector_reduce_xor:
1188 return Instruction::Xor;
1189 case Intrinsic::vector_reduce_smax:
1190 case Intrinsic::vector_reduce_smin:
1191 case Intrinsic::vector_reduce_umax:
1192 case Intrinsic::vector_reduce_umin:
1193 return Instruction::ICmp;
1194 case Intrinsic::vector_reduce_fmax:
1195 case Intrinsic::vector_reduce_fmin:
1196 case Intrinsic::vector_reduce_fmaximum:
1197 case Intrinsic::vector_reduce_fminimum:
1198 case Intrinsic::vector_reduce_fmaximumnum:
1199 case Intrinsic::vector_reduce_fminimumnum:
1200 return Instruction::FCmp;
1211 case Instruction::Add:
1212 return Intrinsic::vector_reduce_add;
1213 case Instruction::Mul:
1214 return Intrinsic::vector_reduce_mul;
1215 case Instruction::And:
1216 return Intrinsic::vector_reduce_and;
1217 case Instruction::Or:
1218 return Intrinsic::vector_reduce_or;
1219 case Instruction::Xor:
1220 return Intrinsic::vector_reduce_xor;
1221 case Instruction::FAdd:
1222 return Intrinsic::vector_reduce_fadd;
1223 case Instruction::FMul:
1224 return Intrinsic::vector_reduce_fmul;
1233 case Intrinsic::vector_reduce_umin:
1234 return Intrinsic::umin;
1235 case Intrinsic::vector_reduce_umax:
1236 return Intrinsic::umax;
1237 case Intrinsic::vector_reduce_smin:
1238 return Intrinsic::smin;
1239 case Intrinsic::vector_reduce_smax:
1240 return Intrinsic::smax;
1241 case Intrinsic::vector_reduce_fmin:
1242 return Intrinsic::minnum;
1243 case Intrinsic::vector_reduce_fmax:
1244 return Intrinsic::maxnum;
1245 case Intrinsic::vector_reduce_fminimum:
1246 return Intrinsic::minimum;
1247 case Intrinsic::vector_reduce_fmaximum:
1248 return Intrinsic::maximum;
1249 case Intrinsic::vector_reduce_fminimumnum:
1250 return Intrinsic::minimumnum;
1251 case Intrinsic::vector_reduce_fmaximumnum:
1252 return Intrinsic::maximumnum;
1261 return Intrinsic::umin;
1263 return Intrinsic::umax;
1265 return Intrinsic::smin;
1267 return Intrinsic::smax;
1270 return Intrinsic::minnum;
1273 return Intrinsic::maxnum;
1275 return Intrinsic::minimum;
1277 return Intrinsic::maximum;
1279 return Intrinsic::minimumnum;
1281 return Intrinsic::maximumnum;
1287 case Intrinsic::vector_reduce_smax:
1289 case Intrinsic::vector_reduce_smin:
1291 case Intrinsic::vector_reduce_umax:
1293 case Intrinsic::vector_reduce_umin:
1295 case Intrinsic::vector_reduce_fmax:
1297 case Intrinsic::vector_reduce_fmin:
1299 case Intrinsic::vector_reduce_fmaximum:
1301 case Intrinsic::vector_reduce_fminimum:
1303 case Intrinsic::vector_reduce_fmaximumnum:
1305 case Intrinsic::vector_reduce_fminimumnum:
1337 if (Ty->isIntOrIntVectorTy() ||
1342 return Builder.CreateIntrinsic(Ty, Id, {
Left,
Right},
nullptr,
1346 Value *Cmp = Builder.CreateCmp(Pred,
Left,
Right,
"rdx.minmax.cmp");
1362 Value *Result = Acc;
1363 for (
unsigned ExtractIdx = 0; ExtractIdx != VF; ++ExtractIdx) {
1365 Builder.CreateExtractElement(Src, Builder.getInt32(ExtractIdx));
1367 if (
Op != Instruction::ICmp &&
Op != Instruction::FCmp) {
1381 unsigned RdxOpcode,
Value *Acc,
1384 Type *EltTy = VTy->getElementType();
1385 Function *
F = Builder.GetInsertBlock()->getParent();
1389 unsigned MinElts = VTy->getElementCount().getKnownMinValue();
1390 Value *NumElts = Builder.CreateVScale(IdxTy);
1391 NumElts = Builder.CreateMul(NumElts, ConstantInt::get(IdxTy, MinElts));
1393 BasicBlock *EntryBB = Builder.GetInsertBlock();
1396 nullptr,
"rdx.exit");
1399 Builder.SetInsertPoint(EntryBB);
1400 Builder.CreateBr(LoopBB);
1402 Builder.SetInsertPoint(LoopBB);
1403 PHINode *
IV = Builder.CreatePHI(IdxTy, 2,
"rdx.iv");
1404 PHINode *AccPhi = Builder.CreatePHI(EltTy, 2,
"rdx.acc");
1405 IV->addIncoming(ConstantInt::get(IdxTy, 0), EntryBB);
1408 Value *Elt = Builder.CreateExtractElement(Vec,
IV);
1413 Builder.CreateNUWAdd(
IV, ConstantInt::get(IdxTy, 1),
"rdx.next");
1414 IV->addIncoming(NextIV, LoopBB);
1417 Value *
Done = Builder.CreateICmpEQ(NextIV, NumElts,
"rdx.done");
1418 Builder.CreateCondBr(
Done, ExitBB, LoopBB);
1437 Builder.SetInsertPoint(ExitBB, ExitBB->
begin());
1451 "Reduction emission only supported for pow2 vectors!");
1459 auto BuildShuffledOp = [&Builder, &
Op,
1461 Value *&TmpVec) ->
void {
1462 Value *Shuf = Builder.CreateShuffleVector(TmpVec, ShuffleMask,
"rdx.shuf");
1463 if (
Op != Instruction::ICmp &&
Op != Instruction::FCmp) {
1473 Value *TmpVec = Src;
1476 for (
unsigned stride = 1; stride < VF; stride <<= 1) {
1479 for (
unsigned j = 0; j < VF; j += stride << 1) {
1480 ShuffleMask[j] = j + stride;
1482 BuildShuffledOp(ShuffleMask, TmpVec);
1486 for (
unsigned i = VF; i != 1; i >>= 1) {
1488 for (
unsigned j = 0; j != i / 2; ++j)
1489 ShuffleMask[j] = i / 2 + j;
1492 std::fill(&ShuffleMask[i / 2], ShuffleMask.end(), -1);
1493 BuildShuffledOp(ShuffleMask, TmpVec);
1497 return Builder.CreateExtractElement(TmpVec, Builder.getInt32(0));
1502 Value *NewVal =
nullptr;
1507 for (
auto *U : OrigPhi->
users()) {
1511 assert(
SI &&
"One user of the original phi should be a select");
1513 if (
SI->getTrueValue() == OrigPhi)
1514 NewVal =
SI->getFalseValue();
1516 assert(
SI->getFalseValue() == OrigPhi &&
1517 "At least one input to the select should be the original Phi");
1518 NewVal =
SI->getTrueValue();
1523 Src->getType()->isVectorTy() ? Builder.CreateOrReduce(Src) : Src;
1527 return Builder.CreateSelect(
AnyOf, NewVal, InitVal,
"rdx.select");
1532 bool Negative =
false;
1536 case Intrinsic::vector_reduce_add:
1537 case Intrinsic::vector_reduce_mul:
1538 case Intrinsic::vector_reduce_or:
1539 case Intrinsic::vector_reduce_xor:
1540 case Intrinsic::vector_reduce_and:
1541 case Intrinsic::vector_reduce_fadd:
1542 case Intrinsic::vector_reduce_fmul: {
1545 Flags.noSignedZeros());
1547 case Intrinsic::vector_reduce_umax:
1548 case Intrinsic::vector_reduce_umin:
1549 case Intrinsic::vector_reduce_smin:
1550 case Intrinsic::vector_reduce_smax: {
1554 case Intrinsic::vector_reduce_fmax:
1555 case Intrinsic::vector_reduce_fmaximum:
1558 case Intrinsic::vector_reduce_fmin:
1559 case Intrinsic::vector_reduce_fminimum: {
1560 bool PropagatesNaN = RdxID == Intrinsic::vector_reduce_fminimum ||
1561 RdxID == Intrinsic::vector_reduce_fmaximum;
1562 const fltSemantics &Semantics = Ty->getScalarType()->getFltSemantics();
1563 return (!Flags.noNaNs() && !PropagatesNaN)
1575 "nnan, nsz is expected to be set for FP min/max reduction.");
1583 auto getIdentity = [&]() {
1585 Builder.getFastMathFlags());
1612 return Builder.CreateFAddReduce(getIdentity(), Src);
1614 return Builder.CreateFMulReduce(getIdentity(), Src);
1624 case Intrinsic::vector_reduce_add:
1625 return Intrinsic::vp_reduce_add;
1626 case Intrinsic::vector_reduce_mul:
1627 return Intrinsic::vp_reduce_mul;
1628 case Intrinsic::vector_reduce_and:
1629 return Intrinsic::vp_reduce_and;
1630 case Intrinsic::vector_reduce_or:
1631 return Intrinsic::vp_reduce_or;
1632 case Intrinsic::vector_reduce_xor:
1633 return Intrinsic::vp_reduce_xor;
1634 case Intrinsic::vector_reduce_smax:
1635 return Intrinsic::vp_reduce_smax;
1636 case Intrinsic::vector_reduce_smin:
1637 return Intrinsic::vp_reduce_smin;
1638 case Intrinsic::vector_reduce_umax:
1639 return Intrinsic::vp_reduce_umax;
1640 case Intrinsic::vector_reduce_umin:
1641 return Intrinsic::vp_reduce_umin;
1642 case Intrinsic::vector_reduce_fmax:
1643 return Intrinsic::vp_reduce_fmax;
1644 case Intrinsic::vector_reduce_fmin:
1645 return Intrinsic::vp_reduce_fmin;
1646 case Intrinsic::vector_reduce_fmaximum:
1647 return Intrinsic::vp_reduce_fmaximum;
1648 case Intrinsic::vector_reduce_fminimum:
1649 return Intrinsic::vp_reduce_fminimum;
1650 case Intrinsic::vector_reduce_fadd:
1651 return Intrinsic::vp_reduce_fadd;
1652 case Intrinsic::vector_reduce_fmul:
1653 return Intrinsic::vp_reduce_fmul;
1661 "AnyOf and FindIV reductions are not supported.");
1666 Value *
Ops[] = {Iden, Src, Mask, EVL};
1667 return Builder.CreateIntrinsic(EltTy, VPID,
Ops);
1673 "Unexpected reduction kind");
1674 assert(Src->getType()->isVectorTy() &&
"Expected a vector type");
1675 assert(!Start->getType()->isVectorTy() &&
"Expected a scalar type");
1677 return B.CreateFAddReduce(Start, Src);
1684 "Unexpected reduction kind");
1685 assert(Src->getType()->isVectorTy() &&
"Expected a vector type");
1686 assert(!Start->getType()->isVectorTy() &&
"Expected a scalar type");
1691 Value *
Ops[] = {Start, Src, Mask, EVL};
1692 return Builder.CreateIntrinsic(EltTy, VPID,
Ops);
1696 bool IncludeWrapFlags) {
1704 const unsigned Opcode = Intersection->getOpcode();
1705 VecOp->copyIRFlags(Intersection, IncludeWrapFlags);
1706 for (
auto *V : VL) {
1710 if (OpValue ==
nullptr || Opcode == Instr->getOpcode())
1711 VecOp->andIRFlags(V);
1775 while (!WorkList.
empty()) {
1778 if (!L->contains(Curr))
1784 for (
const auto *U : Curr->
users()) {
1786 if (Visited.
insert(UI).second)
1812 BasicBlock *Preheader = L->getLoopPreheader();
1822 L->getExitingBlocks(ExitingBlocks);
1824 L->getUniqueExitBlocks(ExitBlocks);
1825 if (ExitBlocks.
size() != 1 || ExitingBlocks.
size() != 1)
1831 Value *Incoming =
P->getIncomingValueForBlock(ExitingBlocks[0]);
1837 for (
const RewritePhi &Phi : RewritePhiSet) {
1838 unsigned i = Phi.Ith;
1839 if (Phi.PN ==
P && (Phi.PN)->getIncomingValue(i) == Incoming) {
1847 if (!L->hasLoopInvariantOperands(
I))
1853 for (
auto *BB : L->blocks())
1855 return I.mayHaveSideEffects();
1869 if (!L->getLoopPreheader())
1871 if (Phi->getParent() != L->getHeader())
1883 assert(L->isRecursivelyLCSSAForm(*DT, *LI) &&
1884 "Caller did not preserve LCSSA!");
1887 L->getUniqueExitBlocks(ExitBlocks);
1911 for (
unsigned i = 0; i != NumPreds; ++i) {
1924 if (!L->contains(Inst))
1941 if (!isa<PHINode>(U) && !isa<BinaryOperator>(U))
1943 BinaryOperator *B = dyn_cast<BinaryOperator>(U);
1944 if (B && B != ID.getInductionBinOp())
1956 PHINode *Phi = dyn_cast<PHINode>(U);
1957 if (Phi != PN && !checkIsIndPhi(Phi, L, SE, ID))
1962 if (
B != ID.getInductionBinOp())
1976 !Rewriter.isSafeToExpand(ExitValue)) {
1985 if (AddRec->getLoop() == L)
1986 ExitValue = AddRec->evaluateAtIteration(ExitCount, *SE);
1989 !Rewriter.isSafeToExpand(ExitValue))
2003 bool HighCost = Rewriter.isHighCostExpansion(
2015 &*Inst->
getParent()->getFirstInsertionPt() : Inst;
2016 RewritePhiSet.
emplace_back(PN, i, ExitValue, InsertPt, HighCost);
2027 int NumReplaced = 0;
2030 for (
const RewritePhi &Phi : RewritePhiSet) {
2037 !LoopCanBeDel && Phi.HighCost)
2040 Value *ExitVal = Rewriter.expandCodeFor(
2041 Phi.ExpansionSCEV, Phi.PN->getType(), Phi.ExpansionPoint);
2043 LLVM_DEBUG(
dbgs() <<
"rewriteLoopExitValues: AfterLoopVal = " << *ExitVal
2045 <<
" LoopVal = " << *(Phi.ExpansionPoint) <<
"\n");
2052 if (
auto *EVL = LI->
getLoopFor(ExitInsn->getParent()))
2054 assert(EVL->contains(L) &&
"LCSSA breach detected!");
2082 Rewriter.clearInsertPoint();
2089template <
typename RangeT>
2099 assert(PreOrderLoops.
empty() &&
"Must start with an empty preorder walk.");
2101 "Must start with an empty preorder walk worklist.");
2105 PreOrderWorklist.
append(L->begin(), L->end());
2107 }
while (!PreOrderWorklist.
empty());
2109 Worklist.
insert(std::move(PreOrderLoops));
2110 PreOrderLoops.
clear();
2114template <
typename RangeT>
2137 PL->addChildLoop(&New);
2174 Value *Start =
nullptr, *End =
nullptr;
2194 const SCEV *Recur = LowAR->getStepRecurrence(SE);
2195 if (Recur == HighAR->getStepRecurrence(SE) &&
2196 HighAR->getLoop() == OuterLoop && LowAR->getLoop() == OuterLoop) {
2201 const SCEV *NewHigh =
2204 LLVM_DEBUG(
dbgs() <<
"LAA: Expanded RT check for range to include "
2205 "outer loop in order to permit hoisting\n");
2215 << *Stride <<
'\n');
2222 Start = Exp.expandCodeFor(
Low, PtrArithTy,
Loc);
2223 End = Exp.expandCodeFor(
High, PtrArithTy,
Loc);
2226 Start = Builder.CreateFreeze(Start, Start->getName() +
".fr");
2227 End = Builder.CreateFreeze(End, End->getName() +
".fr");
2230 Stride ? Exp.expandCodeFor(Stride, Stride->getType(),
Loc) :
nullptr;
2232 return {Start, End, StrideVal};
2244 transform(PointerChecks, std::back_inserter(ChecksWithBounds),
2250 return std::make_pair(
First, Second);
2253 return ChecksWithBounds;
2262 auto ExpandedChecks =
2269 Value *MemoryRuntimeCheck =
nullptr;
2271 for (
const auto &[
A,
B] : ExpandedChecks) {
2275 assert((
A.Start->getType()->getPointerAddressSpace() ==
2276 B.End->getType()->getPointerAddressSpace()) &&
2277 (
B.Start->getType()->getPointerAddressSpace() ==
2278 A.End->getType()->getPointerAddressSpace()) &&
2279 "Trying to bounds check pointers with different address spaces");
2291 Value *IsConflict = ChkBuilder.
CreateAnd(Cmp0, Cmp1,
"found.conflict");
2292 if (
A.StrideToCheck) {
2294 A.StrideToCheck, ConstantInt::get(
A.StrideToCheck->getType(), 0),
2296 IsConflict = ChkBuilder.
CreateOr(IsConflict, IsNegativeStride);
2298 if (
B.StrideToCheck) {
2300 B.StrideToCheck, ConstantInt::get(
B.StrideToCheck->getType(), 0),
2302 IsConflict = ChkBuilder.
CreateOr(IsConflict, IsNegativeStride);
2304 if (MemoryRuntimeCheck) {
2306 ChkBuilder.
CreateOr(MemoryRuntimeCheck, IsConflict,
"conflict.rdx");
2308 MemoryRuntimeCheck = IsConflict;
2311 Exp.eraseDeadInstructions(MemoryRuntimeCheck);
2312 return MemoryRuntimeCheck;
2324 Value *MemoryRuntimeCheck =
nullptr;
2326 auto &SE = *Expander.
getSE();
2330 for (
const auto &[SrcStart, SinkStart, AccessSize, NeedsFreeze] : Checks) {
2331 assert(IC * AccessSize > 0 &&
2332 "Threshold must be non-zero to use diff-check");
2333 Type *Ty = SinkStart->getType();
2334 const SCEV *TotalAccessSize = SE.getElementCount(Ty, VF * IC * AccessSize);
2336 SE.getMinusSCEV(TotalAccessSize, SE.getConstant(Ty, 1)), Ty,
Loc);
2342 Value *IsConflict = SeenCompares.
lookup({Diff, ThresholdMinusOne});
2349 ChkBuilder.
CreateSub(Diff, ConstantInt::get(Ty, 1)), ThresholdMinusOne,
2351 SeenCompares.
insert({{Diff, ThresholdMinusOne}, IsConflict});
2355 if (MemoryRuntimeCheck) {
2357 ChkBuilder.
CreateOr(MemoryRuntimeCheck, IsConflict,
"conflict.rdx");
2359 MemoryRuntimeCheck = IsConflict;
2363 return MemoryRuntimeCheck;
2366std::optional<IVConditionInfo>
2385 WorkList.
append(CondI->op_begin(), CondI->op_end());
2389 while (!WorkList.
empty()) {
2391 if (!
I || !L.contains(
I))
2400 if (LI->isVolatile() || LI->isAtomic())
2407 AccessesToCheck.
push_back(MemUse->getDefiningAccess());
2415 WorkList.
append(
I->op_begin(),
I->op_end());
2418 if (InstToDuplicate.
empty())
2422 L.getExitingBlocks(ExitingBlocks);
2423 auto HasNoClobbersOnPath =
2424 [&L, &
AA, &AccessedLocs, &ExitingBlocks, &InstToDuplicate,
2427 -> std::optional<IVConditionInfo> {
2439 while (!WorkList.
empty()) {
2441 if (!L.contains(Current))
2443 const auto &SeenIns = Seen.
insert(Current);
2444 if (!SeenIns.second)
2447 Info.PathIsNoop &=
all_of(
2448 *Current, [](
Instruction &
I) {
return !
I.mayHaveSideEffects(); });
2454 if (Seen.
size() < 2)
2462 while (!AccessesToCheck.
empty()) {
2464 auto SeenI = SeenAccesses.
insert(Current);
2481 AA.getModRefInfo(CurrentDef->getMemoryInst(),
Loc));
2486 for (
Use &U : Current->
uses())
2497 if (Info.PathIsNoop) {
2498 for (
auto *Exiting : ExitingBlocks) {
2502 if (L.contains(Succ))
2505 Info.PathIsNoop &= Succ->phis().empty() &&
2506 (!Info.ExitForPath || Info.ExitForPath == Succ);
2507 if (!Info.PathIsNoop)
2509 assert((!Info.ExitForPath || Info.ExitForPath == Succ) &&
2510 "cannot have multiple exit blocks");
2511 Info.ExitForPath = Succ;
2515 if (!Info.ExitForPath)
2516 Info.PathIsNoop =
false;
2518 Info.InstToDuplicate = std::move(InstToDuplicate);
2524 if (TI->getSuccessor(0) == TI->getSuccessor(1))
2527 if (
auto Info = HasNoClobbersOnPath(TI->getSuccessor(0), L.getHeader(),
2532 if (
auto Info = HasNoClobbersOnPath(TI->getSuccessor(1), L.getHeader(),
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU Register Bank Select
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
This is the interface for LLVM's primary stateless and local alias analysis.
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_EXPORT_TEMPLATE
This file defines the DenseSet and SmallDenseSet classes.
This is the interface for a simple mod/ref and alias analysis over globals.
ManagedStatic< HTTPClientCleanup > Cleanup
Module.h This file contains the declarations for the Module class.
iv Induction Variable Users
static cl::opt< ReplaceExitVal > ReplaceExitValue("replexitval", cl::Hidden, cl::init(OnlyCheapRepl), cl::desc("Choose the strategy to replace exit value in IndVarSimplify"), cl::values(clEnumValN(NeverRepl, "never", "never replace exit value"), clEnumValN(OnlyCheapRepl, "cheap", "only replace exit value when the cost is cheap"), clEnumValN(UnusedIndVarInLoop, "unusedindvarinloop", "only replace exit value when it is an unused " "induction variable in the loop and has cheap replacement cost"), clEnumValN(NoHardUse, "noharduse", "only replace exit values when loop def likely dead"), clEnumValN(AlwaysRepl, "always", "always replace exit value whenever possible")))
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
static cl::opt< bool, true > HoistRuntimeChecks("hoist-runtime-checks", cl::Hidden, cl::desc("Hoist inner loop runtime memory checks to outer loop if possible"), cl::location(VectorizerParams::HoistRuntimeChecks), cl::init(true))
static bool hasHardUserWithinLoop(const Loop *L, const Instruction *I)
static CondBrInst * getExpectedExitLoopLatchBranch(Loop *L)
Checks if L has an exiting latch branch.
static const char * LLVMLoopDisableLICM
static PointerBounds expandBounds(const RuntimeCheckingPtrGroup *CG, Loop *TheLoop, Instruction *Loc, SCEVExpander &Exp, bool HoistRuntimeChecks)
Expand code for the lower and upper bound of the pointer group CG in TheLoop.
static bool canLoopBeDeleted(Loop *L, SmallVector< RewritePhi, 8 > &RewritePhiSet)
static const char * LLVMLoopDisableNonforced
static MDNode * createStringMetadata(Loop *TheLoop, StringRef Name, unsigned V)
Create MDNode for input string.
static std::optional< unsigned > estimateLoopTripCount(Loop *L)
static bool checkIsIndPhi(PHINode *Phi, Loop *L, ScalarEvolution *SE, InductionDescriptor &ID)
Checks if it is safe to call InductionDescriptor::isInductionPHI for Phi, and returns true if this Ph...
static Intrinsic::ID getVPReductionIntrinsicID(Intrinsic::ID Id)
This file exposes an interface to building/using memory SSA to walk memory instructions using a use/d...
#define INITIALIZE_PASS_DEPENDENCY(depName)
This file provides a priority worklist.
This file contains the declarations for profiling metadata utility functions.
const SmallVectorImpl< MachineOperand > & Cond
This is the interface for a SCEV-based alias analysis.
This file defines the scope_exit class, which executes user-defined cleanup logic at scope exit.
This file implements a set that has insertion order iteration characteristics.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
static const uint32_t IV[8]
A wrapper pass to provide the legacy pass manager access to a suitably prepared AAResults object.
static APFloat getLargest(const fltSemantics &Sem, bool Negative=false)
Returns the largest finite number in the given semantics.
Class for arbitrary precision integers.
static APInt getMaxValue(unsigned numBits)
Gets maximum unsigned value of APInt for specific bit width.
static APInt getSignedMaxValue(unsigned numBits)
Gets maximum signed value of APInt for a specific bit width.
static APInt getMinValue(unsigned numBits)
Gets minimum unsigned value of APInt for a specific bit width.
static APInt getSignedMinValue(unsigned numBits)
Gets minimum signed value of APInt for a specific bit width.
Represent the analysis usage information of a pass.
LLVM_ABI AnalysisUsage & addRequiredID(const void *ID)
AnalysisUsage & addPreservedID(const void *ID)
AnalysisUsage & addRequired()
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Legacy wrapper pass to provide the BasicAAResult object.
LLVM Basic Block Representation.
iterator begin()
Instruction iterator methods.
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
InstListType::iterator iterator
Instruction iterators...
LLVM_ABI LLVMContext & getContext() const
Get the context in which this basic block lives.
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
static LLVM_ABI BranchProbability getBranchProbability(uint64_t Numerator, uint64_t Denominator)
static constexpr BranchProbability getUnknown()
static constexpr BranchProbability getZero()
uint32_t getNumerator() const
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
@ ICMP_SLT
signed less than
@ ICMP_SLE
signed less or equal
@ FCMP_OLT
0 1 0 0 True if ordered and less than
@ FCMP_OGT
0 0 1 0 True if ordered and greater than
@ ICMP_UGT
unsigned greater than
@ ICMP_SGT
signed greater than
@ ICMP_ULT
unsigned less than
@ ICMP_SGE
signed greater or equal
Conditional Branch instruction.
BasicBlock * getSuccessor(unsigned i) const
static LLVM_ABI Constant * getIntrinsicIdentity(Intrinsic::ID, Type *Ty)
static LLVM_ABI Constant * getBinOpIdentity(unsigned Opcode, Type *Ty, bool AllowRHSConstant=false, bool NSZ=false)
Return the identity constant for a binary opcode.
static LLVM_ABI ConstantFP * getQNaN(Type *Ty, bool Negative=false, APInt *Payload=nullptr)
static LLVM_ABI ConstantFP * getInfinity(Type *Ty, bool Negative=false)
This is the shared class of boolean and integer constants.
static LLVM_ABI ConstantInt * getTrue(LLVMContext &Context)
static LLVM_ABI ConstantInt * getFalse(LLVMContext &Context)
int64_t getSExtValue() const
Return the constant as a 64-bit integer value after it has been sign extended as appropriate for the ...
A parsed version of the target data layout string in and methods for querying it.
Record of a variable value-assignment, aka a non instruction representation of the dbg....
Identifies a unique instance of a variable.
ValueT lookup(const_arg_type_t< KeyT > Val) const
Return the entry for the specified key, or a default constructed value if no such entry exists.
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
iterator_range< iterator > children()
void applyUpdates(ArrayRef< UpdateType > Updates)
Inform the dominator tree about a sequence of CFG edge insertions and deletions and perform a batch u...
static constexpr UpdateKind Delete
static constexpr UpdateKind Insert
DomTreeNodeBase< NodeT > * getNode(const NodeT *BB) const
getNode - return the (Post)DominatorTree node for the specified basic block.
Legacy analysis pass which computes a DominatorTree.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
LLVM_ABI bool isReachableFromEntry(const Use &U) const
Provide an overload for a Use.
static constexpr ElementCount get(ScalarTy MinVal, bool Scalable)
Convenience struct for specifying and reasoning about fast-math flags.
bool noSignedZeros() const
void applyUpdates(ArrayRef< UpdateT > Updates)
Submit updates to all available trees.
Legacy wrapper pass to provide the GlobalsAAResult object.
Common base class shared among various IRBuilders.
Value * CreateICmpULT(Value *LHS, Value *RHS, const Twine &Name="")
Value * CreateFreeze(Value *V, const Twine &Name="")
Value * CreateSub(Value *LHS, Value *RHS, const Twine &Name="", bool HasNUW=false, bool HasNSW=false)
Value * CreateAnd(Value *LHS, Value *RHS, const Twine &Name="")
Value * CreateICmpSLT(Value *LHS, Value *RHS, const Twine &Name="")
void SetInsertPoint(BasicBlock *TheBB)
This specifies that created instructions should be appended to the end of the specified block.
Value * CreateOr(Value *LHS, Value *RHS, const Twine &Name="", bool IsDisjoint=false)
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
A struct for saving information about induction variables.
static LLVM_ABI bool isInductionPHI(PHINode *Phi, const Loop *L, ScalarEvolution *SE, InductionDescriptor &D, ArrayRef< const SCEVPredicate * > NoWrapPreds={}, const SCEV *Expr=nullptr, SmallVectorImpl< Instruction * > *CastsToIgnore=nullptr)
Returns true if Phi is an induction in the loop L.
InstSimplifyFolder - Use InstructionSimplify to fold operations to existing values.
LLVM_ABI unsigned getNumSuccessors() const LLVM_READONLY
Return the number of successors that this instruction has.
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
LLVM_ABI BasicBlock * getSuccessor(unsigned Idx) const LLVM_READONLY
Return the specified successor. This instruction must be a terminator.
LLVM_ABI bool mayHaveSideEffects() const LLVM_READONLY
Return true if the instruction may have side effects.
iterator_range< user_iterator > users()
This is an important class for using LLVM in a threaded context.
bool contains(const LoopT *L) const
Return true if the specified loop is contained within this loop.
typename std::vector< Loop * >::const_iterator iterator
BlockT * getLoopLatch() const
If there is a single latch block for this loop, return it.
BlockT * getHeader() const
void addBasicBlockToLoop(BlockT *NewBB, LoopInfoBase< BlockT, LoopT > &LI)
This method is used by other analyses to update loop information.
void addChildLoop(LoopT *NewChild)
Add the specified loop to be a child of this loop.
LoopT * getParentLoop() const
Return the parent loop if it exists or nullptr for top level loops.
void addTopLevelLoop(LoopT *New)
This adds the specified loop to the collection of top-level loops.
bool hasNoExitBlocks(const LoopT &L) const
Return true if L does not have any exit blocks.
void removeBlock(BlockT *BB)
This method completely removes BB from all data structures, including all of the Loop objects it is n...
LoopT * removeLoop(iterator I)
This removes the specified top-level loop from this loop info object.
LoopT * getLoopFor(const BlockT *BB) const
Return the inner most loop that BB lives in.
void destroy(LoopT *L)
Destroy a loop that has been removed from the LoopInfo nest.
The legacy pass manager's analysis pass to compute loop information.
bool replacementPreservesLCSSAForm(Instruction *From, Value *To)
Returns true if replacing From with To everywhere is guaranteed to preserve LCSSA form.
LLVM_ABI void erase(Loop *L)
Update LoopInfo after removing the last backedge from a loop.
Represents a single loop in the control flow graph.
void setLoopID(MDNode *LoopID) const
Set the llvm.loop loop id metadata for this loop.
MDNode * getLoopID() const
Return the llvm.loop loop id metadata node for this loop if it is present.
LLVM_ABI void replaceOperandWith(unsigned I, Metadata *New)
Replace a specific operand.
const MDOperand & getOperand(unsigned I) const
ArrayRef< MDOperand > operands() const
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
unsigned getNumOperands() const
Return number of MDNode operands.
LLVMContext & getContext() const
Tracking metadata reference owned by Metadata.
LLVM_ABI StringRef getString() const
static LLVM_ABI MDString * get(LLVMContext &Context, StringRef Str)
BasicBlock * getBlock() const
Representation for a specific memory location.
static LLVM_ABI MemoryLocation get(const LoadInst *LI)
Return a location with information about the memory reference by the given instruction.
Legacy analysis pass which computes MemorySSA.
Encapsulates MemorySSA, including all data associated with memory accesses.
LLVM_ABI void verifyMemorySSA(VerificationLevel=VerificationLevel::Fast) const
Verify that MemorySSA is self consistent (IE definitions dominate all uses, uses appear in the right ...
MemoryUseOrDef * getMemoryAccess(const Instruction *I) const
Given a memory Mod/Ref'ing instruction, get the MemorySSA access associated with it.
void addIncoming(Value *V, BasicBlock *BB)
Add an incoming value to the end of the PHI list.
void setIncomingValue(unsigned i, Value *V)
BasicBlock * getIncomingBlock(unsigned i) const
Return incoming basic block number i.
Value * getIncomingValue(unsigned i) const
Return incoming value number x.
int getBasicBlockIndex(const BasicBlock *BB) const
Return the first index of the specified basic block in the value list for this PHI.
unsigned getNumIncomingValues() const
Return the number of incoming edges.
PassRegistry - This class manages the registration and intitialization of the pass subsystem as appli...
static LLVM_ABI PointerType * get(LLVMContext &C, unsigned AddressSpace)
This constructs an opaque pointer to an object in a numbered address space.
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
bool insert(const T &X)
Insert a new element into the PriorityWorklist.
static bool isAnyOfRecurrenceKind(RecurKind Kind)
Returns true if the recurrence kind is of the form select(cmp(),x,y) where one of (x,...
static bool isFindRecurrenceKind(RecurKind Kind)
static bool isMinMaxRecurrenceKind(RecurKind Kind)
Returns true if the recurrence kind is any min/max kind.
A global registry used in conjunction with static constructors to make pluggable components (like tar...
Legacy wrapper pass to provide the SCEVAAResult object.
This class uses information about analyze scalars to rewrite expressions in canonical form.
ScalarEvolution * getSE()
LLVM_ABI Value * expandCodeFor(SCEVUse SH, Type *Ty, BasicBlock::iterator I)
Insert code to directly compute the specified SCEV expression into the program.
LLVM_ABI void eraseDeadInstructions(Value *Root)
Remove inserted instructions that are dead, e.g.
This class represents an analyzed expression in the program.
Type * getType() const
Return the LLVM type of this SCEV expression.
The main scalar evolution driver.
LLVM_ABI bool isKnownNonNegative(const SCEV *S)
Test if the given expression is known to be non-negative.
LLVM_ABI bool isLoopEntryGuardedByCond(const Loop *L, CmpPredicate Pred, const SCEV *LHS, const SCEV *RHS)
Test whether entry to the loop is protected by a conditional between LHS and RHS.
const SCEV * getZero(Type *Ty)
Return a SCEV for the constant 0 of a specific type.
LLVM_ABI SCEVUse getSCEVAtScope(const SCEV *S, const Loop *L)
Return a SCEV expression for the specified value at the specified scope in the program.
LLVM_ABI const SCEV * getConstant(ConstantInt *V)
LLVM_ABI const SCEV * getSCEV(Value *V)
Return a SCEV expression for the full generality of the specified expression.
LLVM_ABI void forgetLoop(const Loop *L)
This method should be called by the client when it has changed a loop in a way that may effect Scalar...
LLVM_ABI bool isLoopInvariant(const SCEV *S, const Loop *L)
Return true if the value of the given SCEV is unchanging in the specified loop.
LLVM_ABI LoopDisposition getLoopDisposition(const SCEV *S, const Loop *L)
Return the "disposition" of the given SCEV with respect to the given loop.
LLVM_ABI bool isSCEVable(Type *Ty) const
Test if values of the given type are analyzable within the SCEV framework.
LLVM_ABI void forgetValue(Value *V)
This method should be called by the client when it has changed a value in a way that may effect its v...
LLVM_ABI void forgetBlockAndLoopDispositions(Value *V=nullptr)
Called when the client has changed the disposition of values in a loop or block.
LoopDisposition
An enum describing the relationship between a SCEV and a loop.
@ LoopInvariant
The SCEV is loop-invariant.
LLVM_ABI bool isAvailableAtLoopEntry(const SCEV *S, const Loop *L)
Determine if the SCEV can be evaluated at loop's entry.
LLVM_ABI const SCEV * getExitCount(const Loop *L, const BasicBlock *ExitingBlock, ExitCountKind Kind=Exact)
Return the number of times the backedge executes before the given exit would be taken; if not exactly...
LLVM_ABI const SCEV * applyLoopGuards(const SCEV *Expr, const Loop *L)
Try to apply information from loop guards for L to Expr.
This class represents the LLVM 'select' instruction.
Implements a dense probed hash-table based set with some number of buckets stored inline.
A version of PriorityWorklist that selects small size optimized data structures for the vector and ma...
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
bool contains(ConstPtrType Ptr) const
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
A SetVector that performs no allocations if smaller than a certain size.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
bool starts_with(StringRef Prefix) const
Check if this string starts with the given Prefix.
Provides information about what library functions are available for the current target.
Value handle that tracks a Value across RAUW.
The instances of the Type class are immutable: once they are created, they are never changed.
static LLVM_ABI IntegerType * getInt32Ty(LLVMContext &C)
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
bool isIntegerTy() const
True if this is an instance of IntegerType.
A Use represents the edge between a Value definition and its users.
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
iterator_range< user_iterator > users()
iterator_range< use_iterator > uses()
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
std::pair< iterator, bool > insert(const ValueT &V)
const ParentTy * getParent() const
This class implements an extremely fast bulk output stream that can only output to a stream.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
Abstract Attribute helper functions.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract_or_null(Y &&MD)
Extract a Value from Metadata, allowing null.
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
LLVM_ABI Value * createSimpleReduction(IRBuilderBase &B, Value *Src, RecurKind RdxKind)
Create a reduction of the given vector.
LLVM_ABI std::optional< ElementCount > getOptionalElementCountLoopAttribute(const Loop *TheLoop)
Find a combination of metadata ("llvm.loop.vectorize.width" and "llvm.loop.vectorize....
LLVM_ABI BranchProbability getBranchProbability(CondBrInst *B, bool ForFirstTarget)
Based on branch weight metadata, return either:
@ Low
Lower the current thread's priority such that it does not affect foreground tasks significantly.
LLVM_ABI Value * addRuntimeChecks(Instruction *Loc, Loop *TheLoop, const SmallVectorImpl< RuntimePointerCheck > &PointerChecks, SCEVExpander &Expander, bool HoistRuntimeChecks=false)
Add code that checks at runtime if the accessed arrays in PointerChecks overlap.
auto find(R &&Range, const T &Val)
Provide wrappers to std::find which take ranges instead of having to pass begin/end explicitly.
void fill(R &&Range, T &&Value)
Provide wrappers to std::fill which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI std::optional< unsigned > getLoopEstimatedTripCount(Loop *L, unsigned *EstimatedLoopInvocationWeight=nullptr)
Return either:
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI Intrinsic::ID getMinMaxReductionIntrinsicOp(Intrinsic::ID RdxID)
Returns the min/max intrinsic used when expanding a min/max reduction.
LLVM_ABI bool getBooleanLoopAttribute(const Loop *TheLoop, StringRef Name)
Returns true if Name is applied to TheLoop and enabled.
LLVM_ABI bool isKnownNonPositiveInLoop(const SCEV *S, const Loop *L, ScalarEvolution &SE)
Returns true if we can prove that S is defined and always non-positive in loop L.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
LLVM_ABI void setExplicitlyUnknownBranchWeightsIfProfiled(Instruction &I, StringRef PassName, const Function *F=nullptr)
Like setExplicitlyUnknownBranchWeights(...), but only sets unknown branch weights in the new instruct...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
void appendReversedLoopsToWorklist(RangeT &&, SmallPriorityWorklist< Loop *, 4 > &)
Utility that implements appending of loops onto a worklist given a range.
auto successors(const MachineBasicBlock *BB)
LLVM_ABI void initializeLoopPassPass(PassRegistry &)
Manually defined generic "LoopPass" dependency initialization.
constexpr from_range_t from_range
LLVM_ABI bool formLCSSARecursively(Loop &L, const DominatorTree &DT, const LoopInfo *LI, ScalarEvolution *SE)
Put a loop nest into LCSSA form.
LLVM_ABI Value * getReductionIdentity(Intrinsic::ID RdxID, Type *Ty, FastMathFlags FMF)
Given information about an @llvm.vector.reduce.
LLVM_ABI std::optional< MDNode * > makeFollowupLoopID(MDNode *OrigLoopID, ArrayRef< StringRef > FollowupAttrs, const char *InheritOptionsAttrsPrefix="", bool AlwaysNew=false)
Create a new loop identifier for a loop created from a loop transformation.
LLVM_ABI unsigned getArithmeticReductionInstruction(Intrinsic::ID RdxID)
Returns the arithmetic instruction opcode used when expanding a reduction.
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
std::pair< const RuntimeCheckingPtrGroup *, const RuntimeCheckingPtrGroup * > RuntimePointerCheck
A memcheck which made up of a pair of grouped pointers.
LLVM_ABI char & LoopSimplifyID
LLVM_ABI Value * createMinMaxOp(IRBuilderBase &Builder, RecurKind RK, Value *Left, Value *Right)
Returns a Min/Max operation corresponding to MinMaxRecurrenceKind.
LLVM_ABI SmallVector< BasicBlock *, 16 > collectChildrenInLoop(DominatorTree *DT, DomTreeNode *N, const Loop *CurLoop)
Does a BFS from a given node to all of its children inside a given loop.
LLVM_ABI void addStringMetadataToLoop(Loop *TheLoop, const char *MDString, unsigned V=0)
Set input string into loop metadata by keeping other values intact.
LLVM_ABI bool cannotBeMaxInLoop(const SCEV *S, const Loop *L, ScalarEvolution &SE, bool Signed)
Returns true if S is defined and never is equal to signed/unsigned max.
LLVM_ABI void setBranchWeights(Instruction &I, ArrayRef< uint32_t > Weights, bool IsExpected, bool ElideAllZero=false)
Create a new branch_weights metadata node and add or overwrite a prof metadata reference to instructi...
DomTreeNodeBase< BasicBlock > DomTreeNode
constexpr T divideNearest(U Numerator, V Denominator)
Returns (Numerator / Denominator) rounded by round-half-up.
LLVM_ABI TransformationMode hasVectorizeTransformation(const Loop *L)
auto dyn_cast_or_null(const Y &Val)
OutputIt transform(R &&Range, OutputIt d_first, UnaryFunction F)
Wrapper function around std::transform to apply a function to a range and store the result elsewhere.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI bool isInstructionTriviallyDead(Instruction *I, const TargetLibraryInfo *TLI=nullptr)
Return true if the result produced by the instruction is not used, and the instruction will return.
LLVM_ABI SmallVector< Instruction *, 8 > findDefsUsedOutsideOfLoop(Loop *L)
Returns the instructions that use values defined in the loop.
auto reverse(ContainerTy &&C)
LLVM_ABI constexpr Intrinsic::ID getReductionIntrinsicID(RecurKind RK)
Returns the llvm.vector.reduce intrinsic that corresponds to the recurrence kind.
LLVM_ABI bool isMustProgress(const Loop *L)
Return true if this loop can be assumed to make progress.
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
LLVM_ABI void setBranchProbability(CondBrInst *B, BranchProbability P, bool ForFirstTarget)
Set branch weight metadata for B to indicate that P and 1 - P are the probabilities of control flowin...
bool isModSet(const ModRefInfo MRI)
LLVM_ABI TransformationMode hasUnrollAndJamTransformation(const Loop *L)
LLVM_ABI void deleteDeadLoop(Loop *L, DominatorTree *DT, ScalarEvolution *SE, LoopInfo *LI, MemorySSA *MSSA=nullptr)
This function deletes dead loops.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI bool hasDisableAllTransformsHint(const Loop *L)
Look for the loop attribute that disables all transformation heuristic.
LLVM_TEMPLATE_ABI void appendLoopsToWorklist(RangeT &&, SmallPriorityWorklist< Loop *, 4 > &)
Utility that implements appending of loops onto a worklist given a range.
LLVM_ABI cl::opt< unsigned > SCEVCheapExpansionBudget
LLVM_ABI Value * getShuffleReduction(IRBuilderBase &Builder, Value *Src, unsigned Op, TargetTransformInfo::ReductionShuffle RS, RecurKind MinMaxKind=RecurKind::None)
Generates a vector reduction using shufflevectors to reduce the value.
LLVM_ABI TransformationMode hasUnrollTransformation(const Loop *L)
LLVM_ABI BranchProbability getLoopProbability(Loop *L)
Based on branch weight metadata, return either:
LLVM_ABI TransformationMode hasDistributeTransformation(const Loop *L)
LLVM_ABI void breakLoopBackedge(Loop *L, DominatorTree &DT, ScalarEvolution &SE, LoopInfo &LI, MemorySSA *MSSA)
Remove the backedge of the specified loop.
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
LLVM_ABI void getLoopAnalysisUsage(AnalysisUsage &AU)
Helper to consistently add the set of standard passes to a loop pass's AnalysisUsage.
LLVM_ABI void propagateIRFlags(Value *I, ArrayRef< Value * > VL, Value *OpValue=nullptr, bool IncludeWrapFlags=true)
Get the intersection (logical and) of all of the potential IR flags of each scalar operation (VL) tha...
LLVM_ABI bool isKnownPositiveInLoop(const SCEV *S, const Loop *L, ScalarEvolution &SE)
Returns true if we can prove that S is defined and always positive in loop L.
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
LLVM_ABI unsigned changeToUnreachable(Instruction *I, bool PreserveLCSSA=false, DomTreeUpdater *DTU=nullptr, MemorySSAUpdater *MSSAU=nullptr)
Insert an unreachable instruction before the specified instruction, making it and the rest of the cod...
RNSuccIterator< NodeRef, BlockT, RegionT > succ_begin(NodeRef Node)
LLVM_ABI std::optional< int > getOptionalIntLoopAttribute(const Loop *TheLoop, StringRef Name)
Find named metadata for a loop with an integer value.
LLVM_ABI bool setLoopProbability(Loop *L, BranchProbability P)
Set branch weight metadata for the latch of L to indicate that, at the end of any iteration,...
LLVM_ABI BasicBlock * SplitBlockPredecessors(BasicBlock *BB, ArrayRef< BasicBlock * > Preds, const char *Suffix, DominatorTree *DT, LoopInfo *LI=nullptr, MemorySSAUpdater *MSSAU=nullptr, bool PreserveLCSSA=false)
This method introduces at least one new basic block into the function and moves some of the predecess...
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
LLVM_ABI CmpInst::Predicate getMinMaxReductionPredicate(RecurKind RK)
Returns the comparison predicate used when expanding a min/max reduction.
LLVM_ABI TransformationMode hasLICMVersioningTransformation(const Loop *L)
LLVM_ABI bool VerifyMemorySSA
Enables verification of MemorySSA.
TransformationMode
The mode sets how eager a transformation should be applied.
@ TM_Unspecified
The pass can use heuristics to determine whether a transformation should be applied.
@ TM_SuppressedByUser
The transformation must not be applied.
@ TM_ForcedByUser
The transformation was directed by the user, e.g.
@ TM_Disable
The transformation should not be applied.
@ TM_Enable
The transformation should be applied without considering a cost model.
RNSuccIterator< NodeRef, BlockT, RegionT > succ_end(NodeRef Node)
LLVM_ABI bool hasDisableLICMTransformsHint(const Loop *L)
Look for the loop attribute that disables the LICM transformation heuristics.
template LLVM_TEMPLATE_ABI void appendLoopsToWorklist< Loop & >(Loop &L, SmallPriorityWorklist< Loop *, 4 > &Worklist)
LLVM_ABI Intrinsic::ID getReductionForBinop(Instruction::BinaryOps Opc)
Returns the reduction intrinsic id corresponding to the binary operation.
RecurKind
These are the kinds of recurrences that we support.
@ UMin
Unsigned integer min implemented in terms of select(cmp()).
@ FMinimumNum
FP min with llvm.minimumnum semantics.
@ Or
Bitwise or logical OR of integers.
@ FMinimum
FP min with llvm.minimum semantics.
@ FMaxNum
FP max with llvm.maxnum semantics including NaNs.
@ Mul
Product of integers.
@ FSub
Subtraction of floats.
@ FAddChainWithSubs
A chain of fadds and fsubs.
@ AnyOf
AnyOf reduction with select(cmp(),x,y) where one of (x,y) is loop invariant, and both x and y are int...
@ Xor
Bitwise or logical XOR of integers.
@ FMax
FP max implemented in terms of select(cmp()).
@ FMaximum
FP max with llvm.maximum semantics.
@ FMulAdd
Sum of float products with llvm.fmuladd(a * b + sum).
@ SMax
Signed integer max implemented in terms of select(cmp()).
@ And
Bitwise or logical AND of integers.
@ SMin
Signed integer min implemented in terms of select(cmp()).
@ FMin
FP min implemented in terms of select(cmp()).
@ FMinNum
FP min with llvm.minnum semantics including NaNs.
@ Sub
Subtraction of integers.
@ AddChainWithSubs
A chain of adds and subs.
@ FMaximumNum
FP max with llvm.maximumnum semantics.
@ UMax
Unsigned integer max implemented in terms of select(cmp()).
LLVM_ABI Value * getRecurrenceIdentity(RecurKind K, Type *Tp, FastMathFlags FMF)
Given information about an recurrence kind, return the identity for the @llvm.vector....
LLVM_ABI BasicBlock * SplitBlock(BasicBlock *Old, BasicBlock::iterator SplitPt, DominatorTree *DT, LoopInfo *LI=nullptr, MemorySSAUpdater *MSSAU=nullptr, const Twine &BBName="")
Split the specified block at the specified instruction.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
LLVM_ABI bool formDedicatedExitBlocks(Loop *L, DominatorTree *DT, LoopInfo *LI, MemorySSAUpdater *MSSAU, bool PreserveLCSSA)
Ensure that all exit blocks of the loop are dedicated exits.
DWARFExpression::Operation Op
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
LLVM_ABI bool isKnownNegativeInLoop(const SCEV *S, const Loop *L, ScalarEvolution &SE)
Returns true if we can prove that S is defined and always negative in loop L.
LLVM_ABI StringRef getLoopVectorizeKindPrefix(const Loop *L)
Return a short prefix describing the loop's vectorizer origin based on the llvm.loop....
constexpr unsigned BitWidth
ValueMap< const Value *, WeakTrackingVH > ValueToValueMapTy
LLVM_ABI Value * expandReductionViaLoop(IRBuilderBase &Builder, Value *Vec, unsigned RdxOpcode, Value *Acc, DominatorTree *DT=nullptr, LoopInfo *LI=nullptr)
Expand a scalable vector reduction into a runtime loop that applies RdxOpcode element by element,...
LLVM_ABI bool setLoopEstimatedTripCount(Loop *L, unsigned EstimatedTripCount, std::optional< unsigned > EstimatedLoopInvocationWeight=std::nullopt)
Set llvm.loop.estimated_trip_count with the value EstimatedTripCount in the loop metadata of L.
LLVM_ABI bool extractBranchWeights(const MDNode *ProfileData, SmallVectorImpl< uint32_t > &Weights)
Extract branch weights from MD_prof metadata.
LLVM_ABI const char * LLVMLoopEstimatedTripCount
Profile-based loop metadata that should be accessed only by using llvm::getLoopEstimatedTripCount and...
LLVM_ABI bool hasIterationCountInvariantInParent(Loop *L, ScalarEvolution &SE)
Check inner loop (L) backedge count is known to be invariant on all iterations of its outer loop.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
static cl::opt< unsigned > MSSAThreshold("simple-loop-unswitch-memoryssa-threshold", cl::desc("Max number of memory uses to explore during " "partial unswitching analysis"), cl::init(100), cl::Hidden)
LLVM_ABI bool isAlmostDeadIV(PHINode *IV, BasicBlock *LatchBlock, Value *Cond)
Return true if the induction variable IV in a Loop whose latch is LatchBlock would become dead if the...
auto predecessors(const MachineBasicBlock *BB)
LLVM_ABI int rewriteLoopExitValues(Loop *L, LoopInfo *LI, TargetLibraryInfo *TLI, ScalarEvolution *SE, const TargetTransformInfo *TTI, SCEVExpander &Rewriter, DominatorTree *DT, ReplaceExitVal ReplaceExitValue, SmallVector< WeakTrackingVH, 16 > &DeadInsts)
If the final value of any expressions that are recurrent in the loop can be computed,...
LLVM_ABI Value * createOrderedReduction(IRBuilderBase &B, RecurKind RdxKind, Value *Src, Value *Start)
Create an ordered reduction intrinsic using the given recurrence kind RdxKind.
LLVM_ABI RecurKind getMinMaxReductionRecurKind(Intrinsic::ID RdxID)
Returns the recurence kind used when expanding a min/max reduction.
LLVM_ABI BasicBlock * SplitEdge(BasicBlock *From, BasicBlock *To, DominatorTree *DT=nullptr, LoopInfo *LI=nullptr, MemorySSAUpdater *MSSAU=nullptr, const Twine &BBName="")
Split the edge connecting the specified blocks, and return the newly created basic block between From...
LLVM_ABI std::optional< IVConditionInfo > hasPartialIVCondition(const Loop &L, unsigned MSSAThreshold, const MemorySSA &MSSA, AAResults &AA)
Check if the loop header has a conditional branch that is not loop-invariant, because it involves loa...
static auto filterDbgVars(iterator_range< simple_ilist< DbgRecord >::iterator > R)
Filter the DbgRecord range to DbgVariableRecord types only and downcast.
LLVM_ABI Value * createAnyOfReduction(IRBuilderBase &B, Value *Src, Value *InitVal, PHINode *OrigPhi)
Create a reduction of the given vector Src for a reduction of kind RecurKind::AnyOf.
LLVM_ABI bool cannotBeMinInLoop(const SCEV *S, const Loop *L, ScalarEvolution &SE, bool Signed)
Returns true if S is defined and never is equal to signed/unsigned min.
LLVM_ABI bool isKnownNonNegativeInLoop(const SCEV *S, const Loop *L, ScalarEvolution &SE)
Returns true if we can prove that S is defined and always non-negative in loop L.
LLVM_ABI Value * addDiffRuntimeChecks(Instruction *Loc, ArrayRef< PointerDiffInfo > Checks, SCEVExpander &Expander, ElementCount VF, unsigned IC)
LLVM_ABI Value * getOrderedReduction(IRBuilderBase &Builder, Value *Acc, Value *Src, unsigned Op, RecurKind MinMaxKind=RecurKind::None)
Generates an ordered vector reduction using extracts to reduce the value.
LLVM_ABI MDNode * findOptionMDForLoopID(MDNode *LoopID, StringRef Name)
Find and return the loop attribute node for the attribute Name in LoopID.
LLVM_ABI Intrinsic::ID getMinMaxReductionIntrinsicID(Intrinsic::ID IID)
Returns the llvm.vector.reduce min/max intrinsic that corresponds to the intrinsic op.
LLVM_ABI Loop * cloneLoop(Loop *L, Loop *PL, ValueToValueMapTy &VM, LoopInfo *LI, LPPassManager *LPM)
Recursively clone the specified loop and all of its children, mapping the blocks with the specified m...
SCEVUseT< const SCEV * > SCEVUse
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
IR Values for the lower and upper bounds of a pointer evolution.
TrackingVH< Value > Start
RewritePhi(PHINode *P, unsigned I, SCEVUse Val, Instruction *ExpansionPt, bool H)
Instruction * ExpansionPoint
Struct to hold information about a partially invariant condition.
unsigned AddressSpace
Address space of the involved pointers.
bool NeedsFreeze
Whether the pointer needs to be frozen after expansion, e.g.
const SCEV * High
The SCEV expression which represents the upper bound of all the pointers in this group.
const SCEV * Low
The SCEV expression which represents the lower bound of all the pointers in this group.
SCEVPtrT getPointer() const