blob: d28cbb61803bf5ce1346318e13587311e3fc2fe5 [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"
Chandler Carruth66b31302015-01-04 12:03:27 +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"
Sean Silvae3c18a52016-07-19 23:54:23 +000022#include "llvm/Analysis/LoopPassManager.h"
Michael Zolotukhin1da4afd2016-02-08 23:03:59 +000023#include "llvm/Analysis/LoopUnrollAnalyzer.h"
Adam Nemet12937c32016-07-29 19:29:47 +000024#include "llvm/Analysis/OptimizationDiagnosticInfo.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 Carruthbb9caa92013-01-21 13:04:33 +000027#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/DataLayout.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000029#include "llvm/IR/Dominators.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000030#include "llvm/IR/InstVisitor.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000031#include "llvm/IR/IntrinsicInst.h"
Eli Benderskyff903242014-06-16 23:53:02 +000032#include "llvm/IR/Metadata.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000033#include "llvm/Support/CommandLine.h"
34#include "llvm/Support/Debug.h"
Daniel Dunbar0dd5e1e2009-07-25 00:23:56 +000035#include "llvm/Support/raw_ostream.h"
Dehao Chend55bc4c2016-05-05 00:54:54 +000036#include "llvm/Transforms/Scalar.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,
Chandler Carruth9dabd142015-06-05 17:01:43 +000048 cl::desc("The baseline cost threshold for loop unrolling"));
49
50static cl::opt<unsigned> UnrollPercentDynamicCostSavedThreshold(
Michael Zolotukhin8f7a2422016-05-24 23:00:05 +000051 "unroll-percent-dynamic-cost-saved-threshold", cl::init(50), cl::Hidden,
Chandler Carruth9dabd142015-06-05 17:01:43 +000052 cl::desc("The percentage of estimated dynamic cost which must be saved by "
53 "unrolling to allow unrolling up to the max threshold."));
54
55static cl::opt<unsigned> UnrollDynamicCostSavingsDiscount(
Michael Zolotukhin8f7a2422016-05-24 23:00:05 +000056 "unroll-dynamic-cost-savings-discount", cl::init(100), cl::Hidden,
Chandler Carruth9dabd142015-06-05 17:01:43 +000057 cl::desc("This is the amount discounted from the total unroll cost when "
58 "the unrolled form has a high dynamic cost savings (triggered by "
59 "the '-unroll-perecent-dynamic-cost-saved-threshold' flag)."));
Dan Gohmand78c4002008-05-13 00:00:25 +000060
Michael Zolotukhina9aadd22015-02-05 02:34:00 +000061static cl::opt<unsigned> UnrollMaxIterationsCountToAnalyze(
Michael Zolotukhin8f7a2422016-05-24 23:00:05 +000062 "unroll-max-iteration-count-to-analyze", cl::init(10), cl::Hidden,
Michael Zolotukhina9aadd22015-02-05 02:34:00 +000063 cl::desc("Don't allow loop unrolling to simulate more than this number of"
64 "iterations when checking full unroll profitability"));
65
Dehao Chend55bc4c2016-05-05 00:54:54 +000066static cl::opt<unsigned> UnrollCount(
67 "unroll-count", cl::Hidden,
68 cl::desc("Use this unroll count for all loops including those with "
69 "unroll_count pragma values, for testing purposes"));
Dan Gohmand78c4002008-05-13 00:00:25 +000070
Dehao Chend55bc4c2016-05-05 00:54:54 +000071static cl::opt<unsigned> UnrollMaxCount(
72 "unroll-max-count", cl::Hidden,
73 cl::desc("Set the max unroll count for partial and runtime unrolling, for"
74 "testing purposes"));
Fiona Glaser045afc42016-04-06 16:57:25 +000075
Dehao Chend55bc4c2016-05-05 00:54:54 +000076static cl::opt<unsigned> UnrollFullMaxCount(
77 "unroll-full-max-count", cl::Hidden,
78 cl::desc(
79 "Set the max unroll count for full unrolling, for testing purposes"));
Fiona Glaser045afc42016-04-06 16:57:25 +000080
Matthijs Kooijman98b5c162008-07-29 13:21:23 +000081static cl::opt<bool>
Dehao Chend55bc4c2016-05-05 00:54:54 +000082 UnrollAllowPartial("unroll-allow-partial", cl::Hidden,
83 cl::desc("Allows loops to be partially unrolled until "
84 "-unroll-threshold loop size is reached."));
Matthijs Kooijman98b5c162008-07-29 13:21:23 +000085
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +000086static cl::opt<bool> UnrollAllowRemainder(
87 "unroll-allow-remainder", cl::Hidden,
88 cl::desc("Allow generation of a loop remainder (extra iterations) "
89 "when unrolling a loop."));
90
Andrew Trickd04d15292011-12-09 06:19:40 +000091static cl::opt<bool>
Dehao Chend55bc4c2016-05-05 00:54:54 +000092 UnrollRuntime("unroll-runtime", cl::ZeroOrMore, cl::Hidden,
93 cl::desc("Unroll loops with run-time trip counts"));
Andrew Trickd04d15292011-12-09 06:19:40 +000094
Haicheng Wu1ef17e92016-10-12 21:29:38 +000095static cl::opt<unsigned> UnrollMaxUpperBound(
96 "unroll-max-upperbound", cl::init(8), cl::Hidden,
97 cl::desc(
98 "The max of trip count upper bound that is considered in unrolling"));
99
Dehao Chend55bc4c2016-05-05 00:54:54 +0000100static cl::opt<unsigned> PragmaUnrollThreshold(
101 "pragma-unroll-threshold", cl::init(16 * 1024), cl::Hidden,
102 cl::desc("Unrolled size limit for loops with an unroll(full) or "
103 "unroll_count pragma."));
Justin Bognera1dd4932016-01-12 00:55:26 +0000104
105/// A magic value for use with the Threshold parameter to indicate
106/// that the loop unroll should be performed regardless of how much
107/// code expansion would result.
108static const unsigned NoThreshold = UINT_MAX;
109
Justin Bognera1dd4932016-01-12 00:55:26 +0000110/// Gather the various unrolling parameters based on the defaults, compiler
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000111/// flags, TTI overrides and user specified parameters.
Justin Bognera1dd4932016-01-12 00:55:26 +0000112static TargetTransformInfo::UnrollingPreferences gatherUnrollingPreferences(
113 Loop *L, const TargetTransformInfo &TTI, Optional<unsigned> UserThreshold,
114 Optional<unsigned> UserCount, Optional<bool> UserAllowPartial,
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000115 Optional<bool> UserRuntime, Optional<bool> UserUpperBound) {
Justin Bognera1dd4932016-01-12 00:55:26 +0000116 TargetTransformInfo::UnrollingPreferences UP;
117
118 // Set up the defaults
119 UP.Threshold = 150;
Michael Zolotukhin58564982016-06-03 00:16:46 +0000120 UP.PercentDynamicCostSavedThreshold = 50;
121 UP.DynamicCostSavingsDiscount = 100;
Hans Wennborg719b26b2016-05-10 21:45:55 +0000122 UP.OptSizeThreshold = 0;
Justin Bognera1dd4932016-01-12 00:55:26 +0000123 UP.PartialThreshold = UP.Threshold;
Hans Wennborg719b26b2016-05-10 21:45:55 +0000124 UP.PartialOptSizeThreshold = 0;
Justin Bognera1dd4932016-01-12 00:55:26 +0000125 UP.Count = 0;
Jonas Paulsson58c5a7f2016-09-28 09:41:38 +0000126 UP.DefaultUnrollRuntimeCount = 8;
Justin Bognera1dd4932016-01-12 00:55:26 +0000127 UP.MaxCount = UINT_MAX;
Fiona Glaser045afc42016-04-06 16:57:25 +0000128 UP.FullUnrollMaxCount = UINT_MAX;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000129 UP.BEInsns = 2;
Justin Bognera1dd4932016-01-12 00:55:26 +0000130 UP.Partial = false;
131 UP.Runtime = false;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000132 UP.AllowRemainder = true;
Justin Bognera1dd4932016-01-12 00:55:26 +0000133 UP.AllowExpensiveTripCount = false;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000134 UP.Force = false;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000135 UP.UpperBound = false;
Justin Bognera1dd4932016-01-12 00:55:26 +0000136
137 // Override with any target specific settings
138 TTI.getUnrollingPreferences(L, UP);
139
140 // Apply size attributes
141 if (L->getHeader()->getParent()->optForSize()) {
142 UP.Threshold = UP.OptSizeThreshold;
143 UP.PartialThreshold = UP.PartialOptSizeThreshold;
144 }
145
Justin Bognera1dd4932016-01-12 00:55:26 +0000146 // Apply any user values specified by cl::opt
147 if (UnrollThreshold.getNumOccurrences() > 0) {
148 UP.Threshold = UnrollThreshold;
149 UP.PartialThreshold = UnrollThreshold;
150 }
151 if (UnrollPercentDynamicCostSavedThreshold.getNumOccurrences() > 0)
152 UP.PercentDynamicCostSavedThreshold =
153 UnrollPercentDynamicCostSavedThreshold;
154 if (UnrollDynamicCostSavingsDiscount.getNumOccurrences() > 0)
155 UP.DynamicCostSavingsDiscount = UnrollDynamicCostSavingsDiscount;
Fiona Glaser045afc42016-04-06 16:57:25 +0000156 if (UnrollMaxCount.getNumOccurrences() > 0)
157 UP.MaxCount = UnrollMaxCount;
158 if (UnrollFullMaxCount.getNumOccurrences() > 0)
159 UP.FullUnrollMaxCount = UnrollFullMaxCount;
Justin Bognera1dd4932016-01-12 00:55:26 +0000160 if (UnrollAllowPartial.getNumOccurrences() > 0)
161 UP.Partial = UnrollAllowPartial;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000162 if (UnrollAllowRemainder.getNumOccurrences() > 0)
163 UP.AllowRemainder = UnrollAllowRemainder;
Justin Bognera1dd4932016-01-12 00:55:26 +0000164 if (UnrollRuntime.getNumOccurrences() > 0)
165 UP.Runtime = UnrollRuntime;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000166 if (UnrollMaxUpperBound == 0)
167 UP.UpperBound = false;
Justin Bognera1dd4932016-01-12 00:55:26 +0000168
169 // Apply user values provided by argument
170 if (UserThreshold.hasValue()) {
171 UP.Threshold = *UserThreshold;
172 UP.PartialThreshold = *UserThreshold;
173 }
174 if (UserCount.hasValue())
175 UP.Count = *UserCount;
176 if (UserAllowPartial.hasValue())
177 UP.Partial = *UserAllowPartial;
178 if (UserRuntime.hasValue())
179 UP.Runtime = *UserRuntime;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000180 if (UserUpperBound.hasValue())
181 UP.UpperBound = *UserUpperBound;
Justin Bognera1dd4932016-01-12 00:55:26 +0000182
Justin Bognera1dd4932016-01-12 00:55:26 +0000183 return UP;
184}
185
Chris Lattner79a42ac2006-12-19 21:40:18 +0000186namespace {
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000187/// A struct to densely store the state of an instruction after unrolling at
188/// each iteration.
189///
190/// This is designed to work like a tuple of <Instruction *, int> for the
191/// purposes of hashing and lookup, but to be able to associate two boolean
192/// states with each key.
193struct UnrolledInstState {
194 Instruction *I;
195 int Iteration : 30;
196 unsigned IsFree : 1;
197 unsigned IsCounted : 1;
198};
199
200/// Hashing and equality testing for a set of the instruction states.
201struct UnrolledInstStateKeyInfo {
202 typedef DenseMapInfo<Instruction *> PtrInfo;
203 typedef DenseMapInfo<std::pair<Instruction *, int>> PairInfo;
204 static inline UnrolledInstState getEmptyKey() {
205 return {PtrInfo::getEmptyKey(), 0, 0, 0};
206 }
207 static inline UnrolledInstState getTombstoneKey() {
208 return {PtrInfo::getTombstoneKey(), 0, 0, 0};
209 }
210 static inline unsigned getHashValue(const UnrolledInstState &S) {
211 return PairInfo::getHashValue({S.I, S.Iteration});
212 }
213 static inline bool isEqual(const UnrolledInstState &LHS,
214 const UnrolledInstState &RHS) {
215 return PairInfo::isEqual({LHS.I, LHS.Iteration}, {RHS.I, RHS.Iteration});
216 }
217};
218}
219
220namespace {
Chandler Carruth02156082015-05-22 17:41:35 +0000221struct EstimatedUnrollCost {
Chandler Carruth9dabd142015-06-05 17:01:43 +0000222 /// \brief The estimated cost after unrolling.
Chandler Carruthb2fda0d2015-08-05 18:46:21 +0000223 int UnrolledCost;
Chandler Carruth302a1332015-02-13 02:10:56 +0000224
Chandler Carruth9dabd142015-06-05 17:01:43 +0000225 /// \brief The estimated dynamic cost of executing the instructions in the
226 /// rolled form.
Chandler Carruthb2fda0d2015-08-05 18:46:21 +0000227 int RolledDynamicCost;
Chandler Carruth02156082015-05-22 17:41:35 +0000228};
229}
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000230
Chandler Carruth02156082015-05-22 17:41:35 +0000231/// \brief Figure out if the loop is worth full unrolling.
232///
233/// Complete loop unrolling can make some loads constant, and we need to know
234/// if that would expose any further optimization opportunities. This routine
Michael Zolotukhinc4e4f332015-06-11 22:17:39 +0000235/// estimates this optimization. It computes cost of unrolled loop
236/// (UnrolledCost) and dynamic cost of the original loop (RolledDynamicCost). By
237/// dynamic cost we mean that we won't count costs of blocks that are known not
238/// to be executed (i.e. if we have a branch in the loop and we know that at the
239/// given iteration its condition would be resolved to true, we won't add up the
240/// cost of the 'false'-block).
241/// \returns Optional value, holding the RolledDynamicCost and UnrolledCost. If
242/// the analysis failed (no benefits expected from the unrolling, or the loop is
243/// too big to analyze), the returned value is None.
Benjamin Kramerfcdb1c12015-08-20 09:57:22 +0000244static Optional<EstimatedUnrollCost>
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000245analyzeLoopUnrollCost(const Loop *L, unsigned TripCount, DominatorTree &DT,
246 ScalarEvolution &SE, const TargetTransformInfo &TTI,
Chandler Carruthb2fda0d2015-08-05 18:46:21 +0000247 int MaxUnrolledLoopSize) {
Chandler Carruth02156082015-05-22 17:41:35 +0000248 // We want to be able to scale offsets by the trip count and add more offsets
249 // to them without checking for overflows, and we already don't want to
250 // analyze *massive* trip counts, so we force the max to be reasonably small.
251 assert(UnrollMaxIterationsCountToAnalyze < (INT_MAX / 2) &&
252 "The unroll iterations max is too large!");
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000253
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000254 // Only analyze inner loops. We can't properly estimate cost of nested loops
255 // and we won't visit inner loops again anyway.
256 if (!L->empty())
257 return None;
258
Chandler Carruth02156082015-05-22 17:41:35 +0000259 // Don't simulate loops with a big or unknown tripcount
260 if (!UnrollMaxIterationsCountToAnalyze || !TripCount ||
261 TripCount > UnrollMaxIterationsCountToAnalyze)
262 return None;
Chandler Carrutha6ae8772015-05-12 23:32:56 +0000263
Chandler Carruth02156082015-05-22 17:41:35 +0000264 SmallSetVector<BasicBlock *, 16> BBWorklist;
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000265 SmallSetVector<std::pair<BasicBlock *, BasicBlock *>, 4> ExitWorklist;
Chandler Carruth02156082015-05-22 17:41:35 +0000266 DenseMap<Value *, Constant *> SimplifiedValues;
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000267 SmallVector<std::pair<Value *, Constant *>, 4> SimplifiedInputValues;
Chandler Carruth3b057b32015-02-13 03:57:40 +0000268
Chandler Carruth9dabd142015-06-05 17:01:43 +0000269 // The estimated cost of the unrolled form of the loop. We try to estimate
270 // this by simplifying as much as we can while computing the estimate.
Chandler Carruthb2fda0d2015-08-05 18:46:21 +0000271 int UnrolledCost = 0;
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000272
Chandler Carruth9dabd142015-06-05 17:01:43 +0000273 // We also track the estimated dynamic (that is, actually executed) cost in
274 // the rolled form. This helps identify cases when the savings from unrolling
275 // aren't just exposing dead control flows, but actual reduced dynamic
276 // instructions due to the simplifications which we expect to occur after
277 // unrolling.
Chandler Carruthb2fda0d2015-08-05 18:46:21 +0000278 int RolledDynamicCost = 0;
Chandler Carruth8c863752015-02-13 03:48:38 +0000279
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000280 // We track the simplification of each instruction in each iteration. We use
281 // this to recursively merge costs into the unrolled cost on-demand so that
282 // we don't count the cost of any dead code. This is essentially a map from
283 // <instruction, int> to <bool, bool>, but stored as a densely packed struct.
284 DenseSet<UnrolledInstState, UnrolledInstStateKeyInfo> InstCostMap;
285
286 // A small worklist used to accumulate cost of instructions from each
287 // observable and reached root in the loop.
288 SmallVector<Instruction *, 16> CostWorklist;
289
290 // PHI-used worklist used between iterations while accumulating cost.
291 SmallVector<Instruction *, 4> PHIUsedList;
292
293 // Helper function to accumulate cost for instructions in the loop.
294 auto AddCostRecursively = [&](Instruction &RootI, int Iteration) {
295 assert(Iteration >= 0 && "Cannot have a negative iteration!");
296 assert(CostWorklist.empty() && "Must start with an empty cost list");
297 assert(PHIUsedList.empty() && "Must start with an empty phi used list");
298 CostWorklist.push_back(&RootI);
299 for (;; --Iteration) {
300 do {
301 Instruction *I = CostWorklist.pop_back_val();
302
303 // InstCostMap only uses I and Iteration as a key, the other two values
304 // don't matter here.
305 auto CostIter = InstCostMap.find({I, Iteration, 0, 0});
306 if (CostIter == InstCostMap.end())
307 // If an input to a PHI node comes from a dead path through the loop
308 // we may have no cost data for it here. What that actually means is
309 // that it is free.
310 continue;
311 auto &Cost = *CostIter;
312 if (Cost.IsCounted)
313 // Already counted this instruction.
314 continue;
315
316 // Mark that we are counting the cost of this instruction now.
317 Cost.IsCounted = true;
318
319 // If this is a PHI node in the loop header, just add it to the PHI set.
320 if (auto *PhiI = dyn_cast<PHINode>(I))
321 if (PhiI->getParent() == L->getHeader()) {
322 assert(Cost.IsFree && "Loop PHIs shouldn't be evaluated as they "
323 "inherently simplify during unrolling.");
324 if (Iteration == 0)
325 continue;
326
327 // Push the incoming value from the backedge into the PHI used list
328 // if it is an in-loop instruction. We'll use this to populate the
329 // cost worklist for the next iteration (as we count backwards).
330 if (auto *OpI = dyn_cast<Instruction>(
331 PhiI->getIncomingValueForBlock(L->getLoopLatch())))
332 if (L->contains(OpI))
333 PHIUsedList.push_back(OpI);
334 continue;
335 }
336
337 // First accumulate the cost of this instruction.
338 if (!Cost.IsFree) {
339 UnrolledCost += TTI.getUserCost(I);
340 DEBUG(dbgs() << "Adding cost of instruction (iteration " << Iteration
341 << "): ");
342 DEBUG(I->dump());
343 }
344
345 // We must count the cost of every operand which is not free,
346 // recursively. If we reach a loop PHI node, simply add it to the set
347 // to be considered on the next iteration (backwards!).
348 for (Value *Op : I->operands()) {
349 // Check whether this operand is free due to being a constant or
350 // outside the loop.
351 auto *OpI = dyn_cast<Instruction>(Op);
352 if (!OpI || !L->contains(OpI))
353 continue;
354
355 // Otherwise accumulate its cost.
356 CostWorklist.push_back(OpI);
357 }
358 } while (!CostWorklist.empty());
359
360 if (PHIUsedList.empty())
361 // We've exhausted the search.
362 break;
363
364 assert(Iteration > 0 &&
365 "Cannot track PHI-used values past the first iteration!");
366 CostWorklist.append(PHIUsedList.begin(), PHIUsedList.end());
367 PHIUsedList.clear();
368 }
369 };
370
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000371 // Ensure that we don't violate the loop structure invariants relied on by
372 // this analysis.
373 assert(L->isLoopSimplifyForm() && "Must put loop into normal form first.");
374 assert(L->isLCSSAForm(DT) &&
375 "Must have loops in LCSSA form to track live-out values.");
376
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000377 DEBUG(dbgs() << "Starting LoopUnroll profitability analysis...\n");
378
Chandler Carruth02156082015-05-22 17:41:35 +0000379 // Simulate execution of each iteration of the loop counting instructions,
380 // which would be simplified.
381 // Since the same load will take different values on different iterations,
382 // we literally have to go through all loop's iterations.
383 for (unsigned Iteration = 0; Iteration < TripCount; ++Iteration) {
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000384 DEBUG(dbgs() << " Analyzing iteration " << Iteration << "\n");
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000385
386 // Prepare for the iteration by collecting any simplified entry or backedge
387 // inputs.
388 for (Instruction &I : *L->getHeader()) {
389 auto *PHI = dyn_cast<PHINode>(&I);
390 if (!PHI)
391 break;
392
393 // The loop header PHI nodes must have exactly two input: one from the
394 // loop preheader and one from the loop latch.
395 assert(
396 PHI->getNumIncomingValues() == 2 &&
397 "Must have an incoming value only for the preheader and the latch.");
398
399 Value *V = PHI->getIncomingValueForBlock(
400 Iteration == 0 ? L->getLoopPreheader() : L->getLoopLatch());
401 Constant *C = dyn_cast<Constant>(V);
402 if (Iteration != 0 && !C)
403 C = SimplifiedValues.lookup(V);
404 if (C)
405 SimplifiedInputValues.push_back({PHI, C});
406 }
407
408 // Now clear and re-populate the map for the next iteration.
Chandler Carruth02156082015-05-22 17:41:35 +0000409 SimplifiedValues.clear();
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000410 while (!SimplifiedInputValues.empty())
411 SimplifiedValues.insert(SimplifiedInputValues.pop_back_val());
412
Michael Zolotukhin9f520eb2016-02-26 02:57:05 +0000413 UnrolledInstAnalyzer Analyzer(Iteration, SimplifiedValues, SE, L);
Chandler Carruthf174a152015-05-22 02:47:29 +0000414
Chandler Carruth02156082015-05-22 17:41:35 +0000415 BBWorklist.clear();
416 BBWorklist.insert(L->getHeader());
417 // Note that we *must not* cache the size, this loop grows the worklist.
418 for (unsigned Idx = 0; Idx != BBWorklist.size(); ++Idx) {
419 BasicBlock *BB = BBWorklist[Idx];
Chandler Carruthf174a152015-05-22 02:47:29 +0000420
Chandler Carruth02156082015-05-22 17:41:35 +0000421 // Visit all instructions in the given basic block and try to simplify
422 // it. We don't change the actual IR, just count optimization
423 // opportunities.
424 for (Instruction &I : *BB) {
Dehao Chen977853b2016-09-30 18:30:04 +0000425 if (isa<DbgInfoIntrinsic>(I))
426 continue;
427
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000428 // Track this instruction's expected baseline cost when executing the
429 // rolled loop form.
430 RolledDynamicCost += TTI.getUserCost(&I);
Chandler Carruth17a04962015-02-13 03:49:41 +0000431
Chandler Carruth02156082015-05-22 17:41:35 +0000432 // Visit the instruction to analyze its loop cost after unrolling,
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000433 // and if the visitor returns true, mark the instruction as free after
434 // unrolling and continue.
435 bool IsFree = Analyzer.visit(I);
436 bool Inserted = InstCostMap.insert({&I, (int)Iteration,
437 (unsigned)IsFree,
438 /*IsCounted*/ false}).second;
439 (void)Inserted;
440 assert(Inserted && "Cannot have a state for an unvisited instruction!");
Chandler Carruth9dabd142015-06-05 17:01:43 +0000441
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000442 if (IsFree)
443 continue;
444
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000445 // Can't properly model a cost of a call.
446 // FIXME: With a proper cost model we should be able to do it.
447 if(isa<CallInst>(&I))
448 return None;
Chandler Carruth02156082015-05-22 17:41:35 +0000449
Haicheng Wue7877632016-08-17 22:42:58 +0000450 // If the instruction might have a side-effect recursively account for
451 // the cost of it and all the instructions leading up to it.
452 if (I.mayHaveSideEffects())
453 AddCostRecursively(I, Iteration);
454
Chandler Carruth02156082015-05-22 17:41:35 +0000455 // If unrolled body turns out to be too big, bail out.
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000456 if (UnrolledCost > MaxUnrolledLoopSize) {
457 DEBUG(dbgs() << " Exceeded threshold.. exiting.\n"
458 << " UnrolledCost: " << UnrolledCost
459 << ", MaxUnrolledLoopSize: " << MaxUnrolledLoopSize
460 << "\n");
Chandler Carruth02156082015-05-22 17:41:35 +0000461 return None;
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000462 }
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000463 }
Chandler Carruth415f4122015-02-13 02:17:39 +0000464
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000465 TerminatorInst *TI = BB->getTerminator();
466
467 // Add in the live successors by first checking whether we have terminator
468 // that may be simplified based on the values simplified by this call.
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000469 BasicBlock *KnownSucc = nullptr;
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000470 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
471 if (BI->isConditional()) {
472 if (Constant *SimpleCond =
473 SimplifiedValues.lookup(BI->getCondition())) {
Michael Zolotukhin3a7d55b2015-07-29 18:10:29 +0000474 // Just take the first successor if condition is undef
475 if (isa<UndefValue>(SimpleCond))
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000476 KnownSucc = BI->getSuccessor(0);
477 else if (ConstantInt *SimpleCondVal =
478 dyn_cast<ConstantInt>(SimpleCond))
479 KnownSucc = BI->getSuccessor(SimpleCondVal->isZero() ? 1 : 0);
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000480 }
481 }
482 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
483 if (Constant *SimpleCond =
484 SimplifiedValues.lookup(SI->getCondition())) {
Michael Zolotukhin3a7d55b2015-07-29 18:10:29 +0000485 // Just take the first successor if condition is undef
486 if (isa<UndefValue>(SimpleCond))
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000487 KnownSucc = SI->getSuccessor(0);
488 else if (ConstantInt *SimpleCondVal =
489 dyn_cast<ConstantInt>(SimpleCond))
490 KnownSucc = SI->findCaseValue(SimpleCondVal).getCaseSuccessor();
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000491 }
492 }
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000493 if (KnownSucc) {
494 if (L->contains(KnownSucc))
495 BBWorklist.insert(KnownSucc);
496 else
497 ExitWorklist.insert({BB, KnownSucc});
498 continue;
499 }
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000500
Chandler Carruth02156082015-05-22 17:41:35 +0000501 // Add BB's successors to the worklist.
502 for (BasicBlock *Succ : successors(BB))
503 if (L->contains(Succ))
504 BBWorklist.insert(Succ);
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000505 else
506 ExitWorklist.insert({BB, Succ});
Michael Zolotukhind2268a72016-05-18 21:20:12 +0000507 AddCostRecursively(*TI, Iteration);
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000508 }
Chandler Carruth02156082015-05-22 17:41:35 +0000509
510 // If we found no optimization opportunities on the first iteration, we
511 // won't find them on later ones too.
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000512 if (UnrolledCost == RolledDynamicCost) {
513 DEBUG(dbgs() << " No opportunities found.. exiting.\n"
514 << " UnrolledCost: " << UnrolledCost << "\n");
Chandler Carruth02156082015-05-22 17:41:35 +0000515 return None;
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000516 }
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000517 }
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000518
519 while (!ExitWorklist.empty()) {
520 BasicBlock *ExitingBB, *ExitBB;
521 std::tie(ExitingBB, ExitBB) = ExitWorklist.pop_back_val();
522
523 for (Instruction &I : *ExitBB) {
524 auto *PN = dyn_cast<PHINode>(&I);
525 if (!PN)
526 break;
527
528 Value *Op = PN->getIncomingValueForBlock(ExitingBB);
529 if (auto *OpI = dyn_cast<Instruction>(Op))
530 if (L->contains(OpI))
531 AddCostRecursively(*OpI, TripCount - 1);
532 }
533 }
534
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000535 DEBUG(dbgs() << "Analysis finished:\n"
536 << "UnrolledCost: " << UnrolledCost << ", "
537 << "RolledDynamicCost: " << RolledDynamicCost << "\n");
Chandler Carruth9dabd142015-06-05 17:01:43 +0000538 return {{UnrolledCost, RolledDynamicCost}};
Chandler Carruth02156082015-05-22 17:41:35 +0000539}
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000540
Dan Gohman49d08a52007-05-08 15:14:19 +0000541/// ApproximateLoopSize - Approximate the size of the loop.
Andrew Trickf7656012011-10-01 01:39:05 +0000542static unsigned ApproximateLoopSize(const Loop *L, unsigned &NumCalls,
Justin Lebar6827de12016-03-14 23:15:34 +0000543 bool &NotDuplicatable, bool &Convergent,
Hal Finkel57f03dd2014-09-07 13:49:57 +0000544 const TargetTransformInfo &TTI,
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000545 AssumptionCache *AC, unsigned BEInsns) {
Hal Finkel57f03dd2014-09-07 13:49:57 +0000546 SmallPtrSet<const Value *, 32> EphValues;
Chandler Carruth66b31302015-01-04 12:03:27 +0000547 CodeMetrics::collectEphemeralValues(L, AC, EphValues);
Hal Finkel57f03dd2014-09-07 13:49:57 +0000548
Dan Gohman969e83a2009-10-31 14:54:17 +0000549 CodeMetrics Metrics;
Sanjay Patel5c967232016-03-08 19:06:12 +0000550 for (BasicBlock *BB : L->blocks())
551 Metrics.analyzeBasicBlock(BB, TTI, EphValues);
Owen Anderson04cf3fd2010-09-09 20:32:23 +0000552 NumCalls = Metrics.NumInlineCandidates;
James Molloy4f6fb952012-12-20 16:04:27 +0000553 NotDuplicatable = Metrics.notDuplicatable;
Justin Lebar6827de12016-03-14 23:15:34 +0000554 Convergent = Metrics.convergent;
Andrew Trick279e7a62011-07-23 00:29:16 +0000555
Owen Anderson62ea1b72010-09-09 19:07:31 +0000556 unsigned LoopSize = Metrics.NumInsts;
Andrew Trick279e7a62011-07-23 00:29:16 +0000557
Owen Anderson62ea1b72010-09-09 19:07:31 +0000558 // Don't allow an estimate of size zero. This would allows unrolling of loops
559 // with huge iteration counts, which is a compile time problem even if it's
Hal Finkel38dd5902015-01-10 00:30:55 +0000560 // not a problem for code quality. Also, the code using this size may assume
561 // that each loop has at least three instructions (likely a conditional
562 // branch, a comparison feeding that branch, and some kind of loop increment
563 // feeding that comparison instruction).
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000564 LoopSize = std::max(LoopSize, BEInsns + 1);
Andrew Trick279e7a62011-07-23 00:29:16 +0000565
Owen Anderson62ea1b72010-09-09 19:07:31 +0000566 return LoopSize;
Chris Lattner946b2552004-04-18 05:20:17 +0000567}
568
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000569// Returns the loop hint metadata node with the given name (for example,
570// "llvm.loop.unroll.count"). If no such metadata node exists, then nullptr is
571// returned.
Jingyue Wu49a766e2015-02-02 20:41:11 +0000572static MDNode *GetUnrollMetadataForLoop(const Loop *L, StringRef Name) {
573 if (MDNode *LoopID = L->getLoopID())
574 return GetUnrollMetadata(LoopID, Name);
575 return nullptr;
Eli Benderskyff903242014-06-16 23:53:02 +0000576}
577
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000578// Returns true if the loop has an unroll(full) pragma.
579static bool HasUnrollFullPragma(const Loop *L) {
Jingyue Wu0220df02015-02-01 02:27:45 +0000580 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.full");
Eli Benderskyff903242014-06-16 23:53:02 +0000581}
582
Mark Heffernan89391542015-08-10 17:28:08 +0000583// Returns true if the loop has an unroll(enable) pragma. This metadata is used
584// for both "#pragma unroll" and "#pragma clang loop unroll(enable)" directives.
585static bool HasUnrollEnablePragma(const Loop *L) {
586 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.enable");
587}
588
Eli Benderskyff903242014-06-16 23:53:02 +0000589// Returns true if the loop has an unroll(disable) pragma.
590static bool HasUnrollDisablePragma(const Loop *L) {
Jingyue Wu0220df02015-02-01 02:27:45 +0000591 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.disable");
Eli Benderskyff903242014-06-16 23:53:02 +0000592}
593
Kevin Qin715b01e2015-03-09 06:14:18 +0000594// Returns true if the loop has an runtime unroll(disable) pragma.
595static bool HasRuntimeUnrollDisablePragma(const Loop *L) {
596 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.runtime.disable");
597}
598
Eli Benderskyff903242014-06-16 23:53:02 +0000599// If loop has an unroll_count pragma return the (necessarily
600// positive) value from the pragma. Otherwise return 0.
601static unsigned UnrollCountPragmaValue(const Loop *L) {
Jingyue Wu49a766e2015-02-02 20:41:11 +0000602 MDNode *MD = GetUnrollMetadataForLoop(L, "llvm.loop.unroll.count");
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000603 if (MD) {
604 assert(MD->getNumOperands() == 2 &&
605 "Unroll count hint metadata should have two operands.");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000606 unsigned Count =
607 mdconst::extract<ConstantInt>(MD->getOperand(1))->getZExtValue();
Eli Benderskyff903242014-06-16 23:53:02 +0000608 assert(Count >= 1 && "Unroll count must be positive.");
609 return Count;
610 }
611 return 0;
612}
613
Mark Heffernan053a6862014-07-18 21:04:33 +0000614// Remove existing unroll metadata and add unroll disable metadata to
615// indicate the loop has already been unrolled. This prevents a loop
616// from being unrolled more than is directed by a pragma if the loop
617// unrolling pass is run more than once (which it generally is).
618static void SetLoopAlreadyUnrolled(Loop *L) {
619 MDNode *LoopID = L->getLoopID();
Mark Heffernan053a6862014-07-18 21:04:33 +0000620 // First remove any existing loop unrolling metadata.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000621 SmallVector<Metadata *, 4> MDs;
Mark Heffernan053a6862014-07-18 21:04:33 +0000622 // Reserve first location for self reference to the LoopID metadata node.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000623 MDs.push_back(nullptr);
Evgeny Stupachenko3e2f3892016-06-08 20:21:24 +0000624
625 if (LoopID) {
626 for (unsigned i = 1, ie = LoopID->getNumOperands(); i < ie; ++i) {
627 bool IsUnrollMetadata = false;
628 MDNode *MD = dyn_cast<MDNode>(LoopID->getOperand(i));
629 if (MD) {
630 const MDString *S = dyn_cast<MDString>(MD->getOperand(0));
631 IsUnrollMetadata = S && S->getString().startswith("llvm.loop.unroll.");
632 }
633 if (!IsUnrollMetadata)
634 MDs.push_back(LoopID->getOperand(i));
Mark Heffernan053a6862014-07-18 21:04:33 +0000635 }
Mark Heffernan053a6862014-07-18 21:04:33 +0000636 }
637
638 // Add unroll(disable) metadata to disable future unrolling.
639 LLVMContext &Context = L->getHeader()->getContext();
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000640 SmallVector<Metadata *, 1> DisableOperands;
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000641 DisableOperands.push_back(MDString::get(Context, "llvm.loop.unroll.disable"));
Mark Heffernanf3764da2014-07-18 21:29:41 +0000642 MDNode *DisableNode = MDNode::get(Context, DisableOperands);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000643 MDs.push_back(DisableNode);
Mark Heffernan053a6862014-07-18 21:04:33 +0000644
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000645 MDNode *NewLoopID = MDNode::get(Context, MDs);
Mark Heffernan053a6862014-07-18 21:04:33 +0000646 // Set operand 0 to refer to the loop id itself.
647 NewLoopID->replaceOperandWith(0, NewLoopID);
648 L->setLoopID(NewLoopID);
Mark Heffernan053a6862014-07-18 21:04:33 +0000649}
650
Justin Bogner921b04e2016-01-12 01:06:32 +0000651static bool canUnrollCompletely(Loop *L, unsigned Threshold,
652 unsigned PercentDynamicCostSavedThreshold,
653 unsigned DynamicCostSavingsDiscount,
654 uint64_t UnrolledCost,
655 uint64_t RolledDynamicCost) {
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000656 if (Threshold == NoThreshold) {
657 DEBUG(dbgs() << " Can fully unroll, because no threshold is set.\n");
658 return true;
659 }
660
Chandler Carruth9dabd142015-06-05 17:01:43 +0000661 if (UnrolledCost <= Threshold) {
662 DEBUG(dbgs() << " Can fully unroll, because unrolled cost: "
Haicheng Wu109f4f32016-09-07 21:30:16 +0000663 << UnrolledCost << "<=" << Threshold << "\n");
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000664 return true;
665 }
666
Chandler Carruth9dabd142015-06-05 17:01:43 +0000667 assert(UnrolledCost && "UnrolledCost can't be 0 at this point.");
668 assert(RolledDynamicCost >= UnrolledCost &&
669 "Cannot have a higher unrolled cost than a rolled cost!");
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000670
Chandler Carruth9dabd142015-06-05 17:01:43 +0000671 // Compute the percentage of the dynamic cost in the rolled form that is
672 // saved when unrolled. If unrolling dramatically reduces the estimated
673 // dynamic cost of the loop, we use a higher threshold to allow more
674 // unrolling.
675 unsigned PercentDynamicCostSaved =
676 (uint64_t)(RolledDynamicCost - UnrolledCost) * 100ull / RolledDynamicCost;
677
678 if (PercentDynamicCostSaved >= PercentDynamicCostSavedThreshold &&
679 (int64_t)UnrolledCost - (int64_t)DynamicCostSavingsDiscount <=
680 (int64_t)Threshold) {
681 DEBUG(dbgs() << " Can fully unroll, because unrolling will reduce the "
Dehao Chend55bc4c2016-05-05 00:54:54 +0000682 "expected dynamic cost by "
683 << PercentDynamicCostSaved << "% (threshold: "
684 << PercentDynamicCostSavedThreshold << "%)\n"
Chandler Carruth9dabd142015-06-05 17:01:43 +0000685 << " and the unrolled cost (" << UnrolledCost
686 << ") is less than the max threshold ("
687 << DynamicCostSavingsDiscount << ").\n");
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000688 return true;
689 }
690
691 DEBUG(dbgs() << " Too large to fully unroll:\n");
Chandler Carruth9dabd142015-06-05 17:01:43 +0000692 DEBUG(dbgs() << " Threshold: " << Threshold << "\n");
693 DEBUG(dbgs() << " Max threshold: " << DynamicCostSavingsDiscount << "\n");
694 DEBUG(dbgs() << " Percent cost saved threshold: "
695 << PercentDynamicCostSavedThreshold << "%\n");
696 DEBUG(dbgs() << " Unrolled cost: " << UnrolledCost << "\n");
697 DEBUG(dbgs() << " Rolled dynamic cost: " << RolledDynamicCost << "\n");
698 DEBUG(dbgs() << " Percent cost saved: " << PercentDynamicCostSaved
699 << "\n");
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000700 return false;
701}
702
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000703// Returns loop size estimation for unrolled loop.
704static uint64_t getUnrolledLoopSize(
705 unsigned LoopSize,
706 TargetTransformInfo::UnrollingPreferences &UP) {
707 assert(LoopSize >= UP.BEInsns && "LoopSize should not be less than BEInsns!");
708 return (uint64_t)(LoopSize - UP.BEInsns) * UP.Count + UP.BEInsns;
709}
710
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000711// Returns true if unroll count was set explicitly.
712// Calculates unroll count and writes it to UP.Count.
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000713static bool computeUnrollCount(
714 Loop *L, const TargetTransformInfo &TTI, DominatorTree &DT, LoopInfo *LI,
715 ScalarEvolution *SE, OptimizationRemarkEmitter *ORE, unsigned &TripCount,
716 unsigned MaxTripCount, unsigned &TripMultiple, unsigned LoopSize,
717 TargetTransformInfo::UnrollingPreferences &UP, bool &UseUpperBound) {
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000718 // Check for explicit Count.
719 // 1st priority is unroll count set by "unroll-count" option.
720 bool UserUnrollCount = UnrollCount.getNumOccurrences() > 0;
721 if (UserUnrollCount) {
722 UP.Count = UnrollCount;
723 UP.AllowExpensiveTripCount = true;
724 UP.Force = true;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000725 if (UP.AllowRemainder && getUnrolledLoopSize(LoopSize, UP) < UP.Threshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000726 return true;
727 }
728
729 // 2nd priority is unroll count set by pragma.
730 unsigned PragmaCount = UnrollCountPragmaValue(L);
731 if (PragmaCount > 0) {
732 UP.Count = PragmaCount;
733 UP.Runtime = true;
734 UP.AllowExpensiveTripCount = true;
735 UP.Force = true;
736 if (UP.AllowRemainder &&
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000737 getUnrolledLoopSize(LoopSize, UP) < PragmaUnrollThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000738 return true;
739 }
740 bool PragmaFullUnroll = HasUnrollFullPragma(L);
741 if (PragmaFullUnroll && TripCount != 0) {
742 UP.Count = TripCount;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000743 if (getUnrolledLoopSize(LoopSize, UP) < PragmaUnrollThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000744 return false;
745 }
746
747 bool PragmaEnableUnroll = HasUnrollEnablePragma(L);
748 bool ExplicitUnroll = PragmaCount > 0 || PragmaFullUnroll ||
749 PragmaEnableUnroll || UserUnrollCount;
750
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000751 if (ExplicitUnroll && TripCount != 0) {
752 // If the loop has an unrolling pragma, we want to be more aggressive with
753 // unrolling limits. Set thresholds to at least the PragmaThreshold value
754 // which is larger than the default limits.
755 UP.Threshold = std::max<unsigned>(UP.Threshold, PragmaUnrollThreshold);
756 UP.PartialThreshold =
757 std::max<unsigned>(UP.PartialThreshold, PragmaUnrollThreshold);
758 }
759
760 // 3rd priority is full unroll count.
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000761 // Full unroll makes sense only when TripCount or its upper bound could be
762 // statically calculated.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000763 // Also we need to check if we exceed FullUnrollMaxCount.
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000764 // If using the upper bound to unroll, TripMultiple should be set to 1 because
765 // we do not know when loop may exit.
766 // MaxTripCount and ExactTripCount cannot both be non zero since we only
767 // compute the former when the latter is zero.
768 unsigned ExactTripCount = TripCount;
769 assert((ExactTripCount == 0 || MaxTripCount == 0) &&
770 "ExtractTripCound and MaxTripCount cannot both be non zero.");
771 unsigned FullUnrollTripCount = ExactTripCount ? ExactTripCount : MaxTripCount;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000772 UP.Count = FullUnrollTripCount;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000773 if (FullUnrollTripCount && FullUnrollTripCount <= UP.FullUnrollMaxCount) {
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000774 // When computing the unrolled size, note that BEInsns are not replicated
775 // like the rest of the loop body.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000776 if (canUnrollCompletely(L, UP.Threshold, 100, UP.DynamicCostSavingsDiscount,
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000777 getUnrolledLoopSize(LoopSize, UP),
778 getUnrolledLoopSize(LoopSize, UP))) {
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000779 UseUpperBound = (MaxTripCount == FullUnrollTripCount);
780 TripCount = FullUnrollTripCount;
781 TripMultiple = UP.UpperBound ? 1 : TripMultiple;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000782 return ExplicitUnroll;
783 } else {
784 // The loop isn't that small, but we still can fully unroll it if that
785 // helps to remove a significant number of instructions.
786 // To check that, run additional analysis on the loop.
787 if (Optional<EstimatedUnrollCost> Cost = analyzeLoopUnrollCost(
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000788 L, FullUnrollTripCount, DT, *SE, TTI,
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000789 UP.Threshold + UP.DynamicCostSavingsDiscount))
790 if (canUnrollCompletely(L, UP.Threshold,
791 UP.PercentDynamicCostSavedThreshold,
792 UP.DynamicCostSavingsDiscount,
793 Cost->UnrolledCost, Cost->RolledDynamicCost)) {
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000794 UseUpperBound = (MaxTripCount == FullUnrollTripCount);
795 TripCount = FullUnrollTripCount;
796 TripMultiple = UP.UpperBound ? 1 : TripMultiple;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000797 return ExplicitUnroll;
798 }
799 }
800 }
801
802 // 4rd priority is partial unrolling.
803 // Try partial unroll only when TripCount could be staticaly calculated.
804 if (TripCount) {
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000805 UP.Partial |= ExplicitUnroll;
806 if (!UP.Partial) {
807 DEBUG(dbgs() << " will not try to unroll partially because "
808 << "-unroll-allow-partial not given\n");
809 UP.Count = 0;
810 return false;
811 }
Haicheng Wu430b3e42016-10-27 18:40:02 +0000812 if (UP.Count == 0)
813 UP.Count = TripCount;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000814 if (UP.PartialThreshold != NoThreshold) {
815 // Reduce unroll count to be modulo of TripCount for partial unrolling.
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000816 if (getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold)
817 UP.Count =
818 (std::max(UP.PartialThreshold, UP.BEInsns + 1) - UP.BEInsns) /
819 (LoopSize - UP.BEInsns);
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000820 if (UP.Count > UP.MaxCount)
821 UP.Count = UP.MaxCount;
822 while (UP.Count != 0 && TripCount % UP.Count != 0)
823 UP.Count--;
824 if (UP.AllowRemainder && UP.Count <= 1) {
825 // If there is no Count that is modulo of TripCount, set Count to
826 // largest power-of-two factor that satisfies the threshold limit.
827 // As we'll create fixup loop, do the type of unrolling only if
828 // remainder loop is allowed.
Jonas Paulsson58c5a7f2016-09-28 09:41:38 +0000829 UP.Count = UP.DefaultUnrollRuntimeCount;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000830 while (UP.Count != 0 &&
831 getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000832 UP.Count >>= 1;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000833 }
834 if (UP.Count < 2) {
835 if (PragmaEnableUnroll)
Adam Nemetf57cc622016-09-30 03:44:16 +0000836 ORE->emit(
837 OptimizationRemarkMissed(DEBUG_TYPE, "UnrollAsDirectedTooLarge",
838 L->getStartLoc(), L->getHeader())
839 << "Unable to unroll loop as directed by unroll(enable) pragma "
840 "because unrolled size is too large.");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000841 UP.Count = 0;
842 }
843 } else {
844 UP.Count = TripCount;
845 }
846 if ((PragmaFullUnroll || PragmaEnableUnroll) && TripCount &&
847 UP.Count != TripCount)
Adam Nemetf57cc622016-09-30 03:44:16 +0000848 ORE->emit(
849 OptimizationRemarkMissed(DEBUG_TYPE, "FullUnrollAsDirectedTooLarge",
850 L->getStartLoc(), L->getHeader())
851 << "Unable to fully unroll loop as directed by unroll pragma because "
852 "unrolled size is too large.");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000853 return ExplicitUnroll;
854 }
855 assert(TripCount == 0 &&
856 "All cases when TripCount is constant should be covered here.");
857 if (PragmaFullUnroll)
Adam Nemetf57cc622016-09-30 03:44:16 +0000858 ORE->emit(
859 OptimizationRemarkMissed(DEBUG_TYPE,
860 "CantFullUnrollAsDirectedRuntimeTripCount",
861 L->getStartLoc(), L->getHeader())
862 << "Unable to fully unroll loop as directed by unroll(full) pragma "
863 "because loop has a runtime trip count.");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000864
865 // 5th priority is runtime unrolling.
866 // Don't unroll a runtime trip count loop when it is disabled.
867 if (HasRuntimeUnrollDisablePragma(L)) {
868 UP.Count = 0;
869 return false;
870 }
871 // Reduce count based on the type of unrolling and the threshold values.
872 UP.Runtime |= PragmaEnableUnroll || PragmaCount > 0 || UserUnrollCount;
873 if (!UP.Runtime) {
874 DEBUG(dbgs() << " will not try to unroll loop with runtime trip count "
875 << "-unroll-runtime not given\n");
876 UP.Count = 0;
877 return false;
878 }
879 if (UP.Count == 0)
Jonas Paulsson58c5a7f2016-09-28 09:41:38 +0000880 UP.Count = UP.DefaultUnrollRuntimeCount;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000881
882 // Reduce unroll count to be the largest power-of-two factor of
883 // the original count which satisfies the threshold limit.
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000884 while (UP.Count != 0 &&
885 getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000886 UP.Count >>= 1;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000887
Evgeny Stupachenkob7875222016-05-28 00:14:58 +0000888#ifndef NDEBUG
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000889 unsigned OrigCount = UP.Count;
Evgeny Stupachenkob7875222016-05-28 00:14:58 +0000890#endif
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000891
892 if (!UP.AllowRemainder && UP.Count != 0 && (TripMultiple % UP.Count) != 0) {
893 while (UP.Count != 0 && TripMultiple % UP.Count != 0)
894 UP.Count >>= 1;
895 DEBUG(dbgs() << "Remainder loop is restricted (that could architecture "
896 "specific or because the loop contains a convergent "
897 "instruction), so unroll count must divide the trip "
898 "multiple, "
899 << TripMultiple << ". Reducing unroll count from "
900 << OrigCount << " to " << UP.Count << ".\n");
Adam Nemetf57cc622016-09-30 03:44:16 +0000901 using namespace ore;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000902 if (PragmaCount > 0 && !UP.AllowRemainder)
Adam Nemetf57cc622016-09-30 03:44:16 +0000903 ORE->emit(
904 OptimizationRemarkMissed(DEBUG_TYPE,
905 "DifferentUnrollCountFromDirected",
906 L->getStartLoc(), L->getHeader())
907 << "Unable to unroll loop the number of times directed by "
908 "unroll_count pragma because remainder loop is restricted "
909 "(that could architecture specific or because the loop "
910 "contains a convergent instruction) and so must have an unroll "
911 "count that divides the loop trip multiple of "
912 << NV("TripMultiple", TripMultiple) << ". Unrolling instead "
913 << NV("UnrollCount", UP.Count) << " time(s).");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000914 }
915
916 if (UP.Count > UP.MaxCount)
917 UP.Count = UP.MaxCount;
918 DEBUG(dbgs() << " partially unrolling with count: " << UP.Count << "\n");
919 if (UP.Count < 2)
920 UP.Count = 0;
921 return ExplicitUnroll;
922}
923
Justin Bognerb8d82ab2016-01-12 05:21:37 +0000924static bool tryToUnrollLoop(Loop *L, DominatorTree &DT, LoopInfo *LI,
925 ScalarEvolution *SE, const TargetTransformInfo &TTI,
Adam Nemet12937c32016-07-29 19:29:47 +0000926 AssumptionCache &AC, OptimizationRemarkEmitter &ORE,
927 bool PreserveLCSSA,
Justin Bognerb8d82ab2016-01-12 05:21:37 +0000928 Optional<unsigned> ProvidedCount,
929 Optional<unsigned> ProvidedThreshold,
930 Optional<bool> ProvidedAllowPartial,
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000931 Optional<bool> ProvidedRuntime,
932 Optional<bool> ProvidedUpperBound) {
Evgeny Stupachenkob7875222016-05-28 00:14:58 +0000933 DEBUG(dbgs() << "Loop Unroll: F[" << L->getHeader()->getParent()->getName()
934 << "] Loop %" << L->getHeader()->getName() << "\n");
Eli Benderskyff903242014-06-16 23:53:02 +0000935 if (HasUnrollDisablePragma(L)) {
936 return false;
937 }
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000938
939 unsigned NumInlineCandidates;
940 bool NotDuplicatable;
941 bool Convergent;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000942 TargetTransformInfo::UnrollingPreferences UP = gatherUnrollingPreferences(
943 L, TTI, ProvidedThreshold, ProvidedCount, ProvidedAllowPartial,
944 ProvidedRuntime, ProvidedUpperBound);
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000945 unsigned LoopSize = ApproximateLoopSize(
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000946 L, NumInlineCandidates, NotDuplicatable, Convergent, TTI, &AC, UP.BEInsns);
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000947 DEBUG(dbgs() << " Loop Size = " << LoopSize << "\n");
948 if (NotDuplicatable) {
949 DEBUG(dbgs() << " Not unrolling loop which contains non-duplicatable"
950 << " instructions.\n");
951 return false;
952 }
953 if (NumInlineCandidates != 0) {
954 DEBUG(dbgs() << " Not unrolling loop with inlinable calls.\n");
955 return false;
956 }
David Majnemer4a697c32016-06-15 00:19:56 +0000957 if (!L->isLoopSimplifyForm()) {
958 DEBUG(
959 dbgs() << " Not unrolling loop which is not in loop-simplify form.\n");
960 return false;
961 }
Andrew Trick279e7a62011-07-23 00:29:16 +0000962
Andrew Trick2b6860f2011-08-11 23:36:16 +0000963 // Find trip count and trip multiple if count is not available
964 unsigned TripCount = 0;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000965 unsigned MaxTripCount = 0;
Andrew Trick1cabe542011-07-23 00:33:05 +0000966 unsigned TripMultiple = 1;
Chandler Carruth6666c272014-10-11 00:12:11 +0000967 // If there are multiple exiting blocks but one of them is the latch, use the
968 // latch for the trip count estimation. Otherwise insist on a single exiting
969 // block for the trip count estimation.
970 BasicBlock *ExitingBlock = L->getLoopLatch();
971 if (!ExitingBlock || !L->isLoopExiting(ExitingBlock))
972 ExitingBlock = L->getExitingBlock();
973 if (ExitingBlock) {
974 TripCount = SE->getSmallConstantTripCount(L, ExitingBlock);
975 TripMultiple = SE->getSmallConstantTripMultiple(L, ExitingBlock);
Andrew Trick2b6860f2011-08-11 23:36:16 +0000976 }
Hal Finkel8f2e7002013-09-11 19:25:43 +0000977
Michael Zolotukhinbd63d432016-08-23 23:13:15 +0000978 // Exit early if unrolling is disabled.
979 if (UP.Threshold == 0 && (!UP.Partial || UP.PartialThreshold == 0))
980 return false;
981
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000982 // If the loop contains a convergent operation, the prelude we'd add
983 // to do the first few instructions before we hit the unrolled loop
984 // is unsafe -- it adds a control-flow dependency to the convergent
985 // operation. Therefore restrict remainder loop (try unrollig without).
986 //
987 // TODO: This is quite conservative. In practice, convergent_op()
988 // is likely to be called unconditionally in the loop. In this
989 // case, the program would be ill-formed (on most architectures)
990 // unless n were the same on all threads in a thread group.
991 // Assuming n is the same on all threads, any kind of unrolling is
992 // safe. But currently llvm's notion of convergence isn't powerful
993 // enough to express this.
994 if (Convergent)
995 UP.AllowRemainder = false;
Eli Benderskydc6de2c2014-06-12 18:05:39 +0000996
John Brawn84b21832016-10-21 11:08:48 +0000997 // Try to find the trip count upper bound if we cannot find the exact trip
998 // count.
999 bool MaxOrZero = false;
1000 if (!TripCount) {
1001 MaxTripCount = SE->getSmallConstantMaxTripCount(L);
1002 MaxOrZero = SE->isBackedgeTakenCountMaxOrZero(L);
1003 // We can unroll by the upper bound amount if it's generally allowed or if
1004 // we know that the loop is executed either the upper bound or zero times.
1005 // (MaxOrZero unrolling keeps only the first loop test, so the number of
1006 // loop tests remains the same compared to the non-unrolled version, whereas
1007 // the generic upper bound unrolling keeps all but the last loop test so the
1008 // number of loop tests goes up which may end up being worse on targets with
1009 // constriained branch predictor resources so is controlled by an option.)
1010 // In addition we only unroll small upper bounds.
1011 if (!(UP.UpperBound || MaxOrZero) || MaxTripCount > UnrollMaxUpperBound) {
1012 MaxTripCount = 0;
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001013 }
1014 }
1015
1016 // computeUnrollCount() decides whether it is beneficial to use upper bound to
1017 // fully unroll the loop.
1018 bool UseUpperBound = false;
1019 bool IsCountSetExplicitly =
1020 computeUnrollCount(L, TTI, DT, LI, SE, &ORE, TripCount, MaxTripCount,
1021 TripMultiple, LoopSize, UP, UseUpperBound);
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001022 if (!UP.Count)
Eli Benderskyff903242014-06-16 23:53:02 +00001023 return false;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001024 // Unroll factor (Count) must be less or equal to TripCount.
1025 if (TripCount && UP.Count > TripCount)
1026 UP.Count = TripCount;
Dan Gohman2980d9d2007-05-11 20:53:41 +00001027
Dan Gohman3dc2d922008-05-14 00:24:14 +00001028 // Unroll the loop.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001029 if (!UnrollLoop(L, UP.Count, TripCount, UP.Force, UP.Runtime,
John Brawn84b21832016-10-21 11:08:48 +00001030 UP.AllowExpensiveTripCount, UseUpperBound, MaxOrZero,
1031 TripMultiple, LI, SE, &DT, &AC, &ORE, PreserveLCSSA))
Dan Gohman3dc2d922008-05-14 00:24:14 +00001032 return false;
Dan Gohman2980d9d2007-05-11 20:53:41 +00001033
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001034 // If loop has an unroll count pragma or unrolled by explicitly set count
1035 // mark loop as unrolled to prevent unrolling beyond that requested.
1036 if (IsCountSetExplicitly)
David L Kreitzer8d441eb2016-03-25 14:24:52 +00001037 SetLoopAlreadyUnrolled(L);
Chris Lattner946b2552004-04-18 05:20:17 +00001038 return true;
1039}
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001040
1041namespace {
1042class LoopUnroll : public LoopPass {
1043public:
1044 static char ID; // Pass ID, replacement for typeid
1045 LoopUnroll(Optional<unsigned> Threshold = None,
1046 Optional<unsigned> Count = None,
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001047 Optional<bool> AllowPartial = None, Optional<bool> Runtime = None,
1048 Optional<bool> UpperBound = None)
Benjamin Kramer82de7d32016-05-27 14:27:24 +00001049 : LoopPass(ID), ProvidedCount(std::move(Count)),
1050 ProvidedThreshold(Threshold), ProvidedAllowPartial(AllowPartial),
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001051 ProvidedRuntime(Runtime), ProvidedUpperBound(UpperBound) {
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001052 initializeLoopUnrollPass(*PassRegistry::getPassRegistry());
1053 }
1054
1055 Optional<unsigned> ProvidedCount;
1056 Optional<unsigned> ProvidedThreshold;
1057 Optional<bool> ProvidedAllowPartial;
1058 Optional<bool> ProvidedRuntime;
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001059 Optional<bool> ProvidedUpperBound;
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001060
1061 bool runOnLoop(Loop *L, LPPassManager &) override {
Andrew Kayloraa641a52016-04-22 22:06:11 +00001062 if (skipLoop(L))
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001063 return false;
1064
1065 Function &F = *L->getHeader()->getParent();
1066
1067 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
1068 LoopInfo *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
1069 ScalarEvolution *SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
1070 const TargetTransformInfo &TTI =
1071 getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
1072 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
Adam Nemet4f155b62016-08-26 15:58:34 +00001073 // For the old PM, we can't use OptimizationRemarkEmitter as an analysis
1074 // pass. Function analyses need to be preserved across loop transformations
1075 // but ORE cannot be preserved (see comment before the pass definition).
1076 OptimizationRemarkEmitter ORE(&F);
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001077 bool PreserveLCSSA = mustPreserveAnalysisID(LCSSAID);
1078
Adam Nemet12937c32016-07-29 19:29:47 +00001079 return tryToUnrollLoop(L, DT, LI, SE, TTI, AC, ORE, PreserveLCSSA,
1080 ProvidedCount, ProvidedThreshold,
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001081 ProvidedAllowPartial, ProvidedRuntime,
1082 ProvidedUpperBound);
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001083 }
1084
1085 /// This transformation requires natural loop information & requires that
1086 /// loop preheaders be inserted into the CFG...
1087 ///
1088 void getAnalysisUsage(AnalysisUsage &AU) const override {
1089 AU.addRequired<AssumptionCacheTracker>();
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001090 AU.addRequired<TargetTransformInfoWrapperPass>();
Chandler Carruth31088a92016-02-19 10:45:18 +00001091 // FIXME: Loop passes are required to preserve domtree, and for now we just
1092 // recreate dom info if anything gets unrolled.
1093 getLoopAnalysisUsage(AU);
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001094 }
1095};
1096}
1097
1098char LoopUnroll::ID = 0;
1099INITIALIZE_PASS_BEGIN(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001100INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruth31088a92016-02-19 10:45:18 +00001101INITIALIZE_PASS_DEPENDENCY(LoopPass)
1102INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001103INITIALIZE_PASS_END(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
1104
1105Pass *llvm::createLoopUnrollPass(int Threshold, int Count, int AllowPartial,
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001106 int Runtime, int UpperBound) {
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001107 // TODO: It would make more sense for this function to take the optionals
1108 // directly, but that's dangerous since it would silently break out of tree
1109 // callers.
1110 return new LoopUnroll(Threshold == -1 ? None : Optional<unsigned>(Threshold),
1111 Count == -1 ? None : Optional<unsigned>(Count),
1112 AllowPartial == -1 ? None
1113 : Optional<bool>(AllowPartial),
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001114 Runtime == -1 ? None : Optional<bool>(Runtime),
1115 UpperBound == -1 ? None : Optional<bool>(UpperBound));
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001116}
1117
1118Pass *llvm::createSimpleLoopUnrollPass() {
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001119 return llvm::createLoopUnrollPass(-1, -1, 0, 0, 0);
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001120}
Sean Silvae3c18a52016-07-19 23:54:23 +00001121
Sean Silva0746f3b2016-08-09 00:28:52 +00001122PreservedAnalyses LoopUnrollPass::run(Loop &L, LoopAnalysisManager &AM) {
Sean Silvae3c18a52016-07-19 23:54:23 +00001123 const auto &FAM =
1124 AM.getResult<FunctionAnalysisManagerLoopProxy>(L).getManager();
1125 Function *F = L.getHeader()->getParent();
1126
1127
1128 DominatorTree *DT = FAM.getCachedResult<DominatorTreeAnalysis>(*F);
1129 LoopInfo *LI = FAM.getCachedResult<LoopAnalysis>(*F);
1130 ScalarEvolution *SE = FAM.getCachedResult<ScalarEvolutionAnalysis>(*F);
1131 auto *TTI = FAM.getCachedResult<TargetIRAnalysis>(*F);
1132 auto *AC = FAM.getCachedResult<AssumptionAnalysis>(*F);
Adam Nemet12937c32016-07-29 19:29:47 +00001133 auto *ORE = FAM.getCachedResult<OptimizationRemarkEmitterAnalysis>(*F);
Sean Silvae3c18a52016-07-19 23:54:23 +00001134 if (!DT)
Michael Kupersteincffedc42016-10-25 18:31:23 +00001135 report_fatal_error(
1136 "LoopUnrollPass: DominatorTreeAnalysis not cached at a higher level");
Sean Silvae3c18a52016-07-19 23:54:23 +00001137 if (!LI)
Michael Kupersteincffedc42016-10-25 18:31:23 +00001138 report_fatal_error(
1139 "LoopUnrollPass: LoopAnalysis not cached at a higher level");
Sean Silvae3c18a52016-07-19 23:54:23 +00001140 if (!SE)
Michael Kupersteincffedc42016-10-25 18:31:23 +00001141 report_fatal_error(
1142 "LoopUnrollPass: ScalarEvolutionAnalysis not cached at a higher level");
Sean Silvae3c18a52016-07-19 23:54:23 +00001143 if (!TTI)
Michael Kupersteincffedc42016-10-25 18:31:23 +00001144 report_fatal_error(
1145 "LoopUnrollPass: TargetIRAnalysis not cached at a higher level");
Sean Silvae3c18a52016-07-19 23:54:23 +00001146 if (!AC)
Michael Kupersteincffedc42016-10-25 18:31:23 +00001147 report_fatal_error(
1148 "LoopUnrollPass: AssumptionAnalysis not cached at a higher level");
Adam Nemet12937c32016-07-29 19:29:47 +00001149 if (!ORE)
1150 report_fatal_error("LoopUnrollPass: OptimizationRemarkEmitterAnalysis not "
1151 "cached at a higher level");
Sean Silvae3c18a52016-07-19 23:54:23 +00001152
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001153 bool Changed =
1154 tryToUnrollLoop(&L, *DT, LI, SE, *TTI, *AC, *ORE, /*PreserveLCSSA*/ true,
1155 ProvidedCount, ProvidedThreshold, ProvidedAllowPartial,
1156 ProvidedRuntime, ProvidedUpperBound);
Sean Silvae3c18a52016-07-19 23:54:23 +00001157
1158 if (!Changed)
1159 return PreservedAnalyses::all();
1160 return getLoopPassPreservedAnalyses();
1161}