blob: 5dcccbe62d1385eb4313207528bf5e0af4b8819b [file] [log] [blame]
Tobias Grosser75805372011-04-29 06:27:02 +00001//===--------- ScopInfo.cpp - Create Scops from LLVM IR ------------------===//
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// Create a polyhedral description for a static control flow region.
11//
12// The pass creates a polyhedral description of the Scops detected by the Scop
13// detection derived from their LLVM-IR code.
14//
15// This represantation is shared among several tools in the polyhedral
16// community, which are e.g. Cloog, Pluto, Loopo, Graphite.
17//
18//===----------------------------------------------------------------------===//
19
20#include "polly/ScopInfo.h"
21
22#include "polly/TempScopInfo.h"
23#include "polly/LinkAllPasses.h"
24#include "polly/Support/GICHelper.h"
25#include "polly/Support/ScopHelper.h"
Tobias Grosser60b54f12011-11-08 15:41:28 +000026#include "polly/Support/SCEVValidator.h"
Tobias Grosser75805372011-04-29 06:27:02 +000027
28#include "llvm/Analysis/LoopInfo.h"
29#include "llvm/Analysis/ScalarEvolutionExpressions.h"
30#include "llvm/Analysis/RegionIterator.h"
31#include "llvm/Assembly/Writer.h"
32#include "llvm/ADT/Statistic.h"
33#include "llvm/ADT/SetVector.h"
34#include "llvm/Support/CommandLine.h"
35
36#define DEBUG_TYPE "polly-scops"
37#include "llvm/Support/Debug.h"
38
39#include "isl/constraint.h"
40#include "isl/set.h"
41#include "isl/map.h"
Tobias Grosser33ba62ad2011-08-18 06:31:50 +000042#include "isl/aff.h"
43#include "isl/printer.h"
Tobias Grosserf5338802011-10-06 00:03:35 +000044#include "isl/local_space.h"
Tobias Grosser4a8e3562011-12-07 07:42:51 +000045#include "isl/options.h"
Tobias Grosser75805372011-04-29 06:27:02 +000046#include <sstream>
47#include <string>
48#include <vector>
49
50using namespace llvm;
51using namespace polly;
52
53STATISTIC(ScopFound, "Number of valid Scops");
54STATISTIC(RichScopFound, "Number of Scops containing a loop");
55
Tobias Grosser33ba62ad2011-08-18 06:31:50 +000056/// Convert an int into a string.
57static std::string convertInt(int number)
58{
59 if (number == 0)
60 return "0";
61 std::string temp = "";
62 std::string returnvalue = "";
63 while (number > 0)
64 {
65 temp += number % 10 + 48;
66 number /= 10;
67 }
68 for (unsigned i = 0; i < temp.length(); i++)
69 returnvalue+=temp[temp.length() - i - 1];
70 return returnvalue;
Tobias Grosser75805372011-04-29 06:27:02 +000071}
72
Tobias Grosser33ba62ad2011-08-18 06:31:50 +000073/// Translate a SCEVExpression into an isl_pw_aff object.
74struct SCEVAffinator : public SCEVVisitor<SCEVAffinator, isl_pw_aff*> {
75private:
76 isl_ctx *ctx;
Tobias Grosserf5338802011-10-06 00:03:35 +000077 int NbLoopSpaces;
Tobias Grosser33ba62ad2011-08-18 06:31:50 +000078 const Scop *scop;
79
Tobias Grosser33ba62ad2011-08-18 06:31:50 +000080public:
Tobias Grossere5e171e2011-11-10 12:45:03 +000081 static isl_pw_aff *getPwAff(ScopStmt *stmt, const SCEV *scev) {
Tobias Grosser60b54f12011-11-08 15:41:28 +000082 Scop *S = stmt->getParent();
83 const Region *Reg = &S->getRegion();
84
Tobias Grossere5e171e2011-11-10 12:45:03 +000085 S->addParams(getParamsInAffineExpr(Reg, scev, *S->getSE()));
Tobias Grosser60b54f12011-11-08 15:41:28 +000086
Tobias Grossere5e171e2011-11-10 12:45:03 +000087 SCEVAffinator Affinator(stmt);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +000088 return Affinator.visit(scev);
89 }
90
91 isl_pw_aff *visit(const SCEV *scev) {
Tobias Grosser76c2e322011-11-07 12:58:59 +000092 // In case the scev is a valid parameter, we do not further analyze this
93 // expression, but create a new parameter in the isl_pw_aff. This allows us
94 // to treat subexpressions that we cannot translate into an piecewise affine
95 // expression, as constant parameters of the piecewise affine expression.
96 if (isl_id *Id = scop->getIdForParam(scev)) {
97 isl_space *Space = isl_space_set_alloc(ctx, 1, NbLoopSpaces);
98 Space = isl_space_set_dim_id(Space, isl_dim_param, 0, Id);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +000099
Tobias Grosser76c2e322011-11-07 12:58:59 +0000100 isl_set *Domain = isl_set_universe(isl_space_copy(Space));
101 isl_aff *Affine = isl_aff_zero_on_domain(
102 isl_local_space_from_space(Space));
103 Affine = isl_aff_add_coefficient_si(Affine, isl_dim_param, 0, 1);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000104
Tobias Grosser76c2e322011-11-07 12:58:59 +0000105 return isl_pw_aff_alloc(Domain, Affine);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000106 }
107
108 return SCEVVisitor<SCEVAffinator, isl_pw_aff*>::visit(scev);
109 }
110
Tobias Grossere5e171e2011-11-10 12:45:03 +0000111 SCEVAffinator(const ScopStmt *stmt) :
Tobias Grosser3c69fab2011-10-06 00:03:54 +0000112 ctx(stmt->getIslCtx()),
Tobias Grosserf5338802011-10-06 00:03:35 +0000113 NbLoopSpaces(stmt->getNumIterators()),
Tobias Grossere5e171e2011-11-10 12:45:03 +0000114 scop(stmt->getParent()) {}
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000115
116 __isl_give isl_pw_aff *visitConstant(const SCEVConstant *Constant) {
117 ConstantInt *Value = Constant->getValue();
118 isl_int v;
119 isl_int_init(v);
120
121 // LLVM does not define if an integer value is interpreted as a signed or
122 // unsigned value. Hence, without further information, it is unknown how
123 // this value needs to be converted to GMP. At the moment, we only support
124 // signed operations. So we just interpret it as signed. Later, there are
125 // two options:
126 //
127 // 1. We always interpret any value as signed and convert the values on
128 // demand.
129 // 2. We pass down the signedness of the calculation and use it to interpret
130 // this constant correctly.
131 MPZ_from_APInt(v, Value->getValue(), /* isSigned */ true);
132
Tobias Grosserf5338802011-10-06 00:03:35 +0000133 isl_space *Space = isl_space_set_alloc(ctx, 0, NbLoopSpaces);
134 isl_local_space *ls = isl_local_space_from_space(isl_space_copy(Space));
135 isl_aff *Affine = isl_aff_zero_on_domain(ls);
136 isl_set *Domain = isl_set_universe(Space);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000137
138 Affine = isl_aff_add_constant(Affine, v);
139 isl_int_clear(v);
140
141 return isl_pw_aff_alloc(Domain, Affine);
142 }
143
Tobias Grosser7ffe4e82011-11-17 12:56:10 +0000144 __isl_give isl_pw_aff *visitTruncateExpr(const SCEVTruncateExpr *Expr) {
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000145 assert(0 && "Not yet supported");
146 }
147
Tobias Grosser7ffe4e82011-11-17 12:56:10 +0000148 __isl_give isl_pw_aff *visitZeroExtendExpr(const SCEVZeroExtendExpr *Expr) {
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000149 assert(0 && "Not yet supported");
150 }
151
Tobias Grosser7ffe4e82011-11-17 12:56:10 +0000152 __isl_give isl_pw_aff *visitSignExtendExpr(const SCEVSignExtendExpr *Expr) {
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000153 // Assuming the value is signed, a sign extension is basically a noop.
154 // TODO: Reconsider this as soon as we support unsigned values.
155 return visit(Expr->getOperand());
156 }
157
Tobias Grosser7ffe4e82011-11-17 12:56:10 +0000158 __isl_give isl_pw_aff *visitAddExpr(const SCEVAddExpr *Expr) {
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000159 isl_pw_aff *Sum = visit(Expr->getOperand(0));
160
161 for (int i = 1, e = Expr->getNumOperands(); i < e; ++i) {
162 isl_pw_aff *NextSummand = visit(Expr->getOperand(i));
163 Sum = isl_pw_aff_add(Sum, NextSummand);
164 }
165
166 // TODO: Check for NSW and NUW.
167
168 return Sum;
169 }
170
Tobias Grosser7ffe4e82011-11-17 12:56:10 +0000171 __isl_give isl_pw_aff *visitMulExpr(const SCEVMulExpr *Expr) {
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000172 isl_pw_aff *Product = visit(Expr->getOperand(0));
173
174 for (int i = 1, e = Expr->getNumOperands(); i < e; ++i) {
175 isl_pw_aff *NextOperand = visit(Expr->getOperand(i));
176
177 if (!isl_pw_aff_is_cst(Product) && !isl_pw_aff_is_cst(NextOperand)) {
178 isl_pw_aff_free(Product);
179 isl_pw_aff_free(NextOperand);
180 return NULL;
181 }
182
183 Product = isl_pw_aff_mul(Product, NextOperand);
184 }
185
186 // TODO: Check for NSW and NUW.
187 return Product;
188 }
189
Tobias Grosser7ffe4e82011-11-17 12:56:10 +0000190 __isl_give isl_pw_aff *visitUDivExpr(const SCEVUDivExpr *Expr) {
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000191 assert(0 && "Not yet supported");
192 }
193
194 int getLoopDepth(const Loop *L) {
195 Loop *outerLoop =
196 scop->getRegion().outermostLoopInRegion(const_cast<Loop*>(L));
Tobias Grosser7b0ee0e2011-11-04 10:08:03 +0000197 assert(outerLoop && "Scop does not contain this loop");
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000198 return L->getLoopDepth() - outerLoop->getLoopDepth();
199 }
200
Tobias Grosser7ffe4e82011-11-17 12:56:10 +0000201 __isl_give isl_pw_aff *visitAddRecExpr(const SCEVAddRecExpr *Expr) {
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000202 assert(Expr->isAffine() && "Only affine AddRecurrences allowed");
Tobias Grosser7b0ee0e2011-11-04 10:08:03 +0000203 assert(scop->getRegion().contains(Expr->getLoop())
204 && "Scop does not contain the loop referenced in this AddRec");
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000205
206 isl_pw_aff *Start = visit(Expr->getStart());
207 isl_pw_aff *Step = visit(Expr->getOperand(1));
Tobias Grosserf5338802011-10-06 00:03:35 +0000208 isl_space *Space = isl_space_set_alloc(ctx, 0, NbLoopSpaces);
209 isl_local_space *LocalSpace = isl_local_space_from_space(Space);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000210
211 int loopDimension = getLoopDepth(Expr->getLoop());
212
Tobias Grosserf5338802011-10-06 00:03:35 +0000213 isl_aff *LAff = isl_aff_set_coefficient_si(
214 isl_aff_zero_on_domain (LocalSpace), isl_dim_in, loopDimension, 1);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000215 isl_pw_aff *LPwAff = isl_pw_aff_from_aff(LAff);
216
217 // TODO: Do we need to check for NSW and NUW?
218 return isl_pw_aff_add(Start, isl_pw_aff_mul(Step, LPwAff));
219 }
220
Tobias Grosser7ffe4e82011-11-17 12:56:10 +0000221 __isl_give isl_pw_aff *visitSMaxExpr(const SCEVSMaxExpr *Expr) {
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000222 isl_pw_aff *Max = visit(Expr->getOperand(0));
223
224 for (int i = 1, e = Expr->getNumOperands(); i < e; ++i) {
225 isl_pw_aff *NextOperand = visit(Expr->getOperand(i));
226 Max = isl_pw_aff_max(Max, NextOperand);
227 }
228
229 return Max;
230 }
231
Tobias Grosser7ffe4e82011-11-17 12:56:10 +0000232 __isl_give isl_pw_aff *visitUMaxExpr(const SCEVUMaxExpr *Expr) {
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000233 assert(0 && "Not yet supported");
234 }
235
Tobias Grosser7ffe4e82011-11-17 12:56:10 +0000236 __isl_give isl_pw_aff *visitUnknown(const SCEVUnknown *Expr) {
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000237 Value *Value = Expr->getValue();
238
Tobias Grosserf5338802011-10-06 00:03:35 +0000239 isl_space *Space;
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000240
Tobias Grosser29ee0b12011-11-17 14:52:36 +0000241 std::string ValueName = Value->getName();
242 isl_id *ID = isl_id_alloc(ctx, ValueName.c_str(), Value);
Tobias Grossere5e171e2011-11-10 12:45:03 +0000243 Space = isl_space_set_alloc(ctx, 1, NbLoopSpaces);
244 Space = isl_space_set_dim_id(Space, isl_dim_param, 0, ID);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000245
Tobias Grosserf5338802011-10-06 00:03:35 +0000246 isl_set *Domain = isl_set_universe(isl_space_copy(Space));
247 isl_aff *Affine = isl_aff_zero_on_domain(isl_local_space_from_space(Space));
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000248
Tobias Grossere5e171e2011-11-10 12:45:03 +0000249 Affine = isl_aff_add_coefficient_si(Affine, isl_dim_param, 0, 1);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000250
251 return isl_pw_aff_alloc(Domain, Affine);
252 }
253};
254
Tobias Grosser75805372011-04-29 06:27:02 +0000255//===----------------------------------------------------------------------===//
256
257MemoryAccess::~MemoryAccess() {
Tobias Grosser54a86e62011-08-18 06:31:46 +0000258 isl_map_free(AccessRelation);
Raghesh Aloor129e8672011-08-15 02:33:39 +0000259 isl_map_free(newAccessRelation);
Tobias Grosser75805372011-04-29 06:27:02 +0000260}
261
262static void replace(std::string& str, const std::string& find,
263 const std::string& replace) {
264 size_t pos = 0;
265 while((pos = str.find(find, pos)) != std::string::npos)
266 {
267 str.replace(pos, find.length(), replace);
268 pos += replace.length();
269 }
270}
271
272static void makeIslCompatible(std::string& str) {
Tobias Grossereec4d56e2011-08-20 11:11:14 +0000273 str.erase(0, 1);
Tobias Grosser75805372011-04-29 06:27:02 +0000274 replace(str, ".", "_");
Tobias Grosser3b660f82011-08-03 00:12:11 +0000275 replace(str, "\"", "_");
Tobias Grosser75805372011-04-29 06:27:02 +0000276}
277
278void MemoryAccess::setBaseName() {
279 raw_string_ostream OS(BaseName);
280 WriteAsOperand(OS, getBaseAddr(), false);
281 BaseName = OS.str();
282
Tobias Grosser75805372011-04-29 06:27:02 +0000283 makeIslCompatible(BaseName);
284 BaseName = "MemRef_" + BaseName;
285}
286
Tobias Grosser5d453812011-10-06 00:04:11 +0000287isl_map *MemoryAccess::getAccessRelation() const {
288 return isl_map_copy(AccessRelation);
289}
290
291std::string MemoryAccess::getAccessRelationStr() const {
292 return stringFromIslObj(AccessRelation);
293}
294
295isl_map *MemoryAccess::getNewAccessRelation() const {
296 return isl_map_copy(newAccessRelation);
Tobias Grosser75805372011-04-29 06:27:02 +0000297}
298
299isl_basic_map *MemoryAccess::createBasicAccessMap(ScopStmt *Statement) {
Tobias Grosser3c69fab2011-10-06 00:03:54 +0000300 isl_space *Space = isl_space_alloc(Statement->getIslCtx(), 0,
Tobias Grosserf5338802011-10-06 00:03:35 +0000301 Statement->getNumIterators(), 1);
Tobias Grosser75805372011-04-29 06:27:02 +0000302 setBaseName();
303
Tobias Grosserf5338802011-10-06 00:03:35 +0000304 Space = isl_space_set_tuple_name(Space, isl_dim_out, getBaseName().c_str());
305 Space = isl_space_set_tuple_name(Space, isl_dim_in, Statement->getBaseName());
Tobias Grosser75805372011-04-29 06:27:02 +0000306
Tobias Grosserf5338802011-10-06 00:03:35 +0000307 return isl_basic_map_universe(Space);
Tobias Grosser75805372011-04-29 06:27:02 +0000308}
309
Tobias Grossere4e2f7b2011-11-09 22:35:09 +0000310MemoryAccess::MemoryAccess(const IRAccess &Access, ScopStmt *Statement) {
Raghesh Aloor3cb66282011-07-12 17:14:03 +0000311 newAccessRelation = NULL;
Tobias Grossere4e2f7b2011-11-09 22:35:09 +0000312 Type = Access.isRead() ? Read : Write;
Tobias Grosser75805372011-04-29 06:27:02 +0000313 statement = Statement;
314
Tobias Grosser9759f852011-11-10 12:44:55 +0000315 isl_pw_aff *Affine = SCEVAffinator::getPwAff(Statement, Access.getOffset());
316 BaseAddr = Access.getBase();
Tobias Grosser5683df42011-11-09 22:34:34 +0000317
318 setBaseName();
Tobias Grosser75805372011-04-29 06:27:02 +0000319
Tobias Grosser7d4cee42011-08-19 23:34:28 +0000320 // Devide the access function by the size of the elements in the array.
321 //
322 // A stride one array access in C expressed as A[i] is expressed in LLVM-IR
323 // as something like A[i * elementsize]. This hides the fact that two
324 // subsequent values of 'i' index two values that are stored next to each
325 // other in memory. By this devision we make this characteristic obvious
326 // again.
Tobias Grosser75805372011-04-29 06:27:02 +0000327 isl_int v;
328 isl_int_init(v);
Tobias Grossere4e2f7b2011-11-09 22:35:09 +0000329 isl_int_set_si(v, Access.getElemSizeInBytes());
Tobias Grosser7d4cee42011-08-19 23:34:28 +0000330 Affine = isl_pw_aff_scale_down(Affine, v);
331 isl_int_clear(v);
Tobias Grosser75805372011-04-29 06:27:02 +0000332
Tobias Grosser7d4cee42011-08-19 23:34:28 +0000333 AccessRelation = isl_map_from_pw_aff(Affine);
334 AccessRelation = isl_map_set_tuple_name(AccessRelation, isl_dim_in,
335 Statement->getBaseName());
Tobias Grosser75805372011-04-29 06:27:02 +0000336 AccessRelation = isl_map_set_tuple_name(AccessRelation, isl_dim_out,
337 getBaseName().c_str());
Tobias Grosser8cae72f2011-11-08 15:41:08 +0000338}
Tobias Grosser30b8a092011-08-18 07:51:37 +0000339
Tobias Grosser8cae72f2011-11-08 15:41:08 +0000340void MemoryAccess::realignParams() {
341 isl_space *ParamSpace = statement->getParent()->getParamSpace();
Tobias Grosser37487052011-10-06 00:03:42 +0000342 AccessRelation = isl_map_align_params(AccessRelation, ParamSpace);
Tobias Grosser75805372011-04-29 06:27:02 +0000343}
344
345MemoryAccess::MemoryAccess(const Value *BaseAddress, ScopStmt *Statement) {
Raghesh Aloor3cb66282011-07-12 17:14:03 +0000346 newAccessRelation = NULL;
Tobias Grosser75805372011-04-29 06:27:02 +0000347 BaseAddr = BaseAddress;
348 Type = Read;
349 statement = Statement;
350
351 isl_basic_map *BasicAccessMap = createBasicAccessMap(Statement);
352 AccessRelation = isl_map_from_basic_map(BasicAccessMap);
Tobias Grosser37487052011-10-06 00:03:42 +0000353 isl_space *ParamSpace = Statement->getParent()->getParamSpace();
354 AccessRelation = isl_map_align_params(AccessRelation, ParamSpace);
Tobias Grosser75805372011-04-29 06:27:02 +0000355}
356
357void MemoryAccess::print(raw_ostream &OS) const {
358 OS.indent(12) << (isRead() ? "Read" : "Write") << "Access := \n";
Tobias Grosser5d453812011-10-06 00:04:11 +0000359 OS.indent(16) << getAccessRelationStr() << ";\n";
Tobias Grosser75805372011-04-29 06:27:02 +0000360}
361
362void MemoryAccess::dump() const {
363 print(errs());
364}
365
366// Create a map in the size of the provided set domain, that maps from the
367// one element of the provided set domain to another element of the provided
368// set domain.
369// The mapping is limited to all points that are equal in all but the last
370// dimension and for which the last dimension of the input is strict smaller
371// than the last dimension of the output.
372//
373// getEqualAndLarger(set[i0, i1, ..., iX]):
374//
375// set[i0, i1, ..., iX] -> set[o0, o1, ..., oX]
376// : i0 = o0, i1 = o1, ..., i(X-1) = o(X-1), iX < oX
377//
Tobias Grosserf5338802011-10-06 00:03:35 +0000378static isl_map *getEqualAndLarger(isl_space *setDomain) {
379 isl_space *mapDomain = isl_space_map_from_set(setDomain);
Tobias Grosser23b36662011-10-17 08:32:36 +0000380 isl_basic_map *bmap = isl_basic_map_universe(isl_space_copy(mapDomain));
Tobias Grosserf5338802011-10-06 00:03:35 +0000381 isl_local_space *MapLocalSpace = isl_local_space_from_space(mapDomain);
Tobias Grosser75805372011-04-29 06:27:02 +0000382
383 // Set all but the last dimension to be equal for the input and output
384 //
385 // input[i0, i1, ..., iX] -> output[o0, o1, ..., oX]
386 // : i0 = o0, i1 = o1, ..., i(X-1) = o(X-1)
387 for (unsigned i = 0; i < isl_basic_map_n_in(bmap) - 1; ++i) {
388 isl_int v;
389 isl_int_init(v);
Tobias Grosserf5338802011-10-06 00:03:35 +0000390 isl_constraint *c = isl_equality_alloc(isl_local_space_copy(MapLocalSpace));
Tobias Grosser75805372011-04-29 06:27:02 +0000391
392 isl_int_set_si(v, 1);
393 isl_constraint_set_coefficient(c, isl_dim_in, i, v);
394 isl_int_set_si(v, -1);
395 isl_constraint_set_coefficient(c, isl_dim_out, i, v);
396
397 bmap = isl_basic_map_add_constraint(bmap, c);
398
399 isl_int_clear(v);
400 }
401
402 // Set the last dimension of the input to be strict smaller than the
403 // last dimension of the output.
404 //
405 // input[?,?,?,...,iX] -> output[?,?,?,...,oX] : iX < oX
406 //
407 unsigned lastDimension = isl_basic_map_n_in(bmap) - 1;
408 isl_int v;
409 isl_int_init(v);
Tobias Grosserf5338802011-10-06 00:03:35 +0000410 isl_constraint *c = isl_inequality_alloc(isl_local_space_copy(MapLocalSpace));
Tobias Grosser75805372011-04-29 06:27:02 +0000411 isl_int_set_si(v, -1);
412 isl_constraint_set_coefficient(c, isl_dim_in, lastDimension, v);
413 isl_int_set_si(v, 1);
414 isl_constraint_set_coefficient(c, isl_dim_out, lastDimension, v);
415 isl_int_set_si(v, -1);
416 isl_constraint_set_constant(c, v);
417 isl_int_clear(v);
418
419 bmap = isl_basic_map_add_constraint(bmap, c);
420
Tobias Grosser23b36662011-10-17 08:32:36 +0000421 isl_local_space_free(MapLocalSpace);
Tobias Grosser75805372011-04-29 06:27:02 +0000422 return isl_map_from_basic_map(bmap);
423}
424
425isl_set *MemoryAccess::getStride(const isl_set *domainSubset) const {
Tobias Grosser5d453812011-10-06 00:04:11 +0000426 isl_map *accessRelation = getAccessRelation();
Tobias Grosser75805372011-04-29 06:27:02 +0000427 isl_set *scatteringDomain = isl_set_copy(const_cast<isl_set*>(domainSubset));
Tobias Grossercf3942d2011-10-06 00:04:05 +0000428 isl_map *scattering = getStatement()->getScattering();
Tobias Grosser75805372011-04-29 06:27:02 +0000429
430 scattering = isl_map_reverse(scattering);
431 int difference = isl_map_n_in(scattering) - isl_set_n_dim(scatteringDomain);
432 scattering = isl_map_project_out(scattering, isl_dim_in,
433 isl_set_n_dim(scatteringDomain),
434 difference);
435
436 // Remove all names of the scattering dimensions, as the names may be lost
437 // anyways during the project. This leads to consistent results.
438 scattering = isl_map_set_tuple_name(scattering, isl_dim_in, "");
439 scatteringDomain = isl_set_set_tuple_name(scatteringDomain, "");
440
Tobias Grosserf5338802011-10-06 00:03:35 +0000441 isl_map *nextScatt = getEqualAndLarger(isl_set_get_space(scatteringDomain));
Tobias Grosser75805372011-04-29 06:27:02 +0000442 nextScatt = isl_map_lexmin(nextScatt);
443
444 scattering = isl_map_intersect_domain(scattering, scatteringDomain);
445
446 nextScatt = isl_map_apply_range(nextScatt, isl_map_copy(scattering));
447 nextScatt = isl_map_apply_range(nextScatt, isl_map_copy(accessRelation));
448 nextScatt = isl_map_apply_domain(nextScatt, scattering);
449 nextScatt = isl_map_apply_domain(nextScatt, accessRelation);
450
451 return isl_map_deltas(nextScatt);
452}
453
454bool MemoryAccess::isStrideZero(const isl_set *domainSubset) const {
455 isl_set *stride = getStride(domainSubset);
Tobias Grosserf5338802011-10-06 00:03:35 +0000456 isl_space *StrideSpace = isl_set_get_space(stride);
457 isl_local_space *StrideLS = isl_local_space_from_space(StrideSpace);
458 isl_constraint *c = isl_equality_alloc(StrideLS);
Tobias Grosser75805372011-04-29 06:27:02 +0000459
460 isl_int v;
461 isl_int_init(v);
462 isl_int_set_si(v, 1);
463 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
464 isl_int_set_si(v, 0);
465 isl_constraint_set_constant(c, v);
466 isl_int_clear(v);
467
Tobias Grosserf5338802011-10-06 00:03:35 +0000468 isl_basic_set *bset = isl_basic_set_universe(isl_set_get_space(stride));
Tobias Grosser75805372011-04-29 06:27:02 +0000469
470 bset = isl_basic_set_add_constraint(bset, c);
471 isl_set *strideZero = isl_set_from_basic_set(bset);
472
Tobias Grosserb76f38532011-08-20 11:11:25 +0000473 bool isStrideZero = isl_set_is_equal(stride, strideZero);
474
475 isl_set_free(strideZero);
476 isl_set_free(stride);
477
478 return isStrideZero;
Tobias Grosser75805372011-04-29 06:27:02 +0000479}
480
481bool MemoryAccess::isStrideOne(const isl_set *domainSubset) const {
482 isl_set *stride = getStride(domainSubset);
Tobias Grosserf5338802011-10-06 00:03:35 +0000483 isl_space *StrideSpace = isl_set_get_space(stride);
484 isl_local_space *StrideLSpace = isl_local_space_from_space(StrideSpace);
485 isl_constraint *c = isl_equality_alloc(StrideLSpace);
Tobias Grosser75805372011-04-29 06:27:02 +0000486
487 isl_int v;
488 isl_int_init(v);
489 isl_int_set_si(v, 1);
490 isl_constraint_set_coefficient(c, isl_dim_set, 0, v);
491 isl_int_set_si(v, -1);
492 isl_constraint_set_constant(c, v);
493 isl_int_clear(v);
494
Tobias Grosserf5338802011-10-06 00:03:35 +0000495 isl_basic_set *bset = isl_basic_set_universe(isl_set_get_space(stride));
Tobias Grosser75805372011-04-29 06:27:02 +0000496
497 bset = isl_basic_set_add_constraint(bset, c);
Tobias Grosserb76f38532011-08-20 11:11:25 +0000498 isl_set *strideOne = isl_set_from_basic_set(bset);
Tobias Grosser75805372011-04-29 06:27:02 +0000499
Tobias Grosserb76f38532011-08-20 11:11:25 +0000500 bool isStrideOne = isl_set_is_equal(stride, strideOne);
501
502 isl_set_free(strideOne);
503 isl_set_free(stride);
504
505 return isStrideOne;
Tobias Grosser75805372011-04-29 06:27:02 +0000506}
507
Tobias Grosser5d453812011-10-06 00:04:11 +0000508void MemoryAccess::setNewAccessRelation(isl_map *newAccess) {
Tobias Grosserb76f38532011-08-20 11:11:25 +0000509 isl_map_free(newAccessRelation);
Raghesh Aloor7a04f4f2011-08-03 13:47:59 +0000510 newAccessRelation = newAccess;
Raghesh Aloor3cb66282011-07-12 17:14:03 +0000511}
Tobias Grosser75805372011-04-29 06:27:02 +0000512
513//===----------------------------------------------------------------------===//
Tobias Grossercf3942d2011-10-06 00:04:05 +0000514
515isl_map *ScopStmt::getScattering() const {
516 return isl_map_copy(Scattering);
517}
518
519void ScopStmt::setScattering(isl_map *NewScattering) {
Tobias Grosserb76f38532011-08-20 11:11:25 +0000520 isl_map_free(Scattering);
Tobias Grossercf3942d2011-10-06 00:04:05 +0000521 Scattering = NewScattering;
Tobias Grosserb76f38532011-08-20 11:11:25 +0000522}
523
Tobias Grosser75805372011-04-29 06:27:02 +0000524void ScopStmt::buildScattering(SmallVectorImpl<unsigned> &Scatter) {
525 unsigned NumberOfIterators = getNumIterators();
Tobias Grosserf5338802011-10-06 00:03:35 +0000526 unsigned ScatSpace = Parent.getMaxLoopDepth() * 2 + 1;
Tobias Grosser3c69fab2011-10-06 00:03:54 +0000527 isl_space *Space = isl_space_alloc(getIslCtx(), 0, NumberOfIterators,
Tobias Grosserf5338802011-10-06 00:03:35 +0000528 ScatSpace);
529 Space = isl_space_set_tuple_name(Space, isl_dim_out, "scattering");
530 Space = isl_space_set_tuple_name(Space, isl_dim_in, getBaseName());
531 isl_local_space *LSpace = isl_local_space_from_space(isl_space_copy(Space));
532 isl_basic_map *bmap = isl_basic_map_universe(Space);
Tobias Grosser75805372011-04-29 06:27:02 +0000533 isl_int v;
534 isl_int_init(v);
535
536 // Loop dimensions.
537 for (unsigned i = 0; i < NumberOfIterators; ++i) {
Tobias Grosserf5338802011-10-06 00:03:35 +0000538 isl_constraint *c = isl_equality_alloc(isl_local_space_copy(LSpace));
Tobias Grosser75805372011-04-29 06:27:02 +0000539 isl_int_set_si(v, 1);
540 isl_constraint_set_coefficient(c, isl_dim_out, 2 * i + 1, v);
541 isl_int_set_si(v, -1);
542 isl_constraint_set_coefficient(c, isl_dim_in, i, v);
543
544 bmap = isl_basic_map_add_constraint(bmap, c);
545 }
546
547 // Constant dimensions
548 for (unsigned i = 0; i < NumberOfIterators + 1; ++i) {
Tobias Grosserf5338802011-10-06 00:03:35 +0000549 isl_constraint *c = isl_equality_alloc(isl_local_space_copy(LSpace));
Tobias Grosser75805372011-04-29 06:27:02 +0000550 isl_int_set_si(v, -1);
551 isl_constraint_set_coefficient(c, isl_dim_out, 2 * i, v);
552 isl_int_set_si(v, Scatter[i]);
553 isl_constraint_set_constant(c, v);
554
555 bmap = isl_basic_map_add_constraint(bmap, c);
556 }
557
558 // Fill scattering dimensions.
Tobias Grosserf5338802011-10-06 00:03:35 +0000559 for (unsigned i = 2 * NumberOfIterators + 1; i < ScatSpace ; ++i) {
560 isl_constraint *c = isl_equality_alloc(isl_local_space_copy(LSpace));
Tobias Grosser75805372011-04-29 06:27:02 +0000561 isl_int_set_si(v, 1);
562 isl_constraint_set_coefficient(c, isl_dim_out, i, v);
563 isl_int_set_si(v, 0);
564 isl_constraint_set_constant(c, v);
565
566 bmap = isl_basic_map_add_constraint(bmap, c);
567 }
568
569 isl_int_clear(v);
Tobias Grosser75805372011-04-29 06:27:02 +0000570 Scattering = isl_map_from_basic_map(bmap);
Tobias Grosser37487052011-10-06 00:03:42 +0000571 Scattering = isl_map_align_params(Scattering, Parent.getParamSpace());
Tobias Grosser0ad4caa2011-10-08 00:35:17 +0000572 isl_local_space_free(LSpace);
Tobias Grosser75805372011-04-29 06:27:02 +0000573}
574
575void ScopStmt::buildAccesses(TempScop &tempScop, const Region &CurRegion) {
576 const AccFuncSetType *AccFuncs = tempScop.getAccessFunctions(BB);
577
578 for (AccFuncSetType::const_iterator I = AccFuncs->begin(),
579 E = AccFuncs->end(); I != E; ++I) {
580 MemAccs.push_back(new MemoryAccess(I->first, this));
581 InstructionToAccess[I->second] = MemAccs.back();
582 }
583}
584
Tobias Grosser8cae72f2011-11-08 15:41:08 +0000585void ScopStmt::realignParams() {
586 for (memacc_iterator MI = memacc_begin(), ME = memacc_end(); MI != ME; ++MI)
587 (*MI)->realignParams();
588
589 Domain = isl_set_align_params(Domain, Parent.getParamSpace());
590 Scattering = isl_map_align_params(Scattering, Parent.getParamSpace());
591}
592
Tobias Grosser65b00582011-11-08 15:41:19 +0000593__isl_give isl_set *ScopStmt::buildConditionSet(const Comparison &Comp) {
Tobias Grossera601fbd2011-11-09 22:34:44 +0000594 isl_pw_aff *L = SCEVAffinator::getPwAff(this, Comp.getLHS());
595 isl_pw_aff *R = SCEVAffinator::getPwAff(this, Comp.getRHS());
Tobias Grosser75805372011-04-29 06:27:02 +0000596
Tobias Grosserd2795d02011-08-18 07:51:40 +0000597 switch (Comp.getPred()) {
Tobias Grosser75805372011-04-29 06:27:02 +0000598 case ICmpInst::ICMP_EQ:
Tobias Grosser048c8792011-10-23 20:59:20 +0000599 return isl_pw_aff_eq_set(L, R);
Tobias Grosser75805372011-04-29 06:27:02 +0000600 case ICmpInst::ICMP_NE:
Tobias Grosser048c8792011-10-23 20:59:20 +0000601 return isl_pw_aff_ne_set(L, R);
Tobias Grosser75805372011-04-29 06:27:02 +0000602 case ICmpInst::ICMP_SLT:
Tobias Grosser048c8792011-10-23 20:59:20 +0000603 return isl_pw_aff_lt_set(L, R);
Tobias Grosser75805372011-04-29 06:27:02 +0000604 case ICmpInst::ICMP_SLE:
Tobias Grosser048c8792011-10-23 20:59:20 +0000605 return isl_pw_aff_le_set(L, R);
Tobias Grosserd2795d02011-08-18 07:51:40 +0000606 case ICmpInst::ICMP_SGT:
Tobias Grosser048c8792011-10-23 20:59:20 +0000607 return isl_pw_aff_gt_set(L, R);
Tobias Grosser75805372011-04-29 06:27:02 +0000608 case ICmpInst::ICMP_SGE:
Tobias Grosser048c8792011-10-23 20:59:20 +0000609 return isl_pw_aff_ge_set(L, R);
Tobias Grosserd2795d02011-08-18 07:51:40 +0000610 case ICmpInst::ICMP_ULT:
611 case ICmpInst::ICMP_UGT:
612 case ICmpInst::ICMP_ULE:
Tobias Grosser75805372011-04-29 06:27:02 +0000613 case ICmpInst::ICMP_UGE:
Tobias Grosserd2795d02011-08-18 07:51:40 +0000614 llvm_unreachable("Unsigned comparisons not yet supported");
Tobias Grosser75805372011-04-29 06:27:02 +0000615 default:
616 llvm_unreachable("Non integer predicate not supported");
617 }
Tobias Grosser75805372011-04-29 06:27:02 +0000618}
619
Tobias Grossere19661e2011-10-07 08:46:57 +0000620__isl_give isl_set *ScopStmt::addLoopBoundsToDomain(__isl_take isl_set *Domain,
Tobias Grosser60b54f12011-11-08 15:41:28 +0000621 TempScop &tempScop) {
Tobias Grossere19661e2011-10-07 08:46:57 +0000622 isl_space *Space;
623 isl_local_space *LocalSpace;
Tobias Grosser75805372011-04-29 06:27:02 +0000624
Tobias Grossere19661e2011-10-07 08:46:57 +0000625 Space = isl_set_get_space(Domain);
626 LocalSpace = isl_local_space_from_space(Space);
Tobias Grosserf5338802011-10-06 00:03:35 +0000627
Tobias Grosser75805372011-04-29 06:27:02 +0000628 for (int i = 0, e = getNumIterators(); i != e; ++i) {
Tobias Grosser9b13d3d2011-10-06 22:32:58 +0000629 isl_aff *Zero = isl_aff_zero_on_domain(isl_local_space_copy(LocalSpace));
630 isl_pw_aff *IV = isl_pw_aff_from_aff(
631 isl_aff_set_coefficient_si(Zero, isl_dim_in, i, 1));
Tobias Grosser75805372011-04-29 06:27:02 +0000632
Tobias Grosser9b13d3d2011-10-06 22:32:58 +0000633 // 0 <= IV.
634 isl_set *LowerBound = isl_pw_aff_nonneg_set(isl_pw_aff_copy(IV));
635 Domain = isl_set_intersect(Domain, LowerBound);
636
637 // IV <= LatchExecutions.
Hongbin Zheng27f3afb2011-04-30 03:26:51 +0000638 const Loop *L = getLoopForDimension(i);
Tobias Grosser1179afa2011-11-02 21:37:51 +0000639 const SCEV *LatchExecutions = tempScop.getLoopBound(L);
Tobias Grosser9b13d3d2011-10-06 22:32:58 +0000640 isl_pw_aff *UpperBound = SCEVAffinator::getPwAff(this, LatchExecutions);
641 isl_set *UpperBoundSet = isl_pw_aff_le_set(IV, UpperBound);
Tobias Grosser75805372011-04-29 06:27:02 +0000642 Domain = isl_set_intersect(Domain, UpperBoundSet);
643 }
644
Tobias Grosserf5338802011-10-06 00:03:35 +0000645 isl_local_space_free(LocalSpace);
Tobias Grossere19661e2011-10-07 08:46:57 +0000646 return Domain;
Tobias Grosser75805372011-04-29 06:27:02 +0000647}
648
Tobias Grossere19661e2011-10-07 08:46:57 +0000649__isl_give isl_set *ScopStmt::addConditionsToDomain(__isl_take isl_set *Domain,
650 TempScop &tempScop,
Tobias Grosser65b00582011-11-08 15:41:19 +0000651 const Region &CurRegion) {
Tobias Grossere19661e2011-10-07 08:46:57 +0000652 const Region *TopRegion = tempScop.getMaxRegion().getParent(),
653 *CurrentRegion = &CurRegion;
654 const BasicBlock *BranchingBB = BB;
Tobias Grosser75805372011-04-29 06:27:02 +0000655
Tobias Grosser75805372011-04-29 06:27:02 +0000656 do {
Tobias Grossere19661e2011-10-07 08:46:57 +0000657 if (BranchingBB != CurrentRegion->getEntry()) {
658 if (const BBCond *Condition = tempScop.getBBCond(BranchingBB))
659 for (BBCond::const_iterator CI = Condition->begin(),
660 CE = Condition->end(); CI != CE; ++CI) {
Tobias Grosser048c8792011-10-23 20:59:20 +0000661 isl_set *ConditionSet = buildConditionSet(*CI);
Tobias Grossere19661e2011-10-07 08:46:57 +0000662 Domain = isl_set_intersect(Domain, ConditionSet);
Tobias Grosser75805372011-04-29 06:27:02 +0000663 }
664 }
Tobias Grossere19661e2011-10-07 08:46:57 +0000665 BranchingBB = CurrentRegion->getEntry();
666 CurrentRegion = CurrentRegion->getParent();
667 } while (TopRegion != CurrentRegion);
Tobias Grosser75805372011-04-29 06:27:02 +0000668
Tobias Grossere19661e2011-10-07 08:46:57 +0000669 return Domain;
Tobias Grosser75805372011-04-29 06:27:02 +0000670}
671
Tobias Grossere19661e2011-10-07 08:46:57 +0000672__isl_give isl_set *ScopStmt::buildDomain(TempScop &tempScop,
Tobias Grosser65b00582011-11-08 15:41:19 +0000673 const Region &CurRegion) {
Tobias Grossere19661e2011-10-07 08:46:57 +0000674 isl_space *Space;
675 isl_set *Domain;
676
677 Space = isl_space_set_alloc(getIslCtx(), 0, getNumIterators());
678
679 Domain = isl_set_universe(Space);
Tobias Grossere19661e2011-10-07 08:46:57 +0000680 Domain = addLoopBoundsToDomain(Domain, tempScop);
681 Domain = addConditionsToDomain(Domain, tempScop, CurRegion);
682 Domain = isl_set_set_tuple_name(Domain, getBaseName());
683
684 return Domain;
Tobias Grosser75805372011-04-29 06:27:02 +0000685}
686
687ScopStmt::ScopStmt(Scop &parent, TempScop &tempScop,
688 const Region &CurRegion, BasicBlock &bb,
689 SmallVectorImpl<Loop*> &NestLoops,
690 SmallVectorImpl<unsigned> &Scatter)
691 : Parent(parent), BB(&bb), IVS(NestLoops.size()) {
692 // Setup the induction variables.
693 for (unsigned i = 0, e = NestLoops.size(); i < e; ++i) {
694 PHINode *PN = NestLoops[i]->getCanonicalInductionVariable();
695 assert(PN && "Non canonical IV in Scop!");
Hongbin Zheng27f3afb2011-04-30 03:26:51 +0000696 IVS[i] = std::make_pair(PN, NestLoops[i]);
Tobias Grosser75805372011-04-29 06:27:02 +0000697 }
698
699 raw_string_ostream OS(BaseName);
700 WriteAsOperand(OS, &bb, false);
701 BaseName = OS.str();
702
Tobias Grosser75805372011-04-29 06:27:02 +0000703 makeIslCompatible(BaseName);
704 BaseName = "Stmt_" + BaseName;
705
Tobias Grossere19661e2011-10-07 08:46:57 +0000706 Domain = buildDomain(tempScop, CurRegion);
Tobias Grosser75805372011-04-29 06:27:02 +0000707 buildScattering(Scatter);
708 buildAccesses(tempScop, CurRegion);
Tobias Grosser75805372011-04-29 06:27:02 +0000709}
710
711ScopStmt::ScopStmt(Scop &parent, SmallVectorImpl<unsigned> &Scatter)
712 : Parent(parent), BB(NULL), IVS(0) {
713
714 BaseName = "FinalRead";
715
716 // Build iteration domain.
717 std::string IterationDomainString = "{[i0] : i0 = 0}";
Tobias Grosser3c69fab2011-10-06 00:03:54 +0000718 Domain = isl_set_read_from_str(getIslCtx(), IterationDomainString.c_str());
Tobias Grosser75805372011-04-29 06:27:02 +0000719 Domain = isl_set_set_tuple_name(Domain, getBaseName());
720
721 // Build scattering.
Tobias Grosserf5338802011-10-06 00:03:35 +0000722 unsigned ScatSpace = Parent.getMaxLoopDepth() * 2 + 1;
Tobias Grosser3c69fab2011-10-06 00:03:54 +0000723 isl_space *Space = isl_space_alloc(getIslCtx(), 0, 1, ScatSpace);
Tobias Grosserf5338802011-10-06 00:03:35 +0000724 Space = isl_space_set_tuple_name(Space, isl_dim_out, "scattering");
725 Space = isl_space_set_tuple_name(Space, isl_dim_in, getBaseName());
726 isl_basic_map *bmap = isl_basic_map_universe(isl_space_copy(Space));
Tobias Grosser75805372011-04-29 06:27:02 +0000727 isl_int v;
728 isl_int_init(v);
729
Tobias Grosserf5338802011-10-06 00:03:35 +0000730 isl_constraint *c = isl_equality_alloc(isl_local_space_from_space(Space));
Tobias Grosser75805372011-04-29 06:27:02 +0000731 isl_int_set_si(v, -1);
732 isl_constraint_set_coefficient(c, isl_dim_out, 0, v);
733
734 // TODO: This is incorrect. We should not use a very large number to ensure
735 // that this statement is executed last.
736 isl_int_set_si(v, 200000000);
737 isl_constraint_set_constant(c, v);
738
739 bmap = isl_basic_map_add_constraint(bmap, c);
740 isl_int_clear(v);
741 Scattering = isl_map_from_basic_map(bmap);
742
743 // Build memory accesses, use SetVector to keep the order of memory accesses
744 // and prevent the same memory access inserted more than once.
745 SetVector<const Value*> BaseAddressSet;
746
747 for (Scop::const_iterator SI = Parent.begin(), SE = Parent.end(); SI != SE;
748 ++SI) {
749 ScopStmt *Stmt = *SI;
750
751 for (MemoryAccessVec::const_iterator I = Stmt->memacc_begin(),
752 E = Stmt->memacc_end(); I != E; ++I)
753 BaseAddressSet.insert((*I)->getBaseAddr());
754 }
755
756 for (SetVector<const Value*>::iterator BI = BaseAddressSet.begin(),
757 BE = BaseAddressSet.end(); BI != BE; ++BI)
758 MemAccs.push_back(new MemoryAccess(*BI, this));
Tobias Grosser75805372011-04-29 06:27:02 +0000759}
760
761std::string ScopStmt::getDomainStr() const {
Tobias Grosser4da8d9f2011-10-06 00:03:59 +0000762 return stringFromIslObj(Domain);
Tobias Grosser75805372011-04-29 06:27:02 +0000763}
764
765std::string ScopStmt::getScatteringStr() const {
Tobias Grossercf3942d2011-10-06 00:04:05 +0000766 return stringFromIslObj(Scattering);
Tobias Grosser75805372011-04-29 06:27:02 +0000767}
768
769unsigned ScopStmt::getNumParams() const {
770 return Parent.getNumParams();
771}
772
773unsigned ScopStmt::getNumIterators() const {
774 // The final read has one dimension with one element.
775 if (!BB)
776 return 1;
777
778 return IVS.size();
779}
780
781unsigned ScopStmt::getNumScattering() const {
782 return isl_map_dim(Scattering, isl_dim_out);
783}
784
785const char *ScopStmt::getBaseName() const { return BaseName.c_str(); }
786
787const PHINode *ScopStmt::getInductionVariableForDimension(unsigned Dimension)
788 const {
Hongbin Zheng27f3afb2011-04-30 03:26:51 +0000789 return IVS[Dimension].first;
790}
791
792const Loop *ScopStmt::getLoopForDimension(unsigned Dimension) const {
793 return IVS[Dimension].second;
Tobias Grosser75805372011-04-29 06:27:02 +0000794}
795
796const SCEVAddRecExpr *ScopStmt::getSCEVForDimension(unsigned Dimension)
797 const {
Hongbin Zheng27f3afb2011-04-30 03:26:51 +0000798 PHINode *PN =
799 const_cast<PHINode*>(getInductionVariableForDimension(Dimension));
Tobias Grosser75805372011-04-29 06:27:02 +0000800 return cast<SCEVAddRecExpr>(getParent()->getSE()->getSCEV(PN));
801}
802
Tobias Grosser3c69fab2011-10-06 00:03:54 +0000803isl_ctx *ScopStmt::getIslCtx() const {
804 return Parent.getIslCtx();
Tobias Grosser75805372011-04-29 06:27:02 +0000805}
806
Tobias Grosserd5a7bfc2011-05-06 19:52:19 +0000807isl_set *ScopStmt::getDomain() const {
808 return isl_set_copy(Domain);
809}
810
Tobias Grosser75805372011-04-29 06:27:02 +0000811ScopStmt::~ScopStmt() {
812 while (!MemAccs.empty()) {
813 delete MemAccs.back();
814 MemAccs.pop_back();
815 }
816
817 isl_set_free(Domain);
818 isl_map_free(Scattering);
819}
820
821void ScopStmt::print(raw_ostream &OS) const {
822 OS << "\t" << getBaseName() << "\n";
823
824 OS.indent(12) << "Domain :=\n";
825
826 if (Domain) {
827 OS.indent(16) << getDomainStr() << ";\n";
828 } else
829 OS.indent(16) << "n/a\n";
830
831 OS.indent(12) << "Scattering :=\n";
832
833 if (Domain) {
834 OS.indent(16) << getScatteringStr() << ";\n";
835 } else
836 OS.indent(16) << "n/a\n";
837
838 for (MemoryAccessVec::const_iterator I = MemAccs.begin(), E = MemAccs.end();
839 I != E; ++I)
840 (*I)->print(OS);
841}
842
843void ScopStmt::dump() const { print(dbgs()); }
844
845//===----------------------------------------------------------------------===//
846/// Scop class implement
Tobias Grosser60b54f12011-11-08 15:41:28 +0000847
Tobias Grosser7ffe4e82011-11-17 12:56:10 +0000848void Scop::setContext(__isl_take isl_set *NewContext) {
Tobias Grosserff9b54d2011-11-15 11:38:44 +0000849 NewContext = isl_set_align_params(NewContext, isl_set_get_space(Context));
850 isl_set_free(Context);
851 Context = NewContext;
852}
853
Tobias Grosser60b54f12011-11-08 15:41:28 +0000854void Scop::addParams(std::vector<const SCEV*> NewParameters) {
855 for (std::vector<const SCEV*>::iterator PI = NewParameters.begin(),
856 PE = NewParameters.end(); PI != PE; ++PI) {
857 const SCEV *Parameter = *PI;
858
859 if (ParameterIds.find(Parameter) != ParameterIds.end())
860 continue;
861
862 int dimension = Parameters.size();
863
864 Parameters.push_back(Parameter);
865 ParameterIds[Parameter] = dimension;
866 }
867}
868
Tobias Grosser9a38ab82011-11-08 15:41:03 +0000869__isl_give isl_id *Scop::getIdForParam(const SCEV *Parameter) const {
870 ParamIdType::const_iterator IdIter = ParameterIds.find(Parameter);
Tobias Grosser76c2e322011-11-07 12:58:59 +0000871
Tobias Grosser9a38ab82011-11-08 15:41:03 +0000872 if (IdIter == ParameterIds.end())
873 return NULL;
Tobias Grosser76c2e322011-11-07 12:58:59 +0000874
Tobias Grosser8f99c162011-11-15 11:38:55 +0000875 std::string ParameterName;
876
877 if (const SCEVUnknown *ValueParameter = dyn_cast<SCEVUnknown>(Parameter)) {
878 Value *Val = ValueParameter->getValue();
Tobias Grosser29ee0b12011-11-17 14:52:36 +0000879 ParameterName = Val->getName();
Tobias Grosser8f99c162011-11-15 11:38:55 +0000880 }
881
882 if (ParameterName == "" || ParameterName.substr(0, 2) == "p_")
883 ParameterName = "p_" + convertInt(IdIter->second);
884
Tobias Grosser9a38ab82011-11-08 15:41:03 +0000885 return isl_id_alloc(getIslCtx(), ParameterName.c_str(), (void *) Parameter);
Tobias Grosser76c2e322011-11-07 12:58:59 +0000886}
Tobias Grosser75805372011-04-29 06:27:02 +0000887
Tobias Grosser6be480c2011-11-08 15:41:13 +0000888void Scop::buildContext() {
889 isl_space *Space = isl_space_params_alloc(IslCtx, 0);
Tobias Grosserf5338802011-10-06 00:03:35 +0000890 Context = isl_set_universe (Space);
Tobias Grosser0e27e242011-10-06 00:03:48 +0000891}
892
Tobias Grosser8cae72f2011-11-08 15:41:08 +0000893void Scop::realignParams() {
Tobias Grosser6be480c2011-11-08 15:41:13 +0000894 // Add all parameters into a common model.
Tobias Grosser60b54f12011-11-08 15:41:28 +0000895 isl_space *Space = isl_space_params_alloc(IslCtx, ParameterIds.size());
Tobias Grosser6be480c2011-11-08 15:41:13 +0000896
897 for (ParamIdType::iterator PI = ParameterIds.begin(), PE = ParameterIds.end();
898 PI != PE; ++PI) {
899 const SCEV *Parameter = PI->first;
900 isl_id *id = getIdForParam(Parameter);
901 Space = isl_space_set_dim_id(Space, isl_dim_param, PI->second, id);
902 }
903
904 // Align the parameters of all data structures to the model.
905 Context = isl_set_align_params(Context, Space);
906
Tobias Grosser8cae72f2011-11-08 15:41:08 +0000907 for (iterator I = begin(), E = end(); I != E; ++I)
908 (*I)->realignParams();
909}
910
Tobias Grosser0e27e242011-10-06 00:03:48 +0000911Scop::Scop(TempScop &tempScop, LoopInfo &LI, ScalarEvolution &ScalarEvolution,
912 isl_ctx *Context)
913 : SE(&ScalarEvolution), R(tempScop.getMaxRegion()),
914 MaxLoopDepth(tempScop.getMaxLoopDepth()) {
Tobias Grosser9a38ab82011-11-08 15:41:03 +0000915 IslCtx = Context;
Tobias Grosser6be480c2011-11-08 15:41:13 +0000916 buildContext();
Tobias Grosser75805372011-04-29 06:27:02 +0000917
918 SmallVector<Loop*, 8> NestLoops;
919 SmallVector<unsigned, 8> Scatter;
920
921 Scatter.assign(MaxLoopDepth + 1, 0);
922
923 // Build the iteration domain, access functions and scattering functions
924 // traversing the region tree.
925 buildScop(tempScop, getRegion(), NestLoops, Scatter, LI);
926 Stmts.push_back(new ScopStmt(*this, Scatter));
927
Tobias Grosser8cae72f2011-11-08 15:41:08 +0000928 realignParams();
929
Tobias Grosser75805372011-04-29 06:27:02 +0000930 assert(NestLoops.empty() && "NestLoops not empty at top level!");
931}
932
933Scop::~Scop() {
934 isl_set_free(Context);
935
936 // Free the statements;
937 for (iterator I = begin(), E = end(); I != E; ++I)
938 delete *I;
Tobias Grosser75805372011-04-29 06:27:02 +0000939}
940
941std::string Scop::getContextStr() const {
Tobias Grosser4da8d9f2011-10-06 00:03:59 +0000942 return stringFromIslObj(Context);
Tobias Grosser75805372011-04-29 06:27:02 +0000943}
944
945std::string Scop::getNameStr() const {
946 std::string ExitName, EntryName;
947 raw_string_ostream ExitStr(ExitName);
948 raw_string_ostream EntryStr(EntryName);
949
950 WriteAsOperand(EntryStr, R.getEntry(), false);
951 EntryStr.str();
952
953 if (R.getExit()) {
954 WriteAsOperand(ExitStr, R.getExit(), false);
955 ExitStr.str();
956 } else
957 ExitName = "FunctionExit";
958
959 return EntryName + "---" + ExitName;
960}
961
Tobias Grosser4da8d9f2011-10-06 00:03:59 +0000962__isl_give isl_set *Scop::getContext() const {
963 return isl_set_copy(Context);
964}
Tobias Grosser37487052011-10-06 00:03:42 +0000965__isl_give isl_space *Scop::getParamSpace() const {
966 return isl_set_get_space(this->Context);
967}
968
Tobias Grosser75805372011-04-29 06:27:02 +0000969void Scop::printContext(raw_ostream &OS) const {
970 OS << "Context:\n";
971
972 if (!Context) {
973 OS.indent(4) << "n/a\n\n";
974 return;
975 }
976
977 OS.indent(4) << getContextStr() << "\n";
Tobias Grosser60b54f12011-11-08 15:41:28 +0000978
979 for (ParamVecType::const_iterator PI = Parameters.begin(),
980 PE = Parameters.end(); PI != PE; ++PI) {
981 const SCEV *Parameter = *PI;
982 int Dim = ParameterIds.find(Parameter)->second;
983
984 OS.indent(4) << "p" << Dim << ": " << *Parameter << "\n";
985 }
Tobias Grosser75805372011-04-29 06:27:02 +0000986}
987
988void Scop::printStatements(raw_ostream &OS) const {
989 OS << "Statements {\n";
990
991 for (const_iterator SI = begin(), SE = end();SI != SE; ++SI)
992 OS.indent(4) << (**SI);
993
994 OS.indent(4) << "}\n";
995}
996
997
998void Scop::print(raw_ostream &OS) const {
999 printContext(OS.indent(4));
1000 printStatements(OS.indent(4));
1001}
1002
1003void Scop::dump() const { print(dbgs()); }
1004
Tobias Grosser9a38ab82011-11-08 15:41:03 +00001005isl_ctx *Scop::getIslCtx() const { return IslCtx; }
Tobias Grosser75805372011-04-29 06:27:02 +00001006
1007ScalarEvolution *Scop::getSE() const { return SE; }
1008
1009bool Scop::isTrivialBB(BasicBlock *BB, TempScop &tempScop) {
1010 if (tempScop.getAccessFunctions(BB))
1011 return false;
1012
1013 return true;
1014}
1015
1016void Scop::buildScop(TempScop &tempScop,
1017 const Region &CurRegion,
1018 SmallVectorImpl<Loop*> &NestLoops,
1019 SmallVectorImpl<unsigned> &Scatter,
1020 LoopInfo &LI) {
1021 Loop *L = castToLoop(CurRegion, LI);
1022
1023 if (L)
1024 NestLoops.push_back(L);
1025
1026 unsigned loopDepth = NestLoops.size();
1027 assert(Scatter.size() > loopDepth && "Scatter not big enough!");
1028
1029 for (Region::const_element_iterator I = CurRegion.element_begin(),
1030 E = CurRegion.element_end(); I != E; ++I)
1031 if (I->isSubRegion())
1032 buildScop(tempScop, *(I->getNodeAs<Region>()), NestLoops, Scatter, LI);
1033 else {
1034 BasicBlock *BB = I->getNodeAs<BasicBlock>();
1035
1036 if (isTrivialBB(BB, tempScop))
1037 continue;
1038
1039 Stmts.push_back(new ScopStmt(*this, tempScop, CurRegion, *BB, NestLoops,
1040 Scatter));
1041
1042 // Increasing the Scattering function is OK for the moment, because
1043 // we are using a depth first iterator and the program is well structured.
1044 ++Scatter[loopDepth];
1045 }
1046
1047 if (!L)
1048 return;
1049
1050 // Exiting a loop region.
1051 Scatter[loopDepth] = 0;
1052 NestLoops.pop_back();
1053 ++Scatter[loopDepth-1];
1054}
1055
1056//===----------------------------------------------------------------------===//
Tobias Grosserb76f38532011-08-20 11:11:25 +00001057ScopInfo::ScopInfo() : RegionPass(ID), scop(0) {
1058 ctx = isl_ctx_alloc();
Tobias Grosser4a8e3562011-12-07 07:42:51 +00001059 isl_options_set_on_error(ctx, ISL_ON_ERROR_ABORT);
Tobias Grosserb76f38532011-08-20 11:11:25 +00001060}
1061
1062ScopInfo::~ScopInfo() {
1063 clear();
1064 isl_ctx_free(ctx);
1065}
1066
1067
Tobias Grosser75805372011-04-29 06:27:02 +00001068
1069void ScopInfo::getAnalysisUsage(AnalysisUsage &AU) const {
1070 AU.addRequired<LoopInfo>();
1071 AU.addRequired<RegionInfo>();
1072 AU.addRequired<ScalarEvolution>();
1073 AU.addRequired<TempScopInfo>();
1074 AU.setPreservesAll();
1075}
1076
1077bool ScopInfo::runOnRegion(Region *R, RGPassManager &RGM) {
1078 LoopInfo &LI = getAnalysis<LoopInfo>();
1079 ScalarEvolution &SE = getAnalysis<ScalarEvolution>();
1080
1081 TempScop *tempScop = getAnalysis<TempScopInfo>().getTempScop(R);
1082
1083 // This region is no Scop.
1084 if (!tempScop) {
1085 scop = 0;
1086 return false;
1087 }
1088
1089 // Statistics.
1090 ++ScopFound;
1091 if (tempScop->getMaxLoopDepth() > 0) ++RichScopFound;
1092
Tobias Grosserb76f38532011-08-20 11:11:25 +00001093 scop = new Scop(*tempScop, LI, SE, ctx);
Tobias Grosser75805372011-04-29 06:27:02 +00001094
1095 return false;
1096}
1097
1098char ScopInfo::ID = 0;
1099
Tobias Grosser73600b82011-10-08 00:30:40 +00001100INITIALIZE_PASS_BEGIN(ScopInfo, "polly-scops",
1101 "Polly - Create polyhedral description of Scops", false,
1102 false)
1103INITIALIZE_PASS_DEPENDENCY(LoopInfo)
1104INITIALIZE_PASS_DEPENDENCY(RegionInfo)
1105INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
1106INITIALIZE_PASS_DEPENDENCY(TempScopInfo)
1107INITIALIZE_PASS_END(ScopInfo, "polly-scops",
1108 "Polly - Create polyhedral description of Scops", false,
1109 false)
Tobias Grosser75805372011-04-29 06:27:02 +00001110
1111Pass *polly::createScopInfoPass() {
1112 return new ScopInfo();
1113}