74#define DEBUG_TYPE "loop-unroll"
78 cl::desc(
"Forget everything in SCEV when doing LoopUnroll, instead of just"
79 " the current top-most loop. This is sometimes preferred to reduce"
84 cl::desc(
"The cost threshold for loop unrolling"));
89 cl::desc(
"The cost threshold for loop unrolling when optimizing for "
94 cl::desc(
"The cost threshold for partial loop unrolling"));
98 cl::desc(
"The maximum 'boost' (represented as a percentage >= 100) applied "
99 "to the threshold when aggressively unrolling a loop due to the "
100 "dynamic cost savings. If completely unrolling a loop will reduce "
101 "the total runtime from X to Y, we boost the loop unroll "
102 "threshold to DefaultThreshold*std::min(MaxPercentThresholdBoost, "
103 "X/Y). This limit avoids excessive code bloat."));
107 cl::desc(
"Don't allow loop unrolling to simulate more than this number of "
108 "iterations when checking full unroll profitability"));
112 cl::desc(
"Use this unroll count for all loops including those with "
113 "unroll_count pragma values, for testing purposes"));
117 cl::desc(
"Set the max unroll count for partial and runtime unrolling, for"
118 "testing purposes"));
123 "Set the max unroll count for full unrolling, for testing purposes"));
127 cl::desc(
"Allows loops to be partially unrolled until "
128 "-unroll-threshold loop size is reached."));
132 cl::desc(
"Allow generation of a loop remainder (extra iterations) "
133 "when unrolling a loop."));
137 cl::desc(
"Unroll loops with run-time trip counts"));
142 "The max of trip count upper bound that is considered in unrolling"));
146 cl::desc(
"Unrolled size limit for loops with unroll metadata "
147 "(full, enable, or count)."));
151 cl::desc(
"If the runtime tripcount for the loop is lower than the "
152 "threshold, the loop is considered as flat and will be less "
153 "aggressively unrolled."));
157 cl::desc(
"Allow the loop remainder to be unrolled."));
164 cl::desc(
"Enqueue and re-visit child loops in the loop PM after unrolling. "
165 "This shouldn't typically be needed as child loops (or their "
166 "clones) were already visited."));
170 cl::desc(
"Threshold (max size of unrolled loop) to use in aggressive (O3) "
175 cl::desc(
"Default threshold (max size of unrolled "
176 "loop), used in all but O3 optimizations"));
180 cl::desc(
"Maximum allowed iterations to unroll under pragma unroll full."));
185static const unsigned NoThreshold = std::numeric_limits<unsigned>::max();
193 std::optional<unsigned> UserThreshold, std::optional<bool> UserAllowPartial,
194 std::optional<bool> UserRuntime, std::optional<bool> UserUpperBound,
195 std::optional<unsigned> UserFullUnrollMaxCount) {
206 UP.
MaxCount = std::numeric_limits<unsigned>::max();
225 TTI.getUnrollingPreferences(L, SE, UP, &ORE);
228 bool OptForSize = L->getHeader()->getParent()->hasOptSize() ||
270 if (UserAllowPartial)
271 UP.
Partial = *UserAllowPartial;
276 if (UserFullUnrollMaxCount)
290struct UnrolledInstState {
294 unsigned IsCounted : 1;
298struct UnrolledInstStateKeyInfo {
299 using PtrInfo = DenseMapInfo<Instruction *>;
300 using PairInfo = DenseMapInfo<std::pair<Instruction *, int>>;
302 static inline unsigned getHashValue(
const UnrolledInstState &S) {
303 return PairInfo::getHashValue({S.I, S.Iteration});
306 static inline bool isEqual(
const UnrolledInstState &
LHS,
307 const UnrolledInstState &
RHS) {
308 return PairInfo::isEqual({
LHS.I,
LHS.Iteration}, {
RHS.I,
RHS.Iteration});
312struct EstimatedUnrollCost {
314 unsigned UnrolledCost;
318 unsigned RolledDynamicCost;
340 unsigned MaxIterationsCountToAnalyze) {
344 assert(MaxIterationsCountToAnalyze <
345 (
unsigned)(std::numeric_limits<int>::max() / 2) &&
346 "The unroll iterations max is too large!");
350 if (!L->isInnermost()) {
352 <<
"Not analyzing loop cost: not an innermost loop.\n");
357 if (!TripCount || TripCount > MaxIterationsCountToAnalyze) {
359 <<
"Not analyzing loop cost: trip count "
360 << (TripCount ?
"too large" :
"unknown") <<
".\n");
394 auto AddCostRecursively = [&](
Instruction &RootI,
int Iteration) {
395 assert(Iteration >= 0 &&
"Cannot have a negative iteration!");
396 assert(CostWorklist.
empty() &&
"Must start with an empty cost list");
397 assert(PHIUsedList.
empty() &&
"Must start with an empty phi used list");
403 for (;; --Iteration) {
409 auto CostIter = InstCostMap.
find({
I, Iteration, 0, 0});
410 if (CostIter == InstCostMap.
end())
415 auto &Cost = *CostIter;
421 Cost.IsCounted =
true;
425 if (PhiI->getParent() == L->getHeader()) {
426 assert(Cost.IsFree &&
"Loop PHIs shouldn't be evaluated as they "
427 "inherently simplify during unrolling.");
435 PhiI->getIncomingValueForBlock(L->getLoopLatch())))
436 if (L->contains(OpI))
445 transform(
I->operands(), std::back_inserter(Operands),
447 if (auto Res = SimplifiedValues.lookup(Op))
451 UnrolledCost +=
TTI.getInstructionCost(
I, Operands,
CostKind);
453 <<
"Adding cost of instruction (iteration " << Iteration
465 if (!OpI || !L->contains(OpI))
471 }
while (!CostWorklist.
empty());
473 if (PHIUsedList.
empty())
478 "Cannot track PHI-used values past the first iteration!");
486 assert(L->isLoopSimplifyForm() &&
"Must put loop into normal form first.");
487 assert(L->isLCSSAForm(DT) &&
488 "Must have loops in LCSSA form to track live-out values.");
491 <<
"Starting LoopUnroll profitability analysis...\n");
494 L->getHeader()->getParent()->hasMinSize() ?
500 for (
unsigned Iteration = 0; Iteration < TripCount; ++Iteration) {
513 PHI->getNumIncomingValues() == 2 &&
514 "Must have an incoming value only for the preheader and the latch.");
516 Value *V =
PHI->getIncomingValueForBlock(
517 Iteration == 0 ? L->getLoopPreheader() : L->getLoopLatch());
518 if (Iteration != 0 && SimplifiedValues.
count(V))
519 V = SimplifiedValues.
lookup(V);
524 SimplifiedValues.
clear();
525 while (!SimplifiedInputValues.
empty())
531 BBWorklist.
insert(L->getHeader());
533 for (
unsigned Idx = 0; Idx != BBWorklist.
size(); ++Idx) {
547 RolledDynamicCost +=
TTI.getInstructionCost(&
I,
CostKind);
552 bool IsFree = Analyzer.
visit(
I);
553 bool Inserted = InstCostMap.
insert({&
I, (int)Iteration,
557 assert(Inserted &&
"Cannot have a state for an unvisited instruction!");
565 const Function *Callee = CI->getCalledFunction();
566 if (!Callee ||
TTI.isLoweredToCall(Callee)) {
568 <<
"Can't analyze cost of loop with call\n");
575 if (
I.mayHaveSideEffects())
576 AddCostRecursively(
I, Iteration);
579 if (UnrolledCost > MaxUnrolledLoopSize) {
581 dbgs().
indent(3) <<
"Exceeded threshold.. exiting.\n";
583 <<
"UnrolledCost: " << UnrolledCost
584 <<
", MaxUnrolledLoopSize: " << MaxUnrolledLoopSize <<
"\n";
593 if (SimplifiedValues.
count(V))
594 V = SimplifiedValues.
lookup(V);
602 if (
auto *SimpleCond = getSimplifiedConstant(BI->getCondition())) {
605 KnownSucc = BI->getSuccessor(0);
608 KnownSucc = BI->getSuccessor(SimpleCondVal->isZero() ? 1 : 0);
611 if (
auto *SimpleCond = getSimplifiedConstant(
SI->getCondition())) {
614 KnownSucc =
SI->getSuccessor(0);
617 KnownSucc =
SI->findCaseValue(SimpleCondVal)->getCaseSuccessor();
621 if (L->contains(KnownSucc))
622 BBWorklist.
insert(KnownSucc);
624 ExitWorklist.
insert({BB, KnownSucc});
630 if (L->contains(Succ))
633 ExitWorklist.
insert({BB, Succ});
634 AddCostRecursively(*TI, Iteration);
639 if (UnrolledCost == RolledDynamicCost) {
641 dbgs().
indent(3) <<
"No opportunities found.. exiting.\n";
642 dbgs().
indent(3) <<
"UnrolledCost: " << UnrolledCost <<
"\n";
648 while (!ExitWorklist.
empty()) {
650 std::tie(ExitingBB, ExitBB) = ExitWorklist.
pop_back_val();
657 Value *
Op = PN->getIncomingValueForBlock(ExitingBB);
659 if (L->contains(OpI))
660 AddCostRecursively(*OpI, TripCount - 1);
665 "All instructions must have a valid cost, whether the "
666 "loop is rolled or unrolled.");
670 dbgs().
indent(3) <<
"UnrolledCost: " << UnrolledCost
671 <<
", RolledDynamicCost: " << RolledDynamicCost <<
"\n";
680 bool PrepareForLTO,
bool TripCountIsUniform) {
683 Metrics.analyzeBasicBlock(BB,
TTI, EphValues, PrepareForLTO, L);
685 NotDuplicatable =
Metrics.notDuplicatable;
702 if (LoopSize.isValid() && LoopSize < BEInsns + 1)
704 LoopSize = BEInsns + 1;
708 const Loop *L)
const {
709 auto ReportCannotUnroll = [&](
StringRef Reason) {
714 L->getStartLoc(), L->getHeader())
715 <<
"unable to unroll loop: " << Reason;
720 ReportCannotUnroll(
"contains convergent operations");
723 if (!LoopSize.isValid()) {
724 ReportCannotUnroll(
"loop size could not be computed");
727 if (NotDuplicatable) {
728 ReportCannotUnroll(
"contains non-duplicatable instructions");
736 unsigned LS = LoopSize.getValue();
737 assert(LS >= UP.
BEInsns &&
"LoopSize should not be less than BEInsns!");
780 "Unroll count hint metadata should have two operands.");
783 assert(
Count >= 1 &&
"Unroll count must be positive.");
804 unsigned MaxPercentThresholdBoost) {
805 if (Cost.RolledDynamicCost >= std::numeric_limits<unsigned>::max() / 100)
807 else if (Cost.UnrolledCost != 0)
809 return std::min(100 * Cost.RolledDynamicCost / Cost.UnrolledCost,
810 MaxPercentThresholdBoost);
812 return MaxPercentThresholdBoost;
815static std::optional<unsigned>
817 const unsigned TripMultiple,
const unsigned TripCount,
833 <<
"Not unrolling with user count " <<
UnrollCount <<
": "
835 :
"remainder not allowed")
847 <<
"Not unrolling with pragma count " << PInfo.
PragmaCount
848 <<
": remainder not allowed, count does not divide trip "
849 <<
"multiple " << TripMultiple <<
".\n");
852 L->getStartLoc(), L->getHeader())
853 <<
"may be unable to unroll loop with count "
855 <<
": remainder loop is not allowed and count does not divide "
857 <<
ore::NV(
"TripMultiple", TripMultiple);
862 if (TripCount != 0) {
868 <<
"Won't unroll; trip count is too large.\n");
871 "PragmaFullUnrollTripCountTooLarge",
872 L->getStartLoc(), L->getHeader())
873 <<
"may be unable to fully unroll loop: trip count "
874 <<
ore::NV(
"TripCount", TripCount) <<
" exceeds limit "
881 <<
"Fully unrolling with trip count: " << TripCount <<
".\n");
885 <<
"Not fully unrolling: unknown trip count.\n");
888 "PragmaFullUnrollUnknownTripCount",
889 L->getStartLoc(), L->getHeader())
890 <<
"may be unable to fully unroll loop: trip count is unknown";
897 <<
"Unrolling with max trip count: " << MaxTripCount <<
".\n");
909 assert(FullUnrollTripCount &&
"should be non-zero!");
913 <<
"Not unrolling: trip count " << FullUnrollTripCount
923 <<
" < threshold " << UP.
Threshold <<
".\n");
924 return FullUnrollTripCount;
928 <<
"Unrolled size " << UnrolledSize <<
" exceeds threshold "
929 << UP.
Threshold <<
"; checking for cost benefit.\n");
935 L, FullUnrollTripCount, DT, SE, EphValues,
TTI,
940 unsigned BoostedThreshold = UP.
Threshold * Boost / 100;
941 if (Cost->UnrolledCost < BoostedThreshold) {
943 return FullUnrollTripCount;
946 <<
"Not unrolling: cost " << Cost->UnrolledCost
947 <<
" >= boosted threshold " << BoostedThreshold <<
".\n");
953static std::optional<unsigned>
963 <<
"-unroll-allow-partial not given\n");
966 unsigned Count = TripCount;
974 <<
"Unrolled size exceeds threshold; reducing count "
975 <<
"from " <<
Count <<
" to " << NewCount <<
".\n");
996 <<
"Will not partially unroll: no profitable count.\n");
1006 <<
"Partially unrolling with count: " <<
Count <<
"\n");
1021 const unsigned MaxTripCount,
const bool MaxOrZero,
1029 << TripCount <<
", MaxTripCount=" << MaxTripCount
1030 << (MaxOrZero ?
" (MaxOrZero)" :
"")
1031 <<
", TripMultiple=" << TripMultiple <<
"\n");
1036 dbgs().
indent(1) <<
"Explicit unroll requested:";
1038 dbgs() <<
" user-count";
1040 dbgs() <<
" pragma-full";
1044 dbgs() <<
" pragma-enable";
1054 "explicit unroll count");
1057 <<
"Using explicit peel count: " << PP.
PeelCount <<
".\n");
1074 MaxTripCount, UCE, UP, ORE)) {
1079 return *UnrollFactor;
1095 if (
auto UnrollFactor =
1097 return *UnrollFactor;
1113 if (!TripCount && MaxTripCount && (UP.
UpperBound || MaxOrZero) &&
1115 if (
auto UnrollFactor =
1117 return *UnrollFactor;
1125 <<
"Peeling with count: " << PP.
PeelCount <<
".\n");
1139 return *UnrollFactor;
1141 "All cases when TripCount is constant should be covered here.");
1148 <<
"Not runtime unrolling: disabled by pragma.\n");
1155 << MaxTripCount <<
" is small (<= "
1161 if (L->getHeader()->getParent()->hasProfileData()) {
1171 <<
"Will not try to unroll loop with runtime trip count "
1172 <<
"because -unroll-runtime not given\n");
1184 unsigned OrigCount =
Count;
1188 while (
Count != 0 && TripMultiple %
Count != 0)
1191 <<
"Remainder loop is restricted (that could be architecture "
1192 "specific or because the loop contains a convergent "
1193 "instruction), so unroll count must divide the trip "
1195 << TripMultiple <<
". Reducing unroll count from " << OrigCount
1196 <<
" to " <<
Count <<
".\n");
1202 if (MaxTripCount &&
Count > MaxTripCount)
1203 Count = MaxTripCount;
1209 <<
"Runtime unrolling with count: " <<
Count <<
"\n");
1218 bool OnlyFullUnroll,
bool OnlyWhenForced,
bool ForgetAllSCEV,
1219 bool PrepareForLTO, std::optional<unsigned> ProvidedThreshold,
1220 std::optional<bool> ProvidedAllowPartial,
1221 std::optional<bool> ProvidedRuntime,
1222 std::optional<bool> ProvidedUpperBound,
1223 std::optional<bool> ProvidedAllowPeeling,
1224 std::optional<bool> ProvidedAllowProfileBasedPeeling,
1225 std::optional<unsigned> ProvidedFullUnrollMaxCount,
1229 << L->getHeader()->getParent()->getName() <<
"] Loop %"
1230 << L->getHeader()->getName()
1231 <<
" (depth=" << L->getLoopDepth() <<
")\n");
1243 Loop *ParentL = L->getParentLoop();
1244 if (ParentL !=
nullptr &&
1248 <<
" llvm.loop.unroll_and_jam.\n");
1259 <<
"Not unrolling loop since it has llvm.loop.unroll_and_jam.\n");
1263 if (!L->isLoopSimplifyForm()) {
1265 <<
"Not unrolling loop which is not in loop-simplify form.\n");
1269 L->getStartLoc(), L->getHeader())
1270 <<
"unable to unroll loop: not in loop-simplify form";
1278 if (OnlyWhenForced && !(TM &
TM_Enable)) {
1280 <<
"disabled and loop not explicitly "
1285 bool OptForSize = L->getHeader()->getParent()->hasOptSize();
1287 L, SE,
TTI, BFI, PSI, ORE, OptLevel, ProvidedThreshold,
1288 ProvidedAllowPartial, ProvidedRuntime, ProvidedUpperBound,
1289 ProvidedFullUnrollMaxCount);
1291 L, SE,
TTI, ProvidedAllowPeeling, ProvidedAllowProfileBasedPeeling,
true);
1301 L->getStartLoc(), L->getHeader())
1302 <<
"unable to unroll loop: unroll threshold is zero";
1317 TripCountIsUniform);
1331 <<
"Not unrolling loop with inlinable calls.\n");
1335 "InlineCandidatesPreventUnroll",
1336 L->getStartLoc(), L->getHeader())
1337 <<
"unable to unroll loop: contains inlinable calls";
1348 unsigned TripCount = 0;
1349 unsigned TripMultiple = 1;
1351 L->getExitingBlocks(ExitingBlocks);
1352 for (
BasicBlock *ExitingBlock : ExitingBlocks)
1354 if (!TripCount || TC < TripCount)
1355 TripCount = TripMultiple = TC;
1361 BasicBlock *ExitingBlock = L->getLoopLatch();
1362 if (!ExitingBlock || !L->isLoopExiting(ExitingBlock))
1363 ExitingBlock = L->getExitingBlock();
1376 unsigned MaxTripCount = 0;
1377 bool MaxOrZero =
false;
1387 MaxTripCount, MaxOrZero, TripMultiple, UCE, UP, PP);
1390 <<
"Not unrolling: no viable strategy found.\n");
1394 L->getStartLoc(), L->getHeader())
1395 <<
"unable to unroll loop: no viable unroll count found";
1404 assert(
Count == 1 &&
"Cannot perform peel and unroll in the same step");
1405 LLVM_DEBUG(
dbgs() <<
"PEELING loop %" << L->getHeader()->getName()
1406 <<
" with iteration count " << PP.
PeelCount <<
"!\n");
1422 L->setLoopAlreadyUnrolled();
1427 if (OnlyFullUnroll && ((!TripCount && !MaxTripCount) ||
Count < TripCount ||
1428 Count < MaxTripCount)) {
1430 <<
"Not attempting partial/runtime unroll in FullLoopUnroll.\n");
1439 UP.
Runtime &= TripCount == 0 && TripMultiple %
Count != 0;
1442 MDNode *OrigLoopID = L->getLoopID();
1444 DebugLoc LoopStartLoc = L->getStartLoc();
1448 Loop *RemainderLoop =
nullptr;
1461 L, ULO, LI, &SE, &DT, &AC, &
TTI, &ORE, PreserveLCSSA, &RemainderLoop,
AA);
1465 <<
"Failed to unroll loop as explicitly requested.\n");
1468 LoopStartLoc, LoopHeader)
1469 <<
"failed to unroll loop as explicitly requested";
1478 LoopStartLoc, LoopHeader)
1479 <<
"unable to fully unroll loop as directed; "
1480 <<
"unrolled by factor " <<
ore::NV(
"UnrollCount", ULO.
Count);
1486 LoopStartLoc, LoopHeader)
1487 <<
"unable to unroll loop with requested count "
1489 <<
"; unrolled by factor " <<
ore::NV(
"UnrollCount", ULO.
Count);
1493 if (RemainderLoop) {
1494 std::optional<MDNode *> RemainderLoopID =
1497 if (RemainderLoopID)
1498 RemainderLoop->
setLoopID(*RemainderLoopID);
1502 std::optional<MDNode *> NewLoopID =
1506 L->setLoopID(*NewLoopID);
1510 return UnrollResult;
1517 L->setLoopAlreadyUnrolled();
1519 return UnrollResult;
1524class LoopUnroll :
public LoopPass {
1533 bool OnlyWhenForced;
1540 std::optional<unsigned> ProvidedThreshold;
1541 std::optional<bool> ProvidedAllowPartial;
1542 std::optional<bool> ProvidedRuntime;
1543 std::optional<bool> ProvidedUpperBound;
1544 std::optional<bool> ProvidedAllowPeeling;
1545 std::optional<bool> ProvidedAllowProfileBasedPeeling;
1546 std::optional<unsigned> ProvidedFullUnrollMaxCount;
1548 LoopUnroll(
int OptLevel = 2,
bool OnlyWhenForced =
false,
1549 bool ForgetAllSCEV =
false,
1550 std::optional<unsigned> Threshold = std::nullopt,
1551 std::optional<bool> AllowPartial = std::nullopt,
1552 std::optional<bool>
Runtime = std::nullopt,
1553 std::optional<bool> UpperBound = std::nullopt,
1554 std::optional<bool> AllowPeeling = std::nullopt,
1555 std::optional<bool> AllowProfileBasedPeeling = std::nullopt,
1556 std::optional<unsigned> ProvidedFullUnrollMaxCount = std::nullopt)
1557 : LoopPass(
ID), OptLevel(OptLevel), OnlyWhenForced(OnlyWhenForced),
1558 ForgetAllSCEV(ForgetAllSCEV), ProvidedThreshold(Threshold),
1559 ProvidedAllowPartial(AllowPartial), ProvidedRuntime(
Runtime),
1560 ProvidedUpperBound(UpperBound), ProvidedAllowPeeling(AllowPeeling),
1561 ProvidedAllowProfileBasedPeeling(AllowProfileBasedPeeling),
1562 ProvidedFullUnrollMaxCount(ProvidedFullUnrollMaxCount) {
1566 bool runOnLoop(Loop *L, LPPassManager &LPM)
override {
1572 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
1573 LoopInfo *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
1574 ScalarEvolution &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE();
1575 const TargetTransformInfo &
TTI =
1576 getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
F);
1577 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(
F);
1580 ? &getAnalysis<UniformityInfoWrapperPass>().getUniformityInfo()
1585 OptimizationRemarkEmitter ORE(&
F);
1586 bool PreserveLCSSA = mustPreserveAnalysisID(
LCSSAID);
1589 L, DT, LI, SE,
TTI, AC, ORE,
nullptr,
nullptr, PreserveLCSSA, OptLevel,
1590 false, OnlyWhenForced, ForgetAllSCEV,
1591 false, ProvidedThreshold, ProvidedAllowPartial,
1592 ProvidedRuntime, ProvidedUpperBound, ProvidedAllowPeeling,
1593 ProvidedAllowProfileBasedPeeling, ProvidedFullUnrollMaxCount, UI);
1595 if (Result == LoopUnrollResult::FullyUnrolled)
1598 return Result != LoopUnrollResult::Unmodified;
1603 void getAnalysisUsage(AnalysisUsage &AU)
const override {
1615char LoopUnroll::ID = 0;
1625 bool ForgetAllSCEV,
int Threshold,
1626 int AllowPartial,
int Runtime,
int UpperBound,
1631 return new LoopUnroll(
1632 OptLevel, OnlyWhenForced, ForgetAllSCEV,
1633 Threshold == -1 ? std::nullopt : std::optional<unsigned>(Threshold),
1634 AllowPartial == -1 ? std::nullopt : std::optional<bool>(AllowPartial),
1636 UpperBound == -1 ? std::nullopt : std::optional<bool>(UpperBound),
1637 AllowPeeling == -1 ? std::nullopt : std::optional<bool>(AllowPeeling));
1650 Loop *ParentL = L.getParentLoop();
1657 std::string LoopName = std::string(L.getName());
1662 true, OptLevel,
true,
1663 OnlyWhenForced, ForgetSCEV, PrepareForLTO,
1664 std::nullopt,
false,
1695 bool IsCurrentLoopValid =
false;
1702 if (SibLoop == &L) {
1703 IsCurrentLoopValid =
true;
1712 if (!IsCurrentLoopValid) {
1745 if (
auto *LAMProxy = AM.
getCachedResult<LoopAnalysisManagerFunctionProxy>(
F))
1746 LAM = &LAMProxy->getManager();
1751 auto *BFI = (PSI && PSI->hasProfileSummary()) ?
1761 for (
const auto &L : LI) {
1772 while (!Worklist.
empty()) {
1779 Loop *ParentL = L.getParentLoop();
1785 std::optional<bool> LocalAllowPeeling = UnrollOpts.AllowPeeling;
1786 if (PSI && PSI->hasHugeWorkingSetSize())
1787 LocalAllowPeeling =
false;
1788 std::string LoopName = std::string(L.getName());
1793 true, UnrollOpts.OptLevel,
1794 false, UnrollOpts.OnlyWhenForced,
1795 UnrollOpts.ForgetSCEV, UnrollOpts.PrepareForLTO,
1796 std::nullopt, UnrollOpts.AllowPartial,
1797 UnrollOpts.AllowRuntime, UnrollOpts.AllowUpperBound,
1798 LocalAllowPeeling, UnrollOpts.AllowProfileBasedPeeling,
1799 UnrollOpts.FullUnrollMaxCount, UI, &
AA);
1810 LAM->clear(L, LoopName);
1822 OS, MapClassName2PassName);
1824 if (UnrollOpts.AllowPartial != std::nullopt)
1825 OS << (*UnrollOpts.AllowPartial ?
"" :
"no-") <<
"partial;";
1826 if (UnrollOpts.AllowPeeling != std::nullopt)
1827 OS << (*UnrollOpts.AllowPeeling ?
"" :
"no-") <<
"peeling;";
1828 if (UnrollOpts.AllowRuntime != std::nullopt)
1829 OS << (*UnrollOpts.AllowRuntime ?
"" :
"no-") <<
"runtime;";
1830 if (UnrollOpts.AllowUpperBound != std::nullopt)
1831 OS << (*UnrollOpts.AllowUpperBound ?
"" :
"no-") <<
"upperbound;";
1832 if (UnrollOpts.AllowProfileBasedPeeling != std::nullopt)
1833 OS << (*UnrollOpts.AllowProfileBasedPeeling ?
"" :
"no-")
1834 <<
"profile-peeling;";
1835 if (UnrollOpts.FullUnrollMaxCount != std::nullopt)
1836 OS <<
"full-unroll-max=" << UnrollOpts.FullUnrollMaxCount <<
';';
1837 if (UnrollOpts.PrepareForLTO)
1838 OS <<
"prepare-for-lto;";
1839 OS <<
'O' << UnrollOpts.OptLevel;
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
static cl::opt< OutputCostKind > CostKind("cost-kind", cl::desc("Target cost kind"), cl::init(OutputCostKind::RecipThroughput), cl::values(clEnumValN(OutputCostKind::RecipThroughput, "throughput", "Reciprocal throughput"), clEnumValN(OutputCostKind::Latency, "latency", "Instruction latency"), clEnumValN(OutputCostKind::CodeSize, "code-size", "Code size"), clEnumValN(OutputCostKind::SizeAndLatency, "size-latency", "Code size and latency"), clEnumValN(OutputCostKind::All, "all", "Print all cost kinds")))
This file defines DenseMapInfo traits for DenseMap.
This file defines the DenseMap class.
This file defines the DenseSet and SmallDenseSet classes.
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
This header defines various interfaces for pass management in LLVM.
This header provides classes for managing per-loop analyses.
This header provides classes for managing a pipeline of passes over loops in LLVM IR.
static cl::opt< unsigned > UnrollMaxCount("unroll-max-count", cl::Hidden, cl::desc("Set the max unroll count for partial and runtime unrolling, for" "testing purposes"))
static cl::opt< unsigned > UnrollCount("unroll-count", cl::Hidden, cl::desc("Use this unroll count for all loops including those with " "unroll_count pragma values, for testing purposes"))
static cl::opt< unsigned > UnrollThresholdDefault("unroll-threshold-default", cl::init(150), cl::Hidden, cl::desc("Default threshold (max size of unrolled " "loop), used in all but O3 optimizations"))
static cl::opt< unsigned > FlatLoopTripCountThreshold("flat-loop-tripcount-threshold", cl::init(5), cl::Hidden, cl::desc("If the runtime tripcount for the loop is lower than the " "threshold, the loop is considered as flat and will be less " "aggressively unrolled."))
static LoopUnrollResult tryToUnrollLoop(Loop *L, DominatorTree &DT, LoopInfo *LI, ScalarEvolution &SE, const TargetTransformInfo &TTI, AssumptionCache &AC, OptimizationRemarkEmitter &ORE, BlockFrequencyInfo *BFI, ProfileSummaryInfo *PSI, bool PreserveLCSSA, int OptLevel, bool OnlyFullUnroll, bool OnlyWhenForced, bool ForgetAllSCEV, bool PrepareForLTO, std::optional< unsigned > ProvidedThreshold, std::optional< bool > ProvidedAllowPartial, std::optional< bool > ProvidedRuntime, std::optional< bool > ProvidedUpperBound, std::optional< bool > ProvidedAllowPeeling, std::optional< bool > ProvidedAllowProfileBasedPeeling, std::optional< unsigned > ProvidedFullUnrollMaxCount, UniformityInfo *UI=nullptr, AAResults *AA=nullptr)
static cl::opt< unsigned > UnrollOptSizeThreshold("unroll-optsize-threshold", cl::init(0), cl::Hidden, cl::desc("The cost threshold for loop unrolling when optimizing for " "size"))
static bool hasUnrollFullPragma(const Loop *L)
static bool isSCEVUniform(const SCEV *S, UniformityInfo &UI)
Returns true if the SCEV expression is uniform, i.e., all threads in a convergent execution agree on ...
static cl::opt< bool > UnrollUnrollRemainder("unroll-remainder", cl::Hidden, cl::desc("Allow the loop remainder to be unrolled."))
static unsigned unrollCountPragmaValue(const Loop *L)
static bool hasUnrollEnablePragma(const Loop *L)
static cl::opt< unsigned > PragmaUnrollThreshold("pragma-unroll-threshold", cl::init(16 *1024), cl::Hidden, cl::desc("Unrolled size limit for loops with unroll metadata " "(full, enable, or count)."))
static cl::opt< unsigned > UnrollFullMaxCount("unroll-full-max-count", cl::Hidden, cl::desc("Set the max unroll count for full unrolling, for testing purposes"))
static cl::opt< unsigned > UnrollMaxUpperBound("unroll-max-upperbound", cl::init(8), cl::Hidden, cl::desc("The max of trip count upper bound that is considered in unrolling"))
static std::optional< unsigned > shouldPragmaUnroll(Loop *L, const UnrollPragmaInfo &PInfo, const unsigned TripMultiple, const unsigned TripCount, unsigned MaxTripCount, const UnrollCostEstimator UCE, const TargetTransformInfo::UnrollingPreferences &UP, OptimizationRemarkEmitter *ORE)
static std::optional< unsigned > shouldFullUnroll(Loop *L, const TargetTransformInfo &TTI, DominatorTree &DT, ScalarEvolution &SE, const SmallPtrSetImpl< const Value * > &EphValues, const unsigned FullUnrollTripCount, const UnrollCostEstimator UCE, const TargetTransformInfo::UnrollingPreferences &UP)
static std::optional< EstimatedUnrollCost > analyzeLoopUnrollCost(const Loop *L, unsigned TripCount, DominatorTree &DT, ScalarEvolution &SE, const SmallPtrSetImpl< const Value * > &EphValues, const TargetTransformInfo &TTI, unsigned MaxUnrolledLoopSize, unsigned MaxIterationsCountToAnalyze)
Figure out if the loop is worth full unrolling.
static cl::opt< unsigned > UnrollPartialThreshold("unroll-partial-threshold", cl::Hidden, cl::desc("The cost threshold for partial loop unrolling"))
static cl::opt< bool > UnrollAllowRemainder("unroll-allow-remainder", cl::Hidden, cl::desc("Allow generation of a loop remainder (extra iterations) " "when unrolling a loop."))
static std::optional< unsigned > shouldPartialUnroll(const unsigned LoopSize, const unsigned TripCount, const UnrollCostEstimator UCE, const TargetTransformInfo::UnrollingPreferences &UP)
static cl::opt< unsigned > PragmaUnrollFullMaxIterations("pragma-unroll-full-max-iterations", cl::init(1 '000 '000), cl::Hidden, cl::desc("Maximum allowed iterations to unroll under pragma unroll full."))
static const unsigned NoThreshold
A magic value for use with the Threshold parameter to indicate that the loop unroll should be perform...
static cl::opt< bool > UnrollRevisitChildLoops("unroll-revisit-child-loops", cl::Hidden, cl::desc("Enqueue and re-visit child loops in the loop PM after unrolling. " "This shouldn't typically be needed as child loops (or their " "clones) were already visited."))
static cl::opt< unsigned > UnrollThreshold("unroll-threshold", cl::Hidden, cl::desc("The cost threshold for loop unrolling"))
static cl::opt< bool > UnrollRuntime("unroll-runtime", cl::Hidden, cl::desc("Unroll loops with run-time trip counts"))
static bool hasRuntimeUnrollDisablePragma(const Loop *L)
static unsigned getFullUnrollBoostingFactor(const EstimatedUnrollCost &Cost, unsigned MaxPercentThresholdBoost)
static cl::opt< unsigned > UnrollThresholdAggressive("unroll-threshold-aggressive", cl::init(300), cl::Hidden, cl::desc("Threshold (max size of unrolled loop) to use in aggressive (O3) " "optimizations"))
static cl::opt< unsigned > UnrollMaxIterationsCountToAnalyze("unroll-max-iteration-count-to-analyze", cl::init(10), cl::Hidden, cl::desc("Don't allow loop unrolling to simulate more than this number of " "iterations when checking full unroll profitability"))
static cl::opt< unsigned > UnrollMaxPercentThresholdBoost("unroll-max-percent-threshold-boost", cl::init(400), cl::Hidden, cl::desc("The maximum 'boost' (represented as a percentage >= 100) applied " "to the threshold when aggressively unrolling a loop due to the " "dynamic cost savings. If completely unrolling a loop will reduce " "the total runtime from X to Y, we boost the loop unroll " "threshold to DefaultThreshold*std::min(MaxPercentThresholdBoost, " "X/Y). This limit avoids excessive code bloat."))
static cl::opt< bool > UnrollAllowPartial("unroll-allow-partial", cl::Hidden, cl::desc("Allows loops to be partially unrolled until " "-unroll-threshold loop size is reached."))
This file exposes an interface to building/using memory SSA to walk memory instructions using a use/d...
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
This file implements a set that has insertion order iteration characteristics.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
A manager for alias analyses.
PassT::Result * getCachedResult(IRUnitT &IR) const
Get the cached result of an analysis pass for a given IR unit.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
AnalysisUsage & addRequired()
A function analysis which provides an AssumptionCache.
An immutable pass that tracks lazily created AssumptionCache objects.
A cache of @llvm.assume calls within a function.
LLVM Basic Block Representation.
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
Analysis pass which computes BlockFrequencyInfo.
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
Conditional Branch instruction.
This is the shared class of boolean and integer constants.
This is an important base class in LLVM.
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.
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Implements a dense probed hash-table based set.
Analysis pass which computes a DominatorTree.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
bool hasMinSize() const
Optimize this function for minimum size (-Oz).
CostType getValue() const
This function is intended to be used as sparingly as possible, since the class provides the full rang...
LLVM_ABI const Function * getFunction() const
Return the function this instruction belongs to.
This class provides an interface for updating the loop pass manager based on mutations to the loop ne...
void addChildLoops(ArrayRef< Loop * > NewChildLoops)
Loop passes should use this method to indicate they have added new child loops of the current loop.
void markLoopAsDeleted(Loop &L, llvm::StringRef Name)
Loop passes should use this method to indicate they have deleted a loop from the nest.
void addSiblingLoops(ArrayRef< Loop * > NewSibLoops)
Loop passes should use this method to indicate they have added new sibling loops to the current loop.
void markLoopAsDeleted(Loop &L)
Analysis pass that exposes the LoopInfo for a function.
void verifyLoop() const
Verify loop structure.
LLVM_ABI PreservedAnalyses run(Loop &L, LoopAnalysisManager &AM, LoopStandardAnalysisResults &AR, LPMUpdater &U)
LLVM_ABI PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
LLVM_ABI void printPipeline(raw_ostream &OS, function_ref< StringRef(StringRef)> MapClassName2PassName)
Represents a single loop in the control flow graph.
void setLoopID(MDNode *LoopID) const
Set the llvm.loop loop id metadata for this loop.
const MDOperand & getOperand(unsigned I) const
unsigned getNumOperands() const
Return number of MDNode operands.
static LLVM_ABI PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
Pass interface - Implemented by all 'passes'.
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
bool empty() const
Determine if the PriorityWorklist is empty or not.
An analysis pass based on the new PM to deliver ProfileSummaryInfo.
Analysis providing profile information.
This class represents an analyzed expression in the program.
LLVM_ABI ArrayRef< SCEVUse > operands() const
Return operands of this SCEV expression.
Analysis pass that exposes the ScalarEvolution for a function.
The main scalar evolution driver.
LLVM_ABI const SCEV * getBackedgeTakenCount(const Loop *L, ExitCountKind Kind=Exact)
If the specified loop has a predictable backedge-taken count, return it, otherwise return a SCEVCould...
LLVM_ABI unsigned getSmallConstantTripMultiple(const Loop *L, const SCEV *ExitCount)
Returns the largest constant divisor of the trip count as a normal unsigned value,...
LLVM_ABI unsigned getSmallConstantMaxTripCount(const Loop *L, SmallVectorImpl< const SCEVPredicate * > *Predicates=nullptr)
Returns the upper bound of the loop trip count as a normal unsigned value.
LLVM_ABI bool isBackedgeTakenCountMaxOrZero(const Loop *L)
Return true if the backedge taken count is either the value returned by getConstantMaxBackedgeTakenCo...
LLVM_ABI unsigned getSmallConstantTripCount(const Loop *L)
Returns the exact trip count of the loop if we can compute it, and the result is a small constant.
size_type size() const
Determine the number of elements in the SetVector.
void clear()
Completely clear the SetVector.
bool empty() const
Determine if the SetVector is empty or not.
bool insert(const value_type &X)
Insert a new element into the SetVector.
value_type pop_back_val()
A version of PriorityWorklist that selects small size optimized data structures for the vector and ma...
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
void insert_range(Range &&R)
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.
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.
Analysis pass providing the TargetTransformInfo.
Produce an estimate of the unrolled cost of the specified loop.
ConvergenceKind Convergence
bool ConvergenceAllowsRuntime
LLVM_ABI bool canUnroll(OptimizationRemarkEmitter *ORE=nullptr, const Loop *L=nullptr) const
Whether it is legal to unroll this loop.
LLVM_ABI uint64_t getUnrolledLoopSize(const TargetTransformInfo::UnrollingPreferences &UP, unsigned Count) const
Returns loop size estimation for an unrolled loop with the given unroll count and the unrolling confi...
unsigned NumInlineCandidates
LLVM_ABI UnrollCostEstimator(const Loop *L, const TargetTransformInfo &TTI, const SmallPtrSetImpl< const Value * > &EphValues, unsigned BEInsns, bool PrepareForLTO=false, bool TripCountIsUniform=false)
uint64_t getRolledLoopSize() const
void visit(Iterator Start, Iterator End)
LLVM Value Representation.
std::pair< iterator, bool > insert(const ValueT &V)
iterator find(const_arg_type_t< ValueT > V)
An efficient, type-erasing, non-owning reference to a callable.
This class implements an extremely fast bulk output stream that can only output to a stream.
raw_ostream & indent(unsigned NumSpaces)
indent - Insert 'NumSpaces' spaces.
Abstract Attribute helper functions.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
initializer< Ty > init(const Ty &Val)
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
DiagnosticInfoOptimizationBase::Argument NV
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI bool simplifyLoop(Loop *L, DominatorTree *DT, LoopInfo *LI, ScalarEvolution *SE, AssumptionCache *AC, MemorySSAUpdater *MSSAU, bool PreserveLCSSA)
Simplify each loop in a loop nest recursively.
GenericUniformityInfo< SSAContext > UniformityInfo
LLVM_ABI Pass * createLoopUnrollPass(int OptLevel=2, bool OnlyWhenForced=false, bool ForgetAllSCEV=false, int Threshold=-1, int AllowPartial=-1, int Runtime=-1, int UpperBound=-1, int AllowPeeling=-1)
LLVM_ABI std::optional< unsigned > getLoopEstimatedTripCount(Loop *L, unsigned *EstimatedLoopInvocationWeight=nullptr)
Return either:
LLVM_ABI unsigned computeUnrollCount(Loop *L, const TargetTransformInfo &TTI, DominatorTree &DT, LoopInfo *LI, AssumptionCache *AC, ScalarEvolution &SE, const SmallPtrSetImpl< const Value * > &EphValues, OptimizationRemarkEmitter *ORE, unsigned TripCount, unsigned MaxTripCount, bool MaxOrZero, unsigned TripMultiple, const UnrollCostEstimator &UCE, TargetTransformInfo::UnrollingPreferences &UP, TargetTransformInfo::PeelingPreferences &PP)
bool isEqual(const GCNRPTracker::LiveRegSet &S1, const GCNRPTracker::LiveRegSet &S2)
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
auto successors(const MachineBasicBlock *BB)
@ Runtime
Detect stack use after return if not disabled runtime with (ASAN_OPTIONS=detect_stack_use_after_retur...
OuterAnalysisManagerProxy< ModuleAnalysisManager, Function > ModuleAnalysisManagerFunctionProxy
Provide the ModuleAnalysisManager to Function proxy.
LLVM_ABI bool formLCSSARecursively(Loop &L, const DominatorTree &DT, const LoopInfo *LI, ScalarEvolution *SE)
Put a loop nest into LCSSA form.
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 bool shouldOptimizeForSize(const MachineFunction *MF, ProfileSummaryInfo *PSI, const MachineBlockFrequencyInfo *BFI, PGSOQueryType QueryType=PGSOQueryType::Other)
Returns true if machine function MF is suggested to be size-optimized based on the profile.
LLVM_ABI TargetTransformInfo::UnrollingPreferences gatherUnrollingPreferences(Loop *L, ScalarEvolution &SE, const TargetTransformInfo &TTI, BlockFrequencyInfo *BFI, ProfileSummaryInfo *PSI, llvm::OptimizationRemarkEmitter &ORE, int OptLevel, std::optional< unsigned > UserThreshold, std::optional< bool > UserAllowPartial, std::optional< bool > UserRuntime, std::optional< bool > UserUpperBound, std::optional< unsigned > UserFullUnrollMaxCount)
Gather the various unrolling parameters based on the defaults, compiler flags, TTI overrides and user...
LLVM_ABI void simplifyLoopAfterUnroll(Loop *L, bool SimplifyIVs, LoopInfo *LI, ScalarEvolution *SE, DominatorTree *DT, AssumptionCache *AC, const TargetTransformInfo *TTI, ArrayRef< BasicBlock * > Blocks, AAResults *AA=nullptr)
Perform some cleanup and simplifications on loops after unrolling.
AnalysisManager< Loop, LoopStandardAnalysisResults & > LoopAnalysisManager
The loop analysis manager.
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.
LLVM_ABI void initializeLoopUnrollPass(PassRegistry &)
LLVM_ABI TargetTransformInfo::PeelingPreferences gatherPeelingPreferences(Loop *L, ScalarEvolution &SE, const TargetTransformInfo &TTI, std::optional< bool > UserAllowPeeling, std::optional< bool > UserAllowProfileBasedPeeling, bool UnrollingSpecficValues=false)
LLVM_ABI CallBase * getLoopConvergenceHeart(const Loop *TheLoop)
Find the convergence heart of the loop.
LLVM_ABI TransformationMode hasUnrollAndJamTransformation(const Loop *L)
LLVM_ABI cl::opt< bool > ForgetSCEVInLoopUnroll
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI void computePeelCount(Loop *L, unsigned LoopSize, TargetTransformInfo::PeelingPreferences &PP, unsigned TripCount, DominatorTree &DT, ScalarEvolution &SE, const TargetTransformInfo &TTI, AssumptionCache *AC=nullptr, unsigned Threshold=UINT_MAX)
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 TransformationMode hasUnrollTransformation(const Loop *L)
LoopUnrollResult
Represents the result of a UnrollLoop invocation.
@ PartiallyUnrolled
The loop was partially unrolled – we still have a loop, but with a smaller trip count.
@ Unmodified
The loop was not modified.
@ FullyUnrolled
The loop was fully unrolled into straight-line code.
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 peelLoop(Loop *L, unsigned PeelCount, bool PeelLast, LoopInfo *LI, ScalarEvolution *SE, DominatorTree &DT, AssumptionCache *AC, bool PreserveLCSSA, ValueToValueMapTy &VMap)
VMap is the value-map that maps instructions from the original loop to instructions in the last peele...
const char *const LLVMLoopUnrollFollowupAll
TransformationMode
The mode sets how eager a transformation should 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.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
LLVM_ABI MDNode * getUnrollMetadataForLoop(const Loop *L, StringRef Name)
DWARFExpression::Operation Op
ValueMap< const Value *, WeakTrackingVH > ValueToValueMapTy
const char *const LLVMLoopUnrollFollowupRemainder
LLVM_ABI PreservedAnalyses getLoopPassPreservedAnalyses()
Returns the minimum set of Analyses that all loop passes must preserve.
const char *const LLVMLoopUnrollFollowupUnrolled
void erase_if(Container &C, UnaryPredicate P)
Provide a container algorithm similar to C++ Library Fundamentals v2's erase_if which is equivalent t...
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
LLVM_ABI LoopUnrollResult UnrollLoop(Loop *L, UnrollLoopOptions ULO, LoopInfo *LI, ScalarEvolution *SE, DominatorTree *DT, AssumptionCache *AC, const llvm::TargetTransformInfo *TTI, OptimizationRemarkEmitter *ORE, bool PreserveLCSSA, Loop **RemainderLoop=nullptr, AAResults *AA=nullptr)
Unroll the given loop by Count.
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
Utility to calculate the size and a few similar metrics for a set of basic blocks.
static LLVM_ABI void collectEphemeralValues(const Loop *L, AssumptionCache *AC, SmallPtrSetImpl< const Value * > &EphValues)
Collect a loop's ephemeral values (those used only by an assume or similar intrinsics in the loop).
The adaptor from a function pass to a loop pass computes these analyses and makes them available to t...
TargetTransformInfo & TTI
A CRTP mix-in to automatically provide informational APIs needed for passes.
const Instruction * Heart
bool RuntimeUnrollMultiExit
bool AllowExpensiveTripCount
bool AddAdditionalAccumulators
unsigned SCEVExpansionBudget
const bool PragmaFullUnroll
LLVM_ABI UnrollPragmaInfo(const Loop *L)
const unsigned PragmaCount
const bool ExplicitUnroll
const bool PragmaRuntimeUnrollDisable
const bool UserUnrollCount
const bool PragmaEnableUnroll