blob: f4c3a9cffa1e7f6624e8d7f8b3958b4d7457f491 [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
47#include "polly/ScopDetection.h"
48
49#include "polly/LinkAllPasses.h"
50#include "polly/Support/ScopHelper.h"
Tobias Grosser120db6b2011-11-07 12:58:54 +000051#include "polly/Support/SCEVValidator.h"
Tobias Grosser75805372011-04-29 06:27:02 +000052
53#include "llvm/LLVMContext.h"
54#include "llvm/ADT/Statistic.h"
55#include "llvm/Analysis/AliasAnalysis.h"
Tobias Grosser6e9f25a2011-11-09 22:35:00 +000056#include "llvm/Analysis/LoopInfo.h"
Tobias Grosser75805372011-04-29 06:27:02 +000057#include "llvm/Analysis/RegionIterator.h"
Tobias Grosser6e9f25a2011-11-09 22:35:00 +000058#include "llvm/Analysis/ScalarEvolution.h"
Tobias Grosserb8710b52011-11-10 12:44:50 +000059#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Tobias Grosser531891e2012-11-01 16:45:20 +000060#include "llvm/DebugInfo.h"
Tobias Grosser75805372011-04-29 06:27:02 +000061#include "llvm/Support/CommandLine.h"
62#include "llvm/Assembly/Writer.h"
63
64#define DEBUG_TYPE "polly-detect"
65#include "llvm/Support/Debug.h"
66
Tobias Grosser60b54f12011-11-08 15:41:28 +000067#include <set>
68
Tobias Grosser75805372011-04-29 06:27:02 +000069using namespace llvm;
70using namespace polly;
71
Tobias Grosser2ff87232011-10-23 11:17:06 +000072static cl::opt<std::string>
73OnlyFunction("polly-detect-only",
74 cl::desc("Only detect scops in function"), cl::Hidden,
75 cl::value_desc("The function name to detect scops in"),
76 cl::ValueRequired, cl::init(""));
77
Tobias Grosser60cd9322011-11-10 12:47:26 +000078static cl::opt<bool>
79IgnoreAliasing("polly-ignore-aliasing",
80 cl::desc("Ignore possible aliasing of the array bases"),
81 cl::Hidden, cl::init(false));
Tobias Grosser2ff87232011-10-23 11:17:06 +000082
Tobias Grossera1879642011-12-20 10:43:14 +000083static cl::opt<bool>
Tobias Grosser531891e2012-11-01 16:45:20 +000084ReportLevel("polly-report",
85 cl::desc("Print information about Polly"),
86 cl::Hidden, cl::init(false));
87
88static cl::opt<bool>
Tobias Grossera1879642011-12-20 10:43:14 +000089AllowNonAffine("polly-allow-nonaffine",
90 cl::desc("Allow non affine access functions in arrays"),
91 cl::Hidden, cl::init(false));
92
Tobias Grosser75805372011-04-29 06:27:02 +000093//===----------------------------------------------------------------------===//
94// Statistics.
95
96STATISTIC(ValidRegion, "Number of regions that a valid part of Scop");
97
98#define BADSCOP_STAT(NAME, DESC) STATISTIC(Bad##NAME##ForScop, \
99 "Number of bad regions for Scop: "\
100 DESC)
101
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000102#define INVALID(NAME, MESSAGE) \
103 do { \
Tobias Grosser4f129a62011-10-08 00:30:55 +0000104 std::string Buf; \
105 raw_string_ostream fmt(Buf); \
106 fmt << MESSAGE; \
107 fmt.flush(); \
108 LastFailure = Buf; \
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000109 DEBUG(dbgs() << MESSAGE); \
110 DEBUG(dbgs() << "\n"); \
Tobias Grosserfff5adc2011-11-10 13:21:43 +0000111 assert(!Context.Verifying && #NAME); \
112 if (!Context.Verifying) ++Bad##NAME##ForScop; \
113 return false; \
114 } while (0);
115
116
117#define INVALID_NOVERIFY(NAME, MESSAGE) \
118 do { \
119 std::string Buf; \
120 raw_string_ostream fmt(Buf); \
121 fmt << MESSAGE; \
122 fmt.flush(); \
123 LastFailure = Buf; \
124 DEBUG(dbgs() << MESSAGE); \
125 DEBUG(dbgs() << "\n"); \
126 /* DISABLED: assert(!Context.Verifying && #NAME); */ \
127 if (!Context.Verifying) ++Bad##NAME##ForScop; \
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000128 return false; \
129 } while (0);
130
131
Tobias Grosser75805372011-04-29 06:27:02 +0000132BADSCOP_STAT(CFG, "CFG too complex");
133BADSCOP_STAT(IndVar, "Non canonical induction variable in loop");
134BADSCOP_STAT(LoopBound, "Loop bounds can not be computed");
135BADSCOP_STAT(FuncCall, "Function call with side effects appeared");
136BADSCOP_STAT(AffFunc, "Expression not affine");
137BADSCOP_STAT(Scalar, "Found scalar dependency");
138BADSCOP_STAT(Alias, "Found base address alias");
139BADSCOP_STAT(SimpleRegion, "Region not simple");
140BADSCOP_STAT(Other, "Others");
141
142//===----------------------------------------------------------------------===//
143// ScopDetection.
Tobias Grosser75805372011-04-29 06:27:02 +0000144bool ScopDetection::isMaxRegionInScop(const Region &R) const {
145 // The Region is valid only if it could be found in the set.
146 return ValidRegions.count(&R);
147}
148
Tobias Grosser4f129a62011-10-08 00:30:55 +0000149std::string ScopDetection::regionIsInvalidBecause(const Region *R) const {
150 if (!InvalidRegions.count(R))
151 return "";
152
153 return InvalidRegions.find(R)->second;
154}
155
Tobias Grosser75805372011-04-29 06:27:02 +0000156bool ScopDetection::isValidCFG(BasicBlock &BB, DetectionContext &Context) const
157{
158 Region &RefRegion = Context.CurRegion;
159 TerminatorInst *TI = BB.getTerminator();
160
161 // Return instructions are only valid if the region is the top level region.
162 if (isa<ReturnInst>(TI) && !RefRegion.getExit() && TI->getNumOperands() == 0)
163 return true;
164
165 BranchInst *Br = dyn_cast<BranchInst>(TI);
166
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000167 if (!Br)
Tobias Grosser29ee0b12011-11-17 14:52:36 +0000168 INVALID(CFG, "Non branch instruction terminates BB: " + BB.getName());
Tobias Grosser75805372011-04-29 06:27:02 +0000169
170 if (Br->isUnconditional()) return true;
171
172 Value *Condition = Br->getCondition();
173
174 // UndefValue is not allowed as condition.
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000175 if (isa<UndefValue>(Condition))
176 INVALID(AffFunc, "Condition based on 'undef' value in BB: "
Tobias Grosser29ee0b12011-11-17 14:52:36 +0000177 + BB.getName());
Tobias Grosser75805372011-04-29 06:27:02 +0000178
179 // Only Constant and ICmpInst are allowed as condition.
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000180 if (!(isa<Constant>(Condition) || isa<ICmpInst>(Condition)))
Tobias Grosser29ee0b12011-11-17 14:52:36 +0000181 INVALID(AffFunc, "Condition in BB '" + BB.getName() + "' neither "
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000182 "constant nor an icmp instruction");
Tobias Grosser75805372011-04-29 06:27:02 +0000183
184 // Allow perfectly nested conditions.
185 assert(Br->getNumSuccessors() == 2 && "Unexpected number of successors");
186
187 if (ICmpInst *ICmp = dyn_cast<ICmpInst>(Condition)) {
188 // Unsigned comparisons are not allowed. They trigger overflow problems
189 // in the code generation.
190 //
191 // TODO: This is not sufficient and just hides bugs. However it does pretty
192 // well.
193 if(ICmp->isUnsigned())
194 return false;
195
196 // Are both operands of the ICmp affine?
197 if (isa<UndefValue>(ICmp->getOperand(0))
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000198 || isa<UndefValue>(ICmp->getOperand(1)))
Tobias Grosser29ee0b12011-11-17 14:52:36 +0000199 INVALID(AffFunc, "undef operand in branch at BB: " + BB.getName());
Tobias Grosser75805372011-04-29 06:27:02 +0000200
Tobias Grossera66fa6c2011-11-10 12:45:11 +0000201 const SCEV *LHS = SE->getSCEV(ICmp->getOperand(0));
202 const SCEV *RHS = SE->getSCEV(ICmp->getOperand(1));
Tobias Grosser75805372011-04-29 06:27:02 +0000203
Tobias Grossera66fa6c2011-11-10 12:45:11 +0000204 if (!isAffineExpr(&Context.CurRegion, LHS, *SE) ||
205 !isAffineExpr(&Context.CurRegion, RHS, *SE))
Tobias Grosser29ee0b12011-11-17 14:52:36 +0000206 INVALID(AffFunc, "Non affine branch in BB '" << BB.getName()
Tobias Grossera66fa6c2011-11-10 12:45:11 +0000207 << "' with LHS: " << *LHS << " and RHS: " << *RHS);
Tobias Grosser75805372011-04-29 06:27:02 +0000208 }
209
210 // Allow loop exit conditions.
211 Loop *L = LI->getLoopFor(&BB);
212 if (L && L->getExitingBlock() == &BB)
213 return true;
214
215 // Allow perfectly nested conditions.
216 Region *R = RI->getRegionFor(&BB);
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000217 if (R->getEntry() != &BB)
Tobias Grosser29ee0b12011-11-17 14:52:36 +0000218 INVALID(CFG, "Not well structured condition at BB: " + BB.getName());
Tobias Grosser75805372011-04-29 06:27:02 +0000219
220 return true;
221}
222
223bool ScopDetection::isValidCallInst(CallInst &CI) {
224 if (CI.mayHaveSideEffects() || CI.doesNotReturn())
225 return false;
226
227 if (CI.doesNotAccessMemory())
228 return true;
229
230 Function *CalledFunction = CI.getCalledFunction();
231
232 // Indirect calls are not supported.
233 if (CalledFunction == 0)
234 return false;
235
236 // TODO: Intrinsics.
237 return false;
238}
239
240bool ScopDetection::isValidMemoryAccess(Instruction &Inst,
241 DetectionContext &Context) const {
Tobias Grossere5e171e2011-11-10 12:45:03 +0000242 Value *Ptr = getPointerOperand(Inst);
Tobias Grosser75805372011-04-29 06:27:02 +0000243 const SCEV *AccessFunction = SE->getSCEV(Ptr);
Tobias Grosserb8710b52011-11-10 12:44:50 +0000244 const SCEVUnknown *BasePointer;
Tobias Grossere5e171e2011-11-10 12:45:03 +0000245 Value *BaseValue;
Tobias Grosser75805372011-04-29 06:27:02 +0000246
Tobias Grosserb8710b52011-11-10 12:44:50 +0000247 BasePointer = dyn_cast<SCEVUnknown>(SE->getPointerBase(AccessFunction));
248
249 if (!BasePointer)
250 INVALID(AffFunc, "No base pointer");
251
252 BaseValue = BasePointer->getValue();
253
254 if (isa<UndefValue>(BaseValue))
255 INVALID(AffFunc, "Undefined base pointer");
256
257 AccessFunction = SE->getMinusSCEV(AccessFunction, BasePointer);
258
Tobias Grossera1879642011-12-20 10:43:14 +0000259 if (!isAffineExpr(&Context.CurRegion, AccessFunction, *SE, BaseValue) && !AllowNonAffine)
Tobias Grossereeb776a2012-09-08 14:00:37 +0000260 INVALID(AffFunc, "Non affine access function: " << *AccessFunction);
Tobias Grosser75805372011-04-29 06:27:02 +0000261
262 // FIXME: Alias Analysis thinks IntToPtrInst aliases with alloca instructions
263 // created by IndependentBlocks Pass.
Tobias Grossere5e171e2011-11-10 12:45:03 +0000264 if (isa<IntToPtrInst>(BaseValue))
265 INVALID(Other, "Find bad intToptr prt: " << *BaseValue);
Tobias Grosser75805372011-04-29 06:27:02 +0000266
267 // Check if the base pointer of the memory access does alias with
268 // any other pointer. This cannot be handled at the moment.
269 AliasSet &AS =
Tobias Grossere5e171e2011-11-10 12:45:03 +0000270 Context.AST.getAliasSetForPointer(BaseValue, AliasAnalysis::UnknownSize,
Tobias Grosser75805372011-04-29 06:27:02 +0000271 Inst.getMetadata(LLVMContext::MD_tbaa));
Tobias Grosserfff5adc2011-11-10 13:21:43 +0000272
273 // INVALID triggers an assertion in verifying mode, if it detects that a SCoP
274 // was detected by SCoP detection and that this SCoP was invalidated by a pass
275 // that stated it would preserve the SCoPs.
276 // We disable this check as the independent blocks pass may create memory
277 // references which seem to alias, if -basicaa is not available. They actually
278 // do not, but as we can not proof this without -basicaa we would fail. We
279 // disable this check to not cause irrelevant verification failures.
Tobias Grosser60cd9322011-11-10 12:47:26 +0000280 if (!AS.isMustAlias() && !IgnoreAliasing)
Tobias Grosserfff5adc2011-11-10 13:21:43 +0000281 INVALID_NOVERIFY(Alias,
Tobias Grosser4dca4392011-11-22 19:40:19 +0000282 "Possible aliasing for value: " << BaseValue->getName()
283 << "\n");
Tobias Grosser75805372011-04-29 06:27:02 +0000284
285 return true;
286}
287
288
289bool ScopDetection::hasScalarDependency(Instruction &Inst,
290 Region &RefRegion) const {
291 for (Instruction::use_iterator UI = Inst.use_begin(), UE = Inst.use_end();
292 UI != UE; ++UI)
293 if (Instruction *Use = dyn_cast<Instruction>(*UI))
294 if (!RefRegion.contains(Use->getParent())) {
295 // DirtyHack 1: PHINode user outside the Scop is not allow, if this
296 // PHINode is induction variable, the scalar to array transform may
297 // break it and introduce a non-indvar PHINode, which is not allow in
298 // Scop.
299 // This can be fix by:
300 // Introduce a IndependentBlockPrepare pass, which translate all
301 // PHINodes not in Scop to array.
302 // The IndependentBlockPrepare pass can also split the entry block of
303 // the function to hold the alloca instruction created by scalar to
304 // array. and split the exit block of the Scop so the new create load
305 // instruction for escape users will not break other Scops.
306 if (isa<PHINode>(Use))
307 return true;
308 }
309
310 return false;
311}
312
313bool ScopDetection::isValidInstruction(Instruction &Inst,
314 DetectionContext &Context) const {
315 // Only canonical IVs are allowed.
316 if (PHINode *PN = dyn_cast<PHINode>(&Inst))
Tobias Grosserb43ba822011-10-08 00:49:30 +0000317 if (!isIndVar(PN, LI))
318 INVALID(IndVar, "Non canonical PHI node: " << Inst);
Tobias Grosser75805372011-04-29 06:27:02 +0000319
320 // Scalar dependencies are not allowed.
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000321 if (hasScalarDependency(Inst, Context.CurRegion))
322 INVALID(Scalar, "Scalar dependency found: " << Inst);
Tobias Grosser75805372011-04-29 06:27:02 +0000323
324 // We only check the call instruction but not invoke instruction.
325 if (CallInst *CI = dyn_cast<CallInst>(&Inst)) {
326 if (isValidCallInst(*CI))
327 return true;
328
Tobias Grosserb43ba822011-10-08 00:49:30 +0000329 INVALID(FuncCall, "Call instruction: " << Inst);
Tobias Grosser75805372011-04-29 06:27:02 +0000330 }
331
332 if (!Inst.mayWriteToMemory() && !Inst.mayReadFromMemory()) {
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000333 if (isa<AllocaInst>(Inst))
Tobias Grosserb43ba822011-10-08 00:49:30 +0000334 INVALID(Other, "Alloca instruction: " << Inst);
Tobias Grosser75805372011-04-29 06:27:02 +0000335
336 return true;
337 }
338
339 // Check the access function.
340 if (isa<LoadInst>(Inst) || isa<StoreInst>(Inst))
341 return isValidMemoryAccess(Inst, Context);
342
343 // We do not know this instruction, therefore we assume it is invalid.
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000344 INVALID(Other, "Unknown instruction: " << Inst);
Tobias Grosser75805372011-04-29 06:27:02 +0000345}
346
347bool ScopDetection::isValidBasicBlock(BasicBlock &BB,
348 DetectionContext &Context) const {
349 if (!isValidCFG(BB, Context))
350 return false;
351
352 // Check all instructions, except the terminator instruction.
353 for (BasicBlock::iterator I = BB.begin(), E = --BB.end(); I != E; ++I)
354 if (!isValidInstruction(*I, Context))
355 return false;
356
357 Loop *L = LI->getLoopFor(&BB);
358 if (L && L->getHeader() == &BB && !isValidLoop(L, Context))
359 return false;
360
361 return true;
362}
363
364bool ScopDetection::isValidLoop(Loop *L, DetectionContext &Context) const {
365 PHINode *IndVar = L->getCanonicalInductionVariable();
366 // No canonical induction variable.
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000367 if (!IndVar)
Tobias Grosserb43ba822011-10-08 00:49:30 +0000368 INVALID(IndVar, "No canonical IV at loop header: "
Tobias Grosser29ee0b12011-11-17 14:52:36 +0000369 << L->getHeader()->getName());
Tobias Grosser75805372011-04-29 06:27:02 +0000370
371 // Is the loop count affine?
372 const SCEV *LoopCount = SE->getBackedgeTakenCount(L);
Tobias Grosser120db6b2011-11-07 12:58:54 +0000373 if (!isAffineExpr(&Context.CurRegion, LoopCount, *SE))
Tobias Grosserbd54f322011-10-26 01:27:49 +0000374 INVALID(LoopBound, "Non affine loop bound '" << *LoopCount << "' in loop: "
Tobias Grosser29ee0b12011-11-17 14:52:36 +0000375 << L->getHeader()->getName());
Tobias Grosser75805372011-04-29 06:27:02 +0000376
377 return true;
378}
379
380Region *ScopDetection::expandRegion(Region &R) {
Hongbin Zhenged986ab2012-04-07 15:14:28 +0000381 // Initial no valid region was found (greater than R)
382 Region *LastValidRegion = NULL;
383 Region *ExpandedRegion = R.getExpandedRegion();
Tobias Grosser75805372011-04-29 06:27:02 +0000384
385 DEBUG(dbgs() << "\tExpanding " << R.getNameStr() << "\n");
386
Hongbin Zhenged986ab2012-04-07 15:14:28 +0000387 while (ExpandedRegion) {
388 DetectionContext Context(*ExpandedRegion, *AA, false /* verifying */);
389 DEBUG(dbgs() << "\t\tTrying " << ExpandedRegion->getNameStr() << "\n");
Tobias Grosser75805372011-04-29 06:27:02 +0000390
Hongbin Zhenged986ab2012-04-07 15:14:28 +0000391 // Check the exit first (cheap)
Tobias Grosser75805372011-04-29 06:27:02 +0000392 if (isValidExit(Context)) {
Hongbin Zhenged986ab2012-04-07 15:14:28 +0000393 // If the exit is valid check all blocks
394 // - if true, a valid region was found => store it + keep expanding
395 // - if false, .tbd. => stop (should this really end the loop?)
396 if (!allBlocksValid(Context))
397 break;
Tobias Grosser75805372011-04-29 06:27:02 +0000398
Hongbin Zhenged986ab2012-04-07 15:14:28 +0000399 // Delete unnecessary regions (allocated by getExpandedRegion)
400 if (LastValidRegion)
401 delete LastValidRegion;
402
403 // Store this region, because it is the greatest valid (encountered so far)
404 LastValidRegion = ExpandedRegion;
405
406 // Create and test the next greater region (if any)
407 ExpandedRegion = ExpandedRegion->getExpandedRegion();
408
409 } else {
410 // Create and test the next greater region (if any)
411 Region *TmpRegion = ExpandedRegion->getExpandedRegion();
412
413 // Delete unnecessary regions (allocated by getExpandedRegion)
414 delete ExpandedRegion;
415
416 ExpandedRegion = TmpRegion;
Tobias Grosser75805372011-04-29 06:27:02 +0000417 }
Tobias Grosser75805372011-04-29 06:27:02 +0000418 }
419
Hongbin Zhenged986ab2012-04-07 15:14:28 +0000420 DEBUG(
421 if (LastValidRegion)
422 dbgs() << "\tto " << LastValidRegion->getNameStr() << "\n";
423 else
424 dbgs() << "\tExpanding " << R.getNameStr() << " failed\n";
425 );
Tobias Grosser75805372011-04-29 06:27:02 +0000426
Hongbin Zhenged986ab2012-04-07 15:14:28 +0000427 return LastValidRegion;
Tobias Grosser75805372011-04-29 06:27:02 +0000428}
429
430
431void ScopDetection::findScops(Region &R) {
432 DetectionContext Context(R, *AA, false /*verifying*/);
433
Tobias Grosser4eb73812011-11-10 12:45:15 +0000434 LastFailure = "";
435
Tobias Grosser75805372011-04-29 06:27:02 +0000436 if (isValidRegion(Context)) {
437 ++ValidRegion;
438 ValidRegions.insert(&R);
439 return;
440 }
441
Tobias Grosser4f129a62011-10-08 00:30:55 +0000442 InvalidRegions[&R] = LastFailure;
443
Tobias Grosser75805372011-04-29 06:27:02 +0000444 for (Region::iterator I = R.begin(), E = R.end(); I != E; ++I)
445 findScops(**I);
446
447 // Try to expand regions.
448 //
449 // As the region tree normally only contains canonical regions, non canonical
450 // regions that form a Scop are not found. Therefore, those non canonical
451 // regions are checked by expanding the canonical ones.
452
453 std::vector<Region*> ToExpand;
454
455 for (Region::iterator I = R.begin(), E = R.end(); I != E; ++I)
456 ToExpand.push_back(*I);
457
458 for (std::vector<Region*>::iterator RI = ToExpand.begin(),
459 RE = ToExpand.end(); RI != RE; ++RI) {
460 Region *CurrentRegion = *RI;
461
462 // Skip invalid regions. Regions may become invalid, if they are element of
463 // an already expanded region.
464 if (ValidRegions.find(CurrentRegion) == ValidRegions.end())
465 continue;
466
467 Region *ExpandedR = expandRegion(*CurrentRegion);
468
469 if (!ExpandedR)
470 continue;
471
472 R.addSubRegion(ExpandedR, true);
473 ValidRegions.insert(ExpandedR);
474 ValidRegions.erase(CurrentRegion);
475
476 for (Region::iterator I = ExpandedR->begin(), E = ExpandedR->end(); I != E;
477 ++I)
478 ValidRegions.erase(*I);
479 }
480}
481
482bool ScopDetection::allBlocksValid(DetectionContext &Context) const {
483 Region &R = Context.CurRegion;
484
485 for (Region::block_iterator I = R.block_begin(), E = R.block_end(); I != E;
486 ++I)
Chandler Carruth30dfdfc2012-05-04 21:24:27 +0000487 if (!isValidBasicBlock(**I, Context))
Tobias Grosser75805372011-04-29 06:27:02 +0000488 return false;
489
490 return true;
491}
492
493bool ScopDetection::isValidExit(DetectionContext &Context) const {
494 Region &R = Context.CurRegion;
495
496 // PHI nodes are not allowed in the exit basic block.
497 if (BasicBlock *Exit = R.getExit()) {
498 BasicBlock::iterator I = Exit->begin();
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000499 if (I != Exit->end() && isa<PHINode> (*I))
500 INVALID(Other, "PHI node in exit BB");
Tobias Grosser75805372011-04-29 06:27:02 +0000501 }
502
503 return true;
504}
505
506bool ScopDetection::isValidRegion(DetectionContext &Context) const {
507 Region &R = Context.CurRegion;
508
509 DEBUG(dbgs() << "Checking region: " << R.getNameStr() << "\n\t");
510
511 // The toplevel region is no valid region.
512 if (!R.getParent()) {
513 DEBUG(dbgs() << "Top level region is invalid";
514 dbgs() << "\n");
515 return false;
516 }
517
Tobias Grosserd654c252012-04-10 18:12:19 +0000518 // SCoP cannot contain the entry block of the function, because we need
Tobias Grosser75805372011-04-29 06:27:02 +0000519 // to insert alloca instruction there when translate scalar to array.
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000520 if (R.getEntry() == &(R.getEntry()->getParent()->getEntryBlock()))
521 INVALID(Other, "Region containing entry block of function is invalid!");
Tobias Grosser75805372011-04-29 06:27:02 +0000522
523 // Only a simple region is allowed.
Tobias Grosserc4a0bd12011-10-08 00:30:48 +0000524 if (!R.isSimple())
525 INVALID(SimpleRegion, "Region not simple: " << R.getNameStr());
Tobias Grosser75805372011-04-29 06:27:02 +0000526
Hongbin Zheng94868e62012-04-07 12:29:17 +0000527 if (!isValidExit(Context))
Tobias Grosser75805372011-04-29 06:27:02 +0000528 return false;
529
Hongbin Zheng94868e62012-04-07 12:29:17 +0000530 if (!allBlocksValid(Context))
Tobias Grosser75805372011-04-29 06:27:02 +0000531 return false;
532
533 DEBUG(dbgs() << "OK\n");
534 return true;
535}
536
537bool ScopDetection::isValidFunction(llvm::Function &F) {
Hongbin Zheng94c5df12011-05-06 02:38:20 +0000538 return !InvalidFunctions.count(&F);
Tobias Grosser75805372011-04-29 06:27:02 +0000539}
540
Tobias Grosser531891e2012-11-01 16:45:20 +0000541void ScopDetection::getDebugLocation(const Region *R, unsigned &LineBegin,
542 unsigned &LineEnd, std::string &FileName) {
543 LineBegin = -1;
544 LineEnd = 0;
545
546 for (Region::const_block_iterator RI = R->block_begin(), RE = R->block_end();
547 RI != RE; ++RI)
548 for (BasicBlock::iterator BI = (*RI)->begin(), BE = (*RI)->end(); BI != BE;
549 ++BI) {
550 DebugLoc DL = BI->getDebugLoc();
551 if (DL.isUnknown())
552 continue;
553
554 DIScope Scope(DL.getScope(BI->getContext()));
555
556 if (FileName.empty())
557 FileName = Scope.getFilename();
558
559 unsigned NewLine = DL.getLine();
560
561 LineBegin = std::min(LineBegin, NewLine);
562 LineEnd = std::max(LineEnd, NewLine);
563 break;
564 }
565}
566
567void ScopDetection::printLocations() {
568 for (iterator RI = begin(), RE = end(); RI != RE; ++RI) {
569 unsigned LineEntry, LineExit;
570 std::string FileName;
571
572 getDebugLocation(*RI, LineEntry, LineExit, FileName);
573
574 if (FileName.empty()) {
575 outs() << "Scop detected at unknown location. Compile with debug info "
576 "(-g) to get more precise information. \n";
577 return;
578 }
579
580 outs() << FileName << ":" << LineEntry << ": Scop start\n";
581 outs() << FileName << ":" << LineExit << ": Scop end\n";
582 }
583}
584
Tobias Grosser75805372011-04-29 06:27:02 +0000585bool ScopDetection::runOnFunction(llvm::Function &F) {
586 AA = &getAnalysis<AliasAnalysis>();
587 SE = &getAnalysis<ScalarEvolution>();
588 LI = &getAnalysis<LoopInfo>();
589 RI = &getAnalysis<RegionInfo>();
590 Region *TopRegion = RI->getTopLevelRegion();
591
Tobias Grosser2ff87232011-10-23 11:17:06 +0000592 releaseMemory();
593
Tobias Grosser29ee0b12011-11-17 14:52:36 +0000594 if (OnlyFunction != "" && F.getName() != OnlyFunction)
Tobias Grosser2ff87232011-10-23 11:17:06 +0000595 return false;
596
Tobias Grosser75805372011-04-29 06:27:02 +0000597 if(!isValidFunction(F))
598 return false;
599
600 findScops(*TopRegion);
Tobias Grosser531891e2012-11-01 16:45:20 +0000601
602 if (ReportLevel >= 1)
603 printLocations();
604
Tobias Grosser75805372011-04-29 06:27:02 +0000605 return false;
606}
607
608
609void polly::ScopDetection::verifyRegion(const Region &R) const {
610 assert(isMaxRegionInScop(R) && "Expect R is a valid region.");
611 DetectionContext Context(const_cast<Region&>(R), *AA, true /*verifying*/);
612 isValidRegion(Context);
613}
614
615void polly::ScopDetection::verifyAnalysis() const {
616 for (RegionSet::const_iterator I = ValidRegions.begin(),
617 E = ValidRegions.end(); I != E; ++I)
618 verifyRegion(**I);
619}
620
621void ScopDetection::getAnalysisUsage(AnalysisUsage &AU) const {
622 AU.addRequired<DominatorTree>();
623 AU.addRequired<PostDominatorTree>();
624 AU.addRequired<LoopInfo>();
625 AU.addRequired<ScalarEvolution>();
626 // We also need AA and RegionInfo when we are verifying analysis.
627 AU.addRequiredTransitive<AliasAnalysis>();
628 AU.addRequiredTransitive<RegionInfo>();
629 AU.setPreservesAll();
630}
631
632void ScopDetection::print(raw_ostream &OS, const Module *) const {
633 for (RegionSet::const_iterator I = ValidRegions.begin(),
634 E = ValidRegions.end(); I != E; ++I)
635 OS << "Valid Region for Scop: " << (*I)->getNameStr() << '\n';
636
637 OS << "\n";
638}
639
640void ScopDetection::releaseMemory() {
641 ValidRegions.clear();
Tobias Grosser4f129a62011-10-08 00:30:55 +0000642 InvalidRegions.clear();
Hongbin Zheng94c5df12011-05-06 02:38:20 +0000643 // Do not clear the invalid function set.
Tobias Grosser75805372011-04-29 06:27:02 +0000644}
645
646char ScopDetection::ID = 0;
647
Tobias Grosser73600b82011-10-08 00:30:40 +0000648INITIALIZE_PASS_BEGIN(ScopDetection, "polly-detect",
649 "Polly - Detect static control parts (SCoPs)", false,
650 false)
651INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
652INITIALIZE_PASS_DEPENDENCY(DominatorTree)
653INITIALIZE_PASS_DEPENDENCY(LoopInfo)
654INITIALIZE_PASS_DEPENDENCY(PostDominatorTree)
655INITIALIZE_PASS_DEPENDENCY(RegionInfo)
656INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
657INITIALIZE_PASS_END(ScopDetection, "polly-detect",
658 "Polly - Detect static control parts (SCoPs)", false, false)
Tobias Grosser75805372011-04-29 06:27:02 +0000659
Tobias Grosser83f5c432011-08-23 22:35:08 +0000660Pass *polly::createScopDetectionPass() {
661 return new ScopDetection();
662}