blob: cc4e0615658a3b8feccacd53d2b68b0e7e7356d7 [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"
Dan Gohman0141c132010-07-26 18:11:16 +000024#include "llvm/Analysis/ScalarEvolution.h"
Michael Zolotukhina9aadd22015-02-05 02:34:00 +000025#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Chandler Carruthbb9caa92013-01-21 13:04:33 +000026#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/DataLayout.h"
Eli Benderskyff903242014-06-16 23:53:02 +000028#include "llvm/IR/DiagnosticInfo.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
Dehao Chend55bc4c2016-05-05 00:54:54 +000095static cl::opt<unsigned> PragmaUnrollThreshold(
96 "pragma-unroll-threshold", cl::init(16 * 1024), cl::Hidden,
97 cl::desc("Unrolled size limit for loops with an unroll(full) or "
98 "unroll_count pragma."));
Justin Bognera1dd4932016-01-12 00:55:26 +000099
100/// A magic value for use with the Threshold parameter to indicate
101/// that the loop unroll should be performed regardless of how much
102/// code expansion would result.
103static const unsigned NoThreshold = UINT_MAX;
104
105/// Default unroll count for loops with run-time trip count if
106/// -unroll-count is not set
107static const unsigned DefaultUnrollRuntimeCount = 8;
108
109/// Gather the various unrolling parameters based on the defaults, compiler
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000110/// flags, TTI overrides and user specified parameters.
Justin Bognera1dd4932016-01-12 00:55:26 +0000111static TargetTransformInfo::UnrollingPreferences gatherUnrollingPreferences(
112 Loop *L, const TargetTransformInfo &TTI, Optional<unsigned> UserThreshold,
113 Optional<unsigned> UserCount, Optional<bool> UserAllowPartial,
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000114 Optional<bool> UserRuntime) {
Justin Bognera1dd4932016-01-12 00:55:26 +0000115 TargetTransformInfo::UnrollingPreferences UP;
116
117 // Set up the defaults
118 UP.Threshold = 150;
Michael Zolotukhin58564982016-06-03 00:16:46 +0000119 UP.PercentDynamicCostSavedThreshold = 50;
120 UP.DynamicCostSavingsDiscount = 100;
Hans Wennborg719b26b2016-05-10 21:45:55 +0000121 UP.OptSizeThreshold = 0;
Justin Bognera1dd4932016-01-12 00:55:26 +0000122 UP.PartialThreshold = UP.Threshold;
Hans Wennborg719b26b2016-05-10 21:45:55 +0000123 UP.PartialOptSizeThreshold = 0;
Justin Bognera1dd4932016-01-12 00:55:26 +0000124 UP.Count = 0;
125 UP.MaxCount = UINT_MAX;
Fiona Glaser045afc42016-04-06 16:57:25 +0000126 UP.FullUnrollMaxCount = UINT_MAX;
Justin Bognera1dd4932016-01-12 00:55:26 +0000127 UP.Partial = false;
128 UP.Runtime = false;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000129 UP.AllowRemainder = true;
Justin Bognera1dd4932016-01-12 00:55:26 +0000130 UP.AllowExpensiveTripCount = false;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000131 UP.Force = false;
Justin Bognera1dd4932016-01-12 00:55:26 +0000132
133 // Override with any target specific settings
134 TTI.getUnrollingPreferences(L, UP);
135
136 // Apply size attributes
137 if (L->getHeader()->getParent()->optForSize()) {
138 UP.Threshold = UP.OptSizeThreshold;
139 UP.PartialThreshold = UP.PartialOptSizeThreshold;
140 }
141
Justin Bognera1dd4932016-01-12 00:55:26 +0000142 // Apply any user values specified by cl::opt
143 if (UnrollThreshold.getNumOccurrences() > 0) {
144 UP.Threshold = UnrollThreshold;
145 UP.PartialThreshold = UnrollThreshold;
146 }
147 if (UnrollPercentDynamicCostSavedThreshold.getNumOccurrences() > 0)
148 UP.PercentDynamicCostSavedThreshold =
149 UnrollPercentDynamicCostSavedThreshold;
150 if (UnrollDynamicCostSavingsDiscount.getNumOccurrences() > 0)
151 UP.DynamicCostSavingsDiscount = UnrollDynamicCostSavingsDiscount;
Fiona Glaser045afc42016-04-06 16:57:25 +0000152 if (UnrollMaxCount.getNumOccurrences() > 0)
153 UP.MaxCount = UnrollMaxCount;
154 if (UnrollFullMaxCount.getNumOccurrences() > 0)
155 UP.FullUnrollMaxCount = UnrollFullMaxCount;
Justin Bognera1dd4932016-01-12 00:55:26 +0000156 if (UnrollAllowPartial.getNumOccurrences() > 0)
157 UP.Partial = UnrollAllowPartial;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000158 if (UnrollAllowRemainder.getNumOccurrences() > 0)
159 UP.AllowRemainder = UnrollAllowRemainder;
Justin Bognera1dd4932016-01-12 00:55:26 +0000160 if (UnrollRuntime.getNumOccurrences() > 0)
161 UP.Runtime = UnrollRuntime;
162
163 // Apply user values provided by argument
164 if (UserThreshold.hasValue()) {
165 UP.Threshold = *UserThreshold;
166 UP.PartialThreshold = *UserThreshold;
167 }
168 if (UserCount.hasValue())
169 UP.Count = *UserCount;
170 if (UserAllowPartial.hasValue())
171 UP.Partial = *UserAllowPartial;
172 if (UserRuntime.hasValue())
173 UP.Runtime = *UserRuntime;
174
Justin Bognera1dd4932016-01-12 00:55:26 +0000175 return UP;
176}
177
Chris Lattner79a42ac2006-12-19 21:40:18 +0000178namespace {
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000179/// A struct to densely store the state of an instruction after unrolling at
180/// each iteration.
181///
182/// This is designed to work like a tuple of <Instruction *, int> for the
183/// purposes of hashing and lookup, but to be able to associate two boolean
184/// states with each key.
185struct UnrolledInstState {
186 Instruction *I;
187 int Iteration : 30;
188 unsigned IsFree : 1;
189 unsigned IsCounted : 1;
190};
191
192/// Hashing and equality testing for a set of the instruction states.
193struct UnrolledInstStateKeyInfo {
194 typedef DenseMapInfo<Instruction *> PtrInfo;
195 typedef DenseMapInfo<std::pair<Instruction *, int>> PairInfo;
196 static inline UnrolledInstState getEmptyKey() {
197 return {PtrInfo::getEmptyKey(), 0, 0, 0};
198 }
199 static inline UnrolledInstState getTombstoneKey() {
200 return {PtrInfo::getTombstoneKey(), 0, 0, 0};
201 }
202 static inline unsigned getHashValue(const UnrolledInstState &S) {
203 return PairInfo::getHashValue({S.I, S.Iteration});
204 }
205 static inline bool isEqual(const UnrolledInstState &LHS,
206 const UnrolledInstState &RHS) {
207 return PairInfo::isEqual({LHS.I, LHS.Iteration}, {RHS.I, RHS.Iteration});
208 }
209};
210}
211
212namespace {
Chandler Carruth02156082015-05-22 17:41:35 +0000213struct EstimatedUnrollCost {
Chandler Carruth9dabd142015-06-05 17:01:43 +0000214 /// \brief The estimated cost after unrolling.
Chandler Carruthb2fda0d2015-08-05 18:46:21 +0000215 int UnrolledCost;
Chandler Carruth302a1332015-02-13 02:10:56 +0000216
Chandler Carruth9dabd142015-06-05 17:01:43 +0000217 /// \brief The estimated dynamic cost of executing the instructions in the
218 /// rolled form.
Chandler Carruthb2fda0d2015-08-05 18:46:21 +0000219 int RolledDynamicCost;
Chandler Carruth02156082015-05-22 17:41:35 +0000220};
221}
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000222
Chandler Carruth02156082015-05-22 17:41:35 +0000223/// \brief Figure out if the loop is worth full unrolling.
224///
225/// Complete loop unrolling can make some loads constant, and we need to know
226/// if that would expose any further optimization opportunities. This routine
Michael Zolotukhinc4e4f332015-06-11 22:17:39 +0000227/// estimates this optimization. It computes cost of unrolled loop
228/// (UnrolledCost) and dynamic cost of the original loop (RolledDynamicCost). By
229/// dynamic cost we mean that we won't count costs of blocks that are known not
230/// to be executed (i.e. if we have a branch in the loop and we know that at the
231/// given iteration its condition would be resolved to true, we won't add up the
232/// cost of the 'false'-block).
233/// \returns Optional value, holding the RolledDynamicCost and UnrolledCost. If
234/// the analysis failed (no benefits expected from the unrolling, or the loop is
235/// too big to analyze), the returned value is None.
Benjamin Kramerfcdb1c12015-08-20 09:57:22 +0000236static Optional<EstimatedUnrollCost>
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000237analyzeLoopUnrollCost(const Loop *L, unsigned TripCount, DominatorTree &DT,
238 ScalarEvolution &SE, const TargetTransformInfo &TTI,
Chandler Carruthb2fda0d2015-08-05 18:46:21 +0000239 int MaxUnrolledLoopSize) {
Chandler Carruth02156082015-05-22 17:41:35 +0000240 // We want to be able to scale offsets by the trip count and add more offsets
241 // to them without checking for overflows, and we already don't want to
242 // analyze *massive* trip counts, so we force the max to be reasonably small.
243 assert(UnrollMaxIterationsCountToAnalyze < (INT_MAX / 2) &&
244 "The unroll iterations max is too large!");
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000245
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000246 // Only analyze inner loops. We can't properly estimate cost of nested loops
247 // and we won't visit inner loops again anyway.
248 if (!L->empty())
249 return None;
250
Chandler Carruth02156082015-05-22 17:41:35 +0000251 // Don't simulate loops with a big or unknown tripcount
252 if (!UnrollMaxIterationsCountToAnalyze || !TripCount ||
253 TripCount > UnrollMaxIterationsCountToAnalyze)
254 return None;
Chandler Carrutha6ae8772015-05-12 23:32:56 +0000255
Chandler Carruth02156082015-05-22 17:41:35 +0000256 SmallSetVector<BasicBlock *, 16> BBWorklist;
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000257 SmallSetVector<std::pair<BasicBlock *, BasicBlock *>, 4> ExitWorklist;
Chandler Carruth02156082015-05-22 17:41:35 +0000258 DenseMap<Value *, Constant *> SimplifiedValues;
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000259 SmallVector<std::pair<Value *, Constant *>, 4> SimplifiedInputValues;
Chandler Carruth3b057b32015-02-13 03:57:40 +0000260
Chandler Carruth9dabd142015-06-05 17:01:43 +0000261 // The estimated cost of the unrolled form of the loop. We try to estimate
262 // this by simplifying as much as we can while computing the estimate.
Chandler Carruthb2fda0d2015-08-05 18:46:21 +0000263 int UnrolledCost = 0;
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000264
Chandler Carruth9dabd142015-06-05 17:01:43 +0000265 // We also track the estimated dynamic (that is, actually executed) cost in
266 // the rolled form. This helps identify cases when the savings from unrolling
267 // aren't just exposing dead control flows, but actual reduced dynamic
268 // instructions due to the simplifications which we expect to occur after
269 // unrolling.
Chandler Carruthb2fda0d2015-08-05 18:46:21 +0000270 int RolledDynamicCost = 0;
Chandler Carruth8c863752015-02-13 03:48:38 +0000271
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000272 // We track the simplification of each instruction in each iteration. We use
273 // this to recursively merge costs into the unrolled cost on-demand so that
274 // we don't count the cost of any dead code. This is essentially a map from
275 // <instruction, int> to <bool, bool>, but stored as a densely packed struct.
276 DenseSet<UnrolledInstState, UnrolledInstStateKeyInfo> InstCostMap;
277
278 // A small worklist used to accumulate cost of instructions from each
279 // observable and reached root in the loop.
280 SmallVector<Instruction *, 16> CostWorklist;
281
282 // PHI-used worklist used between iterations while accumulating cost.
283 SmallVector<Instruction *, 4> PHIUsedList;
284
285 // Helper function to accumulate cost for instructions in the loop.
286 auto AddCostRecursively = [&](Instruction &RootI, int Iteration) {
287 assert(Iteration >= 0 && "Cannot have a negative iteration!");
288 assert(CostWorklist.empty() && "Must start with an empty cost list");
289 assert(PHIUsedList.empty() && "Must start with an empty phi used list");
290 CostWorklist.push_back(&RootI);
291 for (;; --Iteration) {
292 do {
293 Instruction *I = CostWorklist.pop_back_val();
294
295 // InstCostMap only uses I and Iteration as a key, the other two values
296 // don't matter here.
297 auto CostIter = InstCostMap.find({I, Iteration, 0, 0});
298 if (CostIter == InstCostMap.end())
299 // If an input to a PHI node comes from a dead path through the loop
300 // we may have no cost data for it here. What that actually means is
301 // that it is free.
302 continue;
303 auto &Cost = *CostIter;
304 if (Cost.IsCounted)
305 // Already counted this instruction.
306 continue;
307
308 // Mark that we are counting the cost of this instruction now.
309 Cost.IsCounted = true;
310
311 // If this is a PHI node in the loop header, just add it to the PHI set.
312 if (auto *PhiI = dyn_cast<PHINode>(I))
313 if (PhiI->getParent() == L->getHeader()) {
314 assert(Cost.IsFree && "Loop PHIs shouldn't be evaluated as they "
315 "inherently simplify during unrolling.");
316 if (Iteration == 0)
317 continue;
318
319 // Push the incoming value from the backedge into the PHI used list
320 // if it is an in-loop instruction. We'll use this to populate the
321 // cost worklist for the next iteration (as we count backwards).
322 if (auto *OpI = dyn_cast<Instruction>(
323 PhiI->getIncomingValueForBlock(L->getLoopLatch())))
324 if (L->contains(OpI))
325 PHIUsedList.push_back(OpI);
326 continue;
327 }
328
329 // First accumulate the cost of this instruction.
330 if (!Cost.IsFree) {
331 UnrolledCost += TTI.getUserCost(I);
332 DEBUG(dbgs() << "Adding cost of instruction (iteration " << Iteration
333 << "): ");
334 DEBUG(I->dump());
335 }
336
337 // We must count the cost of every operand which is not free,
338 // recursively. If we reach a loop PHI node, simply add it to the set
339 // to be considered on the next iteration (backwards!).
340 for (Value *Op : I->operands()) {
341 // Check whether this operand is free due to being a constant or
342 // outside the loop.
343 auto *OpI = dyn_cast<Instruction>(Op);
344 if (!OpI || !L->contains(OpI))
345 continue;
346
347 // Otherwise accumulate its cost.
348 CostWorklist.push_back(OpI);
349 }
350 } while (!CostWorklist.empty());
351
352 if (PHIUsedList.empty())
353 // We've exhausted the search.
354 break;
355
356 assert(Iteration > 0 &&
357 "Cannot track PHI-used values past the first iteration!");
358 CostWorklist.append(PHIUsedList.begin(), PHIUsedList.end());
359 PHIUsedList.clear();
360 }
361 };
362
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000363 // Ensure that we don't violate the loop structure invariants relied on by
364 // this analysis.
365 assert(L->isLoopSimplifyForm() && "Must put loop into normal form first.");
366 assert(L->isLCSSAForm(DT) &&
367 "Must have loops in LCSSA form to track live-out values.");
368
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000369 DEBUG(dbgs() << "Starting LoopUnroll profitability analysis...\n");
370
Chandler Carruth02156082015-05-22 17:41:35 +0000371 // Simulate execution of each iteration of the loop counting instructions,
372 // which would be simplified.
373 // Since the same load will take different values on different iterations,
374 // we literally have to go through all loop's iterations.
375 for (unsigned Iteration = 0; Iteration < TripCount; ++Iteration) {
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000376 DEBUG(dbgs() << " Analyzing iteration " << Iteration << "\n");
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000377
378 // Prepare for the iteration by collecting any simplified entry or backedge
379 // inputs.
380 for (Instruction &I : *L->getHeader()) {
381 auto *PHI = dyn_cast<PHINode>(&I);
382 if (!PHI)
383 break;
384
385 // The loop header PHI nodes must have exactly two input: one from the
386 // loop preheader and one from the loop latch.
387 assert(
388 PHI->getNumIncomingValues() == 2 &&
389 "Must have an incoming value only for the preheader and the latch.");
390
391 Value *V = PHI->getIncomingValueForBlock(
392 Iteration == 0 ? L->getLoopPreheader() : L->getLoopLatch());
393 Constant *C = dyn_cast<Constant>(V);
394 if (Iteration != 0 && !C)
395 C = SimplifiedValues.lookup(V);
396 if (C)
397 SimplifiedInputValues.push_back({PHI, C});
398 }
399
400 // Now clear and re-populate the map for the next iteration.
Chandler Carruth02156082015-05-22 17:41:35 +0000401 SimplifiedValues.clear();
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000402 while (!SimplifiedInputValues.empty())
403 SimplifiedValues.insert(SimplifiedInputValues.pop_back_val());
404
Michael Zolotukhin9f520eb2016-02-26 02:57:05 +0000405 UnrolledInstAnalyzer Analyzer(Iteration, SimplifiedValues, SE, L);
Chandler Carruthf174a152015-05-22 02:47:29 +0000406
Chandler Carruth02156082015-05-22 17:41:35 +0000407 BBWorklist.clear();
408 BBWorklist.insert(L->getHeader());
409 // Note that we *must not* cache the size, this loop grows the worklist.
410 for (unsigned Idx = 0; Idx != BBWorklist.size(); ++Idx) {
411 BasicBlock *BB = BBWorklist[Idx];
Chandler Carruthf174a152015-05-22 02:47:29 +0000412
Chandler Carruth02156082015-05-22 17:41:35 +0000413 // Visit all instructions in the given basic block and try to simplify
414 // it. We don't change the actual IR, just count optimization
415 // opportunities.
416 for (Instruction &I : *BB) {
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000417 // Track this instruction's expected baseline cost when executing the
418 // rolled loop form.
419 RolledDynamicCost += TTI.getUserCost(&I);
Chandler Carruth17a04962015-02-13 03:49:41 +0000420
Chandler Carruth02156082015-05-22 17:41:35 +0000421 // Visit the instruction to analyze its loop cost after unrolling,
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000422 // and if the visitor returns true, mark the instruction as free after
423 // unrolling and continue.
424 bool IsFree = Analyzer.visit(I);
425 bool Inserted = InstCostMap.insert({&I, (int)Iteration,
426 (unsigned)IsFree,
427 /*IsCounted*/ false}).second;
428 (void)Inserted;
429 assert(Inserted && "Cannot have a state for an unvisited instruction!");
Chandler Carruth9dabd142015-06-05 17:01:43 +0000430
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000431 if (IsFree)
432 continue;
433
434 // If the instruction might have a side-effect recursively account for
435 // the cost of it and all the instructions leading up to it.
436 if (I.mayHaveSideEffects())
437 AddCostRecursively(I, Iteration);
438
439 // Can't properly model a cost of a call.
440 // FIXME: With a proper cost model we should be able to do it.
441 if(isa<CallInst>(&I))
442 return None;
Chandler Carruth02156082015-05-22 17:41:35 +0000443
444 // If unrolled body turns out to be too big, bail out.
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000445 if (UnrolledCost > MaxUnrolledLoopSize) {
446 DEBUG(dbgs() << " Exceeded threshold.. exiting.\n"
447 << " UnrolledCost: " << UnrolledCost
448 << ", MaxUnrolledLoopSize: " << MaxUnrolledLoopSize
449 << "\n");
Chandler Carruth02156082015-05-22 17:41:35 +0000450 return None;
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000451 }
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000452 }
Chandler Carruth415f4122015-02-13 02:17:39 +0000453
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000454 TerminatorInst *TI = BB->getTerminator();
455
456 // Add in the live successors by first checking whether we have terminator
457 // that may be simplified based on the values simplified by this call.
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000458 BasicBlock *KnownSucc = nullptr;
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000459 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
460 if (BI->isConditional()) {
461 if (Constant *SimpleCond =
462 SimplifiedValues.lookup(BI->getCondition())) {
Michael Zolotukhin3a7d55b2015-07-29 18:10:29 +0000463 // Just take the first successor if condition is undef
464 if (isa<UndefValue>(SimpleCond))
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000465 KnownSucc = BI->getSuccessor(0);
466 else if (ConstantInt *SimpleCondVal =
467 dyn_cast<ConstantInt>(SimpleCond))
468 KnownSucc = BI->getSuccessor(SimpleCondVal->isZero() ? 1 : 0);
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000469 }
470 }
471 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
472 if (Constant *SimpleCond =
473 SimplifiedValues.lookup(SI->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 = SI->getSuccessor(0);
477 else if (ConstantInt *SimpleCondVal =
478 dyn_cast<ConstantInt>(SimpleCond))
479 KnownSucc = SI->findCaseValue(SimpleCondVal).getCaseSuccessor();
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000480 }
481 }
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000482 if (KnownSucc) {
483 if (L->contains(KnownSucc))
484 BBWorklist.insert(KnownSucc);
485 else
486 ExitWorklist.insert({BB, KnownSucc});
487 continue;
488 }
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000489
Chandler Carruth02156082015-05-22 17:41:35 +0000490 // Add BB's successors to the worklist.
491 for (BasicBlock *Succ : successors(BB))
492 if (L->contains(Succ))
493 BBWorklist.insert(Succ);
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000494 else
495 ExitWorklist.insert({BB, Succ});
Michael Zolotukhind2268a72016-05-18 21:20:12 +0000496 AddCostRecursively(*TI, Iteration);
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000497 }
Chandler Carruth02156082015-05-22 17:41:35 +0000498
499 // If we found no optimization opportunities on the first iteration, we
500 // won't find them on later ones too.
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000501 if (UnrolledCost == RolledDynamicCost) {
502 DEBUG(dbgs() << " No opportunities found.. exiting.\n"
503 << " UnrolledCost: " << UnrolledCost << "\n");
Chandler Carruth02156082015-05-22 17:41:35 +0000504 return None;
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000505 }
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000506 }
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000507
508 while (!ExitWorklist.empty()) {
509 BasicBlock *ExitingBB, *ExitBB;
510 std::tie(ExitingBB, ExitBB) = ExitWorklist.pop_back_val();
511
512 for (Instruction &I : *ExitBB) {
513 auto *PN = dyn_cast<PHINode>(&I);
514 if (!PN)
515 break;
516
517 Value *Op = PN->getIncomingValueForBlock(ExitingBB);
518 if (auto *OpI = dyn_cast<Instruction>(Op))
519 if (L->contains(OpI))
520 AddCostRecursively(*OpI, TripCount - 1);
521 }
522 }
523
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000524 DEBUG(dbgs() << "Analysis finished:\n"
525 << "UnrolledCost: " << UnrolledCost << ", "
526 << "RolledDynamicCost: " << RolledDynamicCost << "\n");
Chandler Carruth9dabd142015-06-05 17:01:43 +0000527 return {{UnrolledCost, RolledDynamicCost}};
Chandler Carruth02156082015-05-22 17:41:35 +0000528}
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000529
Dan Gohman49d08a52007-05-08 15:14:19 +0000530/// ApproximateLoopSize - Approximate the size of the loop.
Andrew Trickf7656012011-10-01 01:39:05 +0000531static unsigned ApproximateLoopSize(const Loop *L, unsigned &NumCalls,
Justin Lebar6827de12016-03-14 23:15:34 +0000532 bool &NotDuplicatable, bool &Convergent,
Hal Finkel57f03dd2014-09-07 13:49:57 +0000533 const TargetTransformInfo &TTI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000534 AssumptionCache *AC) {
Hal Finkel57f03dd2014-09-07 13:49:57 +0000535 SmallPtrSet<const Value *, 32> EphValues;
Chandler Carruth66b31302015-01-04 12:03:27 +0000536 CodeMetrics::collectEphemeralValues(L, AC, EphValues);
Hal Finkel57f03dd2014-09-07 13:49:57 +0000537
Dan Gohman969e83a2009-10-31 14:54:17 +0000538 CodeMetrics Metrics;
Sanjay Patel5c967232016-03-08 19:06:12 +0000539 for (BasicBlock *BB : L->blocks())
540 Metrics.analyzeBasicBlock(BB, TTI, EphValues);
Owen Anderson04cf3fd2010-09-09 20:32:23 +0000541 NumCalls = Metrics.NumInlineCandidates;
James Molloy4f6fb952012-12-20 16:04:27 +0000542 NotDuplicatable = Metrics.notDuplicatable;
Justin Lebar6827de12016-03-14 23:15:34 +0000543 Convergent = Metrics.convergent;
Andrew Trick279e7a62011-07-23 00:29:16 +0000544
Owen Anderson62ea1b72010-09-09 19:07:31 +0000545 unsigned LoopSize = Metrics.NumInsts;
Andrew Trick279e7a62011-07-23 00:29:16 +0000546
Owen Anderson62ea1b72010-09-09 19:07:31 +0000547 // Don't allow an estimate of size zero. This would allows unrolling of loops
548 // with huge iteration counts, which is a compile time problem even if it's
Hal Finkel38dd5902015-01-10 00:30:55 +0000549 // not a problem for code quality. Also, the code using this size may assume
550 // that each loop has at least three instructions (likely a conditional
551 // branch, a comparison feeding that branch, and some kind of loop increment
552 // feeding that comparison instruction).
553 LoopSize = std::max(LoopSize, 3u);
Andrew Trick279e7a62011-07-23 00:29:16 +0000554
Owen Anderson62ea1b72010-09-09 19:07:31 +0000555 return LoopSize;
Chris Lattner946b2552004-04-18 05:20:17 +0000556}
557
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000558// Returns the loop hint metadata node with the given name (for example,
559// "llvm.loop.unroll.count"). If no such metadata node exists, then nullptr is
560// returned.
Jingyue Wu49a766e2015-02-02 20:41:11 +0000561static MDNode *GetUnrollMetadataForLoop(const Loop *L, StringRef Name) {
562 if (MDNode *LoopID = L->getLoopID())
563 return GetUnrollMetadata(LoopID, Name);
564 return nullptr;
Eli Benderskyff903242014-06-16 23:53:02 +0000565}
566
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000567// Returns true if the loop has an unroll(full) pragma.
568static bool HasUnrollFullPragma(const Loop *L) {
Jingyue Wu0220df02015-02-01 02:27:45 +0000569 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.full");
Eli Benderskyff903242014-06-16 23:53:02 +0000570}
571
Mark Heffernan89391542015-08-10 17:28:08 +0000572// Returns true if the loop has an unroll(enable) pragma. This metadata is used
573// for both "#pragma unroll" and "#pragma clang loop unroll(enable)" directives.
574static bool HasUnrollEnablePragma(const Loop *L) {
575 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.enable");
576}
577
Eli Benderskyff903242014-06-16 23:53:02 +0000578// Returns true if the loop has an unroll(disable) pragma.
579static bool HasUnrollDisablePragma(const Loop *L) {
Jingyue Wu0220df02015-02-01 02:27:45 +0000580 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.disable");
Eli Benderskyff903242014-06-16 23:53:02 +0000581}
582
Kevin Qin715b01e2015-03-09 06:14:18 +0000583// Returns true if the loop has an runtime unroll(disable) pragma.
584static bool HasRuntimeUnrollDisablePragma(const Loop *L) {
585 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.runtime.disable");
586}
587
Eli Benderskyff903242014-06-16 23:53:02 +0000588// If loop has an unroll_count pragma return the (necessarily
589// positive) value from the pragma. Otherwise return 0.
590static unsigned UnrollCountPragmaValue(const Loop *L) {
Jingyue Wu49a766e2015-02-02 20:41:11 +0000591 MDNode *MD = GetUnrollMetadataForLoop(L, "llvm.loop.unroll.count");
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000592 if (MD) {
593 assert(MD->getNumOperands() == 2 &&
594 "Unroll count hint metadata should have two operands.");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000595 unsigned Count =
596 mdconst::extract<ConstantInt>(MD->getOperand(1))->getZExtValue();
Eli Benderskyff903242014-06-16 23:53:02 +0000597 assert(Count >= 1 && "Unroll count must be positive.");
598 return Count;
599 }
600 return 0;
601}
602
Mark Heffernan053a6862014-07-18 21:04:33 +0000603// Remove existing unroll metadata and add unroll disable metadata to
604// indicate the loop has already been unrolled. This prevents a loop
605// from being unrolled more than is directed by a pragma if the loop
606// unrolling pass is run more than once (which it generally is).
607static void SetLoopAlreadyUnrolled(Loop *L) {
608 MDNode *LoopID = L->getLoopID();
Mark Heffernan053a6862014-07-18 21:04:33 +0000609 // First remove any existing loop unrolling metadata.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000610 SmallVector<Metadata *, 4> MDs;
Mark Heffernan053a6862014-07-18 21:04:33 +0000611 // Reserve first location for self reference to the LoopID metadata node.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000612 MDs.push_back(nullptr);
Evgeny Stupachenko3e2f3892016-06-08 20:21:24 +0000613
614 if (LoopID) {
615 for (unsigned i = 1, ie = LoopID->getNumOperands(); i < ie; ++i) {
616 bool IsUnrollMetadata = false;
617 MDNode *MD = dyn_cast<MDNode>(LoopID->getOperand(i));
618 if (MD) {
619 const MDString *S = dyn_cast<MDString>(MD->getOperand(0));
620 IsUnrollMetadata = S && S->getString().startswith("llvm.loop.unroll.");
621 }
622 if (!IsUnrollMetadata)
623 MDs.push_back(LoopID->getOperand(i));
Mark Heffernan053a6862014-07-18 21:04:33 +0000624 }
Mark Heffernan053a6862014-07-18 21:04:33 +0000625 }
626
627 // Add unroll(disable) metadata to disable future unrolling.
628 LLVMContext &Context = L->getHeader()->getContext();
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000629 SmallVector<Metadata *, 1> DisableOperands;
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000630 DisableOperands.push_back(MDString::get(Context, "llvm.loop.unroll.disable"));
Mark Heffernanf3764da2014-07-18 21:29:41 +0000631 MDNode *DisableNode = MDNode::get(Context, DisableOperands);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000632 MDs.push_back(DisableNode);
Mark Heffernan053a6862014-07-18 21:04:33 +0000633
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000634 MDNode *NewLoopID = MDNode::get(Context, MDs);
Mark Heffernan053a6862014-07-18 21:04:33 +0000635 // Set operand 0 to refer to the loop id itself.
636 NewLoopID->replaceOperandWith(0, NewLoopID);
637 L->setLoopID(NewLoopID);
Mark Heffernan053a6862014-07-18 21:04:33 +0000638}
639
Justin Bogner921b04e2016-01-12 01:06:32 +0000640static bool canUnrollCompletely(Loop *L, unsigned Threshold,
641 unsigned PercentDynamicCostSavedThreshold,
642 unsigned DynamicCostSavingsDiscount,
643 uint64_t UnrolledCost,
644 uint64_t RolledDynamicCost) {
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000645 if (Threshold == NoThreshold) {
646 DEBUG(dbgs() << " Can fully unroll, because no threshold is set.\n");
647 return true;
648 }
649
Chandler Carruth9dabd142015-06-05 17:01:43 +0000650 if (UnrolledCost <= Threshold) {
651 DEBUG(dbgs() << " Can fully unroll, because unrolled cost: "
652 << UnrolledCost << "<" << Threshold << "\n");
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000653 return true;
654 }
655
Chandler Carruth9dabd142015-06-05 17:01:43 +0000656 assert(UnrolledCost && "UnrolledCost can't be 0 at this point.");
657 assert(RolledDynamicCost >= UnrolledCost &&
658 "Cannot have a higher unrolled cost than a rolled cost!");
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000659
Chandler Carruth9dabd142015-06-05 17:01:43 +0000660 // Compute the percentage of the dynamic cost in the rolled form that is
661 // saved when unrolled. If unrolling dramatically reduces the estimated
662 // dynamic cost of the loop, we use a higher threshold to allow more
663 // unrolling.
664 unsigned PercentDynamicCostSaved =
665 (uint64_t)(RolledDynamicCost - UnrolledCost) * 100ull / RolledDynamicCost;
666
667 if (PercentDynamicCostSaved >= PercentDynamicCostSavedThreshold &&
668 (int64_t)UnrolledCost - (int64_t)DynamicCostSavingsDiscount <=
669 (int64_t)Threshold) {
670 DEBUG(dbgs() << " Can fully unroll, because unrolling will reduce the "
Dehao Chend55bc4c2016-05-05 00:54:54 +0000671 "expected dynamic cost by "
672 << PercentDynamicCostSaved << "% (threshold: "
673 << PercentDynamicCostSavedThreshold << "%)\n"
Chandler Carruth9dabd142015-06-05 17:01:43 +0000674 << " and the unrolled cost (" << UnrolledCost
675 << ") is less than the max threshold ("
676 << DynamicCostSavingsDiscount << ").\n");
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000677 return true;
678 }
679
680 DEBUG(dbgs() << " Too large to fully unroll:\n");
Chandler Carruth9dabd142015-06-05 17:01:43 +0000681 DEBUG(dbgs() << " Threshold: " << Threshold << "\n");
682 DEBUG(dbgs() << " Max threshold: " << DynamicCostSavingsDiscount << "\n");
683 DEBUG(dbgs() << " Percent cost saved threshold: "
684 << PercentDynamicCostSavedThreshold << "%\n");
685 DEBUG(dbgs() << " Unrolled cost: " << UnrolledCost << "\n");
686 DEBUG(dbgs() << " Rolled dynamic cost: " << RolledDynamicCost << "\n");
687 DEBUG(dbgs() << " Percent cost saved: " << PercentDynamicCostSaved
688 << "\n");
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000689 return false;
690}
691
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000692// Returns true if unroll count was set explicitly.
693// Calculates unroll count and writes it to UP.Count.
694static bool computeUnrollCount(Loop *L, const TargetTransformInfo &TTI,
695 DominatorTree &DT, LoopInfo *LI,
696 ScalarEvolution *SE, unsigned TripCount,
697 unsigned TripMultiple, unsigned LoopSize,
698 TargetTransformInfo::UnrollingPreferences &UP) {
699 // BEInsns represents number of instructions optimized when "back edge"
700 // becomes "fall through" in unrolled loop.
701 // For now we count a conditional branch on a backedge and a comparison
702 // feeding it.
703 unsigned BEInsns = 2;
704 // Check for explicit Count.
705 // 1st priority is unroll count set by "unroll-count" option.
706 bool UserUnrollCount = UnrollCount.getNumOccurrences() > 0;
707 if (UserUnrollCount) {
708 UP.Count = UnrollCount;
709 UP.AllowExpensiveTripCount = true;
710 UP.Force = true;
711 if (UP.AllowRemainder &&
712 (LoopSize - BEInsns) * UP.Count + BEInsns < UP.Threshold)
713 return true;
714 }
715
716 // 2nd priority is unroll count set by pragma.
717 unsigned PragmaCount = UnrollCountPragmaValue(L);
718 if (PragmaCount > 0) {
719 UP.Count = PragmaCount;
720 UP.Runtime = true;
721 UP.AllowExpensiveTripCount = true;
722 UP.Force = true;
723 if (UP.AllowRemainder &&
724 (LoopSize - BEInsns) * UP.Count + BEInsns < PragmaUnrollThreshold)
725 return true;
726 }
727 bool PragmaFullUnroll = HasUnrollFullPragma(L);
728 if (PragmaFullUnroll && TripCount != 0) {
729 UP.Count = TripCount;
730 if ((LoopSize - BEInsns) * UP.Count + BEInsns < PragmaUnrollThreshold)
731 return false;
732 }
733
734 bool PragmaEnableUnroll = HasUnrollEnablePragma(L);
735 bool ExplicitUnroll = PragmaCount > 0 || PragmaFullUnroll ||
736 PragmaEnableUnroll || UserUnrollCount;
737
738 uint64_t UnrolledSize;
739 DebugLoc LoopLoc = L->getStartLoc();
740 Function *F = L->getHeader()->getParent();
741 LLVMContext &Ctx = F->getContext();
742
743 if (ExplicitUnroll && TripCount != 0) {
744 // If the loop has an unrolling pragma, we want to be more aggressive with
745 // unrolling limits. Set thresholds to at least the PragmaThreshold value
746 // which is larger than the default limits.
747 UP.Threshold = std::max<unsigned>(UP.Threshold, PragmaUnrollThreshold);
748 UP.PartialThreshold =
749 std::max<unsigned>(UP.PartialThreshold, PragmaUnrollThreshold);
750 }
751
752 // 3rd priority is full unroll count.
753 // Full unroll make sense only when TripCount could be staticaly calculated.
754 // Also we need to check if we exceed FullUnrollMaxCount.
755 if (TripCount && TripCount <= UP.FullUnrollMaxCount) {
756 // When computing the unrolled size, note that BEInsns are not replicated
757 // like the rest of the loop body.
758 UnrolledSize = (uint64_t)(LoopSize - BEInsns) * TripCount + BEInsns;
759 if (canUnrollCompletely(L, UP.Threshold, 100, UP.DynamicCostSavingsDiscount,
760 UnrolledSize, UnrolledSize)) {
761 UP.Count = TripCount;
762 return ExplicitUnroll;
763 } else {
764 // The loop isn't that small, but we still can fully unroll it if that
765 // helps to remove a significant number of instructions.
766 // To check that, run additional analysis on the loop.
767 if (Optional<EstimatedUnrollCost> Cost = analyzeLoopUnrollCost(
768 L, TripCount, DT, *SE, TTI,
769 UP.Threshold + UP.DynamicCostSavingsDiscount))
770 if (canUnrollCompletely(L, UP.Threshold,
771 UP.PercentDynamicCostSavedThreshold,
772 UP.DynamicCostSavingsDiscount,
773 Cost->UnrolledCost, Cost->RolledDynamicCost)) {
774 UP.Count = TripCount;
775 return ExplicitUnroll;
776 }
777 }
778 }
779
780 // 4rd priority is partial unrolling.
781 // Try partial unroll only when TripCount could be staticaly calculated.
782 if (TripCount) {
783 if (UP.Count == 0)
784 UP.Count = TripCount;
785 UP.Partial |= ExplicitUnroll;
786 if (!UP.Partial) {
787 DEBUG(dbgs() << " will not try to unroll partially because "
788 << "-unroll-allow-partial not given\n");
789 UP.Count = 0;
790 return false;
791 }
792 if (UP.PartialThreshold != NoThreshold) {
793 // Reduce unroll count to be modulo of TripCount for partial unrolling.
794 UnrolledSize = (uint64_t)(LoopSize - BEInsns) * UP.Count + BEInsns;
795 if (UnrolledSize > UP.PartialThreshold)
796 UP.Count = (std::max(UP.PartialThreshold, 3u) - BEInsns) /
797 (LoopSize - BEInsns);
798 if (UP.Count > UP.MaxCount)
799 UP.Count = UP.MaxCount;
800 while (UP.Count != 0 && TripCount % UP.Count != 0)
801 UP.Count--;
802 if (UP.AllowRemainder && UP.Count <= 1) {
803 // If there is no Count that is modulo of TripCount, set Count to
804 // largest power-of-two factor that satisfies the threshold limit.
805 // As we'll create fixup loop, do the type of unrolling only if
806 // remainder loop is allowed.
807 UP.Count = DefaultUnrollRuntimeCount;
808 UnrolledSize = (LoopSize - BEInsns) * UP.Count + BEInsns;
809 while (UP.Count != 0 && UnrolledSize > UP.PartialThreshold) {
810 UP.Count >>= 1;
811 UnrolledSize = (LoopSize - BEInsns) * UP.Count + BEInsns;
812 }
813 }
814 if (UP.Count < 2) {
815 if (PragmaEnableUnroll)
816 emitOptimizationRemarkMissed(
817 Ctx, DEBUG_TYPE, *F, LoopLoc,
818 "Unable to unroll loop as directed by unroll(enable) pragma "
819 "because unrolled size is too large.");
820 UP.Count = 0;
821 }
822 } else {
823 UP.Count = TripCount;
824 }
825 if ((PragmaFullUnroll || PragmaEnableUnroll) && TripCount &&
826 UP.Count != TripCount)
827 emitOptimizationRemarkMissed(
828 Ctx, DEBUG_TYPE, *F, LoopLoc,
829 "Unable to fully unroll loop as directed by unroll pragma because "
830 "unrolled size is too large.");
831 return ExplicitUnroll;
832 }
833 assert(TripCount == 0 &&
834 "All cases when TripCount is constant should be covered here.");
835 if (PragmaFullUnroll)
836 emitOptimizationRemarkMissed(
837 Ctx, DEBUG_TYPE, *F, LoopLoc,
838 "Unable to fully unroll loop as directed by unroll(full) pragma "
839 "because loop has a runtime trip count.");
840
841 // 5th priority is runtime unrolling.
842 // Don't unroll a runtime trip count loop when it is disabled.
843 if (HasRuntimeUnrollDisablePragma(L)) {
844 UP.Count = 0;
845 return false;
846 }
847 // Reduce count based on the type of unrolling and the threshold values.
848 UP.Runtime |= PragmaEnableUnroll || PragmaCount > 0 || UserUnrollCount;
849 if (!UP.Runtime) {
850 DEBUG(dbgs() << " will not try to unroll loop with runtime trip count "
851 << "-unroll-runtime not given\n");
852 UP.Count = 0;
853 return false;
854 }
855 if (UP.Count == 0)
856 UP.Count = DefaultUnrollRuntimeCount;
857 UnrolledSize = (LoopSize - BEInsns) * UP.Count + BEInsns;
858
859 // Reduce unroll count to be the largest power-of-two factor of
860 // the original count which satisfies the threshold limit.
861 while (UP.Count != 0 && UnrolledSize > UP.PartialThreshold) {
862 UP.Count >>= 1;
863 UnrolledSize = (LoopSize - BEInsns) * UP.Count + BEInsns;
864 }
865
Evgeny Stupachenkob7875222016-05-28 00:14:58 +0000866#ifndef NDEBUG
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000867 unsigned OrigCount = UP.Count;
Evgeny Stupachenkob7875222016-05-28 00:14:58 +0000868#endif
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000869
870 if (!UP.AllowRemainder && UP.Count != 0 && (TripMultiple % UP.Count) != 0) {
871 while (UP.Count != 0 && TripMultiple % UP.Count != 0)
872 UP.Count >>= 1;
873 DEBUG(dbgs() << "Remainder loop is restricted (that could architecture "
874 "specific or because the loop contains a convergent "
875 "instruction), so unroll count must divide the trip "
876 "multiple, "
877 << TripMultiple << ". Reducing unroll count from "
878 << OrigCount << " to " << UP.Count << ".\n");
879 if (PragmaCount > 0 && !UP.AllowRemainder)
880 emitOptimizationRemarkMissed(
881 Ctx, DEBUG_TYPE, *F, LoopLoc,
882 Twine("Unable to unroll loop the number of times directed by "
883 "unroll_count pragma because remainder loop is restricted "
884 "(that could architecture specific or because the loop "
885 "contains a convergent instruction) and so must have an unroll "
886 "count that divides the loop trip multiple of ") +
887 Twine(TripMultiple) + ". Unrolling instead " + Twine(UP.Count) +
888 " time(s).");
889 }
890
891 if (UP.Count > UP.MaxCount)
892 UP.Count = UP.MaxCount;
893 DEBUG(dbgs() << " partially unrolling with count: " << UP.Count << "\n");
894 if (UP.Count < 2)
895 UP.Count = 0;
896 return ExplicitUnroll;
897}
898
Justin Bognerb8d82ab2016-01-12 05:21:37 +0000899static bool tryToUnrollLoop(Loop *L, DominatorTree &DT, LoopInfo *LI,
900 ScalarEvolution *SE, const TargetTransformInfo &TTI,
901 AssumptionCache &AC, bool PreserveLCSSA,
902 Optional<unsigned> ProvidedCount,
903 Optional<unsigned> ProvidedThreshold,
904 Optional<bool> ProvidedAllowPartial,
905 Optional<bool> ProvidedRuntime) {
Evgeny Stupachenkob7875222016-05-28 00:14:58 +0000906 DEBUG(dbgs() << "Loop Unroll: F[" << L->getHeader()->getParent()->getName()
907 << "] Loop %" << L->getHeader()->getName() << "\n");
Eli Benderskyff903242014-06-16 23:53:02 +0000908 if (HasUnrollDisablePragma(L)) {
909 return false;
910 }
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000911
912 unsigned NumInlineCandidates;
913 bool NotDuplicatable;
914 bool Convergent;
915 unsigned LoopSize = ApproximateLoopSize(
916 L, NumInlineCandidates, NotDuplicatable, Convergent, TTI, &AC);
917 DEBUG(dbgs() << " Loop Size = " << LoopSize << "\n");
918 if (NotDuplicatable) {
919 DEBUG(dbgs() << " Not unrolling loop which contains non-duplicatable"
920 << " instructions.\n");
921 return false;
922 }
923 if (NumInlineCandidates != 0) {
924 DEBUG(dbgs() << " Not unrolling loop with inlinable calls.\n");
925 return false;
926 }
David Majnemer4a697c32016-06-15 00:19:56 +0000927 if (!L->isLoopSimplifyForm()) {
928 DEBUG(
929 dbgs() << " Not unrolling loop which is not in loop-simplify form.\n");
930 return false;
931 }
Andrew Trick279e7a62011-07-23 00:29:16 +0000932
Andrew Trick2b6860f2011-08-11 23:36:16 +0000933 // Find trip count and trip multiple if count is not available
934 unsigned TripCount = 0;
Andrew Trick1cabe542011-07-23 00:33:05 +0000935 unsigned TripMultiple = 1;
Chandler Carruth6666c272014-10-11 00:12:11 +0000936 // If there are multiple exiting blocks but one of them is the latch, use the
937 // latch for the trip count estimation. Otherwise insist on a single exiting
938 // block for the trip count estimation.
939 BasicBlock *ExitingBlock = L->getLoopLatch();
940 if (!ExitingBlock || !L->isLoopExiting(ExitingBlock))
941 ExitingBlock = L->getExitingBlock();
942 if (ExitingBlock) {
943 TripCount = SE->getSmallConstantTripCount(L, ExitingBlock);
944 TripMultiple = SE->getSmallConstantTripMultiple(L, ExitingBlock);
Andrew Trick2b6860f2011-08-11 23:36:16 +0000945 }
Hal Finkel8f2e7002013-09-11 19:25:43 +0000946
Justin Bognera1dd4932016-01-12 00:55:26 +0000947 TargetTransformInfo::UnrollingPreferences UP = gatherUnrollingPreferences(
948 L, TTI, ProvidedThreshold, ProvidedCount, ProvidedAllowPartial,
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000949 ProvidedRuntime);
Justin Bognera1dd4932016-01-12 00:55:26 +0000950
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000951 // If the loop contains a convergent operation, the prelude we'd add
952 // to do the first few instructions before we hit the unrolled loop
953 // is unsafe -- it adds a control-flow dependency to the convergent
954 // operation. Therefore restrict remainder loop (try unrollig without).
955 //
956 // TODO: This is quite conservative. In practice, convergent_op()
957 // is likely to be called unconditionally in the loop. In this
958 // case, the program would be ill-formed (on most architectures)
959 // unless n were the same on all threads in a thread group.
960 // Assuming n is the same on all threads, any kind of unrolling is
961 // safe. But currently llvm's notion of convergence isn't powerful
962 // enough to express this.
963 if (Convergent)
964 UP.AllowRemainder = false;
Eli Benderskydc6de2c2014-06-12 18:05:39 +0000965
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000966 bool IsCountSetExplicitly = computeUnrollCount(L, TTI, DT, LI, SE, TripCount,
967 TripMultiple, LoopSize, UP);
968 if (!UP.Count)
Eli Benderskyff903242014-06-16 23:53:02 +0000969 return false;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000970 // Unroll factor (Count) must be less or equal to TripCount.
971 if (TripCount && UP.Count > TripCount)
972 UP.Count = TripCount;
Dan Gohman2980d9d2007-05-11 20:53:41 +0000973
Dan Gohman3dc2d922008-05-14 00:24:14 +0000974 // Unroll the loop.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000975 if (!UnrollLoop(L, UP.Count, TripCount, UP.Force, UP.Runtime,
976 UP.AllowExpensiveTripCount, TripMultiple, LI, SE, &DT, &AC,
977 PreserveLCSSA))
Dan Gohman3dc2d922008-05-14 00:24:14 +0000978 return false;
Dan Gohman2980d9d2007-05-11 20:53:41 +0000979
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000980 // If loop has an unroll count pragma or unrolled by explicitly set count
981 // mark loop as unrolled to prevent unrolling beyond that requested.
982 if (IsCountSetExplicitly)
David L Kreitzer8d441eb2016-03-25 14:24:52 +0000983 SetLoopAlreadyUnrolled(L);
Chris Lattner946b2552004-04-18 05:20:17 +0000984 return true;
985}
Justin Bognerb8d82ab2016-01-12 05:21:37 +0000986
987namespace {
988class LoopUnroll : public LoopPass {
989public:
990 static char ID; // Pass ID, replacement for typeid
991 LoopUnroll(Optional<unsigned> Threshold = None,
992 Optional<unsigned> Count = None,
993 Optional<bool> AllowPartial = None, Optional<bool> Runtime = None)
Benjamin Kramer82de7d32016-05-27 14:27:24 +0000994 : LoopPass(ID), ProvidedCount(std::move(Count)),
995 ProvidedThreshold(Threshold), ProvidedAllowPartial(AllowPartial),
996 ProvidedRuntime(Runtime) {
Justin Bognerb8d82ab2016-01-12 05:21:37 +0000997 initializeLoopUnrollPass(*PassRegistry::getPassRegistry());
998 }
999
1000 Optional<unsigned> ProvidedCount;
1001 Optional<unsigned> ProvidedThreshold;
1002 Optional<bool> ProvidedAllowPartial;
1003 Optional<bool> ProvidedRuntime;
1004
1005 bool runOnLoop(Loop *L, LPPassManager &) override {
Andrew Kayloraa641a52016-04-22 22:06:11 +00001006 if (skipLoop(L))
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001007 return false;
1008
1009 Function &F = *L->getHeader()->getParent();
1010
1011 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
1012 LoopInfo *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
1013 ScalarEvolution *SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
1014 const TargetTransformInfo &TTI =
1015 getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
1016 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
1017 bool PreserveLCSSA = mustPreserveAnalysisID(LCSSAID);
1018
1019 return tryToUnrollLoop(L, DT, LI, SE, TTI, AC, PreserveLCSSA, ProvidedCount,
1020 ProvidedThreshold, ProvidedAllowPartial,
1021 ProvidedRuntime);
1022 }
1023
1024 /// This transformation requires natural loop information & requires that
1025 /// loop preheaders be inserted into the CFG...
1026 ///
1027 void getAnalysisUsage(AnalysisUsage &AU) const override {
1028 AU.addRequired<AssumptionCacheTracker>();
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001029 AU.addRequired<TargetTransformInfoWrapperPass>();
Chandler Carruth31088a92016-02-19 10:45:18 +00001030 // FIXME: Loop passes are required to preserve domtree, and for now we just
1031 // recreate dom info if anything gets unrolled.
1032 getLoopAnalysisUsage(AU);
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001033 }
1034};
1035}
1036
1037char LoopUnroll::ID = 0;
1038INITIALIZE_PASS_BEGIN(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001039INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruth31088a92016-02-19 10:45:18 +00001040INITIALIZE_PASS_DEPENDENCY(LoopPass)
1041INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001042INITIALIZE_PASS_END(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
1043
1044Pass *llvm::createLoopUnrollPass(int Threshold, int Count, int AllowPartial,
1045 int Runtime) {
1046 // TODO: It would make more sense for this function to take the optionals
1047 // directly, but that's dangerous since it would silently break out of tree
1048 // callers.
1049 return new LoopUnroll(Threshold == -1 ? None : Optional<unsigned>(Threshold),
1050 Count == -1 ? None : Optional<unsigned>(Count),
1051 AllowPartial == -1 ? None
1052 : Optional<bool>(AllowPartial),
1053 Runtime == -1 ? None : Optional<bool>(Runtime));
1054}
1055
1056Pass *llvm::createSimpleLoopUnrollPass() {
1057 return llvm::createLoopUnrollPass(-1, -1, 0, 0);
1058}
Sean Silvae3c18a52016-07-19 23:54:23 +00001059
1060PreservedAnalyses LoopUnrollPass::run(Loop &L, AnalysisManager<Loop> &AM) {
1061 const auto &FAM =
1062 AM.getResult<FunctionAnalysisManagerLoopProxy>(L).getManager();
1063 Function *F = L.getHeader()->getParent();
1064
1065
1066 DominatorTree *DT = FAM.getCachedResult<DominatorTreeAnalysis>(*F);
1067 LoopInfo *LI = FAM.getCachedResult<LoopAnalysis>(*F);
1068 ScalarEvolution *SE = FAM.getCachedResult<ScalarEvolutionAnalysis>(*F);
1069 auto *TTI = FAM.getCachedResult<TargetIRAnalysis>(*F);
1070 auto *AC = FAM.getCachedResult<AssumptionAnalysis>(*F);
1071 if (!DT)
1072 report_fatal_error("LoopUnrollPass: DominatorTreeAnalysis not cached at a higher level");
1073 if (!LI)
1074 report_fatal_error("LoopUnrollPass: LoopAnalysis not cached at a higher level");
1075 if (!SE)
1076 report_fatal_error("LoopUnrollPass: ScalarEvolutionAnalysis not cached at a higher level");
1077 if (!TTI)
1078 report_fatal_error("LoopUnrollPass: TargetIRAnalysis not cached at a higher level");
1079 if (!AC)
1080 report_fatal_error("LoopUnrollPass: AssumptionAnalysis not cached at a higher level");
1081
1082 bool Changed = tryToUnrollLoop(
1083 &L, *DT, LI, SE, *TTI, *AC, /*PreserveLCSSA*/ true, ProvidedCount,
1084 ProvidedThreshold, ProvidedAllowPartial, ProvidedRuntime);
1085
1086 if (!Changed)
1087 return PreservedAnalyses::all();
1088 return getLoopPassPreservedAnalyses();
1089}