blob: 94467848c0beaec5ad3ccec32f34e7ff27377a52 [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
Chandler Carruth3b057b32015-02-13 03:57:40 +000015#include "llvm/ADT/SetVector.h"
Chandler Carruth66b31302015-01-04 12:03:27 +000016#include "llvm/Analysis/AssumptionCache.h"
Chris Lattner679572e2011-01-02 07:35:53 +000017#include "llvm/Analysis/CodeMetrics.h"
Dehao Chend55bc4c2016-05-05 00:54:54 +000018#include "llvm/Analysis/GlobalsModRef.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000019#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "llvm/Analysis/LoopPass.h"
Michael Zolotukhin1da4afd2016-02-08 23:03:59 +000021#include "llvm/Analysis/LoopUnrollAnalyzer.h"
Dan Gohman0141c132010-07-26 18:11:16 +000022#include "llvm/Analysis/ScalarEvolution.h"
Michael Zolotukhina9aadd22015-02-05 02:34:00 +000023#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Chandler Carruthbb9caa92013-01-21 13:04:33 +000024#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000025#include "llvm/IR/DataLayout.h"
Eli Benderskyff903242014-06-16 23:53:02 +000026#include "llvm/IR/DiagnosticInfo.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000027#include "llvm/IR/Dominators.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000028#include "llvm/IR/InstVisitor.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/IntrinsicInst.h"
Eli Benderskyff903242014-06-16 23:53:02 +000030#include "llvm/IR/Metadata.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000031#include "llvm/Support/CommandLine.h"
32#include "llvm/Support/Debug.h"
Daniel Dunbar0dd5e1e2009-07-25 00:23:56 +000033#include "llvm/Support/raw_ostream.h"
Dehao Chend55bc4c2016-05-05 00:54:54 +000034#include "llvm/Transforms/Scalar.h"
Chandler Carruth31088a92016-02-19 10:45:18 +000035#include "llvm/Transforms/Utils/LoopUtils.h"
Dan Gohman3dc2d922008-05-14 00:24:14 +000036#include "llvm/Transforms/Utils/UnrollLoop.h"
Duncan Sands67933e62008-05-16 09:30:00 +000037#include <climits>
Benjamin Kramer82de7d32016-05-27 14:27:24 +000038#include <utility>
Chris Lattner946b2552004-04-18 05:20:17 +000039
Dan Gohman3dc2d922008-05-14 00:24:14 +000040using namespace llvm;
Chris Lattner946b2552004-04-18 05:20:17 +000041
Chandler Carruth964daaa2014-04-22 02:55:47 +000042#define DEBUG_TYPE "loop-unroll"
43
Dan Gohmand78c4002008-05-13 00:00:25 +000044static cl::opt<unsigned>
Justin Bognera1dd4932016-01-12 00:55:26 +000045 UnrollThreshold("unroll-threshold", cl::Hidden,
Chandler Carruth9dabd142015-06-05 17:01:43 +000046 cl::desc("The baseline cost threshold for loop unrolling"));
47
48static cl::opt<unsigned> UnrollPercentDynamicCostSavedThreshold(
Michael Zolotukhin8f7a2422016-05-24 23:00:05 +000049 "unroll-percent-dynamic-cost-saved-threshold", cl::init(50), cl::Hidden,
Chandler Carruth9dabd142015-06-05 17:01:43 +000050 cl::desc("The percentage of estimated dynamic cost which must be saved by "
51 "unrolling to allow unrolling up to the max threshold."));
52
53static cl::opt<unsigned> UnrollDynamicCostSavingsDiscount(
Michael Zolotukhin8f7a2422016-05-24 23:00:05 +000054 "unroll-dynamic-cost-savings-discount", cl::init(100), cl::Hidden,
Chandler Carruth9dabd142015-06-05 17:01:43 +000055 cl::desc("This is the amount discounted from the total unroll cost when "
56 "the unrolled form has a high dynamic cost savings (triggered by "
57 "the '-unroll-perecent-dynamic-cost-saved-threshold' flag)."));
Dan Gohmand78c4002008-05-13 00:00:25 +000058
Michael Zolotukhina9aadd22015-02-05 02:34:00 +000059static cl::opt<unsigned> UnrollMaxIterationsCountToAnalyze(
Michael Zolotukhin8f7a2422016-05-24 23:00:05 +000060 "unroll-max-iteration-count-to-analyze", cl::init(10), cl::Hidden,
Michael Zolotukhina9aadd22015-02-05 02:34:00 +000061 cl::desc("Don't allow loop unrolling to simulate more than this number of"
62 "iterations when checking full unroll profitability"));
63
Dehao Chend55bc4c2016-05-05 00:54:54 +000064static cl::opt<unsigned> UnrollCount(
65 "unroll-count", cl::Hidden,
66 cl::desc("Use this unroll count for all loops including those with "
67 "unroll_count pragma values, for testing purposes"));
Dan Gohmand78c4002008-05-13 00:00:25 +000068
Dehao Chend55bc4c2016-05-05 00:54:54 +000069static cl::opt<unsigned> UnrollMaxCount(
70 "unroll-max-count", cl::Hidden,
71 cl::desc("Set the max unroll count for partial and runtime unrolling, for"
72 "testing purposes"));
Fiona Glaser045afc42016-04-06 16:57:25 +000073
Dehao Chend55bc4c2016-05-05 00:54:54 +000074static cl::opt<unsigned> UnrollFullMaxCount(
75 "unroll-full-max-count", cl::Hidden,
76 cl::desc(
77 "Set the max unroll count for full unrolling, for testing purposes"));
Fiona Glaser045afc42016-04-06 16:57:25 +000078
Matthijs Kooijman98b5c162008-07-29 13:21:23 +000079static cl::opt<bool>
Dehao Chend55bc4c2016-05-05 00:54:54 +000080 UnrollAllowPartial("unroll-allow-partial", cl::Hidden,
81 cl::desc("Allows loops to be partially unrolled until "
82 "-unroll-threshold loop size is reached."));
Matthijs Kooijman98b5c162008-07-29 13:21:23 +000083
Andrew Trickd04d15292011-12-09 06:19:40 +000084static cl::opt<bool>
Dehao Chend55bc4c2016-05-05 00:54:54 +000085 UnrollRuntime("unroll-runtime", cl::ZeroOrMore, cl::Hidden,
86 cl::desc("Unroll loops with run-time trip counts"));
Andrew Trickd04d15292011-12-09 06:19:40 +000087
Dehao Chend55bc4c2016-05-05 00:54:54 +000088static cl::opt<unsigned> PragmaUnrollThreshold(
89 "pragma-unroll-threshold", cl::init(16 * 1024), cl::Hidden,
90 cl::desc("Unrolled size limit for loops with an unroll(full) or "
91 "unroll_count pragma."));
Justin Bognera1dd4932016-01-12 00:55:26 +000092
93/// A magic value for use with the Threshold parameter to indicate
94/// that the loop unroll should be performed regardless of how much
95/// code expansion would result.
96static const unsigned NoThreshold = UINT_MAX;
97
98/// Default unroll count for loops with run-time trip count if
99/// -unroll-count is not set
100static const unsigned DefaultUnrollRuntimeCount = 8;
101
102/// Gather the various unrolling parameters based on the defaults, compiler
103/// flags, TTI overrides, pragmas, and user specified parameters.
104static TargetTransformInfo::UnrollingPreferences gatherUnrollingPreferences(
105 Loop *L, const TargetTransformInfo &TTI, Optional<unsigned> UserThreshold,
106 Optional<unsigned> UserCount, Optional<bool> UserAllowPartial,
107 Optional<bool> UserRuntime, unsigned PragmaCount, bool PragmaFullUnroll,
108 bool PragmaEnableUnroll, unsigned TripCount) {
109 TargetTransformInfo::UnrollingPreferences UP;
110
111 // Set up the defaults
112 UP.Threshold = 150;
113 UP.PercentDynamicCostSavedThreshold = 20;
114 UP.DynamicCostSavingsDiscount = 2000;
Hans Wennborg719b26b2016-05-10 21:45:55 +0000115 UP.OptSizeThreshold = 0;
Justin Bognera1dd4932016-01-12 00:55:26 +0000116 UP.PartialThreshold = UP.Threshold;
Hans Wennborg719b26b2016-05-10 21:45:55 +0000117 UP.PartialOptSizeThreshold = 0;
Justin Bognera1dd4932016-01-12 00:55:26 +0000118 UP.Count = 0;
119 UP.MaxCount = UINT_MAX;
Fiona Glaser045afc42016-04-06 16:57:25 +0000120 UP.FullUnrollMaxCount = UINT_MAX;
Justin Bognera1dd4932016-01-12 00:55:26 +0000121 UP.Partial = false;
122 UP.Runtime = false;
123 UP.AllowExpensiveTripCount = false;
124
125 // Override with any target specific settings
126 TTI.getUnrollingPreferences(L, UP);
127
128 // Apply size attributes
129 if (L->getHeader()->getParent()->optForSize()) {
130 UP.Threshold = UP.OptSizeThreshold;
131 UP.PartialThreshold = UP.PartialOptSizeThreshold;
132 }
133
134 // Apply unroll count pragmas
135 if (PragmaCount)
136 UP.Count = PragmaCount;
137 else if (PragmaFullUnroll)
138 UP.Count = TripCount;
139
140 // Apply any user values specified by cl::opt
141 if (UnrollThreshold.getNumOccurrences() > 0) {
142 UP.Threshold = UnrollThreshold;
143 UP.PartialThreshold = UnrollThreshold;
144 }
145 if (UnrollPercentDynamicCostSavedThreshold.getNumOccurrences() > 0)
146 UP.PercentDynamicCostSavedThreshold =
147 UnrollPercentDynamicCostSavedThreshold;
148 if (UnrollDynamicCostSavingsDiscount.getNumOccurrences() > 0)
149 UP.DynamicCostSavingsDiscount = UnrollDynamicCostSavingsDiscount;
150 if (UnrollCount.getNumOccurrences() > 0)
151 UP.Count = UnrollCount;
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;
158 if (UnrollRuntime.getNumOccurrences() > 0)
159 UP.Runtime = UnrollRuntime;
160
161 // Apply user values provided by argument
162 if (UserThreshold.hasValue()) {
163 UP.Threshold = *UserThreshold;
164 UP.PartialThreshold = *UserThreshold;
165 }
166 if (UserCount.hasValue())
167 UP.Count = *UserCount;
168 if (UserAllowPartial.hasValue())
169 UP.Partial = *UserAllowPartial;
170 if (UserRuntime.hasValue())
171 UP.Runtime = *UserRuntime;
172
173 if (PragmaCount > 0 ||
174 ((PragmaFullUnroll || PragmaEnableUnroll) && TripCount != 0)) {
175 // If the loop has an unrolling pragma, we want to be more aggressive with
176 // unrolling limits. Set thresholds to at least the PragmaTheshold value
177 // which is larger than the default limits.
178 if (UP.Threshold != NoThreshold)
179 UP.Threshold = std::max<unsigned>(UP.Threshold, PragmaUnrollThreshold);
180 if (UP.PartialThreshold != NoThreshold)
181 UP.PartialThreshold =
182 std::max<unsigned>(UP.PartialThreshold, PragmaUnrollThreshold);
183 }
184
185 return UP;
186}
187
Chris Lattner79a42ac2006-12-19 21:40:18 +0000188namespace {
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000189/// A struct to densely store the state of an instruction after unrolling at
190/// each iteration.
191///
192/// This is designed to work like a tuple of <Instruction *, int> for the
193/// purposes of hashing and lookup, but to be able to associate two boolean
194/// states with each key.
195struct UnrolledInstState {
196 Instruction *I;
197 int Iteration : 30;
198 unsigned IsFree : 1;
199 unsigned IsCounted : 1;
200};
201
202/// Hashing and equality testing for a set of the instruction states.
203struct UnrolledInstStateKeyInfo {
204 typedef DenseMapInfo<Instruction *> PtrInfo;
205 typedef DenseMapInfo<std::pair<Instruction *, int>> PairInfo;
206 static inline UnrolledInstState getEmptyKey() {
207 return {PtrInfo::getEmptyKey(), 0, 0, 0};
208 }
209 static inline UnrolledInstState getTombstoneKey() {
210 return {PtrInfo::getTombstoneKey(), 0, 0, 0};
211 }
212 static inline unsigned getHashValue(const UnrolledInstState &S) {
213 return PairInfo::getHashValue({S.I, S.Iteration});
214 }
215 static inline bool isEqual(const UnrolledInstState &LHS,
216 const UnrolledInstState &RHS) {
217 return PairInfo::isEqual({LHS.I, LHS.Iteration}, {RHS.I, RHS.Iteration});
218 }
219};
220}
221
222namespace {
Chandler Carruth02156082015-05-22 17:41:35 +0000223struct EstimatedUnrollCost {
Chandler Carruth9dabd142015-06-05 17:01:43 +0000224 /// \brief The estimated cost after unrolling.
Chandler Carruthb2fda0d2015-08-05 18:46:21 +0000225 int UnrolledCost;
Chandler Carruth302a1332015-02-13 02:10:56 +0000226
Chandler Carruth9dabd142015-06-05 17:01:43 +0000227 /// \brief The estimated dynamic cost of executing the instructions in the
228 /// rolled form.
Chandler Carruthb2fda0d2015-08-05 18:46:21 +0000229 int RolledDynamicCost;
Chandler Carruth02156082015-05-22 17:41:35 +0000230};
231}
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000232
Chandler Carruth02156082015-05-22 17:41:35 +0000233/// \brief Figure out if the loop is worth full unrolling.
234///
235/// Complete loop unrolling can make some loads constant, and we need to know
236/// if that would expose any further optimization opportunities. This routine
Michael Zolotukhinc4e4f332015-06-11 22:17:39 +0000237/// estimates this optimization. It computes cost of unrolled loop
238/// (UnrolledCost) and dynamic cost of the original loop (RolledDynamicCost). By
239/// dynamic cost we mean that we won't count costs of blocks that are known not
240/// to be executed (i.e. if we have a branch in the loop and we know that at the
241/// given iteration its condition would be resolved to true, we won't add up the
242/// cost of the 'false'-block).
243/// \returns Optional value, holding the RolledDynamicCost and UnrolledCost. If
244/// the analysis failed (no benefits expected from the unrolling, or the loop is
245/// too big to analyze), the returned value is None.
Benjamin Kramerfcdb1c12015-08-20 09:57:22 +0000246static Optional<EstimatedUnrollCost>
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000247analyzeLoopUnrollCost(const Loop *L, unsigned TripCount, DominatorTree &DT,
248 ScalarEvolution &SE, const TargetTransformInfo &TTI,
Chandler Carruthb2fda0d2015-08-05 18:46:21 +0000249 int MaxUnrolledLoopSize) {
Chandler Carruth02156082015-05-22 17:41:35 +0000250 // We want to be able to scale offsets by the trip count and add more offsets
251 // to them without checking for overflows, and we already don't want to
252 // analyze *massive* trip counts, so we force the max to be reasonably small.
253 assert(UnrollMaxIterationsCountToAnalyze < (INT_MAX / 2) &&
254 "The unroll iterations max is too large!");
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000255
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000256 // Only analyze inner loops. We can't properly estimate cost of nested loops
257 // and we won't visit inner loops again anyway.
258 if (!L->empty())
259 return None;
260
Chandler Carruth02156082015-05-22 17:41:35 +0000261 // Don't simulate loops with a big or unknown tripcount
262 if (!UnrollMaxIterationsCountToAnalyze || !TripCount ||
263 TripCount > UnrollMaxIterationsCountToAnalyze)
264 return None;
Chandler Carrutha6ae8772015-05-12 23:32:56 +0000265
Chandler Carruth02156082015-05-22 17:41:35 +0000266 SmallSetVector<BasicBlock *, 16> BBWorklist;
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000267 SmallSetVector<std::pair<BasicBlock *, BasicBlock *>, 4> ExitWorklist;
Chandler Carruth02156082015-05-22 17:41:35 +0000268 DenseMap<Value *, Constant *> SimplifiedValues;
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000269 SmallVector<std::pair<Value *, Constant *>, 4> SimplifiedInputValues;
Chandler Carruth3b057b32015-02-13 03:57:40 +0000270
Chandler Carruth9dabd142015-06-05 17:01:43 +0000271 // The estimated cost of the unrolled form of the loop. We try to estimate
272 // this by simplifying as much as we can while computing the estimate.
Chandler Carruthb2fda0d2015-08-05 18:46:21 +0000273 int UnrolledCost = 0;
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000274
Chandler Carruth9dabd142015-06-05 17:01:43 +0000275 // We also track the estimated dynamic (that is, actually executed) cost in
276 // the rolled form. This helps identify cases when the savings from unrolling
277 // aren't just exposing dead control flows, but actual reduced dynamic
278 // instructions due to the simplifications which we expect to occur after
279 // unrolling.
Chandler Carruthb2fda0d2015-08-05 18:46:21 +0000280 int RolledDynamicCost = 0;
Chandler Carruth8c863752015-02-13 03:48:38 +0000281
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000282 // We track the simplification of each instruction in each iteration. We use
283 // this to recursively merge costs into the unrolled cost on-demand so that
284 // we don't count the cost of any dead code. This is essentially a map from
285 // <instruction, int> to <bool, bool>, but stored as a densely packed struct.
286 DenseSet<UnrolledInstState, UnrolledInstStateKeyInfo> InstCostMap;
287
288 // A small worklist used to accumulate cost of instructions from each
289 // observable and reached root in the loop.
290 SmallVector<Instruction *, 16> CostWorklist;
291
292 // PHI-used worklist used between iterations while accumulating cost.
293 SmallVector<Instruction *, 4> PHIUsedList;
294
295 // Helper function to accumulate cost for instructions in the loop.
296 auto AddCostRecursively = [&](Instruction &RootI, int Iteration) {
297 assert(Iteration >= 0 && "Cannot have a negative iteration!");
298 assert(CostWorklist.empty() && "Must start with an empty cost list");
299 assert(PHIUsedList.empty() && "Must start with an empty phi used list");
300 CostWorklist.push_back(&RootI);
301 for (;; --Iteration) {
302 do {
303 Instruction *I = CostWorklist.pop_back_val();
304
305 // InstCostMap only uses I and Iteration as a key, the other two values
306 // don't matter here.
307 auto CostIter = InstCostMap.find({I, Iteration, 0, 0});
308 if (CostIter == InstCostMap.end())
309 // If an input to a PHI node comes from a dead path through the loop
310 // we may have no cost data for it here. What that actually means is
311 // that it is free.
312 continue;
313 auto &Cost = *CostIter;
314 if (Cost.IsCounted)
315 // Already counted this instruction.
316 continue;
317
318 // Mark that we are counting the cost of this instruction now.
319 Cost.IsCounted = true;
320
321 // If this is a PHI node in the loop header, just add it to the PHI set.
322 if (auto *PhiI = dyn_cast<PHINode>(I))
323 if (PhiI->getParent() == L->getHeader()) {
324 assert(Cost.IsFree && "Loop PHIs shouldn't be evaluated as they "
325 "inherently simplify during unrolling.");
326 if (Iteration == 0)
327 continue;
328
329 // Push the incoming value from the backedge into the PHI used list
330 // if it is an in-loop instruction. We'll use this to populate the
331 // cost worklist for the next iteration (as we count backwards).
332 if (auto *OpI = dyn_cast<Instruction>(
333 PhiI->getIncomingValueForBlock(L->getLoopLatch())))
334 if (L->contains(OpI))
335 PHIUsedList.push_back(OpI);
336 continue;
337 }
338
339 // First accumulate the cost of this instruction.
340 if (!Cost.IsFree) {
341 UnrolledCost += TTI.getUserCost(I);
342 DEBUG(dbgs() << "Adding cost of instruction (iteration " << Iteration
343 << "): ");
344 DEBUG(I->dump());
345 }
346
347 // We must count the cost of every operand which is not free,
348 // recursively. If we reach a loop PHI node, simply add it to the set
349 // to be considered on the next iteration (backwards!).
350 for (Value *Op : I->operands()) {
351 // Check whether this operand is free due to being a constant or
352 // outside the loop.
353 auto *OpI = dyn_cast<Instruction>(Op);
354 if (!OpI || !L->contains(OpI))
355 continue;
356
357 // Otherwise accumulate its cost.
358 CostWorklist.push_back(OpI);
359 }
360 } while (!CostWorklist.empty());
361
362 if (PHIUsedList.empty())
363 // We've exhausted the search.
364 break;
365
366 assert(Iteration > 0 &&
367 "Cannot track PHI-used values past the first iteration!");
368 CostWorklist.append(PHIUsedList.begin(), PHIUsedList.end());
369 PHIUsedList.clear();
370 }
371 };
372
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000373 // Ensure that we don't violate the loop structure invariants relied on by
374 // this analysis.
375 assert(L->isLoopSimplifyForm() && "Must put loop into normal form first.");
376 assert(L->isLCSSAForm(DT) &&
377 "Must have loops in LCSSA form to track live-out values.");
378
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000379 DEBUG(dbgs() << "Starting LoopUnroll profitability analysis...\n");
380
Chandler Carruth02156082015-05-22 17:41:35 +0000381 // Simulate execution of each iteration of the loop counting instructions,
382 // which would be simplified.
383 // Since the same load will take different values on different iterations,
384 // we literally have to go through all loop's iterations.
385 for (unsigned Iteration = 0; Iteration < TripCount; ++Iteration) {
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000386 DEBUG(dbgs() << " Analyzing iteration " << Iteration << "\n");
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000387
388 // Prepare for the iteration by collecting any simplified entry or backedge
389 // inputs.
390 for (Instruction &I : *L->getHeader()) {
391 auto *PHI = dyn_cast<PHINode>(&I);
392 if (!PHI)
393 break;
394
395 // The loop header PHI nodes must have exactly two input: one from the
396 // loop preheader and one from the loop latch.
397 assert(
398 PHI->getNumIncomingValues() == 2 &&
399 "Must have an incoming value only for the preheader and the latch.");
400
401 Value *V = PHI->getIncomingValueForBlock(
402 Iteration == 0 ? L->getLoopPreheader() : L->getLoopLatch());
403 Constant *C = dyn_cast<Constant>(V);
404 if (Iteration != 0 && !C)
405 C = SimplifiedValues.lookup(V);
406 if (C)
407 SimplifiedInputValues.push_back({PHI, C});
408 }
409
410 // Now clear and re-populate the map for the next iteration.
Chandler Carruth02156082015-05-22 17:41:35 +0000411 SimplifiedValues.clear();
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000412 while (!SimplifiedInputValues.empty())
413 SimplifiedValues.insert(SimplifiedInputValues.pop_back_val());
414
Michael Zolotukhin9f520eb2016-02-26 02:57:05 +0000415 UnrolledInstAnalyzer Analyzer(Iteration, SimplifiedValues, SE, L);
Chandler Carruthf174a152015-05-22 02:47:29 +0000416
Chandler Carruth02156082015-05-22 17:41:35 +0000417 BBWorklist.clear();
418 BBWorklist.insert(L->getHeader());
419 // Note that we *must not* cache the size, this loop grows the worklist.
420 for (unsigned Idx = 0; Idx != BBWorklist.size(); ++Idx) {
421 BasicBlock *BB = BBWorklist[Idx];
Chandler Carruthf174a152015-05-22 02:47:29 +0000422
Chandler Carruth02156082015-05-22 17:41:35 +0000423 // Visit all instructions in the given basic block and try to simplify
424 // it. We don't change the actual IR, just count optimization
425 // opportunities.
426 for (Instruction &I : *BB) {
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000427 // Track this instruction's expected baseline cost when executing the
428 // rolled loop form.
429 RolledDynamicCost += TTI.getUserCost(&I);
Chandler Carruth17a04962015-02-13 03:49:41 +0000430
Chandler Carruth02156082015-05-22 17:41:35 +0000431 // Visit the instruction to analyze its loop cost after unrolling,
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000432 // and if the visitor returns true, mark the instruction as free after
433 // unrolling and continue.
434 bool IsFree = Analyzer.visit(I);
435 bool Inserted = InstCostMap.insert({&I, (int)Iteration,
436 (unsigned)IsFree,
437 /*IsCounted*/ false}).second;
438 (void)Inserted;
439 assert(Inserted && "Cannot have a state for an unvisited instruction!");
Chandler Carruth9dabd142015-06-05 17:01:43 +0000440
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000441 if (IsFree)
442 continue;
443
444 // If the instruction might have a side-effect recursively account for
445 // the cost of it and all the instructions leading up to it.
446 if (I.mayHaveSideEffects())
447 AddCostRecursively(I, Iteration);
448
449 // Can't properly model a cost of a call.
450 // FIXME: With a proper cost model we should be able to do it.
451 if(isa<CallInst>(&I))
452 return None;
Chandler Carruth02156082015-05-22 17:41:35 +0000453
454 // If unrolled body turns out to be too big, bail out.
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000455 if (UnrolledCost > MaxUnrolledLoopSize) {
456 DEBUG(dbgs() << " Exceeded threshold.. exiting.\n"
457 << " UnrolledCost: " << UnrolledCost
458 << ", MaxUnrolledLoopSize: " << MaxUnrolledLoopSize
459 << "\n");
Chandler Carruth02156082015-05-22 17:41:35 +0000460 return None;
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000461 }
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000462 }
Chandler Carruth415f4122015-02-13 02:17:39 +0000463
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000464 TerminatorInst *TI = BB->getTerminator();
465
466 // Add in the live successors by first checking whether we have terminator
467 // that may be simplified based on the values simplified by this call.
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000468 BasicBlock *KnownSucc = nullptr;
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000469 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
470 if (BI->isConditional()) {
471 if (Constant *SimpleCond =
472 SimplifiedValues.lookup(BI->getCondition())) {
Michael Zolotukhin3a7d55b2015-07-29 18:10:29 +0000473 // Just take the first successor if condition is undef
474 if (isa<UndefValue>(SimpleCond))
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000475 KnownSucc = BI->getSuccessor(0);
476 else if (ConstantInt *SimpleCondVal =
477 dyn_cast<ConstantInt>(SimpleCond))
478 KnownSucc = BI->getSuccessor(SimpleCondVal->isZero() ? 1 : 0);
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000479 }
480 }
481 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
482 if (Constant *SimpleCond =
483 SimplifiedValues.lookup(SI->getCondition())) {
Michael Zolotukhin3a7d55b2015-07-29 18:10:29 +0000484 // Just take the first successor if condition is undef
485 if (isa<UndefValue>(SimpleCond))
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000486 KnownSucc = SI->getSuccessor(0);
487 else if (ConstantInt *SimpleCondVal =
488 dyn_cast<ConstantInt>(SimpleCond))
489 KnownSucc = SI->findCaseValue(SimpleCondVal).getCaseSuccessor();
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000490 }
491 }
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000492 if (KnownSucc) {
493 if (L->contains(KnownSucc))
494 BBWorklist.insert(KnownSucc);
495 else
496 ExitWorklist.insert({BB, KnownSucc});
497 continue;
498 }
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000499
Chandler Carruth02156082015-05-22 17:41:35 +0000500 // Add BB's successors to the worklist.
501 for (BasicBlock *Succ : successors(BB))
502 if (L->contains(Succ))
503 BBWorklist.insert(Succ);
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000504 else
505 ExitWorklist.insert({BB, Succ});
Michael Zolotukhind2268a72016-05-18 21:20:12 +0000506 AddCostRecursively(*TI, Iteration);
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000507 }
Chandler Carruth02156082015-05-22 17:41:35 +0000508
509 // If we found no optimization opportunities on the first iteration, we
510 // won't find them on later ones too.
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000511 if (UnrolledCost == RolledDynamicCost) {
512 DEBUG(dbgs() << " No opportunities found.. exiting.\n"
513 << " UnrolledCost: " << UnrolledCost << "\n");
Chandler Carruth02156082015-05-22 17:41:35 +0000514 return None;
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000515 }
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000516 }
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000517
518 while (!ExitWorklist.empty()) {
519 BasicBlock *ExitingBB, *ExitBB;
520 std::tie(ExitingBB, ExitBB) = ExitWorklist.pop_back_val();
521
522 for (Instruction &I : *ExitBB) {
523 auto *PN = dyn_cast<PHINode>(&I);
524 if (!PN)
525 break;
526
527 Value *Op = PN->getIncomingValueForBlock(ExitingBB);
528 if (auto *OpI = dyn_cast<Instruction>(Op))
529 if (L->contains(OpI))
530 AddCostRecursively(*OpI, TripCount - 1);
531 }
532 }
533
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000534 DEBUG(dbgs() << "Analysis finished:\n"
535 << "UnrolledCost: " << UnrolledCost << ", "
536 << "RolledDynamicCost: " << RolledDynamicCost << "\n");
Chandler Carruth9dabd142015-06-05 17:01:43 +0000537 return {{UnrolledCost, RolledDynamicCost}};
Chandler Carruth02156082015-05-22 17:41:35 +0000538}
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000539
Dan Gohman49d08a52007-05-08 15:14:19 +0000540/// ApproximateLoopSize - Approximate the size of the loop.
Andrew Trickf7656012011-10-01 01:39:05 +0000541static unsigned ApproximateLoopSize(const Loop *L, unsigned &NumCalls,
Justin Lebar6827de12016-03-14 23:15:34 +0000542 bool &NotDuplicatable, bool &Convergent,
Hal Finkel57f03dd2014-09-07 13:49:57 +0000543 const TargetTransformInfo &TTI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000544 AssumptionCache *AC) {
Hal Finkel57f03dd2014-09-07 13:49:57 +0000545 SmallPtrSet<const Value *, 32> EphValues;
Chandler Carruth66b31302015-01-04 12:03:27 +0000546 CodeMetrics::collectEphemeralValues(L, AC, EphValues);
Hal Finkel57f03dd2014-09-07 13:49:57 +0000547
Dan Gohman969e83a2009-10-31 14:54:17 +0000548 CodeMetrics Metrics;
Sanjay Patel5c967232016-03-08 19:06:12 +0000549 for (BasicBlock *BB : L->blocks())
550 Metrics.analyzeBasicBlock(BB, TTI, EphValues);
Owen Anderson04cf3fd2010-09-09 20:32:23 +0000551 NumCalls = Metrics.NumInlineCandidates;
James Molloy4f6fb952012-12-20 16:04:27 +0000552 NotDuplicatable = Metrics.notDuplicatable;
Justin Lebar6827de12016-03-14 23:15:34 +0000553 Convergent = Metrics.convergent;
Andrew Trick279e7a62011-07-23 00:29:16 +0000554
Owen Anderson62ea1b72010-09-09 19:07:31 +0000555 unsigned LoopSize = Metrics.NumInsts;
Andrew Trick279e7a62011-07-23 00:29:16 +0000556
Owen Anderson62ea1b72010-09-09 19:07:31 +0000557 // Don't allow an estimate of size zero. This would allows unrolling of loops
558 // with huge iteration counts, which is a compile time problem even if it's
Hal Finkel38dd5902015-01-10 00:30:55 +0000559 // not a problem for code quality. Also, the code using this size may assume
560 // that each loop has at least three instructions (likely a conditional
561 // branch, a comparison feeding that branch, and some kind of loop increment
562 // feeding that comparison instruction).
563 LoopSize = std::max(LoopSize, 3u);
Andrew Trick279e7a62011-07-23 00:29:16 +0000564
Owen Anderson62ea1b72010-09-09 19:07:31 +0000565 return LoopSize;
Chris Lattner946b2552004-04-18 05:20:17 +0000566}
567
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000568// Returns the loop hint metadata node with the given name (for example,
569// "llvm.loop.unroll.count"). If no such metadata node exists, then nullptr is
570// returned.
Jingyue Wu49a766e2015-02-02 20:41:11 +0000571static MDNode *GetUnrollMetadataForLoop(const Loop *L, StringRef Name) {
572 if (MDNode *LoopID = L->getLoopID())
573 return GetUnrollMetadata(LoopID, Name);
574 return nullptr;
Eli Benderskyff903242014-06-16 23:53:02 +0000575}
576
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000577// Returns true if the loop has an unroll(full) pragma.
578static bool HasUnrollFullPragma(const Loop *L) {
Jingyue Wu0220df02015-02-01 02:27:45 +0000579 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.full");
Eli Benderskyff903242014-06-16 23:53:02 +0000580}
581
Mark Heffernan89391542015-08-10 17:28:08 +0000582// Returns true if the loop has an unroll(enable) pragma. This metadata is used
583// for both "#pragma unroll" and "#pragma clang loop unroll(enable)" directives.
584static bool HasUnrollEnablePragma(const Loop *L) {
585 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.enable");
586}
587
Eli Benderskyff903242014-06-16 23:53:02 +0000588// Returns true if the loop has an unroll(disable) pragma.
589static bool HasUnrollDisablePragma(const Loop *L) {
Jingyue Wu0220df02015-02-01 02:27:45 +0000590 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.disable");
Eli Benderskyff903242014-06-16 23:53:02 +0000591}
592
Kevin Qin715b01e2015-03-09 06:14:18 +0000593// Returns true if the loop has an runtime unroll(disable) pragma.
594static bool HasRuntimeUnrollDisablePragma(const Loop *L) {
595 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.runtime.disable");
596}
597
Eli Benderskyff903242014-06-16 23:53:02 +0000598// If loop has an unroll_count pragma return the (necessarily
599// positive) value from the pragma. Otherwise return 0.
600static unsigned UnrollCountPragmaValue(const Loop *L) {
Jingyue Wu49a766e2015-02-02 20:41:11 +0000601 MDNode *MD = GetUnrollMetadataForLoop(L, "llvm.loop.unroll.count");
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000602 if (MD) {
603 assert(MD->getNumOperands() == 2 &&
604 "Unroll count hint metadata should have two operands.");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000605 unsigned Count =
606 mdconst::extract<ConstantInt>(MD->getOperand(1))->getZExtValue();
Eli Benderskyff903242014-06-16 23:53:02 +0000607 assert(Count >= 1 && "Unroll count must be positive.");
608 return Count;
609 }
610 return 0;
611}
612
Mark Heffernan053a6862014-07-18 21:04:33 +0000613// Remove existing unroll metadata and add unroll disable metadata to
614// indicate the loop has already been unrolled. This prevents a loop
615// from being unrolled more than is directed by a pragma if the loop
616// unrolling pass is run more than once (which it generally is).
617static void SetLoopAlreadyUnrolled(Loop *L) {
618 MDNode *LoopID = L->getLoopID();
Dehao Chend55bc4c2016-05-05 00:54:54 +0000619 if (!LoopID)
620 return;
Mark Heffernan053a6862014-07-18 21:04:33 +0000621
622 // First remove any existing loop unrolling metadata.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000623 SmallVector<Metadata *, 4> MDs;
Mark Heffernan053a6862014-07-18 21:04:33 +0000624 // Reserve first location for self reference to the LoopID metadata node.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000625 MDs.push_back(nullptr);
Mark Heffernan053a6862014-07-18 21:04:33 +0000626 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 }
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000633 if (!IsUnrollMetadata)
634 MDs.push_back(LoopID->getOperand(i));
Mark Heffernan053a6862014-07-18 21:04:33 +0000635 }
636
637 // Add unroll(disable) metadata to disable future unrolling.
638 LLVMContext &Context = L->getHeader()->getContext();
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000639 SmallVector<Metadata *, 1> DisableOperands;
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000640 DisableOperands.push_back(MDString::get(Context, "llvm.loop.unroll.disable"));
Mark Heffernanf3764da2014-07-18 21:29:41 +0000641 MDNode *DisableNode = MDNode::get(Context, DisableOperands);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000642 MDs.push_back(DisableNode);
Mark Heffernan053a6862014-07-18 21:04:33 +0000643
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000644 MDNode *NewLoopID = MDNode::get(Context, MDs);
Mark Heffernan053a6862014-07-18 21:04:33 +0000645 // Set operand 0 to refer to the loop id itself.
646 NewLoopID->replaceOperandWith(0, NewLoopID);
647 L->setLoopID(NewLoopID);
Mark Heffernan053a6862014-07-18 21:04:33 +0000648}
649
Justin Bogner921b04e2016-01-12 01:06:32 +0000650static bool canUnrollCompletely(Loop *L, unsigned Threshold,
651 unsigned PercentDynamicCostSavedThreshold,
652 unsigned DynamicCostSavingsDiscount,
653 uint64_t UnrolledCost,
654 uint64_t RolledDynamicCost) {
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000655 if (Threshold == NoThreshold) {
656 DEBUG(dbgs() << " Can fully unroll, because no threshold is set.\n");
657 return true;
658 }
659
Chandler Carruth9dabd142015-06-05 17:01:43 +0000660 if (UnrolledCost <= Threshold) {
661 DEBUG(dbgs() << " Can fully unroll, because unrolled cost: "
662 << UnrolledCost << "<" << Threshold << "\n");
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000663 return true;
664 }
665
Chandler Carruth9dabd142015-06-05 17:01:43 +0000666 assert(UnrolledCost && "UnrolledCost can't be 0 at this point.");
667 assert(RolledDynamicCost >= UnrolledCost &&
668 "Cannot have a higher unrolled cost than a rolled cost!");
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000669
Chandler Carruth9dabd142015-06-05 17:01:43 +0000670 // Compute the percentage of the dynamic cost in the rolled form that is
671 // saved when unrolled. If unrolling dramatically reduces the estimated
672 // dynamic cost of the loop, we use a higher threshold to allow more
673 // unrolling.
674 unsigned PercentDynamicCostSaved =
675 (uint64_t)(RolledDynamicCost - UnrolledCost) * 100ull / RolledDynamicCost;
676
677 if (PercentDynamicCostSaved >= PercentDynamicCostSavedThreshold &&
678 (int64_t)UnrolledCost - (int64_t)DynamicCostSavingsDiscount <=
679 (int64_t)Threshold) {
680 DEBUG(dbgs() << " Can fully unroll, because unrolling will reduce the "
Dehao Chend55bc4c2016-05-05 00:54:54 +0000681 "expected dynamic cost by "
682 << PercentDynamicCostSaved << "% (threshold: "
683 << PercentDynamicCostSavedThreshold << "%)\n"
Chandler Carruth9dabd142015-06-05 17:01:43 +0000684 << " and the unrolled cost (" << UnrolledCost
685 << ") is less than the max threshold ("
686 << DynamicCostSavingsDiscount << ").\n");
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000687 return true;
688 }
689
690 DEBUG(dbgs() << " Too large to fully unroll:\n");
Chandler Carruth9dabd142015-06-05 17:01:43 +0000691 DEBUG(dbgs() << " Threshold: " << Threshold << "\n");
692 DEBUG(dbgs() << " Max threshold: " << DynamicCostSavingsDiscount << "\n");
693 DEBUG(dbgs() << " Percent cost saved threshold: "
694 << PercentDynamicCostSavedThreshold << "%\n");
695 DEBUG(dbgs() << " Unrolled cost: " << UnrolledCost << "\n");
696 DEBUG(dbgs() << " Rolled dynamic cost: " << RolledDynamicCost << "\n");
697 DEBUG(dbgs() << " Percent cost saved: " << PercentDynamicCostSaved
698 << "\n");
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000699 return false;
700}
701
Justin Bognerb8d82ab2016-01-12 05:21:37 +0000702static bool tryToUnrollLoop(Loop *L, DominatorTree &DT, LoopInfo *LI,
703 ScalarEvolution *SE, const TargetTransformInfo &TTI,
704 AssumptionCache &AC, bool PreserveLCSSA,
705 Optional<unsigned> ProvidedCount,
706 Optional<unsigned> ProvidedThreshold,
707 Optional<bool> ProvidedAllowPartial,
708 Optional<bool> ProvidedRuntime) {
Dan Gohman2e1f8042007-05-08 15:19:19 +0000709 BasicBlock *Header = L->getHeader();
David Greenee0b97892010-01-05 01:27:44 +0000710 DEBUG(dbgs() << "Loop Unroll: F[" << Header->getParent()->getName()
Dehao Chend55bc4c2016-05-05 00:54:54 +0000711 << "] Loop %" << Header->getName() << "\n");
Eli Benderskyff903242014-06-16 23:53:02 +0000712
713 if (HasUnrollDisablePragma(L)) {
714 return false;
715 }
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000716 bool PragmaFullUnroll = HasUnrollFullPragma(L);
Mark Heffernan89391542015-08-10 17:28:08 +0000717 bool PragmaEnableUnroll = HasUnrollEnablePragma(L);
Eli Benderskyff903242014-06-16 23:53:02 +0000718 unsigned PragmaCount = UnrollCountPragmaValue(L);
Mark Heffernan89391542015-08-10 17:28:08 +0000719 bool HasPragma = PragmaFullUnroll || PragmaEnableUnroll || PragmaCount > 0;
Andrew Trick279e7a62011-07-23 00:29:16 +0000720
Andrew Trick2b6860f2011-08-11 23:36:16 +0000721 // Find trip count and trip multiple if count is not available
722 unsigned TripCount = 0;
Andrew Trick1cabe542011-07-23 00:33:05 +0000723 unsigned TripMultiple = 1;
Chandler Carruth6666c272014-10-11 00:12:11 +0000724 // If there are multiple exiting blocks but one of them is the latch, use the
725 // latch for the trip count estimation. Otherwise insist on a single exiting
726 // block for the trip count estimation.
727 BasicBlock *ExitingBlock = L->getLoopLatch();
728 if (!ExitingBlock || !L->isLoopExiting(ExitingBlock))
729 ExitingBlock = L->getExitingBlock();
730 if (ExitingBlock) {
731 TripCount = SE->getSmallConstantTripCount(L, ExitingBlock);
732 TripMultiple = SE->getSmallConstantTripMultiple(L, ExitingBlock);
Andrew Trick2b6860f2011-08-11 23:36:16 +0000733 }
Hal Finkel8f2e7002013-09-11 19:25:43 +0000734
Justin Bognera1dd4932016-01-12 00:55:26 +0000735 TargetTransformInfo::UnrollingPreferences UP = gatherUnrollingPreferences(
736 L, TTI, ProvidedThreshold, ProvidedCount, ProvidedAllowPartial,
737 ProvidedRuntime, PragmaCount, PragmaFullUnroll, PragmaEnableUnroll,
738 TripCount);
739
740 unsigned Count = UP.Count;
741 bool CountSetExplicitly = Count != 0;
742 // Use a heuristic count if we didn't set anything explicitly.
743 if (!CountSetExplicitly)
744 Count = TripCount == 0 ? DefaultUnrollRuntimeCount : TripCount;
745 if (TripCount && Count > TripCount)
746 Count = TripCount;
Fiona Glaser045afc42016-04-06 16:57:25 +0000747 Count = std::min(Count, UP.FullUnrollMaxCount);
Eli Benderskydc6de2c2014-06-12 18:05:39 +0000748
Eli Benderskyff903242014-06-16 23:53:02 +0000749 unsigned NumInlineCandidates;
Sanjay Patelf831fdb2016-03-08 19:07:42 +0000750 bool NotDuplicatable;
Justin Lebar6827de12016-03-14 23:15:34 +0000751 bool Convergent;
752 unsigned LoopSize = ApproximateLoopSize(
753 L, NumInlineCandidates, NotDuplicatable, Convergent, TTI, &AC);
Eli Benderskyff903242014-06-16 23:53:02 +0000754 DEBUG(dbgs() << " Loop Size = " << LoopSize << "\n");
Hal Finkel38dd5902015-01-10 00:30:55 +0000755
756 // When computing the unrolled size, note that the conditional branch on the
757 // backedge and the comparison feeding it are not replicated like the rest of
758 // the loop body (which is why 2 is subtracted).
Dehao Chend55bc4c2016-05-05 00:54:54 +0000759 uint64_t UnrolledSize = (uint64_t)(LoopSize - 2) * Count + 2;
Sanjay Patelf831fdb2016-03-08 19:07:42 +0000760 if (NotDuplicatable) {
Eli Benderskyff903242014-06-16 23:53:02 +0000761 DEBUG(dbgs() << " Not unrolling loop which contains non-duplicatable"
762 << " instructions.\n");
763 return false;
764 }
765 if (NumInlineCandidates != 0) {
766 DEBUG(dbgs() << " Not unrolling loop with inlinable calls.\n");
767 return false;
Dan Gohman2980d9d2007-05-11 20:53:41 +0000768 }
769
Eli Benderskyff903242014-06-16 23:53:02 +0000770 // Given Count, TripCount and thresholds determine the type of
771 // unrolling which is to be performed.
772 enum { Full = 0, Partial = 1, Runtime = 2 };
773 int Unrolling;
774 if (TripCount && Count == TripCount) {
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000775 Unrolling = Partial;
776 // If the loop is really small, we don't need to run an expensive analysis.
Justin Bognera1dd4932016-01-12 00:55:26 +0000777 if (canUnrollCompletely(L, UP.Threshold, 100, UP.DynamicCostSavingsDiscount,
Chandler Carruth9dabd142015-06-05 17:01:43 +0000778 UnrolledSize, UnrolledSize)) {
Eli Benderskyff903242014-06-16 23:53:02 +0000779 Unrolling = Full;
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000780 } else {
781 // The loop isn't that small, but we still can fully unroll it if that
782 // helps to remove a significant number of instructions.
783 // To check that, run additional analysis on the loop.
Justin Bognera1dd4932016-01-12 00:55:26 +0000784 if (Optional<EstimatedUnrollCost> Cost = analyzeLoopUnrollCost(
785 L, TripCount, DT, *SE, TTI,
786 UP.Threshold + UP.DynamicCostSavingsDiscount))
787 if (canUnrollCompletely(L, UP.Threshold,
788 UP.PercentDynamicCostSavedThreshold,
789 UP.DynamicCostSavingsDiscount,
790 Cost->UnrolledCost, Cost->RolledDynamicCost)) {
Chandler Carruth02156082015-05-22 17:41:35 +0000791 Unrolling = Full;
792 }
Dan Gohman2980d9d2007-05-11 20:53:41 +0000793 }
Eli Benderskyff903242014-06-16 23:53:02 +0000794 } else if (TripCount && Count < TripCount) {
795 Unrolling = Partial;
796 } else {
797 Unrolling = Runtime;
798 }
799
800 // Reduce count based on the type of unrolling and the threshold values.
801 unsigned OriginalCount = Count;
Justin Bognera1dd4932016-01-12 00:55:26 +0000802 bool AllowRuntime = PragmaEnableUnroll || (PragmaCount > 0) || UP.Runtime;
Mark Heffernand7ebc242015-07-13 18:26:27 +0000803 // Don't unroll a runtime trip count loop with unroll full pragma.
804 if (HasRuntimeUnrollDisablePragma(L) || PragmaFullUnroll) {
Kevin Qin715b01e2015-03-09 06:14:18 +0000805 AllowRuntime = false;
806 }
Justin Lebar6827de12016-03-14 23:15:34 +0000807 bool DecreasedCountDueToConvergence = false;
Eli Benderskyff903242014-06-16 23:53:02 +0000808 if (Unrolling == Partial) {
Justin Bognera1dd4932016-01-12 00:55:26 +0000809 bool AllowPartial = PragmaEnableUnroll || UP.Partial;
Eli Benderskyff903242014-06-16 23:53:02 +0000810 if (!AllowPartial && !CountSetExplicitly) {
811 DEBUG(dbgs() << " will not try to unroll partially because "
812 << "-unroll-allow-partial not given\n");
813 return false;
814 }
Fiona Glaser045afc42016-04-06 16:57:25 +0000815 if (UP.PartialThreshold != NoThreshold && Count > 1) {
Eli Benderskyff903242014-06-16 23:53:02 +0000816 // Reduce unroll count to be modulo of TripCount for partial unrolling.
Fiona Glaser045afc42016-04-06 16:57:25 +0000817 if (UnrolledSize > UP.PartialThreshold)
818 Count = (std::max(UP.PartialThreshold, 3u) - 2) / (LoopSize - 2);
819 if (Count > UP.MaxCount)
820 Count = UP.MaxCount;
Eli Benderskyff903242014-06-16 23:53:02 +0000821 while (Count != 0 && TripCount % Count != 0)
822 Count--;
Fiona Glaser16332ba2016-04-06 16:43:45 +0000823 if (AllowRuntime && Count <= 1) {
Zia Ansaria82a58a42016-04-04 19:24:46 +0000824 // If there is no Count that is modulo of TripCount, set Count to
825 // largest power-of-two factor that satisfies the threshold limit.
Fiona Glaser16332ba2016-04-06 16:43:45 +0000826 // As we'll create fixup loop, do the type of unrolling only if
827 // runtime unrolling is allowed.
828 Count = DefaultUnrollRuntimeCount;
Zia Ansaria82a58a42016-04-04 19:24:46 +0000829 UnrolledSize = (LoopSize - 2) * Count + 2;
830 while (Count != 0 && UnrolledSize > UP.PartialThreshold) {
831 Count >>= 1;
832 UnrolledSize = (LoopSize - 2) * Count + 2;
833 }
834 }
Eli Benderskyff903242014-06-16 23:53:02 +0000835 }
836 } else if (Unrolling == Runtime) {
837 if (!AllowRuntime && !CountSetExplicitly) {
838 DEBUG(dbgs() << " will not try to unroll loop with runtime trip count "
839 << "-unroll-runtime not given\n");
840 return false;
841 }
Justin Lebar6827de12016-03-14 23:15:34 +0000842
Eli Benderskyff903242014-06-16 23:53:02 +0000843 // Reduce unroll count to be the largest power-of-two factor of
844 // the original count which satisfies the threshold limit.
Justin Bognera1dd4932016-01-12 00:55:26 +0000845 while (Count != 0 && UnrolledSize > UP.PartialThreshold) {
Eli Benderskyff903242014-06-16 23:53:02 +0000846 Count >>= 1;
Dehao Chend55bc4c2016-05-05 00:54:54 +0000847 UnrolledSize = (LoopSize - 2) * Count + 2;
Eli Benderskyff903242014-06-16 23:53:02 +0000848 }
Justin Lebar6827de12016-03-14 23:15:34 +0000849
Eli Benderskyff903242014-06-16 23:53:02 +0000850 if (Count > UP.MaxCount)
851 Count = UP.MaxCount;
Justin Lebar6827de12016-03-14 23:15:34 +0000852
853 // If the loop contains a convergent operation, the prelude we'd add
854 // to do the first few instructions before we hit the unrolled loop
855 // is unsafe -- it adds a control-flow dependency to the convergent
856 // operation. Therefore Count must divide TripMultiple.
857 //
858 // TODO: This is quite conservative. In practice, convergent_op()
859 // is likely to be called unconditionally in the loop. In this
860 // case, the program would be ill-formed (on most architectures)
861 // unless n were the same on all threads in a thread group.
862 // Assuming n is the same on all threads, any kind of unrolling is
863 // safe. But currently llvm's notion of convergence isn't powerful
864 // enough to express this.
865 unsigned OrigCount = Count;
866 while (Convergent && Count != 0 && TripMultiple % Count != 0) {
867 DecreasedCountDueToConvergence = true;
868 Count >>= 1;
869 }
870 if (OrigCount > Count) {
871 DEBUG(dbgs() << " loop contains a convergent instruction, so unroll "
872 "count must divide the trip multiple, "
873 << TripMultiple << ". Reducing unroll count from "
874 << OrigCount << " to " << Count << ".\n");
875 }
Eli Benderskyff903242014-06-16 23:53:02 +0000876 DEBUG(dbgs() << " partially unrolling with count: " << Count << "\n");
877 }
878
879 if (HasPragma) {
880 // Emit optimization remarks if we are unable to unroll the loop
881 // as directed by a pragma.
882 DebugLoc LoopLoc = L->getStartLoc();
883 Function *F = Header->getParent();
884 LLVMContext &Ctx = F->getContext();
Justin Lebar6827de12016-03-14 23:15:34 +0000885 if (PragmaCount > 0 && DecreasedCountDueToConvergence) {
886 emitOptimizationRemarkMissed(
887 Ctx, DEBUG_TYPE, *F, LoopLoc,
888 Twine("Unable to unroll loop the number of times directed by "
889 "unroll_count pragma because the loop contains a convergent "
890 "instruction, and so must have an unroll count that divides "
891 "the loop trip multiple of ") +
892 Twine(TripMultiple) + ". Unrolling instead " + Twine(Count) +
893 " time(s).");
894 } else if ((PragmaCount > 0) && Count != OriginalCount) {
Eli Benderskyff903242014-06-16 23:53:02 +0000895 emitOptimizationRemarkMissed(
896 Ctx, DEBUG_TYPE, *F, LoopLoc,
897 "Unable to unroll loop the number of times directed by "
898 "unroll_count pragma because unrolled size is too large.");
Mark Heffernan89391542015-08-10 17:28:08 +0000899 } else if (PragmaFullUnroll && !TripCount) {
900 emitOptimizationRemarkMissed(
901 Ctx, DEBUG_TYPE, *F, LoopLoc,
902 "Unable to fully unroll loop as directed by unroll(full) pragma "
903 "because loop has a runtime trip count.");
904 } else if (PragmaEnableUnroll && Count != TripCount && Count < 2) {
905 emitOptimizationRemarkMissed(
906 Ctx, DEBUG_TYPE, *F, LoopLoc,
907 "Unable to unroll loop as directed by unroll(enable) pragma because "
908 "unrolled size is too large.");
909 } else if ((PragmaFullUnroll || PragmaEnableUnroll) && TripCount &&
910 Count != TripCount) {
911 emitOptimizationRemarkMissed(
912 Ctx, DEBUG_TYPE, *F, LoopLoc,
913 "Unable to fully unroll loop as directed by unroll pragma because "
914 "unrolled size is too large.");
Eli Benderskyff903242014-06-16 23:53:02 +0000915 }
916 }
917
918 if (Unrolling != Full && Count < 2) {
919 // Partial unrolling by 1 is a nop. For full unrolling, a factor
920 // of 1 makes sense because loop control can be eliminated.
921 return false;
Dan Gohman2980d9d2007-05-11 20:53:41 +0000922 }
923
Dan Gohman3dc2d922008-05-14 00:24:14 +0000924 // Unroll the loop.
Sanjoy Dase178f462015-04-14 03:20:38 +0000925 if (!UnrollLoop(L, Count, TripCount, AllowRuntime, UP.AllowExpensiveTripCount,
Justin Bogner883a3ea2015-12-16 18:40:20 +0000926 TripMultiple, LI, SE, &DT, &AC, PreserveLCSSA))
Dan Gohman3dc2d922008-05-14 00:24:14 +0000927 return false;
Dan Gohman2980d9d2007-05-11 20:53:41 +0000928
David L Kreitzer8d441eb2016-03-25 14:24:52 +0000929 // If loop has an unroll count pragma mark loop as unrolled to prevent
930 // unrolling beyond that requested by the pragma.
931 if (HasPragma && PragmaCount != 0)
932 SetLoopAlreadyUnrolled(L);
Chris Lattner946b2552004-04-18 05:20:17 +0000933 return true;
934}
Justin Bognerb8d82ab2016-01-12 05:21:37 +0000935
936namespace {
937class LoopUnroll : public LoopPass {
938public:
939 static char ID; // Pass ID, replacement for typeid
940 LoopUnroll(Optional<unsigned> Threshold = None,
941 Optional<unsigned> Count = None,
942 Optional<bool> AllowPartial = None, Optional<bool> Runtime = None)
Benjamin Kramer82de7d32016-05-27 14:27:24 +0000943 : LoopPass(ID), ProvidedCount(std::move(Count)),
944 ProvidedThreshold(Threshold), ProvidedAllowPartial(AllowPartial),
945 ProvidedRuntime(Runtime) {
Justin Bognerb8d82ab2016-01-12 05:21:37 +0000946 initializeLoopUnrollPass(*PassRegistry::getPassRegistry());
947 }
948
949 Optional<unsigned> ProvidedCount;
950 Optional<unsigned> ProvidedThreshold;
951 Optional<bool> ProvidedAllowPartial;
952 Optional<bool> ProvidedRuntime;
953
954 bool runOnLoop(Loop *L, LPPassManager &) override {
Andrew Kayloraa641a52016-04-22 22:06:11 +0000955 if (skipLoop(L))
Justin Bognerb8d82ab2016-01-12 05:21:37 +0000956 return false;
957
958 Function &F = *L->getHeader()->getParent();
959
960 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
961 LoopInfo *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
962 ScalarEvolution *SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
963 const TargetTransformInfo &TTI =
964 getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
965 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
966 bool PreserveLCSSA = mustPreserveAnalysisID(LCSSAID);
967
968 return tryToUnrollLoop(L, DT, LI, SE, TTI, AC, PreserveLCSSA, ProvidedCount,
969 ProvidedThreshold, ProvidedAllowPartial,
970 ProvidedRuntime);
971 }
972
973 /// This transformation requires natural loop information & requires that
974 /// loop preheaders be inserted into the CFG...
975 ///
976 void getAnalysisUsage(AnalysisUsage &AU) const override {
977 AU.addRequired<AssumptionCacheTracker>();
Justin Bognerb8d82ab2016-01-12 05:21:37 +0000978 AU.addRequired<TargetTransformInfoWrapperPass>();
Chandler Carruth31088a92016-02-19 10:45:18 +0000979 // FIXME: Loop passes are required to preserve domtree, and for now we just
980 // recreate dom info if anything gets unrolled.
981 getLoopAnalysisUsage(AU);
Justin Bognerb8d82ab2016-01-12 05:21:37 +0000982 }
983};
984}
985
986char LoopUnroll::ID = 0;
987INITIALIZE_PASS_BEGIN(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
Justin Bognerb8d82ab2016-01-12 05:21:37 +0000988INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruth31088a92016-02-19 10:45:18 +0000989INITIALIZE_PASS_DEPENDENCY(LoopPass)
990INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Justin Bognerb8d82ab2016-01-12 05:21:37 +0000991INITIALIZE_PASS_END(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
992
993Pass *llvm::createLoopUnrollPass(int Threshold, int Count, int AllowPartial,
994 int Runtime) {
995 // TODO: It would make more sense for this function to take the optionals
996 // directly, but that's dangerous since it would silently break out of tree
997 // callers.
998 return new LoopUnroll(Threshold == -1 ? None : Optional<unsigned>(Threshold),
999 Count == -1 ? None : Optional<unsigned>(Count),
1000 AllowPartial == -1 ? None
1001 : Optional<bool>(AllowPartial),
1002 Runtime == -1 ? None : Optional<bool>(Runtime));
1003}
1004
1005Pass *llvm::createSimpleLoopUnrollPass() {
1006 return llvm::createLoopUnrollPass(-1, -1, 0, 0);
1007}