blob: e7bbcc8163ab11796fda108b5ec6eef4db605b88 [file] [log] [blame]
Tobias Grosser75805372011-04-29 06:27:02 +00001//===----- ScopDetection.cpp - Detect Scops --------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Detect the maximal Scops of a function.
11//
12// A static control part (Scop) is a subgraph of the control flow graph (CFG)
13// that only has statically known control flow and can therefore be described
14// within the polyhedral model.
15//
16// Every Scop fullfills these restrictions:
17//
18// * It is a single entry single exit region
19//
20// * Only affine linear bounds in the loops
21//
22// Every natural loop in a Scop must have a number of loop iterations that can
23// be described as an affine linear function in surrounding loop iterators or
24// parameters. (A parameter is a scalar that does not change its value during
25// execution of the Scop).
26//
27// * Only comparisons of affine linear expressions in conditions
28//
29// * All loops and conditions perfectly nested
30//
31// The control flow needs to be structured such that it could be written using
32// just 'for' and 'if' statements, without the need for any 'goto', 'break' or
33// 'continue'.
34//
35// * Side effect free functions call
36//
37// Only function calls and intrinsics that do not have side effects are allowed
38// (readnone).
39//
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 Grosserecfe21b2013-03-20 18:03:18 +000047#include "polly/CodeGen/BlockGenerators.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"
Andreas Simbuerger01a37a02014-04-02 11:54:01 +000050#include "polly/ScopDetectionDiagnostic.h"
Tobias Grosserecfe21b2013-03-20 18:03:18 +000051#include "polly/ScopDetection.h"
Tobias Grosser120db6b2011-11-07 12:58:54 +000052#include "polly/Support/SCEVValidator.h"
Tobias Grosser83628182013-05-07 08:11:54 +000053#include "polly/Support/ScopHelper.h"
Tobias Grosser75805372011-04-29 06:27:02 +000054#include "llvm/ADT/Statistic.h"
55#include "llvm/Analysis/AliasAnalysis.h"
Tobias Grosser6e9f25a2011-11-09 22:35:00 +000056#include "llvm/Analysis/LoopInfo.h"
Matt Arsenault8ca36812014-07-19 18:40:17 +000057#include "llvm/Analysis/PostDominators.h"
Tobias Grosser75805372011-04-29 06:27:02 +000058#include "llvm/Analysis/RegionIterator.h"
Tobias Grosser6e9f25a2011-11-09 22:35:00 +000059#include "llvm/Analysis/ScalarEvolution.h"
Tobias Grosserb8710b52011-11-10 12:44:50 +000060#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Chandler Carruth6b96c242014-03-06 00:47:27 +000061#include "llvm/IR/DebugInfo.h"
Tobias Grosser8519f892013-12-18 10:49:53 +000062#include "llvm/IR/DiagnosticInfo.h"
63#include "llvm/IR/DiagnosticPrinter.h"
Chandler Carruth6b96c242014-03-06 00:47:27 +000064#include "llvm/IR/LLVMContext.h"
Tobias Grosser75805372011-04-29 06:27:02 +000065#include "llvm/Support/Debug.h"
Tobias Grosser60b54f12011-11-08 15:41:28 +000066#include <set>
67
Tobias Grosser75805372011-04-29 06:27:02 +000068using namespace llvm;
69using namespace polly;
70
Chandler Carruth95fef942014-04-22 03:30:19 +000071#define DEBUG_TYPE "polly-detect"
72
Sebastian Pop8fe6d112013-05-30 17:47:32 +000073static cl::opt<bool>
Tobias Grosser483a90d2014-07-09 10:50:10 +000074 DetectScopsWithoutLoops("polly-detect-scops-in-functions-without-loops",
75 cl::desc("Detect scops in functions without loops"),
76 cl::Hidden, cl::init(false), cl::ZeroOrMore,
77 cl::cat(PollyCategory));
Sebastian Pop8fe6d112013-05-30 17:47:32 +000078
Sebastian Pop2c9ec2e2013-06-03 16:35:37 +000079static cl::opt<bool>
Tobias Grosser483a90d2014-07-09 10:50:10 +000080 DetectRegionsWithoutLoops("polly-detect-scops-in-regions-without-loops",
81 cl::desc("Detect scops in regions without loops"),
82 cl::Hidden, cl::init(false), cl::ZeroOrMore,
83 cl::cat(PollyCategory));
Sebastian Pop2c9ec2e2013-06-03 16:35:37 +000084
Tobias Grosser483a90d2014-07-09 10:50:10 +000085static cl::opt<std::string> OnlyFunction(
86 "polly-only-func",
87 cl::desc("Only run on functions that contain a certain string"),
88 cl::value_desc("string"), cl::ValueRequired, cl::init(""),
89 cl::cat(PollyCategory));
Tobias Grosser2ff87232011-10-23 11:17:06 +000090
Tobias Grosser483a90d2014-07-09 10:50:10 +000091static cl::opt<std::string> OnlyRegion(
92 "polly-only-region",
93 cl::desc("Only run on certain regions (The provided identifier must "
94 "appear in the name of the region's entry block"),
95 cl::value_desc("identifier"), cl::ValueRequired, cl::init(""),
96 cl::cat(PollyCategory));
Tobias Grosser4449e522014-01-27 14:24:53 +000097
Tobias Grosser60cd9322011-11-10 12:47:26 +000098static cl::opt<bool>
Tobias Grosser483a90d2014-07-09 10:50:10 +000099 IgnoreAliasing("polly-ignore-aliasing",
100 cl::desc("Ignore possible aliasing of the array bases"),
101 cl::Hidden, cl::init(false), cl::ZeroOrMore,
102 cl::cat(PollyCategory));
Tobias Grosser2ff87232011-10-23 11:17:06 +0000103
Tobias Grosser637bd632013-05-07 07:31:10 +0000104static cl::opt<bool>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000105 ReportLevel("polly-report",
106 cl::desc("Print information about the activities of Polly"),
107 cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory));
Tobias Grosser531891e2012-11-01 16:45:20 +0000108
109static cl::opt<bool>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000110 AllowNonAffine("polly-allow-nonaffine",
111 cl::desc("Allow non affine access functions in arrays"),
112 cl::Hidden, cl::init(false), cl::ZeroOrMore,
113 cl::cat(PollyCategory));
Tobias Grossera1879642011-12-20 10:43:14 +0000114
Tobias Grosserc7d3fc52013-07-25 03:02:29 +0000115static cl::opt<bool, true>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000116 TrackFailures("polly-detect-track-failures",
117 cl::desc("Track failure strings in detecting scop regions"),
118 cl::location(PollyTrackFailures), cl::Hidden, cl::ZeroOrMore,
Andreas Simbuerger3efe40b2014-08-17 10:09:03 +0000119 cl::init(true), cl::cat(PollyCategory));
Tobias Grosserc7d3fc52013-07-25 03:02:29 +0000120
Andreas Simbuerger04472402014-05-24 09:25:10 +0000121static cl::opt<bool> KeepGoing("polly-detect-keep-going",
122 cl::desc("Do not fail on the first error."),
123 cl::Hidden, cl::ZeroOrMore, cl::init(false),
124 cl::cat(PollyCategory));
125
Sebastian Pop18016682014-04-08 21:20:44 +0000126static cl::opt<bool, true>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000127 PollyDelinearizeX("polly-delinearize",
128 cl::desc("Delinearize array access functions"),
129 cl::location(PollyDelinearize), cl::Hidden,
130 cl::ZeroOrMore, cl::init(false), cl::cat(PollyCategory));
Sebastian Pop18016682014-04-08 21:20:44 +0000131
Tobias Grossera1689932014-02-18 18:49:49 +0000132static cl::opt<bool>
Tobias Grosser483a90d2014-07-09 10:50:10 +0000133 VerifyScops("polly-detect-verify",
134 cl::desc("Verify the detected SCoPs after each transformation"),
135 cl::Hidden, cl::init(false), cl::ZeroOrMore,
136 cl::cat(PollyCategory));
Tobias Grossera1689932014-02-18 18:49:49 +0000137
Tobias Grosserc7d3fc52013-07-25 03:02:29 +0000138bool polly::PollyTrackFailures = false;
Sebastian Pop18016682014-04-08 21:20:44 +0000139bool polly::PollyDelinearize = false;
Johannes Doerfert43e1ead2014-07-15 21:06:48 +0000140StringRef polly::PollySkipFnAttr = "polly.skip.fn";
Tobias Grosserc7d3fc52013-07-25 03:02:29 +0000141
Tobias Grosser75805372011-04-29 06:27:02 +0000142//===----------------------------------------------------------------------===//
143// Statistics.
144
145STATISTIC(ValidRegion, "Number of regions that a valid part of Scop");
146
Tobias Grosser8519f892013-12-18 10:49:53 +0000147class DiagnosticScopFound : public DiagnosticInfo {
148private:
149 static int PluginDiagnosticKind;
150
151 Function &F;
152 std::string FileName;
153 unsigned EntryLine, ExitLine;
154
155public:
Tobias Grosser1b12f462013-12-18 11:14:36 +0000156 DiagnosticScopFound(Function &F, std::string FileName, unsigned EntryLine,
157 unsigned ExitLine)
Tobias Grosser8519f892013-12-18 10:49:53 +0000158 : DiagnosticInfo(PluginDiagnosticKind, DS_Note), F(F), FileName(FileName),
Tobias Grosser1b12f462013-12-18 11:14:36 +0000159 EntryLine(EntryLine), ExitLine(ExitLine) {}
Tobias Grosser8519f892013-12-18 10:49:53 +0000160
161 virtual void print(DiagnosticPrinter &DP) const;
162
163 static bool classof(const DiagnosticInfo *DI) {
164 return DI->getKind() == PluginDiagnosticKind;
165 }
166};
167
168int DiagnosticScopFound::PluginDiagnosticKind = 10;
169
Tobias Grosser8519f892013-12-18 10:49:53 +0000170void DiagnosticScopFound::print(DiagnosticPrinter &DP) const {
Tobias Grosser1b12f462013-12-18 11:14:36 +0000171 DP << "Polly detected an optimizable loop region (scop) in function '" << F
172 << "'\n";
Tobias Grosser8519f892013-12-18 10:49:53 +0000173
174 if (FileName.empty()) {
175 DP << "Scop location is unknown. Compile with debug info "
176 "(-g) to get more precise information. ";
Tobias Grosser1b12f462013-12-18 11:14:36 +0000177 return;
Tobias Grosser8519f892013-12-18 10:49:53 +0000178 }
179
180 DP << FileName << ":" << EntryLine << ": Start of scop\n";
181 DP << FileName << ":" << ExitLine << ": End of scop";
182}
183
Tobias Grosser75805372011-04-29 06:27:02 +0000184//===----------------------------------------------------------------------===//
185// ScopDetection.
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000186
187template <class RR, typename... Args>
188inline bool ScopDetection::invalid(DetectionContext &Context, bool Assert,
189 Args &&... Arguments) const {
190
191 if (!Context.Verifying) {
Andreas Simbuerger4870e092014-05-24 09:25:01 +0000192 RejectLog &Log = Context.Log;
193 std::shared_ptr<RR> RejectReason = std::make_shared<RR>(Arguments...);
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000194
Andreas Simbuerger8a00c9b2014-05-24 09:25:06 +0000195 if (PollyTrackFailures)
Andreas Simbuerger4870e092014-05-24 09:25:01 +0000196 Log.report(RejectReason);
Andreas Simbuerger4870e092014-05-24 09:25:01 +0000197
198 DEBUG(dbgs() << RejectReason->getMessage());
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000199 DEBUG(dbgs() << "\n");
200 } else {
201 assert(!Assert && "Verification of detected scop failed");
202 }
203
204 return false;
205}
206
Tobias Grossera1689932014-02-18 18:49:49 +0000207bool ScopDetection::isMaxRegionInScop(const Region &R, bool Verify) const {
208 if (!ValidRegions.count(&R))
209 return false;
210
211 if (Verify)
212 return isValidRegion(const_cast<Region &>(R));
213
214 return true;
Tobias Grosser75805372011-04-29 06:27:02 +0000215}
216
Tobias Grosser4f129a62011-10-08 00:30:55 +0000217std::string ScopDetection::regionIsInvalidBecause(const Region *R) const {
Andreas Simbuerger8a00c9b2014-05-24 09:25:06 +0000218 if (!RejectLogs.count(R))
Tobias Grosser4f129a62011-10-08 00:30:55 +0000219 return "";
220
Andreas Simbuerger8a00c9b2014-05-24 09:25:06 +0000221 // Get the first error we found. Even in keep-going mode, this is the first
222 // reason that caused the candidate to be rejected.
223 RejectLog Errors = RejectLogs.at(R);
Andreas Simbuerger83ed8612014-06-12 07:25:08 +0000224
225 // This can happen when we marked a region invalid, but didn't track
226 // an error for it.
227 if (Errors.size() == 0)
228 return "";
229
230 RejectReasonPtr RR = *Errors.begin();
231 return RR->getMessage();
Tobias Grosser4f129a62011-10-08 00:30:55 +0000232}
233
Tobias Grossere602a072013-05-07 07:30:56 +0000234bool ScopDetection::isValidCFG(BasicBlock &BB,
235 DetectionContext &Context) const {
Tobias Grosser75805372011-04-29 06:27:02 +0000236 Region &RefRegion = Context.CurRegion;
237 TerminatorInst *TI = BB.getTerminator();
238
239 // Return instructions are only valid if the region is the top level region.
240 if (isa<ReturnInst>(TI) && !RefRegion.getExit() && TI->getNumOperands() == 0)
241 return true;
242
243 BranchInst *Br = dyn_cast<BranchInst>(TI);
244
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000245 if (!Br)
246 return invalid<ReportNonBranchTerminator>(Context, /*Assert=*/true, &BB);
Tobias Grosser75805372011-04-29 06:27:02 +0000247
Tobias Grosser74394f02013-01-14 22:40:23 +0000248 if (Br->isUnconditional())
249 return true;
Tobias Grosser75805372011-04-29 06:27:02 +0000250
251 Value *Condition = Br->getCondition();
252
253 // UndefValue is not allowed as condition.
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000254 if (isa<UndefValue>(Condition))
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000255 return invalid<ReportUndefCond>(Context, /*Assert=*/true, Br, &BB);
Tobias Grosser75805372011-04-29 06:27:02 +0000256
257 // Only Constant and ICmpInst are allowed as condition.
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000258 if (!(isa<Constant>(Condition) || isa<ICmpInst>(Condition)))
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000259 return invalid<ReportInvalidCond>(Context, /*Assert=*/true, Br, &BB);
Tobias Grosser75805372011-04-29 06:27:02 +0000260
261 // Allow perfectly nested conditions.
262 assert(Br->getNumSuccessors() == 2 && "Unexpected number of successors");
263
264 if (ICmpInst *ICmp = dyn_cast<ICmpInst>(Condition)) {
265 // Unsigned comparisons are not allowed. They trigger overflow problems
266 // in the code generation.
267 //
268 // TODO: This is not sufficient and just hides bugs. However it does pretty
269 // well.
Tobias Grosser1bb59b02012-12-29 23:47:38 +0000270 if (ICmp->isUnsigned())
Tobias Grosser75805372011-04-29 06:27:02 +0000271 return false;
272
273 // Are both operands of the ICmp affine?
Tobias Grosser74394f02013-01-14 22:40:23 +0000274 if (isa<UndefValue>(ICmp->getOperand(0)) ||
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000275 isa<UndefValue>(ICmp->getOperand(1)))
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000276 return invalid<ReportUndefOperand>(Context, /*Assert=*/true, &BB, ICmp);
Tobias Grosser75805372011-04-29 06:27:02 +0000277
Sebastian Pop9f57c5b2013-04-10 04:05:18 +0000278 Loop *L = LI->getLoopFor(ICmp->getParent());
279 const SCEV *LHS = SE->getSCEVAtScope(ICmp->getOperand(0), L);
280 const SCEV *RHS = SE->getSCEVAtScope(ICmp->getOperand(1), L);
Tobias Grosser75805372011-04-29 06:27:02 +0000281
Tobias Grossera66fa6c2011-11-10 12:45:11 +0000282 if (!isAffineExpr(&Context.CurRegion, LHS, *SE) ||
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000283 !isAffineExpr(&Context.CurRegion, RHS, *SE))
284 return invalid<ReportNonAffBranch>(Context, /*Assert=*/true, &BB, LHS,
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000285 RHS, ICmp);
Tobias Grosser75805372011-04-29 06:27:02 +0000286 }
287
288 // Allow loop exit conditions.
289 Loop *L = LI->getLoopFor(&BB);
290 if (L && L->getExitingBlock() == &BB)
291 return true;
292
293 // Allow perfectly nested conditions.
294 Region *R = RI->getRegionFor(&BB);
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000295 if (R->getEntry() != &BB)
296 return invalid<ReportCondition>(Context, /*Assert=*/true, &BB);
Tobias Grosser75805372011-04-29 06:27:02 +0000297
298 return true;
299}
300
301bool ScopDetection::isValidCallInst(CallInst &CI) {
302 if (CI.mayHaveSideEffects() || CI.doesNotReturn())
303 return false;
304
305 if (CI.doesNotAccessMemory())
306 return true;
307
308 Function *CalledFunction = CI.getCalledFunction();
309
310 // Indirect calls are not supported.
311 if (CalledFunction == 0)
312 return false;
313
314 // TODO: Intrinsics.
315 return false;
316}
317
Tobias Grosser458fb782014-01-28 12:58:58 +0000318bool ScopDetection::isInvariant(const Value &Val, const Region &Reg) const {
319 // A reference to function argument or constant value is invariant.
320 if (isa<Argument>(Val) || isa<Constant>(Val))
321 return true;
322
323 const Instruction *I = dyn_cast<Instruction>(&Val);
324 if (!I)
325 return false;
326
327 if (!Reg.contains(I))
328 return true;
329
330 if (I->mayHaveSideEffects())
331 return false;
332
333 // When Val is a Phi node, it is likely not invariant. We do not check whether
334 // Phi nodes are actually invariant, we assume that Phi nodes are usually not
335 // invariant. Recursively checking the operators of Phi nodes would lead to
336 // infinite recursion.
337 if (isa<PHINode>(*I))
338 return false;
339
Tobias Grosser26108892014-04-02 20:18:19 +0000340 for (const Use &Operand : I->operands())
Tobias Grosser1d191902014-03-03 13:13:55 +0000341 if (!isInvariant(*Operand, Reg))
Tobias Grosser458fb782014-01-28 12:58:58 +0000342 return false;
Tobias Grosser458fb782014-01-28 12:58:58 +0000343
344 // When the instruction is a load instruction, check that no write to memory
345 // in the region aliases with the load.
346 if (const LoadInst *LI = dyn_cast<LoadInst>(I)) {
347 AliasAnalysis::Location Loc = AA->getLocation(LI);
348 const Region::const_block_iterator BE = Reg.block_end();
349 // Check if any basic block in the region can modify the location pointed to
350 // by 'Loc'. If so, 'Val' is (likely) not invariant in the region.
Tobias Grosser26108892014-04-02 20:18:19 +0000351 for (const BasicBlock *BB : Reg.blocks())
Tobias Grosser1d191902014-03-03 13:13:55 +0000352 if (AA->canBasicBlockModify(*BB, Loc))
Tobias Grosser458fb782014-01-28 12:58:58 +0000353 return false;
Tobias Grosser458fb782014-01-28 12:58:58 +0000354 }
355
356 return true;
357}
358
Sebastian Pop422e33f2014-06-03 18:16:31 +0000359MapInsnToMemAcc InsnToMemAcc;
360
Sebastian Popb57c0992014-05-12 20:24:26 +0000361bool ScopDetection::hasAffineMemoryAccesses(DetectionContext &Context) const {
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000362 for (auto P : Context.NonAffineAccesses) {
363 const SCEVUnknown *BasePointer = P.first;
364 Value *BaseValue = BasePointer->getValue();
Sebastian Pop422e33f2014-06-03 18:16:31 +0000365 ArrayShape *Shape = new ArrayShape(BasePointer);
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000366
367 // First step: collect parametric terms in all array references.
368 SmallVector<const SCEV *, 4> Terms;
Sebastian Pop422e33f2014-06-03 18:16:31 +0000369 for (PairInsnAddRec PIAF : Context.NonAffineAccesses[BasePointer])
370 PIAF.second->collectParametricTerms(*SE, Terms);
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000371
Sebastian Pope8863b82014-05-12 19:02:02 +0000372 // Also collect terms from the affine memory accesses.
Sebastian Pop422e33f2014-06-03 18:16:31 +0000373 for (PairInsnAddRec PIAF : Context.AffineAccesses[BasePointer])
374 PIAF.second->collectParametricTerms(*SE, Terms);
Sebastian Pope8863b82014-05-12 19:02:02 +0000375
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000376 // Second step: find array shape.
Sebastian Pop422e33f2014-06-03 18:16:31 +0000377 SE->findArrayDimensions(Terms, Shape->DelinearizedSizes,
378 Context.ElementSize[BasePointer]);
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000379
380 // Third step: compute the access functions for each subscript.
Sebastian Pop422e33f2014-06-03 18:16:31 +0000381 for (PairInsnAddRec PIAF : Context.NonAffineAccesses[BasePointer]) {
382 const SCEVAddRecExpr *AF = PIAF.second;
383 const Instruction *Insn = PIAF.first;
384 if (Shape->DelinearizedSizes.empty())
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000385 return invalid<ReportNonAffineAccess>(Context, /*Assert=*/true, AF,
386 Insn);
Sebastian Pope8863b82014-05-12 19:02:02 +0000387
Sebastian Pop422e33f2014-06-03 18:16:31 +0000388 MemAcc *Acc = new MemAcc(Insn, Shape);
Tobias Grosserd79029a2014-06-03 20:20:41 +0000389 InsnToMemAcc.insert({Insn, Acc});
Sebastian Pop422e33f2014-06-03 18:16:31 +0000390 AF->computeAccessFunctions(*SE, Acc->DelinearizedSubscripts,
391 Shape->DelinearizedSizes);
392 if (Shape->DelinearizedSizes.empty() ||
393 Acc->DelinearizedSubscripts.empty())
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000394 return invalid<ReportNonAffineAccess>(Context, /*Assert=*/true, AF,
395 Insn);
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000396
397 // Check that the delinearized subscripts are affine.
Sebastian Pop422e33f2014-06-03 18:16:31 +0000398 for (const SCEV *S : Acc->DelinearizedSubscripts)
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000399 if (!isAffineExpr(&Context.CurRegion, S, *SE, BaseValue))
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000400 return invalid<ReportNonAffineAccess>(Context, /*Assert=*/true, AF,
401 Insn);
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000402 }
403 }
Sebastian Pope8863b82014-05-12 19:02:02 +0000404 return true;
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000405}
406
Tobias Grosser75805372011-04-29 06:27:02 +0000407bool ScopDetection::isValidMemoryAccess(Instruction &Inst,
408 DetectionContext &Context) const {
Tobias Grossere5e171e2011-11-10 12:45:03 +0000409 Value *Ptr = getPointerOperand(Inst);
Sebastian Pop9f57c5b2013-04-10 04:05:18 +0000410 Loop *L = LI->getLoopFor(Inst.getParent());
411 const SCEV *AccessFunction = SE->getSCEVAtScope(Ptr, L);
Tobias Grosserb8710b52011-11-10 12:44:50 +0000412 const SCEVUnknown *BasePointer;
Tobias Grossere5e171e2011-11-10 12:45:03 +0000413 Value *BaseValue;
Tobias Grosser75805372011-04-29 06:27:02 +0000414
Tobias Grosserb8710b52011-11-10 12:44:50 +0000415 BasePointer = dyn_cast<SCEVUnknown>(SE->getPointerBase(AccessFunction));
416
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000417 if (!BasePointer)
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000418 return invalid<ReportNoBasePtr>(Context, /*Assert=*/true, &Inst);
Tobias Grosserb8710b52011-11-10 12:44:50 +0000419
420 BaseValue = BasePointer->getValue();
421
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000422 if (isa<UndefValue>(BaseValue))
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000423 return invalid<ReportUndefBasePtr>(Context, /*Assert=*/true, &Inst);
Tobias Grosserb8710b52011-11-10 12:44:50 +0000424
Tobias Grosser458fb782014-01-28 12:58:58 +0000425 // Check that the base address of the access is invariant in the current
426 // region.
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000427 if (!isInvariant(*BaseValue, Context.CurRegion))
Tobias Grosserab2227a2014-01-28 13:43:24 +0000428 // Verification of this property is difficult as the independent blocks
429 // pass may introduce aliasing that we did not have when running the
430 // scop detection.
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000431 return invalid<ReportVariantBasePtr>(Context, /*Assert=*/false, BaseValue,
432 &Inst);
Tobias Grosser458fb782014-01-28 12:58:58 +0000433
Tobias Grosserb8710b52011-11-10 12:44:50 +0000434 AccessFunction = SE->getMinusSCEV(AccessFunction, BasePointer);
435
Sebastian Pop18016682014-04-08 21:20:44 +0000436 if (AllowNonAffine) {
437 // Do not check whether AccessFunction is affine.
Sebastian Popcd3bb592014-04-10 16:08:11 +0000438 } else if (!isAffineExpr(&Context.CurRegion, AccessFunction, *SE,
439 BaseValue)) {
440 const SCEVAddRecExpr *AF = dyn_cast<SCEVAddRecExpr>(AccessFunction);
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000441
Sebastian Popcd3bb592014-04-10 16:08:11 +0000442 if (!PollyDelinearize || !AF)
443 return invalid<ReportNonAffineAccess>(Context, /*Assert=*/true,
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000444 AccessFunction, &Inst);
Sebastian Popcd3bb592014-04-10 16:08:11 +0000445
Sebastian Popbc9009a2014-05-27 22:42:09 +0000446 const SCEV *ElementSize = SE->getElementSize(&Inst);
447 Context.ElementSize[BasePointer] = ElementSize;
448
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000449 // Collect all non affine memory accesses, and check whether they are linear
450 // at the end of scop detection. That way we can delinearize all the memory
451 // accesses to the same array in a unique step.
452 if (Context.NonAffineAccesses[BasePointer].size() == 0)
453 Context.NonAffineAccesses[BasePointer] = AFs();
Tobias Grosserd79029a2014-06-03 20:20:41 +0000454 Context.NonAffineAccesses[BasePointer].push_back({&Inst, AF});
Sebastian Pope8863b82014-05-12 19:02:02 +0000455 } else if (const SCEVAddRecExpr *AF =
456 dyn_cast<SCEVAddRecExpr>(AccessFunction)) {
457 if (Context.AffineAccesses[BasePointer].size() == 0)
458 Context.AffineAccesses[BasePointer] = AFs();
Tobias Grosserd79029a2014-06-03 20:20:41 +0000459 Context.AffineAccesses[BasePointer].push_back({&Inst, AF});
Sebastian Pop18016682014-04-08 21:20:44 +0000460 }
Tobias Grosser75805372011-04-29 06:27:02 +0000461
462 // FIXME: Alias Analysis thinks IntToPtrInst aliases with alloca instructions
463 // created by IndependentBlocks Pass.
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000464 if (IntToPtrInst *Inst = dyn_cast<IntToPtrInst>(BaseValue))
465 return invalid<ReportIntToPtr>(Context, /*Assert=*/true, Inst);
Tobias Grosser75805372011-04-29 06:27:02 +0000466
Sebastian Pop8c2d7532013-07-03 22:50:36 +0000467 if (IgnoreAliasing)
468 return true;
Tobias Grosserfff5adc2011-11-10 13:21:43 +0000469
Sebastian Pop8c2d7532013-07-03 22:50:36 +0000470 // Check if the base pointer of the memory access does alias with
471 // any other pointer. This cannot be handled at the moment.
Tobias Grosser298a7642013-07-14 18:09:43 +0000472 AliasSet &AS =
473 Context.AST.getAliasSetForPointer(BaseValue, AliasAnalysis::UnknownSize,
474 Inst.getMetadata(LLVMContext::MD_tbaa));
Tobias Grosser428b3e42013-02-04 15:46:25 +0000475
Sebastian Pop8c2d7532013-07-03 22:50:36 +0000476 // INVALID triggers an assertion in verifying mode, if it detects that a
477 // SCoP was detected by SCoP detection and that this SCoP was invalidated by
478 // a pass that stated it would preserve the SCoPs. We disable this check as
479 // the independent blocks pass may create memory references which seem to
480 // alias, if -basicaa is not available. They actually do not, but as we can
481 // not proof this without -basicaa we would fail. We disable this check to
482 // not cause irrelevant verification failures.
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000483 if (!AS.isMustAlias())
Andreas Simbuergere2c92432014-06-26 10:19:57 +0000484 return invalid<ReportAlias>(Context, /*Assert=*/false, &Inst, AS);
Tobias Grosser75805372011-04-29 06:27:02 +0000485
486 return true;
487}
488
Tobias Grosser75805372011-04-29 06:27:02 +0000489bool ScopDetection::isValidInstruction(Instruction &Inst,
490 DetectionContext &Context) const {
Tobias Grosser75805372011-04-29 06:27:02 +0000491 if (PHINode *PN = dyn_cast<PHINode>(&Inst))
Tobias Grosserecfe21b2013-03-20 18:03:18 +0000492 if (!canSynthesize(PN, LI, SE, &Context.CurRegion)) {
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000493 if (SCEVCodegen)
494 return invalid<ReportPhiNodeRefInRegion>(Context, /*Assert=*/true,
495 &Inst);
496 else
497 return invalid<ReportNonCanonicalPhiNode>(Context, /*Assert=*/true,
498 &Inst);
Tobias Grosserecfe21b2013-03-20 18:03:18 +0000499 }
Tobias Grosser75805372011-04-29 06:27:02 +0000500
Tobias Grosser75805372011-04-29 06:27:02 +0000501 // We only check the call instruction but not invoke instruction.
502 if (CallInst *CI = dyn_cast<CallInst>(&Inst)) {
503 if (isValidCallInst(*CI))
504 return true;
505
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000506 return invalid<ReportFuncCall>(Context, /*Assert=*/true, &Inst);
Tobias Grosser75805372011-04-29 06:27:02 +0000507 }
508
509 if (!Inst.mayWriteToMemory() && !Inst.mayReadFromMemory()) {
Tobias Grosser5b1a7f22013-07-22 03:50:33 +0000510 if (!isa<AllocaInst>(Inst))
511 return true;
Tobias Grosser75805372011-04-29 06:27:02 +0000512
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000513 return invalid<ReportAlloca>(Context, /*Assert=*/true, &Inst);
Tobias Grosser75805372011-04-29 06:27:02 +0000514 }
515
516 // Check the access function.
517 if (isa<LoadInst>(Inst) || isa<StoreInst>(Inst))
518 return isValidMemoryAccess(Inst, Context);
519
520 // We do not know this instruction, therefore we assume it is invalid.
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000521 return invalid<ReportUnknownInst>(Context, /*Assert=*/true, &Inst);
Tobias Grosser75805372011-04-29 06:27:02 +0000522}
523
Tobias Grosser75805372011-04-29 06:27:02 +0000524bool ScopDetection::isValidLoop(Loop *L, DetectionContext &Context) const {
Tobias Grosser826b2af2013-03-21 16:14:50 +0000525 if (!SCEVCodegen) {
526 // If code generation is not in scev based mode, we need to ensure that
527 // each loop has a canonical induction variable.
528 PHINode *IndVar = L->getCanonicalInductionVariable();
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000529 if (!IndVar)
530 return invalid<ReportLoopHeader>(Context, /*Assert=*/true, L);
Tobias Grosser826b2af2013-03-21 16:14:50 +0000531 }
Tobias Grosser75805372011-04-29 06:27:02 +0000532
533 // Is the loop count affine?
534 const SCEV *LoopCount = SE->getBackedgeTakenCount(L);
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000535 if (!isAffineExpr(&Context.CurRegion, LoopCount, *SE))
536 return invalid<ReportLoopBound>(Context, /*Assert=*/true, L, LoopCount);
Tobias Grosser75805372011-04-29 06:27:02 +0000537
538 return true;
539}
540
541Region *ScopDetection::expandRegion(Region &R) {
Hongbin Zhenged986ab2012-04-07 15:14:28 +0000542 // Initial no valid region was found (greater than R)
Tobias Grosser5a56cbf2014-04-16 07:33:47 +0000543 Region *LastValidRegion = nullptr;
Tobias Grosser1bb59b02012-12-29 23:47:38 +0000544 Region *ExpandedRegion = R.getExpandedRegion();
Tobias Grosser75805372011-04-29 06:27:02 +0000545
546 DEBUG(dbgs() << "\tExpanding " << R.getNameStr() << "\n");
547
Hongbin Zhenged986ab2012-04-07 15:14:28 +0000548 while (ExpandedRegion) {
549 DetectionContext Context(*ExpandedRegion, *AA, false /* verifying */);
550 DEBUG(dbgs() << "\t\tTrying " << ExpandedRegion->getNameStr() << "\n");
Andreas Simbuergerb379edb2014-06-27 06:21:14 +0000551 // Only expand when we did not collect errors.
Tobias Grosser75805372011-04-29 06:27:02 +0000552
Hongbin Zhenged986ab2012-04-07 15:14:28 +0000553 // Check the exit first (cheap)
Andreas Simbuergerb379edb2014-06-27 06:21:14 +0000554 if (isValidExit(Context) && !Context.Log.hasErrors()) {
Hongbin Zhenged986ab2012-04-07 15:14:28 +0000555 // If the exit is valid check all blocks
556 // - if true, a valid region was found => store it + keep expanding
557 // - if false, .tbd. => stop (should this really end the loop?)
Andreas Simbuergerb379edb2014-06-27 06:21:14 +0000558 if (!allBlocksValid(Context) || Context.Log.hasErrors())
559 break;
560
561 if (Context.Log.hasErrors())
Hongbin Zhenged986ab2012-04-07 15:14:28 +0000562 break;
Tobias Grosser75805372011-04-29 06:27:02 +0000563
Hongbin Zhenged986ab2012-04-07 15:14:28 +0000564 // Delete unnecessary regions (allocated by getExpandedRegion)
565 if (LastValidRegion)
566 delete LastValidRegion;
567
Tobias Grosserd7e58642013-04-10 06:55:45 +0000568 // Store this region, because it is the greatest valid (encountered so
569 // far).
Hongbin Zhenged986ab2012-04-07 15:14:28 +0000570 LastValidRegion = ExpandedRegion;
571
572 // Create and test the next greater region (if any)
573 ExpandedRegion = ExpandedRegion->getExpandedRegion();
574
575 } else {
576 // Create and test the next greater region (if any)
577 Region *TmpRegion = ExpandedRegion->getExpandedRegion();
578
579 // Delete unnecessary regions (allocated by getExpandedRegion)
580 delete ExpandedRegion;
581
582 ExpandedRegion = TmpRegion;
Tobias Grosser75805372011-04-29 06:27:02 +0000583 }
Tobias Grosser75805372011-04-29 06:27:02 +0000584 }
585
Tobias Grosser378a9f22013-11-16 19:34:11 +0000586 DEBUG({
587 if (LastValidRegion)
588 dbgs() << "\tto " << LastValidRegion->getNameStr() << "\n";
589 else
590 dbgs() << "\tExpanding " << R.getNameStr() << " failed\n";
591 });
Tobias Grosser75805372011-04-29 06:27:02 +0000592
Hongbin Zhenged986ab2012-04-07 15:14:28 +0000593 return LastValidRegion;
Tobias Grosser75805372011-04-29 06:27:02 +0000594}
Sebastian Pop2c9ec2e2013-06-03 16:35:37 +0000595static bool regionWithoutLoops(Region &R, LoopInfo *LI) {
Tobias Grosser26108892014-04-02 20:18:19 +0000596 for (const BasicBlock *BB : R.blocks())
Tobias Grosser1d191902014-03-03 13:13:55 +0000597 if (R.contains(LI->getLoopFor(BB)))
Sebastian Pop2c9ec2e2013-06-03 16:35:37 +0000598 return false;
599
600 return true;
601}
Tobias Grosser75805372011-04-29 06:27:02 +0000602
Tobias Grosser28a70c52014-01-29 19:05:30 +0000603// Remove all direct and indirect children of region R from the region set Regs,
604// but do not recurse further if the first child has been found.
605//
606// Return the number of regions erased from Regs.
607static unsigned eraseAllChildren(std::set<const Region *> &Regs,
David Blaikieb035f6d2014-04-15 18:45:27 +0000608 const Region &R) {
Tobias Grosser28a70c52014-01-29 19:05:30 +0000609 unsigned Count = 0;
David Blaikieb035f6d2014-04-15 18:45:27 +0000610 for (auto &SubRegion : R) {
611 if (Regs.find(SubRegion.get()) != Regs.end()) {
Tobias Grosser28a70c52014-01-29 19:05:30 +0000612 ++Count;
David Blaikieb035f6d2014-04-15 18:45:27 +0000613 Regs.erase(SubRegion.get());
Tobias Grosser28a70c52014-01-29 19:05:30 +0000614 } else {
David Blaikieb035f6d2014-04-15 18:45:27 +0000615 Count += eraseAllChildren(Regs, *SubRegion);
Tobias Grosser28a70c52014-01-29 19:05:30 +0000616 }
617 }
618 return Count;
619}
620
Tobias Grosser75805372011-04-29 06:27:02 +0000621void ScopDetection::findScops(Region &R) {
Sebastian Pop2c9ec2e2013-06-03 16:35:37 +0000622 if (!DetectRegionsWithoutLoops && regionWithoutLoops(R, LI))
623 return;
624
Andreas Simbuerger04472402014-05-24 09:25:10 +0000625 bool IsValidRegion = isValidRegion(R);
626 bool HasErrors = RejectLogs.count(&R) > 0;
627
628 if (IsValidRegion && !HasErrors) {
Tobias Grosser75805372011-04-29 06:27:02 +0000629 ++ValidRegion;
630 ValidRegions.insert(&R);
631 return;
632 }
633
David Blaikieb035f6d2014-04-15 18:45:27 +0000634 for (auto &SubRegion : R)
Tobias Grosser00dc3092014-03-02 12:02:46 +0000635 findScops(*SubRegion);
Tobias Grosser75805372011-04-29 06:27:02 +0000636
637 // Try to expand regions.
638 //
639 // As the region tree normally only contains canonical regions, non canonical
640 // regions that form a Scop are not found. Therefore, those non canonical
641 // regions are checked by expanding the canonical ones.
642
Tobias Grosser0d1eee32013-02-05 11:56:05 +0000643 std::vector<Region *> ToExpand;
Tobias Grosser75805372011-04-29 06:27:02 +0000644
David Blaikieb035f6d2014-04-15 18:45:27 +0000645 for (auto &SubRegion : R)
646 ToExpand.push_back(SubRegion.get());
Tobias Grosser75805372011-04-29 06:27:02 +0000647
Tobias Grosser26108892014-04-02 20:18:19 +0000648 for (Region *CurrentRegion : ToExpand) {
Andreas Simbuergerb379edb2014-06-27 06:21:14 +0000649 // Skip regions that had errors.
650 bool HadErrors = RejectLogs.hasErrors(CurrentRegion);
651 if (HadErrors)
652 continue;
653
Tobias Grosser75805372011-04-29 06:27:02 +0000654 // Skip invalid regions. Regions may become invalid, if they are element of
655 // an already expanded region.
656 if (ValidRegions.find(CurrentRegion) == ValidRegions.end())
657 continue;
658
659 Region *ExpandedR = expandRegion(*CurrentRegion);
660
661 if (!ExpandedR)
662 continue;
663
664 R.addSubRegion(ExpandedR, true);
665 ValidRegions.insert(ExpandedR);
666 ValidRegions.erase(CurrentRegion);
667
Tobias Grosser28a70c52014-01-29 19:05:30 +0000668 // Erase all (direct and indirect) children of ExpandedR from the valid
669 // regions and update the number of valid regions.
David Blaikieb035f6d2014-04-15 18:45:27 +0000670 ValidRegion -= eraseAllChildren(ValidRegions, *ExpandedR);
Tobias Grosser75805372011-04-29 06:27:02 +0000671 }
672}
673
674bool ScopDetection::allBlocksValid(DetectionContext &Context) const {
675 Region &R = Context.CurRegion;
676
Tobias Grosser26108892014-04-02 20:18:19 +0000677 for (const BasicBlock *BB : R.blocks()) {
Tobias Grosser1d191902014-03-03 13:13:55 +0000678 Loop *L = LI->getLoopFor(BB);
Andreas Simbuerger04472402014-05-24 09:25:10 +0000679 if (L && L->getHeader() == BB && (!isValidLoop(L, Context) && !KeepGoing))
Sebastian Popb88ea5e2013-06-11 22:20:32 +0000680 return false;
681 }
682
Tobias Grosser26108892014-04-02 20:18:19 +0000683 for (BasicBlock *BB : R.blocks())
Andreas Simbuerger04472402014-05-24 09:25:10 +0000684 if (!isValidCFG(*BB, Context) && !KeepGoing)
Sebastian Pop9e3d2dd2013-06-11 22:20:27 +0000685 return false;
686
Tobias Grosser26108892014-04-02 20:18:19 +0000687 for (BasicBlock *BB : R.blocks())
Tobias Grosser1d191902014-03-03 13:13:55 +0000688 for (BasicBlock::iterator I = BB->begin(), E = --BB->end(); I != E; ++I)
Andreas Simbuerger04472402014-05-24 09:25:10 +0000689 if (!isValidInstruction(*I, Context) && !KeepGoing)
Sebastian Pop8ca899c2013-06-14 20:20:43 +0000690 return false;
Tobias Grosser75805372011-04-29 06:27:02 +0000691
Sebastian Pope8863b82014-05-12 19:02:02 +0000692 if (!hasAffineMemoryAccesses(Context))
Sebastian Pop46e1ecd2014-05-09 22:45:15 +0000693 return false;
694
Tobias Grosser75805372011-04-29 06:27:02 +0000695 return true;
696}
697
698bool ScopDetection::isValidExit(DetectionContext &Context) const {
699 Region &R = Context.CurRegion;
700
701 // PHI nodes are not allowed in the exit basic block.
702 if (BasicBlock *Exit = R.getExit()) {
703 BasicBlock::iterator I = Exit->begin();
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000704 if (I != Exit->end() && isa<PHINode>(*I))
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000705 return invalid<ReportPHIinExit>(Context, /*Assert=*/true, I);
Tobias Grosser75805372011-04-29 06:27:02 +0000706 }
707
708 return true;
709}
710
Tobias Grosser9b1100b2014-02-18 18:49:46 +0000711bool ScopDetection::isValidRegion(Region &R) const {
712 DetectionContext Context(R, *AA, false /*verifying*/);
Andreas Simbuerger4870e092014-05-24 09:25:01 +0000713
714 bool RegionIsValid = isValidRegion(Context);
Andreas Simbuerger04472402014-05-24 09:25:10 +0000715 bool HasErrors = !RegionIsValid || Context.Log.size() > 0;
716
Andreas Simbuerger5bf774c2014-06-26 13:36:52 +0000717 if (PollyTrackFailures && HasErrors)
718 RejectLogs.insert(std::make_pair(&R, Context.Log));
Andreas Simbuerger4870e092014-05-24 09:25:01 +0000719
720 return RegionIsValid;
Tobias Grosser9b1100b2014-02-18 18:49:46 +0000721}
722
Tobias Grosser75805372011-04-29 06:27:02 +0000723bool ScopDetection::isValidRegion(DetectionContext &Context) const {
724 Region &R = Context.CurRegion;
725
726 DEBUG(dbgs() << "Checking region: " << R.getNameStr() << "\n\t");
727
Tobias Grosseraeabcf22013-04-02 06:41:48 +0000728 if (R.isTopLevelRegion()) {
Tobias Grosser4d96c8d2013-03-23 01:05:07 +0000729 DEBUG(dbgs() << "Top level region is invalid"; dbgs() << "\n");
Tobias Grosser75805372011-04-29 06:27:02 +0000730 return false;
731 }
732
Tobias Grosser4449e522014-01-27 14:24:53 +0000733 if (!R.getEntry()->getName().count(OnlyRegion)) {
734 DEBUG({
735 dbgs() << "Region entry does not match -polly-region-only";
736 dbgs() << "\n";
737 });
738 return false;
739 }
740
Tobias Grossere602a072013-05-07 07:30:56 +0000741 if (!R.getEnteringBlock()) {
Sebastian Pop9d632342013-06-11 22:20:40 +0000742 BasicBlock *entry = R.getEntry();
743 Loop *L = LI->getLoopFor(entry);
744
745 if (L) {
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000746 if (!L->isLoopSimplifyForm())
747 return invalid<ReportSimpleLoop>(Context, /*Assert=*/true);
Sebastian Pop9d632342013-06-11 22:20:40 +0000748
749 for (pred_iterator PI = pred_begin(entry), PE = pred_end(entry); PI != PE;
750 ++PI) {
751 // Region entering edges come from the same loop but outside the region
752 // are not allowed.
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000753 if (L->contains(*PI) && !R.contains(*PI))
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000754 return invalid<ReportIndEdge>(Context, /*Assert=*/true, *PI);
Sebastian Pop9d632342013-06-11 22:20:40 +0000755 }
756 }
Tobias Grosser8edce4e2013-04-16 08:04:42 +0000757 }
758
Tobias Grosserd654c252012-04-10 18:12:19 +0000759 // SCoP cannot contain the entry block of the function, because we need
Tobias Grosser75805372011-04-29 06:27:02 +0000760 // to insert alloca instruction there when translate scalar to array.
Andreas Simbuerger01a37a02014-04-02 11:54:01 +0000761 if (R.getEntry() == &(R.getEntry()->getParent()->getEntryBlock()))
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000762 return invalid<ReportEntry>(Context, /*Assert=*/true, R.getEntry());
Tobias Grosser75805372011-04-29 06:27:02 +0000763
Hongbin Zheng94868e62012-04-07 12:29:17 +0000764 if (!isValidExit(Context))
Tobias Grosser75805372011-04-29 06:27:02 +0000765 return false;
766
Hongbin Zheng94868e62012-04-07 12:29:17 +0000767 if (!allBlocksValid(Context))
Tobias Grosser75805372011-04-29 06:27:02 +0000768 return false;
769
770 DEBUG(dbgs() << "OK\n");
771 return true;
772}
773
Johannes Doerfert43e1ead2014-07-15 21:06:48 +0000774void ScopDetection::markFunctionAsInvalid(Function *F) const {
775 F->addFnAttr(PollySkipFnAttr);
776}
777
Tobias Grosser75805372011-04-29 06:27:02 +0000778bool ScopDetection::isValidFunction(llvm::Function &F) {
Johannes Doerfert43e1ead2014-07-15 21:06:48 +0000779 return !F.hasFnAttribute(PollySkipFnAttr);
Tobias Grosser75805372011-04-29 06:27:02 +0000780}
781
Tobias Grosserb2863ca2013-03-04 19:49:51 +0000782void ScopDetection::printLocations(llvm::Function &F) {
Tobias Grosser26108892014-04-02 20:18:19 +0000783 for (const Region *R : *this) {
Tobias Grosser531891e2012-11-01 16:45:20 +0000784 unsigned LineEntry, LineExit;
785 std::string FileName;
786
Tobias Grosser00dc3092014-03-02 12:02:46 +0000787 getDebugLocation(R, LineEntry, LineExit, FileName);
Tobias Grosser8519f892013-12-18 10:49:53 +0000788 DiagnosticScopFound Diagnostic(F, FileName, LineEntry, LineExit);
789 F.getContext().diagnose(Diagnostic);
Tobias Grosser531891e2012-11-01 16:45:20 +0000790 }
791}
792
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000793void
794ScopDetection::emitMissedRemarksForValidRegions(const Function &F,
795 const RegionSet &ValidRegions) {
796 for (const Region *R : ValidRegions) {
797 const Region *Parent = R->getParent();
798 if (Parent && !Parent->isTopLevelRegion() && RejectLogs.count(Parent))
799 emitRejectionRemarks(F, RejectLogs.at(Parent));
800 }
801}
802
803void ScopDetection::emitMissedRemarksForLeaves(const Function &F,
804 const Region *R) {
805 for (const std::unique_ptr<Region> &Child : *R) {
806 bool IsValid = ValidRegions.count(Child.get());
807 if (IsValid)
808 continue;
809
810 bool IsLeaf = Child->begin() == Child->end();
811 if (!IsLeaf)
812 emitMissedRemarksForLeaves(F, Child.get());
813 else {
814 if (RejectLogs.count(Child.get())) {
815 emitRejectionRemarks(F, RejectLogs.at(Child.get()));
816 }
817 }
818 }
819}
820
Tobias Grosser75805372011-04-29 06:27:02 +0000821bool ScopDetection::runOnFunction(llvm::Function &F) {
Sebastian Pop8fe6d112013-05-30 17:47:32 +0000822 LI = &getAnalysis<LoopInfo>();
Matt Arsenault8ca36812014-07-19 18:40:17 +0000823 RI = &getAnalysis<RegionInfoPass>().getRegionInfo();
Sebastian Pop8fe6d112013-05-30 17:47:32 +0000824 if (!DetectScopsWithoutLoops && LI->empty())
825 return false;
826
Tobias Grosser75805372011-04-29 06:27:02 +0000827 AA = &getAnalysis<AliasAnalysis>();
828 SE = &getAnalysis<ScalarEvolution>();
Tobias Grosser75805372011-04-29 06:27:02 +0000829 Region *TopRegion = RI->getTopLevelRegion();
830
Tobias Grosser2ff87232011-10-23 11:17:06 +0000831 releaseMemory();
832
Tobias Grossera3ab27e2014-05-07 11:23:32 +0000833 if (OnlyFunction != "" && !F.getName().count(OnlyFunction))
Tobias Grosser2ff87232011-10-23 11:17:06 +0000834 return false;
835
Tobias Grosser1bb59b02012-12-29 23:47:38 +0000836 if (!isValidFunction(F))
Tobias Grosser75805372011-04-29 06:27:02 +0000837 return false;
838
839 findScops(*TopRegion);
Tobias Grosser531891e2012-11-01 16:45:20 +0000840
Andreas Simbuerger5569bf32014-06-26 10:06:40 +0000841 // Only makes sense when we tracked errors.
842 if (PollyTrackFailures) {
843 emitMissedRemarksForValidRegions(F, ValidRegions);
844 emitMissedRemarksForLeaves(F, TopRegion);
845 }
846
847 for (const Region *R : ValidRegions)
848 emitValidRemarks(F, R);
849
Tobias Grosser531891e2012-11-01 16:45:20 +0000850 if (ReportLevel >= 1)
Tobias Grosserb2863ca2013-03-04 19:49:51 +0000851 printLocations(F);
Tobias Grosser531891e2012-11-01 16:45:20 +0000852
Tobias Grosser75805372011-04-29 06:27:02 +0000853 return false;
854}
855
Tobias Grosser75805372011-04-29 06:27:02 +0000856void polly::ScopDetection::verifyRegion(const Region &R) const {
857 assert(isMaxRegionInScop(R) && "Expect R is a valid region.");
Tobias Grosser0d1eee32013-02-05 11:56:05 +0000858 DetectionContext Context(const_cast<Region &>(R), *AA, true /*verifying*/);
Tobias Grosser75805372011-04-29 06:27:02 +0000859 isValidRegion(Context);
860}
861
862void polly::ScopDetection::verifyAnalysis() const {
Tobias Grossera1689932014-02-18 18:49:49 +0000863 if (!VerifyScops)
864 return;
865
Tobias Grosser26108892014-04-02 20:18:19 +0000866 for (const Region *R : ValidRegions)
Tobias Grosser00dc3092014-03-02 12:02:46 +0000867 verifyRegion(*R);
Tobias Grosser75805372011-04-29 06:27:02 +0000868}
869
870void ScopDetection::getAnalysisUsage(AnalysisUsage &AU) const {
Tobias Grosser42aff302014-01-13 22:29:56 +0000871 AU.addRequired<DominatorTreeWrapperPass>();
Tobias Grosser75805372011-04-29 06:27:02 +0000872 AU.addRequired<PostDominatorTree>();
873 AU.addRequired<LoopInfo>();
874 AU.addRequired<ScalarEvolution>();
875 // We also need AA and RegionInfo when we are verifying analysis.
876 AU.addRequiredTransitive<AliasAnalysis>();
Matt Arsenault8ca36812014-07-19 18:40:17 +0000877 AU.addRequiredTransitive<RegionInfoPass>();
Tobias Grosser75805372011-04-29 06:27:02 +0000878 AU.setPreservesAll();
879}
880
Tobias Grosser4d96c8d2013-03-23 01:05:07 +0000881void ScopDetection::print(raw_ostream &OS, const Module *) const {
Tobias Grosser26108892014-04-02 20:18:19 +0000882 for (const Region *R : ValidRegions)
Tobias Grosser00dc3092014-03-02 12:02:46 +0000883 OS << "Valid Region for Scop: " << R->getNameStr() << '\n';
Tobias Grosser75805372011-04-29 06:27:02 +0000884
885 OS << "\n";
886}
887
888void ScopDetection::releaseMemory() {
889 ValidRegions.clear();
Andreas Simbuerger4870e092014-05-24 09:25:01 +0000890 RejectLogs.clear();
891
Hongbin Zheng94c5df12011-05-06 02:38:20 +0000892 // Do not clear the invalid function set.
Tobias Grosser75805372011-04-29 06:27:02 +0000893}
894
895char ScopDetection::ID = 0;
896
Tobias Grosser4d96c8d2013-03-23 01:05:07 +0000897Pass *polly::createScopDetectionPass() { return new ScopDetection(); }
898
Tobias Grosser73600b82011-10-08 00:30:40 +0000899INITIALIZE_PASS_BEGIN(ScopDetection, "polly-detect",
900 "Polly - Detect static control parts (SCoPs)", false,
Tobias Grosser4d96c8d2013-03-23 01:05:07 +0000901 false);
902INITIALIZE_AG_DEPENDENCY(AliasAnalysis);
Tobias Grosser42aff302014-01-13 22:29:56 +0000903INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass);
Tobias Grosser4d96c8d2013-03-23 01:05:07 +0000904INITIALIZE_PASS_DEPENDENCY(LoopInfo);
905INITIALIZE_PASS_DEPENDENCY(PostDominatorTree);
Matt Arsenault8ca36812014-07-19 18:40:17 +0000906INITIALIZE_PASS_DEPENDENCY(RegionInfoPass);
Tobias Grosser4d96c8d2013-03-23 01:05:07 +0000907INITIALIZE_PASS_DEPENDENCY(ScalarEvolution);
Tobias Grosser73600b82011-10-08 00:30:40 +0000908INITIALIZE_PASS_END(ScopDetection, "polly-detect",
909 "Polly - Detect static control parts (SCoPs)", false, false)