blob: a6d7849010cac5ca0e9b3f8ecd1a092915bbb000 [file] [log] [blame]
Chris Lattner946b2552004-04-18 05:20:17 +00001//===-- LoopUnroll.cpp - Loop unroller pass -------------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Chris Lattner946b2552004-04-18 05:20:17 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
Chris Lattner946b2552004-04-18 05:20:17 +00008//===----------------------------------------------------------------------===//
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.
Chris Lattner946b2552004-04-18 05:20:17 +000013//===----------------------------------------------------------------------===//
14
Sean Silvae3c18a52016-07-19 23:54:23 +000015#include "llvm/Transforms/Scalar/LoopUnrollPass.h"
Chandler Carruth3b057b32015-02-13 03:57:40 +000016#include "llvm/ADT/SetVector.h"
Daniel Jasperaec2fa32016-12-19 08:22:17 +000017#include "llvm/Analysis/AssumptionCache.h"
Chris Lattner679572e2011-01-02 07:35:53 +000018#include "llvm/Analysis/CodeMetrics.h"
Dehao Chend55bc4c2016-05-05 00:54:54 +000019#include "llvm/Analysis/GlobalsModRef.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000020#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/Analysis/LoopPass.h"
Michael Zolotukhin1da4afd2016-02-08 23:03:59 +000022#include "llvm/Analysis/LoopUnrollAnalyzer.h"
Adam Nemet12937c32016-07-29 19:29:47 +000023#include "llvm/Analysis/OptimizationDiagnosticInfo.h"
Teresa Johnson8482e562017-08-03 23:42:58 +000024#include "llvm/Analysis/ProfileSummaryInfo.h"
Dan Gohman0141c132010-07-26 18:11:16 +000025#include "llvm/Analysis/ScalarEvolution.h"
Michael Zolotukhina9aadd22015-02-05 02:34:00 +000026#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/DataLayout.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000028#include "llvm/IR/Dominators.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000029#include "llvm/IR/InstVisitor.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/IntrinsicInst.h"
Eli Benderskyff903242014-06-16 23:53:02 +000031#include "llvm/IR/Metadata.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000032#include "llvm/Support/CommandLine.h"
33#include "llvm/Support/Debug.h"
Daniel Dunbar0dd5e1e2009-07-25 00:23:56 +000034#include "llvm/Support/raw_ostream.h"
Dehao Chend55bc4c2016-05-05 00:54:54 +000035#include "llvm/Transforms/Scalar.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000036#include "llvm/Transforms/Scalar/LoopPassManager.h"
Chandler Carruth31088a92016-02-19 10:45:18 +000037#include "llvm/Transforms/Utils/LoopUtils.h"
Dan Gohman3dc2d922008-05-14 00:24:14 +000038#include "llvm/Transforms/Utils/UnrollLoop.h"
Duncan Sands67933e62008-05-16 09:30:00 +000039#include <climits>
Benjamin Kramer82de7d32016-05-27 14:27:24 +000040#include <utility>
Chris Lattner946b2552004-04-18 05:20:17 +000041
Dan Gohman3dc2d922008-05-14 00:24:14 +000042using namespace llvm;
Chris Lattner946b2552004-04-18 05:20:17 +000043
Chandler Carruth964daaa2014-04-22 02:55:47 +000044#define DEBUG_TYPE "loop-unroll"
45
Dan Gohmand78c4002008-05-13 00:00:25 +000046static cl::opt<unsigned>
Justin Bognera1dd4932016-01-12 00:55:26 +000047 UnrollThreshold("unroll-threshold", cl::Hidden,
Dehao Chenc3f87f02017-01-17 23:39:33 +000048 cl::desc("The cost threshold for loop unrolling"));
49
50static cl::opt<unsigned> UnrollPartialThreshold(
51 "unroll-partial-threshold", cl::Hidden,
52 cl::desc("The cost threshold for partial loop unrolling"));
Chandler Carruth9dabd142015-06-05 17:01:43 +000053
Dehao Chencc763442016-12-30 00:50:28 +000054static cl::opt<unsigned> UnrollMaxPercentThresholdBoost(
55 "unroll-max-percent-threshold-boost", cl::init(400), cl::Hidden,
56 cl::desc("The maximum 'boost' (represented as a percentage >= 100) applied "
57 "to the threshold when aggressively unrolling a loop due to the "
58 "dynamic cost savings. If completely unrolling a loop will reduce "
59 "the total runtime from X to Y, we boost the loop unroll "
60 "threshold to DefaultThreshold*std::min(MaxPercentThresholdBoost, "
61 "X/Y). This limit avoids excessive code bloat."));
Dan Gohmand78c4002008-05-13 00:00:25 +000062
Michael Zolotukhina9aadd22015-02-05 02:34:00 +000063static cl::opt<unsigned> UnrollMaxIterationsCountToAnalyze(
Michael Zolotukhin8f7a2422016-05-24 23:00:05 +000064 "unroll-max-iteration-count-to-analyze", cl::init(10), cl::Hidden,
Michael Zolotukhina9aadd22015-02-05 02:34:00 +000065 cl::desc("Don't allow loop unrolling to simulate more than this number of"
66 "iterations when checking full unroll profitability"));
67
Dehao Chend55bc4c2016-05-05 00:54:54 +000068static cl::opt<unsigned> UnrollCount(
69 "unroll-count", cl::Hidden,
70 cl::desc("Use this unroll count for all loops including those with "
71 "unroll_count pragma values, for testing purposes"));
Dan Gohmand78c4002008-05-13 00:00:25 +000072
Dehao Chend55bc4c2016-05-05 00:54:54 +000073static cl::opt<unsigned> UnrollMaxCount(
74 "unroll-max-count", cl::Hidden,
75 cl::desc("Set the max unroll count for partial and runtime unrolling, for"
76 "testing purposes"));
Fiona Glaser045afc42016-04-06 16:57:25 +000077
Dehao Chend55bc4c2016-05-05 00:54:54 +000078static cl::opt<unsigned> UnrollFullMaxCount(
79 "unroll-full-max-count", cl::Hidden,
80 cl::desc(
81 "Set the max unroll count for full unrolling, for testing purposes"));
Fiona Glaser045afc42016-04-06 16:57:25 +000082
Matthijs Kooijman98b5c162008-07-29 13:21:23 +000083static cl::opt<bool>
Dehao Chend55bc4c2016-05-05 00:54:54 +000084 UnrollAllowPartial("unroll-allow-partial", cl::Hidden,
85 cl::desc("Allows loops to be partially unrolled until "
86 "-unroll-threshold loop size is reached."));
Matthijs Kooijman98b5c162008-07-29 13:21:23 +000087
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +000088static cl::opt<bool> UnrollAllowRemainder(
89 "unroll-allow-remainder", cl::Hidden,
90 cl::desc("Allow generation of a loop remainder (extra iterations) "
91 "when unrolling a loop."));
92
Andrew Trickd04d15292011-12-09 06:19:40 +000093static cl::opt<bool>
Dehao Chend55bc4c2016-05-05 00:54:54 +000094 UnrollRuntime("unroll-runtime", cl::ZeroOrMore, cl::Hidden,
95 cl::desc("Unroll loops with run-time trip counts"));
Andrew Trickd04d15292011-12-09 06:19:40 +000096
Haicheng Wu1ef17e92016-10-12 21:29:38 +000097static cl::opt<unsigned> UnrollMaxUpperBound(
98 "unroll-max-upperbound", cl::init(8), cl::Hidden,
99 cl::desc(
100 "The max of trip count upper bound that is considered in unrolling"));
101
Dehao Chend55bc4c2016-05-05 00:54:54 +0000102static cl::opt<unsigned> PragmaUnrollThreshold(
103 "pragma-unroll-threshold", cl::init(16 * 1024), cl::Hidden,
104 cl::desc("Unrolled size limit for loops with an unroll(full) or "
105 "unroll_count pragma."));
Justin Bognera1dd4932016-01-12 00:55:26 +0000106
Dehao Chen41d72a82016-11-17 01:17:02 +0000107static cl::opt<unsigned> FlatLoopTripCountThreshold(
108 "flat-loop-tripcount-threshold", cl::init(5), cl::Hidden,
109 cl::desc("If the runtime tripcount for the loop is lower than the "
110 "threshold, the loop is considered as flat and will be less "
111 "aggressively unrolled."));
112
Michael Kupersteinb151a642016-11-30 21:13:57 +0000113static cl::opt<bool>
Michael Kupersteinc2af82b2017-02-22 00:27:34 +0000114 UnrollAllowPeeling("unroll-allow-peeling", cl::init(true), cl::Hidden,
Michael Kupersteinb151a642016-11-30 21:13:57 +0000115 cl::desc("Allows loops to be peeled when the dynamic "
116 "trip count is known to be low."));
117
Chandler Carruthce40fa12017-01-25 02:49:01 +0000118// This option isn't ever intended to be enabled, it serves to allow
119// experiments to check the assumptions about when this kind of revisit is
120// necessary.
121static cl::opt<bool> UnrollRevisitChildLoops(
122 "unroll-revisit-child-loops", cl::Hidden,
123 cl::desc("Enqueue and re-visit child loops in the loop PM after unrolling. "
124 "This shouldn't typically be needed as child loops (or their "
125 "clones) were already visited."));
126
Justin Bognera1dd4932016-01-12 00:55:26 +0000127/// A magic value for use with the Threshold parameter to indicate
128/// that the loop unroll should be performed regardless of how much
129/// code expansion would result.
130static const unsigned NoThreshold = UINT_MAX;
131
Justin Bognera1dd4932016-01-12 00:55:26 +0000132/// Gather the various unrolling parameters based on the defaults, compiler
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000133/// flags, TTI overrides and user specified parameters.
Justin Bognera1dd4932016-01-12 00:55:26 +0000134static TargetTransformInfo::UnrollingPreferences gatherUnrollingPreferences(
Geoff Berry66d9bdb2017-06-28 15:53:17 +0000135 Loop *L, ScalarEvolution &SE, const TargetTransformInfo &TTI, int OptLevel,
Dehao Chen7d230322017-02-18 03:46:51 +0000136 Optional<unsigned> UserThreshold, Optional<unsigned> UserCount,
137 Optional<bool> UserAllowPartial, Optional<bool> UserRuntime,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +0000138 Optional<bool> UserUpperBound, Optional<bool> UserAllowPeeling) {
Justin Bognera1dd4932016-01-12 00:55:26 +0000139 TargetTransformInfo::UnrollingPreferences UP;
140
141 // Set up the defaults
Dehao Chen7d230322017-02-18 03:46:51 +0000142 UP.Threshold = OptLevel > 2 ? 300 : 150;
Dehao Chencc763442016-12-30 00:50:28 +0000143 UP.MaxPercentThresholdBoost = 400;
Hans Wennborg719b26b2016-05-10 21:45:55 +0000144 UP.OptSizeThreshold = 0;
Dehao Chenc3f87f02017-01-17 23:39:33 +0000145 UP.PartialThreshold = 150;
Hans Wennborg719b26b2016-05-10 21:45:55 +0000146 UP.PartialOptSizeThreshold = 0;
Justin Bognera1dd4932016-01-12 00:55:26 +0000147 UP.Count = 0;
Michael Kupersteinb151a642016-11-30 21:13:57 +0000148 UP.PeelCount = 0;
Jonas Paulsson58c5a7f2016-09-28 09:41:38 +0000149 UP.DefaultUnrollRuntimeCount = 8;
Justin Bognera1dd4932016-01-12 00:55:26 +0000150 UP.MaxCount = UINT_MAX;
Fiona Glaser045afc42016-04-06 16:57:25 +0000151 UP.FullUnrollMaxCount = UINT_MAX;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000152 UP.BEInsns = 2;
Justin Bognera1dd4932016-01-12 00:55:26 +0000153 UP.Partial = false;
154 UP.Runtime = false;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000155 UP.AllowRemainder = true;
Justin Bognera1dd4932016-01-12 00:55:26 +0000156 UP.AllowExpensiveTripCount = false;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000157 UP.Force = false;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000158 UP.UpperBound = false;
Michael Kupersteinc2af82b2017-02-22 00:27:34 +0000159 UP.AllowPeeling = true;
Justin Bognera1dd4932016-01-12 00:55:26 +0000160
161 // Override with any target specific settings
Geoff Berry66d9bdb2017-06-28 15:53:17 +0000162 TTI.getUnrollingPreferences(L, SE, UP);
Justin Bognera1dd4932016-01-12 00:55:26 +0000163
164 // Apply size attributes
165 if (L->getHeader()->getParent()->optForSize()) {
166 UP.Threshold = UP.OptSizeThreshold;
167 UP.PartialThreshold = UP.PartialOptSizeThreshold;
168 }
169
Justin Bognera1dd4932016-01-12 00:55:26 +0000170 // Apply any user values specified by cl::opt
Dehao Chenc3f87f02017-01-17 23:39:33 +0000171 if (UnrollThreshold.getNumOccurrences() > 0)
Justin Bognera1dd4932016-01-12 00:55:26 +0000172 UP.Threshold = UnrollThreshold;
Dehao Chenc3f87f02017-01-17 23:39:33 +0000173 if (UnrollPartialThreshold.getNumOccurrences() > 0)
174 UP.PartialThreshold = UnrollPartialThreshold;
Dehao Chencc763442016-12-30 00:50:28 +0000175 if (UnrollMaxPercentThresholdBoost.getNumOccurrences() > 0)
176 UP.MaxPercentThresholdBoost = UnrollMaxPercentThresholdBoost;
Fiona Glaser045afc42016-04-06 16:57:25 +0000177 if (UnrollMaxCount.getNumOccurrences() > 0)
178 UP.MaxCount = UnrollMaxCount;
179 if (UnrollFullMaxCount.getNumOccurrences() > 0)
180 UP.FullUnrollMaxCount = UnrollFullMaxCount;
Justin Bognera1dd4932016-01-12 00:55:26 +0000181 if (UnrollAllowPartial.getNumOccurrences() > 0)
182 UP.Partial = UnrollAllowPartial;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000183 if (UnrollAllowRemainder.getNumOccurrences() > 0)
184 UP.AllowRemainder = UnrollAllowRemainder;
Justin Bognera1dd4932016-01-12 00:55:26 +0000185 if (UnrollRuntime.getNumOccurrences() > 0)
186 UP.Runtime = UnrollRuntime;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000187 if (UnrollMaxUpperBound == 0)
188 UP.UpperBound = false;
Michael Kupersteinb151a642016-11-30 21:13:57 +0000189 if (UnrollAllowPeeling.getNumOccurrences() > 0)
190 UP.AllowPeeling = UnrollAllowPeeling;
Justin Bognera1dd4932016-01-12 00:55:26 +0000191
192 // Apply user values provided by argument
193 if (UserThreshold.hasValue()) {
194 UP.Threshold = *UserThreshold;
195 UP.PartialThreshold = *UserThreshold;
196 }
197 if (UserCount.hasValue())
198 UP.Count = *UserCount;
199 if (UserAllowPartial.hasValue())
200 UP.Partial = *UserAllowPartial;
201 if (UserRuntime.hasValue())
202 UP.Runtime = *UserRuntime;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000203 if (UserUpperBound.hasValue())
204 UP.UpperBound = *UserUpperBound;
Teresa Johnson9a18a6f2017-08-03 17:52:38 +0000205 if (UserAllowPeeling.hasValue())
206 UP.AllowPeeling = *UserAllowPeeling;
Justin Bognera1dd4932016-01-12 00:55:26 +0000207
Justin Bognera1dd4932016-01-12 00:55:26 +0000208 return UP;
209}
210
Chris Lattner79a42ac2006-12-19 21:40:18 +0000211namespace {
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000212/// A struct to densely store the state of an instruction after unrolling at
213/// each iteration.
214///
215/// This is designed to work like a tuple of <Instruction *, int> for the
216/// purposes of hashing and lookup, but to be able to associate two boolean
217/// states with each key.
218struct UnrolledInstState {
219 Instruction *I;
220 int Iteration : 30;
221 unsigned IsFree : 1;
222 unsigned IsCounted : 1;
223};
224
225/// Hashing and equality testing for a set of the instruction states.
226struct UnrolledInstStateKeyInfo {
227 typedef DenseMapInfo<Instruction *> PtrInfo;
228 typedef DenseMapInfo<std::pair<Instruction *, int>> PairInfo;
229 static inline UnrolledInstState getEmptyKey() {
230 return {PtrInfo::getEmptyKey(), 0, 0, 0};
231 }
232 static inline UnrolledInstState getTombstoneKey() {
233 return {PtrInfo::getTombstoneKey(), 0, 0, 0};
234 }
235 static inline unsigned getHashValue(const UnrolledInstState &S) {
236 return PairInfo::getHashValue({S.I, S.Iteration});
237 }
238 static inline bool isEqual(const UnrolledInstState &LHS,
239 const UnrolledInstState &RHS) {
240 return PairInfo::isEqual({LHS.I, LHS.Iteration}, {RHS.I, RHS.Iteration});
241 }
242};
243}
244
245namespace {
Chandler Carruth02156082015-05-22 17:41:35 +0000246struct EstimatedUnrollCost {
Chandler Carruth9dabd142015-06-05 17:01:43 +0000247 /// \brief The estimated cost after unrolling.
Dehao Chenc3be2252016-12-02 03:17:07 +0000248 unsigned UnrolledCost;
Chandler Carruth302a1332015-02-13 02:10:56 +0000249
Chandler Carruth9dabd142015-06-05 17:01:43 +0000250 /// \brief The estimated dynamic cost of executing the instructions in the
251 /// rolled form.
Dehao Chenc3be2252016-12-02 03:17:07 +0000252 unsigned RolledDynamicCost;
Chandler Carruth02156082015-05-22 17:41:35 +0000253};
254}
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000255
Chandler Carruth02156082015-05-22 17:41:35 +0000256/// \brief Figure out if the loop is worth full unrolling.
257///
258/// Complete loop unrolling can make some loads constant, and we need to know
259/// if that would expose any further optimization opportunities. This routine
Michael Zolotukhinc4e4f332015-06-11 22:17:39 +0000260/// estimates this optimization. It computes cost of unrolled loop
261/// (UnrolledCost) and dynamic cost of the original loop (RolledDynamicCost). By
262/// dynamic cost we mean that we won't count costs of blocks that are known not
263/// to be executed (i.e. if we have a branch in the loop and we know that at the
264/// given iteration its condition would be resolved to true, we won't add up the
265/// cost of the 'false'-block).
266/// \returns Optional value, holding the RolledDynamicCost and UnrolledCost. If
267/// the analysis failed (no benefits expected from the unrolling, or the loop is
268/// too big to analyze), the returned value is None.
Benjamin Kramerfcdb1c12015-08-20 09:57:22 +0000269static Optional<EstimatedUnrollCost>
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000270analyzeLoopUnrollCost(const Loop *L, unsigned TripCount, DominatorTree &DT,
271 ScalarEvolution &SE, const TargetTransformInfo &TTI,
Dehao Chenc3be2252016-12-02 03:17:07 +0000272 unsigned MaxUnrolledLoopSize) {
Chandler Carruth02156082015-05-22 17:41:35 +0000273 // We want to be able to scale offsets by the trip count and add more offsets
274 // to them without checking for overflows, and we already don't want to
275 // analyze *massive* trip counts, so we force the max to be reasonably small.
276 assert(UnrollMaxIterationsCountToAnalyze < (INT_MAX / 2) &&
277 "The unroll iterations max is too large!");
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000278
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000279 // Only analyze inner loops. We can't properly estimate cost of nested loops
280 // and we won't visit inner loops again anyway.
281 if (!L->empty())
282 return None;
283
Chandler Carruth02156082015-05-22 17:41:35 +0000284 // Don't simulate loops with a big or unknown tripcount
285 if (!UnrollMaxIterationsCountToAnalyze || !TripCount ||
286 TripCount > UnrollMaxIterationsCountToAnalyze)
287 return None;
Chandler Carrutha6ae8772015-05-12 23:32:56 +0000288
Chandler Carruth02156082015-05-22 17:41:35 +0000289 SmallSetVector<BasicBlock *, 16> BBWorklist;
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000290 SmallSetVector<std::pair<BasicBlock *, BasicBlock *>, 4> ExitWorklist;
Chandler Carruth02156082015-05-22 17:41:35 +0000291 DenseMap<Value *, Constant *> SimplifiedValues;
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000292 SmallVector<std::pair<Value *, Constant *>, 4> SimplifiedInputValues;
Chandler Carruth3b057b32015-02-13 03:57:40 +0000293
Chandler Carruth9dabd142015-06-05 17:01:43 +0000294 // The estimated cost of the unrolled form of the loop. We try to estimate
295 // this by simplifying as much as we can while computing the estimate.
Dehao Chenc3be2252016-12-02 03:17:07 +0000296 unsigned UnrolledCost = 0;
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000297
Chandler Carruth9dabd142015-06-05 17:01:43 +0000298 // We also track the estimated dynamic (that is, actually executed) cost in
299 // the rolled form. This helps identify cases when the savings from unrolling
300 // aren't just exposing dead control flows, but actual reduced dynamic
301 // instructions due to the simplifications which we expect to occur after
302 // unrolling.
Dehao Chenc3be2252016-12-02 03:17:07 +0000303 unsigned RolledDynamicCost = 0;
Chandler Carruth8c863752015-02-13 03:48:38 +0000304
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000305 // We track the simplification of each instruction in each iteration. We use
306 // this to recursively merge costs into the unrolled cost on-demand so that
307 // we don't count the cost of any dead code. This is essentially a map from
308 // <instruction, int> to <bool, bool>, but stored as a densely packed struct.
309 DenseSet<UnrolledInstState, UnrolledInstStateKeyInfo> InstCostMap;
310
311 // A small worklist used to accumulate cost of instructions from each
312 // observable and reached root in the loop.
313 SmallVector<Instruction *, 16> CostWorklist;
314
315 // PHI-used worklist used between iterations while accumulating cost.
316 SmallVector<Instruction *, 4> PHIUsedList;
317
318 // Helper function to accumulate cost for instructions in the loop.
319 auto AddCostRecursively = [&](Instruction &RootI, int Iteration) {
320 assert(Iteration >= 0 && "Cannot have a negative iteration!");
321 assert(CostWorklist.empty() && "Must start with an empty cost list");
322 assert(PHIUsedList.empty() && "Must start with an empty phi used list");
323 CostWorklist.push_back(&RootI);
324 for (;; --Iteration) {
325 do {
326 Instruction *I = CostWorklist.pop_back_val();
327
328 // InstCostMap only uses I and Iteration as a key, the other two values
329 // don't matter here.
330 auto CostIter = InstCostMap.find({I, Iteration, 0, 0});
331 if (CostIter == InstCostMap.end())
332 // If an input to a PHI node comes from a dead path through the loop
333 // we may have no cost data for it here. What that actually means is
334 // that it is free.
335 continue;
336 auto &Cost = *CostIter;
337 if (Cost.IsCounted)
338 // Already counted this instruction.
339 continue;
340
341 // Mark that we are counting the cost of this instruction now.
342 Cost.IsCounted = true;
343
344 // If this is a PHI node in the loop header, just add it to the PHI set.
345 if (auto *PhiI = dyn_cast<PHINode>(I))
346 if (PhiI->getParent() == L->getHeader()) {
347 assert(Cost.IsFree && "Loop PHIs shouldn't be evaluated as they "
348 "inherently simplify during unrolling.");
349 if (Iteration == 0)
350 continue;
351
352 // Push the incoming value from the backedge into the PHI used list
353 // if it is an in-loop instruction. We'll use this to populate the
354 // cost worklist for the next iteration (as we count backwards).
355 if (auto *OpI = dyn_cast<Instruction>(
356 PhiI->getIncomingValueForBlock(L->getLoopLatch())))
357 if (L->contains(OpI))
358 PHIUsedList.push_back(OpI);
359 continue;
360 }
361
362 // First accumulate the cost of this instruction.
363 if (!Cost.IsFree) {
364 UnrolledCost += TTI.getUserCost(I);
365 DEBUG(dbgs() << "Adding cost of instruction (iteration " << Iteration
366 << "): ");
367 DEBUG(I->dump());
368 }
369
370 // We must count the cost of every operand which is not free,
371 // recursively. If we reach a loop PHI node, simply add it to the set
372 // to be considered on the next iteration (backwards!).
373 for (Value *Op : I->operands()) {
374 // Check whether this operand is free due to being a constant or
375 // outside the loop.
376 auto *OpI = dyn_cast<Instruction>(Op);
377 if (!OpI || !L->contains(OpI))
378 continue;
379
380 // Otherwise accumulate its cost.
381 CostWorklist.push_back(OpI);
382 }
383 } while (!CostWorklist.empty());
384
385 if (PHIUsedList.empty())
386 // We've exhausted the search.
387 break;
388
389 assert(Iteration > 0 &&
390 "Cannot track PHI-used values past the first iteration!");
391 CostWorklist.append(PHIUsedList.begin(), PHIUsedList.end());
392 PHIUsedList.clear();
393 }
394 };
395
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000396 // Ensure that we don't violate the loop structure invariants relied on by
397 // this analysis.
398 assert(L->isLoopSimplifyForm() && "Must put loop into normal form first.");
399 assert(L->isLCSSAForm(DT) &&
400 "Must have loops in LCSSA form to track live-out values.");
401
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000402 DEBUG(dbgs() << "Starting LoopUnroll profitability analysis...\n");
403
Chandler Carruth02156082015-05-22 17:41:35 +0000404 // Simulate execution of each iteration of the loop counting instructions,
405 // which would be simplified.
406 // Since the same load will take different values on different iterations,
407 // we literally have to go through all loop's iterations.
408 for (unsigned Iteration = 0; Iteration < TripCount; ++Iteration) {
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000409 DEBUG(dbgs() << " Analyzing iteration " << Iteration << "\n");
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000410
411 // Prepare for the iteration by collecting any simplified entry or backedge
412 // inputs.
413 for (Instruction &I : *L->getHeader()) {
414 auto *PHI = dyn_cast<PHINode>(&I);
415 if (!PHI)
416 break;
417
418 // The loop header PHI nodes must have exactly two input: one from the
419 // loop preheader and one from the loop latch.
420 assert(
421 PHI->getNumIncomingValues() == 2 &&
422 "Must have an incoming value only for the preheader and the latch.");
423
424 Value *V = PHI->getIncomingValueForBlock(
425 Iteration == 0 ? L->getLoopPreheader() : L->getLoopLatch());
426 Constant *C = dyn_cast<Constant>(V);
427 if (Iteration != 0 && !C)
428 C = SimplifiedValues.lookup(V);
429 if (C)
430 SimplifiedInputValues.push_back({PHI, C});
431 }
432
433 // Now clear and re-populate the map for the next iteration.
Chandler Carruth02156082015-05-22 17:41:35 +0000434 SimplifiedValues.clear();
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000435 while (!SimplifiedInputValues.empty())
436 SimplifiedValues.insert(SimplifiedInputValues.pop_back_val());
437
Michael Zolotukhin9f520eb2016-02-26 02:57:05 +0000438 UnrolledInstAnalyzer Analyzer(Iteration, SimplifiedValues, SE, L);
Chandler Carruthf174a152015-05-22 02:47:29 +0000439
Chandler Carruth02156082015-05-22 17:41:35 +0000440 BBWorklist.clear();
441 BBWorklist.insert(L->getHeader());
442 // Note that we *must not* cache the size, this loop grows the worklist.
443 for (unsigned Idx = 0; Idx != BBWorklist.size(); ++Idx) {
444 BasicBlock *BB = BBWorklist[Idx];
Chandler Carruthf174a152015-05-22 02:47:29 +0000445
Chandler Carruth02156082015-05-22 17:41:35 +0000446 // Visit all instructions in the given basic block and try to simplify
447 // it. We don't change the actual IR, just count optimization
448 // opportunities.
449 for (Instruction &I : *BB) {
Dehao Chen977853b2016-09-30 18:30:04 +0000450 if (isa<DbgInfoIntrinsic>(I))
451 continue;
452
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000453 // Track this instruction's expected baseline cost when executing the
454 // rolled loop form.
455 RolledDynamicCost += TTI.getUserCost(&I);
Chandler Carruth17a04962015-02-13 03:49:41 +0000456
Chandler Carruth02156082015-05-22 17:41:35 +0000457 // Visit the instruction to analyze its loop cost after unrolling,
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000458 // and if the visitor returns true, mark the instruction as free after
459 // unrolling and continue.
460 bool IsFree = Analyzer.visit(I);
461 bool Inserted = InstCostMap.insert({&I, (int)Iteration,
462 (unsigned)IsFree,
463 /*IsCounted*/ false}).second;
464 (void)Inserted;
465 assert(Inserted && "Cannot have a state for an unvisited instruction!");
Chandler Carruth9dabd142015-06-05 17:01:43 +0000466
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000467 if (IsFree)
468 continue;
469
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000470 // Can't properly model a cost of a call.
471 // FIXME: With a proper cost model we should be able to do it.
472 if(isa<CallInst>(&I))
473 return None;
Chandler Carruth02156082015-05-22 17:41:35 +0000474
Haicheng Wue7877632016-08-17 22:42:58 +0000475 // If the instruction might have a side-effect recursively account for
476 // the cost of it and all the instructions leading up to it.
477 if (I.mayHaveSideEffects())
478 AddCostRecursively(I, Iteration);
479
Chandler Carruth02156082015-05-22 17:41:35 +0000480 // If unrolled body turns out to be too big, bail out.
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000481 if (UnrolledCost > MaxUnrolledLoopSize) {
482 DEBUG(dbgs() << " Exceeded threshold.. exiting.\n"
483 << " UnrolledCost: " << UnrolledCost
484 << ", MaxUnrolledLoopSize: " << MaxUnrolledLoopSize
485 << "\n");
Chandler Carruth02156082015-05-22 17:41:35 +0000486 return None;
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000487 }
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000488 }
Chandler Carruth415f4122015-02-13 02:17:39 +0000489
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000490 TerminatorInst *TI = BB->getTerminator();
491
492 // Add in the live successors by first checking whether we have terminator
493 // that may be simplified based on the values simplified by this call.
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000494 BasicBlock *KnownSucc = nullptr;
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000495 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
496 if (BI->isConditional()) {
497 if (Constant *SimpleCond =
498 SimplifiedValues.lookup(BI->getCondition())) {
Michael Zolotukhin3a7d55b2015-07-29 18:10:29 +0000499 // Just take the first successor if condition is undef
500 if (isa<UndefValue>(SimpleCond))
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000501 KnownSucc = BI->getSuccessor(0);
502 else if (ConstantInt *SimpleCondVal =
503 dyn_cast<ConstantInt>(SimpleCond))
504 KnownSucc = BI->getSuccessor(SimpleCondVal->isZero() ? 1 : 0);
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000505 }
506 }
507 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
508 if (Constant *SimpleCond =
509 SimplifiedValues.lookup(SI->getCondition())) {
Michael Zolotukhin3a7d55b2015-07-29 18:10:29 +0000510 // Just take the first successor if condition is undef
511 if (isa<UndefValue>(SimpleCond))
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000512 KnownSucc = SI->getSuccessor(0);
513 else if (ConstantInt *SimpleCondVal =
514 dyn_cast<ConstantInt>(SimpleCond))
Chandler Carruth927d8e62017-04-12 07:27:28 +0000515 KnownSucc = SI->findCaseValue(SimpleCondVal)->getCaseSuccessor();
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000516 }
517 }
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000518 if (KnownSucc) {
519 if (L->contains(KnownSucc))
520 BBWorklist.insert(KnownSucc);
521 else
522 ExitWorklist.insert({BB, KnownSucc});
523 continue;
524 }
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000525
Chandler Carruth02156082015-05-22 17:41:35 +0000526 // Add BB's successors to the worklist.
527 for (BasicBlock *Succ : successors(BB))
528 if (L->contains(Succ))
529 BBWorklist.insert(Succ);
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000530 else
531 ExitWorklist.insert({BB, Succ});
Michael Zolotukhind2268a72016-05-18 21:20:12 +0000532 AddCostRecursively(*TI, Iteration);
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000533 }
Chandler Carruth02156082015-05-22 17:41:35 +0000534
535 // If we found no optimization opportunities on the first iteration, we
536 // won't find them on later ones too.
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000537 if (UnrolledCost == RolledDynamicCost) {
538 DEBUG(dbgs() << " No opportunities found.. exiting.\n"
539 << " UnrolledCost: " << UnrolledCost << "\n");
Chandler Carruth02156082015-05-22 17:41:35 +0000540 return None;
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000541 }
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000542 }
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000543
544 while (!ExitWorklist.empty()) {
545 BasicBlock *ExitingBB, *ExitBB;
546 std::tie(ExitingBB, ExitBB) = ExitWorklist.pop_back_val();
547
548 for (Instruction &I : *ExitBB) {
549 auto *PN = dyn_cast<PHINode>(&I);
550 if (!PN)
551 break;
552
553 Value *Op = PN->getIncomingValueForBlock(ExitingBB);
554 if (auto *OpI = dyn_cast<Instruction>(Op))
555 if (L->contains(OpI))
556 AddCostRecursively(*OpI, TripCount - 1);
557 }
558 }
559
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000560 DEBUG(dbgs() << "Analysis finished:\n"
561 << "UnrolledCost: " << UnrolledCost << ", "
562 << "RolledDynamicCost: " << RolledDynamicCost << "\n");
Chandler Carruth9dabd142015-06-05 17:01:43 +0000563 return {{UnrolledCost, RolledDynamicCost}};
Chandler Carruth02156082015-05-22 17:41:35 +0000564}
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000565
Dan Gohman49d08a52007-05-08 15:14:19 +0000566/// ApproximateLoopSize - Approximate the size of the loop.
Andrew Trickf7656012011-10-01 01:39:05 +0000567static unsigned ApproximateLoopSize(const Loop *L, unsigned &NumCalls,
Justin Lebar6827de12016-03-14 23:15:34 +0000568 bool &NotDuplicatable, bool &Convergent,
Hal Finkel57f03dd2014-09-07 13:49:57 +0000569 const TargetTransformInfo &TTI,
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000570 AssumptionCache *AC, unsigned BEInsns) {
Hal Finkel57f03dd2014-09-07 13:49:57 +0000571 SmallPtrSet<const Value *, 32> EphValues;
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000572 CodeMetrics::collectEphemeralValues(L, AC, EphValues);
Hal Finkel57f03dd2014-09-07 13:49:57 +0000573
Dan Gohman969e83a2009-10-31 14:54:17 +0000574 CodeMetrics Metrics;
Sanjay Patel5c967232016-03-08 19:06:12 +0000575 for (BasicBlock *BB : L->blocks())
576 Metrics.analyzeBasicBlock(BB, TTI, EphValues);
Owen Anderson04cf3fd2010-09-09 20:32:23 +0000577 NumCalls = Metrics.NumInlineCandidates;
James Molloy4f6fb952012-12-20 16:04:27 +0000578 NotDuplicatable = Metrics.notDuplicatable;
Justin Lebar6827de12016-03-14 23:15:34 +0000579 Convergent = Metrics.convergent;
Andrew Trick279e7a62011-07-23 00:29:16 +0000580
Owen Anderson62ea1b72010-09-09 19:07:31 +0000581 unsigned LoopSize = Metrics.NumInsts;
Andrew Trick279e7a62011-07-23 00:29:16 +0000582
Owen Anderson62ea1b72010-09-09 19:07:31 +0000583 // Don't allow an estimate of size zero. This would allows unrolling of loops
584 // with huge iteration counts, which is a compile time problem even if it's
Hal Finkel38dd5902015-01-10 00:30:55 +0000585 // not a problem for code quality. Also, the code using this size may assume
586 // that each loop has at least three instructions (likely a conditional
587 // branch, a comparison feeding that branch, and some kind of loop increment
588 // feeding that comparison instruction).
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000589 LoopSize = std::max(LoopSize, BEInsns + 1);
Andrew Trick279e7a62011-07-23 00:29:16 +0000590
Owen Anderson62ea1b72010-09-09 19:07:31 +0000591 return LoopSize;
Chris Lattner946b2552004-04-18 05:20:17 +0000592}
593
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000594// Returns the loop hint metadata node with the given name (for example,
595// "llvm.loop.unroll.count"). If no such metadata node exists, then nullptr is
596// returned.
Jingyue Wu49a766e2015-02-02 20:41:11 +0000597static MDNode *GetUnrollMetadataForLoop(const Loop *L, StringRef Name) {
598 if (MDNode *LoopID = L->getLoopID())
599 return GetUnrollMetadata(LoopID, Name);
600 return nullptr;
Eli Benderskyff903242014-06-16 23:53:02 +0000601}
602
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000603// Returns true if the loop has an unroll(full) pragma.
604static bool HasUnrollFullPragma(const Loop *L) {
Jingyue Wu0220df02015-02-01 02:27:45 +0000605 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.full");
Eli Benderskyff903242014-06-16 23:53:02 +0000606}
607
Mark Heffernan89391542015-08-10 17:28:08 +0000608// Returns true if the loop has an unroll(enable) pragma. This metadata is used
609// for both "#pragma unroll" and "#pragma clang loop unroll(enable)" directives.
610static bool HasUnrollEnablePragma(const Loop *L) {
611 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.enable");
612}
613
Eli Benderskyff903242014-06-16 23:53:02 +0000614// Returns true if the loop has an unroll(disable) pragma.
615static bool HasUnrollDisablePragma(const Loop *L) {
Jingyue Wu0220df02015-02-01 02:27:45 +0000616 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.disable");
Eli Benderskyff903242014-06-16 23:53:02 +0000617}
618
Kevin Qin715b01e2015-03-09 06:14:18 +0000619// Returns true if the loop has an runtime unroll(disable) pragma.
620static bool HasRuntimeUnrollDisablePragma(const Loop *L) {
621 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.runtime.disable");
622}
623
Eli Benderskyff903242014-06-16 23:53:02 +0000624// If loop has an unroll_count pragma return the (necessarily
625// positive) value from the pragma. Otherwise return 0.
626static unsigned UnrollCountPragmaValue(const Loop *L) {
Jingyue Wu49a766e2015-02-02 20:41:11 +0000627 MDNode *MD = GetUnrollMetadataForLoop(L, "llvm.loop.unroll.count");
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000628 if (MD) {
629 assert(MD->getNumOperands() == 2 &&
630 "Unroll count hint metadata should have two operands.");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000631 unsigned Count =
632 mdconst::extract<ConstantInt>(MD->getOperand(1))->getZExtValue();
Eli Benderskyff903242014-06-16 23:53:02 +0000633 assert(Count >= 1 && "Unroll count must be positive.");
634 return Count;
635 }
636 return 0;
637}
638
Mark Heffernan053a6862014-07-18 21:04:33 +0000639// Remove existing unroll metadata and add unroll disable metadata to
640// indicate the loop has already been unrolled. This prevents a loop
641// from being unrolled more than is directed by a pragma if the loop
642// unrolling pass is run more than once (which it generally is).
643static void SetLoopAlreadyUnrolled(Loop *L) {
644 MDNode *LoopID = L->getLoopID();
Mark Heffernan053a6862014-07-18 21:04:33 +0000645 // First remove any existing loop unrolling metadata.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000646 SmallVector<Metadata *, 4> MDs;
Mark Heffernan053a6862014-07-18 21:04:33 +0000647 // Reserve first location for self reference to the LoopID metadata node.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000648 MDs.push_back(nullptr);
Evgeny Stupachenko3e2f3892016-06-08 20:21:24 +0000649
650 if (LoopID) {
651 for (unsigned i = 1, ie = LoopID->getNumOperands(); i < ie; ++i) {
652 bool IsUnrollMetadata = false;
653 MDNode *MD = dyn_cast<MDNode>(LoopID->getOperand(i));
654 if (MD) {
655 const MDString *S = dyn_cast<MDString>(MD->getOperand(0));
656 IsUnrollMetadata = S && S->getString().startswith("llvm.loop.unroll.");
657 }
658 if (!IsUnrollMetadata)
659 MDs.push_back(LoopID->getOperand(i));
Mark Heffernan053a6862014-07-18 21:04:33 +0000660 }
Mark Heffernan053a6862014-07-18 21:04:33 +0000661 }
662
663 // Add unroll(disable) metadata to disable future unrolling.
664 LLVMContext &Context = L->getHeader()->getContext();
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000665 SmallVector<Metadata *, 1> DisableOperands;
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000666 DisableOperands.push_back(MDString::get(Context, "llvm.loop.unroll.disable"));
Mark Heffernanf3764da2014-07-18 21:29:41 +0000667 MDNode *DisableNode = MDNode::get(Context, DisableOperands);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000668 MDs.push_back(DisableNode);
Mark Heffernan053a6862014-07-18 21:04:33 +0000669
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000670 MDNode *NewLoopID = MDNode::get(Context, MDs);
Mark Heffernan053a6862014-07-18 21:04:33 +0000671 // Set operand 0 to refer to the loop id itself.
672 NewLoopID->replaceOperandWith(0, NewLoopID);
673 L->setLoopID(NewLoopID);
Mark Heffernan053a6862014-07-18 21:04:33 +0000674}
675
Dehao Chencc763442016-12-30 00:50:28 +0000676// Computes the boosting factor for complete unrolling.
677// If fully unrolling the loop would save a lot of RolledDynamicCost, it would
678// be beneficial to fully unroll the loop even if unrolledcost is large. We
679// use (RolledDynamicCost / UnrolledCost) to model the unroll benefits to adjust
680// the unroll threshold.
681static unsigned getFullUnrollBoostingFactor(const EstimatedUnrollCost &Cost,
682 unsigned MaxPercentThresholdBoost) {
683 if (Cost.RolledDynamicCost >= UINT_MAX / 100)
684 return 100;
685 else if (Cost.UnrolledCost != 0)
686 // The boosting factor is RolledDynamicCost / UnrolledCost
687 return std::min(100 * Cost.RolledDynamicCost / Cost.UnrolledCost,
688 MaxPercentThresholdBoost);
689 else
690 return MaxPercentThresholdBoost;
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000691}
692
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000693// Returns loop size estimation for unrolled loop.
694static uint64_t getUnrolledLoopSize(
695 unsigned LoopSize,
696 TargetTransformInfo::UnrollingPreferences &UP) {
697 assert(LoopSize >= UP.BEInsns && "LoopSize should not be less than BEInsns!");
698 return (uint64_t)(LoopSize - UP.BEInsns) * UP.Count + UP.BEInsns;
699}
700
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000701// Returns true if unroll count was set explicitly.
702// Calculates unroll count and writes it to UP.Count.
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000703static bool computeUnrollCount(
704 Loop *L, const TargetTransformInfo &TTI, DominatorTree &DT, LoopInfo *LI,
Geoff Berry66d9bdb2017-06-28 15:53:17 +0000705 ScalarEvolution &SE, OptimizationRemarkEmitter *ORE, unsigned &TripCount,
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000706 unsigned MaxTripCount, unsigned &TripMultiple, unsigned LoopSize,
707 TargetTransformInfo::UnrollingPreferences &UP, bool &UseUpperBound) {
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000708 // Check for explicit Count.
709 // 1st priority is unroll count set by "unroll-count" option.
710 bool UserUnrollCount = UnrollCount.getNumOccurrences() > 0;
711 if (UserUnrollCount) {
712 UP.Count = UnrollCount;
713 UP.AllowExpensiveTripCount = true;
714 UP.Force = true;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000715 if (UP.AllowRemainder && getUnrolledLoopSize(LoopSize, UP) < UP.Threshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000716 return true;
717 }
718
719 // 2nd priority is unroll count set by pragma.
720 unsigned PragmaCount = UnrollCountPragmaValue(L);
721 if (PragmaCount > 0) {
722 UP.Count = PragmaCount;
723 UP.Runtime = true;
724 UP.AllowExpensiveTripCount = true;
725 UP.Force = true;
726 if (UP.AllowRemainder &&
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000727 getUnrolledLoopSize(LoopSize, UP) < PragmaUnrollThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000728 return true;
729 }
730 bool PragmaFullUnroll = HasUnrollFullPragma(L);
731 if (PragmaFullUnroll && TripCount != 0) {
732 UP.Count = TripCount;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000733 if (getUnrolledLoopSize(LoopSize, UP) < PragmaUnrollThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000734 return false;
735 }
736
737 bool PragmaEnableUnroll = HasUnrollEnablePragma(L);
738 bool ExplicitUnroll = PragmaCount > 0 || PragmaFullUnroll ||
739 PragmaEnableUnroll || UserUnrollCount;
740
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000741 if (ExplicitUnroll && TripCount != 0) {
742 // If the loop has an unrolling pragma, we want to be more aggressive with
743 // unrolling limits. Set thresholds to at least the PragmaThreshold value
744 // which is larger than the default limits.
745 UP.Threshold = std::max<unsigned>(UP.Threshold, PragmaUnrollThreshold);
746 UP.PartialThreshold =
747 std::max<unsigned>(UP.PartialThreshold, PragmaUnrollThreshold);
748 }
749
750 // 3rd priority is full unroll count.
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000751 // Full unroll makes sense only when TripCount or its upper bound could be
752 // statically calculated.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000753 // Also we need to check if we exceed FullUnrollMaxCount.
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000754 // If using the upper bound to unroll, TripMultiple should be set to 1 because
755 // we do not know when loop may exit.
756 // MaxTripCount and ExactTripCount cannot both be non zero since we only
757 // compute the former when the latter is zero.
758 unsigned ExactTripCount = TripCount;
759 assert((ExactTripCount == 0 || MaxTripCount == 0) &&
760 "ExtractTripCound and MaxTripCount cannot both be non zero.");
761 unsigned FullUnrollTripCount = ExactTripCount ? ExactTripCount : MaxTripCount;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000762 UP.Count = FullUnrollTripCount;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000763 if (FullUnrollTripCount && FullUnrollTripCount <= UP.FullUnrollMaxCount) {
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000764 // When computing the unrolled size, note that BEInsns are not replicated
765 // like the rest of the loop body.
Dehao Chencc763442016-12-30 00:50:28 +0000766 if (getUnrolledLoopSize(LoopSize, UP) < UP.Threshold) {
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000767 UseUpperBound = (MaxTripCount == FullUnrollTripCount);
768 TripCount = FullUnrollTripCount;
769 TripMultiple = UP.UpperBound ? 1 : TripMultiple;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000770 return ExplicitUnroll;
771 } else {
772 // The loop isn't that small, but we still can fully unroll it if that
773 // helps to remove a significant number of instructions.
774 // To check that, run additional analysis on the loop.
775 if (Optional<EstimatedUnrollCost> Cost = analyzeLoopUnrollCost(
Geoff Berry66d9bdb2017-06-28 15:53:17 +0000776 L, FullUnrollTripCount, DT, SE, TTI,
Dehao Chencc763442016-12-30 00:50:28 +0000777 UP.Threshold * UP.MaxPercentThresholdBoost / 100)) {
778 unsigned Boost =
779 getFullUnrollBoostingFactor(*Cost, UP.MaxPercentThresholdBoost);
780 if (Cost->UnrolledCost < UP.Threshold * Boost / 100) {
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000781 UseUpperBound = (MaxTripCount == FullUnrollTripCount);
782 TripCount = FullUnrollTripCount;
783 TripMultiple = UP.UpperBound ? 1 : TripMultiple;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000784 return ExplicitUnroll;
785 }
Dehao Chencc763442016-12-30 00:50:28 +0000786 }
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000787 }
788 }
789
Sanjoy Daseed71b92017-03-03 18:19:10 +0000790 // 4th priority is loop peeling
791 computePeelCount(L, LoopSize, UP, TripCount);
792 if (UP.PeelCount) {
793 UP.Runtime = false;
794 UP.Count = 1;
795 return ExplicitUnroll;
796 }
797
798 // 5th priority is partial unrolling.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000799 // Try partial unroll only when TripCount could be staticaly calculated.
800 if (TripCount) {
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000801 UP.Partial |= ExplicitUnroll;
802 if (!UP.Partial) {
803 DEBUG(dbgs() << " will not try to unroll partially because "
804 << "-unroll-allow-partial not given\n");
805 UP.Count = 0;
806 return false;
807 }
Haicheng Wu430b3e42016-10-27 18:40:02 +0000808 if (UP.Count == 0)
809 UP.Count = TripCount;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000810 if (UP.PartialThreshold != NoThreshold) {
811 // Reduce unroll count to be modulo of TripCount for partial unrolling.
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000812 if (getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold)
813 UP.Count =
814 (std::max(UP.PartialThreshold, UP.BEInsns + 1) - UP.BEInsns) /
815 (LoopSize - UP.BEInsns);
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000816 if (UP.Count > UP.MaxCount)
817 UP.Count = UP.MaxCount;
818 while (UP.Count != 0 && TripCount % UP.Count != 0)
819 UP.Count--;
820 if (UP.AllowRemainder && UP.Count <= 1) {
821 // If there is no Count that is modulo of TripCount, set Count to
822 // largest power-of-two factor that satisfies the threshold limit.
823 // As we'll create fixup loop, do the type of unrolling only if
824 // remainder loop is allowed.
Jonas Paulsson58c5a7f2016-09-28 09:41:38 +0000825 UP.Count = UP.DefaultUnrollRuntimeCount;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000826 while (UP.Count != 0 &&
827 getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000828 UP.Count >>= 1;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000829 }
830 if (UP.Count < 2) {
831 if (PragmaEnableUnroll)
Adam Nemetf57cc622016-09-30 03:44:16 +0000832 ORE->emit(
833 OptimizationRemarkMissed(DEBUG_TYPE, "UnrollAsDirectedTooLarge",
834 L->getStartLoc(), L->getHeader())
835 << "Unable to unroll loop as directed by unroll(enable) pragma "
836 "because unrolled size is too large.");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000837 UP.Count = 0;
838 }
839 } else {
840 UP.Count = TripCount;
841 }
Geoff Berryb0573542017-06-28 17:01:15 +0000842 if (UP.Count > UP.MaxCount)
843 UP.Count = UP.MaxCount;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000844 if ((PragmaFullUnroll || PragmaEnableUnroll) && TripCount &&
845 UP.Count != TripCount)
Adam Nemetf57cc622016-09-30 03:44:16 +0000846 ORE->emit(
847 OptimizationRemarkMissed(DEBUG_TYPE, "FullUnrollAsDirectedTooLarge",
848 L->getStartLoc(), L->getHeader())
849 << "Unable to fully unroll loop as directed by unroll pragma because "
850 "unrolled size is too large.");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000851 return ExplicitUnroll;
852 }
853 assert(TripCount == 0 &&
854 "All cases when TripCount is constant should be covered here.");
855 if (PragmaFullUnroll)
Adam Nemetf57cc622016-09-30 03:44:16 +0000856 ORE->emit(
857 OptimizationRemarkMissed(DEBUG_TYPE,
858 "CantFullUnrollAsDirectedRuntimeTripCount",
859 L->getStartLoc(), L->getHeader())
860 << "Unable to fully unroll loop as directed by unroll(full) pragma "
861 "because loop has a runtime trip count.");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000862
Michael Kupersteinb151a642016-11-30 21:13:57 +0000863 // 6th priority is runtime unrolling.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000864 // Don't unroll a runtime trip count loop when it is disabled.
865 if (HasRuntimeUnrollDisablePragma(L)) {
866 UP.Count = 0;
867 return false;
868 }
Michael Kupersteinb151a642016-11-30 21:13:57 +0000869
870 // Check if the runtime trip count is too small when profile is available.
871 if (L->getHeader()->getParent()->getEntryCount()) {
872 if (auto ProfileTripCount = getLoopEstimatedTripCount(L)) {
873 if (*ProfileTripCount < FlatLoopTripCountThreshold)
874 return false;
875 else
876 UP.AllowExpensiveTripCount = true;
877 }
878 }
879
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000880 // Reduce count based on the type of unrolling and the threshold values.
881 UP.Runtime |= PragmaEnableUnroll || PragmaCount > 0 || UserUnrollCount;
882 if (!UP.Runtime) {
883 DEBUG(dbgs() << " will not try to unroll loop with runtime trip count "
884 << "-unroll-runtime not given\n");
885 UP.Count = 0;
886 return false;
887 }
888 if (UP.Count == 0)
Jonas Paulsson58c5a7f2016-09-28 09:41:38 +0000889 UP.Count = UP.DefaultUnrollRuntimeCount;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000890
891 // Reduce unroll count to be the largest power-of-two factor of
892 // the original count which satisfies the threshold limit.
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000893 while (UP.Count != 0 &&
894 getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000895 UP.Count >>= 1;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000896
Evgeny Stupachenkob7875222016-05-28 00:14:58 +0000897#ifndef NDEBUG
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000898 unsigned OrigCount = UP.Count;
Evgeny Stupachenkob7875222016-05-28 00:14:58 +0000899#endif
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000900
901 if (!UP.AllowRemainder && UP.Count != 0 && (TripMultiple % UP.Count) != 0) {
902 while (UP.Count != 0 && TripMultiple % UP.Count != 0)
903 UP.Count >>= 1;
904 DEBUG(dbgs() << "Remainder loop is restricted (that could architecture "
905 "specific or because the loop contains a convergent "
906 "instruction), so unroll count must divide the trip "
907 "multiple, "
908 << TripMultiple << ". Reducing unroll count from "
909 << OrigCount << " to " << UP.Count << ".\n");
Adam Nemetf57cc622016-09-30 03:44:16 +0000910 using namespace ore;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000911 if (PragmaCount > 0 && !UP.AllowRemainder)
Adam Nemetf57cc622016-09-30 03:44:16 +0000912 ORE->emit(
913 OptimizationRemarkMissed(DEBUG_TYPE,
914 "DifferentUnrollCountFromDirected",
915 L->getStartLoc(), L->getHeader())
916 << "Unable to unroll loop the number of times directed by "
917 "unroll_count pragma because remainder loop is restricted "
918 "(that could architecture specific or because the loop "
919 "contains a convergent instruction) and so must have an unroll "
920 "count that divides the loop trip multiple of "
921 << NV("TripMultiple", TripMultiple) << ". Unrolling instead "
922 << NV("UnrollCount", UP.Count) << " time(s).");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000923 }
924
925 if (UP.Count > UP.MaxCount)
926 UP.Count = UP.MaxCount;
927 DEBUG(dbgs() << " partially unrolling with count: " << UP.Count << "\n");
928 if (UP.Count < 2)
929 UP.Count = 0;
930 return ExplicitUnroll;
931}
932
Teresa Johnson9a18a6f2017-08-03 17:52:38 +0000933static bool tryToUnrollLoop(
934 Loop *L, DominatorTree &DT, LoopInfo *LI, ScalarEvolution &SE,
935 const TargetTransformInfo &TTI, AssumptionCache &AC,
936 OptimizationRemarkEmitter &ORE, bool PreserveLCSSA, int OptLevel,
937 Optional<unsigned> ProvidedCount, Optional<unsigned> ProvidedThreshold,
938 Optional<bool> ProvidedAllowPartial, Optional<bool> ProvidedRuntime,
939 Optional<bool> ProvidedUpperBound, Optional<bool> ProvidedAllowPeeling) {
Evgeny Stupachenkob7875222016-05-28 00:14:58 +0000940 DEBUG(dbgs() << "Loop Unroll: F[" << L->getHeader()->getParent()->getName()
941 << "] Loop %" << L->getHeader()->getName() << "\n");
Haicheng Wu731b04c2016-11-23 19:39:26 +0000942 if (HasUnrollDisablePragma(L))
943 return false;
944 if (!L->isLoopSimplifyForm()) {
945 DEBUG(
946 dbgs() << " Not unrolling loop which is not in loop-simplify form.\n");
Eli Benderskyff903242014-06-16 23:53:02 +0000947 return false;
948 }
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000949
950 unsigned NumInlineCandidates;
951 bool NotDuplicatable;
952 bool Convergent;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000953 TargetTransformInfo::UnrollingPreferences UP = gatherUnrollingPreferences(
Geoff Berry66d9bdb2017-06-28 15:53:17 +0000954 L, SE, TTI, OptLevel, ProvidedThreshold, ProvidedCount,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +0000955 ProvidedAllowPartial, ProvidedRuntime, ProvidedUpperBound,
956 ProvidedAllowPeeling);
Haicheng Wu731b04c2016-11-23 19:39:26 +0000957 // Exit early if unrolling is disabled.
958 if (UP.Threshold == 0 && (!UP.Partial || UP.PartialThreshold == 0))
959 return false;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000960 unsigned LoopSize = ApproximateLoopSize(
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000961 L, NumInlineCandidates, NotDuplicatable, Convergent, TTI, &AC, UP.BEInsns);
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000962 DEBUG(dbgs() << " Loop Size = " << LoopSize << "\n");
963 if (NotDuplicatable) {
964 DEBUG(dbgs() << " Not unrolling loop which contains non-duplicatable"
965 << " instructions.\n");
966 return false;
967 }
968 if (NumInlineCandidates != 0) {
969 DEBUG(dbgs() << " Not unrolling loop with inlinable calls.\n");
970 return false;
971 }
Andrew Trick279e7a62011-07-23 00:29:16 +0000972
Andrew Trick2b6860f2011-08-11 23:36:16 +0000973 // Find trip count and trip multiple if count is not available
974 unsigned TripCount = 0;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000975 unsigned MaxTripCount = 0;
Andrew Trick1cabe542011-07-23 00:33:05 +0000976 unsigned TripMultiple = 1;
Chandler Carruth6666c272014-10-11 00:12:11 +0000977 // If there are multiple exiting blocks but one of them is the latch, use the
978 // latch for the trip count estimation. Otherwise insist on a single exiting
979 // block for the trip count estimation.
980 BasicBlock *ExitingBlock = L->getLoopLatch();
981 if (!ExitingBlock || !L->isLoopExiting(ExitingBlock))
982 ExitingBlock = L->getExitingBlock();
983 if (ExitingBlock) {
Geoff Berry66d9bdb2017-06-28 15:53:17 +0000984 TripCount = SE.getSmallConstantTripCount(L, ExitingBlock);
985 TripMultiple = SE.getSmallConstantTripMultiple(L, ExitingBlock);
Andrew Trick2b6860f2011-08-11 23:36:16 +0000986 }
Hal Finkel8f2e7002013-09-11 19:25:43 +0000987
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000988 // If the loop contains a convergent operation, the prelude we'd add
989 // to do the first few instructions before we hit the unrolled loop
990 // is unsafe -- it adds a control-flow dependency to the convergent
991 // operation. Therefore restrict remainder loop (try unrollig without).
992 //
993 // TODO: This is quite conservative. In practice, convergent_op()
994 // is likely to be called unconditionally in the loop. In this
995 // case, the program would be ill-formed (on most architectures)
996 // unless n were the same on all threads in a thread group.
997 // Assuming n is the same on all threads, any kind of unrolling is
998 // safe. But currently llvm's notion of convergence isn't powerful
999 // enough to express this.
1000 if (Convergent)
1001 UP.AllowRemainder = false;
Eli Benderskydc6de2c2014-06-12 18:05:39 +00001002
John Brawn84b21832016-10-21 11:08:48 +00001003 // Try to find the trip count upper bound if we cannot find the exact trip
1004 // count.
1005 bool MaxOrZero = false;
1006 if (!TripCount) {
Geoff Berry66d9bdb2017-06-28 15:53:17 +00001007 MaxTripCount = SE.getSmallConstantMaxTripCount(L);
1008 MaxOrZero = SE.isBackedgeTakenCountMaxOrZero(L);
John Brawn84b21832016-10-21 11:08:48 +00001009 // We can unroll by the upper bound amount if it's generally allowed or if
1010 // we know that the loop is executed either the upper bound or zero times.
1011 // (MaxOrZero unrolling keeps only the first loop test, so the number of
1012 // loop tests remains the same compared to the non-unrolled version, whereas
1013 // the generic upper bound unrolling keeps all but the last loop test so the
1014 // number of loop tests goes up which may end up being worse on targets with
1015 // constriained branch predictor resources so is controlled by an option.)
1016 // In addition we only unroll small upper bounds.
1017 if (!(UP.UpperBound || MaxOrZero) || MaxTripCount > UnrollMaxUpperBound) {
1018 MaxTripCount = 0;
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001019 }
1020 }
1021
1022 // computeUnrollCount() decides whether it is beneficial to use upper bound to
1023 // fully unroll the loop.
1024 bool UseUpperBound = false;
1025 bool IsCountSetExplicitly =
1026 computeUnrollCount(L, TTI, DT, LI, SE, &ORE, TripCount, MaxTripCount,
1027 TripMultiple, LoopSize, UP, UseUpperBound);
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001028 if (!UP.Count)
Eli Benderskyff903242014-06-16 23:53:02 +00001029 return false;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001030 // Unroll factor (Count) must be less or equal to TripCount.
1031 if (TripCount && UP.Count > TripCount)
1032 UP.Count = TripCount;
Dan Gohman2980d9d2007-05-11 20:53:41 +00001033
Dan Gohman3dc2d922008-05-14 00:24:14 +00001034 // Unroll the loop.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001035 if (!UnrollLoop(L, UP.Count, TripCount, UP.Force, UP.Runtime,
John Brawn84b21832016-10-21 11:08:48 +00001036 UP.AllowExpensiveTripCount, UseUpperBound, MaxOrZero,
Geoff Berry66d9bdb2017-06-28 15:53:17 +00001037 TripMultiple, UP.PeelCount, LI, &SE, &DT, &AC, &ORE,
Michael Kupersteinb151a642016-11-30 21:13:57 +00001038 PreserveLCSSA))
Dan Gohman3dc2d922008-05-14 00:24:14 +00001039 return false;
Dan Gohman2980d9d2007-05-11 20:53:41 +00001040
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001041 // If loop has an unroll count pragma or unrolled by explicitly set count
1042 // mark loop as unrolled to prevent unrolling beyond that requested.
Michael Kupersteinb151a642016-11-30 21:13:57 +00001043 // If the loop was peeled, we already "used up" the profile information
1044 // we had, so we don't want to unroll or peel again.
1045 if (IsCountSetExplicitly || UP.PeelCount)
David L Kreitzer8d441eb2016-03-25 14:24:52 +00001046 SetLoopAlreadyUnrolled(L);
Michael Kupersteinb151a642016-11-30 21:13:57 +00001047
Chris Lattner946b2552004-04-18 05:20:17 +00001048 return true;
1049}
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001050
1051namespace {
1052class LoopUnroll : public LoopPass {
1053public:
1054 static char ID; // Pass ID, replacement for typeid
Dehao Chen7d230322017-02-18 03:46:51 +00001055 LoopUnroll(int OptLevel = 2, Optional<unsigned> Threshold = None,
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001056 Optional<unsigned> Count = None,
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001057 Optional<bool> AllowPartial = None, Optional<bool> Runtime = None,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001058 Optional<bool> UpperBound = None,
1059 Optional<bool> AllowPeeling = None)
Dehao Chen7d230322017-02-18 03:46:51 +00001060 : LoopPass(ID), OptLevel(OptLevel), ProvidedCount(std::move(Count)),
Benjamin Kramer82de7d32016-05-27 14:27:24 +00001061 ProvidedThreshold(Threshold), ProvidedAllowPartial(AllowPartial),
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001062 ProvidedRuntime(Runtime), ProvidedUpperBound(UpperBound),
1063 ProvidedAllowPeeling(AllowPeeling) {
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001064 initializeLoopUnrollPass(*PassRegistry::getPassRegistry());
1065 }
1066
Dehao Chen7d230322017-02-18 03:46:51 +00001067 int OptLevel;
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001068 Optional<unsigned> ProvidedCount;
1069 Optional<unsigned> ProvidedThreshold;
1070 Optional<bool> ProvidedAllowPartial;
1071 Optional<bool> ProvidedRuntime;
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001072 Optional<bool> ProvidedUpperBound;
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001073 Optional<bool> ProvidedAllowPeeling;
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001074
1075 bool runOnLoop(Loop *L, LPPassManager &) override {
Andrew Kayloraa641a52016-04-22 22:06:11 +00001076 if (skipLoop(L))
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001077 return false;
1078
1079 Function &F = *L->getHeader()->getParent();
1080
1081 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
1082 LoopInfo *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Geoff Berry66d9bdb2017-06-28 15:53:17 +00001083 ScalarEvolution &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE();
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001084 const TargetTransformInfo &TTI =
1085 getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001086 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
Adam Nemet4f155b62016-08-26 15:58:34 +00001087 // For the old PM, we can't use OptimizationRemarkEmitter as an analysis
1088 // pass. Function analyses need to be preserved across loop transformations
1089 // but ORE cannot be preserved (see comment before the pass definition).
1090 OptimizationRemarkEmitter ORE(&F);
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001091 bool PreserveLCSSA = mustPreserveAnalysisID(LCSSAID);
1092
Dehao Chen7d230322017-02-18 03:46:51 +00001093 return tryToUnrollLoop(L, DT, LI, SE, TTI, AC, ORE, PreserveLCSSA, OptLevel,
Adam Nemet12937c32016-07-29 19:29:47 +00001094 ProvidedCount, ProvidedThreshold,
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001095 ProvidedAllowPartial, ProvidedRuntime,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001096 ProvidedUpperBound, ProvidedAllowPeeling);
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001097 }
1098
1099 /// This transformation requires natural loop information & requires that
1100 /// loop preheaders be inserted into the CFG...
1101 ///
1102 void getAnalysisUsage(AnalysisUsage &AU) const override {
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001103 AU.addRequired<AssumptionCacheTracker>();
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001104 AU.addRequired<TargetTransformInfoWrapperPass>();
Chandler Carruth31088a92016-02-19 10:45:18 +00001105 // FIXME: Loop passes are required to preserve domtree, and for now we just
1106 // recreate dom info if anything gets unrolled.
1107 getLoopAnalysisUsage(AU);
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001108 }
1109};
1110}
1111
1112char LoopUnroll::ID = 0;
1113INITIALIZE_PASS_BEGIN(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001114INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruth31088a92016-02-19 10:45:18 +00001115INITIALIZE_PASS_DEPENDENCY(LoopPass)
1116INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001117INITIALIZE_PASS_END(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
1118
Dehao Chen7d230322017-02-18 03:46:51 +00001119Pass *llvm::createLoopUnrollPass(int OptLevel, int Threshold, int Count,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001120 int AllowPartial, int Runtime, int UpperBound,
1121 int AllowPeeling) {
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001122 // TODO: It would make more sense for this function to take the optionals
1123 // directly, but that's dangerous since it would silently break out of tree
1124 // callers.
Dehao Chen7d230322017-02-18 03:46:51 +00001125 return new LoopUnroll(
1126 OptLevel, Threshold == -1 ? None : Optional<unsigned>(Threshold),
1127 Count == -1 ? None : Optional<unsigned>(Count),
1128 AllowPartial == -1 ? None : Optional<bool>(AllowPartial),
1129 Runtime == -1 ? None : Optional<bool>(Runtime),
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001130 UpperBound == -1 ? None : Optional<bool>(UpperBound),
1131 AllowPeeling == -1 ? None : Optional<bool>(AllowPeeling));
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001132}
1133
Dehao Chen7d230322017-02-18 03:46:51 +00001134Pass *llvm::createSimpleLoopUnrollPass(int OptLevel) {
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001135 return llvm::createLoopUnrollPass(OptLevel, -1, -1, 0, 0, 0, 0);
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001136}
Sean Silvae3c18a52016-07-19 23:54:23 +00001137
Teresa Johnsonecd90132017-08-02 20:35:29 +00001138PreservedAnalyses LoopFullUnrollPass::run(Loop &L, LoopAnalysisManager &AM,
1139 LoopStandardAnalysisResults &AR,
1140 LPMUpdater &Updater) {
Sean Silvae3c18a52016-07-19 23:54:23 +00001141 const auto &FAM =
Chandler Carruth410eaeb2017-01-11 06:23:21 +00001142 AM.getResult<FunctionAnalysisManagerLoopProxy>(L, AR).getManager();
Sean Silvae3c18a52016-07-19 23:54:23 +00001143 Function *F = L.getHeader()->getParent();
1144
Adam Nemet12937c32016-07-29 19:29:47 +00001145 auto *ORE = FAM.getCachedResult<OptimizationRemarkEmitterAnalysis>(*F);
Chandler Carruth410eaeb2017-01-11 06:23:21 +00001146 // FIXME: This should probably be optional rather than required.
Adam Nemet12937c32016-07-29 19:29:47 +00001147 if (!ORE)
Teresa Johnsonecd90132017-08-02 20:35:29 +00001148 report_fatal_error(
1149 "LoopFullUnrollPass: OptimizationRemarkEmitterAnalysis not "
1150 "cached at a higher level");
Sean Silvae3c18a52016-07-19 23:54:23 +00001151
Chandler Carruthce40fa12017-01-25 02:49:01 +00001152 // Keep track of the previous loop structure so we can identify new loops
1153 // created by unrolling.
1154 Loop *ParentL = L.getParentLoop();
1155 SmallPtrSet<Loop *, 4> OldLoops;
1156 if (ParentL)
1157 OldLoops.insert(ParentL->begin(), ParentL->end());
1158 else
1159 OldLoops.insert(AR.LI.begin(), AR.LI.end());
1160
Teresa Johnsonecd90132017-08-02 20:35:29 +00001161 bool Changed =
1162 tryToUnrollLoop(&L, AR.DT, &AR.LI, AR.SE, AR.TTI, AR.AC, *ORE,
1163 /*PreserveLCSSA*/ true, OptLevel, /*Count*/ None,
1164 /*Threshold*/ None, /*AllowPartial*/ false,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001165 /*Runtime*/ false, /*UpperBound*/ false,
1166 /*AllowPeeling*/ false);
Sean Silvae3c18a52016-07-19 23:54:23 +00001167 if (!Changed)
1168 return PreservedAnalyses::all();
Chandler Carruthca68a3e2017-01-15 06:32:49 +00001169
Chandler Carruthce40fa12017-01-25 02:49:01 +00001170 // The parent must not be damaged by unrolling!
1171#ifndef NDEBUG
1172 if (ParentL)
1173 ParentL->verifyLoop();
1174#endif
1175
1176 // Unrolling can do several things to introduce new loops into a loop nest:
Chandler Carruthce40fa12017-01-25 02:49:01 +00001177 // - Full unrolling clones child loops within the current loop but then
1178 // removes the current loop making all of the children appear to be new
1179 // sibling loops.
Chandler Carruthce40fa12017-01-25 02:49:01 +00001180 //
Teresa Johnsonecd90132017-08-02 20:35:29 +00001181 // When a new loop appears as a sibling loop after fully unrolling,
1182 // its nesting structure has fundamentally changed and we want to revisit
1183 // it to reflect that.
Chandler Carruthce40fa12017-01-25 02:49:01 +00001184 //
1185 // When unrolling has removed the current loop, we need to tell the
1186 // infrastructure that it is gone.
1187 //
1188 // Finally, we support a debugging/testing mode where we revisit child loops
1189 // as well. These are not expected to require further optimizations as either
1190 // they or the loop they were cloned from have been directly visited already.
1191 // But the debugging mode allows us to check this assumption.
1192 bool IsCurrentLoopValid = false;
1193 SmallVector<Loop *, 4> SibLoops;
1194 if (ParentL)
1195 SibLoops.append(ParentL->begin(), ParentL->end());
1196 else
1197 SibLoops.append(AR.LI.begin(), AR.LI.end());
1198 erase_if(SibLoops, [&](Loop *SibLoop) {
1199 if (SibLoop == &L) {
1200 IsCurrentLoopValid = true;
1201 return true;
1202 }
1203
1204 // Otherwise erase the loop from the list if it was in the old loops.
1205 return OldLoops.count(SibLoop) != 0;
1206 });
1207 Updater.addSiblingLoops(SibLoops);
1208
1209 if (!IsCurrentLoopValid) {
1210 Updater.markLoopAsDeleted(L);
1211 } else {
1212 // We can only walk child loops if the current loop remained valid.
1213 if (UnrollRevisitChildLoops) {
Teresa Johnsonecd90132017-08-02 20:35:29 +00001214 // Walk *all* of the child loops.
Chandler Carruthce40fa12017-01-25 02:49:01 +00001215 SmallVector<Loop *, 4> ChildLoops(L.begin(), L.end());
1216 Updater.addChildLoops(ChildLoops);
1217 }
1218 }
1219
Sean Silvae3c18a52016-07-19 23:54:23 +00001220 return getLoopPassPreservedAnalyses();
1221}
Teresa Johnsonecd90132017-08-02 20:35:29 +00001222
1223template <typename RangeT>
1224static SmallVector<Loop *, 8> appendLoopsToWorklist(RangeT &&Loops) {
1225 SmallVector<Loop *, 8> Worklist;
1226 // We use an internal worklist to build up the preorder traversal without
1227 // recursion.
1228 SmallVector<Loop *, 4> PreOrderLoops, PreOrderWorklist;
1229
1230 for (Loop *RootL : Loops) {
1231 assert(PreOrderLoops.empty() && "Must start with an empty preorder walk.");
1232 assert(PreOrderWorklist.empty() &&
1233 "Must start with an empty preorder walk worklist.");
1234 PreOrderWorklist.push_back(RootL);
1235 do {
1236 Loop *L = PreOrderWorklist.pop_back_val();
1237 PreOrderWorklist.append(L->begin(), L->end());
1238 PreOrderLoops.push_back(L);
1239 } while (!PreOrderWorklist.empty());
1240
1241 Worklist.append(PreOrderLoops.begin(), PreOrderLoops.end());
1242 PreOrderLoops.clear();
1243 }
1244 return Worklist;
1245}
1246
1247PreservedAnalyses LoopUnrollPass::run(Function &F,
1248 FunctionAnalysisManager &AM) {
1249 auto &SE = AM.getResult<ScalarEvolutionAnalysis>(F);
1250 auto &LI = AM.getResult<LoopAnalysis>(F);
1251 auto &TTI = AM.getResult<TargetIRAnalysis>(F);
1252 auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
1253 auto &AC = AM.getResult<AssumptionAnalysis>(F);
1254 auto &ORE = AM.getResult<OptimizationRemarkEmitterAnalysis>(F);
1255
Chandler Carruth7c888dc2017-08-08 02:24:20 +00001256 LoopAnalysisManager *LAM = nullptr;
1257 if (auto *LAMProxy = AM.getCachedResult<LoopAnalysisManagerFunctionProxy>(F))
1258 LAM = &LAMProxy->getManager();
1259
Teresa Johnson8482e562017-08-03 23:42:58 +00001260 const ModuleAnalysisManager &MAM =
1261 AM.getResult<ModuleAnalysisManagerFunctionProxy>(F).getManager();
1262 ProfileSummaryInfo *PSI =
1263 MAM.getCachedResult<ProfileSummaryAnalysis>(*F.getParent());
1264
Teresa Johnsonecd90132017-08-02 20:35:29 +00001265 bool Changed = false;
1266
1267 // The unroller requires loops to be in simplified form, and also needs LCSSA.
1268 // Since simplification may add new inner loops, it has to run before the
1269 // legality and profitability checks. This means running the loop unroller
1270 // will simplify all loops, regardless of whether anything end up being
1271 // unrolled.
1272 for (auto &L : LI) {
1273 Changed |= simplifyLoop(L, &DT, &LI, &SE, &AC, false /* PreserveLCSSA */);
1274 Changed |= formLCSSARecursively(*L, DT, &LI, &SE);
1275 }
1276
1277 SmallVector<Loop *, 8> Worklist = appendLoopsToWorklist(LI);
1278
1279 while (!Worklist.empty()) {
1280 // Because the LoopInfo stores the loops in RPO, we walk the worklist
1281 // from back to front so that we work forward across the CFG, which
1282 // for unrolling is only needed to get optimization remarks emitted in
1283 // a forward order.
1284 Loop &L = *Worklist.pop_back_val();
Teresa Johnsonecd90132017-08-02 20:35:29 +00001285 Loop *ParentL = L.getParentLoop();
Teresa Johnsonecd90132017-08-02 20:35:29 +00001286
1287 // The API here is quite complex to call, but there are only two interesting
1288 // states we support: partial and full (or "simple") unrolling. However, to
1289 // enable these things we actually pass "None" in for the optional to avoid
1290 // providing an explicit choice.
Teresa Johnson8482e562017-08-03 23:42:58 +00001291 Optional<bool> AllowPartialParam, RuntimeParam, UpperBoundParam,
1292 AllowPeeling;
1293 // Check if the profile summary indicates that the profiled application
1294 // has a huge working set size, in which case we disable peeling to avoid
1295 // bloating it further.
1296 if (PSI && PSI->hasHugeWorkingSetSize())
1297 AllowPeeling = false;
1298 bool CurChanged =
1299 tryToUnrollLoop(&L, DT, &LI, SE, TTI, AC, ORE,
1300 /*PreserveLCSSA*/ true, OptLevel, /*Count*/ None,
1301 /*Threshold*/ None, AllowPartialParam, RuntimeParam,
1302 UpperBoundParam, AllowPeeling);
Teresa Johnsonecd90132017-08-02 20:35:29 +00001303 Changed |= CurChanged;
1304
1305 // The parent must not be damaged by unrolling!
1306#ifndef NDEBUG
1307 if (CurChanged && ParentL)
1308 ParentL->verifyLoop();
1309#endif
Chandler Carruth7c888dc2017-08-08 02:24:20 +00001310
1311 // Walk the parent or top-level loops after unrolling to check whether we
1312 // actually removed a loop, and if so clear any cached analysis results for
1313 // it. We have to do this immediately as the next unrolling could allocate
1314 // a new loop object that ends up with the same address as the deleted loop
1315 // object causing cache collisions.
1316 if (LAM) {
1317 bool IsCurLoopValid =
1318 ParentL
1319 ? llvm::any_of(*ParentL, [&](Loop *SibL) { return SibL == &L; })
1320 : llvm::any_of(LI, [&](Loop *SibL) { return SibL == &L; });
1321 if (!IsCurLoopValid)
1322 LAM->clear(L);
1323 }
Teresa Johnsonecd90132017-08-02 20:35:29 +00001324 }
1325
1326 if (!Changed)
1327 return PreservedAnalyses::all();
1328
1329 return getLoopPassPreservedAnalyses();
1330}