blob: 0aeaabcbba464f8465cdaa35864284cddda5b29f [file] [log] [blame]
Eugene Zelenko306d2992017-10-18 21:46:47 +00001//===- LoopUnroll.cpp - Loop unroller pass --------------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Misha Brukmanb1c93172005-04-21 23:48:37 +00006//
Chris Lattner946b2552004-04-18 05:20:17 +00007//===----------------------------------------------------------------------===//
8//
9// This pass implements a simple loop unroller. It works best when loops have
10// been canonicalized by the -indvars pass, allowing it to determine the trip
11// counts of loops easily.
Chris Lattner946b2552004-04-18 05:20:17 +000012//===----------------------------------------------------------------------===//
13
Sean Silvae3c18a52016-07-19 23:54:23 +000014#include "llvm/Transforms/Scalar/LoopUnrollPass.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000015#include "llvm/ADT/DenseMap.h"
16#include "llvm/ADT/DenseMapInfo.h"
17#include "llvm/ADT/DenseSet.h"
18#include "llvm/ADT/None.h"
19#include "llvm/ADT/Optional.h"
20#include "llvm/ADT/STLExtras.h"
Chandler Carruth3b057b32015-02-13 03:57:40 +000021#include "llvm/ADT/SetVector.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000022#include "llvm/ADT/SmallPtrSet.h"
23#include "llvm/ADT/SmallVector.h"
24#include "llvm/ADT/StringRef.h"
Daniel Jasperaec2fa32016-12-19 08:22:17 +000025#include "llvm/Analysis/AssumptionCache.h"
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +000026#include "llvm/Analysis/BlockFrequencyInfo.h"
Chris Lattner679572e2011-01-02 07:35:53 +000027#include "llvm/Analysis/CodeMetrics.h"
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +000028#include "llvm/Analysis/LazyBlockFrequencyInfo.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000029#include "llvm/Analysis/LoopAnalysisManager.h"
30#include "llvm/Analysis/LoopInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/Analysis/LoopPass.h"
Michael Zolotukhin1da4afd2016-02-08 23:03:59 +000032#include "llvm/Analysis/LoopUnrollAnalyzer.h"
Adam Nemet0965da22017-10-09 23:19:02 +000033#include "llvm/Analysis/OptimizationRemarkEmitter.h"
Teresa Johnson8482e562017-08-03 23:42:58 +000034#include "llvm/Analysis/ProfileSummaryInfo.h"
Dan Gohman0141c132010-07-26 18:11:16 +000035#include "llvm/Analysis/ScalarEvolution.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000036#include "llvm/Analysis/TargetTransformInfo.h"
37#include "llvm/IR/BasicBlock.h"
38#include "llvm/IR/CFG.h"
39#include "llvm/IR/Constant.h"
40#include "llvm/IR/Constants.h"
41#include "llvm/IR/DiagnosticInfo.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000042#include "llvm/IR/Dominators.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000043#include "llvm/IR/Function.h"
44#include "llvm/IR/Instruction.h"
45#include "llvm/IR/Instructions.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000046#include "llvm/IR/IntrinsicInst.h"
Eli Benderskyff903242014-06-16 23:53:02 +000047#include "llvm/IR/Metadata.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000048#include "llvm/IR/PassManager.h"
49#include "llvm/Pass.h"
50#include "llvm/Support/Casting.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000051#include "llvm/Support/CommandLine.h"
52#include "llvm/Support/Debug.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000053#include "llvm/Support/ErrorHandling.h"
Daniel Dunbar0dd5e1e2009-07-25 00:23:56 +000054#include "llvm/Support/raw_ostream.h"
Dehao Chend55bc4c2016-05-05 00:54:54 +000055#include "llvm/Transforms/Scalar.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000056#include "llvm/Transforms/Scalar/LoopPassManager.h"
David Blaikiea373d182018-03-28 17:44:36 +000057#include "llvm/Transforms/Utils.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000058#include "llvm/Transforms/Utils/LoopSimplify.h"
Chandler Carruth31088a92016-02-19 10:45:18 +000059#include "llvm/Transforms/Utils/LoopUtils.h"
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +000060#include "llvm/Transforms/Utils/SizeOpts.h"
Dan Gohman3dc2d922008-05-14 00:24:14 +000061#include "llvm/Transforms/Utils/UnrollLoop.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000062#include <algorithm>
63#include <cassert>
64#include <cstdint>
65#include <limits>
66#include <string>
67#include <tuple>
Benjamin Kramer82de7d32016-05-27 14:27:24 +000068#include <utility>
Chris Lattner946b2552004-04-18 05:20:17 +000069
Dan Gohman3dc2d922008-05-14 00:24:14 +000070using namespace llvm;
Chris Lattner946b2552004-04-18 05:20:17 +000071
Chandler Carruth964daaa2014-04-22 02:55:47 +000072#define DEBUG_TYPE "loop-unroll"
73
Dan Gohmand78c4002008-05-13 00:00:25 +000074static cl::opt<unsigned>
Justin Bognera1dd4932016-01-12 00:55:26 +000075 UnrollThreshold("unroll-threshold", cl::Hidden,
Dehao Chenc3f87f02017-01-17 23:39:33 +000076 cl::desc("The cost threshold for loop unrolling"));
77
78static cl::opt<unsigned> UnrollPartialThreshold(
79 "unroll-partial-threshold", cl::Hidden,
80 cl::desc("The cost threshold for partial loop unrolling"));
Chandler Carruth9dabd142015-06-05 17:01:43 +000081
Dehao Chencc763442016-12-30 00:50:28 +000082static cl::opt<unsigned> UnrollMaxPercentThresholdBoost(
83 "unroll-max-percent-threshold-boost", cl::init(400), cl::Hidden,
84 cl::desc("The maximum 'boost' (represented as a percentage >= 100) applied "
85 "to the threshold when aggressively unrolling a loop due to the "
86 "dynamic cost savings. If completely unrolling a loop will reduce "
87 "the total runtime from X to Y, we boost the loop unroll "
88 "threshold to DefaultThreshold*std::min(MaxPercentThresholdBoost, "
89 "X/Y). This limit avoids excessive code bloat."));
Dan Gohmand78c4002008-05-13 00:00:25 +000090
Michael Zolotukhina9aadd22015-02-05 02:34:00 +000091static cl::opt<unsigned> UnrollMaxIterationsCountToAnalyze(
Michael Zolotukhin8f7a2422016-05-24 23:00:05 +000092 "unroll-max-iteration-count-to-analyze", cl::init(10), cl::Hidden,
Michael Zolotukhina9aadd22015-02-05 02:34:00 +000093 cl::desc("Don't allow loop unrolling to simulate more than this number of"
94 "iterations when checking full unroll profitability"));
95
Dehao Chend55bc4c2016-05-05 00:54:54 +000096static cl::opt<unsigned> UnrollCount(
97 "unroll-count", cl::Hidden,
98 cl::desc("Use this unroll count for all loops including those with "
99 "unroll_count pragma values, for testing purposes"));
Dan Gohmand78c4002008-05-13 00:00:25 +0000100
Dehao Chend55bc4c2016-05-05 00:54:54 +0000101static cl::opt<unsigned> UnrollMaxCount(
102 "unroll-max-count", cl::Hidden,
103 cl::desc("Set the max unroll count for partial and runtime unrolling, for"
104 "testing purposes"));
Fiona Glaser045afc42016-04-06 16:57:25 +0000105
Dehao Chend55bc4c2016-05-05 00:54:54 +0000106static cl::opt<unsigned> UnrollFullMaxCount(
107 "unroll-full-max-count", cl::Hidden,
108 cl::desc(
109 "Set the max unroll count for full unrolling, for testing purposes"));
Fiona Glaser045afc42016-04-06 16:57:25 +0000110
Davide Italiano9a09ae42017-08-28 19:50:55 +0000111static cl::opt<unsigned> UnrollPeelCount(
112 "unroll-peel-count", cl::Hidden,
113 cl::desc("Set the unroll peeling count, for testing purposes"));
114
Matthijs Kooijman98b5c162008-07-29 13:21:23 +0000115static cl::opt<bool>
Dehao Chend55bc4c2016-05-05 00:54:54 +0000116 UnrollAllowPartial("unroll-allow-partial", cl::Hidden,
117 cl::desc("Allows loops to be partially unrolled until "
118 "-unroll-threshold loop size is reached."));
Matthijs Kooijman98b5c162008-07-29 13:21:23 +0000119
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000120static cl::opt<bool> UnrollAllowRemainder(
121 "unroll-allow-remainder", cl::Hidden,
122 cl::desc("Allow generation of a loop remainder (extra iterations) "
123 "when unrolling a loop."));
124
Andrew Trickd04d15292011-12-09 06:19:40 +0000125static cl::opt<bool>
Dehao Chend55bc4c2016-05-05 00:54:54 +0000126 UnrollRuntime("unroll-runtime", cl::ZeroOrMore, cl::Hidden,
127 cl::desc("Unroll loops with run-time trip counts"));
Andrew Trickd04d15292011-12-09 06:19:40 +0000128
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000129static cl::opt<unsigned> UnrollMaxUpperBound(
130 "unroll-max-upperbound", cl::init(8), cl::Hidden,
131 cl::desc(
132 "The max of trip count upper bound that is considered in unrolling"));
133
Dehao Chend55bc4c2016-05-05 00:54:54 +0000134static cl::opt<unsigned> PragmaUnrollThreshold(
135 "pragma-unroll-threshold", cl::init(16 * 1024), cl::Hidden,
136 cl::desc("Unrolled size limit for loops with an unroll(full) or "
137 "unroll_count pragma."));
Justin Bognera1dd4932016-01-12 00:55:26 +0000138
Dehao Chen41d72a82016-11-17 01:17:02 +0000139static cl::opt<unsigned> FlatLoopTripCountThreshold(
140 "flat-loop-tripcount-threshold", cl::init(5), cl::Hidden,
141 cl::desc("If the runtime tripcount for the loop is lower than the "
142 "threshold, the loop is considered as flat and will be less "
143 "aggressively unrolled."));
144
Michael Kupersteinb151a642016-11-30 21:13:57 +0000145static cl::opt<bool>
Michael Kupersteinc2af82b2017-02-22 00:27:34 +0000146 UnrollAllowPeeling("unroll-allow-peeling", cl::init(true), cl::Hidden,
Michael Kupersteinb151a642016-11-30 21:13:57 +0000147 cl::desc("Allows loops to be peeled when the dynamic "
148 "trip count is known to be low."));
149
Sam Parker718c8a62017-08-14 09:25:26 +0000150static cl::opt<bool> UnrollUnrollRemainder(
151 "unroll-remainder", cl::Hidden,
152 cl::desc("Allow the loop remainder to be unrolled."));
153
Chandler Carruthce40fa12017-01-25 02:49:01 +0000154// This option isn't ever intended to be enabled, it serves to allow
155// experiments to check the assumptions about when this kind of revisit is
156// necessary.
157static cl::opt<bool> UnrollRevisitChildLoops(
158 "unroll-revisit-child-loops", cl::Hidden,
159 cl::desc("Enqueue and re-visit child loops in the loop PM after unrolling. "
160 "This shouldn't typically be needed as child loops (or their "
161 "clones) were already visited."));
162
Justin Bognera1dd4932016-01-12 00:55:26 +0000163/// A magic value for use with the Threshold parameter to indicate
164/// that the loop unroll should be performed regardless of how much
165/// code expansion would result.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000166static const unsigned NoThreshold = std::numeric_limits<unsigned>::max();
Justin Bognera1dd4932016-01-12 00:55:26 +0000167
Justin Bognera1dd4932016-01-12 00:55:26 +0000168/// Gather the various unrolling parameters based on the defaults, compiler
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000169/// flags, TTI overrides and user specified parameters.
David Green963401d2018-07-01 12:47:30 +0000170TargetTransformInfo::UnrollingPreferences llvm::gatherUnrollingPreferences(
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +0000171 Loop *L, ScalarEvolution &SE, const TargetTransformInfo &TTI,
172 BlockFrequencyInfo *BFI, ProfileSummaryInfo *PSI, int OptLevel,
Dehao Chen7d230322017-02-18 03:46:51 +0000173 Optional<unsigned> UserThreshold, Optional<unsigned> UserCount,
174 Optional<bool> UserAllowPartial, Optional<bool> UserRuntime,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +0000175 Optional<bool> UserUpperBound, Optional<bool> UserAllowPeeling) {
Justin Bognera1dd4932016-01-12 00:55:26 +0000176 TargetTransformInfo::UnrollingPreferences UP;
177
178 // Set up the defaults
Dehao Chen7d230322017-02-18 03:46:51 +0000179 UP.Threshold = OptLevel > 2 ? 300 : 150;
Dehao Chencc763442016-12-30 00:50:28 +0000180 UP.MaxPercentThresholdBoost = 400;
Hans Wennborg719b26b2016-05-10 21:45:55 +0000181 UP.OptSizeThreshold = 0;
Dehao Chenc3f87f02017-01-17 23:39:33 +0000182 UP.PartialThreshold = 150;
Hans Wennborg719b26b2016-05-10 21:45:55 +0000183 UP.PartialOptSizeThreshold = 0;
Justin Bognera1dd4932016-01-12 00:55:26 +0000184 UP.Count = 0;
Michael Kupersteinb151a642016-11-30 21:13:57 +0000185 UP.PeelCount = 0;
Jonas Paulsson58c5a7f2016-09-28 09:41:38 +0000186 UP.DefaultUnrollRuntimeCount = 8;
Eugene Zelenko306d2992017-10-18 21:46:47 +0000187 UP.MaxCount = std::numeric_limits<unsigned>::max();
188 UP.FullUnrollMaxCount = std::numeric_limits<unsigned>::max();
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000189 UP.BEInsns = 2;
Justin Bognera1dd4932016-01-12 00:55:26 +0000190 UP.Partial = false;
191 UP.Runtime = false;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000192 UP.AllowRemainder = true;
Sam Parker718c8a62017-08-14 09:25:26 +0000193 UP.UnrollRemainder = false;
Justin Bognera1dd4932016-01-12 00:55:26 +0000194 UP.AllowExpensiveTripCount = false;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000195 UP.Force = false;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000196 UP.UpperBound = false;
Michael Kupersteinc2af82b2017-02-22 00:27:34 +0000197 UP.AllowPeeling = true;
David Green963401d2018-07-01 12:47:30 +0000198 UP.UnrollAndJam = false;
199 UP.UnrollAndJamInnerLoopThreshold = 60;
Justin Bognera1dd4932016-01-12 00:55:26 +0000200
201 // Override with any target specific settings
Geoff Berry66d9bdb2017-06-28 15:53:17 +0000202 TTI.getUnrollingPreferences(L, SE, UP);
Justin Bognera1dd4932016-01-12 00:55:26 +0000203
204 // Apply size attributes
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +0000205 bool OptForSize = L->getHeader()->getParent()->hasOptSize() ||
206 llvm::shouldOptimizeForSize(L->getHeader(), PSI, BFI);
207 if (OptForSize) {
Justin Bognera1dd4932016-01-12 00:55:26 +0000208 UP.Threshold = UP.OptSizeThreshold;
209 UP.PartialThreshold = UP.PartialOptSizeThreshold;
Florian Hahn893aea52019-04-17 15:57:43 +0000210 UP.MaxPercentThresholdBoost = 100;
Justin Bognera1dd4932016-01-12 00:55:26 +0000211 }
212
Justin Bognera1dd4932016-01-12 00:55:26 +0000213 // Apply any user values specified by cl::opt
Dehao Chenc3f87f02017-01-17 23:39:33 +0000214 if (UnrollThreshold.getNumOccurrences() > 0)
Justin Bognera1dd4932016-01-12 00:55:26 +0000215 UP.Threshold = UnrollThreshold;
Dehao Chenc3f87f02017-01-17 23:39:33 +0000216 if (UnrollPartialThreshold.getNumOccurrences() > 0)
217 UP.PartialThreshold = UnrollPartialThreshold;
Dehao Chencc763442016-12-30 00:50:28 +0000218 if (UnrollMaxPercentThresholdBoost.getNumOccurrences() > 0)
219 UP.MaxPercentThresholdBoost = UnrollMaxPercentThresholdBoost;
Fiona Glaser045afc42016-04-06 16:57:25 +0000220 if (UnrollMaxCount.getNumOccurrences() > 0)
221 UP.MaxCount = UnrollMaxCount;
222 if (UnrollFullMaxCount.getNumOccurrences() > 0)
223 UP.FullUnrollMaxCount = UnrollFullMaxCount;
Davide Italiano9a09ae42017-08-28 19:50:55 +0000224 if (UnrollPeelCount.getNumOccurrences() > 0)
225 UP.PeelCount = UnrollPeelCount;
Justin Bognera1dd4932016-01-12 00:55:26 +0000226 if (UnrollAllowPartial.getNumOccurrences() > 0)
227 UP.Partial = UnrollAllowPartial;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000228 if (UnrollAllowRemainder.getNumOccurrences() > 0)
229 UP.AllowRemainder = UnrollAllowRemainder;
Justin Bognera1dd4932016-01-12 00:55:26 +0000230 if (UnrollRuntime.getNumOccurrences() > 0)
231 UP.Runtime = UnrollRuntime;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000232 if (UnrollMaxUpperBound == 0)
233 UP.UpperBound = false;
Michael Kupersteinb151a642016-11-30 21:13:57 +0000234 if (UnrollAllowPeeling.getNumOccurrences() > 0)
235 UP.AllowPeeling = UnrollAllowPeeling;
Sam Parker718c8a62017-08-14 09:25:26 +0000236 if (UnrollUnrollRemainder.getNumOccurrences() > 0)
237 UP.UnrollRemainder = UnrollUnrollRemainder;
Justin Bognera1dd4932016-01-12 00:55:26 +0000238
239 // Apply user values provided by argument
240 if (UserThreshold.hasValue()) {
241 UP.Threshold = *UserThreshold;
242 UP.PartialThreshold = *UserThreshold;
243 }
244 if (UserCount.hasValue())
245 UP.Count = *UserCount;
246 if (UserAllowPartial.hasValue())
247 UP.Partial = *UserAllowPartial;
248 if (UserRuntime.hasValue())
249 UP.Runtime = *UserRuntime;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000250 if (UserUpperBound.hasValue())
251 UP.UpperBound = *UserUpperBound;
Teresa Johnson9a18a6f2017-08-03 17:52:38 +0000252 if (UserAllowPeeling.hasValue())
253 UP.AllowPeeling = *UserAllowPeeling;
Justin Bognera1dd4932016-01-12 00:55:26 +0000254
Justin Bognera1dd4932016-01-12 00:55:26 +0000255 return UP;
256}
257
Chris Lattner79a42ac2006-12-19 21:40:18 +0000258namespace {
Eugene Zelenko306d2992017-10-18 21:46:47 +0000259
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000260/// A struct to densely store the state of an instruction after unrolling at
261/// each iteration.
262///
263/// This is designed to work like a tuple of <Instruction *, int> for the
264/// purposes of hashing and lookup, but to be able to associate two boolean
265/// states with each key.
266struct UnrolledInstState {
267 Instruction *I;
268 int Iteration : 30;
269 unsigned IsFree : 1;
270 unsigned IsCounted : 1;
271};
272
273/// Hashing and equality testing for a set of the instruction states.
274struct UnrolledInstStateKeyInfo {
Eugene Zelenko306d2992017-10-18 21:46:47 +0000275 using PtrInfo = DenseMapInfo<Instruction *>;
276 using PairInfo = DenseMapInfo<std::pair<Instruction *, int>>;
277
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000278 static inline UnrolledInstState getEmptyKey() {
279 return {PtrInfo::getEmptyKey(), 0, 0, 0};
280 }
Eugene Zelenko306d2992017-10-18 21:46:47 +0000281
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000282 static inline UnrolledInstState getTombstoneKey() {
283 return {PtrInfo::getTombstoneKey(), 0, 0, 0};
284 }
Eugene Zelenko306d2992017-10-18 21:46:47 +0000285
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000286 static inline unsigned getHashValue(const UnrolledInstState &S) {
287 return PairInfo::getHashValue({S.I, S.Iteration});
288 }
Eugene Zelenko306d2992017-10-18 21:46:47 +0000289
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000290 static inline bool isEqual(const UnrolledInstState &LHS,
291 const UnrolledInstState &RHS) {
292 return PairInfo::isEqual({LHS.I, LHS.Iteration}, {RHS.I, RHS.Iteration});
293 }
294};
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000295
Chandler Carruth02156082015-05-22 17:41:35 +0000296struct EstimatedUnrollCost {
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000297 /// The estimated cost after unrolling.
Dehao Chenc3be2252016-12-02 03:17:07 +0000298 unsigned UnrolledCost;
Chandler Carruth302a1332015-02-13 02:10:56 +0000299
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000300 /// The estimated dynamic cost of executing the instructions in the
Chandler Carruth9dabd142015-06-05 17:01:43 +0000301 /// rolled form.
Dehao Chenc3be2252016-12-02 03:17:07 +0000302 unsigned RolledDynamicCost;
Chandler Carruth02156082015-05-22 17:41:35 +0000303};
Eugene Zelenko306d2992017-10-18 21:46:47 +0000304
305} // end anonymous namespace
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000306
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000307/// Figure out if the loop is worth full unrolling.
Chandler Carruth02156082015-05-22 17:41:35 +0000308///
309/// Complete loop unrolling can make some loads constant, and we need to know
310/// if that would expose any further optimization opportunities. This routine
Michael Zolotukhinc4e4f332015-06-11 22:17:39 +0000311/// estimates this optimization. It computes cost of unrolled loop
312/// (UnrolledCost) and dynamic cost of the original loop (RolledDynamicCost). By
313/// dynamic cost we mean that we won't count costs of blocks that are known not
314/// to be executed (i.e. if we have a branch in the loop and we know that at the
315/// given iteration its condition would be resolved to true, we won't add up the
316/// cost of the 'false'-block).
317/// \returns Optional value, holding the RolledDynamicCost and UnrolledCost. If
318/// the analysis failed (no benefits expected from the unrolling, or the loop is
319/// too big to analyze), the returned value is None.
Andrei Elovikovf9b80352018-03-15 09:59:15 +0000320static Optional<EstimatedUnrollCost> analyzeLoopUnrollCost(
321 const Loop *L, unsigned TripCount, DominatorTree &DT, ScalarEvolution &SE,
322 const SmallPtrSetImpl<const Value *> &EphValues,
323 const TargetTransformInfo &TTI, unsigned MaxUnrolledLoopSize) {
Chandler Carruth02156082015-05-22 17:41:35 +0000324 // We want to be able to scale offsets by the trip count and add more offsets
325 // to them without checking for overflows, and we already don't want to
326 // analyze *massive* trip counts, so we force the max to be reasonably small.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000327 assert(UnrollMaxIterationsCountToAnalyze <
Simon Pilgrim0444e4f2017-10-19 15:00:31 +0000328 (unsigned)(std::numeric_limits<int>::max() / 2) &&
Chandler Carruth02156082015-05-22 17:41:35 +0000329 "The unroll iterations max is too large!");
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000330
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000331 // Only analyze inner loops. We can't properly estimate cost of nested loops
332 // and we won't visit inner loops again anyway.
333 if (!L->empty())
334 return None;
335
Chandler Carruth02156082015-05-22 17:41:35 +0000336 // Don't simulate loops with a big or unknown tripcount
337 if (!UnrollMaxIterationsCountToAnalyze || !TripCount ||
338 TripCount > UnrollMaxIterationsCountToAnalyze)
339 return None;
Chandler Carrutha6ae8772015-05-12 23:32:56 +0000340
Chandler Carruth02156082015-05-22 17:41:35 +0000341 SmallSetVector<BasicBlock *, 16> BBWorklist;
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000342 SmallSetVector<std::pair<BasicBlock *, BasicBlock *>, 4> ExitWorklist;
Chandler Carruth02156082015-05-22 17:41:35 +0000343 DenseMap<Value *, Constant *> SimplifiedValues;
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000344 SmallVector<std::pair<Value *, Constant *>, 4> SimplifiedInputValues;
Chandler Carruth3b057b32015-02-13 03:57:40 +0000345
Chandler Carruth9dabd142015-06-05 17:01:43 +0000346 // The estimated cost of the unrolled form of the loop. We try to estimate
347 // this by simplifying as much as we can while computing the estimate.
Dehao Chenc3be2252016-12-02 03:17:07 +0000348 unsigned UnrolledCost = 0;
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000349
Chandler Carruth9dabd142015-06-05 17:01:43 +0000350 // We also track the estimated dynamic (that is, actually executed) cost in
351 // the rolled form. This helps identify cases when the savings from unrolling
352 // aren't just exposing dead control flows, but actual reduced dynamic
353 // instructions due to the simplifications which we expect to occur after
354 // unrolling.
Dehao Chenc3be2252016-12-02 03:17:07 +0000355 unsigned RolledDynamicCost = 0;
Chandler Carruth8c863752015-02-13 03:48:38 +0000356
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000357 // We track the simplification of each instruction in each iteration. We use
358 // this to recursively merge costs into the unrolled cost on-demand so that
359 // we don't count the cost of any dead code. This is essentially a map from
360 // <instruction, int> to <bool, bool>, but stored as a densely packed struct.
361 DenseSet<UnrolledInstState, UnrolledInstStateKeyInfo> InstCostMap;
362
363 // A small worklist used to accumulate cost of instructions from each
364 // observable and reached root in the loop.
365 SmallVector<Instruction *, 16> CostWorklist;
366
367 // PHI-used worklist used between iterations while accumulating cost.
368 SmallVector<Instruction *, 4> PHIUsedList;
369
370 // Helper function to accumulate cost for instructions in the loop.
371 auto AddCostRecursively = [&](Instruction &RootI, int Iteration) {
372 assert(Iteration >= 0 && "Cannot have a negative iteration!");
373 assert(CostWorklist.empty() && "Must start with an empty cost list");
374 assert(PHIUsedList.empty() && "Must start with an empty phi used list");
375 CostWorklist.push_back(&RootI);
376 for (;; --Iteration) {
377 do {
378 Instruction *I = CostWorklist.pop_back_val();
379
380 // InstCostMap only uses I and Iteration as a key, the other two values
381 // don't matter here.
382 auto CostIter = InstCostMap.find({I, Iteration, 0, 0});
383 if (CostIter == InstCostMap.end())
384 // If an input to a PHI node comes from a dead path through the loop
385 // we may have no cost data for it here. What that actually means is
386 // that it is free.
387 continue;
388 auto &Cost = *CostIter;
389 if (Cost.IsCounted)
390 // Already counted this instruction.
391 continue;
392
393 // Mark that we are counting the cost of this instruction now.
394 Cost.IsCounted = true;
395
396 // If this is a PHI node in the loop header, just add it to the PHI set.
397 if (auto *PhiI = dyn_cast<PHINode>(I))
398 if (PhiI->getParent() == L->getHeader()) {
399 assert(Cost.IsFree && "Loop PHIs shouldn't be evaluated as they "
400 "inherently simplify during unrolling.");
401 if (Iteration == 0)
402 continue;
403
404 // Push the incoming value from the backedge into the PHI used list
405 // if it is an in-loop instruction. We'll use this to populate the
406 // cost worklist for the next iteration (as we count backwards).
407 if (auto *OpI = dyn_cast<Instruction>(
408 PhiI->getIncomingValueForBlock(L->getLoopLatch())))
409 if (L->contains(OpI))
410 PHIUsedList.push_back(OpI);
411 continue;
412 }
413
414 // First accumulate the cost of this instruction.
415 if (!Cost.IsFree) {
416 UnrolledCost += TTI.getUserCost(I);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000417 LLVM_DEBUG(dbgs() << "Adding cost of instruction (iteration "
418 << Iteration << "): ");
419 LLVM_DEBUG(I->dump());
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000420 }
421
422 // We must count the cost of every operand which is not free,
423 // recursively. If we reach a loop PHI node, simply add it to the set
424 // to be considered on the next iteration (backwards!).
425 for (Value *Op : I->operands()) {
426 // Check whether this operand is free due to being a constant or
427 // outside the loop.
428 auto *OpI = dyn_cast<Instruction>(Op);
429 if (!OpI || !L->contains(OpI))
430 continue;
431
432 // Otherwise accumulate its cost.
433 CostWorklist.push_back(OpI);
434 }
435 } while (!CostWorklist.empty());
436
437 if (PHIUsedList.empty())
438 // We've exhausted the search.
439 break;
440
441 assert(Iteration > 0 &&
442 "Cannot track PHI-used values past the first iteration!");
443 CostWorklist.append(PHIUsedList.begin(), PHIUsedList.end());
444 PHIUsedList.clear();
445 }
446 };
447
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000448 // Ensure that we don't violate the loop structure invariants relied on by
449 // this analysis.
450 assert(L->isLoopSimplifyForm() && "Must put loop into normal form first.");
451 assert(L->isLCSSAForm(DT) &&
452 "Must have loops in LCSSA form to track live-out values.");
453
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000454 LLVM_DEBUG(dbgs() << "Starting LoopUnroll profitability analysis...\n");
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000455
Chandler Carruth02156082015-05-22 17:41:35 +0000456 // Simulate execution of each iteration of the loop counting instructions,
457 // which would be simplified.
458 // Since the same load will take different values on different iterations,
459 // we literally have to go through all loop's iterations.
460 for (unsigned Iteration = 0; Iteration < TripCount; ++Iteration) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000461 LLVM_DEBUG(dbgs() << " Analyzing iteration " << Iteration << "\n");
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000462
463 // Prepare for the iteration by collecting any simplified entry or backedge
464 // inputs.
465 for (Instruction &I : *L->getHeader()) {
466 auto *PHI = dyn_cast<PHINode>(&I);
467 if (!PHI)
468 break;
469
470 // The loop header PHI nodes must have exactly two input: one from the
471 // loop preheader and one from the loop latch.
472 assert(
473 PHI->getNumIncomingValues() == 2 &&
474 "Must have an incoming value only for the preheader and the latch.");
475
476 Value *V = PHI->getIncomingValueForBlock(
477 Iteration == 0 ? L->getLoopPreheader() : L->getLoopLatch());
478 Constant *C = dyn_cast<Constant>(V);
479 if (Iteration != 0 && !C)
480 C = SimplifiedValues.lookup(V);
481 if (C)
482 SimplifiedInputValues.push_back({PHI, C});
483 }
484
485 // Now clear and re-populate the map for the next iteration.
Chandler Carruth02156082015-05-22 17:41:35 +0000486 SimplifiedValues.clear();
Chandler Carruth87adb7a2015-08-03 20:32:27 +0000487 while (!SimplifiedInputValues.empty())
488 SimplifiedValues.insert(SimplifiedInputValues.pop_back_val());
489
Michael Zolotukhin9f520eb2016-02-26 02:57:05 +0000490 UnrolledInstAnalyzer Analyzer(Iteration, SimplifiedValues, SE, L);
Chandler Carruthf174a152015-05-22 02:47:29 +0000491
Chandler Carruth02156082015-05-22 17:41:35 +0000492 BBWorklist.clear();
493 BBWorklist.insert(L->getHeader());
494 // Note that we *must not* cache the size, this loop grows the worklist.
495 for (unsigned Idx = 0; Idx != BBWorklist.size(); ++Idx) {
496 BasicBlock *BB = BBWorklist[Idx];
Chandler Carruthf174a152015-05-22 02:47:29 +0000497
Chandler Carruth02156082015-05-22 17:41:35 +0000498 // Visit all instructions in the given basic block and try to simplify
499 // it. We don't change the actual IR, just count optimization
500 // opportunities.
501 for (Instruction &I : *BB) {
Andrei Elovikovf9b80352018-03-15 09:59:15 +0000502 // These won't get into the final code - don't even try calculating the
503 // cost for them.
504 if (isa<DbgInfoIntrinsic>(I) || EphValues.count(&I))
Dehao Chen977853b2016-09-30 18:30:04 +0000505 continue;
506
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000507 // Track this instruction's expected baseline cost when executing the
508 // rolled loop form.
509 RolledDynamicCost += TTI.getUserCost(&I);
Chandler Carruth17a04962015-02-13 03:49:41 +0000510
Chandler Carruth02156082015-05-22 17:41:35 +0000511 // Visit the instruction to analyze its loop cost after unrolling,
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000512 // and if the visitor returns true, mark the instruction as free after
513 // unrolling and continue.
514 bool IsFree = Analyzer.visit(I);
515 bool Inserted = InstCostMap.insert({&I, (int)Iteration,
516 (unsigned)IsFree,
517 /*IsCounted*/ false}).second;
518 (void)Inserted;
519 assert(Inserted && "Cannot have a state for an unvisited instruction!");
Chandler Carruth9dabd142015-06-05 17:01:43 +0000520
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000521 if (IsFree)
522 continue;
523
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000524 // Can't properly model a cost of a call.
525 // FIXME: With a proper cost model we should be able to do it.
Matt Arsenault2c1a5702018-06-26 18:51:17 +0000526 if (auto *CI = dyn_cast<CallInst>(&I)) {
527 const Function *Callee = CI->getCalledFunction();
528 if (!Callee || TTI.isLoweredToCall(Callee)) {
529 LLVM_DEBUG(dbgs() << "Can't analyze cost of loop with call\n");
530 return None;
531 }
532 }
Chandler Carruth02156082015-05-22 17:41:35 +0000533
Haicheng Wue7877632016-08-17 22:42:58 +0000534 // If the instruction might have a side-effect recursively account for
535 // the cost of it and all the instructions leading up to it.
536 if (I.mayHaveSideEffects())
537 AddCostRecursively(I, Iteration);
538
Chandler Carruth02156082015-05-22 17:41:35 +0000539 // If unrolled body turns out to be too big, bail out.
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000540 if (UnrolledCost > MaxUnrolledLoopSize) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000541 LLVM_DEBUG(dbgs() << " Exceeded threshold.. exiting.\n"
542 << " UnrolledCost: " << UnrolledCost
543 << ", MaxUnrolledLoopSize: " << MaxUnrolledLoopSize
544 << "\n");
Chandler Carruth02156082015-05-22 17:41:35 +0000545 return None;
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000546 }
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000547 }
Chandler Carruth415f4122015-02-13 02:17:39 +0000548
Chandler Carruthedb12a82018-10-15 10:04:59 +0000549 Instruction *TI = BB->getTerminator();
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000550
551 // Add in the live successors by first checking whether we have terminator
552 // that may be simplified based on the values simplified by this call.
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000553 BasicBlock *KnownSucc = nullptr;
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000554 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
555 if (BI->isConditional()) {
556 if (Constant *SimpleCond =
557 SimplifiedValues.lookup(BI->getCondition())) {
Michael Zolotukhin3a7d55b2015-07-29 18:10:29 +0000558 // Just take the first successor if condition is undef
559 if (isa<UndefValue>(SimpleCond))
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000560 KnownSucc = BI->getSuccessor(0);
561 else if (ConstantInt *SimpleCondVal =
562 dyn_cast<ConstantInt>(SimpleCond))
563 KnownSucc = BI->getSuccessor(SimpleCondVal->isZero() ? 1 : 0);
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000564 }
565 }
566 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
567 if (Constant *SimpleCond =
568 SimplifiedValues.lookup(SI->getCondition())) {
Michael Zolotukhin3a7d55b2015-07-29 18:10:29 +0000569 // Just take the first successor if condition is undef
570 if (isa<UndefValue>(SimpleCond))
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000571 KnownSucc = SI->getSuccessor(0);
572 else if (ConstantInt *SimpleCondVal =
573 dyn_cast<ConstantInt>(SimpleCond))
Chandler Carruth927d8e62017-04-12 07:27:28 +0000574 KnownSucc = SI->findCaseValue(SimpleCondVal)->getCaseSuccessor();
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000575 }
576 }
Michael Zolotukhin1ecdeda2016-05-26 21:42:51 +0000577 if (KnownSucc) {
578 if (L->contains(KnownSucc))
579 BBWorklist.insert(KnownSucc);
580 else
581 ExitWorklist.insert({BB, KnownSucc});
582 continue;
583 }
Michael Zolotukhin57776b82015-07-24 01:53:04 +0000584
Chandler Carruth02156082015-05-22 17:41:35 +0000585 // Add BB's successors to the worklist.
586 for (BasicBlock *Succ : successors(BB))
587 if (L->contains(Succ))
588 BBWorklist.insert(Succ);
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000589 else
590 ExitWorklist.insert({BB, Succ});
Michael Zolotukhind2268a72016-05-18 21:20:12 +0000591 AddCostRecursively(*TI, Iteration);
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000592 }
Chandler Carruth02156082015-05-22 17:41:35 +0000593
594 // If we found no optimization opportunities on the first iteration, we
595 // won't find them on later ones too.
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000596 if (UnrolledCost == RolledDynamicCost) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000597 LLVM_DEBUG(dbgs() << " No opportunities found.. exiting.\n"
598 << " UnrolledCost: " << UnrolledCost << "\n");
Chandler Carruth02156082015-05-22 17:41:35 +0000599 return None;
Michael Zolotukhin80d13ba2015-07-28 20:07:29 +0000600 }
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000601 }
Michael Zolotukhin963a6d92016-05-13 21:23:25 +0000602
603 while (!ExitWorklist.empty()) {
604 BasicBlock *ExitingBB, *ExitBB;
605 std::tie(ExitingBB, ExitBB) = ExitWorklist.pop_back_val();
606
607 for (Instruction &I : *ExitBB) {
608 auto *PN = dyn_cast<PHINode>(&I);
609 if (!PN)
610 break;
611
612 Value *Op = PN->getIncomingValueForBlock(ExitingBB);
613 if (auto *OpI = dyn_cast<Instruction>(Op))
614 if (L->contains(OpI))
615 AddCostRecursively(*OpI, TripCount - 1);
616 }
617 }
618
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000619 LLVM_DEBUG(dbgs() << "Analysis finished:\n"
620 << "UnrolledCost: " << UnrolledCost << ", "
621 << "RolledDynamicCost: " << RolledDynamicCost << "\n");
Chandler Carruth9dabd142015-06-05 17:01:43 +0000622 return {{UnrolledCost, RolledDynamicCost}};
Chandler Carruth02156082015-05-22 17:41:35 +0000623}
Michael Zolotukhina9aadd22015-02-05 02:34:00 +0000624
Dan Gohman49d08a52007-05-08 15:14:19 +0000625/// ApproximateLoopSize - Approximate the size of the loop.
David Green963401d2018-07-01 12:47:30 +0000626unsigned llvm::ApproximateLoopSize(
627 const Loop *L, unsigned &NumCalls, bool &NotDuplicatable, bool &Convergent,
628 const TargetTransformInfo &TTI,
629 const SmallPtrSetImpl<const Value *> &EphValues, unsigned BEInsns) {
Dan Gohman969e83a2009-10-31 14:54:17 +0000630 CodeMetrics Metrics;
Sanjay Patel5c967232016-03-08 19:06:12 +0000631 for (BasicBlock *BB : L->blocks())
632 Metrics.analyzeBasicBlock(BB, TTI, EphValues);
Owen Anderson04cf3fd2010-09-09 20:32:23 +0000633 NumCalls = Metrics.NumInlineCandidates;
James Molloy4f6fb952012-12-20 16:04:27 +0000634 NotDuplicatable = Metrics.notDuplicatable;
Justin Lebar6827de12016-03-14 23:15:34 +0000635 Convergent = Metrics.convergent;
Andrew Trick279e7a62011-07-23 00:29:16 +0000636
Owen Anderson62ea1b72010-09-09 19:07:31 +0000637 unsigned LoopSize = Metrics.NumInsts;
Andrew Trick279e7a62011-07-23 00:29:16 +0000638
Owen Anderson62ea1b72010-09-09 19:07:31 +0000639 // Don't allow an estimate of size zero. This would allows unrolling of loops
640 // with huge iteration counts, which is a compile time problem even if it's
Hal Finkel38dd5902015-01-10 00:30:55 +0000641 // not a problem for code quality. Also, the code using this size may assume
642 // that each loop has at least three instructions (likely a conditional
643 // branch, a comparison feeding that branch, and some kind of loop increment
644 // feeding that comparison instruction).
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000645 LoopSize = std::max(LoopSize, BEInsns + 1);
Andrew Trick279e7a62011-07-23 00:29:16 +0000646
Owen Anderson62ea1b72010-09-09 19:07:31 +0000647 return LoopSize;
Chris Lattner946b2552004-04-18 05:20:17 +0000648}
649
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000650// Returns the loop hint metadata node with the given name (for example,
651// "llvm.loop.unroll.count"). If no such metadata node exists, then nullptr is
652// returned.
Jingyue Wu49a766e2015-02-02 20:41:11 +0000653static MDNode *GetUnrollMetadataForLoop(const Loop *L, StringRef Name) {
654 if (MDNode *LoopID = L->getLoopID())
655 return GetUnrollMetadata(LoopID, Name);
656 return nullptr;
Eli Benderskyff903242014-06-16 23:53:02 +0000657}
658
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000659// Returns true if the loop has an unroll(full) pragma.
660static bool HasUnrollFullPragma(const Loop *L) {
Jingyue Wu0220df02015-02-01 02:27:45 +0000661 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.full");
Eli Benderskyff903242014-06-16 23:53:02 +0000662}
663
Mark Heffernan89391542015-08-10 17:28:08 +0000664// Returns true if the loop has an unroll(enable) pragma. This metadata is used
665// for both "#pragma unroll" and "#pragma clang loop unroll(enable)" directives.
666static bool HasUnrollEnablePragma(const Loop *L) {
667 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.enable");
668}
669
Kevin Qin715b01e2015-03-09 06:14:18 +0000670// Returns true if the loop has an runtime unroll(disable) pragma.
671static bool HasRuntimeUnrollDisablePragma(const Loop *L) {
672 return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.runtime.disable");
673}
674
Eli Benderskyff903242014-06-16 23:53:02 +0000675// If loop has an unroll_count pragma return the (necessarily
676// positive) value from the pragma. Otherwise return 0.
677static unsigned UnrollCountPragmaValue(const Loop *L) {
Jingyue Wu49a766e2015-02-02 20:41:11 +0000678 MDNode *MD = GetUnrollMetadataForLoop(L, "llvm.loop.unroll.count");
Mark Heffernane6b4ba12014-07-23 17:31:37 +0000679 if (MD) {
680 assert(MD->getNumOperands() == 2 &&
681 "Unroll count hint metadata should have two operands.");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000682 unsigned Count =
683 mdconst::extract<ConstantInt>(MD->getOperand(1))->getZExtValue();
Eli Benderskyff903242014-06-16 23:53:02 +0000684 assert(Count >= 1 && "Unroll count must be positive.");
685 return Count;
686 }
687 return 0;
688}
689
Dehao Chencc763442016-12-30 00:50:28 +0000690// Computes the boosting factor for complete unrolling.
691// If fully unrolling the loop would save a lot of RolledDynamicCost, it would
692// be beneficial to fully unroll the loop even if unrolledcost is large. We
693// use (RolledDynamicCost / UnrolledCost) to model the unroll benefits to adjust
694// the unroll threshold.
695static unsigned getFullUnrollBoostingFactor(const EstimatedUnrollCost &Cost,
696 unsigned MaxPercentThresholdBoost) {
Eugene Zelenko306d2992017-10-18 21:46:47 +0000697 if (Cost.RolledDynamicCost >= std::numeric_limits<unsigned>::max() / 100)
Dehao Chencc763442016-12-30 00:50:28 +0000698 return 100;
699 else if (Cost.UnrolledCost != 0)
700 // The boosting factor is RolledDynamicCost / UnrolledCost
701 return std::min(100 * Cost.RolledDynamicCost / Cost.UnrolledCost,
702 MaxPercentThresholdBoost);
703 else
704 return MaxPercentThresholdBoost;
Michael Zolotukhin8c681712015-05-12 17:20:03 +0000705}
706
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000707// Returns loop size estimation for unrolled loop.
708static uint64_t getUnrolledLoopSize(
709 unsigned LoopSize,
710 TargetTransformInfo::UnrollingPreferences &UP) {
711 assert(LoopSize >= UP.BEInsns && "LoopSize should not be less than BEInsns!");
712 return (uint64_t)(LoopSize - UP.BEInsns) * UP.Count + UP.BEInsns;
713}
714
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000715// Returns true if unroll count was set explicitly.
716// Calculates unroll count and writes it to UP.Count.
Michael Kruse72448522018-12-12 17:32:52 +0000717// Unless IgnoreUser is true, will also use metadata and command-line options
718// that are specific to to the LoopUnroll pass (which, for instance, are
719// irrelevant for the LoopUnrollAndJam pass).
720// FIXME: This function is used by LoopUnroll and LoopUnrollAndJam, but consumes
721// many LoopUnroll-specific options. The shared functionality should be
722// refactored into it own function.
David Green963401d2018-07-01 12:47:30 +0000723bool llvm::computeUnrollCount(
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000724 Loop *L, const TargetTransformInfo &TTI, DominatorTree &DT, LoopInfo *LI,
Andrei Elovikovf9b80352018-03-15 09:59:15 +0000725 ScalarEvolution &SE, const SmallPtrSetImpl<const Value *> &EphValues,
726 OptimizationRemarkEmitter *ORE, unsigned &TripCount, unsigned MaxTripCount,
727 unsigned &TripMultiple, unsigned LoopSize,
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000728 TargetTransformInfo::UnrollingPreferences &UP, bool &UseUpperBound) {
Michael Kruse72448522018-12-12 17:32:52 +0000729
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000730 // Check for explicit Count.
731 // 1st priority is unroll count set by "unroll-count" option.
732 bool UserUnrollCount = UnrollCount.getNumOccurrences() > 0;
733 if (UserUnrollCount) {
734 UP.Count = UnrollCount;
735 UP.AllowExpensiveTripCount = true;
736 UP.Force = true;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000737 if (UP.AllowRemainder && getUnrolledLoopSize(LoopSize, UP) < UP.Threshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000738 return true;
739 }
740
741 // 2nd priority is unroll count set by pragma.
742 unsigned PragmaCount = UnrollCountPragmaValue(L);
743 if (PragmaCount > 0) {
744 UP.Count = PragmaCount;
745 UP.Runtime = true;
746 UP.AllowExpensiveTripCount = true;
747 UP.Force = true;
Yaxun Liu3c42f1c2018-03-02 16:22:32 +0000748 if ((UP.AllowRemainder || (TripMultiple % PragmaCount == 0)) &&
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000749 getUnrolledLoopSize(LoopSize, UP) < PragmaUnrollThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000750 return true;
751 }
752 bool PragmaFullUnroll = HasUnrollFullPragma(L);
753 if (PragmaFullUnroll && TripCount != 0) {
754 UP.Count = TripCount;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000755 if (getUnrolledLoopSize(LoopSize, UP) < PragmaUnrollThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000756 return false;
757 }
758
759 bool PragmaEnableUnroll = HasUnrollEnablePragma(L);
760 bool ExplicitUnroll = PragmaCount > 0 || PragmaFullUnroll ||
761 PragmaEnableUnroll || UserUnrollCount;
762
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000763 if (ExplicitUnroll && TripCount != 0) {
764 // If the loop has an unrolling pragma, we want to be more aggressive with
David Green963401d2018-07-01 12:47:30 +0000765 // unrolling limits. Set thresholds to at least the PragmaUnrollThreshold
766 // value which is larger than the default limits.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000767 UP.Threshold = std::max<unsigned>(UP.Threshold, PragmaUnrollThreshold);
768 UP.PartialThreshold =
769 std::max<unsigned>(UP.PartialThreshold, PragmaUnrollThreshold);
770 }
771
772 // 3rd priority is full unroll count.
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000773 // Full unroll makes sense only when TripCount or its upper bound could be
774 // statically calculated.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000775 // Also we need to check if we exceed FullUnrollMaxCount.
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000776 // If using the upper bound to unroll, TripMultiple should be set to 1 because
777 // we do not know when loop may exit.
778 // MaxTripCount and ExactTripCount cannot both be non zero since we only
779 // compute the former when the latter is zero.
780 unsigned ExactTripCount = TripCount;
781 assert((ExactTripCount == 0 || MaxTripCount == 0) &&
Hiroshi Inouef2096492018-06-14 05:41:49 +0000782 "ExtractTripCount and MaxTripCount cannot both be non zero.");
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000783 unsigned FullUnrollTripCount = ExactTripCount ? ExactTripCount : MaxTripCount;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000784 UP.Count = FullUnrollTripCount;
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000785 if (FullUnrollTripCount && FullUnrollTripCount <= UP.FullUnrollMaxCount) {
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000786 // When computing the unrolled size, note that BEInsns are not replicated
787 // like the rest of the loop body.
Dehao Chencc763442016-12-30 00:50:28 +0000788 if (getUnrolledLoopSize(LoopSize, UP) < UP.Threshold) {
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000789 UseUpperBound = (MaxTripCount == FullUnrollTripCount);
790 TripCount = FullUnrollTripCount;
791 TripMultiple = UP.UpperBound ? 1 : TripMultiple;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000792 return ExplicitUnroll;
793 } else {
794 // The loop isn't that small, but we still can fully unroll it if that
795 // helps to remove a significant number of instructions.
796 // To check that, run additional analysis on the loop.
797 if (Optional<EstimatedUnrollCost> Cost = analyzeLoopUnrollCost(
Andrei Elovikovf9b80352018-03-15 09:59:15 +0000798 L, FullUnrollTripCount, DT, SE, EphValues, TTI,
Dehao Chencc763442016-12-30 00:50:28 +0000799 UP.Threshold * UP.MaxPercentThresholdBoost / 100)) {
800 unsigned Boost =
801 getFullUnrollBoostingFactor(*Cost, UP.MaxPercentThresholdBoost);
802 if (Cost->UnrolledCost < UP.Threshold * Boost / 100) {
Haicheng Wu1ef17e92016-10-12 21:29:38 +0000803 UseUpperBound = (MaxTripCount == FullUnrollTripCount);
804 TripCount = FullUnrollTripCount;
805 TripMultiple = UP.UpperBound ? 1 : TripMultiple;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000806 return ExplicitUnroll;
807 }
Dehao Chencc763442016-12-30 00:50:28 +0000808 }
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000809 }
810 }
811
Neil Henningd2261f612018-10-05 09:39:07 +0000812 // 4th priority is loop peeling.
Florian Hahnfc97b612018-03-15 21:34:43 +0000813 computePeelCount(L, LoopSize, UP, TripCount, SE);
Sanjoy Daseed71b92017-03-03 18:19:10 +0000814 if (UP.PeelCount) {
815 UP.Runtime = false;
816 UP.Count = 1;
817 return ExplicitUnroll;
818 }
819
820 // 5th priority is partial unrolling.
Hiroshi Inouef2096492018-06-14 05:41:49 +0000821 // Try partial unroll only when TripCount could be statically calculated.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000822 if (TripCount) {
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000823 UP.Partial |= ExplicitUnroll;
824 if (!UP.Partial) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000825 LLVM_DEBUG(dbgs() << " will not try to unroll partially because "
826 << "-unroll-allow-partial not given\n");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000827 UP.Count = 0;
828 return false;
829 }
Haicheng Wu430b3e42016-10-27 18:40:02 +0000830 if (UP.Count == 0)
831 UP.Count = TripCount;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000832 if (UP.PartialThreshold != NoThreshold) {
833 // Reduce unroll count to be modulo of TripCount for partial unrolling.
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000834 if (getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold)
835 UP.Count =
836 (std::max(UP.PartialThreshold, UP.BEInsns + 1) - UP.BEInsns) /
837 (LoopSize - UP.BEInsns);
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000838 if (UP.Count > UP.MaxCount)
839 UP.Count = UP.MaxCount;
840 while (UP.Count != 0 && TripCount % UP.Count != 0)
841 UP.Count--;
842 if (UP.AllowRemainder && UP.Count <= 1) {
843 // If there is no Count that is modulo of TripCount, set Count to
844 // largest power-of-two factor that satisfies the threshold limit.
845 // As we'll create fixup loop, do the type of unrolling only if
846 // remainder loop is allowed.
Jonas Paulsson58c5a7f2016-09-28 09:41:38 +0000847 UP.Count = UP.DefaultUnrollRuntimeCount;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000848 while (UP.Count != 0 &&
849 getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000850 UP.Count >>= 1;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000851 }
852 if (UP.Count < 2) {
853 if (PragmaEnableUnroll)
Vivek Pandya95906582017-10-11 17:12:59 +0000854 ORE->emit([&]() {
855 return OptimizationRemarkMissed(DEBUG_TYPE,
856 "UnrollAsDirectedTooLarge",
857 L->getStartLoc(), L->getHeader())
858 << "Unable to unroll loop as directed by unroll(enable) "
859 "pragma "
860 "because unrolled size is too large.";
861 });
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000862 UP.Count = 0;
863 }
864 } else {
865 UP.Count = TripCount;
866 }
Geoff Berryb0573542017-06-28 17:01:15 +0000867 if (UP.Count > UP.MaxCount)
868 UP.Count = UP.MaxCount;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000869 if ((PragmaFullUnroll || PragmaEnableUnroll) && TripCount &&
870 UP.Count != TripCount)
Vivek Pandya95906582017-10-11 17:12:59 +0000871 ORE->emit([&]() {
872 return OptimizationRemarkMissed(DEBUG_TYPE,
873 "FullUnrollAsDirectedTooLarge",
874 L->getStartLoc(), L->getHeader())
875 << "Unable to fully unroll loop as directed by unroll pragma "
876 "because "
877 "unrolled size is too large.";
878 });
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000879 return ExplicitUnroll;
880 }
881 assert(TripCount == 0 &&
882 "All cases when TripCount is constant should be covered here.");
883 if (PragmaFullUnroll)
Vivek Pandya95906582017-10-11 17:12:59 +0000884 ORE->emit([&]() {
885 return OptimizationRemarkMissed(
886 DEBUG_TYPE, "CantFullUnrollAsDirectedRuntimeTripCount",
887 L->getStartLoc(), L->getHeader())
888 << "Unable to fully unroll loop as directed by unroll(full) "
889 "pragma "
890 "because loop has a runtime trip count.";
891 });
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000892
Michael Kupersteinb151a642016-11-30 21:13:57 +0000893 // 6th priority is runtime unrolling.
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000894 // Don't unroll a runtime trip count loop when it is disabled.
895 if (HasRuntimeUnrollDisablePragma(L)) {
896 UP.Count = 0;
897 return false;
898 }
Fangrui Songf78650a2018-07-30 19:41:25 +0000899
Michael Kupersteinb151a642016-11-30 21:13:57 +0000900 // Check if the runtime trip count is too small when profile is available.
Easwaran Ramana17f2202017-12-22 01:33:52 +0000901 if (L->getHeader()->getParent()->hasProfileData()) {
Michael Kupersteinb151a642016-11-30 21:13:57 +0000902 if (auto ProfileTripCount = getLoopEstimatedTripCount(L)) {
903 if (*ProfileTripCount < FlatLoopTripCountThreshold)
904 return false;
905 else
906 UP.AllowExpensiveTripCount = true;
907 }
Fangrui Songf78650a2018-07-30 19:41:25 +0000908 }
Michael Kupersteinb151a642016-11-30 21:13:57 +0000909
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000910 // Reduce count based on the type of unrolling and the threshold values.
911 UP.Runtime |= PragmaEnableUnroll || PragmaCount > 0 || UserUnrollCount;
912 if (!UP.Runtime) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000913 LLVM_DEBUG(
914 dbgs() << " will not try to unroll loop with runtime trip count "
915 << "-unroll-runtime not given\n");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000916 UP.Count = 0;
917 return false;
918 }
919 if (UP.Count == 0)
Jonas Paulsson58c5a7f2016-09-28 09:41:38 +0000920 UP.Count = UP.DefaultUnrollRuntimeCount;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000921
922 // Reduce unroll count to be the largest power-of-two factor of
923 // the original count which satisfies the threshold limit.
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +0000924 while (UP.Count != 0 &&
925 getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold)
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000926 UP.Count >>= 1;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000927
Evgeny Stupachenkob7875222016-05-28 00:14:58 +0000928#ifndef NDEBUG
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000929 unsigned OrigCount = UP.Count;
Evgeny Stupachenkob7875222016-05-28 00:14:58 +0000930#endif
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000931
932 if (!UP.AllowRemainder && UP.Count != 0 && (TripMultiple % UP.Count) != 0) {
933 while (UP.Count != 0 && TripMultiple % UP.Count != 0)
934 UP.Count >>= 1;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000935 LLVM_DEBUG(
936 dbgs() << "Remainder loop is restricted (that could architecture "
937 "specific or because the loop contains a convergent "
938 "instruction), so unroll count must divide the trip "
939 "multiple, "
940 << TripMultiple << ". Reducing unroll count from " << OrigCount
941 << " to " << UP.Count << ".\n");
Eugene Zelenko306d2992017-10-18 21:46:47 +0000942
Adam Nemetf57cc622016-09-30 03:44:16 +0000943 using namespace ore;
Eugene Zelenko306d2992017-10-18 21:46:47 +0000944
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000945 if (PragmaCount > 0 && !UP.AllowRemainder)
Vivek Pandya95906582017-10-11 17:12:59 +0000946 ORE->emit([&]() {
947 return OptimizationRemarkMissed(DEBUG_TYPE,
948 "DifferentUnrollCountFromDirected",
949 L->getStartLoc(), L->getHeader())
950 << "Unable to unroll loop the number of times directed by "
951 "unroll_count pragma because remainder loop is restricted "
952 "(that could architecture specific or because the loop "
953 "contains a convergent instruction) and so must have an "
954 "unroll "
955 "count that divides the loop trip multiple of "
956 << NV("TripMultiple", TripMultiple) << ". Unrolling instead "
957 << NV("UnrollCount", UP.Count) << " time(s).";
958 });
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000959 }
960
961 if (UP.Count > UP.MaxCount)
962 UP.Count = UP.MaxCount;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000963 LLVM_DEBUG(dbgs() << " partially unrolling with count: " << UP.Count
964 << "\n");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000965 if (UP.Count < 2)
966 UP.Count = 0;
967 return ExplicitUnroll;
968}
969
Sanjoy Das4f3ebd52017-09-27 21:45:22 +0000970static LoopUnrollResult tryToUnrollLoop(
Teresa Johnson9a18a6f2017-08-03 17:52:38 +0000971 Loop *L, DominatorTree &DT, LoopInfo *LI, ScalarEvolution &SE,
972 const TargetTransformInfo &TTI, AssumptionCache &AC,
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +0000973 OptimizationRemarkEmitter &ORE,
974 BlockFrequencyInfo *BFI, ProfileSummaryInfo *PSI,
975 bool PreserveLCSSA, int OptLevel,
Alina Sbirlea2312a062019-04-12 19:16:07 +0000976 bool OnlyWhenForced, bool ForgetAllSCEV, Optional<unsigned> ProvidedCount,
Michael Kruse32847752018-12-18 17:16:05 +0000977 Optional<unsigned> ProvidedThreshold, Optional<bool> ProvidedAllowPartial,
978 Optional<bool> ProvidedRuntime, Optional<bool> ProvidedUpperBound,
979 Optional<bool> ProvidedAllowPeeling) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000980 LLVM_DEBUG(dbgs() << "Loop Unroll: F["
981 << L->getHeader()->getParent()->getName() << "] Loop %"
982 << L->getHeader()->getName() << "\n");
Michael Kruse32847752018-12-18 17:16:05 +0000983 TransformationMode TM = hasUnrollTransformation(L);
984 if (TM & TM_Disable)
Sanjoy Das4f3ebd52017-09-27 21:45:22 +0000985 return LoopUnrollResult::Unmodified;
Eugene Zelenko306d2992017-10-18 21:46:47 +0000986 if (!L->isLoopSimplifyForm()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000987 LLVM_DEBUG(
Haicheng Wu731b04c2016-11-23 19:39:26 +0000988 dbgs() << " Not unrolling loop which is not in loop-simplify form.\n");
Sanjoy Das4f3ebd52017-09-27 21:45:22 +0000989 return LoopUnrollResult::Unmodified;
Eli Benderskyff903242014-06-16 23:53:02 +0000990 }
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000991
Michael Kruse32847752018-12-18 17:16:05 +0000992 // When automtatic unrolling is disabled, do not unroll unless overridden for
993 // this loop.
994 if (OnlyWhenForced && !(TM & TM_Enable))
995 return LoopUnrollResult::Unmodified;
996
Florian Hahn893aea52019-04-17 15:57:43 +0000997 bool OptForSize = L->getHeader()->getParent()->hasOptSize();
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +0000998 unsigned NumInlineCandidates;
999 bool NotDuplicatable;
1000 bool Convergent;
Evgeny Stupachenkoc2698cd2016-11-09 19:56:39 +00001001 TargetTransformInfo::UnrollingPreferences UP = gatherUnrollingPreferences(
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +00001002 L, SE, TTI, BFI, PSI, OptLevel, ProvidedThreshold, ProvidedCount,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001003 ProvidedAllowPartial, ProvidedRuntime, ProvidedUpperBound,
1004 ProvidedAllowPeeling);
Florian Hahn893aea52019-04-17 15:57:43 +00001005
1006 // Exit early if unrolling is disabled. For OptForSize, we pick the loop size
1007 // as threshold later on.
1008 if (UP.Threshold == 0 && (!UP.Partial || UP.PartialThreshold == 0) &&
1009 !OptForSize)
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001010 return LoopUnrollResult::Unmodified;
Andrei Elovikovf9b80352018-03-15 09:59:15 +00001011
1012 SmallPtrSet<const Value *, 32> EphValues;
1013 CodeMetrics::collectEphemeralValues(L, &AC, EphValues);
1014
1015 unsigned LoopSize =
1016 ApproximateLoopSize(L, NumInlineCandidates, NotDuplicatable, Convergent,
1017 TTI, EphValues, UP.BEInsns);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001018 LLVM_DEBUG(dbgs() << " Loop Size = " << LoopSize << "\n");
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001019 if (NotDuplicatable) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001020 LLVM_DEBUG(dbgs() << " Not unrolling loop which contains non-duplicatable"
1021 << " instructions.\n");
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001022 return LoopUnrollResult::Unmodified;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001023 }
Florian Hahn893aea52019-04-17 15:57:43 +00001024
1025 // When optimizing for size, use LoopSize as threshold, to (fully) unroll
1026 // loops, if it does not increase code size.
1027 if (OptForSize)
1028 UP.Threshold = std::max(UP.Threshold, LoopSize);
1029
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001030 if (NumInlineCandidates != 0) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001031 LLVM_DEBUG(dbgs() << " Not unrolling loop with inlinable calls.\n");
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001032 return LoopUnrollResult::Unmodified;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001033 }
Andrew Trick279e7a62011-07-23 00:29:16 +00001034
Andrew Trick2b6860f2011-08-11 23:36:16 +00001035 // Find trip count and trip multiple if count is not available
1036 unsigned TripCount = 0;
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001037 unsigned MaxTripCount = 0;
Andrew Trick1cabe542011-07-23 00:33:05 +00001038 unsigned TripMultiple = 1;
Chandler Carruth6666c272014-10-11 00:12:11 +00001039 // If there are multiple exiting blocks but one of them is the latch, use the
1040 // latch for the trip count estimation. Otherwise insist on a single exiting
1041 // block for the trip count estimation.
1042 BasicBlock *ExitingBlock = L->getLoopLatch();
1043 if (!ExitingBlock || !L->isLoopExiting(ExitingBlock))
1044 ExitingBlock = L->getExitingBlock();
1045 if (ExitingBlock) {
Geoff Berry66d9bdb2017-06-28 15:53:17 +00001046 TripCount = SE.getSmallConstantTripCount(L, ExitingBlock);
1047 TripMultiple = SE.getSmallConstantTripMultiple(L, ExitingBlock);
Andrew Trick2b6860f2011-08-11 23:36:16 +00001048 }
Hal Finkel8f2e7002013-09-11 19:25:43 +00001049
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001050 // If the loop contains a convergent operation, the prelude we'd add
1051 // to do the first few instructions before we hit the unrolled loop
1052 // is unsafe -- it adds a control-flow dependency to the convergent
1053 // operation. Therefore restrict remainder loop (try unrollig without).
1054 //
1055 // TODO: This is quite conservative. In practice, convergent_op()
1056 // is likely to be called unconditionally in the loop. In this
1057 // case, the program would be ill-formed (on most architectures)
1058 // unless n were the same on all threads in a thread group.
1059 // Assuming n is the same on all threads, any kind of unrolling is
1060 // safe. But currently llvm's notion of convergence isn't powerful
1061 // enough to express this.
1062 if (Convergent)
1063 UP.AllowRemainder = false;
Eli Benderskydc6de2c2014-06-12 18:05:39 +00001064
John Brawn84b21832016-10-21 11:08:48 +00001065 // Try to find the trip count upper bound if we cannot find the exact trip
1066 // count.
1067 bool MaxOrZero = false;
1068 if (!TripCount) {
Geoff Berry66d9bdb2017-06-28 15:53:17 +00001069 MaxTripCount = SE.getSmallConstantMaxTripCount(L);
1070 MaxOrZero = SE.isBackedgeTakenCountMaxOrZero(L);
John Brawn84b21832016-10-21 11:08:48 +00001071 // We can unroll by the upper bound amount if it's generally allowed or if
1072 // we know that the loop is executed either the upper bound or zero times.
1073 // (MaxOrZero unrolling keeps only the first loop test, so the number of
1074 // loop tests remains the same compared to the non-unrolled version, whereas
1075 // the generic upper bound unrolling keeps all but the last loop test so the
1076 // number of loop tests goes up which may end up being worse on targets with
Hiroshi Inouef2096492018-06-14 05:41:49 +00001077 // constrained branch predictor resources so is controlled by an option.)
John Brawn84b21832016-10-21 11:08:48 +00001078 // In addition we only unroll small upper bounds.
1079 if (!(UP.UpperBound || MaxOrZero) || MaxTripCount > UnrollMaxUpperBound) {
1080 MaxTripCount = 0;
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001081 }
1082 }
1083
1084 // computeUnrollCount() decides whether it is beneficial to use upper bound to
1085 // fully unroll the loop.
1086 bool UseUpperBound = false;
Andrei Elovikovf9b80352018-03-15 09:59:15 +00001087 bool IsCountSetExplicitly = computeUnrollCount(
1088 L, TTI, DT, LI, SE, EphValues, &ORE, TripCount, MaxTripCount,
1089 TripMultiple, LoopSize, UP, UseUpperBound);
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001090 if (!UP.Count)
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001091 return LoopUnrollResult::Unmodified;
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001092 // Unroll factor (Count) must be less or equal to TripCount.
1093 if (TripCount && UP.Count > TripCount)
1094 UP.Count = TripCount;
Dan Gohman2980d9d2007-05-11 20:53:41 +00001095
Michael Kruse72448522018-12-12 17:32:52 +00001096 // Save loop properties before it is transformed.
1097 MDNode *OrigLoopID = L->getLoopID();
1098
Dan Gohman3dc2d922008-05-14 00:24:14 +00001099 // Unroll the loop.
Michael Kruse72448522018-12-12 17:32:52 +00001100 Loop *RemainderLoop = nullptr;
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001101 LoopUnrollResult UnrollResult = UnrollLoop(
Alina Sbirleada0f71a2019-04-18 23:43:49 +00001102 L,
1103 {UP.Count, TripCount, UP.Force, UP.Runtime, UP.AllowExpensiveTripCount,
1104 UseUpperBound, MaxOrZero, TripMultiple, UP.PeelCount, UP.UnrollRemainder,
1105 ForgetAllSCEV},
1106 LI, &SE, &DT, &AC, &ORE, PreserveLCSSA, &RemainderLoop);
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001107 if (UnrollResult == LoopUnrollResult::Unmodified)
1108 return LoopUnrollResult::Unmodified;
Dan Gohman2980d9d2007-05-11 20:53:41 +00001109
Michael Kruse72448522018-12-12 17:32:52 +00001110 if (RemainderLoop) {
1111 Optional<MDNode *> RemainderLoopID =
1112 makeFollowupLoopID(OrigLoopID, {LLVMLoopUnrollFollowupAll,
1113 LLVMLoopUnrollFollowupRemainder});
1114 if (RemainderLoopID.hasValue())
1115 RemainderLoop->setLoopID(RemainderLoopID.getValue());
1116 }
1117
1118 if (UnrollResult != LoopUnrollResult::FullyUnrolled) {
1119 Optional<MDNode *> NewLoopID =
1120 makeFollowupLoopID(OrigLoopID, {LLVMLoopUnrollFollowupAll,
1121 LLVMLoopUnrollFollowupUnrolled});
1122 if (NewLoopID.hasValue()) {
1123 L->setLoopID(NewLoopID.getValue());
1124
1125 // Do not setLoopAlreadyUnrolled if loop attributes have been specified
1126 // explicitly.
1127 return UnrollResult;
1128 }
1129 }
1130
Evgeny Stupachenkoea2aef42016-05-27 23:15:06 +00001131 // If loop has an unroll count pragma or unrolled by explicitly set count
1132 // mark loop as unrolled to prevent unrolling beyond that requested.
Michael Kupersteinb151a642016-11-30 21:13:57 +00001133 // If the loop was peeled, we already "used up" the profile information
1134 // we had, so we don't want to unroll or peel again.
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001135 if (UnrollResult != LoopUnrollResult::FullyUnrolled &&
Sanjoy Das09613b12017-09-20 02:31:57 +00001136 (IsCountSetExplicitly || UP.PeelCount))
Hongbin Zheng73f65042017-10-15 07:31:02 +00001137 L->setLoopAlreadyUnrolled();
Michael Kupersteinb151a642016-11-30 21:13:57 +00001138
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001139 return UnrollResult;
Chris Lattner946b2552004-04-18 05:20:17 +00001140}
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001141
1142namespace {
Eugene Zelenko306d2992017-10-18 21:46:47 +00001143
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001144class LoopUnroll : public LoopPass {
1145public:
1146 static char ID; // Pass ID, replacement for typeid
Eugene Zelenko306d2992017-10-18 21:46:47 +00001147
1148 int OptLevel;
Michael Kruse32847752018-12-18 17:16:05 +00001149
1150 /// If false, use a cost model to determine whether unrolling of a loop is
1151 /// profitable. If true, only loops that explicitly request unrolling via
1152 /// metadata are considered. All other loops are skipped.
1153 bool OnlyWhenForced;
1154
Alina Sbirlea2312a062019-04-12 19:16:07 +00001155 /// If false, when SCEV is invalidated, only forget everything in the
1156 /// top-most loop (call forgetTopMostLoop), of the loop being processed.
1157 /// Otherwise, forgetAllLoops and rebuild when needed next.
1158 bool ForgetAllSCEV;
1159
Eugene Zelenko306d2992017-10-18 21:46:47 +00001160 Optional<unsigned> ProvidedCount;
1161 Optional<unsigned> ProvidedThreshold;
1162 Optional<bool> ProvidedAllowPartial;
1163 Optional<bool> ProvidedRuntime;
1164 Optional<bool> ProvidedUpperBound;
1165 Optional<bool> ProvidedAllowPeeling;
1166
Michael Kruse32847752018-12-18 17:16:05 +00001167 LoopUnroll(int OptLevel = 2, bool OnlyWhenForced = false,
Alina Sbirlea2312a062019-04-12 19:16:07 +00001168 bool ForgetAllSCEV = false, Optional<unsigned> Threshold = None,
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001169 Optional<unsigned> Count = None,
Haicheng Wu1ef17e92016-10-12 21:29:38 +00001170 Optional<bool> AllowPartial = None, Optional<bool> Runtime = None,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001171 Optional<bool> UpperBound = None,
1172 Optional<bool> AllowPeeling = None)
Michael Kruse32847752018-12-18 17:16:05 +00001173 : LoopPass(ID), OptLevel(OptLevel), OnlyWhenForced(OnlyWhenForced),
Alina Sbirlea2312a062019-04-12 19:16:07 +00001174 ForgetAllSCEV(ForgetAllSCEV), ProvidedCount(std::move(Count)),
1175 ProvidedThreshold(Threshold), ProvidedAllowPartial(AllowPartial),
1176 ProvidedRuntime(Runtime), ProvidedUpperBound(UpperBound),
1177 ProvidedAllowPeeling(AllowPeeling) {
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001178 initializeLoopUnrollPass(*PassRegistry::getPassRegistry());
1179 }
1180
Sanjoy Dasdef17292017-09-28 02:45:42 +00001181 bool runOnLoop(Loop *L, LPPassManager &LPM) override {
Andrew Kayloraa641a52016-04-22 22:06:11 +00001182 if (skipLoop(L))
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001183 return false;
1184
1185 Function &F = *L->getHeader()->getParent();
1186
1187 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
1188 LoopInfo *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Geoff Berry66d9bdb2017-06-28 15:53:17 +00001189 ScalarEvolution &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE();
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001190 const TargetTransformInfo &TTI =
1191 getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001192 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
Adam Nemet4f155b62016-08-26 15:58:34 +00001193 // For the old PM, we can't use OptimizationRemarkEmitter as an analysis
1194 // pass. Function analyses need to be preserved across loop transformations
1195 // but ORE cannot be preserved (see comment before the pass definition).
1196 OptimizationRemarkEmitter ORE(&F);
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001197 bool PreserveLCSSA = mustPreserveAnalysisID(LCSSAID);
1198
Sanjoy Dasdef17292017-09-28 02:45:42 +00001199 LoopUnrollResult Result = tryToUnrollLoop(
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +00001200 L, DT, LI, SE, TTI, AC, ORE, nullptr, nullptr,
1201 PreserveLCSSA, OptLevel, OnlyWhenForced,
Alina Sbirlea2312a062019-04-12 19:16:07 +00001202 ForgetAllSCEV, ProvidedCount, ProvidedThreshold, ProvidedAllowPartial,
1203 ProvidedRuntime, ProvidedUpperBound, ProvidedAllowPeeling);
Sanjoy Dasdef17292017-09-28 02:45:42 +00001204
1205 if (Result == LoopUnrollResult::FullyUnrolled)
1206 LPM.markLoopAsDeleted(*L);
1207
1208 return Result != LoopUnrollResult::Unmodified;
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001209 }
1210
1211 /// This transformation requires natural loop information & requires that
1212 /// loop preheaders be inserted into the CFG...
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001213 void getAnalysisUsage(AnalysisUsage &AU) const override {
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001214 AU.addRequired<AssumptionCacheTracker>();
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001215 AU.addRequired<TargetTransformInfoWrapperPass>();
Chandler Carruth31088a92016-02-19 10:45:18 +00001216 // FIXME: Loop passes are required to preserve domtree, and for now we just
1217 // recreate dom info if anything gets unrolled.
1218 getLoopAnalysisUsage(AU);
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001219 }
1220};
Eugene Zelenko306d2992017-10-18 21:46:47 +00001221
1222} // end anonymous namespace
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001223
1224char LoopUnroll::ID = 0;
Eugene Zelenko306d2992017-10-18 21:46:47 +00001225
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001226INITIALIZE_PASS_BEGIN(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001227INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruth31088a92016-02-19 10:45:18 +00001228INITIALIZE_PASS_DEPENDENCY(LoopPass)
1229INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001230INITIALIZE_PASS_END(LoopUnroll, "loop-unroll", "Unroll loops", false, false)
1231
Michael Kruse32847752018-12-18 17:16:05 +00001232Pass *llvm::createLoopUnrollPass(int OptLevel, bool OnlyWhenForced,
Alina Sbirlea2312a062019-04-12 19:16:07 +00001233 bool ForgetAllSCEV, int Threshold, int Count,
1234 int AllowPartial, int Runtime, int UpperBound,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001235 int AllowPeeling) {
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001236 // TODO: It would make more sense for this function to take the optionals
1237 // directly, but that's dangerous since it would silently break out of tree
1238 // callers.
Dehao Chen7d230322017-02-18 03:46:51 +00001239 return new LoopUnroll(
Alina Sbirlea2312a062019-04-12 19:16:07 +00001240 OptLevel, OnlyWhenForced, ForgetAllSCEV,
Michael Kruse32847752018-12-18 17:16:05 +00001241 Threshold == -1 ? None : Optional<unsigned>(Threshold),
Dehao Chen7d230322017-02-18 03:46:51 +00001242 Count == -1 ? None : Optional<unsigned>(Count),
1243 AllowPartial == -1 ? None : Optional<bool>(AllowPartial),
1244 Runtime == -1 ? None : Optional<bool>(Runtime),
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001245 UpperBound == -1 ? None : Optional<bool>(UpperBound),
1246 AllowPeeling == -1 ? None : Optional<bool>(AllowPeeling));
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001247}
1248
Alina Sbirlea2312a062019-04-12 19:16:07 +00001249Pass *llvm::createSimpleLoopUnrollPass(int OptLevel, bool OnlyWhenForced,
1250 bool ForgetAllSCEV) {
1251 return createLoopUnrollPass(OptLevel, OnlyWhenForced, ForgetAllSCEV, -1, -1,
1252 0, 0, 0, 0);
Justin Bognerb8d82ab2016-01-12 05:21:37 +00001253}
Sean Silvae3c18a52016-07-19 23:54:23 +00001254
Teresa Johnsonecd90132017-08-02 20:35:29 +00001255PreservedAnalyses LoopFullUnrollPass::run(Loop &L, LoopAnalysisManager &AM,
1256 LoopStandardAnalysisResults &AR,
1257 LPMUpdater &Updater) {
Sean Silvae3c18a52016-07-19 23:54:23 +00001258 const auto &FAM =
Chandler Carruth410eaeb2017-01-11 06:23:21 +00001259 AM.getResult<FunctionAnalysisManagerLoopProxy>(L, AR).getManager();
Sean Silvae3c18a52016-07-19 23:54:23 +00001260 Function *F = L.getHeader()->getParent();
1261
Adam Nemet12937c32016-07-29 19:29:47 +00001262 auto *ORE = FAM.getCachedResult<OptimizationRemarkEmitterAnalysis>(*F);
Chandler Carruth410eaeb2017-01-11 06:23:21 +00001263 // FIXME: This should probably be optional rather than required.
Adam Nemet12937c32016-07-29 19:29:47 +00001264 if (!ORE)
Teresa Johnsonecd90132017-08-02 20:35:29 +00001265 report_fatal_error(
1266 "LoopFullUnrollPass: OptimizationRemarkEmitterAnalysis not "
1267 "cached at a higher level");
Sean Silvae3c18a52016-07-19 23:54:23 +00001268
Chandler Carruthce40fa12017-01-25 02:49:01 +00001269 // Keep track of the previous loop structure so we can identify new loops
1270 // created by unrolling.
1271 Loop *ParentL = L.getParentLoop();
1272 SmallPtrSet<Loop *, 4> OldLoops;
1273 if (ParentL)
1274 OldLoops.insert(ParentL->begin(), ParentL->end());
1275 else
1276 OldLoops.insert(AR.LI.begin(), AR.LI.end());
1277
Sanjoy Dasdef17292017-09-28 02:45:42 +00001278 std::string LoopName = L.getName();
1279
Teresa Johnsonecd90132017-08-02 20:35:29 +00001280 bool Changed =
1281 tryToUnrollLoop(&L, AR.DT, &AR.LI, AR.SE, AR.TTI, AR.AC, *ORE,
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +00001282 /*BFI*/ nullptr, /*PSI*/ nullptr,
Michael Kruse32847752018-12-18 17:16:05 +00001283 /*PreserveLCSSA*/ true, OptLevel, OnlyWhenForced,
Alina Sbirlea2312a062019-04-12 19:16:07 +00001284 /*ForgetAllSCEV*/ false, /*Count*/ None,
Teresa Johnsonecd90132017-08-02 20:35:29 +00001285 /*Threshold*/ None, /*AllowPartial*/ false,
Teresa Johnson9a18a6f2017-08-03 17:52:38 +00001286 /*Runtime*/ false, /*UpperBound*/ false,
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001287 /*AllowPeeling*/ false) != LoopUnrollResult::Unmodified;
Sean Silvae3c18a52016-07-19 23:54:23 +00001288 if (!Changed)
1289 return PreservedAnalyses::all();
Chandler Carruthca68a3e2017-01-15 06:32:49 +00001290
Chandler Carruthce40fa12017-01-25 02:49:01 +00001291 // The parent must not be damaged by unrolling!
1292#ifndef NDEBUG
1293 if (ParentL)
1294 ParentL->verifyLoop();
1295#endif
1296
1297 // Unrolling can do several things to introduce new loops into a loop nest:
Chandler Carruthce40fa12017-01-25 02:49:01 +00001298 // - Full unrolling clones child loops within the current loop but then
1299 // removes the current loop making all of the children appear to be new
1300 // sibling loops.
Chandler Carruthce40fa12017-01-25 02:49:01 +00001301 //
Teresa Johnsonecd90132017-08-02 20:35:29 +00001302 // When a new loop appears as a sibling loop after fully unrolling,
1303 // its nesting structure has fundamentally changed and we want to revisit
1304 // it to reflect that.
Chandler Carruthce40fa12017-01-25 02:49:01 +00001305 //
1306 // When unrolling has removed the current loop, we need to tell the
1307 // infrastructure that it is gone.
1308 //
1309 // Finally, we support a debugging/testing mode where we revisit child loops
1310 // as well. These are not expected to require further optimizations as either
1311 // they or the loop they were cloned from have been directly visited already.
1312 // But the debugging mode allows us to check this assumption.
1313 bool IsCurrentLoopValid = false;
1314 SmallVector<Loop *, 4> SibLoops;
1315 if (ParentL)
1316 SibLoops.append(ParentL->begin(), ParentL->end());
1317 else
1318 SibLoops.append(AR.LI.begin(), AR.LI.end());
1319 erase_if(SibLoops, [&](Loop *SibLoop) {
1320 if (SibLoop == &L) {
1321 IsCurrentLoopValid = true;
1322 return true;
1323 }
1324
1325 // Otherwise erase the loop from the list if it was in the old loops.
1326 return OldLoops.count(SibLoop) != 0;
1327 });
1328 Updater.addSiblingLoops(SibLoops);
1329
1330 if (!IsCurrentLoopValid) {
Sanjoy Dasdef17292017-09-28 02:45:42 +00001331 Updater.markLoopAsDeleted(L, LoopName);
Chandler Carruthce40fa12017-01-25 02:49:01 +00001332 } else {
1333 // We can only walk child loops if the current loop remained valid.
1334 if (UnrollRevisitChildLoops) {
Teresa Johnsonecd90132017-08-02 20:35:29 +00001335 // Walk *all* of the child loops.
Chandler Carruthce40fa12017-01-25 02:49:01 +00001336 SmallVector<Loop *, 4> ChildLoops(L.begin(), L.end());
1337 Updater.addChildLoops(ChildLoops);
1338 }
1339 }
1340
Sean Silvae3c18a52016-07-19 23:54:23 +00001341 return getLoopPassPreservedAnalyses();
1342}
Teresa Johnsonecd90132017-08-02 20:35:29 +00001343
1344template <typename RangeT>
1345static SmallVector<Loop *, 8> appendLoopsToWorklist(RangeT &&Loops) {
1346 SmallVector<Loop *, 8> Worklist;
1347 // We use an internal worklist to build up the preorder traversal without
1348 // recursion.
1349 SmallVector<Loop *, 4> PreOrderLoops, PreOrderWorklist;
1350
1351 for (Loop *RootL : Loops) {
1352 assert(PreOrderLoops.empty() && "Must start with an empty preorder walk.");
1353 assert(PreOrderWorklist.empty() &&
1354 "Must start with an empty preorder walk worklist.");
1355 PreOrderWorklist.push_back(RootL);
1356 do {
1357 Loop *L = PreOrderWorklist.pop_back_val();
1358 PreOrderWorklist.append(L->begin(), L->end());
1359 PreOrderLoops.push_back(L);
1360 } while (!PreOrderWorklist.empty());
1361
1362 Worklist.append(PreOrderLoops.begin(), PreOrderLoops.end());
1363 PreOrderLoops.clear();
1364 }
1365 return Worklist;
1366}
1367
1368PreservedAnalyses LoopUnrollPass::run(Function &F,
1369 FunctionAnalysisManager &AM) {
1370 auto &SE = AM.getResult<ScalarEvolutionAnalysis>(F);
1371 auto &LI = AM.getResult<LoopAnalysis>(F);
1372 auto &TTI = AM.getResult<TargetIRAnalysis>(F);
1373 auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
1374 auto &AC = AM.getResult<AssumptionAnalysis>(F);
1375 auto &ORE = AM.getResult<OptimizationRemarkEmitterAnalysis>(F);
1376
Chandler Carruth7c888dc2017-08-08 02:24:20 +00001377 LoopAnalysisManager *LAM = nullptr;
1378 if (auto *LAMProxy = AM.getCachedResult<LoopAnalysisManagerFunctionProxy>(F))
1379 LAM = &LAMProxy->getManager();
1380
Teresa Johnson8482e562017-08-03 23:42:58 +00001381 const ModuleAnalysisManager &MAM =
1382 AM.getResult<ModuleAnalysisManagerFunctionProxy>(F).getManager();
1383 ProfileSummaryInfo *PSI =
1384 MAM.getCachedResult<ProfileSummaryAnalysis>(*F.getParent());
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +00001385 auto *BFI = (PSI && PSI->hasProfileSummary()) ?
1386 &AM.getResult<BlockFrequencyAnalysis>(F) : nullptr;
Teresa Johnson8482e562017-08-03 23:42:58 +00001387
Teresa Johnsonecd90132017-08-02 20:35:29 +00001388 bool Changed = false;
1389
1390 // The unroller requires loops to be in simplified form, and also needs LCSSA.
1391 // Since simplification may add new inner loops, it has to run before the
1392 // legality and profitability checks. This means running the loop unroller
1393 // will simplify all loops, regardless of whether anything end up being
1394 // unrolled.
1395 for (auto &L : LI) {
1396 Changed |= simplifyLoop(L, &DT, &LI, &SE, &AC, false /* PreserveLCSSA */);
1397 Changed |= formLCSSARecursively(*L, DT, &LI, &SE);
1398 }
1399
1400 SmallVector<Loop *, 8> Worklist = appendLoopsToWorklist(LI);
1401
1402 while (!Worklist.empty()) {
1403 // Because the LoopInfo stores the loops in RPO, we walk the worklist
1404 // from back to front so that we work forward across the CFG, which
1405 // for unrolling is only needed to get optimization remarks emitted in
1406 // a forward order.
1407 Loop &L = *Worklist.pop_back_val();
Benjamin Kramerc965b302017-09-28 14:47:39 +00001408#ifndef NDEBUG
1409 Loop *ParentL = L.getParentLoop();
1410#endif
Teresa Johnsonecd90132017-08-02 20:35:29 +00001411
Teresa Johnson8482e562017-08-03 23:42:58 +00001412 // Check if the profile summary indicates that the profiled application
1413 // has a huge working set size, in which case we disable peeling to avoid
1414 // bloating it further.
Fedor Sergeev412ed342018-10-31 14:33:14 +00001415 Optional<bool> LocalAllowPeeling = UnrollOpts.AllowPeeling;
Teresa Johnson8482e562017-08-03 23:42:58 +00001416 if (PSI && PSI->hasHugeWorkingSetSize())
Fedor Sergeev412ed342018-10-31 14:33:14 +00001417 LocalAllowPeeling = false;
Sanjoy Dasdef17292017-09-28 02:45:42 +00001418 std::string LoopName = L.getName();
Fedor Sergeev412ed342018-10-31 14:33:14 +00001419 // The API here is quite complex to call and we allow to select some
1420 // flavors of unrolling during construction time (by setting UnrollOpts).
1421 LoopUnrollResult Result = tryToUnrollLoop(
Hiroshi Yamauchi09e539f2019-04-15 16:49:00 +00001422 &L, DT, &LI, SE, TTI, AC, ORE, BFI, PSI,
Michael Kruse32847752018-12-18 17:16:05 +00001423 /*PreserveLCSSA*/ true, UnrollOpts.OptLevel, UnrollOpts.OnlyWhenForced,
Alina Sbirlea2312a062019-04-12 19:16:07 +00001424 /*ForgetAllSCEV*/ false, /*Count*/ None,
Fedor Sergeev412ed342018-10-31 14:33:14 +00001425 /*Threshold*/ None, UnrollOpts.AllowPartial, UnrollOpts.AllowRuntime,
1426 UnrollOpts.AllowUpperBound, LocalAllowPeeling);
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001427 Changed |= Result != LoopUnrollResult::Unmodified;
Teresa Johnsonecd90132017-08-02 20:35:29 +00001428
1429 // The parent must not be damaged by unrolling!
1430#ifndef NDEBUG
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001431 if (Result != LoopUnrollResult::Unmodified && ParentL)
Teresa Johnsonecd90132017-08-02 20:35:29 +00001432 ParentL->verifyLoop();
1433#endif
Chandler Carruth7c888dc2017-08-08 02:24:20 +00001434
Sanjoy Das4f3ebd52017-09-27 21:45:22 +00001435 // Clear any cached analysis results for L if we removed it completely.
1436 if (LAM && Result == LoopUnrollResult::FullyUnrolled)
Sanjoy Dasdef17292017-09-28 02:45:42 +00001437 LAM->clear(L, LoopName);
Teresa Johnsonecd90132017-08-02 20:35:29 +00001438 }
1439
1440 if (!Changed)
1441 return PreservedAnalyses::all();
1442
1443 return getLoopPassPreservedAnalyses();
1444}