blob: 70613735f00a94364a2305ecf6493422b2852475 [file] [log] [blame]
Eugene Zelenkoa32707d2017-08-25 21:35:27 +00001//===- ScopDetection.cpp - Detect Scops -----------------------------------===//
Tobias Grosser75805372011-04-29 06:27:02 +00002//
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//
Michael Krusea6d48f52017-06-08 12:06:15 +000016// Every Scop fulfills these restrictions:
Tobias Grosser75805372011-04-29 06:27:02 +000017//
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 Grosser75805372011-04-29 06:27:02 +000048#include "polly/LinkAllPasses.h"
Tobias Grosser637bd632013-05-07 07:31:10 +000049#include "polly/Options.h"
Tobias Grosserba0d0922015-05-09 09:13:42 +000050#include "polly/ScopDetectionDiagnostic.h"
Tobias Grosser120db6b2011-11-07 12:58:54 +000051#include "polly/Support/SCEVValidator.h"
Eugene Zelenkoa32707d2017-08-25 21:35:27 +000052#include "polly/Support/ScopHelper.h"
Tobias Grossera63b7ce2015-05-03 05:21:36 +000053#include "polly/Support/ScopLocation.h"
Eugene Zelenkoa32707d2017-08-25 21:35:27 +000054#include "llvm/ADT/DenseMap.h"
55#include "llvm/ADT/SetVector.h"
56#include "llvm/ADT/SmallPtrSet.h"
57#include "llvm/ADT/SmallVector.h"
Tobias Grosser75805372011-04-29 06:27:02 +000058#include "llvm/ADT/Statistic.h"
Eugene Zelenkoa32707d2017-08-25 21:35:27 +000059#include "llvm/ADT/StringRef.h"
Tobias Grosser75805372011-04-29 06:27:02 +000060#include "llvm/Analysis/AliasAnalysis.h"
Tobias Grosser8bd7f3c2017-03-09 11:36:00 +000061#include "llvm/Analysis/Loads.h"
Tobias Grosser6e9f25a2011-11-09 22:35:00 +000062#include "llvm/Analysis/LoopInfo.h"
Eugene Zelenkoa32707d2017-08-25 21:35:27 +000063#include "llvm/Analysis/MemoryLocation.h"
64#include "llvm/Analysis/OptimizationDiagnosticInfo.h"
65#include "llvm/Analysis/RegionInfo.h"
Tobias Grosser6e9f25a2011-11-09 22:35:00 +000066#include "llvm/Analysis/ScalarEvolution.h"
Tobias Grosserb8710b52011-11-10 12:44:50 +000067#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Eugene Zelenkoa32707d2017-08-25 21:35:27 +000068#include "llvm/IR/BasicBlock.h"
69#include "llvm/IR/Constants.h"
70#include "llvm/IR/DebugLoc.h"
71#include "llvm/IR/DerivedTypes.h"
Tobias Grosser8519f892013-12-18 10:49:53 +000072#include "llvm/IR/DiagnosticInfo.h"
73#include "llvm/IR/DiagnosticPrinter.h"
Eugene Zelenkoa32707d2017-08-25 21:35:27 +000074#include "llvm/IR/Dominators.h"
75#include "llvm/IR/Function.h"
76#include "llvm/IR/InstrTypes.h"
77#include "llvm/IR/Instruction.h"
78#include "llvm/IR/Instructions.h"
Tobias Grosserba0d0922015-05-09 09:13:42 +000079#include "llvm/IR/IntrinsicInst.h"
Eugene Zelenkoa32707d2017-08-25 21:35:27 +000080#include "llvm/IR/Intrinsics.h"
Chandler Carruth6b96c242014-03-06 00:47:27 +000081#include "llvm/IR/LLVMContext.h"
Eugene Zelenkoa32707d2017-08-25 21:35:27 +000082#include "llvm/IR/Metadata.h"
83#include "llvm/IR/Module.h"
84#include "llvm/IR/PassManager.h"
85#include "llvm/IR/Type.h"
86#include "llvm/IR/Value.h"
87#include "llvm/Pass.h"
88#include "llvm/Support/Casting.h"
89#include "llvm/Support/CommandLine.h"
Tobias Grosser75805372011-04-29 06:27:02 +000090#include "llvm/Support/Debug.h"
Eugene Zelenkoa32707d2017-08-25 21:35:27 +000091#include "llvm/Support/ErrorHandling.h"
Siddharth Bhate2699b52017-07-24 12:40:52 +000092#include "llvm/Support/Regex.h"
Eugene Zelenkoa32707d2017-08-25 21:35:27 +000093#include "llvm/Support/raw_ostream.h"
94#include <algorithm>
95#include <cassert>
96#include <memory>
Tobias Grosser1c3a6d72016-01-22 09:44:37 +000097#include <stack>
Eugene Zelenkoa32707d2017-08-25 21:35:27 +000098#include <string>
99#include <utility>
100#include <vector>
Tobias Grosser60b54f12011-11-08 15:41:28 +0000101
Tobias Grosser75805372011-04-29 06:27:02 +0000102using namespace llvm;
103using namespace polly;
104
Chandler Carruth95fef942014-04-22 03:30:19 +0000105#define DEBUG_TYPE "polly-detect"
106
Tobias Grosserc1a269b2015-12-21 21:00:43 +0000107// This option is set to a very high value, as analyzing such loops increases
108// compile time on several cases. For experiments that enable this option,
109// a value of around 40 has been working to avoid run-time regressions with
110// Polly while still exposing interesting optimization opportunities.
111static cl::opt<int> ProfitabilityMinPerLoopInstructions(
112 "polly-detect-profitability-min-per-loop-insts",
113 cl::desc("The minimal number of per-loop instructions before a single loop "
114 "region is considered profitable"),
115 cl::Hidden, cl::ValueRequired, cl::init(100000000), cl::cat(PollyCategory));
116
Tobias Grosser575aca82015-10-06 16:10:29 +0000117bool polly::PollyProcessUnprofitable;
Eugene Zelenkoa32707d2017-08-25 21:35:27 +0000118
Tobias Grosser575aca82015-10-06 16:10:29 +0000119static cl::opt<bool, true> XPollyProcessUnprofitable(
120 "polly-process-unprofitable",
121 cl::desc(
122 "Process scops that are unlikely to benefit from Polly optimizations."),
123 cl::location(PollyProcessUnprofitable), cl::init(false), cl::ZeroOrMore,
124 cl::cat(PollyCategory));
Tobias Grosserd1e33e72015-02-19 05:31:07 +0000125
Siddharth Bhat286c9162017-06-09 08:23:40 +0000126static cl::list<std::string> OnlyFunctions(
Tobias Grosser483a90d2014-07-09 10:50:10 +0000127 "polly-only-func",
Siddharth Bhate2699b52017-07-24 12:40:52 +0000128 cl::desc("Only run on functions that match a regex. "
129 "Multiple regexes can be comma separated. "
130 "Scop detection will run on all functions that match "
131 "ANY of the regexes provided."),
Siddharth Bhat286c9162017-06-09 08:23:40 +0000132 cl::ZeroOrMore, cl::CommaSeparated, cl::cat(PollyCategory));
Tobias Grosser2ff87232011-10-23 11:17:06 +0000133
Siddharth Bhat0a1177b2017-07-28 11:47:24 +0000134static cl::list<std::string> IgnoredFunctions(
135 "polly-ignore-func",
136 cl::desc("Ignore functions that match a regex. "
137 "Multiple regexes can be comma separated. "
138 "Scop detection will ignore all functions that match "
139 "ANY of the regexes provided."),
140 cl::ZeroOrMore, cl::CommaSeparated, cl::cat(PollyCategory));
141
Siddharth Bhatb46847c2017-08-17 21:57:23 +0000142bool polly::PollyAllowFullFunction;
Eugene Zelenkoa32707d2017-08-25 21:35:27 +0000143
Siddharth Bhatb46847c2017-08-17 21:57:23 +0000144static cl::opt<bool, true>
145 XAllowFullFunction("polly-detect-full-functions",
146 cl::desc("Allow the detection of full functions"),
147 cl::location(polly::PollyAllowFullFunction),
148 cl::init(false), cl::cat(PollyCategory));
Tobias Grosserd8945ba2017-05-19 12:13:02 +0000149
Tobias Grosser483a90d2014-07-09 10:50:10 +0000150static cl::opt<std::string> OnlyRegion(
151 "polly-only-region",
152 cl::desc("Only run on certain regions (The provided identifier must "
153 "appear in the name of the region's entry block"),
154 cl::value_desc("identifier"), cl::ValueRequired, cl::init(""),
155 cl::cat(PollyCategory));
Tobias Grosser4449e522014-01-27 14:24:53 +0000156
Tobias Grosser60cd9322011-11-10 12:47:26 +0000157static cl::opt<bool>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000158 IgnoreAliasing("polly-ignore-aliasing",
159 cl::desc("Ignore possible aliasing of the array bases"),
160 cl::Hidden, cl::init(false), cl::ZeroOrMore,
161 cl::cat(PollyCategory));
Tobias Grosser2ff87232011-10-23 11:17:06 +0000162
Johannes Doerfertbda81432016-12-02 17:55:41 +0000163bool polly::PollyAllowUnsignedOperations;
Eugene Zelenkoa32707d2017-08-25 21:35:27 +0000164
Johannes Doerfertbda81432016-12-02 17:55:41 +0000165static cl::opt<bool, true> XPollyAllowUnsignedOperations(
166 "polly-allow-unsigned-operations",
167 cl::desc("Allow unsigned operations such as comparisons or zero-extends."),
168 cl::location(PollyAllowUnsignedOperations), cl::Hidden, cl::ZeroOrMore,
169 cl::init(true), cl::cat(PollyCategory));
170
Johannes Doerfertb164c792014-09-18 11:17:17 +0000171bool polly::PollyUseRuntimeAliasChecks;
Eugene Zelenkoa32707d2017-08-25 21:35:27 +0000172
Johannes Doerfertb164c792014-09-18 11:17:17 +0000173static cl::opt<bool, true> XPollyUseRuntimeAliasChecks(
174 "polly-use-runtime-alias-checks",
175 cl::desc("Use runtime alias checks to resolve possible aliasing."),
176 cl::location(PollyUseRuntimeAliasChecks), cl::Hidden, cl::ZeroOrMore,
177 cl::init(true), cl::cat(PollyCategory));
178
Tobias Grosser637bd632013-05-07 07:31:10 +0000179static cl::opt<bool>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000180 ReportLevel("polly-report",
181 cl::desc("Print information about the activities of Polly"),
182 cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory));
Tobias Grosser531891e2012-11-01 16:45:20 +0000183
Tobias Grosser8ebdc2d2016-02-07 08:48:57 +0000184static cl::opt<bool> AllowDifferentTypes(
185 "polly-allow-differing-element-types",
186 cl::desc("Allow different element types for array accesses"), cl::Hidden,
Tobias Grossera2ee0032016-02-16 14:37:24 +0000187 cl::init(true), cl::ZeroOrMore, cl::cat(PollyCategory));
Tobias Grosser8ebdc2d2016-02-07 08:48:57 +0000188
Tobias Grosser531891e2012-11-01 16:45:20 +0000189static cl::opt<bool>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000190 AllowNonAffine("polly-allow-nonaffine",
191 cl::desc("Allow non affine access functions in arrays"),
192 cl::Hidden, cl::init(false), cl::ZeroOrMore,
193 cl::cat(PollyCategory));
Tobias Grossera1879642011-12-20 10:43:14 +0000194
Tobias Grosser898a6362016-03-23 06:40:15 +0000195static cl::opt<bool>
196 AllowModrefCall("polly-allow-modref-calls",
197 cl::desc("Allow functions with known modref behavior"),
198 cl::Hidden, cl::init(false), cl::ZeroOrMore,
199 cl::cat(PollyCategory));
200
Johannes Doerfertba65c162015-02-24 11:45:21 +0000201static cl::opt<bool> AllowNonAffineSubRegions(
202 "polly-allow-nonaffine-branches",
203 cl::desc("Allow non affine conditions for branches"), cl::Hidden,
Johannes Doerferta36842f2015-02-26 11:09:24 +0000204 cl::init(true), cl::ZeroOrMore, cl::cat(PollyCategory));
Johannes Doerfertba65c162015-02-24 11:45:21 +0000205
Johannes Doerfertf3e98f42015-04-12 22:52:20 +0000206static cl::opt<bool>
207 AllowNonAffineSubLoops("polly-allow-nonaffine-loops",
208 cl::desc("Allow non affine conditions for loops"),
209 cl::Hidden, cl::init(false), cl::ZeroOrMore,
210 cl::cat(PollyCategory));
211
Tobias Grosserc7d3fc52013-07-25 03:02:29 +0000212static cl::opt<bool, true>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000213 TrackFailures("polly-detect-track-failures",
214 cl::desc("Track failure strings in detecting scop regions"),
215 cl::location(PollyTrackFailures), cl::Hidden, cl::ZeroOrMore,
Andreas Simbuerger3efe40b2014-08-17 10:09:03 +0000216 cl::init(true), cl::cat(PollyCategory));
Tobias Grosserc7d3fc52013-07-25 03:02:29 +0000217
Andreas Simbuerger04472402014-05-24 09:25:10 +0000218static cl::opt<bool> KeepGoing("polly-detect-keep-going",
219 cl::desc("Do not fail on the first error."),
220 cl::Hidden, cl::ZeroOrMore, cl::init(false),
221 cl::cat(PollyCategory));
222
Sebastian Pop18016682014-04-08 21:20:44 +0000223static cl::opt<bool, true>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000224 PollyDelinearizeX("polly-delinearize",
225 cl::desc("Delinearize array access functions"),
226 cl::location(PollyDelinearize), cl::Hidden,
Tobias Grosser6973cb62015-03-08 15:21:18 +0000227 cl::ZeroOrMore, cl::init(true), cl::cat(PollyCategory));
Sebastian Pop18016682014-04-08 21:20:44 +0000228
Tobias Grossera1689932014-02-18 18:49:49 +0000229static cl::opt<bool>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000230 VerifyScops("polly-detect-verify",
231 cl::desc("Verify the detected SCoPs after each transformation"),
232 cl::Hidden, cl::init(false), cl::ZeroOrMore,
233 cl::cat(PollyCategory));
Tobias Grossera1689932014-02-18 18:49:49 +0000234
Tobias Grosser8fa3e4c2016-02-26 16:43:35 +0000235bool polly::PollyInvariantLoadHoisting;
Eugene Zelenkoa32707d2017-08-25 21:35:27 +0000236
Tobias Grosser8fa3e4c2016-02-26 16:43:35 +0000237static cl::opt<bool, true> XPollyInvariantLoadHoisting(
238 "polly-invariant-load-hoisting", cl::desc("Hoist invariant loads."),
239 cl::location(PollyInvariantLoadHoisting), cl::Hidden, cl::ZeroOrMore,
Tobias Grosser74814e12016-08-15 16:43:36 +0000240 cl::init(false), cl::cat(PollyCategory));
Tobias Grosser8fa3e4c2016-02-26 16:43:35 +0000241
Tobias Grosserc80d6972016-09-02 06:33:33 +0000242/// The minimal trip count under which loops are considered unprofitable.
Johannes Doerferte526de52015-09-21 19:10:11 +0000243static const unsigned MIN_LOOP_TRIP_COUNT = 8;
244
Tobias Grosserc7d3fc52013-07-25 03:02:29 +0000245bool polly::PollyTrackFailures = false;
Sebastian Pop18016682014-04-08 21:20:44 +0000246bool polly::PollyDelinearize = false;
Johannes Doerfert43e1ead2014-07-15 21:06:48 +0000247StringRef polly::PollySkipFnAttr = "polly.skip.fn";
Tobias Grosserc7d3fc52013-07-25 03:02:29 +0000248
Tobias Grosser75805372011-04-29 06:27:02 +0000249//===----------------------------------------------------------------------===//
250// Statistics.
251
Tobias Grosserb45ae562016-11-26 07:37:46 +0000252STATISTIC(NumScopRegions, "Number of scops");
253STATISTIC(NumLoopsInScop, "Number of loops in scops");
254STATISTIC(NumScopsDepthOne, "Number of scops with maximal loop depth 1");
255STATISTIC(NumScopsDepthTwo, "Number of scops with maximal loop depth 2");
256STATISTIC(NumScopsDepthThree, "Number of scops with maximal loop depth 3");
257STATISTIC(NumScopsDepthFour, "Number of scops with maximal loop depth 4");
258STATISTIC(NumScopsDepthFive, "Number of scops with maximal loop depth 5");
259STATISTIC(NumScopsDepthLarger,
260 "Number of scops with maximal loop depth 6 and larger");
261STATISTIC(NumProfScopRegions, "Number of scops (profitable scops only)");
262STATISTIC(NumLoopsInProfScop,
263 "Number of loops in scops (profitable scops only)");
264STATISTIC(NumLoopsOverall, "Number of total loops");
265STATISTIC(NumProfScopsDepthOne,
266 "Number of scops with maximal loop depth 1 (profitable scops only)");
267STATISTIC(NumProfScopsDepthTwo,
268 "Number of scops with maximal loop depth 2 (profitable scops only)");
269STATISTIC(NumProfScopsDepthThree,
270 "Number of scops with maximal loop depth 3 (profitable scops only)");
271STATISTIC(NumProfScopsDepthFour,
272 "Number of scops with maximal loop depth 4 (profitable scops only)");
273STATISTIC(NumProfScopsDepthFive,
274 "Number of scops with maximal loop depth 5 (profitable scops only)");
Tobias Grosser21a059a2017-01-16 14:08:10 +0000275STATISTIC(NumProfScopsDepthLarger,
276 "Number of scops with maximal loop depth 6 and larger "
277 "(profitable scops only)");
Tobias Grosser9fe37df2017-02-12 10:52:57 +0000278STATISTIC(MaxNumLoopsInScop, "Maximal number of loops in scops");
279STATISTIC(MaxNumLoopsInProfScop,
280 "Maximal number of loops in scops (profitable scops only)");
Tobias Grosser75805372011-04-29 06:27:02 +0000281
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000282static void updateLoopCountStatistic(ScopDetection::LoopStats Stats,
283 bool OnlyProfitable);
284
Eugene Zelenkoa32707d2017-08-25 21:35:27 +0000285namespace {
286
Tobias Grosser8519f892013-12-18 10:49:53 +0000287class DiagnosticScopFound : public DiagnosticInfo {
288private:
289 static int PluginDiagnosticKind;
290
291 Function &F;
292 std::string FileName;
293 unsigned EntryLine, ExitLine;
294
295public:
Tobias Grosser1b12f462013-12-18 11:14:36 +0000296 DiagnosticScopFound(Function &F, std::string FileName, unsigned EntryLine,
297 unsigned ExitLine)
Tobias Grosser8519f892013-12-18 10:49:53 +0000298 : DiagnosticInfo(PluginDiagnosticKind, DS_Note), F(F), FileName(FileName),
Tobias Grosser1b12f462013-12-18 11:14:36 +0000299 EntryLine(EntryLine), ExitLine(ExitLine) {}
Tobias Grosser8519f892013-12-18 10:49:53 +0000300
Eugene Zelenkoa32707d2017-08-25 21:35:27 +0000301 void print(DiagnosticPrinter &DP) const override;
Tobias Grosser8519f892013-12-18 10:49:53 +0000302
303 static bool classof(const DiagnosticInfo *DI) {
304 return DI->getKind() == PluginDiagnosticKind;
305 }
306};
307
Eugene Zelenkoa32707d2017-08-25 21:35:27 +0000308} // namespace
309
Tobias Grosserdb6db502016-04-01 07:15:19 +0000310int DiagnosticScopFound::PluginDiagnosticKind =
311 getNextAvailablePluginDiagnosticKind();
Tobias Grosser8519f892013-12-18 10:49:53 +0000312
Tobias Grosser8519f892013-12-18 10:49:53 +0000313void DiagnosticScopFound::print(DiagnosticPrinter &DP) const {
Tobias Grosser1b12f462013-12-18 11:14:36 +0000314 DP << "Polly detected an optimizable loop region (scop) in function '" << F
315 << "'\n";
Tobias Grosser8519f892013-12-18 10:49:53 +0000316
317 if (FileName.empty()) {
318 DP << "Scop location is unknown. Compile with debug info "
319 "(-g) to get more precise information. ";
Tobias Grosser1b12f462013-12-18 11:14:36 +0000320 return;
Tobias Grosser8519f892013-12-18 10:49:53 +0000321 }
322
323 DP << FileName << ":" << EntryLine << ": Start of scop\n";
324 DP << FileName << ":" << ExitLine << ": End of scop";
325}
326
Siddharth Bhat0a1177b2017-07-28 11:47:24 +0000327/// Check if a string matches any regex in a list of regexes.
328/// @param Str the input string to match against.
329/// @param RegexList a list of strings that are regular expressions.
330static bool doesStringMatchAnyRegex(StringRef Str,
331 const cl::list<std::string> &RegexList) {
332 for (auto RegexStr : RegexList) {
Siddharth Bhate2699b52017-07-24 12:40:52 +0000333 Regex R(RegexStr);
334
335 std::string Err;
336 if (!R.isValid(Err))
Siddharth Bhat0a1177b2017-07-28 11:47:24 +0000337 report_fatal_error("invalid regex given as input to polly: " + Err, true);
Siddharth Bhate2699b52017-07-24 12:40:52 +0000338
Siddharth Bhat0a1177b2017-07-28 11:47:24 +0000339 if (R.match(Str))
Siddharth Bhat286c9162017-06-09 08:23:40 +0000340 return true;
Siddharth Bhate2699b52017-07-24 12:40:52 +0000341 }
Siddharth Bhat286c9162017-06-09 08:23:40 +0000342 return false;
343}
Tobias Grosser75805372011-04-29 06:27:02 +0000344//===----------------------------------------------------------------------===//
345// ScopDetection.
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000346
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000347ScopDetection::ScopDetection(Function &F, const DominatorTree &DT,
348 ScalarEvolution &SE, LoopInfo &LI, RegionInfo &RI,
Eli Friedmane737fc12017-07-17 23:58:33 +0000349 AliasAnalysis &AA, OptimizationRemarkEmitter &ORE)
350 : DT(DT), SE(SE), LI(LI), RI(RI), AA(AA), ORE(ORE) {
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000351 if (!PollyProcessUnprofitable && LI.empty())
352 return;
353
354 Region *TopRegion = RI.getTopLevelRegion();
355
Eugene Zelenkoa32707d2017-08-25 21:35:27 +0000356 if (!OnlyFunctions.empty() &&
Siddharth Bhat0a1177b2017-07-28 11:47:24 +0000357 !doesStringMatchAnyRegex(F.getName(), OnlyFunctions))
358 return;
359
360 if (doesStringMatchAnyRegex(F.getName(), IgnoredFunctions))
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000361 return;
362
363 if (!isValidFunction(F))
364 return;
365
366 findScops(*TopRegion);
367
368 NumScopRegions += ValidRegions.size();
369
370 // Prune non-profitable regions.
371 for (auto &DIt : DetectionContextMap) {
372 auto &DC = DIt.getSecond();
373 if (DC.Log.hasErrors())
374 continue;
375 if (!ValidRegions.count(&DC.CurRegion))
376 continue;
377 LoopStats Stats = countBeneficialLoops(&DC.CurRegion, SE, LI, 0);
378 updateLoopCountStatistic(Stats, false /* OnlyProfitable */);
379 if (isProfitableRegion(DC)) {
380 updateLoopCountStatistic(Stats, true /* OnlyProfitable */);
381 continue;
382 }
383
384 ValidRegions.remove(&DC.CurRegion);
385 }
386
387 NumProfScopRegions += ValidRegions.size();
388 NumLoopsOverall += countBeneficialLoops(TopRegion, SE, LI, 0).NumLoops;
389
390 // Only makes sense when we tracked errors.
391 if (PollyTrackFailures)
392 emitMissedRemarks(F);
393
394 if (ReportLevel)
395 printLocations(F);
396
397 assert(ValidRegions.size() <= DetectionContextMap.size() &&
398 "Cached more results than valid regions");
Johannes Doerfertb164c792014-09-18 11:17:17 +0000399}
400
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000401template <class RR, typename... Args>
402inline bool ScopDetection::invalid(DetectionContext &Context, bool Assert,
403 Args &&... Arguments) const {
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000404 if (!Context.Verifying) {
Andreas Simbuerger4870e092014-05-24 09:25:01 +0000405 RejectLog &Log = Context.Log;
406 std::shared_ptr<RR> RejectReason = std::make_shared<RR>(Arguments...);
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000407
Andreas Simbuerger8a00c9b2014-05-24 09:25:06 +0000408 if (PollyTrackFailures)
Andreas Simbuerger4870e092014-05-24 09:25:01 +0000409 Log.report(RejectReason);
Andreas Simbuerger4870e092014-05-24 09:25:01 +0000410
411 DEBUG(dbgs() << RejectReason->getMessage());
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000412 DEBUG(dbgs() << "\n");
413 } else {
414 assert(!Assert && "Verification of detected scop failed");
415 }
416
417 return false;
418}
419
Tobias Grossera1689932014-02-18 18:49:49 +0000420bool ScopDetection::isMaxRegionInScop(const Region &R, bool Verify) const {
421 if (!ValidRegions.count(&R))
422 return false;
423
Johannes Doerfert3f1c2852015-02-19 18:11:50 +0000424 if (Verify) {
Johannes Doerfert6c7639b2016-05-12 18:50:01 +0000425 DetectionContextMap.erase(getBBPairForRegion(&R));
426 const auto &It = DetectionContextMap.insert(std::make_pair(
427 getBBPairForRegion(&R),
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000428 DetectionContext(const_cast<Region &>(R), AA, false /*verifying*/)));
Tobias Grosser907090c2015-10-25 10:55:35 +0000429 DetectionContext &Context = It.first->second;
Johannes Doerfert3f1c2852015-02-19 18:11:50 +0000430 return isValidRegion(Context);
431 }
Tobias Grossera1689932014-02-18 18:49:49 +0000432
433 return true;
Tobias Grosser75805372011-04-29 06:27:02 +0000434}
435
Tobias Grosser4f129a62011-10-08 00:30:55 +0000436std::string ScopDetection::regionIsInvalidBecause(const Region *R) const {
Andreas Simbuerger8a00c9b2014-05-24 09:25:06 +0000437 // Get the first error we found. Even in keep-going mode, this is the first
438 // reason that caused the candidate to be rejected.
Johannes Doerfert6c7639b2016-05-12 18:50:01 +0000439 auto *Log = lookupRejectionLog(R);
Andreas Simbuerger83ed8612014-06-12 07:25:08 +0000440
441 // This can happen when we marked a region invalid, but didn't track
442 // an error for it.
Johannes Doerfert6c7639b2016-05-12 18:50:01 +0000443 if (!Log || !Log->hasErrors())
Andreas Simbuerger83ed8612014-06-12 07:25:08 +0000444 return "";
445
Johannes Doerfert6c7639b2016-05-12 18:50:01 +0000446 RejectReasonPtr RR = *Log->begin();
Andreas Simbuerger83ed8612014-06-12 07:25:08 +0000447 return RR->getMessage();
Tobias Grosser4f129a62011-10-08 00:30:55 +0000448}
449
Johannes Doerfertf3e98f42015-04-12 22:52:20 +0000450bool ScopDetection::addOverApproximatedRegion(Region *AR,
451 DetectionContext &Context) const {
Johannes Doerfertf3e98f42015-04-12 22:52:20 +0000452 // If we already know about Ar we can exit.
453 if (!Context.NonAffineSubRegionSet.insert(AR))
454 return true;
455
456 // All loops in the region have to be overapproximated too if there
457 // are accesses that depend on the iteration count.
Michael Kruse41f046a2016-06-27 19:00:49 +0000458
Johannes Doerfertf3e98f42015-04-12 22:52:20 +0000459 for (BasicBlock *BB : AR->blocks()) {
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000460 Loop *L = LI.getLoopFor(BB);
Tobias Grosser349d1c32016-09-20 17:05:22 +0000461 if (AR->contains(L))
Johannes Doerfertf3e98f42015-04-12 22:52:20 +0000462 Context.BoxedLoopsSet.insert(L);
Johannes Doerfertba65c162015-02-24 11:45:21 +0000463 }
Johannes Doerfertf3e98f42015-04-12 22:52:20 +0000464
465 return (AllowNonAffineSubLoops || Context.BoxedLoopsSet.empty());
Johannes Doerfertba65c162015-02-24 11:45:21 +0000466}
467
Johannes Doerfert09e36972015-10-07 20:17:36 +0000468bool ScopDetection::onlyValidRequiredInvariantLoads(
469 InvariantLoadsSetTy &RequiredILS, DetectionContext &Context) const {
470 Region &CurRegion = Context.CurRegion;
Tobias Grosser7b5a4df2017-04-11 04:59:13 +0000471 const DataLayout &DL = CurRegion.getEntry()->getModule()->getDataLayout();
Johannes Doerfert09e36972015-10-07 20:17:36 +0000472
Tobias Grosser8fa3e4c2016-02-26 16:43:35 +0000473 if (!PollyInvariantLoadHoisting && !RequiredILS.empty())
474 return false;
475
Tobias Grosser1c787e02017-03-02 12:15:37 +0000476 for (LoadInst *Load : RequiredILS) {
Tobias Grosser3f25a7e2017-05-04 10:16:20 +0000477 // If we already know a load has been accepted as required invariant, we
478 // already run the validation below once and consequently don't need to
479 // run it again. Hence, we return early. For certain test cases (e.g.,
480 // COSMO this avoids us spending 50% of scop-detection time in this
481 // very function (and its children).
482 if (Context.RequiredILS.count(Load))
483 continue;
484
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000485 if (!isHoistableLoad(Load, CurRegion, LI, SE, DT))
Johannes Doerfert09e36972015-10-07 20:17:36 +0000486 return false;
487
Tobias Grosser8bd7f3c2017-03-09 11:36:00 +0000488 for (auto NonAffineRegion : Context.NonAffineSubRegionSet) {
Tobias Grosser8bd7f3c2017-03-09 11:36:00 +0000489 if (isSafeToLoadUnconditionally(Load->getPointerOperand(),
490 Load->getAlignment(), DL))
491 continue;
492
Tobias Grosser1c787e02017-03-02 12:15:37 +0000493 if (NonAffineRegion->contains(Load) &&
494 Load->getParent() != NonAffineRegion->getEntry())
495 return false;
Tobias Grosser8bd7f3c2017-03-09 11:36:00 +0000496 }
Tobias Grosser1c787e02017-03-02 12:15:37 +0000497 }
498
Johannes Doerfert09e36972015-10-07 20:17:36 +0000499 Context.RequiredILS.insert(RequiredILS.begin(), RequiredILS.end());
500
501 return true;
502}
503
Johannes Doerferta94ae1a2016-12-02 17:49:52 +0000504bool ScopDetection::involvesMultiplePtrs(const SCEV *S0, const SCEV *S1,
505 Loop *Scope) const {
506 SetVector<Value *> Values;
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000507 findValues(S0, SE, Values);
Johannes Doerferta94ae1a2016-12-02 17:49:52 +0000508 if (S1)
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000509 findValues(S1, SE, Values);
Johannes Doerferta94ae1a2016-12-02 17:49:52 +0000510
511 SmallPtrSet<Value *, 8> PtrVals;
512 for (auto *V : Values) {
513 if (auto *P2I = dyn_cast<PtrToIntInst>(V))
514 V = P2I->getOperand(0);
515
516 if (!V->getType()->isPointerTy())
517 continue;
518
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000519 auto *PtrSCEV = SE.getSCEVAtScope(V, Scope);
Johannes Doerferta94ae1a2016-12-02 17:49:52 +0000520 if (isa<SCEVConstant>(PtrSCEV))
521 continue;
522
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000523 auto *BasePtr = dyn_cast<SCEVUnknown>(SE.getPointerBase(PtrSCEV));
Johannes Doerferta94ae1a2016-12-02 17:49:52 +0000524 if (!BasePtr)
525 return true;
526
527 auto *BasePtrVal = BasePtr->getValue();
528 if (PtrVals.insert(BasePtrVal).second) {
529 for (auto *PtrVal : PtrVals)
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000530 if (PtrVal != BasePtrVal && !AA.isNoAlias(PtrVal, BasePtrVal))
Johannes Doerferta94ae1a2016-12-02 17:49:52 +0000531 return true;
532 }
533 }
534
535 return false;
536}
537
Michael Kruse09eb4452016-03-03 22:10:47 +0000538bool ScopDetection::isAffine(const SCEV *S, Loop *Scope,
Johannes Doerfertec8a2172016-04-25 13:32:36 +0000539 DetectionContext &Context) const {
Johannes Doerfert09e36972015-10-07 20:17:36 +0000540 InvariantLoadsSetTy AccessILS;
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000541 if (!isAffineExpr(&Context.CurRegion, Scope, S, SE, &AccessILS))
Johannes Doerfert09e36972015-10-07 20:17:36 +0000542 return false;
543
544 if (!onlyValidRequiredInvariantLoads(AccessILS, Context))
545 return false;
546
547 return true;
548}
549
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000550bool ScopDetection::isValidSwitch(BasicBlock &BB, SwitchInst *SI,
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000551 Value *Condition, bool IsLoopBranch,
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000552 DetectionContext &Context) const {
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000553 Loop *L = LI.getLoopFor(&BB);
554 const SCEV *ConditionSCEV = SE.getSCEVAtScope(Condition, L);
Tobias Grosser75805372011-04-29 06:27:02 +0000555
Tobias Grosserbbaeda32016-11-10 05:20:29 +0000556 if (IsLoopBranch && L->isLoopLatch(&BB))
557 return false;
558
Johannes Doerferta94ae1a2016-12-02 17:49:52 +0000559 // Check for invalid usage of different pointers in one expression.
560 if (involvesMultiplePtrs(ConditionSCEV, nullptr, L))
561 return false;
562
Michael Kruse09eb4452016-03-03 22:10:47 +0000563 if (isAffine(ConditionSCEV, L, Context))
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000564 return true;
Tobias Grosser75805372011-04-29 06:27:02 +0000565
Tobias Grosserbbaeda32016-11-10 05:20:29 +0000566 if (AllowNonAffineSubRegions &&
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000567 addOverApproximatedRegion(RI.getRegionFor(&BB), Context))
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000568 return true;
569
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000570 return invalid<ReportNonAffBranch>(Context, /*Assert=*/true, &BB,
571 ConditionSCEV, ConditionSCEV, SI);
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000572}
573
574bool ScopDetection::isValidBranch(BasicBlock &BB, BranchInst *BI,
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000575 Value *Condition, bool IsLoopBranch,
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000576 DetectionContext &Context) const {
Tobias Grosserbbaeda32016-11-10 05:20:29 +0000577 // Constant integer conditions are always affine.
578 if (isa<ConstantInt>(Condition))
579 return true;
580
Johannes Doerfert9b1f9c82015-10-11 13:21:03 +0000581 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Condition)) {
582 auto Opcode = BinOp->getOpcode();
583 if (Opcode == Instruction::And || Opcode == Instruction::Or) {
584 Value *Op0 = BinOp->getOperand(0);
585 Value *Op1 = BinOp->getOperand(1);
586 return isValidBranch(BB, BI, Op0, IsLoopBranch, Context) &&
587 isValidBranch(BB, BI, Op1, IsLoopBranch, Context);
588 }
589 }
590
Tobias Grosser0a62b2d2017-09-25 16:37:15 +0000591 if (auto PHI = dyn_cast<PHINode>(Condition)) {
592 auto *Unique = dyn_cast_or_null<ConstantInt>(
593 getUniqueNonErrorValue(PHI, &Context.CurRegion, LI, DT));
594 if (Unique && (Unique->isZero() || Unique->isOne()))
595 return true;
596 }
597
Tobias Grosser5e531df2017-09-25 20:27:15 +0000598 if (auto Load = dyn_cast<LoadInst>(Condition))
Michael Krusec0133992017-10-01 22:19:28 +0000599 if (!IsLoopBranch && Context.CurRegion.contains(Load)) {
Tobias Grosser5e531df2017-09-25 20:27:15 +0000600 Context.RequiredILS.insert(Load);
601 return true;
602 }
603
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000604 // Non constant conditions of branches need to be ICmpInst.
605 if (!isa<ICmpInst>(Condition)) {
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000606 if (!IsLoopBranch && AllowNonAffineSubRegions &&
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000607 addOverApproximatedRegion(RI.getRegionFor(&BB), Context))
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000608 return true;
609 return invalid<ReportInvalidCond>(Context, /*Assert=*/true, BI, &BB);
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000610 }
Tobias Grosser75805372011-04-29 06:27:02 +0000611
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000612 ICmpInst *ICmp = cast<ICmpInst>(Condition);
Tobias Grosser75805372011-04-29 06:27:02 +0000613
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000614 // Are both operands of the ICmp affine?
615 if (isa<UndefValue>(ICmp->getOperand(0)) ||
616 isa<UndefValue>(ICmp->getOperand(1)))
617 return invalid<ReportUndefOperand>(Context, /*Assert=*/true, &BB, ICmp);
Tobias Grosser75805372011-04-29 06:27:02 +0000618
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000619 Loop *L = LI.getLoopFor(&BB);
620 const SCEV *LHS = SE.getSCEVAtScope(ICmp->getOperand(0), L);
621 const SCEV *RHS = SE.getSCEVAtScope(ICmp->getOperand(1), L);
Tobias Grosser75805372011-04-29 06:27:02 +0000622
Tobias Grosseree457592017-09-24 09:25:30 +0000623 LHS = tryForwardThroughPHI(LHS, Context.CurRegion, SE, LI, DT);
624 RHS = tryForwardThroughPHI(RHS, Context.CurRegion, SE, LI, DT);
625
Johannes Doerfertbda81432016-12-02 17:55:41 +0000626 // If unsigned operations are not allowed try to approximate the region.
627 if (ICmp->isUnsigned() && !PollyAllowUnsignedOperations)
628 return !IsLoopBranch && AllowNonAffineSubRegions &&
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000629 addOverApproximatedRegion(RI.getRegionFor(&BB), Context);
Johannes Doerfertbda81432016-12-02 17:55:41 +0000630
Johannes Doerferta94ae1a2016-12-02 17:49:52 +0000631 // Check for invalid usage of different pointers in one expression.
632 if (ICmp->isEquality() && involvesMultiplePtrs(LHS, nullptr, L) &&
633 involvesMultiplePtrs(RHS, nullptr, L))
634 return false;
635
636 // Check for invalid usage of different pointers in a relational comparison.
637 if (ICmp->isRelational() && involvesMultiplePtrs(LHS, RHS, L))
638 return false;
639
Michael Kruse09eb4452016-03-03 22:10:47 +0000640 if (isAffine(LHS, L, Context) && isAffine(RHS, L, Context))
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000641 return true;
Tobias Grosser75805372011-04-29 06:27:02 +0000642
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000643 if (!IsLoopBranch && AllowNonAffineSubRegions &&
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000644 addOverApproximatedRegion(RI.getRegionFor(&BB), Context))
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000645 return true;
646
647 if (IsLoopBranch)
648 return false;
649
650 return invalid<ReportNonAffBranch>(Context, /*Assert=*/true, &BB, LHS, RHS,
651 ICmp);
Tobias Grosser75805372011-04-29 06:27:02 +0000652}
653
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000654bool ScopDetection::isValidCFG(BasicBlock &BB, bool IsLoopBranch,
Tobias Grosserb76cd3c2015-11-11 08:42:20 +0000655 bool AllowUnreachable,
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000656 DetectionContext &Context) const {
657 Region &CurRegion = Context.CurRegion;
658
659 TerminatorInst *TI = BB.getTerminator();
660
Tobias Grosserb76cd3c2015-11-11 08:42:20 +0000661 if (AllowUnreachable && isa<UnreachableInst>(TI))
662 return true;
663
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000664 // Return instructions are only valid if the region is the top level region.
Philip Pfaffe1a0128f2017-05-24 18:39:39 +0000665 if (isa<ReturnInst>(TI) && CurRegion.isTopLevelRegion())
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000666 return true;
667
668 Value *Condition = getConditionFromTerminator(TI);
669
670 if (!Condition)
671 return invalid<ReportInvalidTerminator>(Context, /*Assert=*/true, &BB);
672
673 // UndefValue is not allowed as condition.
674 if (isa<UndefValue>(Condition))
675 return invalid<ReportUndefCond>(Context, /*Assert=*/true, TI, &BB);
676
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000677 if (BranchInst *BI = dyn_cast<BranchInst>(TI))
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000678 return isValidBranch(BB, BI, Condition, IsLoopBranch, Context);
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000679
680 SwitchInst *SI = dyn_cast<SwitchInst>(TI);
681 assert(SI && "Terminator was neither branch nor switch");
682
Johannes Doerfert757a32b2015-10-04 14:54:27 +0000683 return isValidSwitch(BB, SI, Condition, IsLoopBranch, Context);
Johannes Doerfert9a132f32015-09-28 09:33:22 +0000684}
685
Johannes Doerfertcea61932016-02-21 19:13:19 +0000686bool ScopDetection::isValidCallInst(CallInst &CI,
687 DetectionContext &Context) const {
Johannes Doerfert3f500fa2015-01-25 18:07:30 +0000688 if (CI.doesNotReturn())
Tobias Grosser75805372011-04-29 06:27:02 +0000689 return false;
690
691 if (CI.doesNotAccessMemory())
692 return true;
693
Johannes Doerfertcea61932016-02-21 19:13:19 +0000694 if (auto *II = dyn_cast<IntrinsicInst>(&CI))
Johannes Doerferta7920982016-02-25 14:08:48 +0000695 if (isValidIntrinsicInst(*II, Context))
696 return true;
Johannes Doerfertcea61932016-02-21 19:13:19 +0000697
Tobias Grosser75805372011-04-29 06:27:02 +0000698 Function *CalledFunction = CI.getCalledFunction();
699
700 // Indirect calls are not supported.
Tobias Grosser8dd653d2016-06-22 16:22:00 +0000701 if (CalledFunction == nullptr)
Tobias Grosser75805372011-04-29 06:27:02 +0000702 return false;
703
Tobias Grosser898a6362016-03-23 06:40:15 +0000704 if (AllowModrefCall) {
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000705 switch (AA.getModRefBehavior(CalledFunction)) {
Tobias Grosserb94e9b32016-11-21 09:04:45 +0000706 case FMRB_UnknownModRefBehavior:
Tobias Grosser898a6362016-03-23 06:40:15 +0000707 return false;
Tobias Grosserb94e9b32016-11-21 09:04:45 +0000708 case FMRB_DoesNotAccessMemory:
709 case FMRB_OnlyReadsMemory:
Johannes Doerferta7920982016-02-25 14:08:48 +0000710 // Implicitly disable delinearization since we have an unknown
711 // accesses with an unknown access function.
712 Context.HasUnknownAccess = true;
Tobias Grosser898a6362016-03-23 06:40:15 +0000713 Context.AST.add(&CI);
714 return true;
Tobias Grosserb94e9b32016-11-21 09:04:45 +0000715 case FMRB_OnlyReadsArgumentPointees:
716 case FMRB_OnlyAccessesArgumentPointees:
Tobias Grosser898a6362016-03-23 06:40:15 +0000717 for (const auto &Arg : CI.arg_operands()) {
718 if (!Arg->getType()->isPointerTy())
719 continue;
Johannes Doerferta7920982016-02-25 14:08:48 +0000720
Tobias Grosser898a6362016-03-23 06:40:15 +0000721 // Bail if a pointer argument has a base address not known to
722 // ScalarEvolution. Note that a zero pointer is acceptable.
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000723 auto *ArgSCEV = SE.getSCEVAtScope(Arg, LI.getLoopFor(CI.getParent()));
Tobias Grosser898a6362016-03-23 06:40:15 +0000724 if (ArgSCEV->isZero())
725 continue;
726
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000727 auto *BP = dyn_cast<SCEVUnknown>(SE.getPointerBase(ArgSCEV));
Tobias Grosser898a6362016-03-23 06:40:15 +0000728 if (!BP)
729 return false;
730
731 // Implicitly disable delinearization since we have an unknown
732 // accesses with an unknown access function.
733 Context.HasUnknownAccess = true;
734 }
735
736 Context.AST.add(&CI);
737 return true;
Weiming Zhao7614e172016-07-11 18:27:52 +0000738 case FMRB_DoesNotReadMemory:
Tobias Grosser70d27092016-11-13 19:27:24 +0000739 case FMRB_OnlyAccessesInaccessibleMem:
740 case FMRB_OnlyAccessesInaccessibleOrArgMem:
Weiming Zhao7614e172016-07-11 18:27:52 +0000741 return false;
Tobias Grosser898a6362016-03-23 06:40:15 +0000742 }
Johannes Doerferta7920982016-02-25 14:08:48 +0000743 }
744
Johannes Doerfertcea61932016-02-21 19:13:19 +0000745 return false;
746}
747
748bool ScopDetection::isValidIntrinsicInst(IntrinsicInst &II,
749 DetectionContext &Context) const {
750 if (isIgnoredIntrinsic(&II))
Tobias Grosser9c0ffe32015-08-30 16:57:15 +0000751 return true;
Johannes Doerfert3f500fa2015-01-25 18:07:30 +0000752
Johannes Doerfertcea61932016-02-21 19:13:19 +0000753 // The closest loop surrounding the call instruction.
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000754 Loop *L = LI.getLoopFor(II.getParent());
Johannes Doerfertcea61932016-02-21 19:13:19 +0000755
756 // The access function and base pointer for memory intrinsics.
757 const SCEV *AF;
758 const SCEVUnknown *BP;
759
760 switch (II.getIntrinsicID()) {
761 // Memory intrinsics that can be represented are supported.
Eugene Zelenkoa32707d2017-08-25 21:35:27 +0000762 case Intrinsic::memmove:
763 case Intrinsic::memcpy:
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000764 AF = SE.getSCEVAtScope(cast<MemTransferInst>(II).getSource(), L);
Johannes Doerfert733ea342016-03-24 13:50:04 +0000765 if (!AF->isZero()) {
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000766 BP = dyn_cast<SCEVUnknown>(SE.getPointerBase(AF));
Johannes Doerfert733ea342016-03-24 13:50:04 +0000767 // Bail if the source pointer is not valid.
768 if (!isValidAccess(&II, AF, BP, Context))
769 return false;
770 }
Johannes Doerfertcea61932016-02-21 19:13:19 +0000771 // Fall through
Eugene Zelenkoa32707d2017-08-25 21:35:27 +0000772 case Intrinsic::memset:
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000773 AF = SE.getSCEVAtScope(cast<MemIntrinsic>(II).getDest(), L);
Johannes Doerfert733ea342016-03-24 13:50:04 +0000774 if (!AF->isZero()) {
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000775 BP = dyn_cast<SCEVUnknown>(SE.getPointerBase(AF));
Johannes Doerfert733ea342016-03-24 13:50:04 +0000776 // Bail if the destination pointer is not valid.
777 if (!isValidAccess(&II, AF, BP, Context))
778 return false;
779 }
Johannes Doerfertcea61932016-02-21 19:13:19 +0000780
781 // Bail if the length is not affine.
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000782 if (!isAffine(SE.getSCEVAtScope(cast<MemIntrinsic>(II).getLength(), L), L,
Johannes Doerfertcea61932016-02-21 19:13:19 +0000783 Context))
784 return false;
785
786 return true;
787 default:
788 break;
789 }
790
Tobias Grosser75805372011-04-29 06:27:02 +0000791 return false;
792}
793
Michael Kruse5a4ec5c2017-03-07 20:28:43 +0000794bool ScopDetection::isInvariant(Value &Val, const Region &Reg,
795 DetectionContext &Ctx) const {
Tobias Grosser458fb782014-01-28 12:58:58 +0000796 // A reference to function argument or constant value is invariant.
797 if (isa<Argument>(Val) || isa<Constant>(Val))
798 return true;
799
Michael Kruse5a4ec5c2017-03-07 20:28:43 +0000800 Instruction *I = dyn_cast<Instruction>(&Val);
Tobias Grosser458fb782014-01-28 12:58:58 +0000801 if (!I)
802 return false;
803
804 if (!Reg.contains(I))
805 return true;
806
Michael Kruse5a4ec5c2017-03-07 20:28:43 +0000807 // Loads within the SCoP may read arbitrary values, need to hoist them. If it
808 // is not hoistable, it will be rejected later, but here we assume it is and
809 // that makes the value invariant.
810 if (auto LI = dyn_cast<LoadInst>(I)) {
811 Ctx.RequiredILS.insert(LI);
812 return true;
813 }
814
Michael Kruse6744efa8d2017-03-08 15:14:46 +0000815 return false;
Tobias Grosser458fb782014-01-28 12:58:58 +0000816}
817
Eugene Zelenkoa32707d2017-08-25 21:35:27 +0000818namespace {
819
Tobias Grosserc80d6972016-09-02 06:33:33 +0000820/// Remove smax of smax(0, size) expressions from a SCEV expression and
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000821/// register the '...' components.
822///
Michael Krusea6d48f52017-06-08 12:06:15 +0000823/// Array access expressions as they are generated by GFortran contain smax(0,
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000824/// size) expressions that confuse the 'normal' delinearization algorithm.
825/// However, if we extract such expressions before the normal delinearization
826/// takes place they can actually help to identify array size expressions in
Michael Krusea6d48f52017-06-08 12:06:15 +0000827/// Fortran accesses. For the subsequently following delinearization the smax(0,
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000828/// size) component can be replaced by just 'size'. This is correct as we will
829/// always add and verify the assumption that for all subscript expressions
830/// 'exp' the inequality 0 <= exp < size holds. Hence, we will also verify
831/// that 0 <= size, which means smax(0, size) == size.
Tobias Grosserebb626e2016-10-29 06:19:34 +0000832class SCEVRemoveMax : public SCEVRewriteVisitor<SCEVRemoveMax> {
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000833public:
Eugene Zelenkoa32707d2017-08-25 21:35:27 +0000834 SCEVRemoveMax(ScalarEvolution &SE, std::vector<const SCEV *> *Terms)
835 : SCEVRewriteVisitor(SE), Terms(Terms) {}
836
Tobias Grosserebb626e2016-10-29 06:19:34 +0000837 static const SCEV *rewrite(const SCEV *Scev, ScalarEvolution &SE,
838 std::vector<const SCEV *> *Terms = nullptr) {
839 SCEVRemoveMax Rewriter(SE, Terms);
840 return Rewriter.visit(Scev);
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000841 }
842
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000843 const SCEV *visitSMaxExpr(const SCEVSMaxExpr *Expr) {
Michael Kruse8fc28962015-12-20 14:42:32 +0000844 if ((Expr->getNumOperands() == 2) && Expr->getOperand(0)->isZero()) {
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000845 auto Res = visit(Expr->getOperand(1));
846 if (Terms)
847 (*Terms).push_back(Res);
848 return Res;
849 }
850
851 return Expr;
852 }
853
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000854private:
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000855 std::vector<const SCEV *> *Terms;
856};
857
Eugene Zelenkoa32707d2017-08-25 21:35:27 +0000858} // namespace
859
Tobias Grosserd68ba422015-11-24 05:00:36 +0000860SmallVector<const SCEV *, 4>
861ScopDetection::getDelinearizationTerms(DetectionContext &Context,
862 const SCEVUnknown *BasePointer) const {
863 SmallVector<const SCEV *, 4> Terms;
864 for (const auto &Pair : Context.Accesses[BasePointer]) {
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000865 std::vector<const SCEV *> MaxTerms;
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000866 SCEVRemoveMax::rewrite(Pair.second, SE, &MaxTerms);
Eugene Zelenkoa32707d2017-08-25 21:35:27 +0000867 if (!MaxTerms.empty()) {
Tobias Grosser2f8e43d2015-11-24 17:06:38 +0000868 Terms.insert(Terms.begin(), MaxTerms.begin(), MaxTerms.end());
869 continue;
870 }
Tobias Grosserd68ba422015-11-24 05:00:36 +0000871 // In case the outermost expression is a plain add, we check if any of its
872 // terms has the form 4 * %inst * %param * %param ..., aka a term that
873 // contains a product between a parameter and an instruction that is
874 // inside the scop. Such instructions, if allowed at all, are instructions
875 // SCEV can not represent, but Polly is still looking through. As a
876 // result, these instructions can depend on induction variables and are
877 // most likely no array sizes. However, terms that are multiplied with
878 // them are likely candidates for array sizes.
879 if (auto *AF = dyn_cast<SCEVAddExpr>(Pair.second)) {
880 for (auto Op : AF->operands()) {
881 if (auto *AF2 = dyn_cast<SCEVAddRecExpr>(Op))
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000882 SE.collectParametricTerms(AF2, Terms);
Tobias Grosserd68ba422015-11-24 05:00:36 +0000883 if (auto *AF2 = dyn_cast<SCEVMulExpr>(Op)) {
884 SmallVector<const SCEV *, 0> Operands;
Johannes Doerfertfb79a962015-02-23 14:18:28 +0000885
Tobias Grosserd68ba422015-11-24 05:00:36 +0000886 for (auto *MulOp : AF2->operands()) {
887 if (auto *Const = dyn_cast<SCEVConstant>(MulOp))
888 Operands.push_back(Const);
889 if (auto *Unknown = dyn_cast<SCEVUnknown>(MulOp)) {
890 if (auto *Inst = dyn_cast<Instruction>(Unknown->getValue())) {
891 if (!Context.CurRegion.contains(Inst))
Tobias Grosser1b13dde2015-06-29 14:44:22 +0000892 Operands.push_back(MulOp);
Tobias Grosserd68ba422015-11-24 05:00:36 +0000893
894 } else {
895 Operands.push_back(MulOp);
Tobias Grosser1b13dde2015-06-29 14:44:22 +0000896 }
897 }
Tobias Grosser1b13dde2015-06-29 14:44:22 +0000898 }
Tobias Grosserd68ba422015-11-24 05:00:36 +0000899 if (Operands.size())
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000900 Terms.push_back(SE.getMulExpr(Operands));
Tobias Grosser1b13dde2015-06-29 14:44:22 +0000901 }
902 }
Tobias Grosser230acc42014-09-13 14:47:55 +0000903 }
Tobias Grosserd68ba422015-11-24 05:00:36 +0000904 if (Terms.empty())
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000905 SE.collectParametricTerms(Pair.second, Terms);
Tobias Grosserd68ba422015-11-24 05:00:36 +0000906 }
907 return Terms;
908}
Sebastian Pope8863b82014-05-12 19:02:02 +0000909
Tobias Grosserd68ba422015-11-24 05:00:36 +0000910bool ScopDetection::hasValidArraySizes(DetectionContext &Context,
911 SmallVectorImpl<const SCEV *> &Sizes,
Michael Krusec7e0d9c2016-03-01 21:44:06 +0000912 const SCEVUnknown *BasePointer,
913 Loop *Scope) const {
Tobias Grosser1e55db32017-05-27 15:18:53 +0000914 // If no sizes were found, all sizes are trivially valid. We allow this case
915 // to make it possible to pass known-affine accesses to the delinearization to
916 // try to recover some interesting multi-dimensional accesses, but to still
917 // allow the already known to be affine access in case the delinearization
918 // fails. In such situations, the delinearization will just return a Sizes
919 // array of size zero.
920 if (Sizes.size() == 0)
921 return true;
922
Tobias Grosserd68ba422015-11-24 05:00:36 +0000923 Value *BaseValue = BasePointer->getValue();
924 Region &CurRegion = Context.CurRegion;
925 for (const SCEV *DelinearizedSize : Sizes) {
Johannes Doerfertec8a2172016-04-25 13:32:36 +0000926 if (!isAffine(DelinearizedSize, Scope, Context)) {
Tobias Grosserd68ba422015-11-24 05:00:36 +0000927 Sizes.clear();
928 break;
Tobias Grosser5528dcd2015-10-25 08:40:38 +0000929 }
Tobias Grosserd68ba422015-11-24 05:00:36 +0000930 if (auto *Unknown = dyn_cast<SCEVUnknown>(DelinearizedSize)) {
931 auto *V = dyn_cast<Value>(Unknown->getValue());
932 if (auto *Load = dyn_cast<LoadInst>(V)) {
933 if (Context.CurRegion.contains(Load) &&
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000934 isHoistableLoad(Load, CurRegion, LI, SE, DT))
Tobias Grosserd68ba422015-11-24 05:00:36 +0000935 Context.RequiredILS.insert(Load);
Tobias Grosser230acc42014-09-13 14:47:55 +0000936 continue;
Tobias Grosser230acc42014-09-13 14:47:55 +0000937 }
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000938 }
Siddharth Bhata1b20862017-07-13 12:18:56 +0000939 if (hasScalarDepsInsideRegion(DelinearizedSize, &CurRegion, Scope, false,
940 Context.RequiredILS))
Tobias Grosserbfaf1ae2015-12-21 09:09:39 +0000941 return invalid<ReportNonAffineAccess>(
Tobias Grosserd68ba422015-11-24 05:00:36 +0000942 Context, /*Assert=*/true, DelinearizedSize,
943 Context.Accesses[BasePointer].front().first, BaseValue);
944 }
Tobias Grosser230acc42014-09-13 14:47:55 +0000945
Tobias Grosserd68ba422015-11-24 05:00:36 +0000946 // No array shape derived.
947 if (Sizes.empty()) {
948 if (AllowNonAffine)
949 return true;
950
Tobias Grosser230acc42014-09-13 14:47:55 +0000951 for (const auto &Pair : Context.Accesses[BasePointer]) {
952 const Instruction *Insn = Pair.first;
Tobias Grosserd68ba422015-11-24 05:00:36 +0000953 const SCEV *AF = Pair.second;
Tobias Grosser230acc42014-09-13 14:47:55 +0000954
Johannes Doerfertec8a2172016-04-25 13:32:36 +0000955 if (!isAffine(AF, Scope, Context)) {
Tobias Grosserd68ba422015-11-24 05:00:36 +0000956 invalid<ReportNonAffineAccess>(Context, /*Assert=*/true, AF, Insn,
957 BaseValue);
958 if (!KeepGoing)
Tobias Grosser230acc42014-09-13 14:47:55 +0000959 return false;
960 }
961 }
Tobias Grosserd68ba422015-11-24 05:00:36 +0000962 return false;
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000963 }
Sebastian Pope8863b82014-05-12 19:02:02 +0000964 return true;
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000965}
966
Tobias Grosserd68ba422015-11-24 05:00:36 +0000967// We first store the resulting memory accesses in TempMemoryAccesses. Only
968// if the access functions for all memory accesses have been successfully
969// delinearized we continue. Otherwise, we either report a failure or, if
970// non-affine accesses are allowed, we drop the information. In case the
971// information is dropped the memory accesses need to be overapproximated
972// when translated to a polyhedral representation.
973bool ScopDetection::computeAccessFunctions(
974 DetectionContext &Context, const SCEVUnknown *BasePointer,
975 std::shared_ptr<ArrayShape> Shape) const {
976 Value *BaseValue = BasePointer->getValue();
977 bool BasePtrHasNonAffine = false;
978 MapInsnToMemAcc TempMemoryAccesses;
979 for (const auto &Pair : Context.Accesses[BasePointer]) {
980 const Instruction *Insn = Pair.first;
981 auto *AF = Pair.second;
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000982 AF = SCEVRemoveMax::rewrite(AF, SE);
Tobias Grosserd68ba422015-11-24 05:00:36 +0000983 bool IsNonAffine = false;
984 TempMemoryAccesses.insert(std::make_pair(Insn, MemAcc(Insn, Shape)));
985 MemAcc *Acc = &TempMemoryAccesses.find(Insn)->second;
Philip Pfaffe5cc87e32017-05-12 14:37:29 +0000986 auto *Scope = LI.getLoopFor(Insn->getParent());
Tobias Grosserd68ba422015-11-24 05:00:36 +0000987
988 if (!AF) {
Johannes Doerfertec8a2172016-04-25 13:32:36 +0000989 if (isAffine(Pair.second, Scope, Context))
Tobias Grosserd68ba422015-11-24 05:00:36 +0000990 Acc->DelinearizedSubscripts.push_back(Pair.second);
991 else
992 IsNonAffine = true;
993 } else {
Tobias Grosser1e55db32017-05-27 15:18:53 +0000994 if (Shape->DelinearizedSizes.size() == 0) {
995 Acc->DelinearizedSubscripts.push_back(AF);
996 } else {
997 SE.computeAccessFunctions(AF, Acc->DelinearizedSubscripts,
998 Shape->DelinearizedSizes);
999 if (Acc->DelinearizedSubscripts.size() == 0)
1000 IsNonAffine = true;
1001 }
Tobias Grosserd68ba422015-11-24 05:00:36 +00001002 for (const SCEV *S : Acc->DelinearizedSubscripts)
Johannes Doerfertec8a2172016-04-25 13:32:36 +00001003 if (!isAffine(S, Scope, Context))
Tobias Grosserd68ba422015-11-24 05:00:36 +00001004 IsNonAffine = true;
1005 }
1006
1007 // (Possibly) report non affine access
1008 if (IsNonAffine) {
1009 BasePtrHasNonAffine = true;
1010 if (!AllowNonAffine)
1011 invalid<ReportNonAffineAccess>(Context, /*Assert=*/true, Pair.second,
1012 Insn, BaseValue);
1013 if (!KeepGoing && !AllowNonAffine)
1014 return false;
1015 }
1016 }
1017
1018 if (!BasePtrHasNonAffine)
Hongbin Zheng22623202016-02-15 00:20:58 +00001019 Context.InsnToMemAcc.insert(TempMemoryAccesses.begin(),
1020 TempMemoryAccesses.end());
Tobias Grosserd68ba422015-11-24 05:00:36 +00001021
1022 return true;
1023}
1024
Michael Krusec7e0d9c2016-03-01 21:44:06 +00001025bool ScopDetection::hasBaseAffineAccesses(DetectionContext &Context,
1026 const SCEVUnknown *BasePointer,
1027 Loop *Scope) const {
Tobias Grosserd68ba422015-11-24 05:00:36 +00001028 auto Shape = std::shared_ptr<ArrayShape>(new ArrayShape(BasePointer));
1029
1030 auto Terms = getDelinearizationTerms(Context, BasePointer);
1031
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001032 SE.findArrayDimensions(Terms, Shape->DelinearizedSizes,
1033 Context.ElementSize[BasePointer]);
Tobias Grosserd68ba422015-11-24 05:00:36 +00001034
Michael Krusec7e0d9c2016-03-01 21:44:06 +00001035 if (!hasValidArraySizes(Context, Shape->DelinearizedSizes, BasePointer,
1036 Scope))
Tobias Grosserd68ba422015-11-24 05:00:36 +00001037 return false;
1038
1039 return computeAccessFunctions(Context, BasePointer, Shape);
1040}
1041
1042bool ScopDetection::hasAffineMemoryAccesses(DetectionContext &Context) const {
Johannes Doerferta7920982016-02-25 14:08:48 +00001043 // TODO: If we have an unknown access and other non-affine accesses we do
1044 // not try to delinearize them for now.
1045 if (Context.HasUnknownAccess && !Context.NonAffineAccesses.empty())
1046 return AllowNonAffine;
1047
Michael Krusec7e0d9c2016-03-01 21:44:06 +00001048 for (auto &Pair : Context.NonAffineAccesses) {
1049 auto *BasePointer = Pair.first;
1050 auto *Scope = Pair.second;
1051 if (!hasBaseAffineAccesses(Context, BasePointer, Scope)) {
Tobias Grosserd68ba422015-11-24 05:00:36 +00001052 if (KeepGoing)
1053 continue;
1054 else
1055 return false;
1056 }
Michael Krusec7e0d9c2016-03-01 21:44:06 +00001057 }
Tobias Grosserd68ba422015-11-24 05:00:36 +00001058 return true;
1059}
1060
Johannes Doerfertcea61932016-02-21 19:13:19 +00001061bool ScopDetection::isValidAccess(Instruction *Inst, const SCEV *AF,
1062 const SCEVUnknown *BP,
1063 DetectionContext &Context) const {
Johannes Doerfertfb79a962015-02-23 14:18:28 +00001064
Johannes Doerfertcea61932016-02-21 19:13:19 +00001065 if (!BP)
Michael Kruse70131d32016-01-27 17:09:17 +00001066 return invalid<ReportNoBasePtr>(Context, /*Assert=*/true, Inst);
Tobias Grosserb8710b52011-11-10 12:44:50 +00001067
Johannes Doerfertcea61932016-02-21 19:13:19 +00001068 auto *BV = BP->getValue();
1069 if (isa<UndefValue>(BV))
Michael Kruse70131d32016-01-27 17:09:17 +00001070 return invalid<ReportUndefBasePtr>(Context, /*Assert=*/true, Inst);
Tobias Grosserb8710b52011-11-10 12:44:50 +00001071
Johannes Doerfertcea61932016-02-21 19:13:19 +00001072 // FIXME: Think about allowing IntToPtrInst
1073 if (IntToPtrInst *Inst = dyn_cast<IntToPtrInst>(BV))
1074 return invalid<ReportIntToPtr>(Context, /*Assert=*/true, Inst);
1075
Tobias Grosser458fb782014-01-28 12:58:58 +00001076 // Check that the base address of the access is invariant in the current
1077 // region.
Michael Kruse5a4ec5c2017-03-07 20:28:43 +00001078 if (!isInvariant(*BV, Context.CurRegion, Context))
Johannes Doerfertcea61932016-02-21 19:13:19 +00001079 return invalid<ReportVariantBasePtr>(Context, /*Assert=*/true, BV, Inst);
Tobias Grosser458fb782014-01-28 12:58:58 +00001080
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001081 AF = SE.getMinusSCEV(AF, BP);
Tobias Grosserb8710b52011-11-10 12:44:50 +00001082
Johannes Doerfertcea61932016-02-21 19:13:19 +00001083 const SCEV *Size;
1084 if (!isa<MemIntrinsic>(Inst)) {
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001085 Size = SE.getElementSize(Inst);
Tobias Grosser8ebdc2d2016-02-07 08:48:57 +00001086 } else {
Johannes Doerfertcea61932016-02-21 19:13:19 +00001087 auto *SizeTy =
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001088 SE.getEffectiveSCEVType(PointerType::getInt8PtrTy(SE.getContext()));
1089 Size = SE.getConstant(SizeTy, 8);
Tobias Grosser8ebdc2d2016-02-07 08:48:57 +00001090 }
Tobias Grosserbcd4eff2014-09-13 14:47:40 +00001091
Johannes Doerfertcea61932016-02-21 19:13:19 +00001092 if (Context.ElementSize[BP]) {
1093 if (!AllowDifferentTypes && Context.ElementSize[BP] != Size)
1094 return invalid<ReportDifferentArrayElementSize>(Context, /*Assert=*/true,
1095 Inst, BV);
1096
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001097 Context.ElementSize[BP] = SE.getSMinExpr(Size, Context.ElementSize[BP]);
Johannes Doerfertcea61932016-02-21 19:13:19 +00001098 } else {
1099 Context.ElementSize[BP] = Size;
1100 }
1101
1102 bool IsVariantInNonAffineLoop = false;
Johannes Doerfertf3e98f42015-04-12 22:52:20 +00001103 SetVector<const Loop *> Loops;
Johannes Doerfertcea61932016-02-21 19:13:19 +00001104 findLoops(AF, Loops);
Johannes Doerfertf3e98f42015-04-12 22:52:20 +00001105 for (const Loop *L : Loops)
1106 if (Context.BoxedLoopsSet.count(L))
Johannes Doerfertcea61932016-02-21 19:13:19 +00001107 IsVariantInNonAffineLoop = true;
Johannes Doerfertf3e98f42015-04-12 22:52:20 +00001108
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001109 auto *Scope = LI.getLoopFor(Inst->getParent());
Johannes Doerfertec8a2172016-04-25 13:32:36 +00001110 bool IsAffine = !IsVariantInNonAffineLoop && isAffine(AF, Scope, Context);
Johannes Doerfertcea61932016-02-21 19:13:19 +00001111 // Do not try to delinearize memory intrinsics and force them to be affine.
1112 if (isa<MemIntrinsic>(Inst) && !IsAffine) {
1113 return invalid<ReportNonAffineAccess>(Context, /*Assert=*/true, AF, Inst,
1114 BV);
1115 } else if (PollyDelinearize && !IsVariantInNonAffineLoop) {
1116 Context.Accesses[BP].push_back({Inst, AF});
Sebastian Pop46e1ecd2014-05-09 22:45:15 +00001117
Tobias Grosser1e55db32017-05-27 15:18:53 +00001118 if (!IsAffine || hasIVParams(AF))
Michael Krusec7e0d9c2016-03-01 21:44:06 +00001119 Context.NonAffineAccesses.insert(
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001120 std::make_pair(BP, LI.getLoopFor(Inst->getParent())));
Johannes Doerfertcea61932016-02-21 19:13:19 +00001121 } else if (!AllowNonAffine && !IsAffine) {
1122 return invalid<ReportNonAffineAccess>(Context, /*Assert=*/true, AF, Inst,
1123 BV);
Sebastian Pop18016682014-04-08 21:20:44 +00001124 }
Tobias Grosser75805372011-04-29 06:27:02 +00001125
Tobias Grosser1eedb672014-09-24 21:04:29 +00001126 if (IgnoreAliasing)
Sebastian Pop8c2d7532013-07-03 22:50:36 +00001127 return true;
Tobias Grosserfff5adc2011-11-10 13:21:43 +00001128
Sebastian Pop8c2d7532013-07-03 22:50:36 +00001129 // Check if the base pointer of the memory access does alias with
1130 // any other pointer. This cannot be handled at the moment.
Benjamin Kramerae81abf2014-10-05 11:58:57 +00001131 AAMDNodes AATags;
Johannes Doerfertcea61932016-02-21 19:13:19 +00001132 Inst->getAAMetadata(AATags);
Benjamin Kramerae81abf2014-10-05 11:58:57 +00001133 AliasSet &AS = Context.AST.getAliasSetForPointer(
Johannes Doerfertcea61932016-02-21 19:13:19 +00001134 BP->getValue(), MemoryLocation::UnknownSize, AATags);
Tobias Grosser428b3e42013-02-04 15:46:25 +00001135
Tobias Grosser1eedb672014-09-24 21:04:29 +00001136 if (!AS.isMustAlias()) {
1137 if (PollyUseRuntimeAliasChecks) {
1138 bool CanBuildRunTimeCheck = true;
1139 // The run-time alias check places code that involves the base pointer at
1140 // the beginning of the SCoP. This breaks if the base pointer is defined
1141 // inside the scop. Hence, we can only create a run-time check if we are
1142 // sure the base pointer is not an instruction defined inside the scop.
Johannes Doerfert09e36972015-10-07 20:17:36 +00001143 // However, we can ignore loads that will be hoisted.
Tobias Grosser1eedb672014-09-24 21:04:29 +00001144 for (const auto &Ptr : AS) {
1145 Instruction *Inst = dyn_cast<Instruction>(Ptr.getValue());
Johannes Doerfertcea61932016-02-21 19:13:19 +00001146 if (Inst && Context.CurRegion.contains(Inst)) {
Johannes Doerfert09e36972015-10-07 20:17:36 +00001147 auto *Load = dyn_cast<LoadInst>(Inst);
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001148 if (Load && isHoistableLoad(Load, Context.CurRegion, LI, SE, DT)) {
Johannes Doerfert09e36972015-10-07 20:17:36 +00001149 Context.RequiredILS.insert(Load);
1150 continue;
1151 }
1152
Tobias Grosser1eedb672014-09-24 21:04:29 +00001153 CanBuildRunTimeCheck = false;
1154 break;
1155 }
1156 }
1157
1158 if (CanBuildRunTimeCheck)
1159 return true;
1160 }
Michael Kruse70131d32016-01-27 17:09:17 +00001161 return invalid<ReportAlias>(Context, /*Assert=*/true, Inst, AS);
Tobias Grosser1eedb672014-09-24 21:04:29 +00001162 }
Tobias Grosser75805372011-04-29 06:27:02 +00001163
1164 return true;
1165}
1166
Johannes Doerfertcea61932016-02-21 19:13:19 +00001167bool ScopDetection::isValidMemoryAccess(MemAccInst Inst,
1168 DetectionContext &Context) const {
1169 Value *Ptr = Inst.getPointerOperand();
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001170 Loop *L = LI.getLoopFor(Inst->getParent());
1171 const SCEV *AccessFunction = SE.getSCEVAtScope(Ptr, L);
Johannes Doerfertcea61932016-02-21 19:13:19 +00001172 const SCEVUnknown *BasePointer;
1173
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001174 BasePointer = dyn_cast<SCEVUnknown>(SE.getPointerBase(AccessFunction));
Johannes Doerfertcea61932016-02-21 19:13:19 +00001175
1176 return isValidAccess(Inst, AccessFunction, BasePointer, Context);
1177}
1178
Tobias Grosser75805372011-04-29 06:27:02 +00001179bool ScopDetection::isValidInstruction(Instruction &Inst,
1180 DetectionContext &Context) const {
Tobias Grosserb12b0062015-11-11 12:44:18 +00001181 for (auto &Op : Inst.operands()) {
1182 auto *OpInst = dyn_cast<Instruction>(&Op);
1183
1184 if (!OpInst)
1185 continue;
1186
Tobias Grosser1f93d0f2017-09-26 15:00:10 +00001187 if (isErrorBlock(*OpInst->getParent(), Context.CurRegion, LI, DT)) {
1188 auto *PHI = dyn_cast<PHINode>(OpInst);
1189 if (PHI) {
1190 for (User *U : PHI->users()) {
1191 if (!isa<TerminatorInst>(U))
1192 return false;
1193 }
1194 } else {
1195 return false;
1196 }
1197 }
Tobias Grosserb12b0062015-11-11 12:44:18 +00001198 }
1199
Johannes Doerfert81c41b92016-04-09 21:55:58 +00001200 if (isa<LandingPadInst>(&Inst) || isa<ResumeInst>(&Inst))
1201 return false;
1202
Tobias Grosser75805372011-04-29 06:27:02 +00001203 // We only check the call instruction but not invoke instruction.
1204 if (CallInst *CI = dyn_cast<CallInst>(&Inst)) {
Johannes Doerfertcea61932016-02-21 19:13:19 +00001205 if (isValidCallInst(*CI, Context))
Tobias Grosser75805372011-04-29 06:27:02 +00001206 return true;
1207
Andreas Simbuerger01a37a02014-04-02 11:54:01 +00001208 return invalid<ReportFuncCall>(Context, /*Assert=*/true, &Inst);
Tobias Grosser75805372011-04-29 06:27:02 +00001209 }
1210
Tobias Grosser1f0236d2016-11-21 09:07:30 +00001211 if (!Inst.mayReadOrWriteMemory()) {
Tobias Grosser5b1a7f22013-07-22 03:50:33 +00001212 if (!isa<AllocaInst>(Inst))
1213 return true;
Tobias Grosser75805372011-04-29 06:27:02 +00001214
Andreas Simbuerger01a37a02014-04-02 11:54:01 +00001215 return invalid<ReportAlloca>(Context, /*Assert=*/true, &Inst);
Tobias Grosser75805372011-04-29 06:27:02 +00001216 }
1217
1218 // Check the access function.
Michael Kruse70131d32016-01-27 17:09:17 +00001219 if (auto MemInst = MemAccInst::dyn_cast(Inst)) {
Hongbin Zheng8efb22e2016-02-27 01:49:58 +00001220 Context.hasStores |= isa<StoreInst>(MemInst);
1221 Context.hasLoads |= isa<LoadInst>(MemInst);
Michael Kruse70131d32016-01-27 17:09:17 +00001222 if (!MemInst.isSimple())
1223 return invalid<ReportNonSimpleMemoryAccess>(Context, /*Assert=*/true,
1224 &Inst);
Tobias Grosserbf45e742015-10-25 13:48:40 +00001225
Michael Kruse70131d32016-01-27 17:09:17 +00001226 return isValidMemoryAccess(MemInst, Context);
Tobias Grosserd1e33e72015-02-19 05:31:07 +00001227 }
Tobias Grosser75805372011-04-29 06:27:02 +00001228
1229 // We do not know this instruction, therefore we assume it is invalid.
Andreas Simbuerger01a37a02014-04-02 11:54:01 +00001230 return invalid<ReportUnknownInst>(Context, /*Assert=*/true, &Inst);
Tobias Grosser75805372011-04-29 06:27:02 +00001231}
1232
Tobias Grosser6d0970f2017-08-24 19:47:15 +00001233/// Check whether @p L has exiting blocks.
1234///
1235/// @param L The loop of interest
1236///
1237/// @return True if the loop has exiting blocks, false otherwise.
1238static bool hasExitingBlocks(Loop *L) {
1239 SmallVector<BasicBlock *, 4> ExitingBlocks;
1240 L->getExitingBlocks(ExitingBlocks);
1241 return !ExitingBlocks.empty();
1242}
1243
Johannes Doerfertd020b772015-08-27 06:53:52 +00001244bool ScopDetection::canUseISLTripCount(Loop *L,
1245 DetectionContext &Context) const {
Johannes Doerfert30ffb6f2015-10-04 14:53:18 +00001246 // Ensure the loop has valid exiting blocks as well as latches, otherwise we
1247 // need to overapproximate it as a boxed loop.
1248 SmallVector<BasicBlock *, 4> LoopControlBlocks;
Tobias Grosser151ae322016-04-03 19:36:52 +00001249 L->getExitingBlocks(LoopControlBlocks);
Johannes Doerfertd5edbd62016-04-03 23:09:06 +00001250 L->getLoopLatches(LoopControlBlocks);
Johannes Doerfert30ffb6f2015-10-04 14:53:18 +00001251 for (BasicBlock *ControlBB : LoopControlBlocks) {
Tobias Grosserb76cd3c2015-11-11 08:42:20 +00001252 if (!isValidCFG(*ControlBB, true, false, Context))
Johannes Doerfertd020b772015-08-27 06:53:52 +00001253 return false;
1254 }
1255
Johannes Doerfertd020b772015-08-27 06:53:52 +00001256 // We can use ISL to compute the trip count of L.
1257 return true;
1258}
1259
Tobias Grosser75805372011-04-29 06:27:02 +00001260bool ScopDetection::isValidLoop(Loop *L, DetectionContext &Context) const {
Tobias Grosser349d1c32016-09-20 17:05:22 +00001261 // Loops that contain part but not all of the blocks of a region cannot be
1262 // handled by the schedule generation. Such loop constructs can happen
1263 // because a region can contain BBs that have no path to the exit block
Tobias Grosser6d0970f2017-08-24 19:47:15 +00001264 // (Infinite loops, UnreachableInst), but such blocks are never part of a
1265 // loop.
1266 //
1267 // _______________
1268 // | Loop Header | <-----------.
1269 // --------------- |
1270 // | |
1271 // _______________ ______________
1272 // | RegionEntry |-----> | RegionExit |----->
1273 // --------------- --------------
1274 // |
1275 // _______________
1276 // | EndlessLoop | <--.
1277 // --------------- |
1278 // | |
1279 // \------------/
1280 //
1281 // In the example above, the loop (LoopHeader,RegionEntry,RegionExit) is
1282 // neither entirely contained in the region RegionEntry->RegionExit
1283 // (containing RegionEntry,EndlessLoop) nor is the region entirely contained
1284 // in the loop.
1285 // The block EndlessLoop is contained in the region because Region::contains
1286 // tests whether it is not dominated by RegionExit. This is probably to not
1287 // having to query the PostdominatorTree. Instead of an endless loop, a dead
1288 // end can also be formed by an UnreachableInst. This case is already caught
1289 // by isErrorBlock(). We hence only have to reject endless loops here.
1290 if (!hasExitingBlocks(L))
1291 return invalid<ReportLoopHasNoExit>(Context, /*Assert=*/true, L);
Tobias Grosser349d1c32016-09-20 17:05:22 +00001292
Johannes Doerfertf61df692015-10-04 14:56:08 +00001293 if (canUseISLTripCount(L, Context))
Johannes Doerfertba65c162015-02-24 11:45:21 +00001294 return true;
Johannes Doerfertf3e98f42015-04-12 22:52:20 +00001295
Johannes Doerfertb68cffb2015-09-10 15:27:46 +00001296 if (AllowNonAffineSubLoops && AllowNonAffineSubRegions) {
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001297 Region *R = RI.getRegionFor(L->getHeader());
Johannes Doerfert757a32b2015-10-04 14:54:27 +00001298 while (R != &Context.CurRegion && !R->contains(L))
1299 R = R->getParent();
1300
1301 if (addOverApproximatedRegion(R, Context))
1302 return true;
Johannes Doerfertf3e98f42015-04-12 22:52:20 +00001303 }
Tobias Grosser75805372011-04-29 06:27:02 +00001304
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001305 const SCEV *LoopCount = SE.getBackedgeTakenCount(L);
Johannes Doerfertba65c162015-02-24 11:45:21 +00001306 return invalid<ReportLoopBound>(Context, /*Assert=*/true, L, LoopCount);
Tobias Grosser75805372011-04-29 06:27:02 +00001307}
1308
Tobias Grosserc80d6972016-09-02 06:33:33 +00001309/// Return the number of loops in @p L (incl. @p L) that have a trip
Tobias Grosserb45ae562016-11-26 07:37:46 +00001310/// count that is not known to be less than @MinProfitableTrips.
1311ScopDetection::LoopStats
1312ScopDetection::countBeneficialSubLoops(Loop *L, ScalarEvolution &SE,
Tobias Grossercd01a362017-02-17 08:12:36 +00001313 unsigned MinProfitableTrips) {
Johannes Doerfert7175bdf2015-09-20 14:56:54 +00001314 auto *TripCount = SE.getBackedgeTakenCount(L);
1315
Tobias Grosserb45ae562016-11-26 07:37:46 +00001316 int NumLoops = 1;
1317 int MaxLoopDepth = 1;
Michael Kruse7fac28fa2017-08-23 13:29:59 +00001318 if (MinProfitableTrips > 0)
1319 if (auto *TripCountC = dyn_cast<SCEVConstant>(TripCount))
1320 if (TripCountC->getType()->getScalarSizeInBits() <= 64)
1321 if (TripCountC->getValue()->getZExtValue() <= MinProfitableTrips)
1322 NumLoops -= 1;
Johannes Doerfert7175bdf2015-09-20 14:56:54 +00001323
Tobias Grosserb45ae562016-11-26 07:37:46 +00001324 for (auto &SubLoop : *L) {
1325 LoopStats Stats = countBeneficialSubLoops(SubLoop, SE, MinProfitableTrips);
1326 NumLoops += Stats.NumLoops;
Tobias Grosser65ce9362017-02-17 08:08:54 +00001327 MaxLoopDepth = std::max(MaxLoopDepth, Stats.MaxDepth + 1);
Tobias Grosserb45ae562016-11-26 07:37:46 +00001328 }
Johannes Doerfert7175bdf2015-09-20 14:56:54 +00001329
Tobias Grosserb45ae562016-11-26 07:37:46 +00001330 return {NumLoops, MaxLoopDepth};
Johannes Doerfert7175bdf2015-09-20 14:56:54 +00001331}
1332
Tobias Grosserb45ae562016-11-26 07:37:46 +00001333ScopDetection::LoopStats
Tobias Grossercd01a362017-02-17 08:12:36 +00001334ScopDetection::countBeneficialLoops(Region *R, ScalarEvolution &SE,
1335 LoopInfo &LI, unsigned MinProfitableTrips) {
Johannes Doerfertf61df692015-10-04 14:56:08 +00001336 int LoopNum = 0;
Tobias Grosserb45ae562016-11-26 07:37:46 +00001337 int MaxLoopDepth = 0;
Tobias Grossered21a1f2015-08-27 16:55:18 +00001338
Tobias Grossercd01a362017-02-17 08:12:36 +00001339 auto L = LI.getLoopFor(R->getEntry());
Tobias Grosser93ab5582017-08-27 21:39:25 +00001340
1341 // If L is fully contained in R, move to first loop surrounding R. Otherwise,
1342 // L is either nullptr or already surrounding R.
1343 if (L && R->contains(L)) {
1344 L = R->outermostLoopInRegion(L);
1345 L = L->getParentLoop();
1346 }
Tobias Grossered21a1f2015-08-27 16:55:18 +00001347
Tobias Grosser050e0cb2015-08-31 12:08:11 +00001348 auto SubLoops =
Tobias Grossercd01a362017-02-17 08:12:36 +00001349 L ? L->getSubLoopsVector() : std::vector<Loop *>(LI.begin(), LI.end());
Tobias Grosser050e0cb2015-08-31 12:08:11 +00001350
1351 for (auto &SubLoop : SubLoops)
Tobias Grosserb45ae562016-11-26 07:37:46 +00001352 if (R->contains(SubLoop)) {
1353 LoopStats Stats =
Tobias Grossercd01a362017-02-17 08:12:36 +00001354 countBeneficialSubLoops(SubLoop, SE, MinProfitableTrips);
Tobias Grosserb45ae562016-11-26 07:37:46 +00001355 LoopNum += Stats.NumLoops;
1356 MaxLoopDepth = std::max(MaxLoopDepth, Stats.MaxDepth);
1357 }
Tobias Grosser050e0cb2015-08-31 12:08:11 +00001358
Tobias Grosserb45ae562016-11-26 07:37:46 +00001359 return {LoopNum, MaxLoopDepth};
Tobias Grossered21a1f2015-08-27 16:55:18 +00001360}
1361
Tobias Grosser75805372011-04-29 06:27:02 +00001362Region *ScopDetection::expandRegion(Region &R) {
Hongbin Zhenged986ab2012-04-07 15:14:28 +00001363 // Initial no valid region was found (greater than R)
Tobias Grosserd5d93ec2015-06-04 17:59:54 +00001364 std::unique_ptr<Region> LastValidRegion;
1365 auto ExpandedRegion = std::unique_ptr<Region>(R.getExpandedRegion());
Tobias Grosser75805372011-04-29 06:27:02 +00001366
1367 DEBUG(dbgs() << "\tExpanding " << R.getNameStr() << "\n");
1368
Hongbin Zhenged986ab2012-04-07 15:14:28 +00001369 while (ExpandedRegion) {
Johannes Doerfertc06b7d62015-10-07 20:46:06 +00001370 const auto &It = DetectionContextMap.insert(std::make_pair(
Johannes Doerfert6c7639b2016-05-12 18:50:01 +00001371 getBBPairForRegion(ExpandedRegion.get()),
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001372 DetectionContext(*ExpandedRegion, AA, false /*verifying*/)));
Johannes Doerfertc06b7d62015-10-07 20:46:06 +00001373 DetectionContext &Context = It.first->second;
Hongbin Zhenged986ab2012-04-07 15:14:28 +00001374 DEBUG(dbgs() << "\t\tTrying " << ExpandedRegion->getNameStr() << "\n");
Andreas Simbuergerb379edb2014-06-27 06:21:14 +00001375 // Only expand when we did not collect errors.
Tobias Grosser75805372011-04-29 06:27:02 +00001376
Johannes Doerfert717b8662015-09-08 21:44:27 +00001377 if (!Context.Log.hasErrors()) {
Hongbin Zhenged986ab2012-04-07 15:14:28 +00001378 // If the exit is valid check all blocks
1379 // - if true, a valid region was found => store it + keep expanding
1380 // - if false, .tbd. => stop (should this really end the loop?)
Johannes Doerferte46925f2015-10-01 10:59:14 +00001381 if (!allBlocksValid(Context) || Context.Log.hasErrors()) {
1382 removeCachedResults(*ExpandedRegion);
Michael Krusea6cc0d32016-08-08 22:39:32 +00001383 DetectionContextMap.erase(It.first);
Andreas Simbuergerb379edb2014-06-27 06:21:14 +00001384 break;
Johannes Doerferte46925f2015-10-01 10:59:14 +00001385 }
Andreas Simbuergerb379edb2014-06-27 06:21:14 +00001386
Tobias Grosserd7e58642013-04-10 06:55:45 +00001387 // Store this region, because it is the greatest valid (encountered so
1388 // far).
Michael Krusea6cc0d32016-08-08 22:39:32 +00001389 if (LastValidRegion) {
1390 removeCachedResults(*LastValidRegion);
1391 DetectionContextMap.erase(getBBPairForRegion(LastValidRegion.get()));
1392 }
Tobias Grosserd5d93ec2015-06-04 17:59:54 +00001393 LastValidRegion = std::move(ExpandedRegion);
Hongbin Zhenged986ab2012-04-07 15:14:28 +00001394
1395 // Create and test the next greater region (if any)
Tobias Grosserd5d93ec2015-06-04 17:59:54 +00001396 ExpandedRegion =
1397 std::unique_ptr<Region>(LastValidRegion->getExpandedRegion());
Hongbin Zhenged986ab2012-04-07 15:14:28 +00001398
1399 } else {
1400 // Create and test the next greater region (if any)
Johannes Doerfertc06b7d62015-10-07 20:46:06 +00001401 removeCachedResults(*ExpandedRegion);
Michael Krusea6cc0d32016-08-08 22:39:32 +00001402 DetectionContextMap.erase(It.first);
Tobias Grosserd5d93ec2015-06-04 17:59:54 +00001403 ExpandedRegion =
1404 std::unique_ptr<Region>(ExpandedRegion->getExpandedRegion());
Tobias Grosser75805372011-04-29 06:27:02 +00001405 }
Tobias Grosser75805372011-04-29 06:27:02 +00001406 }
1407
Tobias Grosser378a9f22013-11-16 19:34:11 +00001408 DEBUG({
1409 if (LastValidRegion)
1410 dbgs() << "\tto " << LastValidRegion->getNameStr() << "\n";
1411 else
1412 dbgs() << "\tExpanding " << R.getNameStr() << " failed\n";
1413 });
Tobias Grosser75805372011-04-29 06:27:02 +00001414
Tobias Grosserd5d93ec2015-06-04 17:59:54 +00001415 return LastValidRegion.release();
Tobias Grosser75805372011-04-29 06:27:02 +00001416}
Eugene Zelenkoa32707d2017-08-25 21:35:27 +00001417
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001418static bool regionWithoutLoops(Region &R, LoopInfo &LI) {
Tobias Grosser26108892014-04-02 20:18:19 +00001419 for (const BasicBlock *BB : R.blocks())
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001420 if (R.contains(LI.getLoopFor(BB)))
Sebastian Pop2c9ec2e2013-06-03 16:35:37 +00001421 return false;
1422
1423 return true;
1424}
Tobias Grosser75805372011-04-29 06:27:02 +00001425
Tobias Grosserb45ae562016-11-26 07:37:46 +00001426void ScopDetection::removeCachedResultsRecursively(const Region &R) {
David Blaikieb035f6d2014-04-15 18:45:27 +00001427 for (auto &SubRegion : R) {
Johannes Doerferte46925f2015-10-01 10:59:14 +00001428 if (ValidRegions.count(SubRegion.get())) {
1429 removeCachedResults(*SubRegion.get());
Johannes Doerferte46925f2015-10-01 10:59:14 +00001430 } else
Tobias Grosserb45ae562016-11-26 07:37:46 +00001431 removeCachedResultsRecursively(*SubRegion);
Tobias Grosser28a70c52014-01-29 19:05:30 +00001432 }
Tobias Grosser28a70c52014-01-29 19:05:30 +00001433}
1434
Johannes Doerferte46925f2015-10-01 10:59:14 +00001435void ScopDetection::removeCachedResults(const Region &R) {
1436 ValidRegions.remove(&R);
Johannes Doerferte46925f2015-10-01 10:59:14 +00001437}
1438
Tobias Grosser75805372011-04-29 06:27:02 +00001439void ScopDetection::findScops(Region &R) {
Johannes Doerfert6c7639b2016-05-12 18:50:01 +00001440 const auto &It = DetectionContextMap.insert(std::make_pair(
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001441 getBBPairForRegion(&R), DetectionContext(R, AA, false /*verifying*/)));
Johannes Doerfertc06b7d62015-10-07 20:46:06 +00001442 DetectionContext &Context = It.first->second;
Johannes Doerfert6a4d81c2015-03-08 15:11:50 +00001443
1444 bool RegionIsValid = false;
Michael Kruse0b566812016-02-29 16:54:18 +00001445 if (!PollyProcessUnprofitable && regionWithoutLoops(R, LI))
Johannes Doerfert6a4d81c2015-03-08 15:11:50 +00001446 invalid<ReportUnprofitable>(Context, /*Assert=*/true, &R);
Michael Kruse0b566812016-02-29 16:54:18 +00001447 else
Johannes Doerfert6a4d81c2015-03-08 15:11:50 +00001448 RegionIsValid = isValidRegion(Context);
1449
Johannes Doerfert3f1c2852015-02-19 18:11:50 +00001450 bool HasErrors = !RegionIsValid || Context.Log.size() > 0;
Andreas Simbuerger04472402014-05-24 09:25:10 +00001451
Johannes Doerferte46925f2015-10-01 10:59:14 +00001452 if (HasErrors) {
1453 removeCachedResults(R);
1454 } else {
Tobias Grosser75805372011-04-29 06:27:02 +00001455 ValidRegions.insert(&R);
1456 return;
1457 }
1458
David Blaikieb035f6d2014-04-15 18:45:27 +00001459 for (auto &SubRegion : R)
Tobias Grosser00dc3092014-03-02 12:02:46 +00001460 findScops(*SubRegion);
Tobias Grosser75805372011-04-29 06:27:02 +00001461
1462 // Try to expand regions.
1463 //
1464 // As the region tree normally only contains canonical regions, non canonical
1465 // regions that form a Scop are not found. Therefore, those non canonical
1466 // regions are checked by expanding the canonical ones.
1467
Tobias Grosser0d1eee32013-02-05 11:56:05 +00001468 std::vector<Region *> ToExpand;
Tobias Grosser75805372011-04-29 06:27:02 +00001469
David Blaikieb035f6d2014-04-15 18:45:27 +00001470 for (auto &SubRegion : R)
1471 ToExpand.push_back(SubRegion.get());
Tobias Grosser75805372011-04-29 06:27:02 +00001472
Tobias Grosser26108892014-04-02 20:18:19 +00001473 for (Region *CurrentRegion : ToExpand) {
Tobias Grosser75805372011-04-29 06:27:02 +00001474 // Skip invalid regions. Regions may become invalid, if they are element of
1475 // an already expanded region.
David Peixotto8da2b932014-10-22 20:39:07 +00001476 if (!ValidRegions.count(CurrentRegion))
Tobias Grosser75805372011-04-29 06:27:02 +00001477 continue;
1478
Johannes Doerfert6c7639b2016-05-12 18:50:01 +00001479 // Skip regions that had errors.
1480 bool HadErrors = lookupRejectionLog(CurrentRegion)->hasErrors();
1481 if (HadErrors)
1482 continue;
1483
Tobias Grosser75805372011-04-29 06:27:02 +00001484 Region *ExpandedR = expandRegion(*CurrentRegion);
1485
1486 if (!ExpandedR)
1487 continue;
1488
1489 R.addSubRegion(ExpandedR, true);
1490 ValidRegions.insert(ExpandedR);
Johannes Doerferte46925f2015-10-01 10:59:14 +00001491 removeCachedResults(*CurrentRegion);
Tobias Grosserb45ae562016-11-26 07:37:46 +00001492 removeCachedResultsRecursively(*ExpandedR);
Tobias Grosser75805372011-04-29 06:27:02 +00001493 }
1494}
1495
1496bool ScopDetection::allBlocksValid(DetectionContext &Context) const {
Johannes Doerfertfb79a962015-02-23 14:18:28 +00001497 Region &CurRegion = Context.CurRegion;
Tobias Grosser75805372011-04-29 06:27:02 +00001498
Johannes Doerfertfb79a962015-02-23 14:18:28 +00001499 for (const BasicBlock *BB : CurRegion.blocks()) {
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001500 Loop *L = LI.getLoopFor(BB);
Tobias Grossera3aa4232017-07-15 22:42:17 +00001501 if (L && L->getHeader() == BB) {
1502 if (CurRegion.contains(L)) {
1503 if (!isValidLoop(L, Context) && !KeepGoing)
1504 return false;
1505 } else {
1506 SmallVector<BasicBlock *, 1> Latches;
1507 L->getLoopLatches(Latches);
1508 for (BasicBlock *Latch : Latches)
1509 if (CurRegion.contains(Latch))
1510 return invalid<ReportLoopOnlySomeLatches>(Context, /*Assert=*/true,
1511 L);
1512 }
1513 }
Sebastian Popb88ea5e2013-06-11 22:20:32 +00001514 }
1515
Johannes Doerfert90db75e2015-09-10 17:51:27 +00001516 for (BasicBlock *BB : CurRegion.blocks()) {
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001517 bool IsErrorBlock = isErrorBlock(*BB, CurRegion, LI, DT);
Tobias Grosserb76cd3c2015-11-11 08:42:20 +00001518
1519 // Also check exception blocks (and possibly register them as non-affine
1520 // regions). Even though exception blocks are not modeled, we use them
1521 // to forward-propagate domain constraints during ScopInfo construction.
1522 if (!isValidCFG(*BB, false, IsErrorBlock, Context) && !KeepGoing)
1523 return false;
1524
1525 if (IsErrorBlock)
Johannes Doerfert90db75e2015-09-10 17:51:27 +00001526 continue;
1527
Tobias Grosser1d191902014-03-03 13:13:55 +00001528 for (BasicBlock::iterator I = BB->begin(), E = --BB->end(); I != E; ++I)
Andreas Simbuerger04472402014-05-24 09:25:10 +00001529 if (!isValidInstruction(*I, Context) && !KeepGoing)
Sebastian Pop8ca899c2013-06-14 20:20:43 +00001530 return false;
Johannes Doerfert90db75e2015-09-10 17:51:27 +00001531 }
Tobias Grosser75805372011-04-29 06:27:02 +00001532
Sebastian Pope8863b82014-05-12 19:02:02 +00001533 if (!hasAffineMemoryAccesses(Context))
Sebastian Pop46e1ecd2014-05-09 22:45:15 +00001534 return false;
1535
Tobias Grosser75805372011-04-29 06:27:02 +00001536 return true;
1537}
1538
Tobias Grosserc1a269b2015-12-21 21:00:43 +00001539bool ScopDetection::hasSufficientCompute(DetectionContext &Context,
1540 int NumLoops) const {
1541 int InstCount = 0;
1542
Tobias Grosserb316dc12016-09-08 14:08:05 +00001543 if (NumLoops == 0)
1544 return false;
1545
Tobias Grosserc1a269b2015-12-21 21:00:43 +00001546 for (auto *BB : Context.CurRegion.blocks())
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001547 if (Context.CurRegion.contains(LI.getLoopFor(BB)))
Tobias Grosserc6424ae2015-12-22 17:38:59 +00001548 InstCount += BB->size();
Tobias Grosserc1a269b2015-12-21 21:00:43 +00001549
1550 InstCount = InstCount / NumLoops;
1551
1552 return InstCount >= ProfitabilityMinPerLoopInstructions;
1553}
1554
Johannes Doerfertbf9473b2016-05-10 14:42:30 +00001555bool ScopDetection::hasPossiblyDistributableLoop(
1556 DetectionContext &Context) const {
1557 for (auto *BB : Context.CurRegion.blocks()) {
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001558 auto *L = LI.getLoopFor(BB);
Johannes Doerfertbf9473b2016-05-10 14:42:30 +00001559 if (!Context.CurRegion.contains(L))
1560 continue;
1561 if (Context.BoxedLoopsSet.count(L))
1562 continue;
1563 unsigned StmtsWithStoresInLoops = 0;
1564 for (auto *LBB : L->blocks()) {
1565 bool MemStore = false;
1566 for (auto &I : *LBB)
1567 MemStore |= isa<StoreInst>(&I);
1568 StmtsWithStoresInLoops += MemStore;
1569 }
1570 return (StmtsWithStoresInLoops > 1);
1571 }
1572 return false;
1573}
1574
Tobias Grosser97fc5bb2015-12-21 12:14:48 +00001575bool ScopDetection::isProfitableRegion(DetectionContext &Context) const {
1576 Region &CurRegion = Context.CurRegion;
1577
1578 if (PollyProcessUnprofitable)
1579 return true;
1580
1581 // We can probably not do a lot on scops that only write or only read
1582 // data.
1583 if (!Context.hasStores || !Context.hasLoads)
1584 return invalid<ReportUnprofitable>(Context, /*Assert=*/true, &CurRegion);
1585
Tobias Grossercd01a362017-02-17 08:12:36 +00001586 int NumLoops =
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001587 countBeneficialLoops(&CurRegion, SE, LI, MIN_LOOP_TRIP_COUNT).NumLoops;
Tobias Grosser97fc5bb2015-12-21 12:14:48 +00001588 int NumAffineLoops = NumLoops - Context.BoxedLoopsSet.size();
Tobias Grosser97fc5bb2015-12-21 12:14:48 +00001589
Tobias Grosserc1a269b2015-12-21 21:00:43 +00001590 // Scops with at least two loops may allow either loop fusion or tiling and
1591 // are consequently interesting to look at.
1592 if (NumAffineLoops >= 2)
1593 return true;
1594
Michael Krusea6d48f52017-06-08 12:06:15 +00001595 // A loop with multiple non-trivial blocks might be amendable to distribution.
Johannes Doerfertbf9473b2016-05-10 14:42:30 +00001596 if (NumAffineLoops == 1 && hasPossiblyDistributableLoop(Context))
1597 return true;
1598
Tobias Grosserc1a269b2015-12-21 21:00:43 +00001599 // Scops that contain a loop with a non-trivial amount of computation per
1600 // loop-iteration are interesting as we may be able to parallelize such
1601 // loops. Individual loops that have only a small amount of computation
1602 // per-iteration are performance-wise very fragile as any change to the
1603 // loop induction variables may affect performance. To not cause spurious
1604 // performance regressions, we do not consider such loops.
1605 if (NumAffineLoops == 1 && hasSufficientCompute(Context, NumLoops))
1606 return true;
1607
1608 return invalid<ReportUnprofitable>(Context, /*Assert=*/true, &CurRegion);
Tobias Grosser97fc5bb2015-12-21 12:14:48 +00001609}
1610
Tobias Grosser75805372011-04-29 06:27:02 +00001611bool ScopDetection::isValidRegion(DetectionContext &Context) const {
Johannes Doerfertfb79a962015-02-23 14:18:28 +00001612 Region &CurRegion = Context.CurRegion;
Tobias Grosser75805372011-04-29 06:27:02 +00001613
Johannes Doerfertfb79a962015-02-23 14:18:28 +00001614 DEBUG(dbgs() << "Checking region: " << CurRegion.getNameStr() << "\n\t");
Tobias Grosser75805372011-04-29 06:27:02 +00001615
Siddharth Bhatb46847c2017-08-17 21:57:23 +00001616 if (!PollyAllowFullFunction && CurRegion.isTopLevelRegion()) {
Tobias Grosserf084edd2014-10-22 23:00:03 +00001617 DEBUG(dbgs() << "Top level region is invalid\n");
Tobias Grosser75805372011-04-29 06:27:02 +00001618 return false;
1619 }
1620
Tobias Grosser134a5722017-03-07 15:50:43 +00001621 DebugLoc DbgLoc;
Philip Pfaffe1a0128f2017-05-24 18:39:39 +00001622 if (CurRegion.getExit() &&
1623 isa<UnreachableInst>(CurRegion.getExit()->getTerminator())) {
Tobias Grosser134a5722017-03-07 15:50:43 +00001624 DEBUG(dbgs() << "Unreachable in exit\n");
1625 return invalid<ReportUnreachableInExit>(Context, /*Assert=*/true,
1626 CurRegion.getExit(), DbgLoc);
1627 }
1628
Johannes Doerfertfb79a962015-02-23 14:18:28 +00001629 if (!CurRegion.getEntry()->getName().count(OnlyRegion)) {
Tobias Grosser4449e522014-01-27 14:24:53 +00001630 DEBUG({
1631 dbgs() << "Region entry does not match -polly-region-only";
1632 dbgs() << "\n";
1633 });
1634 return false;
1635 }
1636
Tobias Grosserd654c252012-04-10 18:12:19 +00001637 // SCoP cannot contain the entry block of the function, because we need
Tobias Grosser75805372011-04-29 06:27:02 +00001638 // to insert alloca instruction there when translate scalar to array.
Siddharth Bhatb46847c2017-08-17 21:57:23 +00001639 if (!PollyAllowFullFunction &&
Tobias Grosserd8945ba2017-05-19 12:13:02 +00001640 CurRegion.getEntry() ==
1641 &(CurRegion.getEntry()->getParent()->getEntryBlock()))
Johannes Doerfertfb79a962015-02-23 14:18:28 +00001642 return invalid<ReportEntry>(Context, /*Assert=*/true, CurRegion.getEntry());
Tobias Grosser75805372011-04-29 06:27:02 +00001643
Hongbin Zheng94868e62012-04-07 12:29:17 +00001644 if (!allBlocksValid(Context))
Tobias Grosser75805372011-04-29 06:27:02 +00001645 return false;
1646
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001647 if (!isReducibleRegion(CurRegion, DbgLoc))
1648 return invalid<ReportIrreducibleRegion>(Context, /*Assert=*/true,
1649 &CurRegion, DbgLoc);
1650
Tobias Grosser75805372011-04-29 06:27:02 +00001651 DEBUG(dbgs() << "OK\n");
1652 return true;
1653}
1654
Tobias Grosser629109b2016-08-03 12:00:07 +00001655void ScopDetection::markFunctionAsInvalid(Function *F) {
Johannes Doerfert43e1ead2014-07-15 21:06:48 +00001656 F->addFnAttr(PollySkipFnAttr);
1657}
1658
Eugene Zelenkoa32707d2017-08-25 21:35:27 +00001659bool ScopDetection::isValidFunction(Function &F) {
Johannes Doerfert43e1ead2014-07-15 21:06:48 +00001660 return !F.hasFnAttribute(PollySkipFnAttr);
Tobias Grosser75805372011-04-29 06:27:02 +00001661}
1662
Eugene Zelenkoa32707d2017-08-25 21:35:27 +00001663void ScopDetection::printLocations(Function &F) {
Tobias Grosser26108892014-04-02 20:18:19 +00001664 for (const Region *R : *this) {
Tobias Grosser531891e2012-11-01 16:45:20 +00001665 unsigned LineEntry, LineExit;
1666 std::string FileName;
1667
Tobias Grosser00dc3092014-03-02 12:02:46 +00001668 getDebugLocation(R, LineEntry, LineExit, FileName);
Tobias Grosser8519f892013-12-18 10:49:53 +00001669 DiagnosticScopFound Diagnostic(F, FileName, LineEntry, LineExit);
1670 F.getContext().diagnose(Diagnostic);
Tobias Grosser531891e2012-11-01 16:45:20 +00001671 }
1672}
1673
Johannes Doerfert6c7639b2016-05-12 18:50:01 +00001674void ScopDetection::emitMissedRemarks(const Function &F) {
1675 for (auto &DIt : DetectionContextMap) {
1676 auto &DC = DIt.getSecond();
1677 if (DC.Log.hasErrors())
Eli Friedmane737fc12017-07-17 23:58:33 +00001678 emitRejectionRemarks(DIt.getFirst(), DC.Log, ORE);
Andreas Simbuerger5569bf32014-06-26 10:06:40 +00001679 }
1680}
1681
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001682bool ScopDetection::isReducibleRegion(Region &R, DebugLoc &DbgLoc) const {
Tobias Grosserc80d6972016-09-02 06:33:33 +00001683 /// Enum for coloring BBs in Region.
Tobias Grosseref6ae702016-06-11 09:00:37 +00001684 ///
1685 /// WHITE - Unvisited BB in DFS walk.
1686 /// GREY - BBs which are currently on the DFS stack for processing.
1687 /// BLACK - Visited and completely processed BB.
1688 enum Color { WHITE, GREY, BLACK };
1689
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001690 BasicBlock *REntry = R.getEntry();
1691 BasicBlock *RExit = R.getExit();
1692 // Map to match the color of a BasicBlock during the DFS walk.
1693 DenseMap<const BasicBlock *, Color> BBColorMap;
1694 // Stack keeping track of current BB and index of next child to be processed.
1695 std::stack<std::pair<BasicBlock *, unsigned>> DFSStack;
1696
1697 unsigned AdjacentBlockIndex = 0;
1698 BasicBlock *CurrBB, *SuccBB;
1699 CurrBB = REntry;
1700
1701 // Initialize the map for all BB with WHITE color.
1702 for (auto *BB : R.blocks())
Johannes Doerfert469db6a2016-05-19 12:36:43 +00001703 BBColorMap[BB] = WHITE;
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001704
1705 // Process the entry block of the Region.
Johannes Doerfert469db6a2016-05-19 12:36:43 +00001706 BBColorMap[CurrBB] = GREY;
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001707 DFSStack.push(std::make_pair(CurrBB, 0));
1708
1709 while (!DFSStack.empty()) {
1710 // Get next BB on stack to be processed.
1711 CurrBB = DFSStack.top().first;
1712 AdjacentBlockIndex = DFSStack.top().second;
1713 DFSStack.pop();
1714
1715 // Loop to iterate over the successors of current BB.
1716 const TerminatorInst *TInst = CurrBB->getTerminator();
1717 unsigned NSucc = TInst->getNumSuccessors();
1718 for (unsigned I = AdjacentBlockIndex; I < NSucc;
1719 ++I, ++AdjacentBlockIndex) {
1720 SuccBB = TInst->getSuccessor(I);
1721
1722 // Checks for region exit block and self-loops in BB.
1723 if (SuccBB == RExit || SuccBB == CurrBB)
1724 continue;
1725
1726 // WHITE indicates an unvisited BB in DFS walk.
Johannes Doerfert469db6a2016-05-19 12:36:43 +00001727 if (BBColorMap[SuccBB] == WHITE) {
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001728 // Push the current BB and the index of the next child to be visited.
1729 DFSStack.push(std::make_pair(CurrBB, I + 1));
1730 // Push the next BB to be processed.
1731 DFSStack.push(std::make_pair(SuccBB, 0));
1732 // First time the BB is being processed.
Johannes Doerfert469db6a2016-05-19 12:36:43 +00001733 BBColorMap[SuccBB] = GREY;
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001734 break;
Johannes Doerfert469db6a2016-05-19 12:36:43 +00001735 } else if (BBColorMap[SuccBB] == GREY) {
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001736 // GREY indicates a loop in the control flow.
1737 // If the destination dominates the source, it is a natural loop
1738 // else, an irreducible control flow in the region is detected.
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001739 if (!DT.dominates(SuccBB, CurrBB)) {
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001740 // Get debug info of instruction which causes irregular control flow.
1741 DbgLoc = TInst->getDebugLoc();
1742 return false;
1743 }
1744 }
1745 }
1746
1747 // If all children of current BB have been processed,
1748 // then mark that BB as fully processed.
1749 if (AdjacentBlockIndex == NSucc)
Johannes Doerfert469db6a2016-05-19 12:36:43 +00001750 BBColorMap[CurrBB] = BLACK;
Tobias Grosser1c3a6d72016-01-22 09:44:37 +00001751 }
1752
1753 return true;
1754}
1755
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001756static void updateLoopCountStatistic(ScopDetection::LoopStats Stats,
1757 bool OnlyProfitable) {
Tobias Grosserb45ae562016-11-26 07:37:46 +00001758 if (!OnlyProfitable) {
1759 NumLoopsInScop += Stats.NumLoops;
Tobias Grosser9fe37df2017-02-12 10:52:57 +00001760 MaxNumLoopsInScop =
1761 std::max(MaxNumLoopsInScop.getValue(), (unsigned)Stats.NumLoops);
Tobias Grosserb45ae562016-11-26 07:37:46 +00001762 if (Stats.MaxDepth == 1)
1763 NumScopsDepthOne++;
1764 else if (Stats.MaxDepth == 2)
1765 NumScopsDepthTwo++;
1766 else if (Stats.MaxDepth == 3)
1767 NumScopsDepthThree++;
1768 else if (Stats.MaxDepth == 4)
1769 NumScopsDepthFour++;
1770 else if (Stats.MaxDepth == 5)
1771 NumScopsDepthFive++;
1772 else
1773 NumScopsDepthLarger++;
1774 } else {
1775 NumLoopsInProfScop += Stats.NumLoops;
Tobias Grosser9fe37df2017-02-12 10:52:57 +00001776 MaxNumLoopsInProfScop =
1777 std::max(MaxNumLoopsInProfScop.getValue(), (unsigned)Stats.NumLoops);
Tobias Grosserb45ae562016-11-26 07:37:46 +00001778 if (Stats.MaxDepth == 1)
1779 NumProfScopsDepthOne++;
1780 else if (Stats.MaxDepth == 2)
1781 NumProfScopsDepthTwo++;
1782 else if (Stats.MaxDepth == 3)
1783 NumProfScopsDepthThree++;
1784 else if (Stats.MaxDepth == 4)
1785 NumProfScopsDepthFour++;
1786 else if (Stats.MaxDepth == 5)
1787 NumProfScopsDepthFive++;
1788 else
1789 NumProfScopsDepthLarger++;
1790 }
1791}
1792
Johannes Doerfert1dafea42016-05-23 09:07:08 +00001793ScopDetection::DetectionContext *
Johannes Doerfertc06b7d62015-10-07 20:46:06 +00001794ScopDetection::getDetectionContext(const Region *R) const {
Johannes Doerfert6c7639b2016-05-12 18:50:01 +00001795 auto DCMIt = DetectionContextMap.find(getBBPairForRegion(R));
Johannes Doerfertc06b7d62015-10-07 20:46:06 +00001796 if (DCMIt == DetectionContextMap.end())
1797 return nullptr;
1798 return &DCMIt->second;
Johannes Doerfertba65c162015-02-24 11:45:21 +00001799}
1800
Johannes Doerfert6c7639b2016-05-12 18:50:01 +00001801const RejectLog *ScopDetection::lookupRejectionLog(const Region *R) const {
1802 const DetectionContext *DC = getDetectionContext(R);
1803 return DC ? &DC->Log : nullptr;
1804}
1805
Eugene Zelenkoa32707d2017-08-25 21:35:27 +00001806void ScopDetection::verifyRegion(const Region &R) const {
Tobias Grosser75805372011-04-29 06:27:02 +00001807 assert(isMaxRegionInScop(R) && "Expect R is a valid region.");
Johannes Doerfertf3e98f42015-04-12 22:52:20 +00001808
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001809 DetectionContext Context(const_cast<Region &>(R), AA, true /*verifying*/);
Tobias Grosser75805372011-04-29 06:27:02 +00001810 isValidRegion(Context);
1811}
1812
Eugene Zelenkoa32707d2017-08-25 21:35:27 +00001813void ScopDetection::verifyAnalysis() const {
Tobias Grossera1689932014-02-18 18:49:49 +00001814 if (!VerifyScops)
1815 return;
1816
Tobias Grosser26108892014-04-02 20:18:19 +00001817 for (const Region *R : ValidRegions)
Tobias Grosser00dc3092014-03-02 12:02:46 +00001818 verifyRegion(*R);
Tobias Grosser75805372011-04-29 06:27:02 +00001819}
1820
Eugene Zelenkoa32707d2017-08-25 21:35:27 +00001821bool ScopDetectionWrapperPass::runOnFunction(Function &F) {
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001822 auto &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
1823 auto &RI = getAnalysis<RegionInfoPass>().getRegionInfo();
1824 auto &AA = getAnalysis<AAResultsWrapperPass>().getAAResults();
1825 auto &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE();
1826 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Eli Friedmane737fc12017-07-17 23:58:33 +00001827 auto &ORE = getAnalysis<OptimizationRemarkEmitterWrapperPass>().getORE();
1828 Result.reset(new ScopDetection(F, DT, SE, LI, RI, AA, ORE));
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001829 return false;
1830}
1831
1832void ScopDetectionWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
Chandler Carruthf5579872015-01-17 14:16:56 +00001833 AU.addRequired<LoopInfoWrapperPass>();
Michael Kruse6a19d592016-10-17 13:29:20 +00001834 AU.addRequiredTransitive<ScalarEvolutionWrapperPass>();
Johannes Doerfert08d90a32015-10-07 20:32:43 +00001835 AU.addRequired<DominatorTreeWrapperPass>();
Eli Friedmane737fc12017-07-17 23:58:33 +00001836 AU.addRequired<OptimizationRemarkEmitterWrapperPass>();
Tobias Grosser75805372011-04-29 06:27:02 +00001837 // We also need AA and RegionInfo when we are verifying analysis.
Chandler Carruth66ef16b2015-09-09 22:13:56 +00001838 AU.addRequiredTransitive<AAResultsWrapperPass>();
Matt Arsenault8ca36812014-07-19 18:40:17 +00001839 AU.addRequiredTransitive<RegionInfoPass>();
Tobias Grosser75805372011-04-29 06:27:02 +00001840 AU.setPreservesAll();
1841}
1842
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001843void ScopDetectionWrapperPass::print(raw_ostream &OS, const Module *) const {
1844 for (const Region *R : Result->ValidRegions)
Tobias Grosser00dc3092014-03-02 12:02:46 +00001845 OS << "Valid Region for Scop: " << R->getNameStr() << '\n';
Tobias Grosser75805372011-04-29 06:27:02 +00001846
1847 OS << "\n";
1848}
1849
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001850ScopDetectionWrapperPass::ScopDetectionWrapperPass() : FunctionPass(ID) {
1851 // Disable runtime alias checks if we ignore aliasing all together.
1852 if (IgnoreAliasing)
1853 PollyUseRuntimeAliasChecks = false;
Tobias Grosser75805372011-04-29 06:27:02 +00001854}
Eugene Zelenkoa32707d2017-08-25 21:35:27 +00001855
Philip Pfaffef5a43942017-08-02 11:08:01 +00001856ScopAnalysis::ScopAnalysis() {
1857 // Disable runtime alias checks if we ignore aliasing all together.
1858 if (IgnoreAliasing)
1859 PollyUseRuntimeAliasChecks = false;
1860}
Tobias Grosser75805372011-04-29 06:27:02 +00001861
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001862void ScopDetectionWrapperPass::releaseMemory() { Result.reset(); }
Tobias Grosser75805372011-04-29 06:27:02 +00001863
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001864char ScopDetectionWrapperPass::ID;
Tobias Grosser4d96c8d2013-03-23 01:05:07 +00001865
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001866AnalysisKey ScopAnalysis::Key;
1867
1868ScopDetection ScopAnalysis::run(Function &F, FunctionAnalysisManager &FAM) {
1869 auto &LI = FAM.getResult<LoopAnalysis>(F);
1870 auto &RI = FAM.getResult<RegionInfoAnalysis>(F);
1871 auto &AA = FAM.getResult<AAManager>(F);
1872 auto &SE = FAM.getResult<ScalarEvolutionAnalysis>(F);
1873 auto &DT = FAM.getResult<DominatorTreeAnalysis>(F);
Eli Friedmane737fc12017-07-17 23:58:33 +00001874 auto &ORE = FAM.getResult<OptimizationRemarkEmitterAnalysis>(F);
1875 return {F, DT, SE, LI, RI, AA, ORE};
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001876}
1877
1878PreservedAnalyses ScopAnalysisPrinterPass::run(Function &F,
1879 FunctionAnalysisManager &FAM) {
Eugene Zelenkoa32707d2017-08-25 21:35:27 +00001880 OS << "Detected Scops in Function " << F.getName() << "\n";
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001881 auto &SD = FAM.getResult<ScopAnalysis>(F);
1882 for (const Region *R : SD.ValidRegions)
Eugene Zelenkoa32707d2017-08-25 21:35:27 +00001883 OS << "Valid Region for Scop: " << R->getNameStr() << '\n';
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001884
Eugene Zelenkoa32707d2017-08-25 21:35:27 +00001885 OS << "\n";
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001886 return PreservedAnalyses::all();
1887}
1888
1889Pass *polly::createScopDetectionWrapperPassPass() {
1890 return new ScopDetectionWrapperPass();
1891}
1892
1893INITIALIZE_PASS_BEGIN(ScopDetectionWrapperPass, "polly-detect",
Tobias Grosser73600b82011-10-08 00:30:40 +00001894 "Polly - Detect static control parts (SCoPs)", false,
Tobias Grosser4d96c8d2013-03-23 01:05:07 +00001895 false);
Chandler Carruth66ef16b2015-09-09 22:13:56 +00001896INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass);
Chandler Carruthf5579872015-01-17 14:16:56 +00001897INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass);
Matt Arsenault8ca36812014-07-19 18:40:17 +00001898INITIALIZE_PASS_DEPENDENCY(RegionInfoPass);
Johannes Doerfert08d90a32015-10-07 20:32:43 +00001899INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass);
Tobias Grosserc5bcf242015-08-17 10:57:08 +00001900INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass);
Eli Friedmane737fc12017-07-17 23:58:33 +00001901INITIALIZE_PASS_DEPENDENCY(OptimizationRemarkEmitterWrapperPass);
Philip Pfaffe5cc87e32017-05-12 14:37:29 +00001902INITIALIZE_PASS_END(ScopDetectionWrapperPass, "polly-detect",
Tobias Grosser73600b82011-10-08 00:30:40 +00001903 "Polly - Detect static control parts (SCoPs)", false, false)