blob: 34d2b2a8b27dba7413fc05f8893710f819669ab3 [file] [log] [blame]
Eugene Zelenko306d2992017-10-18 21:46:47 +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"
Eugene Zelenko306d2992017-10-18 21:46:47 +000016#include "llvm/ADT/DenseMap.h"
17#include "llvm/ADT/DenseMapInfo.h"
18#include "llvm/ADT/DenseSet.h"
19#include "llvm/ADT/None.h"
20#include "llvm/ADT/Optional.h"
21#include "llvm/ADT/STLExtras.h"
Chandler Carruth3b057b32015-02-13 03:57:40 +000022#include "llvm/ADT/SetVector.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000023#include "llvm/ADT/SmallPtrSet.h"
24#include "llvm/ADT/SmallVector.h"
25#include "llvm/ADT/StringRef.h"
Daniel Jasperaec2fa32016-12-19 08:22:17 +000026#include "llvm/Analysis/AssumptionCache.h"
Chris Lattner679572e2011-01-02 07:35:53 +000027#include "llvm/Analysis/CodeMetrics.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000028#include "llvm/Analysis/LoopAnalysisManager.h"
29#include "llvm/Analysis/LoopInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000030#include "llvm/Analysis/LoopPass.h"
Michael Zolotukhin1da4afd2016-02-08 23:03:59 +000031#include "llvm/Analysis/LoopUnrollAnalyzer.h"
Adam Nemet0965da22017-10-09 23:19:02 +000032#include "llvm/Analysis/OptimizationRemarkEmitter.h"
Teresa Johnson8482e562017-08-03 23:42:58 +000033#include "llvm/Analysis/ProfileSummaryInfo.h"
Dan Gohman0141c132010-07-26 18:11:16 +000034#include "llvm/Analysis/ScalarEvolution.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000035#include "llvm/Analysis/TargetTransformInfo.h"
36#include "llvm/IR/BasicBlock.h"
37#include "llvm/IR/CFG.h"
38#include "llvm/IR/Constant.h"
39#include "llvm/IR/Constants.h"
40#include "llvm/IR/DiagnosticInfo.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000041#include "llvm/IR/Dominators.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000042#include "llvm/IR/Function.h"
43#include "llvm/IR/Instruction.h"
44#include "llvm/IR/Instructions.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000045#include "llvm/IR/IntrinsicInst.h"
Eli Benderskyff903242014-06-16 23:53:02 +000046#include "llvm/IR/Metadata.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000047#include "llvm/IR/PassManager.h"
48#include "llvm/Pass.h"
49#include "llvm/Support/Casting.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000050#include "llvm/Support/CommandLine.h"
51#include "llvm/Support/Debug.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000052#include "llvm/Support/ErrorHandling.h"
Daniel Dunbar0dd5e1e2009-07-25 00:23:56 +000053#include "llvm/Support/raw_ostream.h"
Dehao Chend55bc4c2016-05-05 00:54:54 +000054#include "llvm/Transforms/Scalar.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000055#include "llvm/Transforms/Scalar/LoopPassManager.h"
David Blaikiea373d182018-03-28 17:44:36 +000056#include "llvm/Transforms/Utils.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000057#include "llvm/Transforms/Utils/LoopSimplify.h"
Chandler Carruth31088a92016-02-19 10:45:18 +000058#include "llvm/Transforms/Utils/LoopUtils.h"
Dan Gohman3dc2d922008-05-14 00:24:14 +000059#include "llvm/Transforms/Utils/UnrollLoop.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000060#include <algorithm>
61#include <cassert>
62#include <cstdint>
63#include <limits>
64#include <string>
65#include <tuple>
Benjamin Kramer82de7d32016-05-27 14:27:24 +000066#include <utility>
Chris Lattner946b2552004-04-18 05:20:17 +000067
Dan Gohman3dc2d922008-05-14 00:24:14 +000068using namespace llvm;
Chris Lattner946b2552004-04-18 05:20:17 +000069
Chandler Carruth964daaa2014-04-22 02:55:47 +000070#define DEBUG_TYPE "loop-unroll"
71
Dan Gohmand78c4002008-05-13 00:00:25 +000072static cl::opt<unsigned>
Justin Bognera1dd4932016-01-12 00:55:26 +000073 UnrollThreshold("unroll-threshold", cl::Hidden,
Dehao Chenc3f87f02017-01-17 23:39:33 +000074 cl::desc("The cost threshold for loop unrolling"));
75
76static cl::opt<unsigned> UnrollPartialThreshold(
77 "unroll-partial-threshold", cl::Hidden,
78 cl::desc("The cost threshold for partial loop unrolling"));
Chandler Carruth9dabd142015-06-05 17:01:43 +000079
Dehao Chencc763442016-12-30 00:50:28 +000080static cl::opt<unsigned> UnrollMaxPercentThresholdBoost(
81 "unroll-max-percent-threshold-boost", cl::init(400), cl::Hidden,
82 cl::desc("The maximum 'boost' (represented as a percentage >= 100) applied "
83 "to the threshold when aggressively unrolling a loop due to the "
84 "dynamic cost savings. If completely unrolling a loop will reduce "
85 "the total runtime from X to Y, we boost the loop unroll "
86 "threshold to DefaultThreshold*std::min(MaxPercentThresholdBoost, "
87 "X/Y). This limit avoids excessive code bloat."));
Dan Gohmand78c4002008-05-13 00:00:25 +000088
Michael Zolotukhina9aadd22015-02-05 02:34:00 +000089static cl::opt<unsigned> UnrollMaxIterationsCountToAnalyze(
Michael Zolotukhin8f7a2422016-05-24 23:00:05 +000090 "unroll-max-iteration-count-to-analyze", cl::init(10), cl::Hidden,
Michael Zolotukhina9aadd22015-02-05 02:34:00 +000091 cl::desc("Don't allow loop unrolling to simulate more than this number of"
92 "iterations when checking full unroll profitability"));
93
Dehao Chend55bc4c2016-05-05 00:54:54 +000094static cl::opt<unsigned> UnrollCount(
95 "unroll-count", cl::Hidden,
96 cl::desc("Use this unroll count for all loops including those with "
97 "unroll_count pragma values, for testing purposes"));
Dan Gohmand78c4002008-05-13 00:00:25 +000098
Dehao Chend55bc4c2016-05-05 00:54:54 +000099static cl::opt<unsigned> UnrollMaxCount(
100 "unroll-max-count", cl::Hidden,
101 cl::desc("Set the max unroll count for partial and runtime unrolling, for"
102 "testing purposes"));
Fiona Glaser045afc42016-04-06 16:57:25 +0000103
Dehao Chend55bc4c2016-05-05 00:54:54 +0000104static cl::opt<unsigned> UnrollFullMaxCount(
105 "unroll-full-max-count", cl::Hidden,
106 cl::desc(
107 "Set the max unroll count for full unrolling, for testing purposes"));
Fiona Glaser045afc42016-04-06 16:57:25 +0000108
Davide Italiano9a09ae42017-08-28 19:50:55 +0000109static cl::opt<unsigned> UnrollPeelCount(
110 "unroll-peel-count", cl::Hidden,
111 cl::desc("Set the unroll peeling count, for testing purposes"));
112
Matthijs Kooijman98b5c162008-07-29 13:21:23 +0000113static cl::opt<bool>
Dehao Chend55bc4c2016-05-05 00:54:54 +0000114 UnrollAllowPartial("unroll-allow-partial", cl::Hidden,
115 cl::desc("Allows loops to be partially unrolled until "
116 "-unroll-threshold loop size is reached."));
Matthijs Kooijman98b5c162008-07-29 13:21:23 +0000117
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000118static cl::opt<bool> UnrollAllowRemainder(
119 "unroll-allow-remainder", cl::Hidden,
120 cl::desc("Allow generation of a loop remainder (extra iterations) "
121 "when unrolling a loop."));
122
Andrew Trickd04d15292011-12-09 06:19:40 +0000123static cl::opt<bool>
Dehao Chend55bc4c2016-05-05 00:54:54 +0000124 UnrollRuntime("unroll-runtime", cl::ZeroOrMore, cl::Hidden,
125 cl::desc("Unroll loops with run-time trip counts"));
Andrew Trickd04d15292011-12-09 06:19:40 +0000126
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000127static cl::opt<unsigned> UnrollMaxUpperBound(
128 "unroll-max-upperbound", cl::init(8), cl::Hidden,
129 cl::desc(
130 "The max of trip count upper bound that is considered in unrolling"));
131
Dehao Chend55bc4c2016-05-05 00:54:54 +0000132static cl::opt<unsigned> PragmaUnrollThreshold(
133 "pragma-unroll-threshold", cl::init(16 * 1024), cl::Hidden,
134 cl::desc("Unrolled size limit for loops with an unroll(full) or "
135 "unroll_count pragma."));
Justin Bognera1dd4932016-01-12 00:55:26 +0000136
Dehao Chen41d72a82016-11-17 01:17:02 +0000137static cl::opt<unsigned> FlatLoopTripCountThreshold(
138 "flat-loop-tripcount-threshold", cl::init(5), cl::Hidden,
139 cl::desc("If the runtime tripcount for the loop is lower than the "
140 "threshold, the loop is considered as flat and will be less "
141 "aggressively unrolled."));
142
Michael Kupersteinb151a642016-11-30 21:13:57 +0000143static cl::opt<bool>
Michael Kupersteinc2af82b2017-02-22 00:27:34 +0000144 UnrollAllowPeeling("unroll-allow-peeling", cl::init(true), cl::Hidden,
Michael Kupersteinb151a642016-11-30 21:13:57 +0000145 cl::desc("Allows loops to be peeled when the dynamic "
146 "trip count is known to be low."));
147
Sam Parker718c8a62017-08-14 09:25:26 +0000148static cl::opt<bool> UnrollUnrollRemainder(
149 "unroll-remainder", cl::Hidden,
150 cl::desc("Allow the loop remainder to be unrolled."));
151
Chandler Carruthce40fa12017-01-25 02:49:01 +0000152// This option isn't ever intended to be enabled, it serves to allow
153// experiments to check the assumptions about when this kind of revisit is
154// necessary.
155static cl::opt<bool> UnrollRevisitChildLoops(
156 "unroll-revisit-child-loops", cl::Hidden,
157 cl::desc("Enqueue and re-visit child loops in the loop PM after unrolling. "
158 "This shouldn't typically be needed as child loops (or their "
159 "clones) were already visited."));
160
Justin Bognera1dd4932016-01-12 00:55:26 +0000161/// A magic value for use with the Threshold parameter to indicate
162/// that the loop unroll should be performed regardless of how much
163/// code expansion would result.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000164static const unsigned NoThreshold = std::numeric_limits<unsigned>::max();
Justin Bognera1dd4932016-01-12 00:55:26 +0000165
Justin Bognera1dd4932016-01-12 00:55:26 +0000166/// Gather the various unrolling parameters based on the defaults, compiler
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000167/// flags, TTI overrides and user specified parameters.
David Green963401d2018-07-01 12:47:30 +0000168TargetTransformInfo::UnrollingPreferences llvm::gatherUnrollingPreferences(
Geoff Berry66d9bdb2017-06-28 15:53:17 +0000169 Loop *L, ScalarEvolution &SE, const TargetTransformInfo &TTI, int OptLevel,
Dehao Chen7d230322017-02-18 03:46:51 +0000170 Optional<unsigned> UserThreshold, Optional<unsigned> UserCount,
171 Optional<bool> UserAllowPartial, Optional<bool> UserRuntime,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +0000172 Optional<bool> UserUpperBound, Optional<bool> UserAllowPeeling) {
Justin Bognera1dd4932016-01-12 00:55:26 +0000173 TargetTransformInfo::UnrollingPreferences UP;
174
175 // Set up the defaults
Dehao Chen7d230322017-02-18 03:46:51 +0000176 UP.Threshold = OptLevel > 2 ? 300 : 150;
Dehao Chencc763442016-12-30 00:50:28 +0000177 UP.MaxPercentThresholdBoost = 400;
Hans Wennborg719b26b2016-05-10 21:45:55 +0000178 UP.OptSizeThreshold = 0;
Dehao Chenc3f87f02017-01-17 23:39:33 +0000179 UP.PartialThreshold = 150;
Hans Wennborg719b26b2016-05-10 21:45:55 +0000180 UP.PartialOptSizeThreshold = 0;
Justin Bognera1dd4932016-01-12 00:55:26 +0000181 UP.Count = 0;
Michael Kupersteinb151a642016-11-30 21:13:57 +0000182 UP.PeelCount = 0;
Jonas Paulsson58c5a7f2016-09-28 09:41:38 +0000183 UP.DefaultUnrollRuntimeCount = 8;
Eugene Zelenko306d2992017-10-18 21:46:47 +0000184 UP.MaxCount = std::numeric_limits<unsigned>::max();
185 UP.FullUnrollMaxCount = std::numeric_limits<unsigned>::max();
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000186 UP.BEInsns = 2;
Justin Bognera1dd4932016-01-12 00:55:26 +0000187 UP.Partial = false;
188 UP.Runtime = false;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000189 UP.AllowRemainder = true;
Sam Parker718c8a62017-08-14 09:25:26 +0000190 UP.UnrollRemainder = false;
Justin Bognera1dd4932016-01-12 00:55:26 +0000191 UP.AllowExpensiveTripCount = false;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000192 UP.Force = false;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000193 UP.UpperBound = false;
Michael Kupersteinc2af82b2017-02-22 00:27:34 +0000194 UP.AllowPeeling = true;
David Green963401d2018-07-01 12:47:30 +0000195 UP.UnrollAndJam = false;
196 UP.UnrollAndJamInnerLoopThreshold = 60;
Justin Bognera1dd4932016-01-12 00:55:26 +0000197
198 // Override with any target specific settings
Geoff Berry66d9bdb2017-06-28 15:53:17 +0000199 TTI.getUnrollingPreferences(L, SE, UP);
Justin Bognera1dd4932016-01-12 00:55:26 +0000200
201 // Apply size attributes
202 if (L->getHeader()->getParent()->optForSize()) {
203 UP.Threshold = UP.OptSizeThreshold;
204 UP.PartialThreshold = UP.PartialOptSizeThreshold;
205 }
206
Justin Bognera1dd4932016-01-12 00:55:26 +0000207 // Apply any user values specified by cl::opt
Dehao Chenc3f87f02017-01-17 23:39:33 +0000208 if (UnrollThreshold.getNumOccurrences() > 0)
Justin Bognera1dd4932016-01-12 00:55:26 +0000209 UP.Threshold = UnrollThreshold;
Dehao Chenc3f87f02017-01-17 23:39:33 +0000210 if (UnrollPartialThreshold.getNumOccurrences() > 0)
211 UP.PartialThreshold = UnrollPartialThreshold;
Dehao Chencc763442016-12-30 00:50:28 +0000212 if (UnrollMaxPercentThresholdBoost.getNumOccurrences() > 0)
213 UP.MaxPercentThresholdBoost = UnrollMaxPercentThresholdBoost;
Fiona Glaser045afc42016-04-06 16:57:25 +0000214 if (UnrollMaxCount.getNumOccurrences() > 0)
215 UP.MaxCount = UnrollMaxCount;
216 if (UnrollFullMaxCount.getNumOccurrences() > 0)
217 UP.FullUnrollMaxCount = UnrollFullMaxCount;
Davide Italiano9a09ae42017-08-28 19:50:55 +0000218 if (UnrollPeelCount.getNumOccurrences() > 0)
219 UP.PeelCount = UnrollPeelCount;
Justin Bognera1dd4932016-01-12 00:55:26 +0000220 if (UnrollAllowPartial.getNumOccurrences() > 0)
221 UP.Partial = UnrollAllowPartial;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000222 if (UnrollAllowRemainder.getNumOccurrences() > 0)
223 UP.AllowRemainder = UnrollAllowRemainder;
Justin Bognera1dd4932016-01-12 00:55:26 +0000224 if (UnrollRuntime.getNumOccurrences() > 0)
225 UP.Runtime = UnrollRuntime;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000226 if (UnrollMaxUpperBound == 0)
227 UP.UpperBound = false;
Michael Kupersteinb151a642016-11-30 21:13:57 +0000228 if (UnrollAllowPeeling.getNumOccurrences() > 0)
229 UP.AllowPeeling = UnrollAllowPeeling;
Sam Parker718c8a62017-08-14 09:25:26 +0000230 if (UnrollUnrollRemainder.getNumOccurrences() > 0)
231 UP.UnrollRemainder = UnrollUnrollRemainder;
Justin Bognera1dd4932016-01-12 00:55:26 +0000232
233 // Apply user values provided by argument
234 if (UserThreshold.hasValue()) {
235 UP.Threshold = *UserThreshold;
236 UP.PartialThreshold = *UserThreshold;
237 }
238 if (UserCount.hasValue())
239 UP.Count = *UserCount;
240 if (UserAllowPartial.hasValue())
241 UP.Partial = *UserAllowPartial;
242 if (UserRuntime.hasValue())
243 UP.Runtime = *UserRuntime;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000244 if (UserUpperBound.hasValue())
245 UP.UpperBound = *UserUpperBound;
Teresa Johnson9a18a6f2017-08-03 17:52:38 +0000246 if (UserAllowPeeling.hasValue())
247 UP.AllowPeeling = *UserAllowPeeling;
Justin Bognera1dd4932016-01-12 00:55:26 +0000248
Justin Bognera1dd4932016-01-12 00:55:26 +0000249 return UP;
250}
251
Chris Lattner79a42ac2006-12-19 21:40:18 +0000252namespace {
Eugene Zelenko306d2992017-10-18 21:46:47 +0000253
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000254/// A struct to densely store the state of an instruction after unrolling at
255/// each iteration.
256///
257/// This is designed to work like a tuple of <Instruction *, int> for the
258/// purposes of hashing and lookup, but to be able to associate two boolean
259/// states with each key.
260struct UnrolledInstState {
261 Instruction *I;
262 int Iteration : 30;
263 unsigned IsFree : 1;
264 unsigned IsCounted : 1;
265};
266
267/// Hashing and equality testing for a set of the instruction states.
268struct UnrolledInstStateKeyInfo {
Eugene Zelenko306d2992017-10-18 21:46:47 +0000269 using PtrInfo = DenseMapInfo<Instruction *>;
270 using PairInfo = DenseMapInfo<std::pair<Instruction *, int>>;
271
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000272 static inline UnrolledInstState getEmptyKey() {
273 return {PtrInfo::getEmptyKey(), 0, 0, 0};
274 }
Eugene Zelenko306d2992017-10-18 21:46:47 +0000275
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000276 static inline UnrolledInstState getTombstoneKey() {
277 return {PtrInfo::getTombstoneKey(), 0, 0, 0};
278 }
Eugene Zelenko306d2992017-10-18 21:46:47 +0000279
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000280 static inline unsigned getHashValue(const UnrolledInstState &S) {
281 return PairInfo::getHashValue({S.I, S.Iteration});
282 }
Eugene Zelenko306d2992017-10-18 21:46:47 +0000283
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000284 static inline bool isEqual(const UnrolledInstState &LHS,
285 const UnrolledInstState &RHS) {
286 return PairInfo::isEqual({LHS.I, LHS.Iteration}, {RHS.I, RHS.Iteration});
287 }
288};
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000289
Chandler Carruth02156082015-05-22 17:41:35 +0000290struct EstimatedUnrollCost {
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000291 /// The estimated cost after unrolling.
Dehao Chenc3be2252016-12-02 03:17:07 +0000292 unsigned UnrolledCost;
Chandler Carruth302a1332015-02-13 02:10:56 +0000293
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000294 /// The estimated dynamic cost of executing the instructions in the
Chandler Carruth9dabd142015-06-05 17:01:43 +0000295 /// rolled form.
Dehao Chenc3be2252016-12-02 03:17:07 +0000296 unsigned RolledDynamicCost;
Chandler Carruth02156082015-05-22 17:41:35 +0000297};
Eugene Zelenko306d2992017-10-18 21:46:47 +0000298
299} // end anonymous namespace
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000300
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000301/// Figure out if the loop is worth full unrolling.
Chandler Carruth02156082015-05-22 17:41:35 +0000302///
303/// Complete loop unrolling can make some loads constant, and we need to know
304/// if that would expose any further optimization opportunities. This routine
Michael Zolotukhinc4e4f332015-06-11 22:17:39 +0000305/// estimates this optimization. It computes cost of unrolled loop
306/// (UnrolledCost) and dynamic cost of the original loop (RolledDynamicCost). By
307/// dynamic cost we mean that we won't count costs of blocks that are known not
308/// to be executed (i.e. if we have a branch in the loop and we know that at the
309/// given iteration its condition would be resolved to true, we won't add up the
310/// cost of the 'false'-block).
311/// \returns Optional value, holding the RolledDynamicCost and UnrolledCost. If
312/// the analysis failed (no benefits expected from the unrolling, or the loop is
313/// too big to analyze), the returned value is None.
Andrei Elovikovf9b80352018-03-15 09:59:15 +0000314static Optional<EstimatedUnrollCost> analyzeLoopUnrollCost(
315 const Loop *L, unsigned TripCount, DominatorTree &DT, ScalarEvolution &SE,
316 const SmallPtrSetImpl<const Value *> &EphValues,
317 const TargetTransformInfo &TTI, unsigned MaxUnrolledLoopSize) {
Chandler Carruth02156082015-05-22 17:41:35 +0000318 // We want to be able to scale offsets by the trip count and add more offsets
319 // to them without checking for overflows, and we already don't want to
320 // analyze *massive* trip counts, so we force the max to be reasonably small.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000321 assert(UnrollMaxIterationsCountToAnalyze <
Simon Pilgrim0444e4f2017-10-19 15:00:31 +0000322 (unsigned)(std::numeric_limits<int>::max() / 2) &&
Chandler Carruth02156082015-05-22 17:41:35 +0000323 "The unroll iterations max is too large!");
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000324
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000325 // Only analyze inner loops. We can't properly estimate cost of nested loops
326 // and we won't visit inner loops again anyway.
327 if (!L->empty())
328 return None;
329
Chandler Carruth02156082015-05-22 17:41:35 +0000330 // Don't simulate loops with a big or unknown tripcount
331 if (!UnrollMaxIterationsCountToAnalyze || !TripCount ||
332 TripCount > UnrollMaxIterationsCountToAnalyze)
333 return None;
Chandler Carrutha6ae8772015-05-12 23:32:56 +0000334
Chandler Carruth02156082015-05-22 17:41:35 +0000335 SmallSetVector<BasicBlock *, 16> BBWorklist;
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000336 SmallSetVector<std::pair<BasicBlock *, BasicBlock *>, 4> ExitWorklist;
Chandler Carruth02156082015-05-22 17:41:35 +0000337 DenseMap<Value *, Constant *> SimplifiedValues;
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000338 SmallVector<std::pair<Value *, Constant *>, 4> SimplifiedInputValues;
Chandler Carruth3b057b32015-02-13 03:57:40 +0000339
Chandler Carruth9dabd142015-06-05 17:01:43 +0000340 // The estimated cost of the unrolled form of the loop. We try to estimate
341 // this by simplifying as much as we can while computing the estimate.
Dehao Chenc3be2252016-12-02 03:17:07 +0000342 unsigned UnrolledCost = 0;
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000343
Chandler Carruth9dabd142015-06-05 17:01:43 +0000344 // We also track the estimated dynamic (that is, actually executed) cost in
345 // the rolled form. This helps identify cases when the savings from unrolling
346 // aren't just exposing dead control flows, but actual reduced dynamic
347 // instructions due to the simplifications which we expect to occur after
348 // unrolling.
Dehao Chenc3be2252016-12-02 03:17:07 +0000349 unsigned RolledDynamicCost = 0;
Chandler Carruth8c863752015-02-13 03:48:38 +0000350
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000351 // We track the simplification of each instruction in each iteration. We use
352 // this to recursively merge costs into the unrolled cost on-demand so that
353 // we don't count the cost of any dead code. This is essentially a map from
354 // <instruction, int> to <bool, bool>, but stored as a densely packed struct.
355 DenseSet<UnrolledInstState, UnrolledInstStateKeyInfo> InstCostMap;
356
357 // A small worklist used to accumulate cost of instructions from each
358 // observable and reached root in the loop.
359 SmallVector<Instruction *, 16> CostWorklist;
360
361 // PHI-used worklist used between iterations while accumulating cost.
362 SmallVector<Instruction *, 4> PHIUsedList;
363
364 // Helper function to accumulate cost for instructions in the loop.
365 auto AddCostRecursively = [&](Instruction &RootI, int Iteration) {
366 assert(Iteration >= 0 && "Cannot have a negative iteration!");
367 assert(CostWorklist.empty() && "Must start with an empty cost list");
368 assert(PHIUsedList.empty() && "Must start with an empty phi used list");
369 CostWorklist.push_back(&RootI);
370 for (;; --Iteration) {
371 do {
372 Instruction *I = CostWorklist.pop_back_val();
373
374 // InstCostMap only uses I and Iteration as a key, the other two values
375 // don't matter here.
376 auto CostIter = InstCostMap.find({I, Iteration, 0, 0});
377 if (CostIter == InstCostMap.end())
378 // If an input to a PHI node comes from a dead path through the loop
379 // we may have no cost data for it here. What that actually means is
380 // that it is free.
381 continue;
382 auto &Cost = *CostIter;
383 if (Cost.IsCounted)
384 // Already counted this instruction.
385 continue;
386
387 // Mark that we are counting the cost of this instruction now.
388 Cost.IsCounted = true;
389
390 // If this is a PHI node in the loop header, just add it to the PHI set.
391 if (auto *PhiI = dyn_cast<PHINode>(I))
392 if (PhiI->getParent() == L->getHeader()) {
393 assert(Cost.IsFree && "Loop PHIs shouldn't be evaluated as they "
394 "inherently simplify during unrolling.");
395 if (Iteration == 0)
396 continue;
397
398 // Push the incoming value from the backedge into the PHI used list
399 // if it is an in-loop instruction. We'll use this to populate the
400 // cost worklist for the next iteration (as we count backwards).
401 if (auto *OpI = dyn_cast<Instruction>(
402 PhiI->getIncomingValueForBlock(L->getLoopLatch())))
403 if (L->contains(OpI))
404 PHIUsedList.push_back(OpI);
405 continue;
406 }
407
408 // First accumulate the cost of this instruction.
409 if (!Cost.IsFree) {
410 UnrolledCost += TTI.getUserCost(I);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000411 LLVM_DEBUG(dbgs() << "Adding cost of instruction (iteration "
412 << Iteration << "): ");
413 LLVM_DEBUG(I->dump());
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000414 }
415
416 // We must count the cost of every operand which is not free,
417 // recursively. If we reach a loop PHI node, simply add it to the set
418 // to be considered on the next iteration (backwards!).
419 for (Value *Op : I->operands()) {
420 // Check whether this operand is free due to being a constant or
421 // outside the loop.
422 auto *OpI = dyn_cast<Instruction>(Op);
423 if (!OpI || !L->contains(OpI))
424 continue;
425
426 // Otherwise accumulate its cost.
427 CostWorklist.push_back(OpI);
428 }
429 } while (!CostWorklist.empty());
430
431 if (PHIUsedList.empty())
432 // We've exhausted the search.
433 break;
434
435 assert(Iteration > 0 &&
436 "Cannot track PHI-used values past the first iteration!");
437 CostWorklist.append(PHIUsedList.begin(), PHIUsedList.end());
438 PHIUsedList.clear();
439 }
440 };
441
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000442 // Ensure that we don't violate the loop structure invariants relied on by
443 // this analysis.
444 assert(L->isLoopSimplifyForm() && "Must put loop into normal form first.");
445 assert(L->isLCSSAForm(DT) &&
446 "Must have loops in LCSSA form to track live-out values.");
447
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000448 LLVM_DEBUG(dbgs() << "Starting LoopUnroll profitability analysis...\n");
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000449
Chandler Carruth02156082015-05-22 17:41:35 +0000450 // Simulate execution of each iteration of the loop counting instructions,
451 // which would be simplified.
452 // Since the same load will take different values on different iterations,
453 // we literally have to go through all loop's iterations.
454 for (unsigned Iteration = 0; Iteration < TripCount; ++Iteration) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000455 LLVM_DEBUG(dbgs() << " Analyzing iteration " << Iteration << "\n");
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000456
457 // Prepare for the iteration by collecting any simplified entry or backedge
458 // inputs.
459 for (Instruction &I : *L->getHeader()) {
460 auto *PHI = dyn_cast<PHINode>(&I);
461 if (!PHI)
462 break;
463
464 // The loop header PHI nodes must have exactly two input: one from the
465 // loop preheader and one from the loop latch.
466 assert(
467 PHI->getNumIncomingValues() == 2 &&
468 "Must have an incoming value only for the preheader and the latch.");
469
470 Value *V = PHI->getIncomingValueForBlock(
471 Iteration == 0 ? L->getLoopPreheader() : L->getLoopLatch());
472 Constant *C = dyn_cast<Constant>(V);
473 if (Iteration != 0 && !C)
474 C = SimplifiedValues.lookup(V);
475 if (C)
476 SimplifiedInputValues.push_back({PHI, C});
477 }
478
479 // Now clear and re-populate the map for the next iteration.
Chandler Carruth02156082015-05-22 17:41:35 +0000480 SimplifiedValues.clear();
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000481 while (!SimplifiedInputValues.empty())
482 SimplifiedValues.insert(SimplifiedInputValues.pop_back_val());
483
Michael Zolotukhin9f520eb2016-02-26 02:57:05 +0000484 UnrolledInstAnalyzer Analyzer(Iteration, SimplifiedValues, SE, L);
Chandler Carruthf174a152015-05-22 02:47:29 +0000485
Chandler Carruth02156082015-05-22 17:41:35 +0000486 BBWorklist.clear();
487 BBWorklist.insert(L->getHeader());
488 // Note that we *must not* cache the size, this loop grows the worklist.
489 for (unsigned Idx = 0; Idx != BBWorklist.size(); ++Idx) {
490 BasicBlock *BB = BBWorklist[Idx];
Chandler Carruthf174a152015-05-22 02:47:29 +0000491
Chandler Carruth02156082015-05-22 17:41:35 +0000492 // Visit all instructions in the given basic block and try to simplify
493 // it. We don't change the actual IR, just count optimization
494 // opportunities.
495 for (Instruction &I : *BB) {
Andrei Elovikovf9b80352018-03-15 09:59:15 +0000496 // These won't get into the final code - don't even try calculating the
497 // cost for them.
498 if (isa<DbgInfoIntrinsic>(I) || EphValues.count(&I))
Dehao Chen977853b2016-09-30 18:30:04 +0000499 continue;
500
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000501 // Track this instruction's expected baseline cost when executing the
502 // rolled loop form.
503 RolledDynamicCost += TTI.getUserCost(&I);
Chandler Carruth17a04962015-02-13 03:49:41 +0000504
Chandler Carruth02156082015-05-22 17:41:35 +0000505 // Visit the instruction to analyze its loop cost after unrolling,
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000506 // and if the visitor returns true, mark the instruction as free after
507 // unrolling and continue.
508 bool IsFree = Analyzer.visit(I);
509 bool Inserted = InstCostMap.insert({&I, (int)Iteration,
510 (unsigned)IsFree,
511 /*IsCounted*/ false}).second;
512 (void)Inserted;
513 assert(Inserted && "Cannot have a state for an unvisited instruction!");
Chandler Carruth9dabd142015-06-05 17:01:43 +0000514
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000515 if (IsFree)
516 continue;
517
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000518 // Can't properly model a cost of a call.
519 // FIXME: With a proper cost model we should be able to do it.
Matt Arsenault2c1a5702018-06-26 18:51:17 +0000520 if (auto *CI = dyn_cast<CallInst>(&I)) {
521 const Function *Callee = CI->getCalledFunction();
522 if (!Callee || TTI.isLoweredToCall(Callee)) {
523 LLVM_DEBUG(dbgs() << "Can't analyze cost of loop with call\n");
524 return None;
525 }
526 }
Chandler Carruth02156082015-05-22 17:41:35 +0000527
Haicheng Wue7877632016-08-17 22:42:58 +0000528 // If the instruction might have a side-effect recursively account for
529 // the cost of it and all the instructions leading up to it.
530 if (I.mayHaveSideEffects())
531 AddCostRecursively(I, Iteration);
532
Chandler Carruth02156082015-05-22 17:41:35 +0000533 // If unrolled body turns out to be too big, bail out.
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000534 if (UnrolledCost > MaxUnrolledLoopSize) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000535 LLVM_DEBUG(dbgs() << " Exceeded threshold.. exiting.\n"
536 << " UnrolledCost: " << UnrolledCost
537 << ", MaxUnrolledLoopSize: " << MaxUnrolledLoopSize
538 << "\n");
Chandler Carruth02156082015-05-22 17:41:35 +0000539 return None;
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000540 }
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000541 }
Chandler Carruth415f4122015-02-13 02:17:39 +0000542
Chandler Carruthedb12a82018-10-15 10:04:59 +0000543 Instruction *TI = BB->getTerminator();
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000544
545 // Add in the live successors by first checking whether we have terminator
546 // that may be simplified based on the values simplified by this call.
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000547 BasicBlock *KnownSucc = nullptr;
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000548 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
549 if (BI->isConditional()) {
550 if (Constant *SimpleCond =
551 SimplifiedValues.lookup(BI->getCondition())) {
Michael Zolotukhin3a7d55b2015-07-29 18:10:29 +0000552 // Just take the first successor if condition is undef
553 if (isa<UndefValue>(SimpleCond))
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000554 KnownSucc = BI->getSuccessor(0);
555 else if (ConstantInt *SimpleCondVal =
556 dyn_cast<ConstantInt>(SimpleCond))
557 KnownSucc = BI->getSuccessor(SimpleCondVal->isZero() ? 1 : 0);
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000558 }
559 }
560 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
561 if (Constant *SimpleCond =
562 SimplifiedValues.lookup(SI->getCondition())) {
Michael Zolotukhin3a7d55b2015-07-29 18:10:29 +0000563 // Just take the first successor if condition is undef
564 if (isa<UndefValue>(SimpleCond))
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000565 KnownSucc = SI->getSuccessor(0);
566 else if (ConstantInt *SimpleCondVal =
567 dyn_cast<ConstantInt>(SimpleCond))
Chandler Carruth927d8e62017-04-12 07:27:28 +0000568 KnownSucc = SI->findCaseValue(SimpleCondVal)->getCaseSuccessor();
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000569 }
570 }
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000571 if (KnownSucc) {
572 if (L->contains(KnownSucc))
573 BBWorklist.insert(KnownSucc);
574 else
575 ExitWorklist.insert({BB, KnownSucc});
576 continue;
577 }
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000578
Chandler Carruth02156082015-05-22 17:41:35 +0000579 // Add BB's successors to the worklist.
580 for (BasicBlock *Succ : successors(BB))
581 if (L->contains(Succ))
582 BBWorklist.insert(Succ);
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000583 else
584 ExitWorklist.insert({BB, Succ});
Michael Zolotukhind2268a72016-05-18 21:20:12 +0000585 AddCostRecursively(*TI, Iteration);
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000586 }
Chandler Carruth02156082015-05-22 17:41:35 +0000587
588 // If we found no optimization opportunities on the first iteration, we
589 // won't find them on later ones too.
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000590 if (UnrolledCost == RolledDynamicCost) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000591 LLVM_DEBUG(dbgs() << " No opportunities found.. exiting.\n"
592 << " UnrolledCost: " << UnrolledCost << "\n");
Chandler Carruth02156082015-05-22 17:41:35 +0000593 return None;
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000594 }
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000595 }
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000596
597 while (!ExitWorklist.empty()) {
598 BasicBlock *ExitingBB, *ExitBB;
599 std::tie(ExitingBB, ExitBB) = ExitWorklist.pop_back_val();
600
601 for (Instruction &I : *ExitBB) {
602 auto *PN = dyn_cast<PHINode>(&I);
603 if (!PN)
604 break;
605
606 Value *Op = PN->getIncomingValueForBlock(ExitingBB);
607 if (auto *OpI = dyn_cast<Instruction>(Op))
608 if (L->contains(OpI))
609 AddCostRecursively(*OpI, TripCount - 1);
610 }
611 }
612
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000613 LLVM_DEBUG(dbgs() << "Analysis finished:\n"
614 << "UnrolledCost: " << UnrolledCost << ", "
615 << "RolledDynamicCost: " << RolledDynamicCost << "\n");
Chandler Carruth9dabd142015-06-05 17:01:43 +0000616 return {{UnrolledCost, RolledDynamicCost}};
Chandler Carruth02156082015-05-22 17:41:35 +0000617}
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000618
Dan Gohman49d08a52007-05-08 15:14:19 +0000619/// ApproximateLoopSize - Approximate the size of the loop.
David Green963401d2018-07-01 12:47:30 +0000620unsigned llvm::ApproximateLoopSize(
621 const Loop *L, unsigned &NumCalls, bool &NotDuplicatable, bool &Convergent,
622 const TargetTransformInfo &TTI,
623 const SmallPtrSetImpl<const Value *> &EphValues, unsigned BEInsns) {
Dan Gohman969e83a2009-10-31 14:54:17 +0000624 CodeMetrics Metrics;
Sanjay Patel5c967232016-03-08 19:06:12 +0000625 for (BasicBlock *BB : L->blocks())
626 Metrics.analyzeBasicBlock(BB, TTI, EphValues);
Owen Anderson04cf3fd2010-09-09 20:32:23 +0000627 NumCalls = Metrics.NumInlineCandidates;
James Molloy4f6fb952012-12-20 16:04:27 +0000628 NotDuplicatable = Metrics.notDuplicatable;
Justin Lebar6827de12016-03-14 23:15:34 +0000629 Convergent = Metrics.convergent;
Andrew Trick279e7a62011-07-23 00:29:16 +0000630
Owen Anderson62ea1b72010-09-09 19:07:31 +0000631 unsigned LoopSize = Metrics.NumInsts;
Andrew Trick279e7a62011-07-23 00:29:16 +0000632
Owen Anderson62ea1b72010-09-09 19:07:31 +0000633 // Don't allow an estimate of size zero. This would allows unrolling of loops
634 // with huge iteration counts, which is a compile time problem even if it's
Hal Finkel38dd5902015-01-10 00:30:55 +0000635 // not a problem for code quality. Also, the code using this size may assume
636 // that each loop has at least three instructions (likely a conditional
637 // branch, a comparison feeding that branch, and some kind of loop increment
638 // feeding that comparison instruction).
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000639 LoopSize = std::max(LoopSize, BEInsns + 1);
Andrew Trick279e7a62011-07-23 00:29:16 +0000640
Owen Anderson62ea1b72010-09-09 19:07:31 +0000641 return LoopSize;
Chris Lattner946b2552004-04-18 05:20:17 +0000642}
643
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000644// Returns the loop hint metadata node with the given name (for example,
645// "llvm.loop.unroll.count"). If no such metadata node exists, then nullptr is
646// returned.
Jingyue Wu49a766e2015-02-02 20:41:11 +0000647static MDNode *GetUnrollMetadataForLoop(const Loop *L, StringRef Name) {
648 if (MDNode *LoopID = L->getLoopID())
649 return GetUnrollMetadata(LoopID, Name);
650 return nullptr;
Eli Benderskyff903242014-06-16 23:53:02 +0000651}
652
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000653// Returns true if the loop has an unroll(full) pragma.
654static bool HasUnrollFullPragma(const Loop *L) {
Jingyue Wu0220df02015-02-01 02:27:45 +0000655 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.full");
Eli Benderskyff903242014-06-16 23:53:02 +0000656}
657
Mark Heffernan89391542015-08-10 17:28:08 +0000658// Returns true if the loop has an unroll(enable) pragma. This metadata is used
659// for both "#pragma unroll" and "#pragma clang loop unroll(enable)" directives.
660static bool HasUnrollEnablePragma(const Loop *L) {
661 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.enable");
662}
663
Eli Benderskyff903242014-06-16 23:53:02 +0000664// Returns true if the loop has an unroll(disable) pragma.
665static bool HasUnrollDisablePragma(const Loop *L) {
Jingyue Wu0220df02015-02-01 02:27:45 +0000666 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.disable");
Eli Benderskyff903242014-06-16 23:53:02 +0000667}
668
Kevin Qin715b01e2015-03-09 06:14:18 +0000669// Returns true if the loop has an runtime unroll(disable) pragma.
670static bool HasRuntimeUnrollDisablePragma(const Loop *L) {
671 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.runtime.disable");
672}
673
Eli Benderskyff903242014-06-16 23:53:02 +0000674// If loop has an unroll_count pragma return the (necessarily
675// positive) value from the pragma. Otherwise return 0.
676static unsigned UnrollCountPragmaValue(const Loop *L) {
Jingyue Wu49a766e2015-02-02 20:41:11 +0000677 MDNode *MD = GetUnrollMetadataForLoop(L, "llvm.loop.unroll.count");
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000678 if (MD) {
679 assert(MD->getNumOperands() == 2 &&
680 "Unroll count hint metadata should have two operands.");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000681 unsigned Count =
682 mdconst::extract<ConstantInt>(MD->getOperand(1))->getZExtValue();
Eli Benderskyff903242014-06-16 23:53:02 +0000683 assert(Count >= 1 && "Unroll count must be positive.");
684 return Count;
685 }
686 return 0;
687}
688
Dehao Chencc763442016-12-30 00:50:28 +0000689// Computes the boosting factor for complete unrolling.
690// If fully unrolling the loop would save a lot of RolledDynamicCost, it would
691// be beneficial to fully unroll the loop even if unrolledcost is large. We
692// use (RolledDynamicCost / UnrolledCost) to model the unroll benefits to adjust
693// the unroll threshold.
694static unsigned getFullUnrollBoostingFactor(const EstimatedUnrollCost &Cost,
695 unsigned MaxPercentThresholdBoost) {
Eugene Zelenko306d2992017-10-18 21:46:47 +0000696 if (Cost.RolledDynamicCost >= std::numeric_limits<unsigned>::max() / 100)
Dehao Chencc763442016-12-30 00:50:28 +0000697 return 100;
698 else if (Cost.UnrolledCost != 0)
699 // The boosting factor is RolledDynamicCost / UnrolledCost
700 return std::min(100 * Cost.RolledDynamicCost / Cost.UnrolledCost,
701 MaxPercentThresholdBoost);
702 else
703 return MaxPercentThresholdBoost;
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000704}
705
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000706// Returns loop size estimation for unrolled loop.
707static uint64_t getUnrolledLoopSize(
708 unsigned LoopSize,
709 TargetTransformInfo::UnrollingPreferences &UP) {
710 assert(LoopSize >= UP.BEInsns && "LoopSize should not be less than BEInsns!");
711 return (uint64_t)(LoopSize - UP.BEInsns) * UP.Count + UP.BEInsns;
712}
713
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000714// Returns true if unroll count was set explicitly.
715// Calculates unroll count and writes it to UP.Count.
David Green963401d2018-07-01 12:47:30 +0000716bool llvm::computeUnrollCount(
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000717 Loop *L, const TargetTransformInfo &TTI, DominatorTree &DT, LoopInfo *LI,
Andrei Elovikovf9b80352018-03-15 09:59:15 +0000718 ScalarEvolution &SE, const SmallPtrSetImpl<const Value *> &EphValues,
719 OptimizationRemarkEmitter *ORE, unsigned &TripCount, unsigned MaxTripCount,
720 unsigned &TripMultiple, unsigned LoopSize,
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000721 TargetTransformInfo::UnrollingPreferences &UP, bool &UseUpperBound) {
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000722 // Check for explicit Count.
723 // 1st priority is unroll count set by "unroll-count" option.
724 bool UserUnrollCount = UnrollCount.getNumOccurrences() > 0;
725 if (UserUnrollCount) {
726 UP.Count = UnrollCount;
727 UP.AllowExpensiveTripCount = true;
728 UP.Force = true;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000729 if (UP.AllowRemainder && getUnrolledLoopSize(LoopSize, UP) < UP.Threshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000730 return true;
731 }
732
733 // 2nd priority is unroll count set by pragma.
734 unsigned PragmaCount = UnrollCountPragmaValue(L);
735 if (PragmaCount > 0) {
736 UP.Count = PragmaCount;
737 UP.Runtime = true;
738 UP.AllowExpensiveTripCount = true;
739 UP.Force = true;
Yaxun Liu3c42f1c2018-03-02 16:22:32 +0000740 if ((UP.AllowRemainder || (TripMultiple % PragmaCount == 0)) &&
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000741 getUnrolledLoopSize(LoopSize, UP) < PragmaUnrollThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000742 return true;
743 }
744 bool PragmaFullUnroll = HasUnrollFullPragma(L);
745 if (PragmaFullUnroll && TripCount != 0) {
746 UP.Count = TripCount;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000747 if (getUnrolledLoopSize(LoopSize, UP) < PragmaUnrollThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000748 return false;
749 }
750
751 bool PragmaEnableUnroll = HasUnrollEnablePragma(L);
752 bool ExplicitUnroll = PragmaCount > 0 || PragmaFullUnroll ||
753 PragmaEnableUnroll || UserUnrollCount;
754
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000755 if (ExplicitUnroll && TripCount != 0) {
756 // If the loop has an unrolling pragma, we want to be more aggressive with
David Green963401d2018-07-01 12:47:30 +0000757 // unrolling limits. Set thresholds to at least the PragmaUnrollThreshold
758 // value which is larger than the default limits.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000759 UP.Threshold = std::max<unsigned>(UP.Threshold, PragmaUnrollThreshold);
760 UP.PartialThreshold =
761 std::max<unsigned>(UP.PartialThreshold, PragmaUnrollThreshold);
762 }
763
764 // 3rd priority is full unroll count.
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000765 // Full unroll makes sense only when TripCount or its upper bound could be
766 // statically calculated.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000767 // Also we need to check if we exceed FullUnrollMaxCount.
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000768 // If using the upper bound to unroll, TripMultiple should be set to 1 because
769 // we do not know when loop may exit.
770 // MaxTripCount and ExactTripCount cannot both be non zero since we only
771 // compute the former when the latter is zero.
772 unsigned ExactTripCount = TripCount;
773 assert((ExactTripCount == 0 || MaxTripCount == 0) &&
Hiroshi Inouef2096492018-06-14 05:41:49 +0000774 "ExtractTripCount and MaxTripCount cannot both be non zero.");
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000775 unsigned FullUnrollTripCount = ExactTripCount ? ExactTripCount : MaxTripCount;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000776 UP.Count = FullUnrollTripCount;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000777 if (FullUnrollTripCount && FullUnrollTripCount <= UP.FullUnrollMaxCount) {
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000778 // When computing the unrolled size, note that BEInsns are not replicated
779 // like the rest of the loop body.
Dehao Chencc763442016-12-30 00:50:28 +0000780 if (getUnrolledLoopSize(LoopSize, UP) < UP.Threshold) {
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000781 UseUpperBound = (MaxTripCount == FullUnrollTripCount);
782 TripCount = FullUnrollTripCount;
783 TripMultiple = UP.UpperBound ? 1 : TripMultiple;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000784 return ExplicitUnroll;
785 } else {
786 // The loop isn't that small, but we still can fully unroll it if that
787 // helps to remove a significant number of instructions.
788 // To check that, run additional analysis on the loop.
789 if (Optional<EstimatedUnrollCost> Cost = analyzeLoopUnrollCost(
Andrei Elovikovf9b80352018-03-15 09:59:15 +0000790 L, FullUnrollTripCount, DT, SE, EphValues, TTI,
Dehao Chencc763442016-12-30 00:50:28 +0000791 UP.Threshold * UP.MaxPercentThresholdBoost / 100)) {
792 unsigned Boost =
793 getFullUnrollBoostingFactor(*Cost, UP.MaxPercentThresholdBoost);
794 if (Cost->UnrolledCost < UP.Threshold * Boost / 100) {
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000795 UseUpperBound = (MaxTripCount == FullUnrollTripCount);
796 TripCount = FullUnrollTripCount;
797 TripMultiple = UP.UpperBound ? 1 : TripMultiple;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000798 return ExplicitUnroll;
799 }
Dehao Chencc763442016-12-30 00:50:28 +0000800 }
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000801 }
802 }
803
Neil Henningd2261f612018-10-05 09:39:07 +0000804 // 4th priority is loop peeling.
Florian Hahnfc97b612018-03-15 21:34:43 +0000805 computePeelCount(L, LoopSize, UP, TripCount, SE);
Sanjoy Daseed71b92017-03-03 18:19:10 +0000806 if (UP.PeelCount) {
807 UP.Runtime = false;
808 UP.Count = 1;
809 return ExplicitUnroll;
810 }
811
812 // 5th priority is partial unrolling.
Hiroshi Inouef2096492018-06-14 05:41:49 +0000813 // Try partial unroll only when TripCount could be statically calculated.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000814 if (TripCount) {
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000815 UP.Partial |= ExplicitUnroll;
816 if (!UP.Partial) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000817 LLVM_DEBUG(dbgs() << " will not try to unroll partially because "
818 << "-unroll-allow-partial not given\n");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000819 UP.Count = 0;
820 return false;
821 }
Haicheng Wu430b3e42016-10-27 18:40:02 +0000822 if (UP.Count == 0)
823 UP.Count = TripCount;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000824 if (UP.PartialThreshold != NoThreshold) {
825 // Reduce unroll count to be modulo of TripCount for partial unrolling.
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000826 if (getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold)
827 UP.Count =
828 (std::max(UP.PartialThreshold, UP.BEInsns + 1) - UP.BEInsns) /
829 (LoopSize - UP.BEInsns);
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000830 if (UP.Count > UP.MaxCount)
831 UP.Count = UP.MaxCount;
832 while (UP.Count != 0 && TripCount % UP.Count != 0)
833 UP.Count--;
834 if (UP.AllowRemainder && UP.Count <= 1) {
835 // If there is no Count that is modulo of TripCount, set Count to
836 // largest power-of-two factor that satisfies the threshold limit.
837 // As we'll create fixup loop, do the type of unrolling only if
838 // remainder loop is allowed.
Jonas Paulsson58c5a7f2016-09-28 09:41:38 +0000839 UP.Count = UP.DefaultUnrollRuntimeCount;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000840 while (UP.Count != 0 &&
841 getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000842 UP.Count >>= 1;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000843 }
844 if (UP.Count < 2) {
845 if (PragmaEnableUnroll)
Vivek Pandya95906582017-10-11 17:12:59 +0000846 ORE->emit([&]() {
847 return OptimizationRemarkMissed(DEBUG_TYPE,
848 "UnrollAsDirectedTooLarge",
849 L->getStartLoc(), L->getHeader())
850 << "Unable to unroll loop as directed by unroll(enable) "
851 "pragma "
852 "because unrolled size is too large.";
853 });
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000854 UP.Count = 0;
855 }
856 } else {
857 UP.Count = TripCount;
858 }
Geoff Berryb0573542017-06-28 17:01:15 +0000859 if (UP.Count > UP.MaxCount)
860 UP.Count = UP.MaxCount;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000861 if ((PragmaFullUnroll || PragmaEnableUnroll) && TripCount &&
862 UP.Count != TripCount)
Vivek Pandya95906582017-10-11 17:12:59 +0000863 ORE->emit([&]() {
864 return OptimizationRemarkMissed(DEBUG_TYPE,
865 "FullUnrollAsDirectedTooLarge",
866 L->getStartLoc(), L->getHeader())
867 << "Unable to fully unroll loop as directed by unroll pragma "
868 "because "
869 "unrolled size is too large.";
870 });
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000871 return ExplicitUnroll;
872 }
873 assert(TripCount == 0 &&
874 "All cases when TripCount is constant should be covered here.");
875 if (PragmaFullUnroll)
Vivek Pandya95906582017-10-11 17:12:59 +0000876 ORE->emit([&]() {
877 return OptimizationRemarkMissed(
878 DEBUG_TYPE, "CantFullUnrollAsDirectedRuntimeTripCount",
879 L->getStartLoc(), L->getHeader())
880 << "Unable to fully unroll loop as directed by unroll(full) "
881 "pragma "
882 "because loop has a runtime trip count.";
883 });
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000884
Michael Kupersteinb151a642016-11-30 21:13:57 +0000885 // 6th priority is runtime unrolling.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000886 // Don't unroll a runtime trip count loop when it is disabled.
887 if (HasRuntimeUnrollDisablePragma(L)) {
888 UP.Count = 0;
889 return false;
890 }
Fangrui Songf78650a2018-07-30 19:41:25 +0000891
Michael Kupersteinb151a642016-11-30 21:13:57 +0000892 // Check if the runtime trip count is too small when profile is available.
Easwaran Ramana17f2202017-12-22 01:33:52 +0000893 if (L->getHeader()->getParent()->hasProfileData()) {
Michael Kupersteinb151a642016-11-30 21:13:57 +0000894 if (auto ProfileTripCount = getLoopEstimatedTripCount(L)) {
895 if (*ProfileTripCount < FlatLoopTripCountThreshold)
896 return false;
897 else
898 UP.AllowExpensiveTripCount = true;
899 }
Fangrui Songf78650a2018-07-30 19:41:25 +0000900 }
Michael Kupersteinb151a642016-11-30 21:13:57 +0000901
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000902 // Reduce count based on the type of unrolling and the threshold values.
903 UP.Runtime |= PragmaEnableUnroll || PragmaCount > 0 || UserUnrollCount;
904 if (!UP.Runtime) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000905 LLVM_DEBUG(
906 dbgs() << " will not try to unroll loop with runtime trip count "
907 << "-unroll-runtime not given\n");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000908 UP.Count = 0;
909 return false;
910 }
911 if (UP.Count == 0)
Jonas Paulsson58c5a7f2016-09-28 09:41:38 +0000912 UP.Count = UP.DefaultUnrollRuntimeCount;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000913
914 // Reduce unroll count to be the largest power-of-two factor of
915 // the original count which satisfies the threshold limit.
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000916 while (UP.Count != 0 &&
917 getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000918 UP.Count >>= 1;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000919
Evgeny Stupachenkob7875222016-05-28 00:14:58 +0000920#ifndef NDEBUG
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000921 unsigned OrigCount = UP.Count;
Evgeny Stupachenkob7875222016-05-28 00:14:58 +0000922#endif
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000923
924 if (!UP.AllowRemainder && UP.Count != 0 && (TripMultiple % UP.Count) != 0) {
925 while (UP.Count != 0 && TripMultiple % UP.Count != 0)
926 UP.Count >>= 1;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000927 LLVM_DEBUG(
928 dbgs() << "Remainder loop is restricted (that could architecture "
929 "specific or because the loop contains a convergent "
930 "instruction), so unroll count must divide the trip "
931 "multiple, "
932 << TripMultiple << ". Reducing unroll count from " << OrigCount
933 << " to " << UP.Count << ".\n");
Eugene Zelenko306d2992017-10-18 21:46:47 +0000934
Adam Nemetf57cc622016-09-30 03:44:16 +0000935 using namespace ore;
Eugene Zelenko306d2992017-10-18 21:46:47 +0000936
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000937 if (PragmaCount > 0 && !UP.AllowRemainder)
Vivek Pandya95906582017-10-11 17:12:59 +0000938 ORE->emit([&]() {
939 return OptimizationRemarkMissed(DEBUG_TYPE,
940 "DifferentUnrollCountFromDirected",
941 L->getStartLoc(), L->getHeader())
942 << "Unable to unroll loop the number of times directed by "
943 "unroll_count pragma because remainder loop is restricted "
944 "(that could architecture specific or because the loop "
945 "contains a convergent instruction) and so must have an "
946 "unroll "
947 "count that divides the loop trip multiple of "
948 << NV("TripMultiple", TripMultiple) << ". Unrolling instead "
949 << NV("UnrollCount", UP.Count) << " time(s).";
950 });
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000951 }
952
953 if (UP.Count > UP.MaxCount)
954 UP.Count = UP.MaxCount;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000955 LLVM_DEBUG(dbgs() << " partially unrolling with count: " << UP.Count
956 << "\n");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000957 if (UP.Count < 2)
958 UP.Count = 0;
959 return ExplicitUnroll;
960}
961
Sanjoy Das4f3ebd52017-09-27 21:45:22 +0000962static LoopUnrollResult tryToUnrollLoop(
Teresa Johnson9a18a6f2017-08-03 17:52:38 +0000963 Loop *L, DominatorTree &DT, LoopInfo *LI, ScalarEvolution &SE,
964 const TargetTransformInfo &TTI, AssumptionCache &AC,
965 OptimizationRemarkEmitter &ORE, bool PreserveLCSSA, int OptLevel,
966 Optional<unsigned> ProvidedCount, Optional<unsigned> ProvidedThreshold,
967 Optional<bool> ProvidedAllowPartial, Optional<bool> ProvidedRuntime,
968 Optional<bool> ProvidedUpperBound, Optional<bool> ProvidedAllowPeeling) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000969 LLVM_DEBUG(dbgs() << "Loop Unroll: F["
970 << L->getHeader()->getParent()->getName() << "] Loop %"
971 << L->getHeader()->getName() << "\n");
Sanjoy Das4f3ebd52017-09-27 21:45:22 +0000972 if (HasUnrollDisablePragma(L))
973 return LoopUnrollResult::Unmodified;
Eugene Zelenko306d2992017-10-18 21:46:47 +0000974 if (!L->isLoopSimplifyForm()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000975 LLVM_DEBUG(
Haicheng Wu731b04c2016-11-23 19:39:26 +0000976 dbgs() << " Not unrolling loop which is not in loop-simplify form.\n");
Sanjoy Das4f3ebd52017-09-27 21:45:22 +0000977 return LoopUnrollResult::Unmodified;
Eli Benderskyff903242014-06-16 23:53:02 +0000978 }
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000979
980 unsigned NumInlineCandidates;
981 bool NotDuplicatable;
982 bool Convergent;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000983 TargetTransformInfo::UnrollingPreferences UP = gatherUnrollingPreferences(
Geoff Berry66d9bdb2017-06-28 15:53:17 +0000984 L, SE, TTI, OptLevel, ProvidedThreshold, ProvidedCount,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +0000985 ProvidedAllowPartial, ProvidedRuntime, ProvidedUpperBound,
986 ProvidedAllowPeeling);
Haicheng Wu731b04c2016-11-23 19:39:26 +0000987 // Exit early if unrolling is disabled.
988 if (UP.Threshold == 0 && (!UP.Partial || UP.PartialThreshold == 0))
Sanjoy Das4f3ebd52017-09-27 21:45:22 +0000989 return LoopUnrollResult::Unmodified;
Andrei Elovikovf9b80352018-03-15 09:59:15 +0000990
991 SmallPtrSet<const Value *, 32> EphValues;
992 CodeMetrics::collectEphemeralValues(L, &AC, EphValues);
993
994 unsigned LoopSize =
995 ApproximateLoopSize(L, NumInlineCandidates, NotDuplicatable, Convergent,
996 TTI, EphValues, UP.BEInsns);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000997 LLVM_DEBUG(dbgs() << " Loop Size = " << LoopSize << "\n");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000998 if (NotDuplicatable) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000999 LLVM_DEBUG(dbgs() << " Not unrolling loop which contains non-duplicatable"
1000 << " instructions.\n");
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001001 return LoopUnrollResult::Unmodified;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001002 }
1003 if (NumInlineCandidates != 0) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001004 LLVM_DEBUG(dbgs() << " Not unrolling loop with inlinable calls.\n");
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001005 return LoopUnrollResult::Unmodified;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001006 }
Andrew Trick279e7a62011-07-23 00:29:16 +00001007
Andrew Trick2b6860f2011-08-11 23:36:16 +00001008 // Find trip count and trip multiple if count is not available
1009 unsigned TripCount = 0;
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001010 unsigned MaxTripCount = 0;
Andrew Trick1cabe542011-07-23 00:33:05 +00001011 unsigned TripMultiple = 1;
Chandler Carruth6666c272014-10-11 00:12:11 +00001012 // If there are multiple exiting blocks but one of them is the latch, use the
1013 // latch for the trip count estimation. Otherwise insist on a single exiting
1014 // block for the trip count estimation.
1015 BasicBlock *ExitingBlock = L->getLoopLatch();
1016 if (!ExitingBlock || !L->isLoopExiting(ExitingBlock))
1017 ExitingBlock = L->getExitingBlock();
1018 if (ExitingBlock) {
Geoff Berry66d9bdb2017-06-28 15:53:17 +00001019 TripCount = SE.getSmallConstantTripCount(L, ExitingBlock);
1020 TripMultiple = SE.getSmallConstantTripMultiple(L, ExitingBlock);
Andrew Trick2b6860f2011-08-11 23:36:16 +00001021 }
Hal Finkel8f2e7002013-09-11 19:25:43 +00001022
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001023 // If the loop contains a convergent operation, the prelude we'd add
1024 // to do the first few instructions before we hit the unrolled loop
1025 // is unsafe -- it adds a control-flow dependency to the convergent
1026 // operation. Therefore restrict remainder loop (try unrollig without).
1027 //
1028 // TODO: This is quite conservative. In practice, convergent_op()
1029 // is likely to be called unconditionally in the loop. In this
1030 // case, the program would be ill-formed (on most architectures)
1031 // unless n were the same on all threads in a thread group.
1032 // Assuming n is the same on all threads, any kind of unrolling is
1033 // safe. But currently llvm's notion of convergence isn't powerful
1034 // enough to express this.
1035 if (Convergent)
1036 UP.AllowRemainder = false;
Eli Benderskydc6de2c2014-06-12 18:05:39 +00001037
John Brawn84b21832016-10-21 11:08:48 +00001038 // Try to find the trip count upper bound if we cannot find the exact trip
1039 // count.
1040 bool MaxOrZero = false;
1041 if (!TripCount) {
Geoff Berry66d9bdb2017-06-28 15:53:17 +00001042 MaxTripCount = SE.getSmallConstantMaxTripCount(L);
1043 MaxOrZero = SE.isBackedgeTakenCountMaxOrZero(L);
John Brawn84b21832016-10-21 11:08:48 +00001044 // We can unroll by the upper bound amount if it's generally allowed or if
1045 // we know that the loop is executed either the upper bound or zero times.
1046 // (MaxOrZero unrolling keeps only the first loop test, so the number of
1047 // loop tests remains the same compared to the non-unrolled version, whereas
1048 // the generic upper bound unrolling keeps all but the last loop test so the
1049 // number of loop tests goes up which may end up being worse on targets with
Hiroshi Inouef2096492018-06-14 05:41:49 +00001050 // constrained branch predictor resources so is controlled by an option.)
John Brawn84b21832016-10-21 11:08:48 +00001051 // In addition we only unroll small upper bounds.
1052 if (!(UP.UpperBound || MaxOrZero) || MaxTripCount > UnrollMaxUpperBound) {
1053 MaxTripCount = 0;
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001054 }
1055 }
1056
1057 // computeUnrollCount() decides whether it is beneficial to use upper bound to
1058 // fully unroll the loop.
1059 bool UseUpperBound = false;
Andrei Elovikovf9b80352018-03-15 09:59:15 +00001060 bool IsCountSetExplicitly = computeUnrollCount(
1061 L, TTI, DT, LI, SE, EphValues, &ORE, TripCount, MaxTripCount,
1062 TripMultiple, LoopSize, UP, UseUpperBound);
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001063 if (!UP.Count)
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001064 return LoopUnrollResult::Unmodified;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001065 // Unroll factor (Count) must be less or equal to TripCount.
1066 if (TripCount && UP.Count > TripCount)
1067 UP.Count = TripCount;
Dan Gohman2980d9d2007-05-11 20:53:41 +00001068
Dan Gohman3dc2d922008-05-14 00:24:14 +00001069 // Unroll the loop.
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001070 LoopUnrollResult UnrollResult = UnrollLoop(
Sanjoy Das09613b12017-09-20 02:31:57 +00001071 L, UP.Count, TripCount, UP.Force, UP.Runtime, UP.AllowExpensiveTripCount,
1072 UseUpperBound, MaxOrZero, TripMultiple, UP.PeelCount, UP.UnrollRemainder,
1073 LI, &SE, &DT, &AC, &ORE, PreserveLCSSA);
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001074 if (UnrollResult == LoopUnrollResult::Unmodified)
1075 return LoopUnrollResult::Unmodified;
Dan Gohman2980d9d2007-05-11 20:53:41 +00001076
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001077 // If loop has an unroll count pragma or unrolled by explicitly set count
1078 // mark loop as unrolled to prevent unrolling beyond that requested.
Michael Kupersteinb151a642016-11-30 21:13:57 +00001079 // If the loop was peeled, we already "used up" the profile information
1080 // we had, so we don't want to unroll or peel again.
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001081 if (UnrollResult != LoopUnrollResult::FullyUnrolled &&
Sanjoy Das09613b12017-09-20 02:31:57 +00001082 (IsCountSetExplicitly || UP.PeelCount))
Hongbin Zheng73f65042017-10-15 07:31:02 +00001083 L->setLoopAlreadyUnrolled();
Michael Kupersteinb151a642016-11-30 21:13:57 +00001084
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001085 return UnrollResult;
Chris Lattner946b2552004-04-18 05:20:17 +00001086}
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001087
1088namespace {
Eugene Zelenko306d2992017-10-18 21:46:47 +00001089
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001090class LoopUnroll : public LoopPass {
1091public:
1092 static char ID; // Pass ID, replacement for typeid
Eugene Zelenko306d2992017-10-18 21:46:47 +00001093
1094 int OptLevel;
1095 Optional<unsigned> ProvidedCount;
1096 Optional<unsigned> ProvidedThreshold;
1097 Optional<bool> ProvidedAllowPartial;
1098 Optional<bool> ProvidedRuntime;
1099 Optional<bool> ProvidedUpperBound;
1100 Optional<bool> ProvidedAllowPeeling;
1101
Dehao Chen7d230322017-02-18 03:46:51 +00001102 LoopUnroll(int OptLevel = 2, Optional<unsigned> Threshold = None,
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001103 Optional<unsigned> Count = None,
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001104 Optional<bool> AllowPartial = None, Optional<bool> Runtime = None,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001105 Optional<bool> UpperBound = None,
1106 Optional<bool> AllowPeeling = None)
Dehao Chen7d230322017-02-18 03:46:51 +00001107 : LoopPass(ID), OptLevel(OptLevel), ProvidedCount(std::move(Count)),
Benjamin Kramer82de7d32016-05-27 14:27:24 +00001108 ProvidedThreshold(Threshold), ProvidedAllowPartial(AllowPartial),
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001109 ProvidedRuntime(Runtime), ProvidedUpperBound(UpperBound),
1110 ProvidedAllowPeeling(AllowPeeling) {
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001111 initializeLoopUnrollPass(*PassRegistry::getPassRegistry());
1112 }
1113
Sanjoy Dasdef17292017-09-28 02:45:42 +00001114 bool runOnLoop(Loop *L, LPPassManager &LPM) override {
Andrew Kayloraa641a52016-04-22 22:06:11 +00001115 if (skipLoop(L))
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001116 return false;
1117
1118 Function &F = *L->getHeader()->getParent();
1119
1120 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
1121 LoopInfo *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Geoff Berry66d9bdb2017-06-28 15:53:17 +00001122 ScalarEvolution &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE();
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001123 const TargetTransformInfo &TTI =
1124 getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001125 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
Adam Nemet4f155b62016-08-26 15:58:34 +00001126 // For the old PM, we can't use OptimizationRemarkEmitter as an analysis
1127 // pass. Function analyses need to be preserved across loop transformations
1128 // but ORE cannot be preserved (see comment before the pass definition).
1129 OptimizationRemarkEmitter ORE(&F);
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001130 bool PreserveLCSSA = mustPreserveAnalysisID(LCSSAID);
1131
Sanjoy Dasdef17292017-09-28 02:45:42 +00001132 LoopUnrollResult Result = tryToUnrollLoop(
1133 L, DT, LI, SE, TTI, AC, ORE, PreserveLCSSA, OptLevel, ProvidedCount,
1134 ProvidedThreshold, ProvidedAllowPartial, ProvidedRuntime,
1135 ProvidedUpperBound, ProvidedAllowPeeling);
1136
1137 if (Result == LoopUnrollResult::FullyUnrolled)
1138 LPM.markLoopAsDeleted(*L);
1139
1140 return Result != LoopUnrollResult::Unmodified;
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001141 }
1142
1143 /// This transformation requires natural loop information & requires that
1144 /// loop preheaders be inserted into the CFG...
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001145 void getAnalysisUsage(AnalysisUsage &AU) const override {
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001146 AU.addRequired<AssumptionCacheTracker>();
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001147 AU.addRequired<TargetTransformInfoWrapperPass>();
Chandler Carruth31088a92016-02-19 10:45:18 +00001148 // FIXME: Loop passes are required to preserve domtree, and for now we just
1149 // recreate dom info if anything gets unrolled.
1150 getLoopAnalysisUsage(AU);
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001151 }
1152};
Eugene Zelenko306d2992017-10-18 21:46:47 +00001153
1154} // end anonymous namespace
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001155
1156char LoopUnroll::ID = 0;
Eugene Zelenko306d2992017-10-18 21:46:47 +00001157
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001158INITIALIZE_PASS_BEGIN(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001159INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruth31088a92016-02-19 10:45:18 +00001160INITIALIZE_PASS_DEPENDENCY(LoopPass)
1161INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001162INITIALIZE_PASS_END(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
1163
Dehao Chen7d230322017-02-18 03:46:51 +00001164Pass *llvm::createLoopUnrollPass(int OptLevel, int Threshold, int Count,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001165 int AllowPartial, int Runtime, int UpperBound,
1166 int AllowPeeling) {
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001167 // TODO: It would make more sense for this function to take the optionals
1168 // directly, but that's dangerous since it would silently break out of tree
1169 // callers.
Dehao Chen7d230322017-02-18 03:46:51 +00001170 return new LoopUnroll(
1171 OptLevel, Threshold == -1 ? None : Optional<unsigned>(Threshold),
1172 Count == -1 ? None : Optional<unsigned>(Count),
1173 AllowPartial == -1 ? None : Optional<bool>(AllowPartial),
1174 Runtime == -1 ? None : Optional<bool>(Runtime),
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001175 UpperBound == -1 ? None : Optional<bool>(UpperBound),
1176 AllowPeeling == -1 ? None : Optional<bool>(AllowPeeling));
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001177}
1178
Dehao Chen7d230322017-02-18 03:46:51 +00001179Pass *llvm::createSimpleLoopUnrollPass(int OptLevel) {
Eugene Zelenko306d2992017-10-18 21:46:47 +00001180 return createLoopUnrollPass(OptLevel, -1, -1, 0, 0, 0, 0);
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001181}
Sean Silvae3c18a52016-07-19 23:54:23 +00001182
Teresa Johnsonecd90132017-08-02 20:35:29 +00001183PreservedAnalyses LoopFullUnrollPass::run(Loop &L, LoopAnalysisManager &AM,
1184 LoopStandardAnalysisResults &AR,
1185 LPMUpdater &Updater) {
Sean Silvae3c18a52016-07-19 23:54:23 +00001186 const auto &FAM =
Chandler Carruth410eaeb2017-01-11 06:23:21 +00001187 AM.getResult<FunctionAnalysisManagerLoopProxy>(L, AR).getManager();
Sean Silvae3c18a52016-07-19 23:54:23 +00001188 Function *F = L.getHeader()->getParent();
1189
Adam Nemet12937c32016-07-29 19:29:47 +00001190 auto *ORE = FAM.getCachedResult<OptimizationRemarkEmitterAnalysis>(*F);
Chandler Carruth410eaeb2017-01-11 06:23:21 +00001191 // FIXME: This should probably be optional rather than required.
Adam Nemet12937c32016-07-29 19:29:47 +00001192 if (!ORE)
Teresa Johnsonecd90132017-08-02 20:35:29 +00001193 report_fatal_error(
1194 "LoopFullUnrollPass: OptimizationRemarkEmitterAnalysis not "
1195 "cached at a higher level");
Sean Silvae3c18a52016-07-19 23:54:23 +00001196
Chandler Carruthce40fa12017-01-25 02:49:01 +00001197 // Keep track of the previous loop structure so we can identify new loops
1198 // created by unrolling.
1199 Loop *ParentL = L.getParentLoop();
1200 SmallPtrSet<Loop *, 4> OldLoops;
1201 if (ParentL)
1202 OldLoops.insert(ParentL->begin(), ParentL->end());
1203 else
1204 OldLoops.insert(AR.LI.begin(), AR.LI.end());
1205
Sanjoy Dasdef17292017-09-28 02:45:42 +00001206 std::string LoopName = L.getName();
1207
Teresa Johnsonecd90132017-08-02 20:35:29 +00001208 bool Changed =
1209 tryToUnrollLoop(&L, AR.DT, &AR.LI, AR.SE, AR.TTI, AR.AC, *ORE,
1210 /*PreserveLCSSA*/ true, OptLevel, /*Count*/ None,
1211 /*Threshold*/ None, /*AllowPartial*/ false,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001212 /*Runtime*/ false, /*UpperBound*/ false,
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001213 /*AllowPeeling*/ false) != LoopUnrollResult::Unmodified;
Sean Silvae3c18a52016-07-19 23:54:23 +00001214 if (!Changed)
1215 return PreservedAnalyses::all();
Chandler Carruthca68a3e2017-01-15 06:32:49 +00001216
Chandler Carruthce40fa12017-01-25 02:49:01 +00001217 // The parent must not be damaged by unrolling!
1218#ifndef NDEBUG
1219 if (ParentL)
1220 ParentL->verifyLoop();
1221#endif
1222
1223 // Unrolling can do several things to introduce new loops into a loop nest:
Chandler Carruthce40fa12017-01-25 02:49:01 +00001224 // - Full unrolling clones child loops within the current loop but then
1225 // removes the current loop making all of the children appear to be new
1226 // sibling loops.
Chandler Carruthce40fa12017-01-25 02:49:01 +00001227 //
Teresa Johnsonecd90132017-08-02 20:35:29 +00001228 // When a new loop appears as a sibling loop after fully unrolling,
1229 // its nesting structure has fundamentally changed and we want to revisit
1230 // it to reflect that.
Chandler Carruthce40fa12017-01-25 02:49:01 +00001231 //
1232 // When unrolling has removed the current loop, we need to tell the
1233 // infrastructure that it is gone.
1234 //
1235 // Finally, we support a debugging/testing mode where we revisit child loops
1236 // as well. These are not expected to require further optimizations as either
1237 // they or the loop they were cloned from have been directly visited already.
1238 // But the debugging mode allows us to check this assumption.
1239 bool IsCurrentLoopValid = false;
1240 SmallVector<Loop *, 4> SibLoops;
1241 if (ParentL)
1242 SibLoops.append(ParentL->begin(), ParentL->end());
1243 else
1244 SibLoops.append(AR.LI.begin(), AR.LI.end());
1245 erase_if(SibLoops, [&](Loop *SibLoop) {
1246 if (SibLoop == &L) {
1247 IsCurrentLoopValid = true;
1248 return true;
1249 }
1250
1251 // Otherwise erase the loop from the list if it was in the old loops.
1252 return OldLoops.count(SibLoop) != 0;
1253 });
1254 Updater.addSiblingLoops(SibLoops);
1255
1256 if (!IsCurrentLoopValid) {
Sanjoy Dasdef17292017-09-28 02:45:42 +00001257 Updater.markLoopAsDeleted(L, LoopName);
Chandler Carruthce40fa12017-01-25 02:49:01 +00001258 } else {
1259 // We can only walk child loops if the current loop remained valid.
1260 if (UnrollRevisitChildLoops) {
Teresa Johnsonecd90132017-08-02 20:35:29 +00001261 // Walk *all* of the child loops.
Chandler Carruthce40fa12017-01-25 02:49:01 +00001262 SmallVector<Loop *, 4> ChildLoops(L.begin(), L.end());
1263 Updater.addChildLoops(ChildLoops);
1264 }
1265 }
1266
Sean Silvae3c18a52016-07-19 23:54:23 +00001267 return getLoopPassPreservedAnalyses();
1268}
Teresa Johnsonecd90132017-08-02 20:35:29 +00001269
1270template <typename RangeT>
1271static SmallVector<Loop *, 8> appendLoopsToWorklist(RangeT &&Loops) {
1272 SmallVector<Loop *, 8> Worklist;
1273 // We use an internal worklist to build up the preorder traversal without
1274 // recursion.
1275 SmallVector<Loop *, 4> PreOrderLoops, PreOrderWorklist;
1276
1277 for (Loop *RootL : Loops) {
1278 assert(PreOrderLoops.empty() && "Must start with an empty preorder walk.");
1279 assert(PreOrderWorklist.empty() &&
1280 "Must start with an empty preorder walk worklist.");
1281 PreOrderWorklist.push_back(RootL);
1282 do {
1283 Loop *L = PreOrderWorklist.pop_back_val();
1284 PreOrderWorklist.append(L->begin(), L->end());
1285 PreOrderLoops.push_back(L);
1286 } while (!PreOrderWorklist.empty());
1287
1288 Worklist.append(PreOrderLoops.begin(), PreOrderLoops.end());
1289 PreOrderLoops.clear();
1290 }
1291 return Worklist;
1292}
1293
1294PreservedAnalyses LoopUnrollPass::run(Function &F,
1295 FunctionAnalysisManager &AM) {
1296 auto &SE = AM.getResult<ScalarEvolutionAnalysis>(F);
1297 auto &LI = AM.getResult<LoopAnalysis>(F);
1298 auto &TTI = AM.getResult<TargetIRAnalysis>(F);
1299 auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
1300 auto &AC = AM.getResult<AssumptionAnalysis>(F);
1301 auto &ORE = AM.getResult<OptimizationRemarkEmitterAnalysis>(F);
1302
Chandler Carruth7c888dc2017-08-08 02:24:20 +00001303 LoopAnalysisManager *LAM = nullptr;
1304 if (auto *LAMProxy = AM.getCachedResult<LoopAnalysisManagerFunctionProxy>(F))
1305 LAM = &LAMProxy->getManager();
1306
Teresa Johnson8482e562017-08-03 23:42:58 +00001307 const ModuleAnalysisManager &MAM =
1308 AM.getResult<ModuleAnalysisManagerFunctionProxy>(F).getManager();
1309 ProfileSummaryInfo *PSI =
1310 MAM.getCachedResult<ProfileSummaryAnalysis>(*F.getParent());
1311
Teresa Johnsonecd90132017-08-02 20:35:29 +00001312 bool Changed = false;
1313
1314 // The unroller requires loops to be in simplified form, and also needs LCSSA.
1315 // Since simplification may add new inner loops, it has to run before the
1316 // legality and profitability checks. This means running the loop unroller
1317 // will simplify all loops, regardless of whether anything end up being
1318 // unrolled.
1319 for (auto &L : LI) {
1320 Changed |= simplifyLoop(L, &DT, &LI, &SE, &AC, false /* PreserveLCSSA */);
1321 Changed |= formLCSSARecursively(*L, DT, &LI, &SE);
1322 }
1323
1324 SmallVector<Loop *, 8> Worklist = appendLoopsToWorklist(LI);
1325
1326 while (!Worklist.empty()) {
1327 // Because the LoopInfo stores the loops in RPO, we walk the worklist
1328 // from back to front so that we work forward across the CFG, which
1329 // for unrolling is only needed to get optimization remarks emitted in
1330 // a forward order.
1331 Loop &L = *Worklist.pop_back_val();
Benjamin Kramerc965b302017-09-28 14:47:39 +00001332#ifndef NDEBUG
1333 Loop *ParentL = L.getParentLoop();
1334#endif
Teresa Johnsonecd90132017-08-02 20:35:29 +00001335
1336 // The API here is quite complex to call, but there are only two interesting
1337 // states we support: partial and full (or "simple") unrolling. However, to
1338 // enable these things we actually pass "None" in for the optional to avoid
1339 // providing an explicit choice.
Teresa Johnson8482e562017-08-03 23:42:58 +00001340 Optional<bool> AllowPartialParam, RuntimeParam, UpperBoundParam,
1341 AllowPeeling;
1342 // Check if the profile summary indicates that the profiled application
1343 // has a huge working set size, in which case we disable peeling to avoid
1344 // bloating it further.
1345 if (PSI && PSI->hasHugeWorkingSetSize())
1346 AllowPeeling = false;
Sanjoy Dasdef17292017-09-28 02:45:42 +00001347 std::string LoopName = L.getName();
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001348 LoopUnrollResult Result =
Teresa Johnson8482e562017-08-03 23:42:58 +00001349 tryToUnrollLoop(&L, DT, &LI, SE, TTI, AC, ORE,
1350 /*PreserveLCSSA*/ true, OptLevel, /*Count*/ None,
1351 /*Threshold*/ None, AllowPartialParam, RuntimeParam,
1352 UpperBoundParam, AllowPeeling);
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001353 Changed |= Result != LoopUnrollResult::Unmodified;
Teresa Johnsonecd90132017-08-02 20:35:29 +00001354
1355 // The parent must not be damaged by unrolling!
1356#ifndef NDEBUG
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001357 if (Result != LoopUnrollResult::Unmodified && ParentL)
Teresa Johnsonecd90132017-08-02 20:35:29 +00001358 ParentL->verifyLoop();
1359#endif
Chandler Carruth7c888dc2017-08-08 02:24:20 +00001360
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001361 // Clear any cached analysis results for L if we removed it completely.
1362 if (LAM && Result == LoopUnrollResult::FullyUnrolled)
Sanjoy Dasdef17292017-09-28 02:45:42 +00001363 LAM->clear(L, LoopName);
Teresa Johnsonecd90132017-08-02 20:35:29 +00001364 }
1365
1366 if (!Changed)
1367 return PreservedAnalyses::all();
1368
1369 return getLoopPassPreservedAnalyses();
1370}