blob: bcdbe226eee4adf97dd0616b222eecc1c40d0024 [file] [log] [blame]
Tobias Grosser75805372011-04-29 06:27:02 +00001//===----- ScopDetection.cpp - Detect Scops --------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Detect the maximal Scops of a function.
11//
12// A static control part (Scop) is a subgraph of the control flow graph (CFG)
13// that only has statically known control flow and can therefore be described
14// within the polyhedral model.
15//
16// Every Scop fullfills these restrictions:
17//
18// * It is a single entry single exit region
19//
20// * Only affine linear bounds in the loops
21//
22// Every natural loop in a Scop must have a number of loop iterations that can
23// be described as an affine linear function in surrounding loop iterators or
24// parameters. (A parameter is a scalar that does not change its value during
25// execution of the Scop).
26//
27// * Only comparisons of affine linear expressions in conditions
28//
29// * All loops and conditions perfectly nested
30//
31// The control flow needs to be structured such that it could be written using
32// just 'for' and 'if' statements, without the need for any 'goto', 'break' or
33// 'continue'.
34//
35// * Side effect free functions call
36//
Johannes Doerfertcea61932016-02-21 19:13:19 +000037// Function calls and intrinsics that do not have side effects (readnone)
38// or memory intrinsics (memset, memcpy, memmove) are allowed.
Tobias Grosser75805372011-04-29 06:27:02 +000039//
40// The Scop detection finds the largest Scops by checking if the largest
41// region is a Scop. If this is not the case, its canonical subregions are
42// checked until a region is a Scop. It is now tried to extend this Scop by
43// creating a larger non canonical region.
44//
45//===----------------------------------------------------------------------===//
46
Tobias Grosser5624d3c2015-12-21 12:38:56 +000047#include "polly/ScopDetection.h"
Tobias Grosserba0d0922015-05-09 09:13:42 +000048#include "polly/CodeGen/CodeGeneration.h"
Tobias Grosser75805372011-04-29 06:27:02 +000049#include "polly/LinkAllPasses.h"
Tobias Grosser637bd632013-05-07 07:31:10 +000050#include "polly/Options.h"
Tobias Grosserba0d0922015-05-09 09:13:42 +000051#include "polly/ScopDetectionDiagnostic.h"
Tobias Grosser120db6b2011-11-07 12:58:54 +000052#include "polly/Support/SCEVValidator.h"
Tobias Grossera63b7ce2015-05-03 05:21:36 +000053#include "polly/Support/ScopLocation.h"
Tobias Grosser75805372011-04-29 06:27:02 +000054#include "llvm/ADT/Statistic.h"
55#include "llvm/Analysis/AliasAnalysis.h"
Tobias Grosser6e9f25a2011-11-09 22:35:00 +000056#include "llvm/Analysis/LoopInfo.h"
Matt Arsenault8ca36812014-07-19 18:40:17 +000057#include "llvm/Analysis/PostDominators.h"
Tobias Grosser75805372011-04-29 06:27:02 +000058#include "llvm/Analysis/RegionIterator.h"
Tobias Grosser6e9f25a2011-11-09 22:35:00 +000059#include "llvm/Analysis/ScalarEvolution.h"
Tobias Grosserb8710b52011-11-10 12:44:50 +000060#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Chandler Carruth6b96c242014-03-06 00:47:27 +000061#include "llvm/IR/DebugInfo.h"
Tobias Grosser8519f892013-12-18 10:49:53 +000062#include "llvm/IR/DiagnosticInfo.h"
63#include "llvm/IR/DiagnosticPrinter.h"
Tobias Grosserba0d0922015-05-09 09:13:42 +000064#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth6b96c242014-03-06 00:47:27 +000065#include "llvm/IR/LLVMContext.h"
Tobias Grosser75805372011-04-29 06:27:02 +000066#include "llvm/Support/Debug.h"
Tobias Grosser60b54f12011-11-08 15:41:28 +000067#include <set>
Tobias Grosser1c3a6d72016-01-22 09:44:37 +000068#include <stack>
Tobias Grosser60b54f12011-11-08 15:41:28 +000069
Tobias Grosser75805372011-04-29 06:27:02 +000070using namespace llvm;
71using namespace polly;
72
Chandler Carruth95fef942014-04-22 03:30:19 +000073#define DEBUG_TYPE "polly-detect"
74
Tobias Grosserc1a269b2015-12-21 21:00:43 +000075// This option is set to a very high value, as analyzing such loops increases
76// compile time on several cases. For experiments that enable this option,
77// a value of around 40 has been working to avoid run-time regressions with
78// Polly while still exposing interesting optimization opportunities.
79static cl::opt<int> ProfitabilityMinPerLoopInstructions(
80 "polly-detect-profitability-min-per-loop-insts",
81 cl::desc("The minimal number of per-loop instructions before a single loop "
82 "region is considered profitable"),
83 cl::Hidden, cl::ValueRequired, cl::init(100000000), cl::cat(PollyCategory));
84
Tobias Grosser575aca82015-10-06 16:10:29 +000085bool polly::PollyProcessUnprofitable;
86static cl::opt<bool, true> XPollyProcessUnprofitable(
87 "polly-process-unprofitable",
88 cl::desc(
89 "Process scops that are unlikely to benefit from Polly optimizations."),
90 cl::location(PollyProcessUnprofitable), cl::init(false), cl::ZeroOrMore,
91 cl::cat(PollyCategory));
Tobias Grosserd1e33e72015-02-19 05:31:07 +000092
Tobias Grosser483a90d2014-07-09 10:50:10 +000093static cl::opt<std::string> OnlyFunction(
94 "polly-only-func",
95 cl::desc("Only run on functions that contain a certain string"),
96 cl::value_desc("string"), cl::ValueRequired, cl::init(""),
97 cl::cat(PollyCategory));
Tobias Grosser2ff87232011-10-23 11:17:06 +000098
Tobias Grosser483a90d2014-07-09 10:50:10 +000099static cl::opt<std::string> OnlyRegion(
100 "polly-only-region",
101 cl::desc("Only run on certain regions (The provided identifier must "
102 "appear in the name of the region's entry block"),
103 cl::value_desc("identifier"), cl::ValueRequired, cl::init(""),
104 cl::cat(PollyCategory));
Tobias Grosser4449e522014-01-27 14:24:53 +0000105
Tobias Grosser60cd9322011-11-10 12:47:26 +0000106static cl::opt<bool>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000107 IgnoreAliasing("polly-ignore-aliasing",
108 cl::desc("Ignore possible aliasing of the array bases"),
109 cl::Hidden, cl::init(false), cl::ZeroOrMore,
110 cl::cat(PollyCategory));
Tobias Grosser2ff87232011-10-23 11:17:06 +0000111
Johannes Doerfertbda81432016-12-02 17:55:41 +0000112bool polly::PollyAllowUnsignedOperations;
113static cl::opt<bool, true> XPollyAllowUnsignedOperations(
114 "polly-allow-unsigned-operations",
115 cl::desc("Allow unsigned operations such as comparisons or zero-extends."),
116 cl::location(PollyAllowUnsignedOperations), cl::Hidden, cl::ZeroOrMore,
117 cl::init(true), cl::cat(PollyCategory));
118
Johannes Doerfertb164c792014-09-18 11:17:17 +0000119bool polly::PollyUseRuntimeAliasChecks;
120static cl::opt<bool, true> XPollyUseRuntimeAliasChecks(
121 "polly-use-runtime-alias-checks",
122 cl::desc("Use runtime alias checks to resolve possible aliasing."),
123 cl::location(PollyUseRuntimeAliasChecks), cl::Hidden, cl::ZeroOrMore,
124 cl::init(true), cl::cat(PollyCategory));
125
Tobias Grosser637bd632013-05-07 07:31:10 +0000126static cl::opt<bool>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000127 ReportLevel("polly-report",
128 cl::desc("Print information about the activities of Polly"),
129 cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory));
Tobias Grosser531891e2012-11-01 16:45:20 +0000130
Tobias Grosser8ebdc2d2016-02-07 08:48:57 +0000131static cl::opt<bool> AllowDifferentTypes(
132 "polly-allow-differing-element-types",
133 cl::desc("Allow different element types for array accesses"), cl::Hidden,
Tobias Grossera2ee0032016-02-16 14:37:24 +0000134 cl::init(true), cl::ZeroOrMore, cl::cat(PollyCategory));
Tobias Grosser8ebdc2d2016-02-07 08:48:57 +0000135
Tobias Grosser531891e2012-11-01 16:45:20 +0000136static cl::opt<bool>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000137 AllowNonAffine("polly-allow-nonaffine",
138 cl::desc("Allow non affine access functions in arrays"),
139 cl::Hidden, cl::init(false), cl::ZeroOrMore,
140 cl::cat(PollyCategory));
Tobias Grossera1879642011-12-20 10:43:14 +0000141
Tobias Grosser898a6362016-03-23 06:40:15 +0000142static cl::opt<bool>
143 AllowModrefCall("polly-allow-modref-calls",
144 cl::desc("Allow functions with known modref behavior"),
145 cl::Hidden, cl::init(false), cl::ZeroOrMore,
146 cl::cat(PollyCategory));
147
Johannes Doerfertba65c162015-02-24 11:45:21 +0000148static cl::opt<bool> AllowNonAffineSubRegions(
149 "polly-allow-nonaffine-branches",
150 cl::desc("Allow non affine conditions for branches"), cl::Hidden,
Johannes Doerferta36842f2015-02-26 11:09:24 +0000151 cl::init(true), cl::ZeroOrMore, cl::cat(PollyCategory));
Johannes Doerfertba65c162015-02-24 11:45:21 +0000152
Johannes Doerfertf3e98f42015-04-12 22:52:20 +0000153static cl::opt<bool>
154 AllowNonAffineSubLoops("polly-allow-nonaffine-loops",
155 cl::desc("Allow non affine conditions for loops"),
156 cl::Hidden, cl::init(false), cl::ZeroOrMore,
157 cl::cat(PollyCategory));
158
Tobias Grosserc7d3fc52013-07-25 03:02:29 +0000159static cl::opt<bool, true>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000160 TrackFailures("polly-detect-track-failures",
161 cl::desc("Track failure strings in detecting scop regions"),
162 cl::location(PollyTrackFailures), cl::Hidden, cl::ZeroOrMore,
Andreas Simbuerger3efe40b2014-08-17 10:09:03 +0000163 cl::init(true), cl::cat(PollyCategory));
Tobias Grosserc7d3fc52013-07-25 03:02:29 +0000164
Andreas Simbuerger04472402014-05-24 09:25:10 +0000165static cl::opt<bool> KeepGoing("polly-detect-keep-going",
166 cl::desc("Do not fail on the first error."),
167 cl::Hidden, cl::ZeroOrMore, cl::init(false),
168 cl::cat(PollyCategory));
169
Sebastian Pop18016682014-04-08 21:20:44 +0000170static cl::opt<bool, true>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000171 PollyDelinearizeX("polly-delinearize",
172 cl::desc("Delinearize array access functions"),
173 cl::location(PollyDelinearize), cl::Hidden,
Tobias Grosser6973cb62015-03-08 15:21:18 +0000174 cl::ZeroOrMore, cl::init(true), cl::cat(PollyCategory));
Sebastian Pop18016682014-04-08 21:20:44 +0000175
Tobias Grossera1689932014-02-18 18:49:49 +0000176static cl::opt<bool>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000177 VerifyScops("polly-detect-verify",
178 cl::desc("Verify the detected SCoPs after each transformation"),
179 cl::Hidden, cl::init(false), cl::ZeroOrMore,
180 cl::cat(PollyCategory));
Tobias Grossera1689932014-02-18 18:49:49 +0000181
Tobias Grosser8fa3e4c2016-02-26 16:43:35 +0000182bool polly::PollyInvariantLoadHoisting;
183static cl::opt<bool, true> XPollyInvariantLoadHoisting(
184 "polly-invariant-load-hoisting", cl::desc("Hoist invariant loads."),
185 cl::location(PollyInvariantLoadHoisting), cl::Hidden, cl::ZeroOrMore,
Tobias Grosser74814e12016-08-15 16:43:36 +0000186 cl::init(false), cl::cat(PollyCategory));
Tobias Grosser8fa3e4c2016-02-26 16:43:35 +0000187
Tobias Grosserc80d6972016-09-02 06:33:33 +0000188/// The minimal trip count under which loops are considered unprofitable.
Johannes Doerferte526de52015-09-21 19:10:11 +0000189static const unsigned MIN_LOOP_TRIP_COUNT = 8;
190
Tobias Grosserc7d3fc52013-07-25 03:02:29 +0000191bool polly::PollyTrackFailures = false;
Sebastian Pop18016682014-04-08 21:20:44 +0000192bool polly::PollyDelinearize = false;
Johannes Doerfert43e1ead2014-07-15 21:06:48 +0000193StringRef polly::PollySkipFnAttr = "polly.skip.fn";
Tobias Grosserc7d3fc52013-07-25 03:02:29 +0000194
Tobias Grosser75805372011-04-29 06:27:02 +0000195//===----------------------------------------------------------------------===//
196// Statistics.
197
Tobias Grosserb45ae562016-11-26 07:37:46 +0000198STATISTIC(NumScopRegions, "Number of scops");
199STATISTIC(NumLoopsInScop, "Number of loops in scops");
200STATISTIC(NumScopsDepthOne, "Number of scops with maximal loop depth 1");
201STATISTIC(NumScopsDepthTwo, "Number of scops with maximal loop depth 2");
202STATISTIC(NumScopsDepthThree, "Number of scops with maximal loop depth 3");
203STATISTIC(NumScopsDepthFour, "Number of scops with maximal loop depth 4");
204STATISTIC(NumScopsDepthFive, "Number of scops with maximal loop depth 5");
205STATISTIC(NumScopsDepthLarger,
206 "Number of scops with maximal loop depth 6 and larger");
207STATISTIC(NumProfScopRegions, "Number of scops (profitable scops only)");
208STATISTIC(NumLoopsInProfScop,
209 "Number of loops in scops (profitable scops only)");
210STATISTIC(NumLoopsOverall, "Number of total loops");
211STATISTIC(NumProfScopsDepthOne,
212 "Number of scops with maximal loop depth 1 (profitable scops only)");
213STATISTIC(NumProfScopsDepthTwo,
214 "Number of scops with maximal loop depth 2 (profitable scops only)");
215STATISTIC(NumProfScopsDepthThree,
216 "Number of scops with maximal loop depth 3 (profitable scops only)");
217STATISTIC(NumProfScopsDepthFour,
218 "Number of scops with maximal loop depth 4 (profitable scops only)");
219STATISTIC(NumProfScopsDepthFive,
220 "Number of scops with maximal loop depth 5 (profitable scops only)");
Tobias Grosser21a059a2017-01-16 14:08:10 +0000221STATISTIC(NumProfScopsDepthLarger,
222 "Number of scops with maximal loop depth 6 and larger "
223 "(profitable scops only)");
Tobias Grosser9fe37df2017-02-12 10:52:57 +0000224STATISTIC(MaxNumLoopsInScop, "Maximal number of loops in scops");
225STATISTIC(MaxNumLoopsInProfScop,
226 "Maximal number of loops in scops (profitable scops only)");
Tobias Grosser75805372011-04-29 06:27:02 +0000227
Tobias Grosser8519f892013-12-18 10:49:53 +0000228class DiagnosticScopFound : public DiagnosticInfo {
229private:
230 static int PluginDiagnosticKind;
231
232 Function &F;
233 std::string FileName;
234 unsigned EntryLine, ExitLine;
235
236public:
Tobias Grosser1b12f462013-12-18 11:14:36 +0000237 DiagnosticScopFound(Function &F, std::string FileName, unsigned EntryLine,
238 unsigned ExitLine)
Tobias Grosser8519f892013-12-18 10:49:53 +0000239 : DiagnosticInfo(PluginDiagnosticKind, DS_Note), F(F), FileName(FileName),
Tobias Grosser1b12f462013-12-18 11:14:36 +0000240 EntryLine(EntryLine), ExitLine(ExitLine) {}
Tobias Grosser8519f892013-12-18 10:49:53 +0000241
242 virtual void print(DiagnosticPrinter &DP) const;
243
244 static bool classof(const DiagnosticInfo *DI) {
245 return DI->getKind() == PluginDiagnosticKind;
246 }
247};
248
Tobias Grosserdb6db502016-04-01 07:15:19 +0000249int DiagnosticScopFound::PluginDiagnosticKind =
250 getNextAvailablePluginDiagnosticKind();
Tobias Grosser8519f892013-12-18 10:49:53 +0000251
Tobias Grosser8519f892013-12-18 10:49:53 +0000252void DiagnosticScopFound::print(DiagnosticPrinter &DP) const {
Tobias Grosser1b12f462013-12-18 11:14:36 +0000253 DP << "Polly detected an optimizable loop region (scop) in function '" << F
254 << "'\n";
Tobias Grosser8519f892013-12-18 10:49:53 +0000255
256 if (FileName.empty()) {
257 DP << "Scop location is unknown. Compile with debug info "
258 "(-g) to get more precise information. ";
Tobias Grosser1b12f462013-12-18 11:14:36 +0000259 return;
Tobias Grosser8519f892013-12-18 10:49:53 +0000260 }
261
262 DP << FileName << ":" << EntryLine << ": Start of scop\n";
263 DP << FileName << ":" << ExitLine << ": End of scop";
264}
265
Tobias Grosser75805372011-04-29 06:27:02 +0000266//===----------------------------------------------------------------------===//
267// ScopDetection.
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000268
Johannes Doerfertb164c792014-09-18 11:17:17 +0000269ScopDetection::ScopDetection() : FunctionPass(ID) {
Johannes Doerfert928229f2014-09-29 17:06:29 +0000270 // Disable runtime alias checks if we ignore aliasing all together.
Johannes Doerfert8c830782016-02-25 14:07:49 +0000271 if (IgnoreAliasing)
Johannes Doerfert928229f2014-09-29 17:06:29 +0000272 PollyUseRuntimeAliasChecks = false;
Johannes Doerfertb164c792014-09-18 11:17:17 +0000273}
274
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000275template <class RR, typename... Args>
276inline bool ScopDetection::invalid(DetectionContext &Context, bool Assert,
277 Args &&... Arguments) const {
278
279 if (!Context.Verifying) {
Andreas Simbuerger4870e092014-05-24 09:25:01 +0000280 RejectLog &Log = Context.Log;
281 std::shared_ptr<RR> RejectReason = std::make_shared<RR>(Arguments...);
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000282
Andreas Simbuerger8a00c9b2014-05-24 09:25:06 +0000283 if (PollyTrackFailures)
Andreas Simbuerger4870e092014-05-24 09:25:01 +0000284 Log.report(RejectReason);
Andreas Simbuerger4870e092014-05-24 09:25:01 +0000285
286 DEBUG(dbgs() << RejectReason->getMessage());
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000287 DEBUG(dbgs() << "\n");
288 } else {
289 assert(!Assert && "Verification of detected scop failed");
290 }
291
292 return false;
293}
294
Tobias Grossera1689932014-02-18 18:49:49 +0000295bool ScopDetection::isMaxRegionInScop(const Region &R, bool Verify) const {
296 if (!ValidRegions.count(&R))
297 return false;
298
Johannes Doerfert3f1c2852015-02-19 18:11:50 +0000299 if (Verify) {
Johannes Doerfert6c7639b2016-05-12 18:50:01 +0000300 DetectionContextMap.erase(getBBPairForRegion(&R));
301 const auto &It = DetectionContextMap.insert(std::make_pair(
302 getBBPairForRegion(&R),
303 DetectionContext(const_cast<Region &>(R), *AA, false /*verifying*/)));
Tobias Grosser907090c2015-10-25 10:55:35 +0000304 DetectionContext &Context = It.first->second;
Johannes Doerfert3f1c2852015-02-19 18:11:50 +0000305 return isValidRegion(Context);
306 }
Tobias Grossera1689932014-02-18 18:49:49 +0000307
308 return true;
Tobias Grosser75805372011-04-29 06:27:02 +0000309}
310
Tobias Grosser4f129a62011-10-08 00:30:55 +0000311std::string ScopDetection::regionIsInvalidBecause(const Region *R) const {
Andreas Simbuerger8a00c9b2014-05-24 09:25:06 +0000312 // Get the first error we found. Even in keep-going mode, this is the first
313 // reason that caused the candidate to be rejected.
Johannes Doerfert6c7639b2016-05-12 18:50:01 +0000314 auto *Log = lookupRejectionLog(R);
Andreas Simbuerger83ed8612014-06-12 07:25:08 +0000315
316 // This can happen when we marked a region invalid, but didn't track
317 // an error for it.
Johannes Doerfert6c7639b2016-05-12 18:50:01 +0000318 if (!Log || !Log->hasErrors())
Andreas Simbuerger83ed8612014-06-12 07:25:08 +0000319 return "";
320
Johannes Doerfert6c7639b2016-05-12 18:50:01 +0000321 RejectReasonPtr RR = *Log->begin();
Andreas Simbuerger83ed8612014-06-12 07:25:08 +0000322 return RR->getMessage();
Tobias Grosser4f129a62011-10-08 00:30:55 +0000323}
324
Johannes Doerfertf3e98f42015-04-12 22:52:20 +0000325bool ScopDetection::addOverApproximatedRegion(Region *AR,
326 DetectionContext &Context) const {
327
328 // If we already know about Ar we can exit.
329 if (!Context.NonAffineSubRegionSet.insert(AR))
330 return true;
331
332 // All loops in the region have to be overapproximated too if there
333 // are accesses that depend on the iteration count.
Michael Kruse41f046a2016-06-27 19:00:49 +0000334
Johannes Doerfertf3e98f42015-04-12 22:52:20 +0000335 for (BasicBlock *BB : AR->blocks()) {
Johannes Doerfertba65c162015-02-24 11:45:21 +0000336 Loop *L = LI->getLoopFor(BB);
Tobias Grosser349d1c32016-09-20 17:05:22 +0000337 if (AR->contains(L))
Johannes Doerfertf3e98f42015-04-12 22:52:20 +0000338 Context.BoxedLoopsSet.insert(L);
Johannes Doerfertba65c162015-02-24 11:45:21 +0000339 }
Johannes Doerfertf3e98f42015-04-12 22:52:20 +0000340
341 return (AllowNonAffineSubLoops || Context.BoxedLoopsSet.empty());
Johannes Doerfertba65c162015-02-24 11:45:21 +0000342}
343
Johannes Doerfert09e36972015-10-07 20:17:36 +0000344bool ScopDetection::onlyValidRequiredInvariantLoads(
345 InvariantLoadsSetTy &RequiredILS, DetectionContext &Context) const {
346 Region &CurRegion = Context.CurRegion;
347
Tobias Grosser8fa3e4c2016-02-26 16:43:35 +0000348 if (!PollyInvariantLoadHoisting && !RequiredILS.empty())
349 return false;
350
Johannes Doerfert09e36972015-10-07 20:17:36 +0000351 for (LoadInst *Load : RequiredILS)
Johannes Doerfert6cd59e92016-11-17 22:25:17 +0000352 if (!isHoistableLoad(Load, CurRegion, *LI, *SE, *DT))
Johannes Doerfert09e36972015-10-07 20:17:36 +0000353 return false;
354
355 Context.RequiredILS.insert(RequiredILS.begin(), RequiredILS.end());
356
357 return true;
358}
359
Johannes Doerferta94ae1a2016-12-02 17:49:52 +0000360bool ScopDetection::involvesMultiplePtrs(const SCEV *S0, const SCEV *S1,
361 Loop *Scope) const {
362 SetVector<Value *> Values;
363 findValues(S0, *SE, Values);
364 if (S1)
365 findValues(S1, *SE, Values);
366
367 SmallPtrSet<Value *, 8> PtrVals;
368 for (auto *V : Values) {
369 if (auto *P2I = dyn_cast<PtrToIntInst>(V))
370 V = P2I->getOperand(0);
371
372 if (!V->getType()->isPointerTy())
373 continue;
374
375 auto *PtrSCEV = SE->getSCEVAtScope(V, Scope);
376 if (isa<SCEVConstant>(PtrSCEV))
377 continue;
378
379 auto *BasePtr = dyn_cast<SCEVUnknown>(SE->getPointerBase(PtrSCEV));
380 if (!BasePtr)
381 return true;
382
383 auto *BasePtrVal = BasePtr->getValue();
384 if (PtrVals.insert(BasePtrVal).second) {
385 for (auto *PtrVal : PtrVals)
386 if (PtrVal != BasePtrVal && !AA->isNoAlias(PtrVal, BasePtrVal))
387 return true;
388 }
389 }
390
391 return false;
392}
393
Michael Kruse09eb4452016-03-03 22:10:47 +0000394bool ScopDetection::isAffine(const SCEV *S, Loop *Scope,
Johannes Doerfertec8a2172016-04-25 13:32:36 +0000395 DetectionContext &Context) const {
Johannes Doerfert09e36972015-10-07 20:17:36 +0000396
397 InvariantLoadsSetTy AccessILS;
Johannes Doerfertec8a2172016-04-25 13:32:36 +0000398 if (!isAffineExpr(&Context.CurRegion, Scope, S, *SE, &AccessILS))
Johannes Doerfert09e36972015-10-07 20:17:36 +0000399 return false;
400
401 if (!onlyValidRequiredInvariantLoads(AccessILS, Context))
402 return false;
403
404 return true;
405}
406
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000407bool ScopDetection::isValidSwitch(BasicBlock &BB, SwitchInst *SI,
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000408 Value *Condition, bool IsLoopBranch,
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000409 DetectionContext &Context) const {
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000410 Loop *L = LI->getLoopFor(&BB);
411 const SCEV *ConditionSCEV = SE->getSCEVAtScope(Condition, L);
Tobias Grosser75805372011-04-29 06:27:02 +0000412
Tobias Grosserbbaeda32016-11-10 05:20:29 +0000413 if (IsLoopBranch && L->isLoopLatch(&BB))
414 return false;
415
Johannes Doerferta94ae1a2016-12-02 17:49:52 +0000416 // Check for invalid usage of different pointers in one expression.
417 if (involvesMultiplePtrs(ConditionSCEV, nullptr, L))
418 return false;
419
Michael Kruse09eb4452016-03-03 22:10:47 +0000420 if (isAffine(ConditionSCEV, L, Context))
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000421 return true;
Tobias Grosser75805372011-04-29 06:27:02 +0000422
Tobias Grosserbbaeda32016-11-10 05:20:29 +0000423 if (AllowNonAffineSubRegions &&
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000424 addOverApproximatedRegion(RI->getRegionFor(&BB), Context))
425 return true;
426
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000427 return invalid<ReportNonAffBranch>(Context, /*Assert=*/true, &BB,
428 ConditionSCEV, ConditionSCEV, SI);
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000429}
430
431bool ScopDetection::isValidBranch(BasicBlock &BB, BranchInst *BI,
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000432 Value *Condition, bool IsLoopBranch,
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000433 DetectionContext &Context) const {
Johannes Doerfert9b1f9c82015-10-11 13:21:03 +0000434
Tobias Grosserbbaeda32016-11-10 05:20:29 +0000435 // Constant integer conditions are always affine.
436 if (isa<ConstantInt>(Condition))
437 return true;
438
Johannes Doerfert9b1f9c82015-10-11 13:21:03 +0000439 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Condition)) {
440 auto Opcode = BinOp->getOpcode();
441 if (Opcode == Instruction::And || Opcode == Instruction::Or) {
442 Value *Op0 = BinOp->getOperand(0);
443 Value *Op1 = BinOp->getOperand(1);
444 return isValidBranch(BB, BI, Op0, IsLoopBranch, Context) &&
445 isValidBranch(BB, BI, Op1, IsLoopBranch, Context);
446 }
447 }
448
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000449 // Non constant conditions of branches need to be ICmpInst.
450 if (!isa<ICmpInst>(Condition)) {
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000451 if (!IsLoopBranch && AllowNonAffineSubRegions &&
452 addOverApproximatedRegion(RI->getRegionFor(&BB), Context))
453 return true;
454 return invalid<ReportInvalidCond>(Context, /*Assert=*/true, BI, &BB);
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000455 }
Tobias Grosser75805372011-04-29 06:27:02 +0000456
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000457 ICmpInst *ICmp = cast<ICmpInst>(Condition);
Tobias Grosser75805372011-04-29 06:27:02 +0000458
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000459 // Are both operands of the ICmp affine?
460 if (isa<UndefValue>(ICmp->getOperand(0)) ||
461 isa<UndefValue>(ICmp->getOperand(1)))
462 return invalid<ReportUndefOperand>(Context, /*Assert=*/true, &BB, ICmp);
Tobias Grosser75805372011-04-29 06:27:02 +0000463
Tobias Grossera2f8fa32016-11-13 19:27:04 +0000464 Loop *L = LI->getLoopFor(&BB);
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000465 const SCEV *LHS = SE->getSCEVAtScope(ICmp->getOperand(0), L);
466 const SCEV *RHS = SE->getSCEVAtScope(ICmp->getOperand(1), L);
Tobias Grosser75805372011-04-29 06:27:02 +0000467
Johannes Doerfertbda81432016-12-02 17:55:41 +0000468 // If unsigned operations are not allowed try to approximate the region.
469 if (ICmp->isUnsigned() && !PollyAllowUnsignedOperations)
470 return !IsLoopBranch && AllowNonAffineSubRegions &&
471 addOverApproximatedRegion(RI->getRegionFor(&BB), Context);
472
Johannes Doerferta94ae1a2016-12-02 17:49:52 +0000473 // Check for invalid usage of different pointers in one expression.
474 if (ICmp->isEquality() && involvesMultiplePtrs(LHS, nullptr, L) &&
475 involvesMultiplePtrs(RHS, nullptr, L))
476 return false;
477
478 // Check for invalid usage of different pointers in a relational comparison.
479 if (ICmp->isRelational() && involvesMultiplePtrs(LHS, RHS, L))
480 return false;
481
Michael Kruse09eb4452016-03-03 22:10:47 +0000482 if (isAffine(LHS, L, Context) && isAffine(RHS, L, Context))
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000483 return true;
Tobias Grosser75805372011-04-29 06:27:02 +0000484
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000485 if (!IsLoopBranch && AllowNonAffineSubRegions &&
486 addOverApproximatedRegion(RI->getRegionFor(&BB), Context))
487 return true;
488
489 if (IsLoopBranch)
490 return false;
491
492 return invalid<ReportNonAffBranch>(Context, /*Assert=*/true, &BB, LHS, RHS,
493 ICmp);
Tobias Grosser75805372011-04-29 06:27:02 +0000494}
495
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000496bool ScopDetection::isValidCFG(BasicBlock &BB, bool IsLoopBranch,
Tobias Grosserb76cd3c2015-11-11 08:42:20 +0000497 bool AllowUnreachable,
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000498 DetectionContext &Context) const {
499 Region &CurRegion = Context.CurRegion;
500
501 TerminatorInst *TI = BB.getTerminator();
502
Tobias Grosserb76cd3c2015-11-11 08:42:20 +0000503 if (AllowUnreachable && isa<UnreachableInst>(TI))
504 return true;
505
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000506 // Return instructions are only valid if the region is the top level region.
507 if (isa<ReturnInst>(TI) && !CurRegion.getExit() && TI->getNumOperands() == 0)
508 return true;
509
510 Value *Condition = getConditionFromTerminator(TI);
511
512 if (!Condition)
513 return invalid<ReportInvalidTerminator>(Context, /*Assert=*/true, &BB);
514
515 // UndefValue is not allowed as condition.
516 if (isa<UndefValue>(Condition))
517 return invalid<ReportUndefCond>(Context, /*Assert=*/true, TI, &BB);
518
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000519 if (BranchInst *BI = dyn_cast<BranchInst>(TI))
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000520 return isValidBranch(BB, BI, Condition, IsLoopBranch, Context);
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000521
522 SwitchInst *SI = dyn_cast<SwitchInst>(TI);
523 assert(SI && "Terminator was neither branch nor switch");
524
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000525 return isValidSwitch(BB, SI, Condition, IsLoopBranch, Context);
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000526}
527
Johannes Doerfertcea61932016-02-21 19:13:19 +0000528bool ScopDetection::isValidCallInst(CallInst &CI,
529 DetectionContext &Context) const {
Johannes Doerfert3f500fa2015-01-25 18:07:30 +0000530 if (CI.doesNotReturn())
Tobias Grosser75805372011-04-29 06:27:02 +0000531 return false;
532
533 if (CI.doesNotAccessMemory())
534 return true;
535
Johannes Doerfertcea61932016-02-21 19:13:19 +0000536 if (auto *II = dyn_cast<IntrinsicInst>(&CI))
Johannes Doerferta7920982016-02-25 14:08:48 +0000537 if (isValidIntrinsicInst(*II, Context))
538 return true;
Johannes Doerfertcea61932016-02-21 19:13:19 +0000539
Tobias Grosser75805372011-04-29 06:27:02 +0000540 Function *CalledFunction = CI.getCalledFunction();
541
542 // Indirect calls are not supported.
Tobias Grosser8dd653d2016-06-22 16:22:00 +0000543 if (CalledFunction == nullptr)
Tobias Grosser75805372011-04-29 06:27:02 +0000544 return false;
545
Tobias Grosser898a6362016-03-23 06:40:15 +0000546 if (AllowModrefCall) {
547 switch (AA->getModRefBehavior(CalledFunction)) {
Tobias Grosserb94e9b32016-11-21 09:04:45 +0000548 case FMRB_UnknownModRefBehavior:
Tobias Grosser898a6362016-03-23 06:40:15 +0000549 return false;
Tobias Grosserb94e9b32016-11-21 09:04:45 +0000550 case FMRB_DoesNotAccessMemory:
551 case FMRB_OnlyReadsMemory:
Johannes Doerferta7920982016-02-25 14:08:48 +0000552 // Implicitly disable delinearization since we have an unknown
553 // accesses with an unknown access function.
554 Context.HasUnknownAccess = true;
Tobias Grosser898a6362016-03-23 06:40:15 +0000555 Context.AST.add(&CI);
556 return true;
Tobias Grosserb94e9b32016-11-21 09:04:45 +0000557 case FMRB_OnlyReadsArgumentPointees:
558 case FMRB_OnlyAccessesArgumentPointees:
Tobias Grosser898a6362016-03-23 06:40:15 +0000559 for (const auto &Arg : CI.arg_operands()) {
560 if (!Arg->getType()->isPointerTy())
561 continue;
Johannes Doerferta7920982016-02-25 14:08:48 +0000562
Tobias Grosser898a6362016-03-23 06:40:15 +0000563 // Bail if a pointer argument has a base address not known to
564 // ScalarEvolution. Note that a zero pointer is acceptable.
565 auto *ArgSCEV = SE->getSCEVAtScope(Arg, LI->getLoopFor(CI.getParent()));
566 if (ArgSCEV->isZero())
567 continue;
568
569 auto *BP = dyn_cast<SCEVUnknown>(SE->getPointerBase(ArgSCEV));
570 if (!BP)
571 return false;
572
573 // Implicitly disable delinearization since we have an unknown
574 // accesses with an unknown access function.
575 Context.HasUnknownAccess = true;
576 }
577
578 Context.AST.add(&CI);
579 return true;
Weiming Zhao7614e172016-07-11 18:27:52 +0000580 case FMRB_DoesNotReadMemory:
Tobias Grosser70d27092016-11-13 19:27:24 +0000581 case FMRB_OnlyAccessesInaccessibleMem:
582 case FMRB_OnlyAccessesInaccessibleOrArgMem:
Weiming Zhao7614e172016-07-11 18:27:52 +0000583 return false;
Tobias Grosser898a6362016-03-23 06:40:15 +0000584 }
Johannes Doerferta7920982016-02-25 14:08:48 +0000585 }
586
Johannes Doerfertcea61932016-02-21 19:13:19 +0000587 return false;
588}
589
590bool ScopDetection::isValidIntrinsicInst(IntrinsicInst &II,
591 DetectionContext &Context) const {
592 if (isIgnoredIntrinsic(&II))
Tobias Grosser9c0ffe32015-08-30 16:57:15 +0000593 return true;
Johannes Doerfert3f500fa2015-01-25 18:07:30 +0000594
Johannes Doerfertcea61932016-02-21 19:13:19 +0000595 // The closest loop surrounding the call instruction.
596 Loop *L = LI->getLoopFor(II.getParent());
597
598 // The access function and base pointer for memory intrinsics.
599 const SCEV *AF;
600 const SCEVUnknown *BP;
601
602 switch (II.getIntrinsicID()) {
603 // Memory intrinsics that can be represented are supported.
604 case llvm::Intrinsic::memmove:
605 case llvm::Intrinsic::memcpy:
606 AF = SE->getSCEVAtScope(cast<MemTransferInst>(II).getSource(), L);
Johannes Doerfert733ea342016-03-24 13:50:04 +0000607 if (!AF->isZero()) {
608 BP = dyn_cast<SCEVUnknown>(SE->getPointerBase(AF));
609 // Bail if the source pointer is not valid.
610 if (!isValidAccess(&II, AF, BP, Context))
611 return false;
612 }
Johannes Doerfertcea61932016-02-21 19:13:19 +0000613 // Fall through
614 case llvm::Intrinsic::memset:
615 AF = SE->getSCEVAtScope(cast<MemIntrinsic>(II).getDest(), L);
Johannes Doerfert733ea342016-03-24 13:50:04 +0000616 if (!AF->isZero()) {
617 BP = dyn_cast<SCEVUnknown>(SE->getPointerBase(AF));
618 // Bail if the destination pointer is not valid.
619 if (!isValidAccess(&II, AF, BP, Context))
620 return false;
621 }
Johannes Doerfertcea61932016-02-21 19:13:19 +0000622
623 // Bail if the length is not affine.
Michael Kruse09eb4452016-03-03 22:10:47 +0000624 if (!isAffine(SE->getSCEVAtScope(cast<MemIntrinsic>(II).getLength(), L), L,
Johannes Doerfertcea61932016-02-21 19:13:19 +0000625 Context))
626 return false;
627
628 return true;
629 default:
630 break;
631 }
632
Tobias Grosser75805372011-04-29 06:27:02 +0000633 return false;
634}
635
Tobias Grosser458fb782014-01-28 12:58:58 +0000636bool ScopDetection::isInvariant(const Value &Val, const Region &Reg) const {
637 // A reference to function argument or constant value is invariant.
638 if (isa<Argument>(Val) || isa<Constant>(Val))
639 return true;
640
641 const Instruction *I = dyn_cast<Instruction>(&Val);
642 if (!I)
643 return false;
644
645 if (!Reg.contains(I))
646 return true;
647
648 if (I->mayHaveSideEffects())
649 return false;
650
Johannes Doerfertfbb63b82016-04-09 21:57:13 +0000651 if (isa<SelectInst>(I))
652 return false;
653
Tobias Grosser458fb782014-01-28 12:58:58 +0000654 // When Val is a Phi node, it is likely not invariant. We do not check whether
655 // Phi nodes are actually invariant, we assume that Phi nodes are usually not
Johannes Doerfert13d5d5b2016-03-24 13:16:49 +0000656 // invariant.
Tobias Grosser458fb782014-01-28 12:58:58 +0000657 if (isa<PHINode>(*I))
658 return false;
659
Tobias Grosser26108892014-04-02 20:18:19 +0000660 for (const Use &Operand : I->operands())
Tobias Grosser1d191902014-03-03 13:13:55 +0000661 if (!isInvariant(*Operand, Reg))
Tobias Grosser458fb782014-01-28 12:58:58 +0000662 return false;
Tobias Grosser458fb782014-01-28 12:58:58 +0000663
Tobias Grosser458fb782014-01-28 12:58:58 +0000664 return true;
665}
666
Tobias Grosserc80d6972016-09-02 06:33:33 +0000667/// Remove smax of smax(0, size) expressions from a SCEV expression and
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000668/// register the '...' components.
669///
670/// Array access expressions as they are generated by gfortran contain smax(0,
671/// size) expressions that confuse the 'normal' delinearization algorithm.
672/// However, if we extract such expressions before the normal delinearization
673/// takes place they can actually help to identify array size expressions in
674/// fortran accesses. For the subsequently following delinearization the smax(0,
675/// size) component can be replaced by just 'size'. This is correct as we will
676/// always add and verify the assumption that for all subscript expressions
677/// 'exp' the inequality 0 <= exp < size holds. Hence, we will also verify
678/// that 0 <= size, which means smax(0, size) == size.
Tobias Grosserebb626e2016-10-29 06:19:34 +0000679class SCEVRemoveMax : public SCEVRewriteVisitor<SCEVRemoveMax> {
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000680public:
Tobias Grosserebb626e2016-10-29 06:19:34 +0000681 static const SCEV *rewrite(const SCEV *Scev, ScalarEvolution &SE,
682 std::vector<const SCEV *> *Terms = nullptr) {
683 SCEVRemoveMax Rewriter(SE, Terms);
684 return Rewriter.visit(Scev);
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000685 }
686
687 SCEVRemoveMax(ScalarEvolution &SE, std::vector<const SCEV *> *Terms)
Tobias Grosserebb626e2016-10-29 06:19:34 +0000688 : SCEVRewriteVisitor(SE), Terms(Terms) {}
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000689
690 const SCEV *visitSMaxExpr(const SCEVSMaxExpr *Expr) {
Michael Kruse8fc28962015-12-20 14:42:32 +0000691 if ((Expr->getNumOperands() == 2) && Expr->getOperand(0)->isZero()) {
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000692 auto Res = visit(Expr->getOperand(1));
693 if (Terms)
694 (*Terms).push_back(Res);
695 return Res;
696 }
697
698 return Expr;
699 }
700
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000701private:
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000702 std::vector<const SCEV *> *Terms;
703};
704
Tobias Grosserd68ba422015-11-24 05:00:36 +0000705SmallVector<const SCEV *, 4>
706ScopDetection::getDelinearizationTerms(DetectionContext &Context,
707 const SCEVUnknown *BasePointer) const {
708 SmallVector<const SCEV *, 4> Terms;
709 for (const auto &Pair : Context.Accesses[BasePointer]) {
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000710 std::vector<const SCEV *> MaxTerms;
Tobias Grosserebb626e2016-10-29 06:19:34 +0000711 SCEVRemoveMax::rewrite(Pair.second, *SE, &MaxTerms);
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000712 if (MaxTerms.size() > 0) {
713 Terms.insert(Terms.begin(), MaxTerms.begin(), MaxTerms.end());
714 continue;
715 }
Tobias Grosserd68ba422015-11-24 05:00:36 +0000716 // In case the outermost expression is a plain add, we check if any of its
717 // terms has the form 4 * %inst * %param * %param ..., aka a term that
718 // contains a product between a parameter and an instruction that is
719 // inside the scop. Such instructions, if allowed at all, are instructions
720 // SCEV can not represent, but Polly is still looking through. As a
721 // result, these instructions can depend on induction variables and are
722 // most likely no array sizes. However, terms that are multiplied with
723 // them are likely candidates for array sizes.
724 if (auto *AF = dyn_cast<SCEVAddExpr>(Pair.second)) {
725 for (auto Op : AF->operands()) {
726 if (auto *AF2 = dyn_cast<SCEVAddRecExpr>(Op))
727 SE->collectParametricTerms(AF2, Terms);
728 if (auto *AF2 = dyn_cast<SCEVMulExpr>(Op)) {
729 SmallVector<const SCEV *, 0> Operands;
Johannes Doerfertfb79a962015-02-23 14:18:28 +0000730
Tobias Grosserd68ba422015-11-24 05:00:36 +0000731 for (auto *MulOp : AF2->operands()) {
732 if (auto *Const = dyn_cast<SCEVConstant>(MulOp))
733 Operands.push_back(Const);
734 if (auto *Unknown = dyn_cast<SCEVUnknown>(MulOp)) {
735 if (auto *Inst = dyn_cast<Instruction>(Unknown->getValue())) {
736 if (!Context.CurRegion.contains(Inst))
Tobias Grosser1b13dde2015-06-29 14:44:22 +0000737 Operands.push_back(MulOp);
Tobias Grosserd68ba422015-11-24 05:00:36 +0000738
739 } else {
740 Operands.push_back(MulOp);
Tobias Grosser1b13dde2015-06-29 14:44:22 +0000741 }
742 }
Tobias Grosser1b13dde2015-06-29 14:44:22 +0000743 }
Tobias Grosserd68ba422015-11-24 05:00:36 +0000744 if (Operands.size())
745 Terms.push_back(SE->getMulExpr(Operands));
Tobias Grosser1b13dde2015-06-29 14:44:22 +0000746 }
747 }
Tobias Grosser230acc42014-09-13 14:47:55 +0000748 }
Tobias Grosserd68ba422015-11-24 05:00:36 +0000749 if (Terms.empty())
750 SE->collectParametricTerms(Pair.second, Terms);
751 }
752 return Terms;
753}
Sebastian Pope8863b82014-05-12 19:02:02 +0000754
Tobias Grosserd68ba422015-11-24 05:00:36 +0000755bool ScopDetection::hasValidArraySizes(DetectionContext &Context,
756 SmallVectorImpl<const SCEV *> &Sizes,
Michael Krusec7e0d9c2016-03-01 21:44:06 +0000757 const SCEVUnknown *BasePointer,
758 Loop *Scope) const {
Tobias Grosserd68ba422015-11-24 05:00:36 +0000759 Value *BaseValue = BasePointer->getValue();
760 Region &CurRegion = Context.CurRegion;
761 for (const SCEV *DelinearizedSize : Sizes) {
Johannes Doerfertec8a2172016-04-25 13:32:36 +0000762 if (!isAffine(DelinearizedSize, Scope, Context)) {
Tobias Grosserd68ba422015-11-24 05:00:36 +0000763 Sizes.clear();
764 break;
Tobias Grosser5528dcd2015-10-25 08:40:38 +0000765 }
Tobias Grosserd68ba422015-11-24 05:00:36 +0000766 if (auto *Unknown = dyn_cast<SCEVUnknown>(DelinearizedSize)) {
767 auto *V = dyn_cast<Value>(Unknown->getValue());
768 if (auto *Load = dyn_cast<LoadInst>(V)) {
769 if (Context.CurRegion.contains(Load) &&
Johannes Doerfert6cd59e92016-11-17 22:25:17 +0000770 isHoistableLoad(Load, CurRegion, *LI, *SE, *DT))
Tobias Grosserd68ba422015-11-24 05:00:36 +0000771 Context.RequiredILS.insert(Load);
Tobias Grosser230acc42014-09-13 14:47:55 +0000772 continue;
Tobias Grosser230acc42014-09-13 14:47:55 +0000773 }
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000774 }
Michael Krusec7e0d9c2016-03-01 21:44:06 +0000775 if (hasScalarDepsInsideRegion(DelinearizedSize, &CurRegion, Scope, false))
Tobias Grosserbfaf1ae2015-12-21 09:09:39 +0000776 return invalid<ReportNonAffineAccess>(
Tobias Grosserd68ba422015-11-24 05:00:36 +0000777 Context, /*Assert=*/true, DelinearizedSize,
778 Context.Accesses[BasePointer].front().first, BaseValue);
779 }
Tobias Grosser230acc42014-09-13 14:47:55 +0000780
Tobias Grosserd68ba422015-11-24 05:00:36 +0000781 // No array shape derived.
782 if (Sizes.empty()) {
783 if (AllowNonAffine)
784 return true;
785
Tobias Grosser230acc42014-09-13 14:47:55 +0000786 for (const auto &Pair : Context.Accesses[BasePointer]) {
787 const Instruction *Insn = Pair.first;
Tobias Grosserd68ba422015-11-24 05:00:36 +0000788 const SCEV *AF = Pair.second;
Tobias Grosser230acc42014-09-13 14:47:55 +0000789
Johannes Doerfertec8a2172016-04-25 13:32:36 +0000790 if (!isAffine(AF, Scope, Context)) {
Tobias Grosserd68ba422015-11-24 05:00:36 +0000791 invalid<ReportNonAffineAccess>(Context, /*Assert=*/true, AF, Insn,
792 BaseValue);
793 if (!KeepGoing)
Tobias Grosser230acc42014-09-13 14:47:55 +0000794 return false;
795 }
796 }
Tobias Grosserd68ba422015-11-24 05:00:36 +0000797 return false;
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000798 }
Sebastian Pope8863b82014-05-12 19:02:02 +0000799 return true;
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000800}
801
Tobias Grosserd68ba422015-11-24 05:00:36 +0000802// We first store the resulting memory accesses in TempMemoryAccesses. Only
803// if the access functions for all memory accesses have been successfully
804// delinearized we continue. Otherwise, we either report a failure or, if
805// non-affine accesses are allowed, we drop the information. In case the
806// information is dropped the memory accesses need to be overapproximated
807// when translated to a polyhedral representation.
808bool ScopDetection::computeAccessFunctions(
809 DetectionContext &Context, const SCEVUnknown *BasePointer,
810 std::shared_ptr<ArrayShape> Shape) const {
811 Value *BaseValue = BasePointer->getValue();
812 bool BasePtrHasNonAffine = false;
813 MapInsnToMemAcc TempMemoryAccesses;
814 for (const auto &Pair : Context.Accesses[BasePointer]) {
815 const Instruction *Insn = Pair.first;
816 auto *AF = Pair.second;
Tobias Grosserebb626e2016-10-29 06:19:34 +0000817 AF = SCEVRemoveMax::rewrite(AF, *SE);
Tobias Grosserd68ba422015-11-24 05:00:36 +0000818 bool IsNonAffine = false;
819 TempMemoryAccesses.insert(std::make_pair(Insn, MemAcc(Insn, Shape)));
820 MemAcc *Acc = &TempMemoryAccesses.find(Insn)->second;
Michael Kruse09eb4452016-03-03 22:10:47 +0000821 auto *Scope = LI->getLoopFor(Insn->getParent());
Tobias Grosserd68ba422015-11-24 05:00:36 +0000822
823 if (!AF) {
Johannes Doerfertec8a2172016-04-25 13:32:36 +0000824 if (isAffine(Pair.second, Scope, Context))
Tobias Grosserd68ba422015-11-24 05:00:36 +0000825 Acc->DelinearizedSubscripts.push_back(Pair.second);
826 else
827 IsNonAffine = true;
828 } else {
829 SE->computeAccessFunctions(AF, Acc->DelinearizedSubscripts,
830 Shape->DelinearizedSizes);
831 if (Acc->DelinearizedSubscripts.size() == 0)
832 IsNonAffine = true;
833 for (const SCEV *S : Acc->DelinearizedSubscripts)
Johannes Doerfertec8a2172016-04-25 13:32:36 +0000834 if (!isAffine(S, Scope, Context))
Tobias Grosserd68ba422015-11-24 05:00:36 +0000835 IsNonAffine = true;
836 }
837
838 // (Possibly) report non affine access
839 if (IsNonAffine) {
840 BasePtrHasNonAffine = true;
841 if (!AllowNonAffine)
842 invalid<ReportNonAffineAccess>(Context, /*Assert=*/true, Pair.second,
843 Insn, BaseValue);
844 if (!KeepGoing && !AllowNonAffine)
845 return false;
846 }
847 }
848
849 if (!BasePtrHasNonAffine)
Hongbin Zheng22623202016-02-15 00:20:58 +0000850 Context.InsnToMemAcc.insert(TempMemoryAccesses.begin(),
851 TempMemoryAccesses.end());
Tobias Grosserd68ba422015-11-24 05:00:36 +0000852
853 return true;
854}
855
Michael Krusec7e0d9c2016-03-01 21:44:06 +0000856bool ScopDetection::hasBaseAffineAccesses(DetectionContext &Context,
857 const SCEVUnknown *BasePointer,
858 Loop *Scope) const {
Tobias Grosserd68ba422015-11-24 05:00:36 +0000859 auto Shape = std::shared_ptr<ArrayShape>(new ArrayShape(BasePointer));
860
861 auto Terms = getDelinearizationTerms(Context, BasePointer);
862
863 SE->findArrayDimensions(Terms, Shape->DelinearizedSizes,
864 Context.ElementSize[BasePointer]);
865
Michael Krusec7e0d9c2016-03-01 21:44:06 +0000866 if (!hasValidArraySizes(Context, Shape->DelinearizedSizes, BasePointer,
867 Scope))
Tobias Grosserd68ba422015-11-24 05:00:36 +0000868 return false;
869
870 return computeAccessFunctions(Context, BasePointer, Shape);
871}
872
873bool ScopDetection::hasAffineMemoryAccesses(DetectionContext &Context) const {
Johannes Doerferta7920982016-02-25 14:08:48 +0000874 // TODO: If we have an unknown access and other non-affine accesses we do
875 // not try to delinearize them for now.
876 if (Context.HasUnknownAccess && !Context.NonAffineAccesses.empty())
877 return AllowNonAffine;
878
Michael Krusec7e0d9c2016-03-01 21:44:06 +0000879 for (auto &Pair : Context.NonAffineAccesses) {
880 auto *BasePointer = Pair.first;
881 auto *Scope = Pair.second;
882 if (!hasBaseAffineAccesses(Context, BasePointer, Scope)) {
Tobias Grosserd68ba422015-11-24 05:00:36 +0000883 if (KeepGoing)
884 continue;
885 else
886 return false;
887 }
Michael Krusec7e0d9c2016-03-01 21:44:06 +0000888 }
Tobias Grosserd68ba422015-11-24 05:00:36 +0000889 return true;
890}
891
Johannes Doerfertcea61932016-02-21 19:13:19 +0000892bool ScopDetection::isValidAccess(Instruction *Inst, const SCEV *AF,
893 const SCEVUnknown *BP,
894 DetectionContext &Context) const {
Johannes Doerfertfb79a962015-02-23 14:18:28 +0000895
Johannes Doerfertcea61932016-02-21 19:13:19 +0000896 if (!BP)
Michael Kruse70131d32016-01-27 17:09:17 +0000897 return invalid<ReportNoBasePtr>(Context, /*Assert=*/true, Inst);
Tobias Grosserb8710b52011-11-10 12:44:50 +0000898
Johannes Doerfertcea61932016-02-21 19:13:19 +0000899 auto *BV = BP->getValue();
900 if (isa<UndefValue>(BV))
Michael Kruse70131d32016-01-27 17:09:17 +0000901 return invalid<ReportUndefBasePtr>(Context, /*Assert=*/true, Inst);
Tobias Grosserb8710b52011-11-10 12:44:50 +0000902
Johannes Doerfertcea61932016-02-21 19:13:19 +0000903 // FIXME: Think about allowing IntToPtrInst
904 if (IntToPtrInst *Inst = dyn_cast<IntToPtrInst>(BV))
905 return invalid<ReportIntToPtr>(Context, /*Assert=*/true, Inst);
906
Tobias Grosser458fb782014-01-28 12:58:58 +0000907 // Check that the base address of the access is invariant in the current
908 // region.
Johannes Doerfertcea61932016-02-21 19:13:19 +0000909 if (!isInvariant(*BV, Context.CurRegion))
910 return invalid<ReportVariantBasePtr>(Context, /*Assert=*/true, BV, Inst);
Tobias Grosser458fb782014-01-28 12:58:58 +0000911
Johannes Doerfertcea61932016-02-21 19:13:19 +0000912 AF = SE->getMinusSCEV(AF, BP);
Tobias Grosserb8710b52011-11-10 12:44:50 +0000913
Johannes Doerfertcea61932016-02-21 19:13:19 +0000914 const SCEV *Size;
915 if (!isa<MemIntrinsic>(Inst)) {
916 Size = SE->getElementSize(Inst);
Tobias Grosser8ebdc2d2016-02-07 08:48:57 +0000917 } else {
Johannes Doerfertcea61932016-02-21 19:13:19 +0000918 auto *SizeTy =
919 SE->getEffectiveSCEVType(PointerType::getInt8PtrTy(SE->getContext()));
920 Size = SE->getConstant(SizeTy, 8);
Tobias Grosser8ebdc2d2016-02-07 08:48:57 +0000921 }
Tobias Grosserbcd4eff2014-09-13 14:47:40 +0000922
Johannes Doerfertcea61932016-02-21 19:13:19 +0000923 if (Context.ElementSize[BP]) {
924 if (!AllowDifferentTypes && Context.ElementSize[BP] != Size)
925 return invalid<ReportDifferentArrayElementSize>(Context, /*Assert=*/true,
926 Inst, BV);
927
928 Context.ElementSize[BP] = SE->getSMinExpr(Size, Context.ElementSize[BP]);
929 } else {
930 Context.ElementSize[BP] = Size;
931 }
932
933 bool IsVariantInNonAffineLoop = false;
Johannes Doerfertf3e98f42015-04-12 22:52:20 +0000934 SetVector<const Loop *> Loops;
Johannes Doerfertcea61932016-02-21 19:13:19 +0000935 findLoops(AF, Loops);
Johannes Doerfertf3e98f42015-04-12 22:52:20 +0000936 for (const Loop *L : Loops)
937 if (Context.BoxedLoopsSet.count(L))
Johannes Doerfertcea61932016-02-21 19:13:19 +0000938 IsVariantInNonAffineLoop = true;
Johannes Doerfertf3e98f42015-04-12 22:52:20 +0000939
Michael Kruse09eb4452016-03-03 22:10:47 +0000940 auto *Scope = LI->getLoopFor(Inst->getParent());
Johannes Doerfertec8a2172016-04-25 13:32:36 +0000941 bool IsAffine = !IsVariantInNonAffineLoop && isAffine(AF, Scope, Context);
Johannes Doerfertcea61932016-02-21 19:13:19 +0000942 // Do not try to delinearize memory intrinsics and force them to be affine.
943 if (isa<MemIntrinsic>(Inst) && !IsAffine) {
944 return invalid<ReportNonAffineAccess>(Context, /*Assert=*/true, AF, Inst,
945 BV);
946 } else if (PollyDelinearize && !IsVariantInNonAffineLoop) {
947 Context.Accesses[BP].push_back({Inst, AF});
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000948
Johannes Doerfertcea61932016-02-21 19:13:19 +0000949 if (!IsAffine)
Michael Krusec7e0d9c2016-03-01 21:44:06 +0000950 Context.NonAffineAccesses.insert(
951 std::make_pair(BP, LI->getLoopFor(Inst->getParent())));
Johannes Doerfertcea61932016-02-21 19:13:19 +0000952 } else if (!AllowNonAffine && !IsAffine) {
953 return invalid<ReportNonAffineAccess>(Context, /*Assert=*/true, AF, Inst,
954 BV);
Sebastian Pop18016682014-04-08 21:20:44 +0000955 }
Tobias Grosser75805372011-04-29 06:27:02 +0000956
Tobias Grosser1eedb672014-09-24 21:04:29 +0000957 if (IgnoreAliasing)
Sebastian Pop8c2d7532013-07-03 22:50:36 +0000958 return true;
Tobias Grosserfff5adc2011-11-10 13:21:43 +0000959
Sebastian Pop8c2d7532013-07-03 22:50:36 +0000960 // Check if the base pointer of the memory access does alias with
961 // any other pointer. This cannot be handled at the moment.
Benjamin Kramerae81abf2014-10-05 11:58:57 +0000962 AAMDNodes AATags;
Johannes Doerfertcea61932016-02-21 19:13:19 +0000963 Inst->getAAMetadata(AATags);
Benjamin Kramerae81abf2014-10-05 11:58:57 +0000964 AliasSet &AS = Context.AST.getAliasSetForPointer(
Johannes Doerfertcea61932016-02-21 19:13:19 +0000965 BP->getValue(), MemoryLocation::UnknownSize, AATags);
Tobias Grosser428b3e42013-02-04 15:46:25 +0000966
Tobias Grosser1eedb672014-09-24 21:04:29 +0000967 if (!AS.isMustAlias()) {
968 if (PollyUseRuntimeAliasChecks) {
969 bool CanBuildRunTimeCheck = true;
970 // The run-time alias check places code that involves the base pointer at
971 // the beginning of the SCoP. This breaks if the base pointer is defined
972 // inside the scop. Hence, we can only create a run-time check if we are
973 // sure the base pointer is not an instruction defined inside the scop.
Johannes Doerfert09e36972015-10-07 20:17:36 +0000974 // However, we can ignore loads that will be hoisted.
Tobias Grosser1eedb672014-09-24 21:04:29 +0000975 for (const auto &Ptr : AS) {
976 Instruction *Inst = dyn_cast<Instruction>(Ptr.getValue());
Johannes Doerfertcea61932016-02-21 19:13:19 +0000977 if (Inst && Context.CurRegion.contains(Inst)) {
Johannes Doerfert09e36972015-10-07 20:17:36 +0000978 auto *Load = dyn_cast<LoadInst>(Inst);
Johannes Doerfert6cd59e92016-11-17 22:25:17 +0000979 if (Load && isHoistableLoad(Load, Context.CurRegion, *LI, *SE, *DT)) {
Johannes Doerfert09e36972015-10-07 20:17:36 +0000980 Context.RequiredILS.insert(Load);
981 continue;
982 }
983
Tobias Grosser1eedb672014-09-24 21:04:29 +0000984 CanBuildRunTimeCheck = false;
985 break;
986 }
987 }
988
989 if (CanBuildRunTimeCheck)
990 return true;
991 }
Michael Kruse70131d32016-01-27 17:09:17 +0000992 return invalid<ReportAlias>(Context, /*Assert=*/true, Inst, AS);
Tobias Grosser1eedb672014-09-24 21:04:29 +0000993 }
Tobias Grosser75805372011-04-29 06:27:02 +0000994
995 return true;
996}
997
Johannes Doerfertcea61932016-02-21 19:13:19 +0000998bool ScopDetection::isValidMemoryAccess(MemAccInst Inst,
999 DetectionContext &Context) const {
1000 Value *Ptr = Inst.getPointerOperand();
Hongbin Zhengf3d66122016-02-26 09:47:11 +00001001 Loop *L = LI->getLoopFor(Inst->getParent());
Johannes Doerfertcea61932016-02-21 19:13:19 +00001002 const SCEV *AccessFunction = SE->getSCEVAtScope(Ptr, L);
1003 const SCEVUnknown *BasePointer;
1004
1005 BasePointer = dyn_cast<SCEVUnknown>(SE->getPointerBase(AccessFunction));
1006
1007 return isValidAccess(Inst, AccessFunction, BasePointer, Context);
1008}
1009
Tobias Grosser75805372011-04-29 06:27:02 +00001010bool ScopDetection::isValidInstruction(Instruction &Inst,
1011 DetectionContext &Context) const {
Tobias Grosserb12b0062015-11-11 12:44:18 +00001012 for (auto &Op : Inst.operands()) {
1013 auto *OpInst = dyn_cast<Instruction>(&Op);
1014
1015 if (!OpInst)
1016 continue;
1017
1018 if (isErrorBlock(*OpInst->getParent(), Context.CurRegion, *LI, *DT))
1019 return false;
1020 }
1021
Johannes Doerfert81c41b92016-04-09 21:55:58 +00001022 if (isa<LandingPadInst>(&Inst) || isa<ResumeInst>(&Inst))
1023 return false;
1024
Tobias Grosser75805372011-04-29 06:27:02 +00001025 // We only check the call instruction but not invoke instruction.
1026 if (CallInst *CI = dyn_cast<CallInst>(&Inst)) {
Johannes Doerfertcea61932016-02-21 19:13:19 +00001027 if (isValidCallInst(*CI, Context))
Tobias Grosser75805372011-04-29 06:27:02 +00001028 return true;
1029
Andreas Simbuerger01a37a02014-04-02 11:54:01 +00001030 return invalid<ReportFuncCall>(Context, /*Assert=*/true, &Inst);
Tobias Grosser75805372011-04-29 06:27:02 +00001031 }
1032
Tobias Grosser1f0236d2016-11-21 09:07:30 +00001033 if (!Inst.mayReadOrWriteMemory()) {
Tobias Grosser5b1a7f22013-07-22 03:50:33 +00001034 if (!isa<AllocaInst>(Inst))
1035 return true;
Tobias Grosser75805372011-04-29 06:27:02 +00001036
Andreas Simbuerger01a37a02014-04-02 11:54:01 +00001037 return invalid<ReportAlloca>(Context, /*Assert=*/true, &Inst);
Tobias Grosser75805372011-04-29 06:27:02 +00001038 }
1039
1040 // Check the access function.
Michael Kruse70131d32016-01-27 17:09:17 +00001041 if (auto MemInst = MemAccInst::dyn_cast(Inst)) {
Hongbin Zheng8efb22e2016-02-27 01:49:58 +00001042 Context.hasStores |= isa<StoreInst>(MemInst);
1043 Context.hasLoads |= isa<LoadInst>(MemInst);
Michael Kruse70131d32016-01-27 17:09:17 +00001044 if (!MemInst.isSimple())
1045 return invalid<ReportNonSimpleMemoryAccess>(Context, /*Assert=*/true,
1046 &Inst);
Tobias Grosserbf45e742015-10-25 13:48:40 +00001047
Michael Kruse70131d32016-01-27 17:09:17 +00001048 return isValidMemoryAccess(MemInst, Context);
Tobias Grosserd1e33e72015-02-19 05:31:07 +00001049 }
Tobias Grosser75805372011-04-29 06:27:02 +00001050
1051 // We do not know this instruction, therefore we assume it is invalid.
Andreas Simbuerger01a37a02014-04-02 11:54:01 +00001052 return invalid<ReportUnknownInst>(Context, /*Assert=*/true, &Inst);
Tobias Grosser75805372011-04-29 06:27:02 +00001053}
1054
Tobias Grosser349d1c32016-09-20 17:05:22 +00001055/// Check whether @p L has exiting blocks.
1056///
1057/// @param L The loop of interest
1058///
1059/// @return True if the loop has exiting blocks, false otherwise.
1060static bool hasExitingBlocks(Loop *L) {
1061 SmallVector<BasicBlock *, 4> ExitingBlocks;
1062 L->getExitingBlocks(ExitingBlocks);
1063 return !ExitingBlocks.empty();
1064}
1065
Johannes Doerfertd020b772015-08-27 06:53:52 +00001066bool ScopDetection::canUseISLTripCount(Loop *L,
1067 DetectionContext &Context) const {
Johannes Doerfert30ffb6f2015-10-04 14:53:18 +00001068 // Ensure the loop has valid exiting blocks as well as latches, otherwise we
1069 // need to overapproximate it as a boxed loop.
1070 SmallVector<BasicBlock *, 4> LoopControlBlocks;
Tobias Grosser151ae322016-04-03 19:36:52 +00001071 L->getExitingBlocks(LoopControlBlocks);
Johannes Doerfertd5edbd62016-04-03 23:09:06 +00001072 L->getLoopLatches(LoopControlBlocks);
Johannes Doerfert30ffb6f2015-10-04 14:53:18 +00001073 for (BasicBlock *ControlBB : LoopControlBlocks) {
Tobias Grosserb76cd3c2015-11-11 08:42:20 +00001074 if (!isValidCFG(*ControlBB, true, false, Context))
Johannes Doerfertd020b772015-08-27 06:53:52 +00001075 return false;
1076 }
1077
Johannes Doerfertd020b772015-08-27 06:53:52 +00001078 // We can use ISL to compute the trip count of L.
1079 return true;
1080}
1081
Tobias Grosser75805372011-04-29 06:27:02 +00001082bool ScopDetection::isValidLoop(Loop *L, DetectionContext &Context) const {
Tobias Grosser349d1c32016-09-20 17:05:22 +00001083 // Loops that contain part but not all of the blocks of a region cannot be
1084 // handled by the schedule generation. Such loop constructs can happen
1085 // because a region can contain BBs that have no path to the exit block
1086 // (Infinite loops, UnreachableInst), but such blocks are never part of a
1087 // loop.
1088 //
1089 // _______________
1090 // | Loop Header | <-----------.
1091 // --------------- |
1092 // | |
1093 // _______________ ______________
1094 // | RegionEntry |-----> | RegionExit |----->
1095 // --------------- --------------
1096 // |
1097 // _______________
1098 // | EndlessLoop | <--.
1099 // --------------- |
1100 // | |
1101 // \------------/
1102 //
1103 // In the example above, the loop (LoopHeader,RegionEntry,RegionExit) is
1104 // neither entirely contained in the region RegionEntry->RegionExit
1105 // (containing RegionEntry,EndlessLoop) nor is the region entirely contained
1106 // in the loop.
1107 // The block EndlessLoop is contained in the region because Region::contains
1108 // tests whether it is not dominated by RegionExit. This is probably to not
1109 // having to query the PostdominatorTree. Instead of an endless loop, a dead
1110 // end can also be formed by an UnreachableInst. This case is already caught
1111 // by isErrorBlock(). We hence only have to reject endless loops here.
1112 if (!hasExitingBlocks(L))
1113 return invalid<ReportLoopHasNoExit>(Context, /*Assert=*/true, L);
1114
Johannes Doerfertf61df692015-10-04 14:56:08 +00001115 if (canUseISLTripCount(L, Context))
Johannes Doerfertba65c162015-02-24 11:45:21 +00001116 return true;
Johannes Doerfertf3e98f42015-04-12 22:52:20 +00001117
Johannes Doerfertb68cffb2015-09-10 15:27:46 +00001118 if (AllowNonAffineSubLoops && AllowNonAffineSubRegions) {
Johannes Doerfertf3e98f42015-04-12 22:52:20 +00001119 Region *R = RI->getRegionFor(L->getHeader());
Johannes Doerfert757a32b2015-10-04 14:54:27 +00001120 while (R != &Context.CurRegion && !R->contains(L))
1121 R = R->getParent();
1122
1123 if (addOverApproximatedRegion(R, Context))
1124 return true;
Johannes Doerfertf3e98f42015-04-12 22:52:20 +00001125 }
Tobias Grosser75805372011-04-29 06:27:02 +00001126
Johannes Doerfertb68cffb2015-09-10 15:27:46 +00001127 const SCEV *LoopCount = SE->getBackedgeTakenCount(L);
Johannes Doerfertba65c162015-02-24 11:45:21 +00001128 return invalid<ReportLoopBound>(Context, /*Assert=*/true, L, LoopCount);
Tobias Grosser75805372011-04-29 06:27:02 +00001129}
1130
Tobias Grosserc80d6972016-09-02 06:33:33 +00001131/// Return the number of loops in @p L (incl. @p L) that have a trip
Tobias Grosserb45ae562016-11-26 07:37:46 +00001132/// count that is not known to be less than @MinProfitableTrips.
1133ScopDetection::LoopStats
1134ScopDetection::countBeneficialSubLoops(Loop *L, ScalarEvolution &SE,
1135 unsigned MinProfitableTrips) const {
Johannes Doerfert7175bdf2015-09-20 14:56:54 +00001136 auto *TripCount = SE.getBackedgeTakenCount(L);
1137
Tobias Grosserb45ae562016-11-26 07:37:46 +00001138 int NumLoops = 1;
1139 int MaxLoopDepth = 1;
Johannes Doerfert7175bdf2015-09-20 14:56:54 +00001140 if (auto *TripCountC = dyn_cast<SCEVConstant>(TripCount))
Johannes Doerfertf61df692015-10-04 14:56:08 +00001141 if (TripCountC->getType()->getScalarSizeInBits() <= 64)
Tobias Grosserb45ae562016-11-26 07:37:46 +00001142 if (TripCountC->getValue()->getZExtValue() <= MinProfitableTrips)
1143 NumLoops -= 1;
Johannes Doerfert7175bdf2015-09-20 14:56:54 +00001144
Tobias Grosserb45ae562016-11-26 07:37:46 +00001145 for (auto &SubLoop : *L) {
1146 LoopStats Stats = countBeneficialSubLoops(SubLoop, SE, MinProfitableTrips);
1147 NumLoops += Stats.NumLoops;
Tobias Grosser65ce9362017-02-17 08:08:54 +00001148 MaxLoopDepth = std::max(MaxLoopDepth, Stats.MaxDepth + 1);
Tobias Grosserb45ae562016-11-26 07:37:46 +00001149 }
Johannes Doerfert7175bdf2015-09-20 14:56:54 +00001150
Tobias Grosserb45ae562016-11-26 07:37:46 +00001151 return {NumLoops, MaxLoopDepth};
Johannes Doerfert7175bdf2015-09-20 14:56:54 +00001152}
1153
Tobias Grosserb45ae562016-11-26 07:37:46 +00001154ScopDetection::LoopStats
1155ScopDetection::countBeneficialLoops(Region *R,
1156 unsigned MinProfitableTrips) const {
Johannes Doerfertf61df692015-10-04 14:56:08 +00001157 int LoopNum = 0;
Tobias Grosserb45ae562016-11-26 07:37:46 +00001158 int MaxLoopDepth = 0;
Tobias Grossered21a1f2015-08-27 16:55:18 +00001159
Tobias Grosser050e0cb2015-08-31 12:08:11 +00001160 auto L = LI->getLoopFor(R->getEntry());
1161 L = L ? R->outermostLoopInRegion(L) : nullptr;
1162 L = L ? L->getParentLoop() : nullptr;
Tobias Grossered21a1f2015-08-27 16:55:18 +00001163
Tobias Grosser050e0cb2015-08-31 12:08:11 +00001164 auto SubLoops =
1165 L ? L->getSubLoopsVector() : std::vector<Loop *>(LI->begin(), LI->end());
1166
1167 for (auto &SubLoop : SubLoops)
Tobias Grosserb45ae562016-11-26 07:37:46 +00001168 if (R->contains(SubLoop)) {
1169 LoopStats Stats =
1170 countBeneficialSubLoops(SubLoop, *SE, MinProfitableTrips);
1171 LoopNum += Stats.NumLoops;
1172 MaxLoopDepth = std::max(MaxLoopDepth, Stats.MaxDepth);
1173 }
Tobias Grosser050e0cb2015-08-31 12:08:11 +00001174
Tobias Grosserb45ae562016-11-26 07:37:46 +00001175 return {LoopNum, MaxLoopDepth};
Tobias Grossered21a1f2015-08-27 16:55:18 +00001176}
1177
Tobias Grosser75805372011-04-29 06:27:02 +00001178Region *ScopDetection::expandRegion(Region &R) {
Hongbin Zhenged986ab2012-04-07 15:14:28 +00001179 // Initial no valid region was found (greater than R)
Tobias Grosserd5d93ec2015-06-04 17:59:54 +00001180 std::unique_ptr<Region> LastValidRegion;
1181 auto ExpandedRegion = std::unique_ptr<Region>(R.getExpandedRegion());
Tobias Grosser75805372011-04-29 06:27:02 +00001182
1183 DEBUG(dbgs() << "\tExpanding " << R.getNameStr() << "\n");
1184
Hongbin Zhenged986ab2012-04-07 15:14:28 +00001185 while (ExpandedRegion) {
Johannes Doerfertc06b7d62015-10-07 20:46:06 +00001186 const auto &It = DetectionContextMap.insert(std::make_pair(
Johannes Doerfert6c7639b2016-05-12 18:50:01 +00001187 getBBPairForRegion(ExpandedRegion.get()),
Johannes Doerfertc06b7d62015-10-07 20:46:06 +00001188 DetectionContext(*ExpandedRegion, *AA, false /*verifying*/)));
1189 DetectionContext &Context = It.first->second;
Hongbin Zhenged986ab2012-04-07 15:14:28 +00001190 DEBUG(dbgs() << "\t\tTrying " << ExpandedRegion->getNameStr() << "\n");
Andreas Simbuergerb379edb2014-06-27 06:21:14 +00001191 // Only expand when we did not collect errors.
Tobias Grosser75805372011-04-29 06:27:02 +00001192
Johannes Doerfert717b8662015-09-08 21:44:27 +00001193 if (!Context.Log.hasErrors()) {
Hongbin Zhenged986ab2012-04-07 15:14:28 +00001194 // If the exit is valid check all blocks
1195 // - if true, a valid region was found => store it + keep expanding
1196 // - if false, .tbd. => stop (should this really end the loop?)
Johannes Doerferte46925f2015-10-01 10:59:14 +00001197 if (!allBlocksValid(Context) || Context.Log.hasErrors()) {
1198 removeCachedResults(*ExpandedRegion);
Michael Krusea6cc0d32016-08-08 22:39:32 +00001199 DetectionContextMap.erase(It.first);
Andreas Simbuergerb379edb2014-06-27 06:21:14 +00001200 break;
Johannes Doerferte46925f2015-10-01 10:59:14 +00001201 }
Andreas Simbuergerb379edb2014-06-27 06:21:14 +00001202
Tobias Grosserd7e58642013-04-10 06:55:45 +00001203 // Store this region, because it is the greatest valid (encountered so
1204 // far).
Michael Krusea6cc0d32016-08-08 22:39:32 +00001205 if (LastValidRegion) {
1206 removeCachedResults(*LastValidRegion);
1207 DetectionContextMap.erase(getBBPairForRegion(LastValidRegion.get()));
1208 }
Tobias Grosserd5d93ec2015-06-04 17:59:54 +00001209 LastValidRegion = std::move(ExpandedRegion);
Hongbin Zhenged986ab2012-04-07 15:14:28 +00001210
1211 // Create and test the next greater region (if any)
Tobias Grosserd5d93ec2015-06-04 17:59:54 +00001212 ExpandedRegion =
1213 std::unique_ptr<Region>(LastValidRegion->getExpandedRegion());
Hongbin Zhenged986ab2012-04-07 15:14:28 +00001214
1215 } else {
1216 // Create and test the next greater region (if any)
Johannes Doerfertc06b7d62015-10-07 20:46:06 +00001217 removeCachedResults(*ExpandedRegion);
Michael Krusea6cc0d32016-08-08 22:39:32 +00001218 DetectionContextMap.erase(It.first);
Tobias Grosserd5d93ec2015-06-04 17:59:54 +00001219 ExpandedRegion =
1220 std::unique_ptr<Region>(ExpandedRegion->getExpandedRegion());
Tobias Grosser75805372011-04-29 06:27:02 +00001221 }
Tobias Grosser75805372011-04-29 06:27:02 +00001222 }
1223
Tobias Grosser378a9f22013-11-16 19:34:11 +00001224 DEBUG({
1225 if (LastValidRegion)
1226 dbgs() << "\tto " << LastValidRegion->getNameStr() << "\n";
1227 else
1228 dbgs() << "\tExpanding " << R.getNameStr() << " failed\n";
1229 });
Tobias Grosser75805372011-04-29 06:27:02 +00001230
Tobias Grosserd5d93ec2015-06-04 17:59:54 +00001231 return LastValidRegion.release();
Tobias Grosser75805372011-04-29 06:27:02 +00001232}
Sebastian Pop2c9ec2e2013-06-03 16:35:37 +00001233static bool regionWithoutLoops(Region &R, LoopInfo *LI) {
Tobias Grosser26108892014-04-02 20:18:19 +00001234 for (const BasicBlock *BB : R.blocks())
Tobias Grosser1d191902014-03-03 13:13:55 +00001235 if (R.contains(LI->getLoopFor(BB)))
Sebastian Pop2c9ec2e2013-06-03 16:35:37 +00001236 return false;
1237
1238 return true;
1239}
Tobias Grosser75805372011-04-29 06:27:02 +00001240
Tobias Grosserb45ae562016-11-26 07:37:46 +00001241void ScopDetection::removeCachedResultsRecursively(const Region &R) {
David Blaikieb035f6d2014-04-15 18:45:27 +00001242 for (auto &SubRegion : R) {
Johannes Doerferte46925f2015-10-01 10:59:14 +00001243 if (ValidRegions.count(SubRegion.get())) {
1244 removeCachedResults(*SubRegion.get());
Johannes Doerferte46925f2015-10-01 10:59:14 +00001245 } else
Tobias Grosserb45ae562016-11-26 07:37:46 +00001246 removeCachedResultsRecursively(*SubRegion);
Tobias Grosser28a70c52014-01-29 19:05:30 +00001247 }
Tobias Grosser28a70c52014-01-29 19:05:30 +00001248}
1249
Johannes Doerferte46925f2015-10-01 10:59:14 +00001250void ScopDetection::removeCachedResults(const Region &R) {
1251 ValidRegions.remove(&R);
Johannes Doerferte46925f2015-10-01 10:59:14 +00001252}
1253
Tobias Grosser75805372011-04-29 06:27:02 +00001254void ScopDetection::findScops(Region &R) {
Johannes Doerfert6c7639b2016-05-12 18:50:01 +00001255 const auto &It = DetectionContextMap.insert(std::make_pair(
1256 getBBPairForRegion(&R), DetectionContext(R, *AA, false /*verifying*/)));
Johannes Doerfertc06b7d62015-10-07 20:46:06 +00001257 DetectionContext &Context = It.first->second;
Johannes Doerfert6a4d81c2015-03-08 15:11:50 +00001258
1259 bool RegionIsValid = false;
Michael Kruse0b566812016-02-29 16:54:18 +00001260 if (!PollyProcessUnprofitable && regionWithoutLoops(R, LI))
Johannes Doerfert6a4d81c2015-03-08 15:11:50 +00001261 invalid<ReportUnprofitable>(Context, /*Assert=*/true, &R);
Michael Kruse0b566812016-02-29 16:54:18 +00001262 else
Johannes Doerfert6a4d81c2015-03-08 15:11:50 +00001263 RegionIsValid = isValidRegion(Context);
1264
Johannes Doerfert3f1c2852015-02-19 18:11:50 +00001265 bool HasErrors = !RegionIsValid || Context.Log.size() > 0;
Andreas Simbuerger04472402014-05-24 09:25:10 +00001266
Johannes Doerferte46925f2015-10-01 10:59:14 +00001267 if (HasErrors) {
1268 removeCachedResults(R);
1269 } else {
Tobias Grosser75805372011-04-29 06:27:02 +00001270 ValidRegions.insert(&R);
1271 return;
1272 }
1273
David Blaikieb035f6d2014-04-15 18:45:27 +00001274 for (auto &SubRegion : R)
Tobias Grosser00dc3092014-03-02 12:02:46 +00001275 findScops(*SubRegion);
Tobias Grosser75805372011-04-29 06:27:02 +00001276
1277 // Try to expand regions.
1278 //
1279 // As the region tree normally only contains canonical regions, non canonical
1280 // regions that form a Scop are not found. Therefore, those non canonical
1281 // regions are checked by expanding the canonical ones.
1282
Tobias Grosser0d1eee32013-02-05 11:56:05 +00001283 std::vector<Region *> ToExpand;
Tobias Grosser75805372011-04-29 06:27:02 +00001284
David Blaikieb035f6d2014-04-15 18:45:27 +00001285 for (auto &SubRegion : R)
1286 ToExpand.push_back(SubRegion.get());
Tobias Grosser75805372011-04-29 06:27:02 +00001287
Tobias Grosser26108892014-04-02 20:18:19 +00001288 for (Region *CurrentRegion : ToExpand) {
Tobias Grosser75805372011-04-29 06:27:02 +00001289 // Skip invalid regions. Regions may become invalid, if they are element of
1290 // an already expanded region.
David Peixotto8da2b932014-10-22 20:39:07 +00001291 if (!ValidRegions.count(CurrentRegion))
Tobias Grosser75805372011-04-29 06:27:02 +00001292 continue;
1293
Johannes Doerfert6c7639b2016-05-12 18:50:01 +00001294 // Skip regions that had errors.
1295 bool HadErrors = lookupRejectionLog(CurrentRegion)->hasErrors();
1296 if (HadErrors)
1297 continue;
1298
Tobias Grosser75805372011-04-29 06:27:02 +00001299 Region *ExpandedR = expandRegion(*CurrentRegion);
1300
1301 if (!ExpandedR)
1302 continue;
1303
1304 R.addSubRegion(ExpandedR, true);
1305 ValidRegions.insert(ExpandedR);
Johannes Doerferte46925f2015-10-01 10:59:14 +00001306 removeCachedResults(*CurrentRegion);
Tobias Grosserb45ae562016-11-26 07:37:46 +00001307 removeCachedResultsRecursively(*ExpandedR);
Tobias Grosser75805372011-04-29 06:27:02 +00001308 }
1309}
1310
1311bool ScopDetection::allBlocksValid(DetectionContext &Context) const {
Johannes Doerfertfb79a962015-02-23 14:18:28 +00001312 Region &CurRegion = Context.CurRegion;
Tobias Grosser75805372011-04-29 06:27:02 +00001313
Johannes Doerfertfb79a962015-02-23 14:18:28 +00001314 for (const BasicBlock *BB : CurRegion.blocks()) {
Tobias Grosser1d191902014-03-03 13:13:55 +00001315 Loop *L = LI->getLoopFor(BB);
Johannes Doerfert517d8d22016-04-25 13:37:24 +00001316 if (L && L->getHeader() == BB && CurRegion.contains(L) &&
1317 (!isValidLoop(L, Context) && !KeepGoing))
Sebastian Popb88ea5e2013-06-11 22:20:32 +00001318 return false;
1319 }
1320
Johannes Doerfert90db75e2015-09-10 17:51:27 +00001321 for (BasicBlock *BB : CurRegion.blocks()) {
Tobias Grosserb76cd3c2015-11-11 08:42:20 +00001322 bool IsErrorBlock = isErrorBlock(*BB, CurRegion, *LI, *DT);
1323
1324 // Also check exception blocks (and possibly register them as non-affine
1325 // regions). Even though exception blocks are not modeled, we use them
1326 // to forward-propagate domain constraints during ScopInfo construction.
1327 if (!isValidCFG(*BB, false, IsErrorBlock, Context) && !KeepGoing)
1328 return false;
1329
1330 if (IsErrorBlock)
Johannes Doerfert90db75e2015-09-10 17:51:27 +00001331 continue;
1332
Tobias Grosser1d191902014-03-03 13:13:55 +00001333 for (BasicBlock::iterator I = BB->begin(), E = --BB->end(); I != E; ++I)
Andreas Simbuerger04472402014-05-24 09:25:10 +00001334 if (!isValidInstruction(*I, Context) && !KeepGoing)
Sebastian Pop8ca899c2013-06-14 20:20:43 +00001335 return false;
Johannes Doerfert90db75e2015-09-10 17:51:27 +00001336 }
Tobias Grosser75805372011-04-29 06:27:02 +00001337
Sebastian Pope8863b82014-05-12 19:02:02 +00001338 if (!hasAffineMemoryAccesses(Context))
Sebastian Pop46e1ecd2014-05-09 22:45:15 +00001339 return false;
1340
Tobias Grosser75805372011-04-29 06:27:02 +00001341 return true;
1342}
1343
Tobias Grosserc1a269b2015-12-21 21:00:43 +00001344bool ScopDetection::hasSufficientCompute(DetectionContext &Context,
1345 int NumLoops) const {
1346 int InstCount = 0;
1347
Tobias Grosserb316dc12016-09-08 14:08:05 +00001348 if (NumLoops == 0)
1349 return false;
1350
Tobias Grosserc1a269b2015-12-21 21:00:43 +00001351 for (auto *BB : Context.CurRegion.blocks())
1352 if (Context.CurRegion.contains(LI->getLoopFor(BB)))
Tobias Grosserc6424ae2015-12-22 17:38:59 +00001353 InstCount += BB->size();
Tobias Grosserc1a269b2015-12-21 21:00:43 +00001354
1355 InstCount = InstCount / NumLoops;
1356
1357 return InstCount >= ProfitabilityMinPerLoopInstructions;
1358}
1359
Johannes Doerfertbf9473b2016-05-10 14:42:30 +00001360bool ScopDetection::hasPossiblyDistributableLoop(
1361 DetectionContext &Context) const {
1362 for (auto *BB : Context.CurRegion.blocks()) {
1363 auto *L = LI->getLoopFor(BB);
1364 if (!Context.CurRegion.contains(L))
1365 continue;
1366 if (Context.BoxedLoopsSet.count(L))
1367 continue;
1368 unsigned StmtsWithStoresInLoops = 0;
1369 for (auto *LBB : L->blocks()) {
1370 bool MemStore = false;
1371 for (auto &I : *LBB)
1372 MemStore |= isa<StoreInst>(&I);
1373 StmtsWithStoresInLoops += MemStore;
1374 }
1375 return (StmtsWithStoresInLoops > 1);
1376 }
1377 return false;
1378}
1379
Tobias Grosser97fc5bb2015-12-21 12:14:48 +00001380bool ScopDetection::isProfitableRegion(DetectionContext &Context) const {
1381 Region &CurRegion = Context.CurRegion;
1382
1383 if (PollyProcessUnprofitable)
1384 return true;
1385
1386 // We can probably not do a lot on scops that only write or only read
1387 // data.
1388 if (!Context.hasStores || !Context.hasLoads)
1389 return invalid<ReportUnprofitable>(Context, /*Assert=*/true, &CurRegion);
1390
Tobias Grosserb45ae562016-11-26 07:37:46 +00001391 int NumLoops = countBeneficialLoops(&CurRegion, MIN_LOOP_TRIP_COUNT).NumLoops;
Tobias Grosser97fc5bb2015-12-21 12:14:48 +00001392 int NumAffineLoops = NumLoops - Context.BoxedLoopsSet.size();
Tobias Grosser97fc5bb2015-12-21 12:14:48 +00001393
Tobias Grosserc1a269b2015-12-21 21:00:43 +00001394 // Scops with at least two loops may allow either loop fusion or tiling and
1395 // are consequently interesting to look at.
1396 if (NumAffineLoops >= 2)
1397 return true;
1398
Johannes Doerfertbf9473b2016-05-10 14:42:30 +00001399 // A loop with multiple non-trivial blocks migt be amendable to distribution.
1400 if (NumAffineLoops == 1 && hasPossiblyDistributableLoop(Context))
1401 return true;
1402
Tobias Grosserc1a269b2015-12-21 21:00:43 +00001403 // Scops that contain a loop with a non-trivial amount of computation per
1404 // loop-iteration are interesting as we may be able to parallelize such
1405 // loops. Individual loops that have only a small amount of computation
1406 // per-iteration are performance-wise very fragile as any change to the
1407 // loop induction variables may affect performance. To not cause spurious
1408 // performance regressions, we do not consider such loops.
1409 if (NumAffineLoops == 1 && hasSufficientCompute(Context, NumLoops))
1410 return true;
1411
1412 return invalid<ReportUnprofitable>(Context, /*Assert=*/true, &CurRegion);
Tobias Grosser97fc5bb2015-12-21 12:14:48 +00001413}
1414
Tobias Grosser75805372011-04-29 06:27:02 +00001415bool ScopDetection::isValidRegion(DetectionContext &Context) const {
Johannes Doerfertfb79a962015-02-23 14:18:28 +00001416 Region &CurRegion = Context.CurRegion;
Tobias Grosser75805372011-04-29 06:27:02 +00001417
Johannes Doerfertfb79a962015-02-23 14:18:28 +00001418 DEBUG(dbgs() << "Checking region: " << CurRegion.getNameStr() << "\n\t");
Tobias Grosser75805372011-04-29 06:27:02 +00001419
Johannes Doerfertfb79a962015-02-23 14:18:28 +00001420 if (CurRegion.isTopLevelRegion()) {
Tobias Grosserf084edd2014-10-22 23:00:03 +00001421 DEBUG(dbgs() << "Top level region is invalid\n");
Tobias Grosser75805372011-04-29 06:27:02 +00001422 return false;
1423 }
1424
Johannes Doerfertfb79a962015-02-23 14:18:28 +00001425 if (!CurRegion.getEntry()->getName().count(OnlyRegion)) {
Tobias Grosser4449e522014-01-27 14:24:53 +00001426 DEBUG({
1427 dbgs() << "Region entry does not match -polly-region-only";
1428 dbgs() << "\n";
1429 });
1430 return false;
1431 }
1432
Tobias Grosserd654c252012-04-10 18:12:19 +00001433 // SCoP cannot contain the entry block of the function, because we need
Tobias Grosser75805372011-04-29 06:27:02 +00001434 // to insert alloca instruction there when translate scalar to array.
Johannes Doerfertfb79a962015-02-23 14:18:28 +00001435 if (CurRegion.getEntry() ==
1436 &(CurRegion.getEntry()->getParent()->getEntryBlock()))
1437 return invalid<ReportEntry>(Context, /*Assert=*/true, CurRegion.getEntry());
Tobias Grosser75805372011-04-29 06:27:02 +00001438
Hongbin Zheng94868e62012-04-07 12:29:17 +00001439 if (!allBlocksValid(Context))
Tobias Grosser75805372011-04-29 06:27:02 +00001440 return false;
1441
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001442 DebugLoc DbgLoc;
1443 if (!isReducibleRegion(CurRegion, DbgLoc))
1444 return invalid<ReportIrreducibleRegion>(Context, /*Assert=*/true,
1445 &CurRegion, DbgLoc);
1446
Tobias Grosser75805372011-04-29 06:27:02 +00001447 DEBUG(dbgs() << "OK\n");
1448 return true;
1449}
1450
Tobias Grosser629109b2016-08-03 12:00:07 +00001451void ScopDetection::markFunctionAsInvalid(Function *F) {
Johannes Doerfert43e1ead2014-07-15 21:06:48 +00001452 F->addFnAttr(PollySkipFnAttr);
1453}
1454
Tobias Grosser75805372011-04-29 06:27:02 +00001455bool ScopDetection::isValidFunction(llvm::Function &F) {
Johannes Doerfert43e1ead2014-07-15 21:06:48 +00001456 return !F.hasFnAttribute(PollySkipFnAttr);
Tobias Grosser75805372011-04-29 06:27:02 +00001457}
1458
Tobias Grosserb2863ca2013-03-04 19:49:51 +00001459void ScopDetection::printLocations(llvm::Function &F) {
Tobias Grosser26108892014-04-02 20:18:19 +00001460 for (const Region *R : *this) {
Tobias Grosser531891e2012-11-01 16:45:20 +00001461 unsigned LineEntry, LineExit;
1462 std::string FileName;
1463
Tobias Grosser00dc3092014-03-02 12:02:46 +00001464 getDebugLocation(R, LineEntry, LineExit, FileName);
Tobias Grosser8519f892013-12-18 10:49:53 +00001465 DiagnosticScopFound Diagnostic(F, FileName, LineEntry, LineExit);
1466 F.getContext().diagnose(Diagnostic);
Tobias Grosser531891e2012-11-01 16:45:20 +00001467 }
1468}
1469
Johannes Doerfert6c7639b2016-05-12 18:50:01 +00001470void ScopDetection::emitMissedRemarks(const Function &F) {
1471 for (auto &DIt : DetectionContextMap) {
1472 auto &DC = DIt.getSecond();
1473 if (DC.Log.hasErrors())
1474 emitRejectionRemarks(DIt.getFirst(), DC.Log);
Andreas Simbuerger5569bf32014-06-26 10:06:40 +00001475 }
1476}
1477
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001478bool ScopDetection::isReducibleRegion(Region &R, DebugLoc &DbgLoc) const {
Tobias Grosserc80d6972016-09-02 06:33:33 +00001479 /// Enum for coloring BBs in Region.
Tobias Grosseref6ae702016-06-11 09:00:37 +00001480 ///
1481 /// WHITE - Unvisited BB in DFS walk.
1482 /// GREY - BBs which are currently on the DFS stack for processing.
1483 /// BLACK - Visited and completely processed BB.
1484 enum Color { WHITE, GREY, BLACK };
1485
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001486 BasicBlock *REntry = R.getEntry();
1487 BasicBlock *RExit = R.getExit();
1488 // Map to match the color of a BasicBlock during the DFS walk.
1489 DenseMap<const BasicBlock *, Color> BBColorMap;
1490 // Stack keeping track of current BB and index of next child to be processed.
1491 std::stack<std::pair<BasicBlock *, unsigned>> DFSStack;
1492
1493 unsigned AdjacentBlockIndex = 0;
1494 BasicBlock *CurrBB, *SuccBB;
1495 CurrBB = REntry;
1496
1497 // Initialize the map for all BB with WHITE color.
1498 for (auto *BB : R.blocks())
Johannes Doerfert469db6a2016-05-19 12:36:43 +00001499 BBColorMap[BB] = WHITE;
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001500
1501 // Process the entry block of the Region.
Johannes Doerfert469db6a2016-05-19 12:36:43 +00001502 BBColorMap[CurrBB] = GREY;
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001503 DFSStack.push(std::make_pair(CurrBB, 0));
1504
1505 while (!DFSStack.empty()) {
1506 // Get next BB on stack to be processed.
1507 CurrBB = DFSStack.top().first;
1508 AdjacentBlockIndex = DFSStack.top().second;
1509 DFSStack.pop();
1510
1511 // Loop to iterate over the successors of current BB.
1512 const TerminatorInst *TInst = CurrBB->getTerminator();
1513 unsigned NSucc = TInst->getNumSuccessors();
1514 for (unsigned I = AdjacentBlockIndex; I < NSucc;
1515 ++I, ++AdjacentBlockIndex) {
1516 SuccBB = TInst->getSuccessor(I);
1517
1518 // Checks for region exit block and self-loops in BB.
1519 if (SuccBB == RExit || SuccBB == CurrBB)
1520 continue;
1521
1522 // WHITE indicates an unvisited BB in DFS walk.
Johannes Doerfert469db6a2016-05-19 12:36:43 +00001523 if (BBColorMap[SuccBB] == WHITE) {
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001524 // Push the current BB and the index of the next child to be visited.
1525 DFSStack.push(std::make_pair(CurrBB, I + 1));
1526 // Push the next BB to be processed.
1527 DFSStack.push(std::make_pair(SuccBB, 0));
1528 // First time the BB is being processed.
Johannes Doerfert469db6a2016-05-19 12:36:43 +00001529 BBColorMap[SuccBB] = GREY;
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001530 break;
Johannes Doerfert469db6a2016-05-19 12:36:43 +00001531 } else if (BBColorMap[SuccBB] == GREY) {
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001532 // GREY indicates a loop in the control flow.
1533 // If the destination dominates the source, it is a natural loop
1534 // else, an irreducible control flow in the region is detected.
1535 if (!DT->dominates(SuccBB, CurrBB)) {
1536 // Get debug info of instruction which causes irregular control flow.
1537 DbgLoc = TInst->getDebugLoc();
1538 return false;
1539 }
1540 }
1541 }
1542
1543 // If all children of current BB have been processed,
1544 // then mark that BB as fully processed.
1545 if (AdjacentBlockIndex == NSucc)
Johannes Doerfert469db6a2016-05-19 12:36:43 +00001546 BBColorMap[CurrBB] = BLACK;
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001547 }
1548
1549 return true;
1550}
1551
Tobias Grosserb45ae562016-11-26 07:37:46 +00001552void updateLoopCountStatistic(ScopDetection::LoopStats Stats,
1553 bool OnlyProfitable) {
1554 if (!OnlyProfitable) {
1555 NumLoopsInScop += Stats.NumLoops;
Tobias Grosser9fe37df2017-02-12 10:52:57 +00001556 MaxNumLoopsInScop =
1557 std::max(MaxNumLoopsInScop.getValue(), (unsigned)Stats.NumLoops);
Tobias Grosserb45ae562016-11-26 07:37:46 +00001558 if (Stats.MaxDepth == 1)
1559 NumScopsDepthOne++;
1560 else if (Stats.MaxDepth == 2)
1561 NumScopsDepthTwo++;
1562 else if (Stats.MaxDepth == 3)
1563 NumScopsDepthThree++;
1564 else if (Stats.MaxDepth == 4)
1565 NumScopsDepthFour++;
1566 else if (Stats.MaxDepth == 5)
1567 NumScopsDepthFive++;
1568 else
1569 NumScopsDepthLarger++;
1570 } else {
1571 NumLoopsInProfScop += Stats.NumLoops;
Tobias Grosser9fe37df2017-02-12 10:52:57 +00001572 MaxNumLoopsInProfScop =
1573 std::max(MaxNumLoopsInProfScop.getValue(), (unsigned)Stats.NumLoops);
Tobias Grosserb45ae562016-11-26 07:37:46 +00001574 if (Stats.MaxDepth == 1)
1575 NumProfScopsDepthOne++;
1576 else if (Stats.MaxDepth == 2)
1577 NumProfScopsDepthTwo++;
1578 else if (Stats.MaxDepth == 3)
1579 NumProfScopsDepthThree++;
1580 else if (Stats.MaxDepth == 4)
1581 NumProfScopsDepthFour++;
1582 else if (Stats.MaxDepth == 5)
1583 NumProfScopsDepthFive++;
1584 else
1585 NumProfScopsDepthLarger++;
1586 }
1587}
1588
Tobias Grosser75805372011-04-29 06:27:02 +00001589bool ScopDetection::runOnFunction(llvm::Function &F) {
Chandler Carruthf5579872015-01-17 14:16:56 +00001590 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Matt Arsenault8ca36812014-07-19 18:40:17 +00001591 RI = &getAnalysis<RegionInfoPass>().getRegionInfo();
Tobias Grosser575aca82015-10-06 16:10:29 +00001592 if (!PollyProcessUnprofitable && LI->empty())
Sebastian Pop8fe6d112013-05-30 17:47:32 +00001593 return false;
1594
Chandler Carruth66ef16b2015-09-09 22:13:56 +00001595 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
Tobias Grosserc5bcf242015-08-17 10:57:08 +00001596 SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
Johannes Doerfert08d90a32015-10-07 20:32:43 +00001597 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Tobias Grosser75805372011-04-29 06:27:02 +00001598 Region *TopRegion = RI->getTopLevelRegion();
1599
Tobias Grosser2ff87232011-10-23 11:17:06 +00001600 releaseMemory();
1601
Tobias Grossera3ab27e2014-05-07 11:23:32 +00001602 if (OnlyFunction != "" && !F.getName().count(OnlyFunction))
Tobias Grosser2ff87232011-10-23 11:17:06 +00001603 return false;
1604
Tobias Grosser1bb59b02012-12-29 23:47:38 +00001605 if (!isValidFunction(F))
Tobias Grosser75805372011-04-29 06:27:02 +00001606 return false;
1607
1608 findScops(*TopRegion);
Tobias Grosser531891e2012-11-01 16:45:20 +00001609
Tobias Grosserb45ae562016-11-26 07:37:46 +00001610 NumScopRegions += ValidRegions.size();
1611
Johannes Doerferte6e3c922016-05-12 20:21:50 +00001612 // Prune non-profitable regions.
1613 for (auto &DIt : DetectionContextMap) {
1614 auto &DC = DIt.getSecond();
1615 if (DC.Log.hasErrors())
1616 continue;
1617 if (!ValidRegions.count(&DC.CurRegion))
1618 continue;
Tobias Grosserb45ae562016-11-26 07:37:46 +00001619 LoopStats Stats = countBeneficialLoops(&DC.CurRegion, 0);
1620 updateLoopCountStatistic(Stats, false /* OnlyProfitable */);
1621 if (isProfitableRegion(DC)) {
1622 updateLoopCountStatistic(Stats, true /* OnlyProfitable */);
Johannes Doerferte6e3c922016-05-12 20:21:50 +00001623 continue;
Tobias Grosserb45ae562016-11-26 07:37:46 +00001624 }
Johannes Doerferte6e3c922016-05-12 20:21:50 +00001625
1626 ValidRegions.remove(&DC.CurRegion);
1627 }
1628
Tobias Grosserb45ae562016-11-26 07:37:46 +00001629 NumProfScopRegions += ValidRegions.size();
1630 NumLoopsOverall += countBeneficialLoops(TopRegion, 0).NumLoops;
1631
Andreas Simbuerger5569bf32014-06-26 10:06:40 +00001632 // Only makes sense when we tracked errors.
Johannes Doerfert6c7639b2016-05-12 18:50:01 +00001633 if (PollyTrackFailures)
1634 emitMissedRemarks(F);
Andreas Simbuerger5569bf32014-06-26 10:06:40 +00001635
Johannes Doerferta05214f2014-10-15 23:24:28 +00001636 if (ReportLevel)
Tobias Grosserb2863ca2013-03-04 19:49:51 +00001637 printLocations(F);
Tobias Grosser531891e2012-11-01 16:45:20 +00001638
Johannes Doerfert6c7639b2016-05-12 18:50:01 +00001639 assert(ValidRegions.size() <= DetectionContextMap.size() &&
Johannes Doerferte46925f2015-10-01 10:59:14 +00001640 "Cached more results than valid regions");
Tobias Grosser75805372011-04-29 06:27:02 +00001641 return false;
1642}
1643
Johannes Doerfert1dafea42016-05-23 09:07:08 +00001644ScopDetection::DetectionContext *
Johannes Doerfertc06b7d62015-10-07 20:46:06 +00001645ScopDetection::getDetectionContext(const Region *R) const {
Johannes Doerfert6c7639b2016-05-12 18:50:01 +00001646 auto DCMIt = DetectionContextMap.find(getBBPairForRegion(R));
Johannes Doerfertc06b7d62015-10-07 20:46:06 +00001647 if (DCMIt == DetectionContextMap.end())
1648 return nullptr;
1649 return &DCMIt->second;
Johannes Doerfertba65c162015-02-24 11:45:21 +00001650}
1651
Johannes Doerfert6c7639b2016-05-12 18:50:01 +00001652const RejectLog *ScopDetection::lookupRejectionLog(const Region *R) const {
1653 const DetectionContext *DC = getDetectionContext(R);
1654 return DC ? &DC->Log : nullptr;
1655}
1656
Tobias Grosser75805372011-04-29 06:27:02 +00001657void polly::ScopDetection::verifyRegion(const Region &R) const {
1658 assert(isMaxRegionInScop(R) && "Expect R is a valid region.");
Johannes Doerfertf3e98f42015-04-12 22:52:20 +00001659
Johannes Doerfertc06b7d62015-10-07 20:46:06 +00001660 DetectionContext Context(const_cast<Region &>(R), *AA, true /*verifying*/);
Tobias Grosser75805372011-04-29 06:27:02 +00001661 isValidRegion(Context);
1662}
1663
1664void polly::ScopDetection::verifyAnalysis() const {
Tobias Grossera1689932014-02-18 18:49:49 +00001665 if (!VerifyScops)
1666 return;
1667
Tobias Grosser26108892014-04-02 20:18:19 +00001668 for (const Region *R : ValidRegions)
Tobias Grosser00dc3092014-03-02 12:02:46 +00001669 verifyRegion(*R);
Tobias Grosser75805372011-04-29 06:27:02 +00001670}
1671
1672void ScopDetection::getAnalysisUsage(AnalysisUsage &AU) const {
Chandler Carruthf5579872015-01-17 14:16:56 +00001673 AU.addRequired<LoopInfoWrapperPass>();
Michael Kruse6a19d592016-10-17 13:29:20 +00001674 AU.addRequiredTransitive<ScalarEvolutionWrapperPass>();
Johannes Doerfert08d90a32015-10-07 20:32:43 +00001675 AU.addRequired<DominatorTreeWrapperPass>();
Tobias Grosser75805372011-04-29 06:27:02 +00001676 // We also need AA and RegionInfo when we are verifying analysis.
Chandler Carruth66ef16b2015-09-09 22:13:56 +00001677 AU.addRequiredTransitive<AAResultsWrapperPass>();
Matt Arsenault8ca36812014-07-19 18:40:17 +00001678 AU.addRequiredTransitive<RegionInfoPass>();
Tobias Grosser75805372011-04-29 06:27:02 +00001679 AU.setPreservesAll();
1680}
1681
Tobias Grosser4d96c8d2013-03-23 01:05:07 +00001682void ScopDetection::print(raw_ostream &OS, const Module *) const {
Tobias Grosser26108892014-04-02 20:18:19 +00001683 for (const Region *R : ValidRegions)
Tobias Grosser00dc3092014-03-02 12:02:46 +00001684 OS << "Valid Region for Scop: " << R->getNameStr() << '\n';
Tobias Grosser75805372011-04-29 06:27:02 +00001685
1686 OS << "\n";
1687}
1688
1689void ScopDetection::releaseMemory() {
Johannes Doerfert6206d7a2015-09-30 16:51:05 +00001690 ValidRegions.clear();
Johannes Doerfertc06b7d62015-10-07 20:46:06 +00001691 DetectionContextMap.clear();
Andreas Simbuerger4870e092014-05-24 09:25:01 +00001692
Hongbin Zheng94c5df12011-05-06 02:38:20 +00001693 // Do not clear the invalid function set.
Tobias Grosser75805372011-04-29 06:27:02 +00001694}
1695
1696char ScopDetection::ID = 0;
1697
Tobias Grosser4d96c8d2013-03-23 01:05:07 +00001698Pass *polly::createScopDetectionPass() { return new ScopDetection(); }
1699
Tobias Grosser73600b82011-10-08 00:30:40 +00001700INITIALIZE_PASS_BEGIN(ScopDetection, "polly-detect",
1701 "Polly - Detect static control parts (SCoPs)", false,
Tobias Grosser4d96c8d2013-03-23 01:05:07 +00001702 false);
Chandler Carruth66ef16b2015-09-09 22:13:56 +00001703INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass);
Chandler Carruthf5579872015-01-17 14:16:56 +00001704INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass);
Matt Arsenault8ca36812014-07-19 18:40:17 +00001705INITIALIZE_PASS_DEPENDENCY(RegionInfoPass);
Johannes Doerfert08d90a32015-10-07 20:32:43 +00001706INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass);
Tobias Grosserc5bcf242015-08-17 10:57:08 +00001707INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass);
Tobias Grosser73600b82011-10-08 00:30:40 +00001708INITIALIZE_PASS_END(ScopDetection, "polly-detect",
1709 "Polly - Detect static control parts (SCoPs)", false, false)