LLVM 23.0.0git
LoopUnrollPass.cpp
Go to the documentation of this file.
1//===- LoopUnroll.cpp - Loop unroller pass --------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This pass implements a simple loop unroller. It works best when loops have
10// been canonicalized by the -indvars pass, allowing it to determine the trip
11// counts of loops easily.
12//===----------------------------------------------------------------------===//
13
15#include "llvm/ADT/DenseMap.h"
17#include "llvm/ADT/DenseSet.h"
18#include "llvm/ADT/STLExtras.h"
19#include "llvm/ADT/SetVector.h"
22#include "llvm/ADT/StringRef.h"
35#include "llvm/IR/BasicBlock.h"
36#include "llvm/IR/CFG.h"
37#include "llvm/IR/Constant.h"
38#include "llvm/IR/Constants.h"
40#include "llvm/IR/Dominators.h"
41#include "llvm/IR/Function.h"
42#include "llvm/IR/Instruction.h"
44#include "llvm/IR/Metadata.h"
45#include "llvm/IR/PassManager.h"
47#include "llvm/Pass.h"
50#include "llvm/Support/Debug.h"
62#include <algorithm>
63#include <cassert>
64#include <cstdint>
65#include <limits>
66#include <optional>
67#include <string>
68#include <tuple>
69#include <utility>
70
71using namespace llvm;
72
73#define DEBUG_TYPE "loop-unroll"
74
76 "forget-scev-loop-unroll", cl::init(false), cl::Hidden,
77 cl::desc("Forget everything in SCEV when doing LoopUnroll, instead of just"
78 " the current top-most loop. This is sometimes preferred to reduce"
79 " compile time."));
80
82 UnrollThreshold("unroll-threshold", cl::Hidden,
83 cl::desc("The cost threshold for loop unrolling"));
84
87 "unroll-optsize-threshold", cl::init(0), cl::Hidden,
88 cl::desc("The cost threshold for loop unrolling when optimizing for "
89 "size"));
90
92 "unroll-partial-threshold", cl::Hidden,
93 cl::desc("The cost threshold for partial loop unrolling"));
94
96 "unroll-max-percent-threshold-boost", cl::init(400), cl::Hidden,
97 cl::desc("The maximum 'boost' (represented as a percentage >= 100) applied "
98 "to the threshold when aggressively unrolling a loop due to the "
99 "dynamic cost savings. If completely unrolling a loop will reduce "
100 "the total runtime from X to Y, we boost the loop unroll "
101 "threshold to DefaultThreshold*std::min(MaxPercentThresholdBoost, "
102 "X/Y). This limit avoids excessive code bloat."));
103
105 "unroll-max-iteration-count-to-analyze", cl::init(10), cl::Hidden,
106 cl::desc("Don't allow loop unrolling to simulate more than this number of "
107 "iterations when checking full unroll profitability"));
108
110 "unroll-count", cl::Hidden,
111 cl::desc("Use this unroll count for all loops including those with "
112 "unroll_count pragma values, for testing purposes"));
113
115 "unroll-max-count", cl::Hidden,
116 cl::desc("Set the max unroll count for partial and runtime unrolling, for"
117 "testing purposes"));
118
120 "unroll-full-max-count", cl::Hidden,
121 cl::desc(
122 "Set the max unroll count for full unrolling, for testing purposes"));
123
124static cl::opt<bool>
125 UnrollAllowPartial("unroll-allow-partial", cl::Hidden,
126 cl::desc("Allows loops to be partially unrolled until "
127 "-unroll-threshold loop size is reached."));
128
130 "unroll-allow-remainder", cl::Hidden,
131 cl::desc("Allow generation of a loop remainder (extra iterations) "
132 "when unrolling a loop."));
133
134static cl::opt<bool>
135 UnrollRuntime("unroll-runtime", cl::Hidden,
136 cl::desc("Unroll loops with run-time trip counts"));
137
139 "unroll-max-upperbound", cl::init(8), cl::Hidden,
140 cl::desc(
141 "The max of trip count upper bound that is considered in unrolling"));
142
144 "pragma-unroll-threshold", cl::init(16 * 1024), cl::Hidden,
145 cl::desc("Unrolled size limit for loops with unroll metadata "
146 "(full, enable, or count)."));
147
149 "flat-loop-tripcount-threshold", cl::init(5), cl::Hidden,
150 cl::desc("If the runtime tripcount for the loop is lower than the "
151 "threshold, the loop is considered as flat and will be less "
152 "aggressively unrolled."));
153
155 "unroll-remainder", cl::Hidden,
156 cl::desc("Allow the loop remainder to be unrolled."));
157
158// This option isn't ever intended to be enabled, it serves to allow
159// experiments to check the assumptions about when this kind of revisit is
160// necessary.
162 "unroll-revisit-child-loops", cl::Hidden,
163 cl::desc("Enqueue and re-visit child loops in the loop PM after unrolling. "
164 "This shouldn't typically be needed as child loops (or their "
165 "clones) were already visited."));
166
168 "unroll-threshold-aggressive", cl::init(300), cl::Hidden,
169 cl::desc("Threshold (max size of unrolled loop) to use in aggressive (O3) "
170 "optimizations"));
172 UnrollThresholdDefault("unroll-threshold-default", cl::init(150),
174 cl::desc("Default threshold (max size of unrolled "
175 "loop), used in all but O3 optimizations"));
176
178 "pragma-unroll-full-max-iterations", cl::init(1'000'000), cl::Hidden,
179 cl::desc("Maximum allowed iterations to unroll under pragma unroll full."));
180
181/// A magic value for use with the Threshold parameter to indicate
182/// that the loop unroll should be performed regardless of how much
183/// code expansion would result.
184static const unsigned NoThreshold = std::numeric_limits<unsigned>::max();
185
186/// Gather the various unrolling parameters based on the defaults, compiler
187/// flags, TTI overrides and user specified parameters.
191 OptimizationRemarkEmitter &ORE, int OptLevel,
192 std::optional<unsigned> UserThreshold, std::optional<unsigned> UserCount,
193 std::optional<bool> UserAllowPartial, std::optional<bool> UserRuntime,
194 std::optional<bool> UserUpperBound,
195 std::optional<unsigned> UserFullUnrollMaxCount) {
197
198 // Set up the defaults
199 UP.Threshold =
203 UP.PartialThreshold = 150;
205 UP.Count = 0;
207 UP.MaxCount = std::numeric_limits<unsigned>::max();
209 UP.FullUnrollMaxCount = std::numeric_limits<unsigned>::max();
210 UP.BEInsns = 2;
211 UP.Partial = false;
212 UP.Runtime = false;
213 UP.AllowRemainder = true;
214 UP.UnrollRemainder = false;
215 UP.AllowExpensiveTripCount = false;
216 UP.Force = false;
217 UP.UpperBound = false;
218 UP.UnrollAndJam = false;
222 UP.RuntimeUnrollMultiExit = false;
223 UP.AddAdditionalAccumulators = false;
224
225 // Override with any target specific settings
226 TTI.getUnrollingPreferences(L, SE, UP, &ORE);
227
228 // Apply size attributes
229 bool OptForSize = L->getHeader()->getParent()->hasOptSize() ||
230 // Let unroll hints / pragmas take precedence over PGSO.
232 llvm::shouldOptimizeForSize(L->getHeader(), PSI, BFI,
234 if (OptForSize) {
238 }
239
240 // Apply any user values specified by cl::opt
241 if (UnrollThreshold.getNumOccurrences() > 0)
243 if (UnrollPartialThreshold.getNumOccurrences() > 0)
245 if (UnrollMaxPercentThresholdBoost.getNumOccurrences() > 0)
247 if (UnrollMaxCount.getNumOccurrences() > 0)
249 if (UnrollMaxUpperBound.getNumOccurrences() > 0)
251 if (UnrollFullMaxCount.getNumOccurrences() > 0)
253 if (UnrollAllowPartial.getNumOccurrences() > 0)
255 if (UnrollAllowRemainder.getNumOccurrences() > 0)
257 if (UnrollRuntime.getNumOccurrences() > 0)
259 if (UnrollMaxUpperBound == 0)
260 UP.UpperBound = false;
261 if (UnrollUnrollRemainder.getNumOccurrences() > 0)
263 if (UnrollMaxIterationsCountToAnalyze.getNumOccurrences() > 0)
265
266 // Apply user values provided by argument
267 if (UserThreshold) {
268 UP.Threshold = *UserThreshold;
269 UP.PartialThreshold = *UserThreshold;
270 }
271 if (UserCount)
272 UP.Count = *UserCount;
273 if (UserAllowPartial)
274 UP.Partial = *UserAllowPartial;
275 if (UserRuntime)
276 UP.Runtime = *UserRuntime;
277 if (UserUpperBound)
278 UP.UpperBound = *UserUpperBound;
279 if (UserFullUnrollMaxCount)
280 UP.FullUnrollMaxCount = *UserFullUnrollMaxCount;
281
282 return UP;
283}
284
285namespace {
286
287/// A struct to densely store the state of an instruction after unrolling at
288/// each iteration.
289///
290/// This is designed to work like a tuple of <Instruction *, int> for the
291/// purposes of hashing and lookup, but to be able to associate two boolean
292/// states with each key.
293struct UnrolledInstState {
294 Instruction *I;
295 int Iteration : 30;
296 unsigned IsFree : 1;
297 unsigned IsCounted : 1;
298};
299
300/// Hashing and equality testing for a set of the instruction states.
301struct UnrolledInstStateKeyInfo {
302 using PtrInfo = DenseMapInfo<Instruction *>;
303 using PairInfo = DenseMapInfo<std::pair<Instruction *, int>>;
304
305 static inline UnrolledInstState getEmptyKey() {
306 return {PtrInfo::getEmptyKey(), 0, 0, 0};
307 }
308
309 static inline UnrolledInstState getTombstoneKey() {
310 return {PtrInfo::getTombstoneKey(), 0, 0, 0};
311 }
312
313 static inline unsigned getHashValue(const UnrolledInstState &S) {
314 return PairInfo::getHashValue({S.I, S.Iteration});
315 }
316
317 static inline bool isEqual(const UnrolledInstState &LHS,
318 const UnrolledInstState &RHS) {
319 return PairInfo::isEqual({LHS.I, LHS.Iteration}, {RHS.I, RHS.Iteration});
320 }
321};
322
323struct EstimatedUnrollCost {
324 /// The estimated cost after unrolling.
325 unsigned UnrolledCost;
326
327 /// The estimated dynamic cost of executing the instructions in the
328 /// rolled form.
329 unsigned RolledDynamicCost;
330};
331
332struct PragmaInfo {
333 PragmaInfo(bool UUC, bool PFU, unsigned PC, bool PEU)
334 : UserUnrollCount(UUC), PragmaFullUnroll(PFU), PragmaCount(PC),
335 PragmaEnableUnroll(PEU) {}
336 const bool UserUnrollCount;
337 const bool PragmaFullUnroll;
338 const unsigned PragmaCount;
339 const bool PragmaEnableUnroll;
340};
341
342} // end anonymous namespace
343
344/// Figure out if the loop is worth full unrolling.
345///
346/// Complete loop unrolling can make some loads constant, and we need to know
347/// if that would expose any further optimization opportunities. This routine
348/// estimates this optimization. It computes cost of unrolled loop
349/// (UnrolledCost) and dynamic cost of the original loop (RolledDynamicCost). By
350/// dynamic cost we mean that we won't count costs of blocks that are known not
351/// to be executed (i.e. if we have a branch in the loop and we know that at the
352/// given iteration its condition would be resolved to true, we won't add up the
353/// cost of the 'false'-block).
354/// \returns Optional value, holding the RolledDynamicCost and UnrolledCost. If
355/// the analysis failed (no benefits expected from the unrolling, or the loop is
356/// too big to analyze), the returned value is std::nullopt.
357static std::optional<EstimatedUnrollCost> analyzeLoopUnrollCost(
358 const Loop *L, unsigned TripCount, DominatorTree &DT, ScalarEvolution &SE,
359 const SmallPtrSetImpl<const Value *> &EphValues,
360 const TargetTransformInfo &TTI, unsigned MaxUnrolledLoopSize,
361 unsigned MaxIterationsCountToAnalyze) {
362 // We want to be able to scale offsets by the trip count and add more offsets
363 // to them without checking for overflows, and we already don't want to
364 // analyze *massive* trip counts, so we force the max to be reasonably small.
365 assert(MaxIterationsCountToAnalyze <
366 (unsigned)(std::numeric_limits<int>::max() / 2) &&
367 "The unroll iterations max is too large!");
368
369 // Only analyze inner loops. We can't properly estimate cost of nested loops
370 // and we won't visit inner loops again anyway.
371 if (!L->isInnermost()) {
373 << "Not analyzing loop cost: not an innermost loop.\n");
374 return std::nullopt;
375 }
376
377 // Don't simulate loops with a big or unknown tripcount
378 if (!TripCount || TripCount > MaxIterationsCountToAnalyze) {
380 << "Not analyzing loop cost: trip count "
381 << (TripCount ? "too large" : "unknown") << ".\n");
382 return std::nullopt;
383 }
384
387 DenseMap<Value *, Value *> SimplifiedValues;
388 SmallVector<std::pair<Value *, Value *>, 4> SimplifiedInputValues;
389
390 // The estimated cost of the unrolled form of the loop. We try to estimate
391 // this by simplifying as much as we can while computing the estimate.
392 InstructionCost UnrolledCost = 0;
393
394 // We also track the estimated dynamic (that is, actually executed) cost in
395 // the rolled form. This helps identify cases when the savings from unrolling
396 // aren't just exposing dead control flows, but actual reduced dynamic
397 // instructions due to the simplifications which we expect to occur after
398 // unrolling.
399 InstructionCost RolledDynamicCost = 0;
400
401 // We track the simplification of each instruction in each iteration. We use
402 // this to recursively merge costs into the unrolled cost on-demand so that
403 // we don't count the cost of any dead code. This is essentially a map from
404 // <instruction, int> to <bool, bool>, but stored as a densely packed struct.
406
407 // A small worklist used to accumulate cost of instructions from each
408 // observable and reached root in the loop.
410
411 // PHI-used worklist used between iterations while accumulating cost.
413
414 // Helper function to accumulate cost for instructions in the loop.
415 auto AddCostRecursively = [&](Instruction &RootI, int Iteration) {
416 assert(Iteration >= 0 && "Cannot have a negative iteration!");
417 assert(CostWorklist.empty() && "Must start with an empty cost list");
418 assert(PHIUsedList.empty() && "Must start with an empty phi used list");
419 CostWorklist.push_back(&RootI);
421 RootI.getFunction()->hasMinSize() ?
424 for (;; --Iteration) {
425 do {
426 Instruction *I = CostWorklist.pop_back_val();
427
428 // InstCostMap only uses I and Iteration as a key, the other two values
429 // don't matter here.
430 auto CostIter = InstCostMap.find({I, Iteration, 0, 0});
431 if (CostIter == InstCostMap.end())
432 // If an input to a PHI node comes from a dead path through the loop
433 // we may have no cost data for it here. What that actually means is
434 // that it is free.
435 continue;
436 auto &Cost = *CostIter;
437 if (Cost.IsCounted)
438 // Already counted this instruction.
439 continue;
440
441 // Mark that we are counting the cost of this instruction now.
442 Cost.IsCounted = true;
443
444 // If this is a PHI node in the loop header, just add it to the PHI set.
445 if (auto *PhiI = dyn_cast<PHINode>(I))
446 if (PhiI->getParent() == L->getHeader()) {
447 assert(Cost.IsFree && "Loop PHIs shouldn't be evaluated as they "
448 "inherently simplify during unrolling.");
449 if (Iteration == 0)
450 continue;
451
452 // Push the incoming value from the backedge into the PHI used list
453 // if it is an in-loop instruction. We'll use this to populate the
454 // cost worklist for the next iteration (as we count backwards).
455 if (auto *OpI = dyn_cast<Instruction>(
456 PhiI->getIncomingValueForBlock(L->getLoopLatch())))
457 if (L->contains(OpI))
458 PHIUsedList.push_back(OpI);
459 continue;
460 }
461
462 // First accumulate the cost of this instruction.
463 if (!Cost.IsFree) {
464 // Consider simplified operands in instruction cost.
466 transform(I->operands(), std::back_inserter(Operands),
467 [&](Value *Op) {
468 if (auto Res = SimplifiedValues.lookup(Op))
469 return Res;
470 return Op;
471 });
472 UnrolledCost += TTI.getInstructionCost(I, Operands, CostKind);
474 << "Adding cost of instruction (iteration " << Iteration
475 << "): ");
476 LLVM_DEBUG(I->dump());
477 }
478
479 // We must count the cost of every operand which is not free,
480 // recursively. If we reach a loop PHI node, simply add it to the set
481 // to be considered on the next iteration (backwards!).
482 for (Value *Op : I->operands()) {
483 // Check whether this operand is free due to being a constant or
484 // outside the loop.
485 auto *OpI = dyn_cast<Instruction>(Op);
486 if (!OpI || !L->contains(OpI))
487 continue;
488
489 // Otherwise accumulate its cost.
490 CostWorklist.push_back(OpI);
491 }
492 } while (!CostWorklist.empty());
493
494 if (PHIUsedList.empty())
495 // We've exhausted the search.
496 break;
497
498 assert(Iteration > 0 &&
499 "Cannot track PHI-used values past the first iteration!");
500 CostWorklist.append(PHIUsedList.begin(), PHIUsedList.end());
501 PHIUsedList.clear();
502 }
503 };
504
505 // Ensure that we don't violate the loop structure invariants relied on by
506 // this analysis.
507 assert(L->isLoopSimplifyForm() && "Must put loop into normal form first.");
508 assert(L->isLCSSAForm(DT) &&
509 "Must have loops in LCSSA form to track live-out values.");
510
512 << "Starting LoopUnroll profitability analysis...\n");
513
515 L->getHeader()->getParent()->hasMinSize() ?
517 // Simulate execution of each iteration of the loop counting instructions,
518 // which would be simplified.
519 // Since the same load will take different values on different iterations,
520 // we literally have to go through all loop's iterations.
521 for (unsigned Iteration = 0; Iteration < TripCount; ++Iteration) {
522 LLVM_DEBUG(dbgs().indent(3) << "Analyzing iteration " << Iteration << "\n");
523
524 // Prepare for the iteration by collecting any simplified entry or backedge
525 // inputs.
526 for (Instruction &I : *L->getHeader()) {
527 auto *PHI = dyn_cast<PHINode>(&I);
528 if (!PHI)
529 break;
530
531 // The loop header PHI nodes must have exactly two input: one from the
532 // loop preheader and one from the loop latch.
533 assert(
534 PHI->getNumIncomingValues() == 2 &&
535 "Must have an incoming value only for the preheader and the latch.");
536
537 Value *V = PHI->getIncomingValueForBlock(
538 Iteration == 0 ? L->getLoopPreheader() : L->getLoopLatch());
539 if (Iteration != 0 && SimplifiedValues.count(V))
540 V = SimplifiedValues.lookup(V);
541 SimplifiedInputValues.push_back({PHI, V});
542 }
543
544 // Now clear and re-populate the map for the next iteration.
545 SimplifiedValues.clear();
546 while (!SimplifiedInputValues.empty())
547 SimplifiedValues.insert(SimplifiedInputValues.pop_back_val());
548
549 UnrolledInstAnalyzer Analyzer(Iteration, SimplifiedValues, SE, L);
550
551 BBWorklist.clear();
552 BBWorklist.insert(L->getHeader());
553 // Note that we *must not* cache the size, this loop grows the worklist.
554 for (unsigned Idx = 0; Idx != BBWorklist.size(); ++Idx) {
555 BasicBlock *BB = BBWorklist[Idx];
556
557 // Visit all instructions in the given basic block and try to simplify
558 // it. We don't change the actual IR, just count optimization
559 // opportunities.
560 for (Instruction &I : *BB) {
561 // These won't get into the final code - don't even try calculating the
562 // cost for them.
563 if (EphValues.count(&I))
564 continue;
565
566 // Track this instruction's expected baseline cost when executing the
567 // rolled loop form.
568 RolledDynamicCost += TTI.getInstructionCost(&I, CostKind);
569
570 // Visit the instruction to analyze its loop cost after unrolling,
571 // and if the visitor returns true, mark the instruction as free after
572 // unrolling and continue.
573 bool IsFree = Analyzer.visit(I);
574 bool Inserted = InstCostMap.insert({&I, (int)Iteration,
575 (unsigned)IsFree,
576 /*IsCounted*/ false}).second;
577 (void)Inserted;
578 assert(Inserted && "Cannot have a state for an unvisited instruction!");
579
580 if (IsFree)
581 continue;
582
583 // Can't properly model a cost of a call.
584 // FIXME: With a proper cost model we should be able to do it.
585 if (auto *CI = dyn_cast<CallInst>(&I)) {
586 const Function *Callee = CI->getCalledFunction();
587 if (!Callee || TTI.isLoweredToCall(Callee)) {
589 << "Can't analyze cost of loop with call\n");
590 return std::nullopt;
591 }
592 }
593
594 // If the instruction might have a side-effect recursively account for
595 // the cost of it and all the instructions leading up to it.
596 if (I.mayHaveSideEffects())
597 AddCostRecursively(I, Iteration);
598
599 // If unrolled body turns out to be too big, bail out.
600 if (UnrolledCost > MaxUnrolledLoopSize) {
601 LLVM_DEBUG({
602 dbgs().indent(3) << "Exceeded threshold.. exiting.\n";
603 dbgs().indent(3)
604 << "UnrolledCost: " << UnrolledCost
605 << ", MaxUnrolledLoopSize: " << MaxUnrolledLoopSize << "\n";
606 });
607 return std::nullopt;
608 }
609 }
610
611 Instruction *TI = BB->getTerminator();
612
613 auto getSimplifiedConstant = [&](Value *V) -> Constant * {
614 if (SimplifiedValues.count(V))
615 V = SimplifiedValues.lookup(V);
616 return dyn_cast<Constant>(V);
617 };
618
619 // Add in the live successors by first checking whether we have terminator
620 // that may be simplified based on the values simplified by this call.
621 BasicBlock *KnownSucc = nullptr;
622 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
623 if (BI->isConditional()) {
624 if (auto *SimpleCond = getSimplifiedConstant(BI->getCondition())) {
625 // Just take the first successor if condition is undef
626 if (isa<UndefValue>(SimpleCond))
627 KnownSucc = BI->getSuccessor(0);
628 else if (ConstantInt *SimpleCondVal =
629 dyn_cast<ConstantInt>(SimpleCond))
630 KnownSucc = BI->getSuccessor(SimpleCondVal->isZero() ? 1 : 0);
631 }
632 }
633 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
634 if (auto *SimpleCond = getSimplifiedConstant(SI->getCondition())) {
635 // Just take the first successor if condition is undef
636 if (isa<UndefValue>(SimpleCond))
637 KnownSucc = SI->getSuccessor(0);
638 else if (ConstantInt *SimpleCondVal =
639 dyn_cast<ConstantInt>(SimpleCond))
640 KnownSucc = SI->findCaseValue(SimpleCondVal)->getCaseSuccessor();
641 }
642 }
643 if (KnownSucc) {
644 if (L->contains(KnownSucc))
645 BBWorklist.insert(KnownSucc);
646 else
647 ExitWorklist.insert({BB, KnownSucc});
648 continue;
649 }
650
651 // Add BB's successors to the worklist.
652 for (BasicBlock *Succ : successors(BB))
653 if (L->contains(Succ))
654 BBWorklist.insert(Succ);
655 else
656 ExitWorklist.insert({BB, Succ});
657 AddCostRecursively(*TI, Iteration);
658 }
659
660 // If we found no optimization opportunities on the first iteration, we
661 // won't find them on later ones too.
662 if (UnrolledCost == RolledDynamicCost) {
663 LLVM_DEBUG({
664 dbgs().indent(3) << "No opportunities found.. exiting.\n";
665 dbgs().indent(3) << "UnrolledCost: " << UnrolledCost << "\n";
666 });
667 return std::nullopt;
668 }
669 }
670
671 while (!ExitWorklist.empty()) {
672 BasicBlock *ExitingBB, *ExitBB;
673 std::tie(ExitingBB, ExitBB) = ExitWorklist.pop_back_val();
674
675 for (Instruction &I : *ExitBB) {
676 auto *PN = dyn_cast<PHINode>(&I);
677 if (!PN)
678 break;
679
680 Value *Op = PN->getIncomingValueForBlock(ExitingBB);
681 if (auto *OpI = dyn_cast<Instruction>(Op))
682 if (L->contains(OpI))
683 AddCostRecursively(*OpI, TripCount - 1);
684 }
685 }
686
687 assert(UnrolledCost.isValid() && RolledDynamicCost.isValid() &&
688 "All instructions must have a valid cost, whether the "
689 "loop is rolled or unrolled.");
690
691 LLVM_DEBUG({
692 dbgs().indent(3) << "Analysis finished:\n";
693 dbgs().indent(3) << "UnrolledCost: " << UnrolledCost
694 << ", RolledDynamicCost: " << RolledDynamicCost << "\n";
695 });
696 return {{unsigned(UnrolledCost.getValue()),
697 unsigned(RolledDynamicCost.getValue())}};
698}
699
701 const Loop *L, const TargetTransformInfo &TTI,
702 const SmallPtrSetImpl<const Value *> &EphValues, unsigned BEInsns) {
704 for (BasicBlock *BB : L->blocks())
705 Metrics.analyzeBasicBlock(BB, TTI, EphValues, /* PrepareForLTO= */ false,
706 L);
707 NumInlineCandidates = Metrics.NumInlineCandidates;
708 NotDuplicatable = Metrics.notDuplicatable;
709 Convergence = Metrics.Convergence;
710 LoopSize = Metrics.NumInsts;
712 Metrics.Convergence != ConvergenceKind::Uncontrolled &&
714
715 // Don't allow an estimate of size zero. This would allows unrolling of loops
716 // with huge iteration counts, which is a compile time problem even if it's
717 // not a problem for code quality. Also, the code using this size may assume
718 // that each loop has at least three instructions (likely a conditional
719 // branch, a comparison feeding that branch, and some kind of loop increment
720 // feeding that comparison instruction).
721 if (LoopSize.isValid() && LoopSize < BEInsns + 1)
722 // This is an open coded max() on InstructionCost
723 LoopSize = BEInsns + 1;
724}
725
729 << "Not unrolling: contains convergent operations.\n");
730 return false;
731 }
732 if (!LoopSize.isValid()) {
734 << "Not unrolling: loop size could not be computed.\n");
735 return false;
736 }
737 if (NotDuplicatable) {
739 << "Not unrolling: contains non-duplicatable instructions.\n");
740 return false;
741 }
742 return true;
743}
744
747 unsigned CountOverwrite) const {
748 unsigned LS = LoopSize.getValue();
749 assert(LS >= UP.BEInsns && "LoopSize should not be less than BEInsns!");
750 if (CountOverwrite)
751 return static_cast<uint64_t>(LS - UP.BEInsns) * CountOverwrite + UP.BEInsns;
752 else
753 return static_cast<uint64_t>(LS - UP.BEInsns) * UP.Count + UP.BEInsns;
754}
755
756// Returns the loop hint metadata node with the given name (for example,
757// "llvm.loop.unroll.count"). If no such metadata node exists, then nullptr is
758// returned.
760 if (MDNode *LoopID = L->getLoopID())
761 return GetUnrollMetadata(LoopID, Name);
762 return nullptr;
763}
764
765// Returns true if the loop has an unroll(full) pragma.
766static bool hasUnrollFullPragma(const Loop *L) {
767 return getUnrollMetadataForLoop(L, "llvm.loop.unroll.full");
768}
769
770// Returns true if the loop has an unroll(enable) pragma. This metadata is used
771// for both "#pragma unroll" and "#pragma clang loop unroll(enable)" directives.
772static bool hasUnrollEnablePragma(const Loop *L) {
773 return getUnrollMetadataForLoop(L, "llvm.loop.unroll.enable");
774}
775
776// Returns true if the loop has an runtime unroll(disable) pragma.
777static bool hasRuntimeUnrollDisablePragma(const Loop *L) {
778 return getUnrollMetadataForLoop(L, "llvm.loop.unroll.runtime.disable");
779}
780
781// If loop has an unroll_count pragma return the (necessarily
782// positive) value from the pragma. Otherwise return 0.
783static unsigned unrollCountPragmaValue(const Loop *L) {
784 MDNode *MD = getUnrollMetadataForLoop(L, "llvm.loop.unroll.count");
785 if (MD) {
786 assert(MD->getNumOperands() == 2 &&
787 "Unroll count hint metadata should have two operands.");
788 unsigned Count =
789 mdconst::extract<ConstantInt>(MD->getOperand(1))->getZExtValue();
790 assert(Count >= 1 && "Unroll count must be positive.");
791 return Count;
792 }
793 return 0;
794}
795
796// Computes the boosting factor for complete unrolling.
797// If fully unrolling the loop would save a lot of RolledDynamicCost, it would
798// be beneficial to fully unroll the loop even if unrolledcost is large. We
799// use (RolledDynamicCost / UnrolledCost) to model the unroll benefits to adjust
800// the unroll threshold.
801static unsigned getFullUnrollBoostingFactor(const EstimatedUnrollCost &Cost,
802 unsigned MaxPercentThresholdBoost) {
803 if (Cost.RolledDynamicCost >= std::numeric_limits<unsigned>::max() / 100)
804 return 100;
805 else if (Cost.UnrolledCost != 0)
806 // The boosting factor is RolledDynamicCost / UnrolledCost
807 return std::min(100 * Cost.RolledDynamicCost / Cost.UnrolledCost,
808 MaxPercentThresholdBoost);
809 else
810 return MaxPercentThresholdBoost;
811}
812
813static std::optional<unsigned>
814shouldPragmaUnroll(Loop *L, const PragmaInfo &PInfo,
815 const unsigned TripMultiple, const unsigned TripCount,
816 unsigned MaxTripCount, const UnrollCostEstimator UCE,
818
819 // Using unroll pragma
820 // 1st priority is unroll count set by "unroll-count" option.
821
822 if (PInfo.UserUnrollCount) {
823 if (UP.AllowRemainder &&
824 UCE.getUnrolledLoopSize(UP, (unsigned)UnrollCount) < UP.Threshold) {
825 LLVM_DEBUG(dbgs().indent(2) << "Unrolling with user-specified count: "
826 << UnrollCount << ".\n");
827 return (unsigned)UnrollCount;
828 }
830 << "Not unrolling with user count " << UnrollCount << ": "
831 << (UP.AllowRemainder ? "exceeds threshold"
832 : "remainder not allowed")
833 << ".\n");
834 }
835
836 // 2nd priority is unroll count set by pragma.
837 if (PInfo.PragmaCount > 0) {
838 if ((UP.AllowRemainder || (TripMultiple % PInfo.PragmaCount == 0))) {
839 LLVM_DEBUG(dbgs().indent(2) << "Unrolling with pragma count: "
840 << PInfo.PragmaCount << ".\n");
841 return PInfo.PragmaCount;
842 }
844 << "Not unrolling with pragma count " << PInfo.PragmaCount
845 << ": remainder not allowed, count does not divide trip "
846 << "multiple " << TripMultiple << ".\n");
847 }
848
849 if (PInfo.PragmaFullUnroll) {
850 if (TripCount != 0) {
851 // Certain cases with UBSAN can cause trip count to be calculated as
852 // INT_MAX, Block full unrolling at a reasonable limit so that the
853 // compiler doesn't hang trying to unroll the loop. See PR77842
854 if (TripCount > PragmaUnrollFullMaxIterations) {
856 << "Won't unroll; trip count is too large.\n");
857 return std::nullopt;
858 }
859
861 << "Fully unrolling with trip count: " << TripCount << ".\n");
862 return TripCount;
863 }
865 << "Not fully unrolling: unknown trip count.\n");
866 }
867
868 if (PInfo.PragmaEnableUnroll && !TripCount && MaxTripCount &&
869 MaxTripCount <= UP.MaxUpperBound) {
871 << "Unrolling with max trip count: " << MaxTripCount << ".\n");
872 return MaxTripCount;
873 }
874
875 return std::nullopt;
876}
877
878static std::optional<unsigned> shouldFullUnroll(
881 const unsigned FullUnrollTripCount, const UnrollCostEstimator UCE,
883 assert(FullUnrollTripCount && "should be non-zero!");
884
885 if (FullUnrollTripCount > UP.FullUnrollMaxCount) {
887 << "Not unrolling: trip count " << FullUnrollTripCount
888 << " exceeds max count " << UP.FullUnrollMaxCount << ".\n");
889 return std::nullopt;
890 }
891
892 // When computing the unrolled size, note that BEInsns are not replicated
893 // like the rest of the loop body.
894 uint64_t UnrolledSize = UCE.getUnrolledLoopSize(UP);
895 if (UnrolledSize < UP.Threshold) {
896 LLVM_DEBUG(dbgs().indent(2) << "Unrolling: size " << UnrolledSize
897 << " < threshold " << UP.Threshold << ".\n");
898 return FullUnrollTripCount;
899 }
900
902 << "Unrolled size " << UnrolledSize << " exceeds threshold "
903 << UP.Threshold << "; checking for cost benefit.\n");
904
905 // The loop isn't that small, but we still can fully unroll it if that
906 // helps to remove a significant number of instructions.
907 // To check that, run additional analysis on the loop.
908 if (std::optional<EstimatedUnrollCost> Cost = analyzeLoopUnrollCost(
909 L, FullUnrollTripCount, DT, SE, EphValues, TTI,
912 unsigned Boost =
914 unsigned BoostedThreshold = UP.Threshold * Boost / 100;
915 if (Cost->UnrolledCost < BoostedThreshold) {
916 LLVM_DEBUG(dbgs().indent(2) << "Profitable after cost analysis.\n");
917 return FullUnrollTripCount;
918 }
920 << "Not unrolling: cost " << Cost->UnrolledCost
921 << " >= boosted threshold " << BoostedThreshold << ".\n");
922 }
923
924 return std::nullopt;
925}
926
927static std::optional<unsigned>
928shouldPartialUnroll(const unsigned LoopSize, const unsigned TripCount,
929 const UnrollCostEstimator UCE,
931
932 if (!TripCount)
933 return std::nullopt;
934
935 if (!UP.Partial) {
936 LLVM_DEBUG(dbgs().indent(2) << "Will not try to unroll partially because "
937 << "-unroll-allow-partial not given\n");
938 return 0;
939 }
940 unsigned count = UP.Count;
941 if (count == 0)
942 count = TripCount;
943 if (UP.PartialThreshold != NoThreshold) {
944 // Reduce unroll count to be modulo of TripCount for partial unrolling.
945 if (UCE.getUnrolledLoopSize(UP, count) > UP.PartialThreshold) {
946 unsigned NewCount =
947 (std::max(UP.PartialThreshold, UP.BEInsns + 1) - UP.BEInsns) /
948 (LoopSize - UP.BEInsns);
950 << "Unrolled size exceeds threshold; reducing count "
951 << "from " << count << " to " << NewCount << ".\n");
952 count = NewCount;
953 }
954 if (count > UP.MaxCount)
955 count = UP.MaxCount;
956 while (count != 0 && TripCount % count != 0)
957 count--;
958 if (UP.AllowRemainder && count <= 1) {
959 // If there is no Count that is modulo of TripCount, set Count to
960 // largest power-of-two factor that satisfies the threshold limit.
961 // As we'll create fixup loop, do the type of unrolling only if
962 // remainder loop is allowed.
963 // Note: DefaultUnrollRuntimeCount is used as a reasonable starting point
964 // even though this is partial unrolling (not runtime unrolling).
966 while (count != 0 &&
968 count >>= 1;
969 }
970 if (count < 2) {
972 << "Will not partially unroll: no profitable count.\n");
973 count = 0;
974 }
975 } else {
976 count = TripCount;
977 }
978 if (count > UP.MaxCount)
979 count = UP.MaxCount;
980
982 << "Partially unrolling with count: " << count << "\n");
983
984 return count;
985}
986// Returns true if unroll count was set explicitly.
987// Calculates unroll count and writes it to UP.Count.
988// Unless IgnoreUser is true, will also use metadata and command-line options
989// that are specific to the LoopUnroll pass (which, for instance, are
990// irrelevant for the LoopUnrollAndJam pass).
991// FIXME: This function is used by LoopUnroll and LoopUnrollAndJam, but consumes
992// many LoopUnroll-specific options. The shared functionality should be
993// refactored into it own function.
995 DominatorTree &DT, LoopInfo *LI,
997 const SmallPtrSetImpl<const Value *> &EphValues,
999 const unsigned TripCount,
1000 const unsigned MaxTripCount, const bool MaxOrZero,
1001 const unsigned TripMultiple,
1002 const UnrollCostEstimator &UCE,
1005
1006 unsigned LoopSize = UCE.getRolledLoopSize();
1007
1008 LLVM_DEBUG(dbgs().indent(1) << "Computing unroll count: TripCount="
1009 << TripCount << ", MaxTripCount=" << MaxTripCount
1010 << (MaxOrZero ? " (MaxOrZero)" : "")
1011 << ", TripMultiple=" << TripMultiple << "\n");
1012
1013 const bool UserUnrollCount = UnrollCount.getNumOccurrences() > 0;
1014 const bool PragmaFullUnroll = hasUnrollFullPragma(L);
1015 const unsigned PragmaCount = unrollCountPragmaValue(L);
1016 const bool PragmaEnableUnroll = hasUnrollEnablePragma(L);
1017
1018 const bool ExplicitUnroll = PragmaCount > 0 || PragmaFullUnroll ||
1019 PragmaEnableUnroll || UserUnrollCount;
1020
1021 LLVM_DEBUG({
1022 if (ExplicitUnroll) {
1023 dbgs().indent(1) << "Explicit unroll requested:";
1024 if (UserUnrollCount)
1025 dbgs() << " user-count";
1026 if (PragmaFullUnroll)
1027 dbgs() << " pragma-full";
1028 if (PragmaCount > 0)
1029 dbgs() << " pragma-count(" << PragmaCount << ")";
1030 if (PragmaEnableUnroll)
1031 dbgs() << " pragma-enable";
1032 dbgs() << "\n";
1033 }
1034 });
1035
1036 PragmaInfo PInfo(UserUnrollCount, PragmaFullUnroll, PragmaCount,
1037 PragmaEnableUnroll);
1038 // Use an explicit peel count that has been specified for testing. In this
1039 // case it's not permitted to also specify an explicit unroll count.
1040 if (PP.PeelCount) {
1041 if (UnrollCount.getNumOccurrences() > 0) {
1042 reportFatalUsageError("Cannot specify both explicit peel count and "
1043 "explicit unroll count");
1044 }
1046 << "Using explicit peel count: " << PP.PeelCount << ".\n");
1047 UP.Count = 1;
1048 UP.Runtime = false;
1049 return true;
1050 }
1051 // Check for explicit Count.
1052 // 1st priority is unroll count set by "unroll-count" option.
1053 // 2nd priority is unroll count set by pragma.
1054 LLVM_DEBUG(dbgs().indent(1) << "Trying pragma unroll...\n");
1055 if (auto UnrollFactor = shouldPragmaUnroll(L, PInfo, TripMultiple, TripCount,
1056 MaxTripCount, UCE, UP)) {
1057 UP.Count = *UnrollFactor;
1058
1059 if (UserUnrollCount || (PragmaCount > 0)) {
1060 UP.AllowExpensiveTripCount = true;
1061 UP.Force = true;
1062 }
1063 UP.Runtime |= (PragmaCount > 0);
1064 return ExplicitUnroll;
1065 } else {
1066 if (ExplicitUnroll && TripCount != 0) {
1067 // If the loop has an unrolling pragma, we want to be more aggressive with
1068 // unrolling limits. Set thresholds to at least the PragmaUnrollThreshold
1069 // value which is larger than the default limits.
1070 UP.Threshold = std::max<unsigned>(UP.Threshold, PragmaUnrollThreshold);
1071 UP.PartialThreshold =
1072 std::max<unsigned>(UP.PartialThreshold, PragmaUnrollThreshold);
1073 }
1074 }
1075
1076 // 3rd priority is exact full unrolling. This will eliminate all copies
1077 // of some exit test.
1078 LLVM_DEBUG(dbgs().indent(1) << "Trying full unroll...\n");
1079 UP.Count = 0;
1080 if (TripCount) {
1081 UP.Count = TripCount;
1082 if (auto UnrollFactor = shouldFullUnroll(L, TTI, DT, SE, EphValues,
1083 TripCount, UCE, UP)) {
1084 UP.Count = *UnrollFactor;
1085 return ExplicitUnroll;
1086 }
1087 }
1088
1089 // 4th priority is bounded unrolling.
1090 // We can unroll by the upper bound amount if it's generally allowed or if
1091 // we know that the loop is executed either the upper bound or zero times.
1092 // (MaxOrZero unrolling keeps only the first loop test, so the number of
1093 // loop tests remains the same compared to the non-unrolled version, whereas
1094 // the generic upper bound unrolling keeps all but the last loop test so the
1095 // number of loop tests goes up which may end up being worse on targets with
1096 // constrained branch predictor resources so is controlled by an option.)
1097 // In addition we only unroll small upper bounds.
1098 // Note that the cost of bounded unrolling is always strictly greater than
1099 // cost of exact full unrolling. As such, if we have an exact count and
1100 // found it unprofitable, we'll never chose to bounded unroll.
1101 LLVM_DEBUG(dbgs().indent(1) << "Trying upper-bound unroll...\n");
1102 if (!TripCount && MaxTripCount && (UP.UpperBound || MaxOrZero) &&
1103 MaxTripCount <= UP.MaxUpperBound) {
1104 UP.Count = MaxTripCount;
1105 if (auto UnrollFactor = shouldFullUnroll(L, TTI, DT, SE, EphValues,
1106 MaxTripCount, UCE, UP)) {
1107 UP.Count = *UnrollFactor;
1108 return ExplicitUnroll;
1109 }
1110 }
1111
1112 // 5th priority is loop peeling.
1113 LLVM_DEBUG(dbgs().indent(1) << "Trying loop peeling...\n");
1114 computePeelCount(L, LoopSize, PP, TripCount, DT, SE, TTI, AC, UP.Threshold);
1115 if (PP.PeelCount) {
1117 << "Peeling with count: " << PP.PeelCount << ".\n");
1118 UP.Runtime = false;
1119 UP.Count = 1;
1120 return ExplicitUnroll;
1121 }
1122
1123 // Before starting partial unrolling, set up.partial to true,
1124 // if user explicitly asked for unrolling
1125 if (TripCount)
1126 UP.Partial |= ExplicitUnroll;
1127
1128 // 6th priority is partial unrolling.
1129 // Try partial unroll only when TripCount could be statically calculated.
1130 LLVM_DEBUG(dbgs().indent(1) << "Trying partial unroll...\n");
1131 if (auto UnrollFactor = shouldPartialUnroll(LoopSize, TripCount, UCE, UP)) {
1132 UP.Count = *UnrollFactor;
1133
1134 if ((PragmaFullUnroll || PragmaEnableUnroll) && TripCount &&
1135 UP.Count != TripCount)
1136 ORE->emit([&]() {
1138 "FullUnrollAsDirectedTooLarge",
1139 L->getStartLoc(), L->getHeader())
1140 << "unable to fully unroll loop as directed by unroll metadata "
1141 "because unrolled size is too large";
1142 });
1143
1144 if (UP.PartialThreshold != NoThreshold) {
1145 if (UP.Count == 0) {
1146 if (PragmaEnableUnroll)
1147 ORE->emit([&]() {
1149 "UnrollAsDirectedTooLarge",
1150 L->getStartLoc(), L->getHeader())
1151 << "unable to unroll loop as directed by "
1152 "llvm.loop.unroll.enable metadata because unrolled size "
1153 "is too large";
1154 });
1155 }
1156 }
1157 return ExplicitUnroll;
1158 }
1159 assert(TripCount == 0 &&
1160 "All cases when TripCount is constant should be covered here.");
1161 if (PragmaFullUnroll)
1162 ORE->emit([&]() {
1164 DEBUG_TYPE, "CantFullUnrollAsDirectedRuntimeTripCount",
1165 L->getStartLoc(), L->getHeader())
1166 << "unable to fully unroll loop as directed by "
1167 "llvm.loop.unroll.full metadata because loop has a runtime "
1168 "trip count";
1169 });
1170
1171 // 7th priority is runtime unrolling.
1172 LLVM_DEBUG(dbgs().indent(1) << "Trying runtime unroll...\n");
1173 // Don't unroll a runtime trip count loop when it is disabled.
1176 << "Not runtime unrolling: disabled by pragma.\n");
1177 UP.Count = 0;
1178 return false;
1179 }
1180
1181 // Don't unroll a small upper bound loop unless user or TTI asked to do so.
1182 if (MaxTripCount && !UP.Force && MaxTripCount < UP.MaxUpperBound) {
1184 << "Not runtime unrolling: max trip count " << MaxTripCount
1185 << " is small (< " << UP.MaxUpperBound << ") and not forced.\n");
1186 UP.Count = 0;
1187 return false;
1188 }
1189
1190 // Check if the runtime trip count is too small when profile is available.
1191 if (L->getHeader()->getParent()->hasProfileData()) {
1192 if (auto ProfileTripCount = getLoopEstimatedTripCount(L)) {
1193 if (*ProfileTripCount < FlatLoopTripCountThreshold)
1194 return false;
1195 else
1196 UP.AllowExpensiveTripCount = true;
1197 }
1198 }
1199 UP.Runtime |= PragmaEnableUnroll || PragmaCount > 0 || UserUnrollCount;
1200 if (!UP.Runtime) {
1202 << "Will not try to unroll loop with runtime trip count "
1203 << "because -unroll-runtime not given\n");
1204 UP.Count = 0;
1205 return false;
1206 }
1207 if (UP.Count == 0)
1209
1210 // Reduce unroll count to be the largest power-of-two factor of
1211 // the original count which satisfies the threshold limit.
1212 while (UP.Count != 0 &&
1214 UP.Count >>= 1;
1215
1216#ifndef NDEBUG
1217 unsigned OrigCount = UP.Count;
1218#endif
1219
1220 if (!UP.AllowRemainder && UP.Count != 0 && (TripMultiple % UP.Count) != 0) {
1221 while (UP.Count != 0 && TripMultiple % UP.Count != 0)
1222 UP.Count >>= 1;
1224 << "Remainder loop is restricted (that could be architecture "
1225 "specific or because the loop contains a convergent "
1226 "instruction), so unroll count must divide the trip "
1227 "multiple, "
1228 << TripMultiple << ". Reducing unroll count from " << OrigCount
1229 << " to " << UP.Count << ".\n");
1230
1231 using namespace ore;
1232
1233 if (PragmaCount > 0 && !UP.AllowRemainder)
1234 ORE->emit([&]() {
1236 "DifferentUnrollCountFromDirected",
1237 L->getStartLoc(), L->getHeader())
1238 << "Unable to unroll loop the number of times directed by "
1239 "llvm.loop.unroll.count metadata because remainder loop is "
1240 "restricted (that could be architecture specific or because "
1241 "the loop contains a convergent instruction) and so must "
1242 "have an unroll count that divides the loop trip multiple of "
1243 << NV("TripMultiple", TripMultiple) << ". Unrolling instead "
1244 << NV("UnrollCount", UP.Count) << " time(s).";
1245 });
1246 }
1247
1248 if (UP.Count > UP.MaxCount)
1249 UP.Count = UP.MaxCount;
1250
1251 if (MaxTripCount && UP.Count > MaxTripCount)
1252 UP.Count = MaxTripCount;
1253
1255 << "Runtime unrolling with count: " << UP.Count << "\n");
1256 if (UP.Count < 2)
1257 UP.Count = 0;
1258 return ExplicitUnroll;
1259}
1260
1261static LoopUnrollResult
1265 ProfileSummaryInfo *PSI, bool PreserveLCSSA, int OptLevel,
1266 bool OnlyFullUnroll, bool OnlyWhenForced, bool ForgetAllSCEV,
1267 std::optional<unsigned> ProvidedCount,
1268 std::optional<unsigned> ProvidedThreshold,
1269 std::optional<bool> ProvidedAllowPartial,
1270 std::optional<bool> ProvidedRuntime,
1271 std::optional<bool> ProvidedUpperBound,
1272 std::optional<bool> ProvidedAllowPeeling,
1273 std::optional<bool> ProvidedAllowProfileBasedPeeling,
1274 std::optional<unsigned> ProvidedFullUnrollMaxCount,
1275 AAResults *AA = nullptr) {
1276
1277 LLVM_DEBUG(dbgs() << "Loop Unroll: F["
1278 << L->getHeader()->getParent()->getName() << "] Loop %"
1279 << L->getHeader()->getName()
1280 << " (depth=" << L->getLoopDepth() << ")\n");
1282 if (TM & TM_Disable) {
1283 LLVM_DEBUG(dbgs().indent(1) << "Not unrolling: transformation disabled by "
1284 << "metadata.\n");
1286 }
1287
1288 // If this loop isn't forced to be unrolled, avoid unrolling it when the
1289 // parent loop has an explicit unroll-and-jam pragma. This is to prevent
1290 // automatic unrolling from interfering with the user requested
1291 // transformation.
1292 Loop *ParentL = L->getParentLoop();
1293 if (ParentL != nullptr &&
1296 LLVM_DEBUG(dbgs().indent(1) << "Not unrolling loop since parent loop has"
1297 << " llvm.loop.unroll_and_jam.\n");
1299 }
1300
1301 // If this loop isn't forced to be unrolled, avoid unrolling it when the
1302 // loop has an explicit unroll-and-jam pragma. This is to prevent automatic
1303 // unrolling from interfering with the user requested transformation.
1306 LLVM_DEBUG(
1307 dbgs().indent(1)
1308 << "Not unrolling loop since it has llvm.loop.unroll_and_jam.\n");
1310 }
1311
1312 if (!L->isLoopSimplifyForm()) {
1314 << "Not unrolling loop which is not in loop-simplify form.\n");
1316 }
1317
1318 // When automatic unrolling is disabled, do not unroll unless overridden for
1319 // this loop.
1320 if (OnlyWhenForced && !(TM & TM_Enable)) {
1321 LLVM_DEBUG(dbgs().indent(1) << "Not unrolling: automatic unrolling "
1322 << "disabled and loop not explicitly "
1323 << "enabled.\n");
1325 }
1326
1327 bool OptForSize = L->getHeader()->getParent()->hasOptSize();
1329 L, SE, TTI, BFI, PSI, ORE, OptLevel, ProvidedThreshold, ProvidedCount,
1330 ProvidedAllowPartial, ProvidedRuntime, ProvidedUpperBound,
1331 ProvidedFullUnrollMaxCount);
1333 L, SE, TTI, ProvidedAllowPeeling, ProvidedAllowProfileBasedPeeling, true);
1334
1335 // Exit early if unrolling is disabled. For OptForSize, we pick the loop size
1336 // as threshold later on.
1337 if (UP.Threshold == 0 && (!UP.Partial || UP.PartialThreshold == 0) &&
1338 !OptForSize) {
1339 LLVM_DEBUG(dbgs().indent(1) << "Not unrolling: all thresholds are zero.\n");
1341 }
1342
1344 CodeMetrics::collectEphemeralValues(L, &AC, EphValues);
1345
1346 UnrollCostEstimator UCE(L, TTI, EphValues, UP.BEInsns);
1347 if (!UCE.canUnroll())
1349
1350 unsigned LoopSize = UCE.getRolledLoopSize();
1351 LLVM_DEBUG(dbgs() << "Loop Size = " << LoopSize << "\n");
1352
1353 // When optimizing for size, use LoopSize + 1 as threshold (we use < Threshold
1354 // later), to (fully) unroll loops, if it does not increase code size.
1355 if (OptForSize)
1356 UP.Threshold = std::max(UP.Threshold, LoopSize + 1);
1357
1358 if (UCE.NumInlineCandidates != 0) {
1360 << "Not unrolling loop with inlinable calls.\n");
1362 }
1363
1364 // Find the smallest exact trip count for any exit. This is an upper bound
1365 // on the loop trip count, but an exit at an earlier iteration is still
1366 // possible. An unroll by the smallest exact trip count guarantees that all
1367 // branches relating to at least one exit can be eliminated. This is unlike
1368 // the max trip count, which only guarantees that the backedge can be broken.
1369 unsigned TripCount = 0;
1370 unsigned TripMultiple = 1;
1371 SmallVector<BasicBlock *, 8> ExitingBlocks;
1372 L->getExitingBlocks(ExitingBlocks);
1373 for (BasicBlock *ExitingBlock : ExitingBlocks)
1374 if (unsigned TC = SE.getSmallConstantTripCount(L, ExitingBlock))
1375 if (!TripCount || TC < TripCount)
1376 TripCount = TripMultiple = TC;
1377
1378 if (!TripCount) {
1379 // If no exact trip count is known, determine the trip multiple of either
1380 // the loop latch or the single exiting block.
1381 // TODO: Relax for multiple exits.
1382 BasicBlock *ExitingBlock = L->getLoopLatch();
1383 if (!ExitingBlock || !L->isLoopExiting(ExitingBlock))
1384 ExitingBlock = L->getExitingBlock();
1385 if (ExitingBlock)
1386 TripMultiple = SE.getSmallConstantTripMultiple(L, ExitingBlock);
1387 }
1388
1389 // If the loop contains a convergent operation, the prelude we'd add
1390 // to do the first few instructions before we hit the unrolled loop
1391 // is unsafe -- it adds a control-flow dependency to the convergent
1392 // operation. Therefore restrict remainder loop (try unrolling without).
1393 //
1394 // TODO: This is somewhat conservative; we could allow the remainder if the
1395 // trip count is uniform.
1397
1398 // Try to find the trip count upper bound if we cannot find the exact trip
1399 // count.
1400 unsigned MaxTripCount = 0;
1401 bool MaxOrZero = false;
1402 if (!TripCount) {
1403 MaxTripCount = SE.getSmallConstantMaxTripCount(L);
1404 MaxOrZero = SE.isBackedgeTakenCountMaxOrZero(L);
1405 }
1406
1407 // computeUnrollCount() decides whether it is beneficial to use upper bound to
1408 // fully unroll the loop.
1409 bool IsCountSetExplicitly =
1410 computeUnrollCount(L, TTI, DT, LI, &AC, SE, EphValues, &ORE, TripCount,
1411 MaxTripCount, MaxOrZero, TripMultiple, UCE, UP, PP);
1412 if (!UP.Count) {
1414 << "Not unrolling: no viable strategy found.\n");
1416 }
1417
1419
1420 if (PP.PeelCount) {
1421 assert(UP.Count == 1 && "Cannot perform peel and unroll in the same step");
1422 LLVM_DEBUG(dbgs() << "PEELING loop %" << L->getHeader()->getName()
1423 << " with iteration count " << PP.PeelCount << "!\n");
1424 ORE.emit([&]() {
1425 return OptimizationRemark(DEBUG_TYPE, "Peeled", L->getStartLoc(),
1426 L->getHeader())
1427 << "peeled loop by " << ore::NV("PeelCount", PP.PeelCount)
1428 << " iterations";
1429 });
1430
1431 ValueToValueMapTy VMap;
1432 peelLoop(L, PP.PeelCount, PP.PeelLast, LI, &SE, DT, &AC, PreserveLCSSA,
1433 VMap);
1434 simplifyLoopAfterUnroll(L, true, LI, &SE, &DT, &AC, &TTI, nullptr);
1435 // If the loop was peeled, we already "used up" the profile information
1436 // we had, so we don't want to unroll or peel again.
1438 L->setLoopAlreadyUnrolled();
1440 }
1441
1442 // Do not attempt partial/runtime unrolling in FullLoopUnrolling
1443 if (OnlyFullUnroll && ((!TripCount && !MaxTripCount) ||
1444 UP.Count < TripCount || UP.Count < MaxTripCount)) {
1446 << "Not attempting partial/runtime unroll in FullLoopUnroll.\n");
1448 }
1449
1450 // At this point, UP.Runtime indicates that run-time unrolling is allowed.
1451 // However, we only want to actually perform it if we don't know the trip
1452 // count and the unroll count doesn't divide the known trip multiple.
1453 // TODO: This decision should probably be pushed up into
1454 // computeUnrollCount().
1455 UP.Runtime &= TripCount == 0 && TripMultiple % UP.Count != 0;
1456
1457 // Save loop properties before it is transformed.
1458 MDNode *OrigLoopID = L->getLoopID();
1459
1460 // Unroll the loop.
1461 Loop *RemainderLoop = nullptr;
1463 ULO.Count = UP.Count;
1464 ULO.Force = UP.Force;
1467 ULO.Runtime = UP.Runtime;
1468 ULO.ForgetAllSCEV = ForgetAllSCEV;
1473 LoopUnrollResult UnrollResult = UnrollLoop(
1474 L, ULO, LI, &SE, &DT, &AC, &TTI, &ORE, PreserveLCSSA, &RemainderLoop, AA);
1475 if (UnrollResult == LoopUnrollResult::Unmodified)
1477
1478 if (RemainderLoop) {
1479 std::optional<MDNode *> RemainderLoopID =
1482 if (RemainderLoopID)
1483 RemainderLoop->setLoopID(*RemainderLoopID);
1484 }
1485
1486 if (UnrollResult != LoopUnrollResult::FullyUnrolled) {
1487 std::optional<MDNode *> NewLoopID =
1490 if (NewLoopID) {
1491 L->setLoopID(*NewLoopID);
1492
1493 // Do not setLoopAlreadyUnrolled if loop attributes have been specified
1494 // explicitly.
1495 return UnrollResult;
1496 }
1497 }
1498
1499 // If loop has an unroll count pragma or unrolled by explicitly set count
1500 // mark loop as unrolled to prevent unrolling beyond that requested.
1501 if (UnrollResult != LoopUnrollResult::FullyUnrolled && IsCountSetExplicitly)
1502 L->setLoopAlreadyUnrolled();
1503
1504 return UnrollResult;
1505}
1506
1507namespace {
1508
1509class LoopUnroll : public LoopPass {
1510public:
1511 static char ID; // Pass ID, replacement for typeid
1512
1513 int OptLevel;
1514
1515 /// If false, use a cost model to determine whether unrolling of a loop is
1516 /// profitable. If true, only loops that explicitly request unrolling via
1517 /// metadata are considered. All other loops are skipped.
1518 bool OnlyWhenForced;
1519
1520 /// If false, when SCEV is invalidated, only forget everything in the
1521 /// top-most loop (call forgetTopMostLoop), of the loop being processed.
1522 /// Otherwise, forgetAllLoops and rebuild when needed next.
1523 bool ForgetAllSCEV;
1524
1525 std::optional<unsigned> ProvidedCount;
1526 std::optional<unsigned> ProvidedThreshold;
1527 std::optional<bool> ProvidedAllowPartial;
1528 std::optional<bool> ProvidedRuntime;
1529 std::optional<bool> ProvidedUpperBound;
1530 std::optional<bool> ProvidedAllowPeeling;
1531 std::optional<bool> ProvidedAllowProfileBasedPeeling;
1532 std::optional<unsigned> ProvidedFullUnrollMaxCount;
1533
1534 LoopUnroll(int OptLevel = 2, bool OnlyWhenForced = false,
1535 bool ForgetAllSCEV = false,
1536 std::optional<unsigned> Threshold = std::nullopt,
1537 std::optional<unsigned> Count = std::nullopt,
1538 std::optional<bool> AllowPartial = std::nullopt,
1539 std::optional<bool> Runtime = std::nullopt,
1540 std::optional<bool> UpperBound = std::nullopt,
1541 std::optional<bool> AllowPeeling = std::nullopt,
1542 std::optional<bool> AllowProfileBasedPeeling = std::nullopt,
1543 std::optional<unsigned> ProvidedFullUnrollMaxCount = std::nullopt)
1544 : LoopPass(ID), OptLevel(OptLevel), OnlyWhenForced(OnlyWhenForced),
1545 ForgetAllSCEV(ForgetAllSCEV), ProvidedCount(std::move(Count)),
1546 ProvidedThreshold(Threshold), ProvidedAllowPartial(AllowPartial),
1547 ProvidedRuntime(Runtime), ProvidedUpperBound(UpperBound),
1548 ProvidedAllowPeeling(AllowPeeling),
1549 ProvidedAllowProfileBasedPeeling(AllowProfileBasedPeeling),
1550 ProvidedFullUnrollMaxCount(ProvidedFullUnrollMaxCount) {
1552 }
1553
1554 bool runOnLoop(Loop *L, LPPassManager &LPM) override {
1555 if (skipLoop(L))
1556 return false;
1557
1558 Function &F = *L->getHeader()->getParent();
1559
1560 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
1561 LoopInfo *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
1562 ScalarEvolution &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE();
1563 const TargetTransformInfo &TTI =
1564 getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
1565 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
1566 // For the old PM, we can't use OptimizationRemarkEmitter as an analysis
1567 // pass. Function analyses need to be preserved across loop transformations
1568 // but ORE cannot be preserved (see comment before the pass definition).
1569 OptimizationRemarkEmitter ORE(&F);
1570 bool PreserveLCSSA = mustPreserveAnalysisID(LCSSAID);
1571
1573 L, DT, LI, SE, TTI, AC, ORE, nullptr, nullptr, PreserveLCSSA, OptLevel,
1574 /*OnlyFullUnroll*/ false, OnlyWhenForced, ForgetAllSCEV, ProvidedCount,
1575 ProvidedThreshold, ProvidedAllowPartial, ProvidedRuntime,
1576 ProvidedUpperBound, ProvidedAllowPeeling,
1577 ProvidedAllowProfileBasedPeeling, ProvidedFullUnrollMaxCount);
1578
1579 if (Result == LoopUnrollResult::FullyUnrolled)
1580 LPM.markLoopAsDeleted(*L);
1581
1582 return Result != LoopUnrollResult::Unmodified;
1583 }
1584
1585 /// This transformation requires natural loop information & requires that
1586 /// loop preheaders be inserted into the CFG...
1587 void getAnalysisUsage(AnalysisUsage &AU) const override {
1588 AU.addRequired<AssumptionCacheTracker>();
1589 AU.addRequired<TargetTransformInfoWrapperPass>();
1590 // FIXME: Loop passes are required to preserve domtree, and for now we just
1591 // recreate dom info if anything gets unrolled.
1593 }
1594};
1595
1596} // end anonymous namespace
1597
1598char LoopUnroll::ID = 0;
1599
1600INITIALIZE_PASS_BEGIN(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
1604INITIALIZE_PASS_END(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
1605
1606Pass *llvm::createLoopUnrollPass(int OptLevel, bool OnlyWhenForced,
1607 bool ForgetAllSCEV, int Threshold, int Count,
1608 int AllowPartial, int Runtime, int UpperBound,
1609 int AllowPeeling) {
1610 // TODO: It would make more sense for this function to take the optionals
1611 // directly, but that's dangerous since it would silently break out of tree
1612 // callers.
1613 return new LoopUnroll(
1614 OptLevel, OnlyWhenForced, ForgetAllSCEV,
1615 Threshold == -1 ? std::nullopt : std::optional<unsigned>(Threshold),
1616 Count == -1 ? std::nullopt : std::optional<unsigned>(Count),
1617 AllowPartial == -1 ? std::nullopt : std::optional<bool>(AllowPartial),
1618 Runtime == -1 ? std::nullopt : std::optional<bool>(Runtime),
1619 UpperBound == -1 ? std::nullopt : std::optional<bool>(UpperBound),
1620 AllowPeeling == -1 ? std::nullopt : std::optional<bool>(AllowPeeling));
1621}
1622
1625 LPMUpdater &Updater) {
1626 // For the new PM, we can't use OptimizationRemarkEmitter as an analysis
1627 // pass. Function analyses need to be preserved across loop transformations
1628 // but ORE cannot be preserved (see comment before the pass definition).
1629 OptimizationRemarkEmitter ORE(L.getHeader()->getParent());
1630
1631 // Keep track of the previous loop structure so we can identify new loops
1632 // created by unrolling.
1633 Loop *ParentL = L.getParentLoop();
1634 SmallPtrSet<Loop *, 4> OldLoops;
1635 if (ParentL)
1636 OldLoops.insert_range(*ParentL);
1637 else
1638 OldLoops.insert_range(AR.LI);
1639
1640 std::string LoopName = std::string(L.getName());
1641
1642 bool Changed =
1643 tryToUnrollLoop(&L, AR.DT, &AR.LI, AR.SE, AR.TTI, AR.AC, ORE,
1644 /*BFI*/ nullptr, /*PSI*/ nullptr,
1645 /*PreserveLCSSA*/ true, OptLevel, /*OnlyFullUnroll*/ true,
1646 OnlyWhenForced, ForgetSCEV, /*Count*/ std::nullopt,
1647 /*Threshold*/ std::nullopt, /*AllowPartial*/ false,
1648 /*Runtime*/ false, /*UpperBound*/ false,
1649 /*AllowPeeling*/ true,
1650 /*AllowProfileBasedPeeling*/ false,
1651 /*FullUnrollMaxCount*/ std::nullopt) !=
1653 if (!Changed)
1654 return PreservedAnalyses::all();
1655
1656 // The parent must not be damaged by unrolling!
1657#ifndef NDEBUG
1658 if (ParentL)
1659 ParentL->verifyLoop();
1660#endif
1661
1662 // Unrolling can do several things to introduce new loops into a loop nest:
1663 // - Full unrolling clones child loops within the current loop but then
1664 // removes the current loop making all of the children appear to be new
1665 // sibling loops.
1666 //
1667 // When a new loop appears as a sibling loop after fully unrolling,
1668 // its nesting structure has fundamentally changed and we want to revisit
1669 // it to reflect that.
1670 //
1671 // When unrolling has removed the current loop, we need to tell the
1672 // infrastructure that it is gone.
1673 //
1674 // Finally, we support a debugging/testing mode where we revisit child loops
1675 // as well. These are not expected to require further optimizations as either
1676 // they or the loop they were cloned from have been directly visited already.
1677 // But the debugging mode allows us to check this assumption.
1678 bool IsCurrentLoopValid = false;
1679 SmallVector<Loop *, 4> SibLoops;
1680 if (ParentL)
1681 SibLoops.append(ParentL->begin(), ParentL->end());
1682 else
1683 SibLoops.append(AR.LI.begin(), AR.LI.end());
1684 erase_if(SibLoops, [&](Loop *SibLoop) {
1685 if (SibLoop == &L) {
1686 IsCurrentLoopValid = true;
1687 return true;
1688 }
1689
1690 // Otherwise erase the loop from the list if it was in the old loops.
1691 return OldLoops.contains(SibLoop);
1692 });
1693 Updater.addSiblingLoops(SibLoops);
1694
1695 if (!IsCurrentLoopValid) {
1696 Updater.markLoopAsDeleted(L, LoopName);
1697 } else {
1698 // We can only walk child loops if the current loop remained valid.
1700 // Walk *all* of the child loops.
1701 SmallVector<Loop *, 4> ChildLoops(L.begin(), L.end());
1702 Updater.addChildLoops(ChildLoops);
1703 }
1704 }
1705
1707}
1708
1711 auto &LI = AM.getResult<LoopAnalysis>(F);
1712 // There are no loops in the function. Return before computing other expensive
1713 // analyses.
1714 if (LI.empty())
1715 return PreservedAnalyses::all();
1716 auto &SE = AM.getResult<ScalarEvolutionAnalysis>(F);
1717 auto &TTI = AM.getResult<TargetIRAnalysis>(F);
1718 auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
1719 auto &AC = AM.getResult<AssumptionAnalysis>(F);
1722
1723 LoopAnalysisManager *LAM = nullptr;
1724 if (auto *LAMProxy = AM.getCachedResult<LoopAnalysisManagerFunctionProxy>(F))
1725 LAM = &LAMProxy->getManager();
1726
1727 auto &MAMProxy = AM.getResult<ModuleAnalysisManagerFunctionProxy>(F);
1728 ProfileSummaryInfo *PSI =
1729 MAMProxy.getCachedResult<ProfileSummaryAnalysis>(*F.getParent());
1730 auto *BFI = (PSI && PSI->hasProfileSummary()) ?
1731 &AM.getResult<BlockFrequencyAnalysis>(F) : nullptr;
1732
1733 bool Changed = false;
1734
1735 // The unroller requires loops to be in simplified form, and also needs LCSSA.
1736 // Since simplification may add new inner loops, it has to run before the
1737 // legality and profitability checks. This means running the loop unroller
1738 // will simplify all loops, regardless of whether anything end up being
1739 // unrolled.
1740 for (const auto &L : LI) {
1741 Changed |=
1742 simplifyLoop(L, &DT, &LI, &SE, &AC, nullptr, false /* PreserveLCSSA */);
1743 Changed |= formLCSSARecursively(*L, DT, &LI, &SE);
1744 }
1745
1746 // Add the loop nests in the reverse order of LoopInfo. See method
1747 // declaration.
1749 appendLoopsToWorklist(LI, Worklist);
1750
1751 while (!Worklist.empty()) {
1752 // Because the LoopInfo stores the loops in RPO, we walk the worklist
1753 // from back to front so that we work forward across the CFG, which
1754 // for unrolling is only needed to get optimization remarks emitted in
1755 // a forward order.
1756 Loop &L = *Worklist.pop_back_val();
1757#ifndef NDEBUG
1758 Loop *ParentL = L.getParentLoop();
1759#endif
1760
1761 // Check if the profile summary indicates that the profiled application
1762 // has a huge working set size, in which case we disable peeling to avoid
1763 // bloating it further.
1764 std::optional<bool> LocalAllowPeeling = UnrollOpts.AllowPeeling;
1765 if (PSI && PSI->hasHugeWorkingSetSize())
1766 LocalAllowPeeling = false;
1767 std::string LoopName = std::string(L.getName());
1768 // The API here is quite complex to call and we allow to select some
1769 // flavors of unrolling during construction time (by setting UnrollOpts).
1771 &L, DT, &LI, SE, TTI, AC, ORE, BFI, PSI,
1772 /*PreserveLCSSA*/ true, UnrollOpts.OptLevel, /*OnlyFullUnroll*/ false,
1773 UnrollOpts.OnlyWhenForced, UnrollOpts.ForgetSCEV,
1774 /*Count*/ std::nullopt,
1775 /*Threshold*/ std::nullopt, UnrollOpts.AllowPartial,
1776 UnrollOpts.AllowRuntime, UnrollOpts.AllowUpperBound, LocalAllowPeeling,
1777 UnrollOpts.AllowProfileBasedPeeling, UnrollOpts.FullUnrollMaxCount,
1778 &AA);
1780
1781 // The parent must not be damaged by unrolling!
1782#ifndef NDEBUG
1783 if (Result != LoopUnrollResult::Unmodified && ParentL)
1784 ParentL->verifyLoop();
1785#endif
1786
1787 // Clear any cached analysis results for L if we removed it completely.
1788 if (LAM && Result == LoopUnrollResult::FullyUnrolled)
1789 LAM->clear(L, LoopName);
1790 }
1791
1792 if (!Changed)
1793 return PreservedAnalyses::all();
1794
1796}
1797
1799 raw_ostream &OS, function_ref<StringRef(StringRef)> MapClassName2PassName) {
1800 static_cast<PassInfoMixin<LoopUnrollPass> *>(this)->printPipeline(
1801 OS, MapClassName2PassName);
1802 OS << '<';
1803 if (UnrollOpts.AllowPartial != std::nullopt)
1804 OS << (*UnrollOpts.AllowPartial ? "" : "no-") << "partial;";
1805 if (UnrollOpts.AllowPeeling != std::nullopt)
1806 OS << (*UnrollOpts.AllowPeeling ? "" : "no-") << "peeling;";
1807 if (UnrollOpts.AllowRuntime != std::nullopt)
1808 OS << (*UnrollOpts.AllowRuntime ? "" : "no-") << "runtime;";
1809 if (UnrollOpts.AllowUpperBound != std::nullopt)
1810 OS << (*UnrollOpts.AllowUpperBound ? "" : "no-") << "upperbound;";
1811 if (UnrollOpts.AllowProfileBasedPeeling != std::nullopt)
1812 OS << (*UnrollOpts.AllowProfileBasedPeeling ? "" : "no-")
1813 << "profile-peeling;";
1814 if (UnrollOpts.FullUnrollMaxCount != std::nullopt)
1815 OS << "full-unroll-max=" << UnrollOpts.FullUnrollMaxCount << ';';
1816 OS << 'O' << UnrollOpts.OptLevel;
1817 OS << '>';
1818}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
Rewrite undef for PHI
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.
#define DEBUG_TYPE
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 MDNode * getUnrollMetadataForLoop(const Loop *L, StringRef Name)
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 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 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 > 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 std::optional< unsigned > shouldPragmaUnroll(Loop *L, const PragmaInfo &PInfo, const unsigned TripMultiple, const unsigned TripCount, unsigned MaxTripCount, const UnrollCostEstimator UCE, const TargetTransformInfo::UnrollingPreferences &UP)
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 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, std::optional< unsigned > ProvidedCount, 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, AAResults *AA=nullptr)
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."))
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
Machine Trace Metrics
This file exposes an interface to building/using memory SSA to walk memory instructions using a use/d...
This file contains the declarations for metadata subclasses.
LoopAnalysisManager LAM
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition PassSupport.h:42
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
Definition PassSupport.h:44
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
Definition PassSupport.h:39
This file contains some templates that are useful if you are working with the STL at all.
This file implements a set that has insertion order iteration characteristics.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
#define LLVM_DEBUG(...)
Definition Debug.h:114
This pass exposes codegen information to IR-level passes.
Value * RHS
Value * LHS
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.
Definition BasicBlock.h:62
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction if the block is well formed or null if the block is not well forme...
Definition BasicBlock.h:233
Analysis pass which computes BlockFrequencyInfo.
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
Conditional or Unconditional Branch instruction.
This is the shared class of boolean and integer constants.
Definition Constants.h:87
This is an important base class in LLVM.
Definition Constant.h:43
ValueT lookup(const_arg_type_t< KeyT > Val) const
lookup - Return the entry for the specified key, or a default constructed value if no such entry exis...
Definition DenseMap.h:205
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
Definition DenseMap.h:174
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Definition DenseMap.h:241
Implements a dense probed hash-table based set.
Definition DenseSet.h:279
Analysis pass which computes a DominatorTree.
Definition Dominators.h:283
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition Dominators.h:164
bool hasMinSize() const
Optimize this function for minimum size (-Oz).
Definition Function.h:711
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)
Definition LoopPass.cpp:111
Analysis pass that exposes the LoopInfo for a function.
Definition LoopInfo.h:569
void verifyLoop() const
Verify loop structure.
iterator end() const
iterator begin() const
PreservedAnalyses run(Loop &L, LoopAnalysisManager &AM, LoopStandardAnalysisResults &AR, LPMUpdater &U)
iterator end() const
iterator begin() const
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
void printPipeline(raw_ostream &OS, function_ref< StringRef(StringRef)> MapClassName2PassName)
Represents a single loop in the control flow graph.
Definition LoopInfo.h:40
void setLoopID(MDNode *LoopID) const
Set the llvm.loop loop id metadata for this loop.
Definition LoopInfo.cpp:546
Metadata node.
Definition Metadata.h:1080
const MDOperand & getOperand(unsigned I) const
Definition Metadata.h:1444
unsigned getNumOperands() const
Return number of MDNode operands.
Definition Metadata.h:1450
The optimization diagnostic interface.
LLVM_ABI void emit(DiagnosticInfoOptimizationBase &OptDiag)
Output the remark via the diagnostic handler and to the optimization record file.
Diagnostic information for missed-optimization remarks.
Diagnostic information for applied optimization remarks.
static LLVM_ABI PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
Pass interface - Implemented by all 'passes'.
Definition Pass.h:99
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition Analysis.h:118
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.
Analysis pass that exposes the ScalarEvolution for a function.
The main scalar evolution driver.
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.
Definition SetVector.h:103
void clear()
Completely clear the SetVector.
Definition SetVector.h:267
bool empty() const
Determine if the SetVector is empty or not.
Definition SetVector.h:100
bool insert(const value_type &X)
Insert a new element into the SetVector.
Definition SetVector.h:151
value_type pop_back_val()
Definition SetVector.h:279
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.
Definition SetVector.h:339
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.
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
Multiway switch.
Analysis pass providing the TargetTransformInfo.
Wrapper pass for TargetTransformInfo.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
TargetCostKind
The kind of cost model.
@ TCK_CodeSize
Instruction code size.
@ TCK_SizeAndLatency
The weighted sum of size and latency.
Produce an estimate of the unrolled cost of the specified loop.
Definition UnrollLoop.h:135
ConvergenceKind Convergence
Definition UnrollLoop.h:141
LLVM_ABI uint64_t getUnrolledLoopSize(const TargetTransformInfo::UnrollingPreferences &UP, unsigned CountOverwrite=0) const
Returns loop size estimation for unrolled loop, given the unrolling configuration specified by UP.
LLVM_ABI bool canUnroll() const
Whether it is legal to unroll this loop.
LLVM_ABI UnrollCostEstimator(const Loop *L, const TargetTransformInfo &TTI, const SmallPtrSetImpl< const Value * > &EphValues, unsigned BEInsns)
uint64_t getRolledLoopSize() const
Definition UnrollLoop.h:151
void visit(Iterator Start, Iterator End)
Definition InstVisitor.h:87
LLVM Value Representation.
Definition Value.h:75
std::pair< iterator, bool > insert(const ValueT &V)
Definition DenseSet.h:202
iterator find(const_arg_type_t< ValueT > V)
Definition DenseSet.h:167
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.
Definition raw_ostream.h:53
raw_ostream & indent(unsigned NumSpaces)
indent - Insert 'NumSpaces' spaces.
Changed
Abstract Attribute helper functions.
Definition Attributor.h:165
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
initializer< Ty > init(const Ty &Val)
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
Definition Metadata.h:668
Add a small namespace to avoid name clashes with the classes used in the streaming interface.
DiagnosticInfoOptimizationBase::Argument NV
This is an optimization pass for GlobalISel generic memory operations.
Definition Types.h:26
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.
LLVM_ABI std::optional< unsigned > getLoopEstimatedTripCount(Loop *L, unsigned *EstimatedLoopInvocationWeight=nullptr)
Return either:
bool isEqual(const GCNRPTracker::LiveRegSet &S1, const GCNRPTracker::LiveRegSet &S2)
LLVM_ABI void simplifyLoopAfterUnroll(Loop *L, bool SimplifyIVs, LoopInfo *LI, ScalarEvolution *SE, DominatorTree *DT, AssumptionCache *AC, const TargetTransformInfo *TTI, AAResults *AA=nullptr)
Perform some cleanup and simplifications on loops after unrolling.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
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 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)
LLVM_ABI bool formLCSSARecursively(Loop &L, const DominatorTree &DT, const LoopInfo *LI, ScalarEvolution *SE)
Put a loop nest into LCSSA form.
Definition LCSSA.cpp:449
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 char & LCSSAID
Definition LCSSA.cpp:526
LLVM_ABI Pass * createLoopUnrollPass(int OptLevel=2, bool OnlyWhenForced=false, bool ForgetAllSCEV=false, int Threshold=-1, int Count=-1, int AllowPartial=-1, int Runtime=-1, int UpperBound=-1, int AllowPeeling=-1)
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.
Definition STLExtras.h:2026
LLVM_ABI void initializeLoopUnrollPass(PassRegistry &)
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)
cl::opt< bool > ForgetSCEVInLoopUnroll
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:207
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)
Definition LoopPeel.cpp:751
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
FunctionAddr VTableAddr Count
Definition InstrProf.h:139
LLVM_ABI TransformationMode hasUnrollTransformation(const Loop *L)
LoopUnrollResult
Represents the result of a UnrollLoop invocation.
Definition UnrollLoop.h:58
@ PartiallyUnrolled
The loop was partially unrolled – we still have a loop, but with a smaller trip count.
Definition UnrollLoop.h:65
@ Unmodified
The loop was not modified.
Definition UnrollLoop.h:60
@ FullyUnrolled
The loop was fully unrolled into straight-line code.
Definition UnrollLoop.h:69
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...
Definition Casting.h:547
LLVM_ABI void getLoopAnalysisUsage(AnalysisUsage &AU)
Helper to consistently add the set of standard passes to a loop pass's AnalysisUsage.
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
Definition UnrollLoop.h:45
TargetTransformInfo TTI
TransformationMode
The mode sets how eager a transformation should be applied.
Definition LoopUtils.h:283
@ TM_ForcedByUser
The transformation was directed by the user, e.g.
Definition LoopUtils.h:300
@ TM_Disable
The transformation should not be applied.
Definition LoopUtils.h:292
@ TM_Enable
The transformation should be applied without considering a cost model.
Definition LoopUtils.h:289
auto count(R &&Range, const E &Element)
Wrapper function around std::count to count the number of times an element Element occurs in the give...
Definition STLExtras.h:2012
DWARFExpression::Operation Op
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< unsigned > UserCount, 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...
ValueMap< const Value *, WeakTrackingVH > ValueToValueMapTy
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1917
const char *const LLVMLoopUnrollFollowupRemainder
Definition UnrollLoop.h:48
LLVM_ABI PreservedAnalyses getLoopPassPreservedAnalyses()
Returns the minimum set of Analyses that all loop passes must preserve.
const char *const LLVMLoopUnrollFollowupUnrolled
Definition UnrollLoop.h:46
void erase_if(Container &C, UnaryPredicate P)
Provide a container algorithm similar to C++ Library Fundamentals v2's erase_if which is equivalent t...
Definition STLExtras.h:2192
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
LLVM_ABI MDNode * GetUnrollMetadata(MDNode *LoopID, StringRef Name)
Given an llvm.loop loop id metadata node, returns the loop hint metadata node with the given name (fo...
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.
Definition Error.cpp:177
Utility to calculate the size and a few similar metrics for a set of basic blocks.
Definition CodeMetrics.h:34
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...
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition PassManager.h:70
bool PeelLast
Peel off the last PeelCount loop iterations.
bool PeelProfiledIterations
Allow peeling basing on profile.
unsigned PeelCount
A forced peeling factor (the number of bodied of the original loop that should be peeled off before t...
Parameters that control the generic loop unrolling transformation.
unsigned Count
A forced unrolling factor (the number of concatenated bodies of the original loop in the unrolled loo...
bool UpperBound
Allow using trip count upper bound to unroll loops.
unsigned Threshold
The cost threshold for the unrolled loop.
bool Force
Apply loop unroll on any kind of loop (mainly to loops that fail runtime unrolling).
unsigned PartialOptSizeThreshold
The cost threshold for the unrolled loop when optimizing for size, like OptSizeThreshold,...
unsigned DefaultUnrollRuntimeCount
Default unroll count for loops with run-time trip count.
unsigned MaxPercentThresholdBoost
If complete unrolling will reduce the cost of the loop, we will boost the Threshold by a certain perc...
bool RuntimeUnrollMultiExit
Allow runtime unrolling multi-exit loops.
unsigned SCEVExpansionBudget
Don't allow runtime unrolling if expanding the trip count takes more than SCEVExpansionBudget.
bool AddAdditionalAccumulators
Allow unrolling to add parallel reduction phis.
unsigned UnrollAndJamInnerLoopThreshold
Threshold for unroll and jam, for inner loop size.
unsigned MaxIterationsCountToAnalyze
Don't allow loop unrolling to simulate more than this number of iterations when checking full unroll ...
bool AllowRemainder
Allow generation of a loop remainder (extra iterations after unroll).
bool UnrollAndJam
Allow unroll and jam. Used to enable unroll and jam for the target.
bool UnrollRemainder
Allow unrolling of all the iterations of the runtime loop remainder.
unsigned FullUnrollMaxCount
Set the maximum unrolling factor for full unrolling.
unsigned PartialThreshold
The cost threshold for the unrolled loop, like Threshold, but used for partial/runtime unrolling (set...
bool Runtime
Allow runtime unrolling (unrolling of loops to expand the size of the loop body even when the number ...
bool Partial
Allow partial unrolling (unrolling of loops to expand the size of the loop body, not only to eliminat...
unsigned OptSizeThreshold
The cost threshold for the unrolled loop when optimizing for size (set to UINT_MAX to disable).
bool AllowExpensiveTripCount
Allow emitting expensive instructions (such as divisions) when computing the trip count of a loop for...
unsigned MaxUpperBound
Set the maximum upper bound of trip count.
const Instruction * Heart
Definition UnrollLoop.h:79