1 //===- LoopUnroll.cpp - Loop unroller pass --------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This pass implements a simple loop unroller.  It works best when loops have
11 // been canonicalized by the -indvars pass, allowing it to determine the trip
12 // counts of loops easily.
13 //===----------------------------------------------------------------------===//
14 
15 #include "llvm/Transforms/Scalar/LoopUnrollPass.h"
16 #include "llvm/ADT/DenseMap.h"
17 #include "llvm/ADT/DenseMapInfo.h"
18 #include "llvm/ADT/DenseSet.h"
19 #include "llvm/ADT/None.h"
20 #include "llvm/ADT/Optional.h"
21 #include "llvm/ADT/STLExtras.h"
22 #include "llvm/ADT/SetVector.h"
23 #include "llvm/ADT/SmallPtrSet.h"
24 #include "llvm/ADT/SmallVector.h"
25 #include "llvm/ADT/StringRef.h"
26 #include "llvm/Analysis/AssumptionCache.h"
27 #include "llvm/Analysis/CodeMetrics.h"
28 #include "llvm/Analysis/LoopAnalysisManager.h"
29 #include "llvm/Analysis/LoopInfo.h"
30 #include "llvm/Analysis/LoopPass.h"
31 #include "llvm/Analysis/LoopUnrollAnalyzer.h"
32 #include "llvm/Analysis/OptimizationRemarkEmitter.h"
33 #include "llvm/Analysis/ProfileSummaryInfo.h"
34 #include "llvm/Analysis/ScalarEvolution.h"
35 #include "llvm/Analysis/TargetTransformInfo.h"
36 #include "llvm/IR/BasicBlock.h"
37 #include "llvm/IR/CFG.h"
38 #include "llvm/IR/Constant.h"
39 #include "llvm/IR/Constants.h"
40 #include "llvm/IR/DiagnosticInfo.h"
41 #include "llvm/IR/Dominators.h"
42 #include "llvm/IR/Function.h"
43 #include "llvm/IR/Instruction.h"
44 #include "llvm/IR/Instructions.h"
45 #include "llvm/IR/IntrinsicInst.h"
46 #include "llvm/IR/Metadata.h"
47 #include "llvm/IR/PassManager.h"
48 #include "llvm/Pass.h"
49 #include "llvm/Support/Casting.h"
50 #include "llvm/Support/CommandLine.h"
51 #include "llvm/Support/Debug.h"
52 #include "llvm/Support/ErrorHandling.h"
53 #include "llvm/Support/raw_ostream.h"
54 #include "llvm/Transforms/Scalar.h"
55 #include "llvm/Transforms/Scalar/LoopPassManager.h"
56 #include "llvm/Transforms/Utils.h"
57 #include "llvm/Transforms/Utils/LoopSimplify.h"
58 #include "llvm/Transforms/Utils/LoopUtils.h"
59 #include "llvm/Transforms/Utils/UnrollLoop.h"
60 #include <algorithm>
61 #include <cassert>
62 #include <cstdint>
63 #include <limits>
64 #include <string>
65 #include <tuple>
66 #include <utility>
67 
68 using namespace llvm;
69 
70 #define DEBUG_TYPE "loop-unroll"
71 
72 static cl::opt<unsigned>
73     UnrollThreshold("unroll-threshold", cl::Hidden,
74                     cl::desc("The cost threshold for loop unrolling"));
75 
76 static cl::opt<unsigned> UnrollPartialThreshold(
77     "unroll-partial-threshold", cl::Hidden,
78     cl::desc("The cost threshold for partial loop unrolling"));
79 
80 static cl::opt<unsigned> UnrollMaxPercentThresholdBoost(
81     "unroll-max-percent-threshold-boost", cl::init(400), cl::Hidden,
82     cl::desc("The maximum 'boost' (represented as a percentage >= 100) applied "
83              "to the threshold when aggressively unrolling a loop due to the "
84              "dynamic cost savings. If completely unrolling a loop will reduce "
85              "the total runtime from X to Y, we boost the loop unroll "
86              "threshold to DefaultThreshold*std::min(MaxPercentThresholdBoost, "
87              "X/Y). This limit avoids excessive code bloat."));
88 
89 static cl::opt<unsigned> UnrollMaxIterationsCountToAnalyze(
90     "unroll-max-iteration-count-to-analyze", cl::init(10), cl::Hidden,
91     cl::desc("Don't allow loop unrolling to simulate more than this number of"
92              "iterations when checking full unroll profitability"));
93 
94 static cl::opt<unsigned> UnrollCount(
95     "unroll-count", cl::Hidden,
96     cl::desc("Use this unroll count for all loops including those with "
97              "unroll_count pragma values, for testing purposes"));
98 
99 static cl::opt<unsigned> UnrollMaxCount(
100     "unroll-max-count", cl::Hidden,
101     cl::desc("Set the max unroll count for partial and runtime unrolling, for"
102              "testing purposes"));
103 
104 static cl::opt<unsigned> UnrollFullMaxCount(
105     "unroll-full-max-count", cl::Hidden,
106     cl::desc(
107         "Set the max unroll count for full unrolling, for testing purposes"));
108 
109 static cl::opt<unsigned> UnrollPeelCount(
110     "unroll-peel-count", cl::Hidden,
111     cl::desc("Set the unroll peeling count, for testing purposes"));
112 
113 static cl::opt<bool>
114     UnrollAllowPartial("unroll-allow-partial", cl::Hidden,
115                        cl::desc("Allows loops to be partially unrolled until "
116                                 "-unroll-threshold loop size is reached."));
117 
118 static cl::opt<bool> UnrollAllowRemainder(
119     "unroll-allow-remainder", cl::Hidden,
120     cl::desc("Allow generation of a loop remainder (extra iterations) "
121              "when unrolling a loop."));
122 
123 static cl::opt<bool>
124     UnrollRuntime("unroll-runtime", cl::ZeroOrMore, cl::Hidden,
125                   cl::desc("Unroll loops with run-time trip counts"));
126 
127 static cl::opt<unsigned> UnrollMaxUpperBound(
128     "unroll-max-upperbound", cl::init(8), cl::Hidden,
129     cl::desc(
130         "The max of trip count upper bound that is considered in unrolling"));
131 
132 static cl::opt<unsigned> PragmaUnrollThreshold(
133     "pragma-unroll-threshold", cl::init(16 * 1024), cl::Hidden,
134     cl::desc("Unrolled size limit for loops with an unroll(full) or "
135              "unroll_count pragma."));
136 
137 static cl::opt<unsigned> FlatLoopTripCountThreshold(
138     "flat-loop-tripcount-threshold", cl::init(5), cl::Hidden,
139     cl::desc("If the runtime tripcount for the loop is lower than the "
140              "threshold, the loop is considered as flat and will be less "
141              "aggressively unrolled."));
142 
143 static cl::opt<bool>
144     UnrollAllowPeeling("unroll-allow-peeling", cl::init(true), cl::Hidden,
145                        cl::desc("Allows loops to be peeled when the dynamic "
146                                 "trip count is known to be low."));
147 
148 static cl::opt<bool> UnrollUnrollRemainder(
149   "unroll-remainder", cl::Hidden,
150   cl::desc("Allow the loop remainder to be unrolled."));
151 
152 // This option isn't ever intended to be enabled, it serves to allow
153 // experiments to check the assumptions about when this kind of revisit is
154 // necessary.
155 static cl::opt<bool> UnrollRevisitChildLoops(
156     "unroll-revisit-child-loops", cl::Hidden,
157     cl::desc("Enqueue and re-visit child loops in the loop PM after unrolling. "
158              "This shouldn't typically be needed as child loops (or their "
159              "clones) were already visited."));
160 
161 /// A magic value for use with the Threshold parameter to indicate
162 /// that the loop unroll should be performed regardless of how much
163 /// code expansion would result.
164 static const unsigned NoThreshold = std::numeric_limits<unsigned>::max();
165 
166 /// Gather the various unrolling parameters based on the defaults, compiler
167 /// flags, TTI overrides and user specified parameters.
168 static TargetTransformInfo::UnrollingPreferences gatherUnrollingPreferences(
169     Loop *L, ScalarEvolution &SE, const TargetTransformInfo &TTI, int OptLevel,
170     Optional<unsigned> UserThreshold, Optional<unsigned> UserCount,
171     Optional<bool> UserAllowPartial, Optional<bool> UserRuntime,
172     Optional<bool> UserUpperBound, Optional<bool> UserAllowPeeling) {
173   TargetTransformInfo::UnrollingPreferences UP;
174 
175   // Set up the defaults
176   UP.Threshold = OptLevel > 2 ? 300 : 150;
177   UP.MaxPercentThresholdBoost = 400;
178   UP.OptSizeThreshold = 0;
179   UP.PartialThreshold = 150;
180   UP.PartialOptSizeThreshold = 0;
181   UP.Count = 0;
182   UP.PeelCount = 0;
183   UP.DefaultUnrollRuntimeCount = 8;
184   UP.MaxCount = std::numeric_limits<unsigned>::max();
185   UP.FullUnrollMaxCount = std::numeric_limits<unsigned>::max();
186   UP.BEInsns = 2;
187   UP.Partial = false;
188   UP.Runtime = false;
189   UP.AllowRemainder = true;
190   UP.UnrollRemainder = false;
191   UP.AllowExpensiveTripCount = false;
192   UP.Force = false;
193   UP.UpperBound = false;
194   UP.AllowPeeling = true;
195 
196   // Override with any target specific settings
197   TTI.getUnrollingPreferences(L, SE, UP);
198 
199   // Apply size attributes
200   if (L->getHeader()->getParent()->optForSize()) {
201     UP.Threshold = UP.OptSizeThreshold;
202     UP.PartialThreshold = UP.PartialOptSizeThreshold;
203   }
204 
205   // Apply any user values specified by cl::opt
206   if (UnrollThreshold.getNumOccurrences() > 0)
207     UP.Threshold = UnrollThreshold;
208   if (UnrollPartialThreshold.getNumOccurrences() > 0)
209     UP.PartialThreshold = UnrollPartialThreshold;
210   if (UnrollMaxPercentThresholdBoost.getNumOccurrences() > 0)
211     UP.MaxPercentThresholdBoost = UnrollMaxPercentThresholdBoost;
212   if (UnrollMaxCount.getNumOccurrences() > 0)
213     UP.MaxCount = UnrollMaxCount;
214   if (UnrollFullMaxCount.getNumOccurrences() > 0)
215     UP.FullUnrollMaxCount = UnrollFullMaxCount;
216   if (UnrollPeelCount.getNumOccurrences() > 0)
217     UP.PeelCount = UnrollPeelCount;
218   if (UnrollAllowPartial.getNumOccurrences() > 0)
219     UP.Partial = UnrollAllowPartial;
220   if (UnrollAllowRemainder.getNumOccurrences() > 0)
221     UP.AllowRemainder = UnrollAllowRemainder;
222   if (UnrollRuntime.getNumOccurrences() > 0)
223     UP.Runtime = UnrollRuntime;
224   if (UnrollMaxUpperBound == 0)
225     UP.UpperBound = false;
226   if (UnrollAllowPeeling.getNumOccurrences() > 0)
227     UP.AllowPeeling = UnrollAllowPeeling;
228   if (UnrollUnrollRemainder.getNumOccurrences() > 0)
229     UP.UnrollRemainder = UnrollUnrollRemainder;
230 
231   // Apply user values provided by argument
232   if (UserThreshold.hasValue()) {
233     UP.Threshold = *UserThreshold;
234     UP.PartialThreshold = *UserThreshold;
235   }
236   if (UserCount.hasValue())
237     UP.Count = *UserCount;
238   if (UserAllowPartial.hasValue())
239     UP.Partial = *UserAllowPartial;
240   if (UserRuntime.hasValue())
241     UP.Runtime = *UserRuntime;
242   if (UserUpperBound.hasValue())
243     UP.UpperBound = *UserUpperBound;
244   if (UserAllowPeeling.hasValue())
245     UP.AllowPeeling = *UserAllowPeeling;
246 
247   return UP;
248 }
249 
250 namespace {
251 
252 /// A struct to densely store the state of an instruction after unrolling at
253 /// each iteration.
254 ///
255 /// This is designed to work like a tuple of <Instruction *, int> for the
256 /// purposes of hashing and lookup, but to be able to associate two boolean
257 /// states with each key.
258 struct UnrolledInstState {
259   Instruction *I;
260   int Iteration : 30;
261   unsigned IsFree : 1;
262   unsigned IsCounted : 1;
263 };
264 
265 /// Hashing and equality testing for a set of the instruction states.
266 struct UnrolledInstStateKeyInfo {
267   using PtrInfo = DenseMapInfo<Instruction *>;
268   using PairInfo = DenseMapInfo<std::pair<Instruction *, int>>;
269 
270   static inline UnrolledInstState getEmptyKey() {
271     return {PtrInfo::getEmptyKey(), 0, 0, 0};
272   }
273 
274   static inline UnrolledInstState getTombstoneKey() {
275     return {PtrInfo::getTombstoneKey(), 0, 0, 0};
276   }
277 
278   static inline unsigned getHashValue(const UnrolledInstState &S) {
279     return PairInfo::getHashValue({S.I, S.Iteration});
280   }
281 
282   static inline bool isEqual(const UnrolledInstState &LHS,
283                              const UnrolledInstState &RHS) {
284     return PairInfo::isEqual({LHS.I, LHS.Iteration}, {RHS.I, RHS.Iteration});
285   }
286 };
287 
288 struct EstimatedUnrollCost {
289   /// The estimated cost after unrolling.
290   unsigned UnrolledCost;
291 
292   /// The estimated dynamic cost of executing the instructions in the
293   /// rolled form.
294   unsigned RolledDynamicCost;
295 };
296 
297 } // end anonymous namespace
298 
299 /// Figure out if the loop is worth full unrolling.
300 ///
301 /// Complete loop unrolling can make some loads constant, and we need to know
302 /// if that would expose any further optimization opportunities.  This routine
303 /// estimates this optimization.  It computes cost of unrolled loop
304 /// (UnrolledCost) and dynamic cost of the original loop (RolledDynamicCost). By
305 /// dynamic cost we mean that we won't count costs of blocks that are known not
306 /// to be executed (i.e. if we have a branch in the loop and we know that at the
307 /// given iteration its condition would be resolved to true, we won't add up the
308 /// cost of the 'false'-block).
309 /// \returns Optional value, holding the RolledDynamicCost and UnrolledCost. If
310 /// the analysis failed (no benefits expected from the unrolling, or the loop is
311 /// too big to analyze), the returned value is None.
312 static Optional<EstimatedUnrollCost> analyzeLoopUnrollCost(
313     const Loop *L, unsigned TripCount, DominatorTree &DT, ScalarEvolution &SE,
314     const SmallPtrSetImpl<const Value *> &EphValues,
315     const TargetTransformInfo &TTI, unsigned MaxUnrolledLoopSize) {
316   // We want to be able to scale offsets by the trip count and add more offsets
317   // to them without checking for overflows, and we already don't want to
318   // analyze *massive* trip counts, so we force the max to be reasonably small.
319   assert(UnrollMaxIterationsCountToAnalyze <
320              (unsigned)(std::numeric_limits<int>::max() / 2) &&
321          "The unroll iterations max is too large!");
322 
323   // Only analyze inner loops. We can't properly estimate cost of nested loops
324   // and we won't visit inner loops again anyway.
325   if (!L->empty())
326     return None;
327 
328   // Don't simulate loops with a big or unknown tripcount
329   if (!UnrollMaxIterationsCountToAnalyze || !TripCount ||
330       TripCount > UnrollMaxIterationsCountToAnalyze)
331     return None;
332 
333   SmallSetVector<BasicBlock *, 16> BBWorklist;
334   SmallSetVector<std::pair<BasicBlock *, BasicBlock *>, 4> ExitWorklist;
335   DenseMap<Value *, Constant *> SimplifiedValues;
336   SmallVector<std::pair<Value *, Constant *>, 4> SimplifiedInputValues;
337 
338   // The estimated cost of the unrolled form of the loop. We try to estimate
339   // this by simplifying as much as we can while computing the estimate.
340   unsigned UnrolledCost = 0;
341 
342   // We also track the estimated dynamic (that is, actually executed) cost in
343   // the rolled form. This helps identify cases when the savings from unrolling
344   // aren't just exposing dead control flows, but actual reduced dynamic
345   // instructions due to the simplifications which we expect to occur after
346   // unrolling.
347   unsigned RolledDynamicCost = 0;
348 
349   // We track the simplification of each instruction in each iteration. We use
350   // this to recursively merge costs into the unrolled cost on-demand so that
351   // we don't count the cost of any dead code. This is essentially a map from
352   // <instruction, int> to <bool, bool>, but stored as a densely packed struct.
353   DenseSet<UnrolledInstState, UnrolledInstStateKeyInfo> InstCostMap;
354 
355   // A small worklist used to accumulate cost of instructions from each
356   // observable and reached root in the loop.
357   SmallVector<Instruction *, 16> CostWorklist;
358 
359   // PHI-used worklist used between iterations while accumulating cost.
360   SmallVector<Instruction *, 4> PHIUsedList;
361 
362   // Helper function to accumulate cost for instructions in the loop.
363   auto AddCostRecursively = [&](Instruction &RootI, int Iteration) {
364     assert(Iteration >= 0 && "Cannot have a negative iteration!");
365     assert(CostWorklist.empty() && "Must start with an empty cost list");
366     assert(PHIUsedList.empty() && "Must start with an empty phi used list");
367     CostWorklist.push_back(&RootI);
368     for (;; --Iteration) {
369       do {
370         Instruction *I = CostWorklist.pop_back_val();
371 
372         // InstCostMap only uses I and Iteration as a key, the other two values
373         // don't matter here.
374         auto CostIter = InstCostMap.find({I, Iteration, 0, 0});
375         if (CostIter == InstCostMap.end())
376           // If an input to a PHI node comes from a dead path through the loop
377           // we may have no cost data for it here. What that actually means is
378           // that it is free.
379           continue;
380         auto &Cost = *CostIter;
381         if (Cost.IsCounted)
382           // Already counted this instruction.
383           continue;
384 
385         // Mark that we are counting the cost of this instruction now.
386         Cost.IsCounted = true;
387 
388         // If this is a PHI node in the loop header, just add it to the PHI set.
389         if (auto *PhiI = dyn_cast<PHINode>(I))
390           if (PhiI->getParent() == L->getHeader()) {
391             assert(Cost.IsFree && "Loop PHIs shouldn't be evaluated as they "
392                                   "inherently simplify during unrolling.");
393             if (Iteration == 0)
394               continue;
395 
396             // Push the incoming value from the backedge into the PHI used list
397             // if it is an in-loop instruction. We'll use this to populate the
398             // cost worklist for the next iteration (as we count backwards).
399             if (auto *OpI = dyn_cast<Instruction>(
400                     PhiI->getIncomingValueForBlock(L->getLoopLatch())))
401               if (L->contains(OpI))
402                 PHIUsedList.push_back(OpI);
403             continue;
404           }
405 
406         // First accumulate the cost of this instruction.
407         if (!Cost.IsFree) {
408           UnrolledCost += TTI.getUserCost(I);
409           LLVM_DEBUG(dbgs() << "Adding cost of instruction (iteration "
410                             << Iteration << "): ");
411           LLVM_DEBUG(I->dump());
412         }
413 
414         // We must count the cost of every operand which is not free,
415         // recursively. If we reach a loop PHI node, simply add it to the set
416         // to be considered on the next iteration (backwards!).
417         for (Value *Op : I->operands()) {
418           // Check whether this operand is free due to being a constant or
419           // outside the loop.
420           auto *OpI = dyn_cast<Instruction>(Op);
421           if (!OpI || !L->contains(OpI))
422             continue;
423 
424           // Otherwise accumulate its cost.
425           CostWorklist.push_back(OpI);
426         }
427       } while (!CostWorklist.empty());
428 
429       if (PHIUsedList.empty())
430         // We've exhausted the search.
431         break;
432 
433       assert(Iteration > 0 &&
434              "Cannot track PHI-used values past the first iteration!");
435       CostWorklist.append(PHIUsedList.begin(), PHIUsedList.end());
436       PHIUsedList.clear();
437     }
438   };
439 
440   // Ensure that we don't violate the loop structure invariants relied on by
441   // this analysis.
442   assert(L->isLoopSimplifyForm() && "Must put loop into normal form first.");
443   assert(L->isLCSSAForm(DT) &&
444          "Must have loops in LCSSA form to track live-out values.");
445 
446   LLVM_DEBUG(dbgs() << "Starting LoopUnroll profitability analysis...\n");
447 
448   // Simulate execution of each iteration of the loop counting instructions,
449   // which would be simplified.
450   // Since the same load will take different values on different iterations,
451   // we literally have to go through all loop's iterations.
452   for (unsigned Iteration = 0; Iteration < TripCount; ++Iteration) {
453     LLVM_DEBUG(dbgs() << " Analyzing iteration " << Iteration << "\n");
454 
455     // Prepare for the iteration by collecting any simplified entry or backedge
456     // inputs.
457     for (Instruction &I : *L->getHeader()) {
458       auto *PHI = dyn_cast<PHINode>(&I);
459       if (!PHI)
460         break;
461 
462       // The loop header PHI nodes must have exactly two input: one from the
463       // loop preheader and one from the loop latch.
464       assert(
465           PHI->getNumIncomingValues() == 2 &&
466           "Must have an incoming value only for the preheader and the latch.");
467 
468       Value *V = PHI->getIncomingValueForBlock(
469           Iteration == 0 ? L->getLoopPreheader() : L->getLoopLatch());
470       Constant *C = dyn_cast<Constant>(V);
471       if (Iteration != 0 && !C)
472         C = SimplifiedValues.lookup(V);
473       if (C)
474         SimplifiedInputValues.push_back({PHI, C});
475     }
476 
477     // Now clear and re-populate the map for the next iteration.
478     SimplifiedValues.clear();
479     while (!SimplifiedInputValues.empty())
480       SimplifiedValues.insert(SimplifiedInputValues.pop_back_val());
481 
482     UnrolledInstAnalyzer Analyzer(Iteration, SimplifiedValues, SE, L);
483 
484     BBWorklist.clear();
485     BBWorklist.insert(L->getHeader());
486     // Note that we *must not* cache the size, this loop grows the worklist.
487     for (unsigned Idx = 0; Idx != BBWorklist.size(); ++Idx) {
488       BasicBlock *BB = BBWorklist[Idx];
489 
490       // Visit all instructions in the given basic block and try to simplify
491       // it.  We don't change the actual IR, just count optimization
492       // opportunities.
493       for (Instruction &I : *BB) {
494         // These won't get into the final code - don't even try calculating the
495         // cost for them.
496         if (isa<DbgInfoIntrinsic>(I) || EphValues.count(&I))
497           continue;
498 
499         // Track this instruction's expected baseline cost when executing the
500         // rolled loop form.
501         RolledDynamicCost += TTI.getUserCost(&I);
502 
503         // Visit the instruction to analyze its loop cost after unrolling,
504         // and if the visitor returns true, mark the instruction as free after
505         // unrolling and continue.
506         bool IsFree = Analyzer.visit(I);
507         bool Inserted = InstCostMap.insert({&I, (int)Iteration,
508                                            (unsigned)IsFree,
509                                            /*IsCounted*/ false}).second;
510         (void)Inserted;
511         assert(Inserted && "Cannot have a state for an unvisited instruction!");
512 
513         if (IsFree)
514           continue;
515 
516         // Can't properly model a cost of a call.
517         // FIXME: With a proper cost model we should be able to do it.
518         if (auto *CI = dyn_cast<CallInst>(&I)) {
519           const Function *Callee = CI->getCalledFunction();
520           if (!Callee || TTI.isLoweredToCall(Callee)) {
521             LLVM_DEBUG(dbgs() << "Can't analyze cost of loop with call\n");
522             return None;
523           }
524         }
525 
526         // If the instruction might have a side-effect recursively account for
527         // the cost of it and all the instructions leading up to it.
528         if (I.mayHaveSideEffects())
529           AddCostRecursively(I, Iteration);
530 
531         // If unrolled body turns out to be too big, bail out.
532         if (UnrolledCost > MaxUnrolledLoopSize) {
533           LLVM_DEBUG(dbgs() << "  Exceeded threshold.. exiting.\n"
534                             << "  UnrolledCost: " << UnrolledCost
535                             << ", MaxUnrolledLoopSize: " << MaxUnrolledLoopSize
536                             << "\n");
537           return None;
538         }
539       }
540 
541       TerminatorInst *TI = BB->getTerminator();
542 
543       // Add in the live successors by first checking whether we have terminator
544       // that may be simplified based on the values simplified by this call.
545       BasicBlock *KnownSucc = nullptr;
546       if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
547         if (BI->isConditional()) {
548           if (Constant *SimpleCond =
549                   SimplifiedValues.lookup(BI->getCondition())) {
550             // Just take the first successor if condition is undef
551             if (isa<UndefValue>(SimpleCond))
552               KnownSucc = BI->getSuccessor(0);
553             else if (ConstantInt *SimpleCondVal =
554                          dyn_cast<ConstantInt>(SimpleCond))
555               KnownSucc = BI->getSuccessor(SimpleCondVal->isZero() ? 1 : 0);
556           }
557         }
558       } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
559         if (Constant *SimpleCond =
560                 SimplifiedValues.lookup(SI->getCondition())) {
561           // Just take the first successor if condition is undef
562           if (isa<UndefValue>(SimpleCond))
563             KnownSucc = SI->getSuccessor(0);
564           else if (ConstantInt *SimpleCondVal =
565                        dyn_cast<ConstantInt>(SimpleCond))
566             KnownSucc = SI->findCaseValue(SimpleCondVal)->getCaseSuccessor();
567         }
568       }
569       if (KnownSucc) {
570         if (L->contains(KnownSucc))
571           BBWorklist.insert(KnownSucc);
572         else
573           ExitWorklist.insert({BB, KnownSucc});
574         continue;
575       }
576 
577       // Add BB's successors to the worklist.
578       for (BasicBlock *Succ : successors(BB))
579         if (L->contains(Succ))
580           BBWorklist.insert(Succ);
581         else
582           ExitWorklist.insert({BB, Succ});
583       AddCostRecursively(*TI, Iteration);
584     }
585 
586     // If we found no optimization opportunities on the first iteration, we
587     // won't find them on later ones too.
588     if (UnrolledCost == RolledDynamicCost) {
589       LLVM_DEBUG(dbgs() << "  No opportunities found.. exiting.\n"
590                         << "  UnrolledCost: " << UnrolledCost << "\n");
591       return None;
592     }
593   }
594 
595   while (!ExitWorklist.empty()) {
596     BasicBlock *ExitingBB, *ExitBB;
597     std::tie(ExitingBB, ExitBB) = ExitWorklist.pop_back_val();
598 
599     for (Instruction &I : *ExitBB) {
600       auto *PN = dyn_cast<PHINode>(&I);
601       if (!PN)
602         break;
603 
604       Value *Op = PN->getIncomingValueForBlock(ExitingBB);
605       if (auto *OpI = dyn_cast<Instruction>(Op))
606         if (L->contains(OpI))
607           AddCostRecursively(*OpI, TripCount - 1);
608     }
609   }
610 
611   LLVM_DEBUG(dbgs() << "Analysis finished:\n"
612                     << "UnrolledCost: " << UnrolledCost << ", "
613                     << "RolledDynamicCost: " << RolledDynamicCost << "\n");
614   return {{UnrolledCost, RolledDynamicCost}};
615 }
616 
617 /// ApproximateLoopSize - Approximate the size of the loop.
618 static unsigned
619 ApproximateLoopSize(const Loop *L, unsigned &NumCalls, bool &NotDuplicatable,
620                     bool &Convergent, const TargetTransformInfo &TTI,
621                     const SmallPtrSetImpl<const Value *> &EphValues,
622                     unsigned BEInsns) {
623   CodeMetrics Metrics;
624   for (BasicBlock *BB : L->blocks())
625     Metrics.analyzeBasicBlock(BB, TTI, EphValues);
626   NumCalls = Metrics.NumInlineCandidates;
627   NotDuplicatable = Metrics.notDuplicatable;
628   Convergent = Metrics.convergent;
629 
630   unsigned LoopSize = Metrics.NumInsts;
631 
632   // Don't allow an estimate of size zero.  This would allows unrolling of loops
633   // with huge iteration counts, which is a compile time problem even if it's
634   // not a problem for code quality. Also, the code using this size may assume
635   // that each loop has at least three instructions (likely a conditional
636   // branch, a comparison feeding that branch, and some kind of loop increment
637   // feeding that comparison instruction).
638   LoopSize = std::max(LoopSize, BEInsns + 1);
639 
640   return LoopSize;
641 }
642 
643 // Returns the loop hint metadata node with the given name (for example,
644 // "llvm.loop.unroll.count").  If no such metadata node exists, then nullptr is
645 // returned.
646 static MDNode *GetUnrollMetadataForLoop(const Loop *L, StringRef Name) {
647   if (MDNode *LoopID = L->getLoopID())
648     return GetUnrollMetadata(LoopID, Name);
649   return nullptr;
650 }
651 
652 // Returns true if the loop has an unroll(full) pragma.
653 static bool HasUnrollFullPragma(const Loop *L) {
654   return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.full");
655 }
656 
657 // Returns true if the loop has an unroll(enable) pragma. This metadata is used
658 // for both "#pragma unroll" and "#pragma clang loop unroll(enable)" directives.
659 static bool HasUnrollEnablePragma(const Loop *L) {
660   return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.enable");
661 }
662 
663 // Returns true if the loop has an unroll(disable) pragma.
664 static bool HasUnrollDisablePragma(const Loop *L) {
665   return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.disable");
666 }
667 
668 // Returns true if the loop has an runtime unroll(disable) pragma.
669 static bool HasRuntimeUnrollDisablePragma(const Loop *L) {
670   return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.runtime.disable");
671 }
672 
673 // If loop has an unroll_count pragma return the (necessarily
674 // positive) value from the pragma.  Otherwise return 0.
675 static unsigned UnrollCountPragmaValue(const Loop *L) {
676   MDNode *MD = GetUnrollMetadataForLoop(L, "llvm.loop.unroll.count");
677   if (MD) {
678     assert(MD->getNumOperands() == 2 &&
679            "Unroll count hint metadata should have two operands.");
680     unsigned Count =
681         mdconst::extract<ConstantInt>(MD->getOperand(1))->getZExtValue();
682     assert(Count >= 1 && "Unroll count must be positive.");
683     return Count;
684   }
685   return 0;
686 }
687 
688 // Computes the boosting factor for complete unrolling.
689 // If fully unrolling the loop would save a lot of RolledDynamicCost, it would
690 // be beneficial to fully unroll the loop even if unrolledcost is large. We
691 // use (RolledDynamicCost / UnrolledCost) to model the unroll benefits to adjust
692 // the unroll threshold.
693 static unsigned getFullUnrollBoostingFactor(const EstimatedUnrollCost &Cost,
694                                             unsigned MaxPercentThresholdBoost) {
695   if (Cost.RolledDynamicCost >= std::numeric_limits<unsigned>::max() / 100)
696     return 100;
697   else if (Cost.UnrolledCost != 0)
698     // The boosting factor is RolledDynamicCost / UnrolledCost
699     return std::min(100 * Cost.RolledDynamicCost / Cost.UnrolledCost,
700                     MaxPercentThresholdBoost);
701   else
702     return MaxPercentThresholdBoost;
703 }
704 
705 // Returns loop size estimation for unrolled loop.
706 static uint64_t getUnrolledLoopSize(
707     unsigned LoopSize,
708     TargetTransformInfo::UnrollingPreferences &UP) {
709   assert(LoopSize >= UP.BEInsns && "LoopSize should not be less than BEInsns!");
710   return (uint64_t)(LoopSize - UP.BEInsns) * UP.Count + UP.BEInsns;
711 }
712 
713 // Returns true if unroll count was set explicitly.
714 // Calculates unroll count and writes it to UP.Count.
715 static bool computeUnrollCount(
716     Loop *L, const TargetTransformInfo &TTI, DominatorTree &DT, LoopInfo *LI,
717     ScalarEvolution &SE, const SmallPtrSetImpl<const Value *> &EphValues,
718     OptimizationRemarkEmitter *ORE, unsigned &TripCount, unsigned MaxTripCount,
719     unsigned &TripMultiple, unsigned LoopSize,
720     TargetTransformInfo::UnrollingPreferences &UP, bool &UseUpperBound) {
721   // Check for explicit Count.
722   // 1st priority is unroll count set by "unroll-count" option.
723   bool UserUnrollCount = UnrollCount.getNumOccurrences() > 0;
724   if (UserUnrollCount) {
725     UP.Count = UnrollCount;
726     UP.AllowExpensiveTripCount = true;
727     UP.Force = true;
728     if (UP.AllowRemainder && getUnrolledLoopSize(LoopSize, UP) < UP.Threshold)
729       return true;
730   }
731 
732   // 2nd priority is unroll count set by pragma.
733   unsigned PragmaCount = UnrollCountPragmaValue(L);
734   if (PragmaCount > 0) {
735     UP.Count = PragmaCount;
736     UP.Runtime = true;
737     UP.AllowExpensiveTripCount = true;
738     UP.Force = true;
739     if ((UP.AllowRemainder || (TripMultiple % PragmaCount == 0)) &&
740         getUnrolledLoopSize(LoopSize, UP) < PragmaUnrollThreshold)
741       return true;
742   }
743   bool PragmaFullUnroll = HasUnrollFullPragma(L);
744   if (PragmaFullUnroll && TripCount != 0) {
745     UP.Count = TripCount;
746     if (getUnrolledLoopSize(LoopSize, UP) < PragmaUnrollThreshold)
747       return false;
748   }
749 
750   bool PragmaEnableUnroll = HasUnrollEnablePragma(L);
751   bool ExplicitUnroll = PragmaCount > 0 || PragmaFullUnroll ||
752                         PragmaEnableUnroll || UserUnrollCount;
753 
754   if (ExplicitUnroll && TripCount != 0) {
755     // If the loop has an unrolling pragma, we want to be more aggressive with
756     // unrolling limits. Set thresholds to at least the PragmaThreshold value
757     // which is larger than the default limits.
758     UP.Threshold = std::max<unsigned>(UP.Threshold, PragmaUnrollThreshold);
759     UP.PartialThreshold =
760         std::max<unsigned>(UP.PartialThreshold, PragmaUnrollThreshold);
761   }
762 
763   // 3rd priority is full unroll count.
764   // Full unroll makes sense only when TripCount or its upper bound could be
765   // statically calculated.
766   // Also we need to check if we exceed FullUnrollMaxCount.
767   // If using the upper bound to unroll, TripMultiple should be set to 1 because
768   // we do not know when loop may exit.
769   // MaxTripCount and ExactTripCount cannot both be non zero since we only
770   // compute the former when the latter is zero.
771   unsigned ExactTripCount = TripCount;
772   assert((ExactTripCount == 0 || MaxTripCount == 0) &&
773          "ExtractTripCount and MaxTripCount cannot both be non zero.");
774   unsigned FullUnrollTripCount = ExactTripCount ? ExactTripCount : MaxTripCount;
775   UP.Count = FullUnrollTripCount;
776   if (FullUnrollTripCount && FullUnrollTripCount <= UP.FullUnrollMaxCount) {
777     // When computing the unrolled size, note that BEInsns are not replicated
778     // like the rest of the loop body.
779     if (getUnrolledLoopSize(LoopSize, UP) < UP.Threshold) {
780       UseUpperBound = (MaxTripCount == FullUnrollTripCount);
781       TripCount = FullUnrollTripCount;
782       TripMultiple = UP.UpperBound ? 1 : TripMultiple;
783       return ExplicitUnroll;
784     } else {
785       // The loop isn't that small, but we still can fully unroll it if that
786       // helps to remove a significant number of instructions.
787       // To check that, run additional analysis on the loop.
788       if (Optional<EstimatedUnrollCost> Cost = analyzeLoopUnrollCost(
789               L, FullUnrollTripCount, DT, SE, EphValues, TTI,
790               UP.Threshold * UP.MaxPercentThresholdBoost / 100)) {
791         unsigned Boost =
792             getFullUnrollBoostingFactor(*Cost, UP.MaxPercentThresholdBoost);
793         if (Cost->UnrolledCost < UP.Threshold * Boost / 100) {
794           UseUpperBound = (MaxTripCount == FullUnrollTripCount);
795           TripCount = FullUnrollTripCount;
796           TripMultiple = UP.UpperBound ? 1 : TripMultiple;
797           return ExplicitUnroll;
798         }
799       }
800     }
801   }
802 
803   // 4th priority is loop peeling
804   computePeelCount(L, LoopSize, UP, TripCount, SE);
805   if (UP.PeelCount) {
806     UP.Runtime = false;
807     UP.Count = 1;
808     return ExplicitUnroll;
809   }
810 
811   // 5th priority is partial unrolling.
812   // Try partial unroll only when TripCount could be statically calculated.
813   if (TripCount) {
814     UP.Partial |= ExplicitUnroll;
815     if (!UP.Partial) {
816       LLVM_DEBUG(dbgs() << "  will not try to unroll partially because "
817                         << "-unroll-allow-partial not given\n");
818       UP.Count = 0;
819       return false;
820     }
821     if (UP.Count == 0)
822       UP.Count = TripCount;
823     if (UP.PartialThreshold != NoThreshold) {
824       // Reduce unroll count to be modulo of TripCount for partial unrolling.
825       if (getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold)
826         UP.Count =
827             (std::max(UP.PartialThreshold, UP.BEInsns + 1) - UP.BEInsns) /
828             (LoopSize - UP.BEInsns);
829       if (UP.Count > UP.MaxCount)
830         UP.Count = UP.MaxCount;
831       while (UP.Count != 0 && TripCount % UP.Count != 0)
832         UP.Count--;
833       if (UP.AllowRemainder && UP.Count <= 1) {
834         // If there is no Count that is modulo of TripCount, set Count to
835         // largest power-of-two factor that satisfies the threshold limit.
836         // As we'll create fixup loop, do the type of unrolling only if
837         // remainder loop is allowed.
838         UP.Count = UP.DefaultUnrollRuntimeCount;
839         while (UP.Count != 0 &&
840                getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold)
841           UP.Count >>= 1;
842       }
843       if (UP.Count < 2) {
844         if (PragmaEnableUnroll)
845           ORE->emit([&]() {
846             return OptimizationRemarkMissed(DEBUG_TYPE,
847                                             "UnrollAsDirectedTooLarge",
848                                             L->getStartLoc(), L->getHeader())
849                    << "Unable to unroll loop as directed by unroll(enable) "
850                       "pragma "
851                       "because unrolled size is too large.";
852           });
853         UP.Count = 0;
854       }
855     } else {
856       UP.Count = TripCount;
857     }
858     if (UP.Count > UP.MaxCount)
859       UP.Count = UP.MaxCount;
860     if ((PragmaFullUnroll || PragmaEnableUnroll) && TripCount &&
861         UP.Count != TripCount)
862       ORE->emit([&]() {
863         return OptimizationRemarkMissed(DEBUG_TYPE,
864                                         "FullUnrollAsDirectedTooLarge",
865                                         L->getStartLoc(), L->getHeader())
866                << "Unable to fully unroll loop as directed by unroll pragma "
867                   "because "
868                   "unrolled size is too large.";
869       });
870     return ExplicitUnroll;
871   }
872   assert(TripCount == 0 &&
873          "All cases when TripCount is constant should be covered here.");
874   if (PragmaFullUnroll)
875     ORE->emit([&]() {
876       return OptimizationRemarkMissed(
877                  DEBUG_TYPE, "CantFullUnrollAsDirectedRuntimeTripCount",
878                  L->getStartLoc(), L->getHeader())
879              << "Unable to fully unroll loop as directed by unroll(full) "
880                 "pragma "
881                 "because loop has a runtime trip count.";
882     });
883 
884   // 6th priority is runtime unrolling.
885   // Don't unroll a runtime trip count loop when it is disabled.
886   if (HasRuntimeUnrollDisablePragma(L)) {
887     UP.Count = 0;
888     return false;
889   }
890 
891   // Check if the runtime trip count is too small when profile is available.
892   if (L->getHeader()->getParent()->hasProfileData()) {
893     if (auto ProfileTripCount = getLoopEstimatedTripCount(L)) {
894       if (*ProfileTripCount < FlatLoopTripCountThreshold)
895         return false;
896       else
897         UP.AllowExpensiveTripCount = true;
898     }
899   }
900 
901   // Reduce count based on the type of unrolling and the threshold values.
902   UP.Runtime |= PragmaEnableUnroll || PragmaCount > 0 || UserUnrollCount;
903   if (!UP.Runtime) {
904     LLVM_DEBUG(
905         dbgs() << "  will not try to unroll loop with runtime trip count "
906                << "-unroll-runtime not given\n");
907     UP.Count = 0;
908     return false;
909   }
910   if (UP.Count == 0)
911     UP.Count = UP.DefaultUnrollRuntimeCount;
912 
913   // Reduce unroll count to be the largest power-of-two factor of
914   // the original count which satisfies the threshold limit.
915   while (UP.Count != 0 &&
916          getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold)
917     UP.Count >>= 1;
918 
919 #ifndef NDEBUG
920   unsigned OrigCount = UP.Count;
921 #endif
922 
923   if (!UP.AllowRemainder && UP.Count != 0 && (TripMultiple % UP.Count) != 0) {
924     while (UP.Count != 0 && TripMultiple % UP.Count != 0)
925       UP.Count >>= 1;
926     LLVM_DEBUG(
927         dbgs() << "Remainder loop is restricted (that could architecture "
928                   "specific or because the loop contains a convergent "
929                   "instruction), so unroll count must divide the trip "
930                   "multiple, "
931                << TripMultiple << ".  Reducing unroll count from " << OrigCount
932                << " to " << UP.Count << ".\n");
933 
934     using namespace ore;
935 
936     if (PragmaCount > 0 && !UP.AllowRemainder)
937       ORE->emit([&]() {
938         return OptimizationRemarkMissed(DEBUG_TYPE,
939                                         "DifferentUnrollCountFromDirected",
940                                         L->getStartLoc(), L->getHeader())
941                << "Unable to unroll loop the number of times directed by "
942                   "unroll_count pragma because remainder loop is restricted "
943                   "(that could architecture specific or because the loop "
944                   "contains a convergent instruction) and so must have an "
945                   "unroll "
946                   "count that divides the loop trip multiple of "
947                << NV("TripMultiple", TripMultiple) << ".  Unrolling instead "
948                << NV("UnrollCount", UP.Count) << " time(s).";
949       });
950   }
951 
952   if (UP.Count > UP.MaxCount)
953     UP.Count = UP.MaxCount;
954   LLVM_DEBUG(dbgs() << "  partially unrolling with count: " << UP.Count
955                     << "\n");
956   if (UP.Count < 2)
957     UP.Count = 0;
958   return ExplicitUnroll;
959 }
960 
961 static LoopUnrollResult tryToUnrollLoop(
962     Loop *L, DominatorTree &DT, LoopInfo *LI, ScalarEvolution &SE,
963     const TargetTransformInfo &TTI, AssumptionCache &AC,
964     OptimizationRemarkEmitter &ORE, bool PreserveLCSSA, int OptLevel,
965     Optional<unsigned> ProvidedCount, Optional<unsigned> ProvidedThreshold,
966     Optional<bool> ProvidedAllowPartial, Optional<bool> ProvidedRuntime,
967     Optional<bool> ProvidedUpperBound, Optional<bool> ProvidedAllowPeeling) {
968   LLVM_DEBUG(dbgs() << "Loop Unroll: F["
969                     << L->getHeader()->getParent()->getName() << "] Loop %"
970                     << L->getHeader()->getName() << "\n");
971   if (HasUnrollDisablePragma(L))
972     return LoopUnrollResult::Unmodified;
973   if (!L->isLoopSimplifyForm()) {
974     LLVM_DEBUG(
975         dbgs() << "  Not unrolling loop which is not in loop-simplify form.\n");
976     return LoopUnrollResult::Unmodified;
977   }
978 
979   unsigned NumInlineCandidates;
980   bool NotDuplicatable;
981   bool Convergent;
982   TargetTransformInfo::UnrollingPreferences UP = gatherUnrollingPreferences(
983       L, SE, TTI, OptLevel, ProvidedThreshold, ProvidedCount,
984       ProvidedAllowPartial, ProvidedRuntime, ProvidedUpperBound,
985       ProvidedAllowPeeling);
986   // Exit early if unrolling is disabled.
987   if (UP.Threshold == 0 && (!UP.Partial || UP.PartialThreshold == 0))
988     return LoopUnrollResult::Unmodified;
989 
990   SmallPtrSet<const Value *, 32> EphValues;
991   CodeMetrics::collectEphemeralValues(L, &AC, EphValues);
992 
993   unsigned LoopSize =
994       ApproximateLoopSize(L, NumInlineCandidates, NotDuplicatable, Convergent,
995                           TTI, EphValues, UP.BEInsns);
996   LLVM_DEBUG(dbgs() << "  Loop Size = " << LoopSize << "\n");
997   if (NotDuplicatable) {
998     LLVM_DEBUG(dbgs() << "  Not unrolling loop which contains non-duplicatable"
999                       << " instructions.\n");
1000     return LoopUnrollResult::Unmodified;
1001   }
1002   if (NumInlineCandidates != 0) {
1003     LLVM_DEBUG(dbgs() << "  Not unrolling loop with inlinable calls.\n");
1004     return LoopUnrollResult::Unmodified;
1005   }
1006 
1007   // Find trip count and trip multiple if count is not available
1008   unsigned TripCount = 0;
1009   unsigned MaxTripCount = 0;
1010   unsigned TripMultiple = 1;
1011   // If there are multiple exiting blocks but one of them is the latch, use the
1012   // latch for the trip count estimation. Otherwise insist on a single exiting
1013   // block for the trip count estimation.
1014   BasicBlock *ExitingBlock = L->getLoopLatch();
1015   if (!ExitingBlock || !L->isLoopExiting(ExitingBlock))
1016     ExitingBlock = L->getExitingBlock();
1017   if (ExitingBlock) {
1018     TripCount = SE.getSmallConstantTripCount(L, ExitingBlock);
1019     TripMultiple = SE.getSmallConstantTripMultiple(L, ExitingBlock);
1020   }
1021 
1022   // If the loop contains a convergent operation, the prelude we'd add
1023   // to do the first few instructions before we hit the unrolled loop
1024   // is unsafe -- it adds a control-flow dependency to the convergent
1025   // operation.  Therefore restrict remainder loop (try unrollig without).
1026   //
1027   // TODO: This is quite conservative.  In practice, convergent_op()
1028   // is likely to be called unconditionally in the loop.  In this
1029   // case, the program would be ill-formed (on most architectures)
1030   // unless n were the same on all threads in a thread group.
1031   // Assuming n is the same on all threads, any kind of unrolling is
1032   // safe.  But currently llvm's notion of convergence isn't powerful
1033   // enough to express this.
1034   if (Convergent)
1035     UP.AllowRemainder = false;
1036 
1037   // Try to find the trip count upper bound if we cannot find the exact trip
1038   // count.
1039   bool MaxOrZero = false;
1040   if (!TripCount) {
1041     MaxTripCount = SE.getSmallConstantMaxTripCount(L);
1042     MaxOrZero = SE.isBackedgeTakenCountMaxOrZero(L);
1043     // We can unroll by the upper bound amount if it's generally allowed or if
1044     // we know that the loop is executed either the upper bound or zero times.
1045     // (MaxOrZero unrolling keeps only the first loop test, so the number of
1046     // loop tests remains the same compared to the non-unrolled version, whereas
1047     // the generic upper bound unrolling keeps all but the last loop test so the
1048     // number of loop tests goes up which may end up being worse on targets with
1049     // constrained branch predictor resources so is controlled by an option.)
1050     // In addition we only unroll small upper bounds.
1051     if (!(UP.UpperBound || MaxOrZero) || MaxTripCount > UnrollMaxUpperBound) {
1052       MaxTripCount = 0;
1053     }
1054   }
1055 
1056   // computeUnrollCount() decides whether it is beneficial to use upper bound to
1057   // fully unroll the loop.
1058   bool UseUpperBound = false;
1059   bool IsCountSetExplicitly = computeUnrollCount(
1060       L, TTI, DT, LI, SE, EphValues, &ORE, TripCount, MaxTripCount,
1061       TripMultiple, LoopSize, UP, UseUpperBound);
1062   if (!UP.Count)
1063     return LoopUnrollResult::Unmodified;
1064   // Unroll factor (Count) must be less or equal to TripCount.
1065   if (TripCount && UP.Count > TripCount)
1066     UP.Count = TripCount;
1067 
1068   // Unroll the loop.
1069   LoopUnrollResult UnrollResult = UnrollLoop(
1070       L, UP.Count, TripCount, UP.Force, UP.Runtime, UP.AllowExpensiveTripCount,
1071       UseUpperBound, MaxOrZero, TripMultiple, UP.PeelCount, UP.UnrollRemainder,
1072       LI, &SE, &DT, &AC, &ORE, PreserveLCSSA);
1073   if (UnrollResult == LoopUnrollResult::Unmodified)
1074     return LoopUnrollResult::Unmodified;
1075 
1076   // If loop has an unroll count pragma or unrolled by explicitly set count
1077   // mark loop as unrolled to prevent unrolling beyond that requested.
1078   // If the loop was peeled, we already "used up" the profile information
1079   // we had, so we don't want to unroll or peel again.
1080   if (UnrollResult != LoopUnrollResult::FullyUnrolled &&
1081       (IsCountSetExplicitly || UP.PeelCount))
1082     L->setLoopAlreadyUnrolled();
1083 
1084   return UnrollResult;
1085 }
1086 
1087 namespace {
1088 
1089 class LoopUnroll : public LoopPass {
1090 public:
1091   static char ID; // Pass ID, replacement for typeid
1092 
1093   int OptLevel;
1094   Optional<unsigned> ProvidedCount;
1095   Optional<unsigned> ProvidedThreshold;
1096   Optional<bool> ProvidedAllowPartial;
1097   Optional<bool> ProvidedRuntime;
1098   Optional<bool> ProvidedUpperBound;
1099   Optional<bool> ProvidedAllowPeeling;
1100 
1101   LoopUnroll(int OptLevel = 2, Optional<unsigned> Threshold = None,
1102              Optional<unsigned> Count = None,
1103              Optional<bool> AllowPartial = None, Optional<bool> Runtime = None,
1104              Optional<bool> UpperBound = None,
1105              Optional<bool> AllowPeeling = None)
1106       : LoopPass(ID), OptLevel(OptLevel), ProvidedCount(std::move(Count)),
1107         ProvidedThreshold(Threshold), ProvidedAllowPartial(AllowPartial),
1108         ProvidedRuntime(Runtime), ProvidedUpperBound(UpperBound),
1109         ProvidedAllowPeeling(AllowPeeling) {
1110     initializeLoopUnrollPass(*PassRegistry::getPassRegistry());
1111   }
1112 
1113   bool runOnLoop(Loop *L, LPPassManager &LPM) override {
1114     if (skipLoop(L))
1115       return false;
1116 
1117     Function &F = *L->getHeader()->getParent();
1118 
1119     auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
1120     LoopInfo *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
1121     ScalarEvolution &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE();
1122     const TargetTransformInfo &TTI =
1123         getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
1124     auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
1125     // For the old PM, we can't use OptimizationRemarkEmitter as an analysis
1126     // pass.  Function analyses need to be preserved across loop transformations
1127     // but ORE cannot be preserved (see comment before the pass definition).
1128     OptimizationRemarkEmitter ORE(&F);
1129     bool PreserveLCSSA = mustPreserveAnalysisID(LCSSAID);
1130 
1131     LoopUnrollResult Result = tryToUnrollLoop(
1132         L, DT, LI, SE, TTI, AC, ORE, PreserveLCSSA, OptLevel, ProvidedCount,
1133         ProvidedThreshold, ProvidedAllowPartial, ProvidedRuntime,
1134         ProvidedUpperBound, ProvidedAllowPeeling);
1135 
1136     if (Result == LoopUnrollResult::FullyUnrolled)
1137       LPM.markLoopAsDeleted(*L);
1138 
1139     return Result != LoopUnrollResult::Unmodified;
1140   }
1141 
1142   /// This transformation requires natural loop information & requires that
1143   /// loop preheaders be inserted into the CFG...
1144   void getAnalysisUsage(AnalysisUsage &AU) const override {
1145     AU.addRequired<AssumptionCacheTracker>();
1146     AU.addRequired<TargetTransformInfoWrapperPass>();
1147     // FIXME: Loop passes are required to preserve domtree, and for now we just
1148     // recreate dom info if anything gets unrolled.
1149     getLoopAnalysisUsage(AU);
1150   }
1151 };
1152 
1153 } // end anonymous namespace
1154 
1155 char LoopUnroll::ID = 0;
1156 
1157 INITIALIZE_PASS_BEGIN(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
1158 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
1159 INITIALIZE_PASS_DEPENDENCY(LoopPass)
1160 INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
1161 INITIALIZE_PASS_END(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
1162 
1163 Pass *llvm::createLoopUnrollPass(int OptLevel, int Threshold, int Count,
1164                                  int AllowPartial, int Runtime, int UpperBound,
1165                                  int AllowPeeling) {
1166   // TODO: It would make more sense for this function to take the optionals
1167   // directly, but that's dangerous since it would silently break out of tree
1168   // callers.
1169   return new LoopUnroll(
1170       OptLevel, Threshold == -1 ? None : Optional<unsigned>(Threshold),
1171       Count == -1 ? None : Optional<unsigned>(Count),
1172       AllowPartial == -1 ? None : Optional<bool>(AllowPartial),
1173       Runtime == -1 ? None : Optional<bool>(Runtime),
1174       UpperBound == -1 ? None : Optional<bool>(UpperBound),
1175       AllowPeeling == -1 ? None : Optional<bool>(AllowPeeling));
1176 }
1177 
1178 Pass *llvm::createSimpleLoopUnrollPass(int OptLevel) {
1179   return createLoopUnrollPass(OptLevel, -1, -1, 0, 0, 0, 0);
1180 }
1181 
1182 PreservedAnalyses LoopFullUnrollPass::run(Loop &L, LoopAnalysisManager &AM,
1183                                           LoopStandardAnalysisResults &AR,
1184                                           LPMUpdater &Updater) {
1185   const auto &FAM =
1186       AM.getResult<FunctionAnalysisManagerLoopProxy>(L, AR).getManager();
1187   Function *F = L.getHeader()->getParent();
1188 
1189   auto *ORE = FAM.getCachedResult<OptimizationRemarkEmitterAnalysis>(*F);
1190   // FIXME: This should probably be optional rather than required.
1191   if (!ORE)
1192     report_fatal_error(
1193         "LoopFullUnrollPass: OptimizationRemarkEmitterAnalysis not "
1194         "cached at a higher level");
1195 
1196   // Keep track of the previous loop structure so we can identify new loops
1197   // created by unrolling.
1198   Loop *ParentL = L.getParentLoop();
1199   SmallPtrSet<Loop *, 4> OldLoops;
1200   if (ParentL)
1201     OldLoops.insert(ParentL->begin(), ParentL->end());
1202   else
1203     OldLoops.insert(AR.LI.begin(), AR.LI.end());
1204 
1205   std::string LoopName = L.getName();
1206 
1207   bool Changed =
1208       tryToUnrollLoop(&L, AR.DT, &AR.LI, AR.SE, AR.TTI, AR.AC, *ORE,
1209                       /*PreserveLCSSA*/ true, OptLevel, /*Count*/ None,
1210                       /*Threshold*/ None, /*AllowPartial*/ false,
1211                       /*Runtime*/ false, /*UpperBound*/ false,
1212                       /*AllowPeeling*/ false) != LoopUnrollResult::Unmodified;
1213   if (!Changed)
1214     return PreservedAnalyses::all();
1215 
1216   // The parent must not be damaged by unrolling!
1217 #ifndef NDEBUG
1218   if (ParentL)
1219     ParentL->verifyLoop();
1220 #endif
1221 
1222   // Unrolling can do several things to introduce new loops into a loop nest:
1223   // - Full unrolling clones child loops within the current loop but then
1224   //   removes the current loop making all of the children appear to be new
1225   //   sibling loops.
1226   //
1227   // When a new loop appears as a sibling loop after fully unrolling,
1228   // its nesting structure has fundamentally changed and we want to revisit
1229   // it to reflect that.
1230   //
1231   // When unrolling has removed the current loop, we need to tell the
1232   // infrastructure that it is gone.
1233   //
1234   // Finally, we support a debugging/testing mode where we revisit child loops
1235   // as well. These are not expected to require further optimizations as either
1236   // they or the loop they were cloned from have been directly visited already.
1237   // But the debugging mode allows us to check this assumption.
1238   bool IsCurrentLoopValid = false;
1239   SmallVector<Loop *, 4> SibLoops;
1240   if (ParentL)
1241     SibLoops.append(ParentL->begin(), ParentL->end());
1242   else
1243     SibLoops.append(AR.LI.begin(), AR.LI.end());
1244   erase_if(SibLoops, [&](Loop *SibLoop) {
1245     if (SibLoop == &L) {
1246       IsCurrentLoopValid = true;
1247       return true;
1248     }
1249 
1250     // Otherwise erase the loop from the list if it was in the old loops.
1251     return OldLoops.count(SibLoop) != 0;
1252   });
1253   Updater.addSiblingLoops(SibLoops);
1254 
1255   if (!IsCurrentLoopValid) {
1256     Updater.markLoopAsDeleted(L, LoopName);
1257   } else {
1258     // We can only walk child loops if the current loop remained valid.
1259     if (UnrollRevisitChildLoops) {
1260       // Walk *all* of the child loops.
1261       SmallVector<Loop *, 4> ChildLoops(L.begin(), L.end());
1262       Updater.addChildLoops(ChildLoops);
1263     }
1264   }
1265 
1266   return getLoopPassPreservedAnalyses();
1267 }
1268 
1269 template <typename RangeT>
1270 static SmallVector<Loop *, 8> appendLoopsToWorklist(RangeT &&Loops) {
1271   SmallVector<Loop *, 8> Worklist;
1272   // We use an internal worklist to build up the preorder traversal without
1273   // recursion.
1274   SmallVector<Loop *, 4> PreOrderLoops, PreOrderWorklist;
1275 
1276   for (Loop *RootL : Loops) {
1277     assert(PreOrderLoops.empty() && "Must start with an empty preorder walk.");
1278     assert(PreOrderWorklist.empty() &&
1279            "Must start with an empty preorder walk worklist.");
1280     PreOrderWorklist.push_back(RootL);
1281     do {
1282       Loop *L = PreOrderWorklist.pop_back_val();
1283       PreOrderWorklist.append(L->begin(), L->end());
1284       PreOrderLoops.push_back(L);
1285     } while (!PreOrderWorklist.empty());
1286 
1287     Worklist.append(PreOrderLoops.begin(), PreOrderLoops.end());
1288     PreOrderLoops.clear();
1289   }
1290   return Worklist;
1291 }
1292 
1293 PreservedAnalyses LoopUnrollPass::run(Function &F,
1294                                       FunctionAnalysisManager &AM) {
1295   auto &SE = AM.getResult<ScalarEvolutionAnalysis>(F);
1296   auto &LI = AM.getResult<LoopAnalysis>(F);
1297   auto &TTI = AM.getResult<TargetIRAnalysis>(F);
1298   auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
1299   auto &AC = AM.getResult<AssumptionAnalysis>(F);
1300   auto &ORE = AM.getResult<OptimizationRemarkEmitterAnalysis>(F);
1301 
1302   LoopAnalysisManager *LAM = nullptr;
1303   if (auto *LAMProxy = AM.getCachedResult<LoopAnalysisManagerFunctionProxy>(F))
1304     LAM = &LAMProxy->getManager();
1305 
1306   const ModuleAnalysisManager &MAM =
1307       AM.getResult<ModuleAnalysisManagerFunctionProxy>(F).getManager();
1308   ProfileSummaryInfo *PSI =
1309       MAM.getCachedResult<ProfileSummaryAnalysis>(*F.getParent());
1310 
1311   bool Changed = false;
1312 
1313   // The unroller requires loops to be in simplified form, and also needs LCSSA.
1314   // Since simplification may add new inner loops, it has to run before the
1315   // legality and profitability checks. This means running the loop unroller
1316   // will simplify all loops, regardless of whether anything end up being
1317   // unrolled.
1318   for (auto &L : LI) {
1319     Changed |= simplifyLoop(L, &DT, &LI, &SE, &AC, false /* PreserveLCSSA */);
1320     Changed |= formLCSSARecursively(*L, DT, &LI, &SE);
1321   }
1322 
1323   SmallVector<Loop *, 8> Worklist = appendLoopsToWorklist(LI);
1324 
1325   while (!Worklist.empty()) {
1326     // Because the LoopInfo stores the loops in RPO, we walk the worklist
1327     // from back to front so that we work forward across the CFG, which
1328     // for unrolling is only needed to get optimization remarks emitted in
1329     // a forward order.
1330     Loop &L = *Worklist.pop_back_val();
1331 #ifndef NDEBUG
1332     Loop *ParentL = L.getParentLoop();
1333 #endif
1334 
1335     // The API here is quite complex to call, but there are only two interesting
1336     // states we support: partial and full (or "simple") unrolling. However, to
1337     // enable these things we actually pass "None" in for the optional to avoid
1338     // providing an explicit choice.
1339     Optional<bool> AllowPartialParam, RuntimeParam, UpperBoundParam,
1340         AllowPeeling;
1341     // Check if the profile summary indicates that the profiled application
1342     // has a huge working set size, in which case we disable peeling to avoid
1343     // bloating it further.
1344     if (PSI && PSI->hasHugeWorkingSetSize())
1345       AllowPeeling = false;
1346     std::string LoopName = L.getName();
1347     LoopUnrollResult Result =
1348         tryToUnrollLoop(&L, DT, &LI, SE, TTI, AC, ORE,
1349                         /*PreserveLCSSA*/ true, OptLevel, /*Count*/ None,
1350                         /*Threshold*/ None, AllowPartialParam, RuntimeParam,
1351                         UpperBoundParam, AllowPeeling);
1352     Changed |= Result != LoopUnrollResult::Unmodified;
1353 
1354     // The parent must not be damaged by unrolling!
1355 #ifndef NDEBUG
1356     if (Result != LoopUnrollResult::Unmodified && ParentL)
1357       ParentL->verifyLoop();
1358 #endif
1359 
1360     // Clear any cached analysis results for L if we removed it completely.
1361     if (LAM && Result == LoopUnrollResult::FullyUnrolled)
1362       LAM->clear(L, LoopName);
1363   }
1364 
1365   if (!Changed)
1366     return PreservedAnalyses::all();
1367 
1368   return getLoopPassPreservedAnalyses();
1369 }
1370