blob: e462c7791941e0dbbb6115f488cffe361be0e10b [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
Sebastian Pop27c10c62013-03-22 22:07:43 +000020#include "polly/CodeGen/BlockGenerators.h"
Tobias Grosser75805372011-04-29 06:27:02 +000021#include "polly/LinkAllPasses.h"
Sebastian Pop27c10c62013-03-22 22:07:43 +000022#include "polly/ScopInfo.h"
Johannes Doerfert0ee1f212014-06-17 17:31:36 +000023#include "polly/Options.h"
Tobias Grosser75805372011-04-29 06:27:02 +000024#include "polly/Support/GICHelper.h"
Tobias Grosser60b54f12011-11-08 15:41:28 +000025#include "polly/Support/SCEVValidator.h"
Tobias Grosser83628182013-05-07 08:11:54 +000026#include "polly/Support/ScopHelper.h"
Sebastian Pop27c10c62013-03-22 22:07:43 +000027#include "polly/TempScopInfo.h"
Tobias Grosser75805372011-04-29 06:27:02 +000028#include "llvm/ADT/SetVector.h"
Tobias Grosser83628182013-05-07 08:11:54 +000029#include "llvm/ADT/Statistic.h"
Hongbin Zheng86a37742012-04-25 08:01:38 +000030#include "llvm/ADT/StringExtras.h"
Tobias Grosser83628182013-05-07 08:11:54 +000031#include "llvm/Analysis/LoopInfo.h"
32#include "llvm/Analysis/RegionIterator.h"
33#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Tobias Grosser75805372011-04-29 06:27:02 +000034#include "llvm/Support/Debug.h"
35
36#include "isl/constraint.h"
37#include "isl/set.h"
38#include "isl/map.h"
Tobias Grosser37eb4222014-02-20 21:43:54 +000039#include "isl/union_map.h"
Tobias Grosser33ba62ad2011-08-18 06:31:50 +000040#include "isl/aff.h"
41#include "isl/printer.h"
Tobias Grosserf5338802011-10-06 00:03:35 +000042#include "isl/local_space.h"
Tobias Grosser4a8e3562011-12-07 07:42:51 +000043#include "isl/options.h"
Tobias Grosseredab1352013-06-21 06:41:31 +000044#include "isl/val.h"
Chandler Carruth95fef942014-04-22 03:30:19 +000045
Tobias Grosser75805372011-04-29 06:27:02 +000046#include <sstream>
47#include <string>
48#include <vector>
49
50using namespace llvm;
51using namespace polly;
52
Chandler Carruth95fef942014-04-22 03:30:19 +000053#define DEBUG_TYPE "polly-scops"
54
Tobias Grosser74394f02013-01-14 22:40:23 +000055STATISTIC(ScopFound, "Number of valid Scops");
56STATISTIC(RichScopFound, "Number of Scops containing a loop");
Tobias Grosser75805372011-04-29 06:27:02 +000057
Johannes Doerfert0ee1f212014-06-17 17:31:36 +000058// Multiplicative reductions can be disabled seperately as these kind of
59// operations can overflow easily. Additive reductions and bit operations
60// are in contrast pretty stable.
Tobias Grosser483a90d2014-07-09 10:50:10 +000061static cl::opt<bool> DisableMultiplicativeReductions(
62 "polly-disable-multiplicative-reductions",
63 cl::desc("Disable multiplicative reductions"), cl::Hidden, cl::ZeroOrMore,
64 cl::init(false), cl::cat(PollyCategory));
Johannes Doerfert0ee1f212014-06-17 17:31:36 +000065
Tobias Grosser0695ee42013-09-17 03:30:31 +000066/// Translate a 'const SCEV *' expression in an isl_pw_aff.
Tobias Grosserabfbe632013-02-05 12:09:06 +000067struct SCEVAffinator : public SCEVVisitor<SCEVAffinator, isl_pw_aff *> {
Tobias Grosser0695ee42013-09-17 03:30:31 +000068public:
Tobias Grosser0695ee42013-09-17 03:30:31 +000069 /// @brief Translate a 'const SCEV *' to an isl_pw_aff.
70 ///
71 /// @param Stmt The location at which the scalar evolution expression
72 /// is evaluated.
73 /// @param Expr The expression that is translated.
74 static __isl_give isl_pw_aff *getPwAff(ScopStmt *Stmt, const SCEV *Expr);
75
Tobias Grosser33ba62ad2011-08-18 06:31:50 +000076private:
Tobias Grosser3cc99742012-06-06 16:33:15 +000077 isl_ctx *Ctx;
Tobias Grosserf5338802011-10-06 00:03:35 +000078 int NbLoopSpaces;
Tobias Grosser3cc99742012-06-06 16:33:15 +000079 const Scop *S;
Tobias Grosser33ba62ad2011-08-18 06:31:50 +000080
Tobias Grosser0695ee42013-09-17 03:30:31 +000081 SCEVAffinator(const ScopStmt *Stmt);
82 int getLoopDepth(const Loop *L);
Tobias Grosser60b54f12011-11-08 15:41:28 +000083
Tobias Grosser0695ee42013-09-17 03:30:31 +000084 __isl_give isl_pw_aff *visit(const SCEV *Expr);
85 __isl_give isl_pw_aff *visitConstant(const SCEVConstant *Expr);
86 __isl_give isl_pw_aff *visitTruncateExpr(const SCEVTruncateExpr *Expr);
87 __isl_give isl_pw_aff *visitZeroExtendExpr(const SCEVZeroExtendExpr *Expr);
88 __isl_give isl_pw_aff *visitSignExtendExpr(const SCEVSignExtendExpr *Expr);
89 __isl_give isl_pw_aff *visitAddExpr(const SCEVAddExpr *Expr);
90 __isl_give isl_pw_aff *visitMulExpr(const SCEVMulExpr *Expr);
91 __isl_give isl_pw_aff *visitUDivExpr(const SCEVUDivExpr *Expr);
92 __isl_give isl_pw_aff *visitAddRecExpr(const SCEVAddRecExpr *Expr);
93 __isl_give isl_pw_aff *visitSMaxExpr(const SCEVSMaxExpr *Expr);
94 __isl_give isl_pw_aff *visitUMaxExpr(const SCEVUMaxExpr *Expr);
95 __isl_give isl_pw_aff *visitUnknown(const SCEVUnknown *Expr);
Tobias Grosser60b54f12011-11-08 15:41:28 +000096
Tobias Grosser0695ee42013-09-17 03:30:31 +000097 friend struct SCEVVisitor<SCEVAffinator, isl_pw_aff *>;
98};
Tobias Grosser33ba62ad2011-08-18 06:31:50 +000099
Tobias Grosser0695ee42013-09-17 03:30:31 +0000100SCEVAffinator::SCEVAffinator(const ScopStmt *Stmt)
101 : Ctx(Stmt->getIslCtx()), NbLoopSpaces(Stmt->getNumIterators()),
102 S(Stmt->getParent()) {}
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000103
Tobias Grosser0695ee42013-09-17 03:30:31 +0000104__isl_give isl_pw_aff *SCEVAffinator::getPwAff(ScopStmt *Stmt,
105 const SCEV *Scev) {
106 Scop *S = Stmt->getParent();
107 const Region *Reg = &S->getRegion();
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000108
Tobias Grosser0695ee42013-09-17 03:30:31 +0000109 S->addParams(getParamsInAffineExpr(Reg, Scev, *S->getSE()));
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000110
Tobias Grosser0695ee42013-09-17 03:30:31 +0000111 SCEVAffinator Affinator(Stmt);
112 return Affinator.visit(Scev);
113}
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000114
Tobias Grosser0695ee42013-09-17 03:30:31 +0000115__isl_give isl_pw_aff *SCEVAffinator::visit(const SCEV *Expr) {
116 // In case the scev is a valid parameter, we do not further analyze this
117 // expression, but create a new parameter in the isl_pw_aff. This allows us
118 // to treat subexpressions that we cannot translate into an piecewise affine
119 // expression, as constant parameters of the piecewise affine expression.
120 if (isl_id *Id = S->getIdForParam(Expr)) {
121 isl_space *Space = isl_space_set_alloc(Ctx, 1, NbLoopSpaces);
122 Space = isl_space_set_dim_id(Space, isl_dim_param, 0, Id);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000123
Tobias Grosser0695ee42013-09-17 03:30:31 +0000124 isl_set *Domain = isl_set_universe(isl_space_copy(Space));
125 isl_aff *Affine = isl_aff_zero_on_domain(isl_local_space_from_space(Space));
126 Affine = isl_aff_add_coefficient_si(Affine, isl_dim_param, 0, 1);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000127
128 return isl_pw_aff_alloc(Domain, Affine);
129 }
130
Tobias Grosser0695ee42013-09-17 03:30:31 +0000131 return SCEVVisitor<SCEVAffinator, isl_pw_aff *>::visit(Expr);
132}
133
Tobias Grosser0d170132013-10-03 13:09:19 +0000134__isl_give isl_pw_aff *SCEVAffinator::visitConstant(const SCEVConstant *Expr) {
Tobias Grosser0695ee42013-09-17 03:30:31 +0000135 ConstantInt *Value = Expr->getValue();
136 isl_val *v;
137
138 // LLVM does not define if an integer value is interpreted as a signed or
139 // unsigned value. Hence, without further information, it is unknown how
140 // this value needs to be converted to GMP. At the moment, we only support
141 // signed operations. So we just interpret it as signed. Later, there are
142 // two options:
143 //
144 // 1. We always interpret any value as signed and convert the values on
145 // demand.
146 // 2. We pass down the signedness of the calculation and use it to interpret
147 // this constant correctly.
148 v = isl_valFromAPInt(Ctx, Value->getValue(), /* isSigned */ true);
149
150 isl_space *Space = isl_space_set_alloc(Ctx, 0, NbLoopSpaces);
151 isl_local_space *ls = isl_local_space_from_space(isl_space_copy(Space));
152 isl_aff *Affine = isl_aff_zero_on_domain(ls);
153 isl_set *Domain = isl_set_universe(Space);
154
155 Affine = isl_aff_add_constant_val(Affine, v);
156
157 return isl_pw_aff_alloc(Domain, Affine);
158}
159
160__isl_give isl_pw_aff *
161SCEVAffinator::visitTruncateExpr(const SCEVTruncateExpr *Expr) {
162 llvm_unreachable("SCEVTruncateExpr not yet supported");
163}
164
165__isl_give isl_pw_aff *
166SCEVAffinator::visitZeroExtendExpr(const SCEVZeroExtendExpr *Expr) {
167 llvm_unreachable("SCEVZeroExtendExpr not yet supported");
168}
169
170__isl_give isl_pw_aff *
171SCEVAffinator::visitSignExtendExpr(const SCEVSignExtendExpr *Expr) {
172 // Assuming the value is signed, a sign extension is basically a noop.
173 // TODO: Reconsider this as soon as we support unsigned values.
174 return visit(Expr->getOperand());
175}
176
177__isl_give isl_pw_aff *SCEVAffinator::visitAddExpr(const SCEVAddExpr *Expr) {
178 isl_pw_aff *Sum = visit(Expr->getOperand(0));
179
180 for (int i = 1, e = Expr->getNumOperands(); i < e; ++i) {
181 isl_pw_aff *NextSummand = visit(Expr->getOperand(i));
182 Sum = isl_pw_aff_add(Sum, NextSummand);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000183 }
184
Tobias Grosser0695ee42013-09-17 03:30:31 +0000185 // TODO: Check for NSW and NUW.
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000186
Tobias Grosser0695ee42013-09-17 03:30:31 +0000187 return Sum;
188}
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000189
Tobias Grosser0695ee42013-09-17 03:30:31 +0000190__isl_give isl_pw_aff *SCEVAffinator::visitMulExpr(const SCEVMulExpr *Expr) {
191 isl_pw_aff *Product = visit(Expr->getOperand(0));
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000192
Tobias Grosser0695ee42013-09-17 03:30:31 +0000193 for (int i = 1, e = Expr->getNumOperands(); i < e; ++i) {
194 isl_pw_aff *NextOperand = visit(Expr->getOperand(i));
195
196 if (!isl_pw_aff_is_cst(Product) && !isl_pw_aff_is_cst(NextOperand)) {
197 isl_pw_aff_free(Product);
198 isl_pw_aff_free(NextOperand);
Tobias Grosser5a56cbf2014-04-16 07:33:47 +0000199 return nullptr;
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000200 }
201
Tobias Grosser0695ee42013-09-17 03:30:31 +0000202 Product = isl_pw_aff_mul(Product, NextOperand);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000203 }
204
Tobias Grosser0695ee42013-09-17 03:30:31 +0000205 // TODO: Check for NSW and NUW.
206 return Product;
207}
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000208
Tobias Grosser0695ee42013-09-17 03:30:31 +0000209__isl_give isl_pw_aff *SCEVAffinator::visitUDivExpr(const SCEVUDivExpr *Expr) {
210 llvm_unreachable("SCEVUDivExpr not yet supported");
211}
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000212
Tobias Grosser0695ee42013-09-17 03:30:31 +0000213__isl_give isl_pw_aff *
214SCEVAffinator::visitAddRecExpr(const SCEVAddRecExpr *Expr) {
215 assert(Expr->isAffine() && "Only affine AddRecurrences allowed");
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000216
Tobias Grosser0695ee42013-09-17 03:30:31 +0000217 // Directly generate isl_pw_aff for Expr if 'start' is zero.
218 if (Expr->getStart()->isZero()) {
219 assert(S->getRegion().contains(Expr->getLoop()) &&
220 "Scop does not contain the loop referenced in this AddRec");
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000221
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000222 isl_pw_aff *Start = visit(Expr->getStart());
Tobias Grosser0695ee42013-09-17 03:30:31 +0000223 isl_pw_aff *Step = visit(Expr->getOperand(1));
224 isl_space *Space = isl_space_set_alloc(Ctx, 0, NbLoopSpaces);
225 isl_local_space *LocalSpace = isl_local_space_from_space(Space);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000226
Tobias Grosser0695ee42013-09-17 03:30:31 +0000227 int loopDimension = getLoopDepth(Expr->getLoop());
228
229 isl_aff *LAff = isl_aff_set_coefficient_si(
230 isl_aff_zero_on_domain(LocalSpace), isl_dim_in, loopDimension, 1);
231 isl_pw_aff *LPwAff = isl_pw_aff_from_aff(LAff);
232
233 // TODO: Do we need to check for NSW and NUW?
234 return isl_pw_aff_add(Start, isl_pw_aff_mul(Step, LPwAff));
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000235 }
236
Tobias Grosser0695ee42013-09-17 03:30:31 +0000237 // Translate AddRecExpr from '{start, +, inc}' into 'start + {0, +, inc}'
238 // if 'start' is not zero.
239 ScalarEvolution &SE = *S->getSE();
240 const SCEV *ZeroStartExpr = SE.getAddRecExpr(
241 SE.getConstant(Expr->getStart()->getType(), 0),
242 Expr->getStepRecurrence(SE), Expr->getLoop(), SCEV::FlagAnyWrap);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000243
Tobias Grosser0695ee42013-09-17 03:30:31 +0000244 isl_pw_aff *ZeroStartResult = visit(ZeroStartExpr);
245 isl_pw_aff *Start = visit(Expr->getStart());
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000246
Tobias Grosser0695ee42013-09-17 03:30:31 +0000247 return isl_pw_aff_add(ZeroStartResult, Start);
248}
249
250__isl_give isl_pw_aff *SCEVAffinator::visitSMaxExpr(const SCEVSMaxExpr *Expr) {
251 isl_pw_aff *Max = visit(Expr->getOperand(0));
252
253 for (int i = 1, e = Expr->getNumOperands(); i < e; ++i) {
254 isl_pw_aff *NextOperand = visit(Expr->getOperand(i));
255 Max = isl_pw_aff_max(Max, NextOperand);
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000256 }
257
Tobias Grosser0695ee42013-09-17 03:30:31 +0000258 return Max;
259}
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000260
Tobias Grosser0695ee42013-09-17 03:30:31 +0000261__isl_give isl_pw_aff *SCEVAffinator::visitUMaxExpr(const SCEVUMaxExpr *Expr) {
262 llvm_unreachable("SCEVUMaxExpr not yet supported");
263}
264
265__isl_give isl_pw_aff *SCEVAffinator::visitUnknown(const SCEVUnknown *Expr) {
266 llvm_unreachable("Unknowns are always parameters");
267}
268
269int SCEVAffinator::getLoopDepth(const Loop *L) {
270 Loop *outerLoop = S->getRegion().outermostLoopInRegion(const_cast<Loop *>(L));
271 assert(outerLoop && "Scop does not contain this loop");
272 return L->getLoopDepth() - outerLoop->getLoopDepth();
273}
Tobias Grosser33ba62ad2011-08-18 06:31:50 +0000274
Johannes Doerfertf6183392014-07-01 20:52:51 +0000275/// @brief Return the reduction type for a given binary operator
276static MemoryAccess::ReductionType getReductionType(const BinaryOperator *BinOp,
277 const Instruction *Load) {
278 if (!BinOp)
279 return MemoryAccess::RT_NONE;
280 switch (BinOp->getOpcode()) {
281 case Instruction::FAdd:
282 if (!BinOp->hasUnsafeAlgebra())
283 return MemoryAccess::RT_NONE;
284 // Fall through
285 case Instruction::Add:
286 return MemoryAccess::RT_ADD;
287 case Instruction::Or:
288 return MemoryAccess::RT_BOR;
289 case Instruction::Xor:
290 return MemoryAccess::RT_BXOR;
291 case Instruction::And:
292 return MemoryAccess::RT_BAND;
293 case Instruction::FMul:
294 if (!BinOp->hasUnsafeAlgebra())
295 return MemoryAccess::RT_NONE;
296 // Fall through
297 case Instruction::Mul:
298 if (DisableMultiplicativeReductions)
299 return MemoryAccess::RT_NONE;
300 return MemoryAccess::RT_MUL;
301 default:
302 return MemoryAccess::RT_NONE;
303 }
304}
Tobias Grosser75805372011-04-29 06:27:02 +0000305//===----------------------------------------------------------------------===//
306
307MemoryAccess::~MemoryAccess() {
Tobias Grosser54a86e62011-08-18 06:31:46 +0000308 isl_map_free(AccessRelation);
Raghesh Aloor129e8672011-08-15 02:33:39 +0000309 isl_map_free(newAccessRelation);
Tobias Grosser75805372011-04-29 06:27:02 +0000310}
311
Tobias Grossere602a072013-05-07 07:30:56 +0000312static void replace(std::string &str, const std::string &find,
313 const std::string &replace) {
Tobias Grosser75805372011-04-29 06:27:02 +0000314 size_t pos = 0;
Tobias Grosser1bb59b02012-12-29 23:47:38 +0000315 while ((pos = str.find(find, pos)) != std::string::npos) {
Tobias Grosser75805372011-04-29 06:27:02 +0000316 str.replace(pos, find.length(), replace);
317 pos += replace.length();
318 }
319}
320
Tobias Grosser1bb59b02012-12-29 23:47:38 +0000321static void makeIslCompatible(std::string &str) {
Tobias Grossereec4d56e2011-08-20 11:11:14 +0000322 str.erase(0, 1);
Tobias Grosser75805372011-04-29 06:27:02 +0000323 replace(str, ".", "_");
Tobias Grosser3b660f82011-08-03 00:12:11 +0000324 replace(str, "\"", "_");
Tobias Grosser75805372011-04-29 06:27:02 +0000325}
326
327void MemoryAccess::setBaseName() {
328 raw_string_ostream OS(BaseName);
Tobias Grosserf240b482014-01-09 10:42:15 +0000329 getBaseAddr()->printAsOperand(OS, false);
Tobias Grosser75805372011-04-29 06:27:02 +0000330 BaseName = OS.str();
331
Tobias Grosser75805372011-04-29 06:27:02 +0000332 makeIslCompatible(BaseName);
333 BaseName = "MemRef_" + BaseName;
334}
335
Tobias Grosser5d453812011-10-06 00:04:11 +0000336isl_map *MemoryAccess::getAccessRelation() const {
337 return isl_map_copy(AccessRelation);
338}
339
340std::string MemoryAccess::getAccessRelationStr() const {
341 return stringFromIslObj(AccessRelation);
342}
343
Tobias Grosser5e6813d2014-07-02 17:47:48 +0000344__isl_give isl_space *MemoryAccess::getAccessRelationSpace() const {
345 return isl_map_get_space(AccessRelation);
346}
347
Tobias Grosser5d453812011-10-06 00:04:11 +0000348isl_map *MemoryAccess::getNewAccessRelation() const {
349 return isl_map_copy(newAccessRelation);
Tobias Grosser75805372011-04-29 06:27:02 +0000350}
351
352isl_basic_map *MemoryAccess::createBasicAccessMap(ScopStmt *Statement) {
Tobias Grosser084d8f72012-05-29 09:29:44 +0000353 isl_space *Space = isl_space_set_alloc(Statement->getIslCtx(), 0, 1);
354 Space = isl_space_set_tuple_name(Space, isl_dim_set, getBaseName().c_str());
Tobias Grossered295662012-09-11 13:50:21 +0000355 Space = isl_space_align_params(Space, Statement->getDomainSpace());
Tobias Grosser75805372011-04-29 06:27:02 +0000356
Tobias Grosser084d8f72012-05-29 09:29:44 +0000357 return isl_basic_map_from_domain_and_range(
Tobias Grosserabfbe632013-02-05 12:09:06 +0000358 isl_basic_set_universe(Statement->getDomainSpace()),
359 isl_basic_set_universe(Space));
Tobias Grosser75805372011-04-29 06:27:02 +0000360}
361
Tobias Grosser5e6813d2014-07-02 17:47:48 +0000362// Formalize no out-of-bound access assumption
363//
364// When delinearizing array accesses we optimistically assume that the
365// delinearized accesses do not access out of bound locations (the subscript
366// expression of each array evaluates for each statement instance that is
367// executed to a value that is larger than zero and strictly smaller than the
368// size of the corresponding dimension). The only exception is the outermost
369// dimension for which we do not assume any upper bound. At this point we
370// formalize this assumption to ensure that at code generation time the relevant
371// run-time checks can be generated.
372//
373// To find the set of constraints necessary to avoid out of bound accesses, we
374// first build the set of data locations that are not within array bounds. We
375// then apply the reverse access relation to obtain the set of iterations that
376// may contain invalid accesses and reduce this set of iterations to the ones
377// that are actually executed by intersecting them with the domain of the
378// statement. If we now project out all loop dimensions, we obtain a set of
379// parameters that may cause statement instances to be executed that may
380// possibly yield out of bound memory accesses. The complement of these
381// constraints is the set of constraints that needs to be assumed to ensure such
382// statement instances are never executed.
383void MemoryAccess::assumeNoOutOfBound(const IRAccess &Access) {
384 isl_space *Space = isl_space_range(getAccessRelationSpace());
385 isl_set *Outside = isl_set_empty(isl_space_copy(Space));
386 for (int i = 0, Size = Access.Subscripts.size(); i < Size; ++i) {
387 isl_local_space *LS = isl_local_space_from_space(isl_space_copy(Space));
388 isl_pw_aff *Var =
389 isl_pw_aff_var_on_domain(isl_local_space_copy(LS), isl_dim_set, i);
390 isl_pw_aff *Zero = isl_pw_aff_zero_on_domain(LS);
391
392 isl_set *DimOutside;
393
394 if (i == 0) {
395 DimOutside = isl_pw_aff_lt_set(Var, Zero);
396 } else {
397 DimOutside = isl_pw_aff_lt_set(isl_pw_aff_copy(Var), Zero);
398 isl_pw_aff *SizeE =
399 SCEVAffinator::getPwAff(Statement, Access.Sizes[i - 1]);
400
401 SizeE = isl_pw_aff_drop_dims(SizeE, isl_dim_in, 0,
402 Statement->getNumIterators());
403 SizeE = isl_pw_aff_add_dims(SizeE, isl_dim_in,
404 isl_space_dim(Space, isl_dim_set));
405 SizeE = isl_pw_aff_set_tuple_id(
406 SizeE, isl_dim_in, isl_space_get_tuple_id(Space, isl_dim_set));
407
408 DimOutside = isl_set_union(DimOutside, isl_pw_aff_le_set(SizeE, Var));
409 }
410
411 Outside = isl_set_union(Outside, DimOutside);
412 }
413
414 Outside = isl_set_apply(Outside, isl_map_reverse(getAccessRelation()));
415 Outside = isl_set_intersect(Outside, Statement->getDomain());
416 Outside = isl_set_params(Outside);
417 Outside = isl_set_complement(Outside);
418 Statement->getParent()->addAssumption(Outside);
419 isl_space_free(Space);
420}
421
Hongbin Zhengcea35f62012-07-06 06:47:03 +0000422MemoryAccess::MemoryAccess(const IRAccess &Access, const Instruction *AccInst,
Tobias Grosserabfbe632013-02-05 12:09:06 +0000423 ScopStmt *Statement)
Tobias Grosser5a56cbf2014-04-16 07:33:47 +0000424 : Statement(Statement), Inst(AccInst), newAccessRelation(nullptr) {
Tobias Grosser75805372011-04-29 06:27:02 +0000425
Tobias Grosser9759f852011-11-10 12:44:55 +0000426 BaseAddr = Access.getBase();
Tobias Grosser084d8f72012-05-29 09:29:44 +0000427 setBaseName();
Tobias Grosser5683df42011-11-09 22:34:34 +0000428
Tobias Grossera1879642011-12-20 10:43:14 +0000429 if (!Access.isAffine()) {
Tobias Grosser4f967492013-06-23 05:21:18 +0000430 // We overapproximate non-affine accesses with a possible access to the
431 // whole array. For read accesses it does not make a difference, if an
432 // access must or may happen. However, for write accesses it is important to
433 // differentiate between writes that must happen and writes that may happen.
Tobias Grosser04d6ae62013-06-23 06:04:54 +0000434 AccessRelation = isl_map_from_basic_map(createBasicAccessMap(Statement));
Tobias Grosserb58f6a42013-07-13 20:41:24 +0000435 Type = Access.isRead() ? READ : MAY_WRITE;
Tobias Grossera1879642011-12-20 10:43:14 +0000436 return;
437 }
438
Tobias Grosserb58f6a42013-07-13 20:41:24 +0000439 Type = Access.isRead() ? READ : MUST_WRITE;
Tobias Grosser4f967492013-06-23 05:21:18 +0000440
Tobias Grosser79baa212014-04-10 08:38:02 +0000441 isl_space *Space = isl_space_alloc(Statement->getIslCtx(), 0,
442 Statement->getNumIterators(), 0);
443 AccessRelation = isl_map_universe(Space);
Tobias Grossera1879642011-12-20 10:43:14 +0000444
Tobias Grosser79baa212014-04-10 08:38:02 +0000445 for (int i = 0, Size = Access.Subscripts.size(); i < Size; ++i) {
Sebastian Pop18016682014-04-08 21:20:44 +0000446 isl_pw_aff *Affine =
447 SCEVAffinator::getPwAff(Statement, Access.Subscripts[i]);
Tobias Grosser75805372011-04-29 06:27:02 +0000448
Sebastian Pop422e33f2014-06-03 18:16:31 +0000449 if (Size == 1) {
450 // For the non delinearized arrays, divide the access function of the last
451 // subscript by the size of the elements in the array.
Sebastian Pop18016682014-04-08 21:20:44 +0000452 //
453 // A stride one array access in C expressed as A[i] is expressed in
454 // LLVM-IR as something like A[i * elementsize]. This hides the fact that
455 // two subsequent values of 'i' index two values that are stored next to
456 // each other in memory. By this division we make this characteristic
457 // obvious again.
458 isl_val *v;
459 v = isl_val_int_from_si(isl_pw_aff_get_ctx(Affine),
460 Access.getElemSizeInBytes());
461 Affine = isl_pw_aff_scale_down_val(Affine, v);
462 }
463
464 isl_map *SubscriptMap = isl_map_from_pw_aff(Affine);
465
Tobias Grosser79baa212014-04-10 08:38:02 +0000466 AccessRelation = isl_map_flat_range_product(AccessRelation, SubscriptMap);
Sebastian Pop18016682014-04-08 21:20:44 +0000467 }
468
Tobias Grosser79baa212014-04-10 08:38:02 +0000469 Space = Statement->getDomainSpace();
Tobias Grosserabfbe632013-02-05 12:09:06 +0000470 AccessRelation = isl_map_set_tuple_id(
471 AccessRelation, isl_dim_in, isl_space_get_tuple_id(Space, isl_dim_set));
Tobias Grosser084d8f72012-05-29 09:29:44 +0000472 isl_space_free(Space);
Tobias Grosser75805372011-04-29 06:27:02 +0000473 AccessRelation = isl_map_set_tuple_name(AccessRelation, isl_dim_out,
474 getBaseName().c_str());
Tobias Grosser5e6813d2014-07-02 17:47:48 +0000475 assumeNoOutOfBound(Access);
Tobias Grosser8cae72f2011-11-08 15:41:08 +0000476}
Tobias Grosser30b8a092011-08-18 07:51:37 +0000477
Tobias Grosser8cae72f2011-11-08 15:41:08 +0000478void MemoryAccess::realignParams() {
Tobias Grosser6defb5b2014-04-10 08:37:44 +0000479 isl_space *ParamSpace = Statement->getParent()->getParamSpace();
Tobias Grosser37487052011-10-06 00:03:42 +0000480 AccessRelation = isl_map_align_params(AccessRelation, ParamSpace);
Tobias Grosser75805372011-04-29 06:27:02 +0000481}
482
Tobias Grosser6defb5b2014-04-10 08:37:44 +0000483MemoryAccess::MemoryAccess(const Value *BaseAddress, ScopStmt *Statement)
484 : Type(READ), BaseAddr(BaseAddress), Statement(Statement),
485 newAccessRelation(nullptr) {
Tobias Grosser75805372011-04-29 06:27:02 +0000486
487 isl_basic_map *BasicAccessMap = createBasicAccessMap(Statement);
488 AccessRelation = isl_map_from_basic_map(BasicAccessMap);
Tobias Grosser37487052011-10-06 00:03:42 +0000489 isl_space *ParamSpace = Statement->getParent()->getParamSpace();
490 AccessRelation = isl_map_align_params(AccessRelation, ParamSpace);
Tobias Grosser75805372011-04-29 06:27:02 +0000491}
492
Johannes Doerfertf6183392014-07-01 20:52:51 +0000493raw_ostream &polly::operator<<(raw_ostream &OS,
494 MemoryAccess::ReductionType RT) {
495 switch (RT) {
496 case MemoryAccess::RT_NONE:
497 OS << "NONE";
498 break;
499 case MemoryAccess::RT_ADD:
500 OS << "ADD";
501 break;
502 case MemoryAccess::RT_MUL:
503 OS << "MUL";
504 break;
505 case MemoryAccess::RT_BOR:
506 OS << "BOR";
507 break;
508 case MemoryAccess::RT_BXOR:
509 OS << "BXOR";
510 break;
511 case MemoryAccess::RT_BAND:
512 OS << "BAND";
513 break;
514 }
515 return OS;
516}
517
Tobias Grosser75805372011-04-29 06:27:02 +0000518void MemoryAccess::print(raw_ostream &OS) const {
Tobias Grosser4f967492013-06-23 05:21:18 +0000519 switch (Type) {
Tobias Grosserb58f6a42013-07-13 20:41:24 +0000520 case READ:
Johannes Doerfert6780bc32014-06-26 18:47:03 +0000521 OS.indent(12) << "ReadAccess :=\t";
Tobias Grosser4f967492013-06-23 05:21:18 +0000522 break;
Tobias Grosserb58f6a42013-07-13 20:41:24 +0000523 case MUST_WRITE:
Johannes Doerfert6780bc32014-06-26 18:47:03 +0000524 OS.indent(12) << "MustWriteAccess :=\t";
Tobias Grosser4f967492013-06-23 05:21:18 +0000525 break;
Tobias Grosserb58f6a42013-07-13 20:41:24 +0000526 case MAY_WRITE:
Johannes Doerfert6780bc32014-06-26 18:47:03 +0000527 OS.indent(12) << "MayWriteAccess :=\t";
Tobias Grosser4f967492013-06-23 05:21:18 +0000528 break;
529 }
Johannes Doerfertf6183392014-07-01 20:52:51 +0000530 OS << "[Reduction Type: " << getReductionType() << "]\n";
Tobias Grosser5d453812011-10-06 00:04:11 +0000531 OS.indent(16) << getAccessRelationStr() << ";\n";
Tobias Grosser75805372011-04-29 06:27:02 +0000532}
533
Tobias Grosser74394f02013-01-14 22:40:23 +0000534void MemoryAccess::dump() const { print(errs()); }
Tobias Grosser75805372011-04-29 06:27:02 +0000535
536// Create a map in the size of the provided set domain, that maps from the
537// one element of the provided set domain to another element of the provided
538// set domain.
539// The mapping is limited to all points that are equal in all but the last
540// dimension and for which the last dimension of the input is strict smaller
541// than the last dimension of the output.
542//
543// getEqualAndLarger(set[i0, i1, ..., iX]):
544//
545// set[i0, i1, ..., iX] -> set[o0, o1, ..., oX]
546// : i0 = o0, i1 = o1, ..., i(X-1) = o(X-1), iX < oX
547//
Tobias Grosserf5338802011-10-06 00:03:35 +0000548static isl_map *getEqualAndLarger(isl_space *setDomain) {
Tobias Grosserc327932c2012-02-01 14:23:36 +0000549 isl_space *Space = isl_space_map_from_set(setDomain);
550 isl_map *Map = isl_map_universe(isl_space_copy(Space));
551 isl_local_space *MapLocalSpace = isl_local_space_from_space(Space);
Sebastian Pop40408762013-10-04 17:14:53 +0000552 unsigned lastDimension = isl_map_dim(Map, isl_dim_in) - 1;
Tobias Grosser75805372011-04-29 06:27:02 +0000553
554 // Set all but the last dimension to be equal for the input and output
555 //
556 // input[i0, i1, ..., iX] -> output[o0, o1, ..., oX]
557 // : i0 = o0, i1 = o1, ..., i(X-1) = o(X-1)
Sebastian Pop40408762013-10-04 17:14:53 +0000558 for (unsigned i = 0; i < lastDimension; ++i)
Tobias Grosserc327932c2012-02-01 14:23:36 +0000559 Map = isl_map_equate(Map, isl_dim_in, i, isl_dim_out, i);
Tobias Grosser75805372011-04-29 06:27:02 +0000560
561 // Set the last dimension of the input to be strict smaller than the
562 // last dimension of the output.
563 //
564 // input[?,?,?,...,iX] -> output[?,?,?,...,oX] : iX < oX
565 //
Tobias Grosseredab1352013-06-21 06:41:31 +0000566 isl_val *v;
567 isl_ctx *Ctx = isl_map_get_ctx(Map);
Tobias Grosserf5338802011-10-06 00:03:35 +0000568 isl_constraint *c = isl_inequality_alloc(isl_local_space_copy(MapLocalSpace));
Tobias Grosseredab1352013-06-21 06:41:31 +0000569 v = isl_val_int_from_si(Ctx, -1);
570 c = isl_constraint_set_coefficient_val(c, isl_dim_in, lastDimension, v);
571 v = isl_val_int_from_si(Ctx, 1);
572 c = isl_constraint_set_coefficient_val(c, isl_dim_out, lastDimension, v);
573 v = isl_val_int_from_si(Ctx, -1);
574 c = isl_constraint_set_constant_val(c, v);
Tobias Grosser75805372011-04-29 06:27:02 +0000575
Tobias Grosserc327932c2012-02-01 14:23:36 +0000576 Map = isl_map_add_constraint(Map, c);
Tobias Grosser75805372011-04-29 06:27:02 +0000577
Tobias Grosser23b36662011-10-17 08:32:36 +0000578 isl_local_space_free(MapLocalSpace);
Tobias Grosserc327932c2012-02-01 14:23:36 +0000579 return Map;
Tobias Grosser75805372011-04-29 06:27:02 +0000580}
581
Sebastian Popa00a0292012-12-18 07:46:06 +0000582isl_set *MemoryAccess::getStride(__isl_take const isl_map *Schedule) const {
Tobias Grosserabfbe632013-02-05 12:09:06 +0000583 isl_map *S = const_cast<isl_map *>(Schedule);
Sebastian Popa00a0292012-12-18 07:46:06 +0000584 isl_map *AccessRelation = getAccessRelation();
585 isl_space *Space = isl_space_range(isl_map_get_space(S));
586 isl_map *NextScatt = getEqualAndLarger(Space);
Tobias Grosser75805372011-04-29 06:27:02 +0000587
Sebastian Popa00a0292012-12-18 07:46:06 +0000588 S = isl_map_reverse(S);
589 NextScatt = isl_map_lexmin(NextScatt);
Tobias Grosser75805372011-04-29 06:27:02 +0000590
Sebastian Popa00a0292012-12-18 07:46:06 +0000591 NextScatt = isl_map_apply_range(NextScatt, isl_map_copy(S));
592 NextScatt = isl_map_apply_range(NextScatt, isl_map_copy(AccessRelation));
593 NextScatt = isl_map_apply_domain(NextScatt, S);
594 NextScatt = isl_map_apply_domain(NextScatt, AccessRelation);
Tobias Grosser75805372011-04-29 06:27:02 +0000595
Sebastian Popa00a0292012-12-18 07:46:06 +0000596 isl_set *Deltas = isl_map_deltas(NextScatt);
597 return Deltas;
Tobias Grosser75805372011-04-29 06:27:02 +0000598}
599
Sebastian Popa00a0292012-12-18 07:46:06 +0000600bool MemoryAccess::isStrideX(__isl_take const isl_map *Schedule,
Tobias Grosser28dd4862012-01-24 16:42:16 +0000601 int StrideWidth) const {
602 isl_set *Stride, *StrideX;
603 bool IsStrideX;
Tobias Grosser75805372011-04-29 06:27:02 +0000604
Sebastian Popa00a0292012-12-18 07:46:06 +0000605 Stride = getStride(Schedule);
Tobias Grosser28dd4862012-01-24 16:42:16 +0000606 StrideX = isl_set_universe(isl_set_get_space(Stride));
607 StrideX = isl_set_fix_si(StrideX, isl_dim_set, 0, StrideWidth);
608 IsStrideX = isl_set_is_equal(Stride, StrideX);
Tobias Grosser75805372011-04-29 06:27:02 +0000609
Tobias Grosser28dd4862012-01-24 16:42:16 +0000610 isl_set_free(StrideX);
Tobias Grosserdea98232012-01-17 20:34:27 +0000611 isl_set_free(Stride);
Tobias Grosserb76f38532011-08-20 11:11:25 +0000612
Tobias Grosser28dd4862012-01-24 16:42:16 +0000613 return IsStrideX;
614}
615
Sebastian Popa00a0292012-12-18 07:46:06 +0000616bool MemoryAccess::isStrideZero(const isl_map *Schedule) const {
617 return isStrideX(Schedule, 0);
Tobias Grosser75805372011-04-29 06:27:02 +0000618}
619
Tobias Grosser79baa212014-04-10 08:38:02 +0000620bool MemoryAccess::isScalar() const {
621 return isl_map_n_out(AccessRelation) == 0;
622}
623
Sebastian Popa00a0292012-12-18 07:46:06 +0000624bool MemoryAccess::isStrideOne(const isl_map *Schedule) const {
625 return isStrideX(Schedule, 1);
Tobias Grosser75805372011-04-29 06:27:02 +0000626}
627
Tobias Grosser5d453812011-10-06 00:04:11 +0000628void MemoryAccess::setNewAccessRelation(isl_map *newAccess) {
Tobias Grosserb76f38532011-08-20 11:11:25 +0000629 isl_map_free(newAccessRelation);
Raghesh Aloor7a04f4f2011-08-03 13:47:59 +0000630 newAccessRelation = newAccess;
Raghesh Aloor3cb66282011-07-12 17:14:03 +0000631}
Tobias Grosser75805372011-04-29 06:27:02 +0000632
633//===----------------------------------------------------------------------===//
Tobias Grossercf3942d2011-10-06 00:04:05 +0000634
Tobias Grosser74394f02013-01-14 22:40:23 +0000635isl_map *ScopStmt::getScattering() const { return isl_map_copy(Scattering); }
Tobias Grossercf3942d2011-10-06 00:04:05 +0000636
Tobias Grosser37eb4222014-02-20 21:43:54 +0000637void ScopStmt::restrictDomain(__isl_take isl_set *NewDomain) {
638 assert(isl_set_is_subset(NewDomain, Domain) &&
639 "New domain is not a subset of old domain!");
640 isl_set_free(Domain);
641 Domain = NewDomain;
642 Scattering = isl_map_intersect_domain(Scattering, isl_set_copy(Domain));
643}
644
Tobias Grossercf3942d2011-10-06 00:04:05 +0000645void ScopStmt::setScattering(isl_map *NewScattering) {
Tobias Grosser5a56cbf2014-04-16 07:33:47 +0000646 assert(NewScattering && "New scattering is nullptr");
Tobias Grosserb76f38532011-08-20 11:11:25 +0000647 isl_map_free(Scattering);
Tobias Grossercf3942d2011-10-06 00:04:05 +0000648 Scattering = NewScattering;
Tobias Grosserb76f38532011-08-20 11:11:25 +0000649}
650
Tobias Grosser75805372011-04-29 06:27:02 +0000651void ScopStmt::buildScattering(SmallVectorImpl<unsigned> &Scatter) {
Tobias Grosser78d8a3d2012-01-17 20:34:23 +0000652 unsigned NbIterators = getNumIterators();
653 unsigned NbScatteringDims = Parent.getMaxLoopDepth() * 2 + 1;
654
Tobias Grosser084d8f72012-05-29 09:29:44 +0000655 isl_space *Space = isl_space_set_alloc(getIslCtx(), 0, NbScatteringDims);
Tobias Grosserf5338802011-10-06 00:03:35 +0000656 Space = isl_space_set_tuple_name(Space, isl_dim_out, "scattering");
Tobias Grosser78d8a3d2012-01-17 20:34:23 +0000657
Tobias Grosser084d8f72012-05-29 09:29:44 +0000658 Scattering = isl_map_from_domain_and_range(isl_set_universe(getDomainSpace()),
659 isl_set_universe(Space));
Tobias Grosser75805372011-04-29 06:27:02 +0000660
661 // Loop dimensions.
Tobias Grosser78d8a3d2012-01-17 20:34:23 +0000662 for (unsigned i = 0; i < NbIterators; ++i)
Tobias Grosserabfbe632013-02-05 12:09:06 +0000663 Scattering =
664 isl_map_equate(Scattering, isl_dim_out, 2 * i + 1, isl_dim_in, i);
Tobias Grosser75805372011-04-29 06:27:02 +0000665
666 // Constant dimensions
Tobias Grosser78d8a3d2012-01-17 20:34:23 +0000667 for (unsigned i = 0; i < NbIterators + 1; ++i)
668 Scattering = isl_map_fix_si(Scattering, isl_dim_out, 2 * i, Scatter[i]);
Tobias Grosser75805372011-04-29 06:27:02 +0000669
670 // Fill scattering dimensions.
Tobias Grosser78d8a3d2012-01-17 20:34:23 +0000671 for (unsigned i = 2 * NbIterators + 1; i < NbScatteringDims; ++i)
672 Scattering = isl_map_fix_si(Scattering, isl_dim_out, i, 0);
Tobias Grosser75805372011-04-29 06:27:02 +0000673
Tobias Grosser37487052011-10-06 00:03:42 +0000674 Scattering = isl_map_align_params(Scattering, Parent.getParamSpace());
Tobias Grosser75805372011-04-29 06:27:02 +0000675}
676
677void ScopStmt::buildAccesses(TempScop &tempScop, const Region &CurRegion) {
Tobias Grosser083d3d32014-06-28 08:59:45 +0000678 for (auto &&Access : *tempScop.getAccessFunctions(BB)) {
679 MemAccs.push_back(new MemoryAccess(Access.first, Access.second, this));
Tobias Grosserd6aafa72014-02-20 21:29:09 +0000680
681 // We do not track locations for scalar memory accesses at the moment.
682 //
683 // We do not have a use for this information at the moment. If we need this
684 // at some point, the "instruction -> access" mapping needs to be enhanced
685 // as a single instruction could then possibly perform multiple accesses.
Tobias Grosser083d3d32014-06-28 08:59:45 +0000686 if (!Access.first.isScalar()) {
687 assert(!InstructionToAccess.count(Access.second) &&
Tobias Grosser3fc91542014-02-20 21:43:45 +0000688 "Unexpected 1-to-N mapping on instruction to access map!");
Tobias Grosser083d3d32014-06-28 08:59:45 +0000689 InstructionToAccess[Access.second] = MemAccs.back();
Tobias Grosserd6aafa72014-02-20 21:29:09 +0000690 }
Tobias Grosser75805372011-04-29 06:27:02 +0000691 }
692}
693
Tobias Grosser8cae72f2011-11-08 15:41:08 +0000694void ScopStmt::realignParams() {
Johannes Doerfertf6752892014-06-13 18:01:45 +0000695 for (MemoryAccess *MA : *this)
696 MA->realignParams();
Tobias Grosser8cae72f2011-11-08 15:41:08 +0000697
698 Domain = isl_set_align_params(Domain, Parent.getParamSpace());
699 Scattering = isl_map_align_params(Scattering, Parent.getParamSpace());
700}
701
Tobias Grosser65b00582011-11-08 15:41:19 +0000702__isl_give isl_set *ScopStmt::buildConditionSet(const Comparison &Comp) {
Tobias Grossera601fbd2011-11-09 22:34:44 +0000703 isl_pw_aff *L = SCEVAffinator::getPwAff(this, Comp.getLHS());
704 isl_pw_aff *R = SCEVAffinator::getPwAff(this, Comp.getRHS());
Tobias Grosser75805372011-04-29 06:27:02 +0000705
Tobias Grosserd2795d02011-08-18 07:51:40 +0000706 switch (Comp.getPred()) {
Tobias Grosser75805372011-04-29 06:27:02 +0000707 case ICmpInst::ICMP_EQ:
Tobias Grosser048c8792011-10-23 20:59:20 +0000708 return isl_pw_aff_eq_set(L, R);
Tobias Grosser75805372011-04-29 06:27:02 +0000709 case ICmpInst::ICMP_NE:
Tobias Grosser048c8792011-10-23 20:59:20 +0000710 return isl_pw_aff_ne_set(L, R);
Tobias Grosser75805372011-04-29 06:27:02 +0000711 case ICmpInst::ICMP_SLT:
Tobias Grosser048c8792011-10-23 20:59:20 +0000712 return isl_pw_aff_lt_set(L, R);
Tobias Grosser75805372011-04-29 06:27:02 +0000713 case ICmpInst::ICMP_SLE:
Tobias Grosser048c8792011-10-23 20:59:20 +0000714 return isl_pw_aff_le_set(L, R);
Tobias Grosserd2795d02011-08-18 07:51:40 +0000715 case ICmpInst::ICMP_SGT:
Tobias Grosser048c8792011-10-23 20:59:20 +0000716 return isl_pw_aff_gt_set(L, R);
Tobias Grosser75805372011-04-29 06:27:02 +0000717 case ICmpInst::ICMP_SGE:
Tobias Grosser048c8792011-10-23 20:59:20 +0000718 return isl_pw_aff_ge_set(L, R);
Tobias Grosserd2795d02011-08-18 07:51:40 +0000719 case ICmpInst::ICMP_ULT:
720 case ICmpInst::ICMP_UGT:
721 case ICmpInst::ICMP_ULE:
Tobias Grosser75805372011-04-29 06:27:02 +0000722 case ICmpInst::ICMP_UGE:
Tobias Grosserd2795d02011-08-18 07:51:40 +0000723 llvm_unreachable("Unsigned comparisons not yet supported");
Tobias Grosser75805372011-04-29 06:27:02 +0000724 default:
725 llvm_unreachable("Non integer predicate not supported");
726 }
Tobias Grosser75805372011-04-29 06:27:02 +0000727}
728
Tobias Grossere19661e2011-10-07 08:46:57 +0000729__isl_give isl_set *ScopStmt::addLoopBoundsToDomain(__isl_take isl_set *Domain,
Tobias Grosser60b54f12011-11-08 15:41:28 +0000730 TempScop &tempScop) {
Tobias Grossere19661e2011-10-07 08:46:57 +0000731 isl_space *Space;
732 isl_local_space *LocalSpace;
Tobias Grosser75805372011-04-29 06:27:02 +0000733
Tobias Grossere19661e2011-10-07 08:46:57 +0000734 Space = isl_set_get_space(Domain);
735 LocalSpace = isl_local_space_from_space(Space);
Tobias Grosserf5338802011-10-06 00:03:35 +0000736
Tobias Grosser75805372011-04-29 06:27:02 +0000737 for (int i = 0, e = getNumIterators(); i != e; ++i) {
Tobias Grosser9b13d3d2011-10-06 22:32:58 +0000738 isl_aff *Zero = isl_aff_zero_on_domain(isl_local_space_copy(LocalSpace));
Tobias Grosserabfbe632013-02-05 12:09:06 +0000739 isl_pw_aff *IV =
740 isl_pw_aff_from_aff(isl_aff_set_coefficient_si(Zero, isl_dim_in, i, 1));
Tobias Grosser75805372011-04-29 06:27:02 +0000741
Tobias Grosser9b13d3d2011-10-06 22:32:58 +0000742 // 0 <= IV.
743 isl_set *LowerBound = isl_pw_aff_nonneg_set(isl_pw_aff_copy(IV));
744 Domain = isl_set_intersect(Domain, LowerBound);
745
746 // IV <= LatchExecutions.
Hongbin Zheng27f3afb2011-04-30 03:26:51 +0000747 const Loop *L = getLoopForDimension(i);
Tobias Grosser1179afa2011-11-02 21:37:51 +0000748 const SCEV *LatchExecutions = tempScop.getLoopBound(L);
Tobias Grosser9b13d3d2011-10-06 22:32:58 +0000749 isl_pw_aff *UpperBound = SCEVAffinator::getPwAff(this, LatchExecutions);
750 isl_set *UpperBoundSet = isl_pw_aff_le_set(IV, UpperBound);
Tobias Grosser75805372011-04-29 06:27:02 +0000751 Domain = isl_set_intersect(Domain, UpperBoundSet);
752 }
753
Tobias Grosserf5338802011-10-06 00:03:35 +0000754 isl_local_space_free(LocalSpace);
Tobias Grossere19661e2011-10-07 08:46:57 +0000755 return Domain;
Tobias Grosser75805372011-04-29 06:27:02 +0000756}
757
Tobias Grossere602a072013-05-07 07:30:56 +0000758__isl_give isl_set *ScopStmt::addConditionsToDomain(__isl_take isl_set *Domain,
759 TempScop &tempScop,
760 const Region &CurRegion) {
Tobias Grossere19661e2011-10-07 08:46:57 +0000761 const Region *TopRegion = tempScop.getMaxRegion().getParent(),
Tobias Grosserd7e58642013-04-10 06:55:45 +0000762 *CurrentRegion = &CurRegion;
Tobias Grossere19661e2011-10-07 08:46:57 +0000763 const BasicBlock *BranchingBB = BB;
Tobias Grosser75805372011-04-29 06:27:02 +0000764
Tobias Grosser75805372011-04-29 06:27:02 +0000765 do {
Tobias Grossere19661e2011-10-07 08:46:57 +0000766 if (BranchingBB != CurrentRegion->getEntry()) {
767 if (const BBCond *Condition = tempScop.getBBCond(BranchingBB))
Tobias Grosser083d3d32014-06-28 08:59:45 +0000768 for (const auto &C : *Condition) {
769 isl_set *ConditionSet = buildConditionSet(C);
Tobias Grossere19661e2011-10-07 08:46:57 +0000770 Domain = isl_set_intersect(Domain, ConditionSet);
Tobias Grosser75805372011-04-29 06:27:02 +0000771 }
772 }
Tobias Grossere19661e2011-10-07 08:46:57 +0000773 BranchingBB = CurrentRegion->getEntry();
774 CurrentRegion = CurrentRegion->getParent();
775 } while (TopRegion != CurrentRegion);
Tobias Grosser75805372011-04-29 06:27:02 +0000776
Tobias Grossere19661e2011-10-07 08:46:57 +0000777 return Domain;
Tobias Grosser75805372011-04-29 06:27:02 +0000778}
779
Tobias Grossere602a072013-05-07 07:30:56 +0000780__isl_give isl_set *ScopStmt::buildDomain(TempScop &tempScop,
781 const Region &CurRegion) {
Tobias Grossere19661e2011-10-07 08:46:57 +0000782 isl_space *Space;
783 isl_set *Domain;
Tobias Grosser084d8f72012-05-29 09:29:44 +0000784 isl_id *Id;
Tobias Grossere19661e2011-10-07 08:46:57 +0000785
786 Space = isl_space_set_alloc(getIslCtx(), 0, getNumIterators());
787
Tobias Grosser084d8f72012-05-29 09:29:44 +0000788 Id = isl_id_alloc(getIslCtx(), getBaseName(), this);
789
Tobias Grossere19661e2011-10-07 08:46:57 +0000790 Domain = isl_set_universe(Space);
Tobias Grossere19661e2011-10-07 08:46:57 +0000791 Domain = addLoopBoundsToDomain(Domain, tempScop);
792 Domain = addConditionsToDomain(Domain, tempScop, CurRegion);
Tobias Grosser084d8f72012-05-29 09:29:44 +0000793 Domain = isl_set_set_tuple_id(Domain, Id);
Tobias Grossere19661e2011-10-07 08:46:57 +0000794
795 return Domain;
Tobias Grosser75805372011-04-29 06:27:02 +0000796}
797
Tobias Grosser74394f02013-01-14 22:40:23 +0000798ScopStmt::ScopStmt(Scop &parent, TempScop &tempScop, const Region &CurRegion,
Sebastian Pop860e0212013-02-15 21:26:44 +0000799 BasicBlock &bb, SmallVectorImpl<Loop *> &Nest,
Tobias Grosser75805372011-04-29 06:27:02 +0000800 SmallVectorImpl<unsigned> &Scatter)
Tobias Grosser4d96c8d2013-03-23 01:05:07 +0000801 : Parent(parent), BB(&bb), IVS(Nest.size()), NestLoops(Nest.size()) {
Tobias Grosser75805372011-04-29 06:27:02 +0000802 // Setup the induction variables.
Sebastian Pop860e0212013-02-15 21:26:44 +0000803 for (unsigned i = 0, e = Nest.size(); i < e; ++i) {
Sebastian Pop27c10c62013-03-22 22:07:43 +0000804 if (!SCEVCodegen) {
805 PHINode *PN = Nest[i]->getCanonicalInductionVariable();
806 assert(PN && "Non canonical IV in Scop!");
Tobias Grosser826b2af2013-03-21 16:14:50 +0000807 IVS[i] = PN;
Sebastian Pop27c10c62013-03-22 22:07:43 +0000808 }
Sebastian Pop860e0212013-02-15 21:26:44 +0000809 NestLoops[i] = Nest[i];
Tobias Grosser75805372011-04-29 06:27:02 +0000810 }
811
812 raw_string_ostream OS(BaseName);
Tobias Grosserf240b482014-01-09 10:42:15 +0000813 bb.printAsOperand(OS, false);
Tobias Grosser75805372011-04-29 06:27:02 +0000814 BaseName = OS.str();
815
Tobias Grosser75805372011-04-29 06:27:02 +0000816 makeIslCompatible(BaseName);
817 BaseName = "Stmt_" + BaseName;
818
Tobias Grossere19661e2011-10-07 08:46:57 +0000819 Domain = buildDomain(tempScop, CurRegion);
Tobias Grosser75805372011-04-29 06:27:02 +0000820 buildScattering(Scatter);
821 buildAccesses(tempScop, CurRegion);
Johannes Doerferte58a0122014-06-27 20:31:28 +0000822 checkForReductions();
Johannes Doerfert0ee1f212014-06-17 17:31:36 +0000823}
824
Johannes Doerferte58a0122014-06-27 20:31:28 +0000825/// @brief Collect loads which might form a reduction chain with @p StoreMA
826///
827/// Check if the stored value for @p StoreMA is a binary operator with one or
828/// two loads as operands. If the binary operand is commutative & associative,
829/// used only once (by @p StoreMA) and its load operands are also used only
830/// once, we have found a possible reduction chain. It starts at an operand
831/// load and includes the binary operator and @p StoreMA.
832///
833/// Note: We allow only one use to ensure the load and binary operator cannot
834/// escape this block or into any other store except @p StoreMA.
835void ScopStmt::collectCandiateReductionLoads(
836 MemoryAccess *StoreMA, SmallVectorImpl<MemoryAccess *> &Loads) {
837 auto *Store = dyn_cast<StoreInst>(StoreMA->getAccessInstruction());
838 if (!Store)
Johannes Doerfert0ee1f212014-06-17 17:31:36 +0000839 return;
840
841 // Skip if there is not one binary operator between the load and the store
842 auto *BinOp = dyn_cast<BinaryOperator>(Store->getValueOperand());
Johannes Doerferte58a0122014-06-27 20:31:28 +0000843 if (!BinOp)
844 return;
845
846 // Skip if the binary operators has multiple uses
847 if (BinOp->getNumUses() != 1)
Johannes Doerfert0ee1f212014-06-17 17:31:36 +0000848 return;
849
850 // Skip if the opcode of the binary operator is not commutative/associative
851 if (!BinOp->isCommutative() || !BinOp->isAssociative())
852 return;
853
Johannes Doerfert9890a052014-07-01 00:32:29 +0000854 // Skip if the binary operator is outside the current SCoP
855 if (BinOp->getParent() != Store->getParent())
856 return;
857
Johannes Doerfert0ee1f212014-06-17 17:31:36 +0000858 // Skip if it is a multiplicative reduction and we disabled them
859 if (DisableMultiplicativeReductions &&
860 (BinOp->getOpcode() == Instruction::Mul ||
861 BinOp->getOpcode() == Instruction::FMul))
862 return;
863
Johannes Doerferte58a0122014-06-27 20:31:28 +0000864 // Check the binary operator operands for a candidate load
865 auto *PossibleLoad0 = dyn_cast<LoadInst>(BinOp->getOperand(0));
866 auto *PossibleLoad1 = dyn_cast<LoadInst>(BinOp->getOperand(1));
867 if (!PossibleLoad0 && !PossibleLoad1)
868 return;
869
870 // A load is only a candidate if it cannot escape (thus has only this use)
871 if (PossibleLoad0 && PossibleLoad0->getNumUses() == 1)
Johannes Doerfert9890a052014-07-01 00:32:29 +0000872 if (PossibleLoad0->getParent() == Store->getParent())
873 Loads.push_back(lookupAccessFor(PossibleLoad0));
Johannes Doerferte58a0122014-06-27 20:31:28 +0000874 if (PossibleLoad1 && PossibleLoad1->getNumUses() == 1)
Johannes Doerfert9890a052014-07-01 00:32:29 +0000875 if (PossibleLoad1->getParent() == Store->getParent())
876 Loads.push_back(lookupAccessFor(PossibleLoad1));
Johannes Doerferte58a0122014-06-27 20:31:28 +0000877}
878
879/// @brief Check for reductions in this ScopStmt
880///
881/// Iterate over all store memory accesses and check for valid binary reduction
882/// like chains. For all candidates we check if they have the same base address
883/// and there are no other accesses which overlap with them. The base address
884/// check rules out impossible reductions candidates early. The overlap check,
885/// together with the "only one user" check in collectCandiateReductionLoads,
886/// guarantees that none of the intermediate results will escape during
887/// execution of the loop nest. We basically check here that no other memory
888/// access can access the same memory as the potential reduction.
889void ScopStmt::checkForReductions() {
890 SmallVector<MemoryAccess *, 2> Loads;
891 SmallVector<std::pair<MemoryAccess *, MemoryAccess *>, 4> Candidates;
892
893 // First collect candidate load-store reduction chains by iterating over all
894 // stores and collecting possible reduction loads.
895 for (MemoryAccess *StoreMA : MemAccs) {
896 if (StoreMA->isRead())
897 continue;
898
899 Loads.clear();
900 collectCandiateReductionLoads(StoreMA, Loads);
901 for (MemoryAccess *LoadMA : Loads)
902 Candidates.push_back(std::make_pair(LoadMA, StoreMA));
903 }
904
905 // Then check each possible candidate pair.
906 for (const auto &CandidatePair : Candidates) {
907 bool Valid = true;
908 isl_map *LoadAccs = CandidatePair.first->getAccessRelation();
909 isl_map *StoreAccs = CandidatePair.second->getAccessRelation();
910
911 // Skip those with obviously unequal base addresses.
912 if (!isl_map_has_equal_space(LoadAccs, StoreAccs)) {
913 isl_map_free(LoadAccs);
914 isl_map_free(StoreAccs);
915 continue;
916 }
917
918 // And check if the remaining for overlap with other memory accesses.
919 isl_map *AllAccsRel = isl_map_union(LoadAccs, StoreAccs);
920 AllAccsRel = isl_map_intersect_domain(AllAccsRel, getDomain());
921 isl_set *AllAccs = isl_map_range(AllAccsRel);
922
923 for (MemoryAccess *MA : MemAccs) {
924 if (MA == CandidatePair.first || MA == CandidatePair.second)
925 continue;
926
927 isl_map *AccRel =
928 isl_map_intersect_domain(MA->getAccessRelation(), getDomain());
929 isl_set *Accs = isl_map_range(AccRel);
930
931 if (isl_set_has_equal_space(AllAccs, Accs) || isl_set_free(Accs)) {
932 isl_set *OverlapAccs = isl_set_intersect(Accs, isl_set_copy(AllAccs));
933 Valid = Valid && isl_set_is_empty(OverlapAccs);
934 isl_set_free(OverlapAccs);
935 }
936 }
937
938 isl_set_free(AllAccs);
939 if (!Valid)
940 continue;
941
Johannes Doerfertf6183392014-07-01 20:52:51 +0000942 const LoadInst *Load =
943 dyn_cast<const LoadInst>(CandidatePair.first->getAccessInstruction());
944 MemoryAccess::ReductionType RT =
945 getReductionType(dyn_cast<BinaryOperator>(Load->user_back()), Load);
946
Johannes Doerferte58a0122014-06-27 20:31:28 +0000947 // If no overlapping access was found we mark the load and store as
948 // reduction like.
Johannes Doerfertf6183392014-07-01 20:52:51 +0000949 CandidatePair.first->markAsReductionLike(RT);
950 CandidatePair.second->markAsReductionLike(RT);
Johannes Doerferte58a0122014-06-27 20:31:28 +0000951 }
Tobias Grosser75805372011-04-29 06:27:02 +0000952}
953
Tobias Grosser74394f02013-01-14 22:40:23 +0000954std::string ScopStmt::getDomainStr() const { return stringFromIslObj(Domain); }
Tobias Grosser75805372011-04-29 06:27:02 +0000955
956std::string ScopStmt::getScatteringStr() const {
Tobias Grossercf3942d2011-10-06 00:04:05 +0000957 return stringFromIslObj(Scattering);
Tobias Grosser75805372011-04-29 06:27:02 +0000958}
959
Tobias Grosser74394f02013-01-14 22:40:23 +0000960unsigned ScopStmt::getNumParams() const { return Parent.getNumParams(); }
Tobias Grosser75805372011-04-29 06:27:02 +0000961
962unsigned ScopStmt::getNumIterators() const {
963 // The final read has one dimension with one element.
964 if (!BB)
965 return 1;
966
Sebastian Pop860e0212013-02-15 21:26:44 +0000967 return NestLoops.size();
Tobias Grosser75805372011-04-29 06:27:02 +0000968}
969
970unsigned ScopStmt::getNumScattering() const {
971 return isl_map_dim(Scattering, isl_dim_out);
972}
973
974const char *ScopStmt::getBaseName() const { return BaseName.c_str(); }
975
Tobias Grosserabfbe632013-02-05 12:09:06 +0000976const PHINode *
977ScopStmt::getInductionVariableForDimension(unsigned Dimension) const {
Sebastian Popf30d3b22013-02-15 21:26:48 +0000978 return IVS[Dimension];
Hongbin Zheng27f3afb2011-04-30 03:26:51 +0000979}
980
981const Loop *ScopStmt::getLoopForDimension(unsigned Dimension) const {
Sebastian Pop860e0212013-02-15 21:26:44 +0000982 return NestLoops[Dimension];
Tobias Grosser75805372011-04-29 06:27:02 +0000983}
984
Tobias Grosser74394f02013-01-14 22:40:23 +0000985isl_ctx *ScopStmt::getIslCtx() const { return Parent.getIslCtx(); }
Tobias Grosser75805372011-04-29 06:27:02 +0000986
Tobias Grosser74394f02013-01-14 22:40:23 +0000987isl_set *ScopStmt::getDomain() const { return isl_set_copy(Domain); }
Tobias Grosserd5a7bfc2011-05-06 19:52:19 +0000988
Tobias Grosser78d8a3d2012-01-17 20:34:23 +0000989isl_space *ScopStmt::getDomainSpace() const {
990 return isl_set_get_space(Domain);
991}
992
Tobias Grosser74394f02013-01-14 22:40:23 +0000993isl_id *ScopStmt::getDomainId() const { return isl_set_get_tuple_id(Domain); }
Tobias Grossercd95b772012-08-30 11:49:38 +0000994
Tobias Grosser75805372011-04-29 06:27:02 +0000995ScopStmt::~ScopStmt() {
996 while (!MemAccs.empty()) {
997 delete MemAccs.back();
998 MemAccs.pop_back();
999 }
1000
1001 isl_set_free(Domain);
1002 isl_map_free(Scattering);
1003}
1004
1005void ScopStmt::print(raw_ostream &OS) const {
1006 OS << "\t" << getBaseName() << "\n";
Tobias Grosser75805372011-04-29 06:27:02 +00001007 OS.indent(12) << "Domain :=\n";
1008
1009 if (Domain) {
1010 OS.indent(16) << getDomainStr() << ";\n";
1011 } else
1012 OS.indent(16) << "n/a\n";
1013
1014 OS.indent(12) << "Scattering :=\n";
1015
1016 if (Domain) {
1017 OS.indent(16) << getScatteringStr() << ";\n";
1018 } else
1019 OS.indent(16) << "n/a\n";
1020
Tobias Grosser083d3d32014-06-28 08:59:45 +00001021 for (MemoryAccess *Access : MemAccs)
1022 Access->print(OS);
Tobias Grosser75805372011-04-29 06:27:02 +00001023}
1024
1025void ScopStmt::dump() const { print(dbgs()); }
1026
1027//===----------------------------------------------------------------------===//
1028/// Scop class implement
Tobias Grosser60b54f12011-11-08 15:41:28 +00001029
Tobias Grosser7ffe4e82011-11-17 12:56:10 +00001030void Scop::setContext(__isl_take isl_set *NewContext) {
Tobias Grosserff9b54d2011-11-15 11:38:44 +00001031 NewContext = isl_set_align_params(NewContext, isl_set_get_space(Context));
1032 isl_set_free(Context);
1033 Context = NewContext;
1034}
1035
Tobias Grosserabfbe632013-02-05 12:09:06 +00001036void Scop::addParams(std::vector<const SCEV *> NewParameters) {
Tobias Grosser083d3d32014-06-28 08:59:45 +00001037 for (const SCEV *Parameter : NewParameters) {
Tobias Grosser60b54f12011-11-08 15:41:28 +00001038 if (ParameterIds.find(Parameter) != ParameterIds.end())
1039 continue;
1040
1041 int dimension = Parameters.size();
1042
1043 Parameters.push_back(Parameter);
1044 ParameterIds[Parameter] = dimension;
1045 }
1046}
1047
Tobias Grosser9a38ab82011-11-08 15:41:03 +00001048__isl_give isl_id *Scop::getIdForParam(const SCEV *Parameter) const {
1049 ParamIdType::const_iterator IdIter = ParameterIds.find(Parameter);
Tobias Grosser76c2e322011-11-07 12:58:59 +00001050
Tobias Grosser9a38ab82011-11-08 15:41:03 +00001051 if (IdIter == ParameterIds.end())
Tobias Grosser5a56cbf2014-04-16 07:33:47 +00001052 return nullptr;
Tobias Grosser76c2e322011-11-07 12:58:59 +00001053
Tobias Grosser8f99c162011-11-15 11:38:55 +00001054 std::string ParameterName;
1055
1056 if (const SCEVUnknown *ValueParameter = dyn_cast<SCEVUnknown>(Parameter)) {
1057 Value *Val = ValueParameter->getValue();
Tobias Grosser29ee0b12011-11-17 14:52:36 +00001058 ParameterName = Val->getName();
Tobias Grosser8f99c162011-11-15 11:38:55 +00001059 }
1060
1061 if (ParameterName == "" || ParameterName.substr(0, 2) == "p_")
Hongbin Zheng86a37742012-04-25 08:01:38 +00001062 ParameterName = "p_" + utostr_32(IdIter->second);
Tobias Grosser8f99c162011-11-15 11:38:55 +00001063
Tobias Grosser20532b82014-04-11 17:56:49 +00001064 return isl_id_alloc(getIslCtx(), ParameterName.c_str(),
1065 const_cast<void *>((const void *)Parameter));
Tobias Grosser76c2e322011-11-07 12:58:59 +00001066}
Tobias Grosser75805372011-04-29 06:27:02 +00001067
Tobias Grosser6be480c2011-11-08 15:41:13 +00001068void Scop::buildContext() {
1069 isl_space *Space = isl_space_params_alloc(IslCtx, 0);
Tobias Grossere86109f2013-10-29 21:05:49 +00001070 Context = isl_set_universe(isl_space_copy(Space));
1071 AssumedContext = isl_set_universe(Space);
Tobias Grosser0e27e242011-10-06 00:03:48 +00001072}
1073
Tobias Grosser18daaca2012-05-22 10:47:27 +00001074void Scop::addParameterBounds() {
1075 for (unsigned i = 0; i < isl_set_dim(Context, isl_dim_param); ++i) {
Tobias Grosseredab1352013-06-21 06:41:31 +00001076 isl_val *V;
Tobias Grosser18daaca2012-05-22 10:47:27 +00001077 isl_id *Id;
1078 const SCEV *Scev;
1079 const IntegerType *T;
1080
1081 Id = isl_set_get_dim_id(Context, isl_dim_param, i);
Tobias Grosserabfbe632013-02-05 12:09:06 +00001082 Scev = (const SCEV *)isl_id_get_user(Id);
Tobias Grosser18daaca2012-05-22 10:47:27 +00001083 T = dyn_cast<IntegerType>(Scev->getType());
1084 isl_id_free(Id);
1085
1086 assert(T && "Not an integer type");
1087 int Width = T->getBitWidth();
1088
Tobias Grosseredab1352013-06-21 06:41:31 +00001089 V = isl_val_int_from_si(IslCtx, Width - 1);
1090 V = isl_val_2exp(V);
1091 V = isl_val_neg(V);
1092 Context = isl_set_lower_bound_val(Context, isl_dim_param, i, V);
Tobias Grosser18daaca2012-05-22 10:47:27 +00001093
Tobias Grosseredab1352013-06-21 06:41:31 +00001094 V = isl_val_int_from_si(IslCtx, Width - 1);
1095 V = isl_val_2exp(V);
1096 V = isl_val_sub_ui(V, 1);
1097 Context = isl_set_upper_bound_val(Context, isl_dim_param, i, V);
Tobias Grosser18daaca2012-05-22 10:47:27 +00001098 }
1099}
1100
Tobias Grosser8cae72f2011-11-08 15:41:08 +00001101void Scop::realignParams() {
Tobias Grosser6be480c2011-11-08 15:41:13 +00001102 // Add all parameters into a common model.
Tobias Grosser60b54f12011-11-08 15:41:28 +00001103 isl_space *Space = isl_space_params_alloc(IslCtx, ParameterIds.size());
Tobias Grosser6be480c2011-11-08 15:41:13 +00001104
Tobias Grosser083d3d32014-06-28 08:59:45 +00001105 for (const auto &ParamID : ParameterIds) {
1106 const SCEV *Parameter = ParamID.first;
Tobias Grosser6be480c2011-11-08 15:41:13 +00001107 isl_id *id = getIdForParam(Parameter);
Tobias Grosser083d3d32014-06-28 08:59:45 +00001108 Space = isl_space_set_dim_id(Space, isl_dim_param, ParamID.second, id);
Tobias Grosser6be480c2011-11-08 15:41:13 +00001109 }
1110
1111 // Align the parameters of all data structures to the model.
1112 Context = isl_set_align_params(Context, Space);
1113
Tobias Grosser083d3d32014-06-28 08:59:45 +00001114 for (ScopStmt *Stmt : *this)
1115 Stmt->realignParams();
Tobias Grosser8cae72f2011-11-08 15:41:08 +00001116}
1117
Tobias Grosser5e6813d2014-07-02 17:47:48 +00001118void Scop::simplifyAssumedContext() {
1119 // The parameter constraints of the iteration domains give us a set of
1120 // constraints that need to hold for all cases where at least a single
1121 // statement iteration is executed in the whole scop. We now simplify the
1122 // assumed context under the assumption that such constraints hold and at
1123 // least a single statement iteration is executed. For cases where no
1124 // statement instances are executed, the assumptions we have taken about
1125 // the executed code do not matter and can be changed.
1126 //
1127 // WARNING: This only holds if the assumptions we have taken do not reduce
1128 // the set of statement instances that are executed. Otherwise we
1129 // may run into a case where the iteration domains suggest that
1130 // for a certain set of parameter constraints no code is executed,
1131 // but in the original program some computation would have been
1132 // performed. In such a case, modifying the run-time conditions and
1133 // possibly influencing the run-time check may cause certain scops
1134 // to not be executed.
1135 //
1136 // Example:
1137 //
1138 // When delinearizing the following code:
1139 //
1140 // for (long i = 0; i < 100; i++)
1141 // for (long j = 0; j < m; j++)
1142 // A[i+p][j] = 1.0;
1143 //
1144 // we assume that the condition m <= 0 or (m >= 1 and p >= 0) holds as
1145 // otherwise we would access out of bound data. Now, knowing that code is
1146 // only executed for the case m >= 0, it is sufficient to assume p >= 0.
1147 AssumedContext =
1148 isl_set_gist_params(AssumedContext, isl_union_set_params(getDomains()));
1149}
1150
Tobias Grosser0e27e242011-10-06 00:03:48 +00001151Scop::Scop(TempScop &tempScop, LoopInfo &LI, ScalarEvolution &ScalarEvolution,
1152 isl_ctx *Context)
Tobias Grosserabfbe632013-02-05 12:09:06 +00001153 : SE(&ScalarEvolution), R(tempScop.getMaxRegion()),
1154 MaxLoopDepth(tempScop.getMaxLoopDepth()) {
Tobias Grosser9a38ab82011-11-08 15:41:03 +00001155 IslCtx = Context;
Tobias Grosser6be480c2011-11-08 15:41:13 +00001156 buildContext();
Tobias Grosser75805372011-04-29 06:27:02 +00001157
Tobias Grosserabfbe632013-02-05 12:09:06 +00001158 SmallVector<Loop *, 8> NestLoops;
Tobias Grosser75805372011-04-29 06:27:02 +00001159 SmallVector<unsigned, 8> Scatter;
1160
1161 Scatter.assign(MaxLoopDepth + 1, 0);
1162
1163 // Build the iteration domain, access functions and scattering functions
1164 // traversing the region tree.
1165 buildScop(tempScop, getRegion(), NestLoops, Scatter, LI);
Tobias Grosser75805372011-04-29 06:27:02 +00001166
Tobias Grosser8cae72f2011-11-08 15:41:08 +00001167 realignParams();
Tobias Grosser18daaca2012-05-22 10:47:27 +00001168 addParameterBounds();
Tobias Grosser5e6813d2014-07-02 17:47:48 +00001169 simplifyAssumedContext();
Tobias Grosser8cae72f2011-11-08 15:41:08 +00001170
Tobias Grosser75805372011-04-29 06:27:02 +00001171 assert(NestLoops.empty() && "NestLoops not empty at top level!");
1172}
1173
1174Scop::~Scop() {
1175 isl_set_free(Context);
Tobias Grossere86109f2013-10-29 21:05:49 +00001176 isl_set_free(AssumedContext);
Tobias Grosser75805372011-04-29 06:27:02 +00001177
1178 // Free the statements;
Tobias Grosser083d3d32014-06-28 08:59:45 +00001179 for (ScopStmt *Stmt : *this)
1180 delete Stmt;
Tobias Grosser75805372011-04-29 06:27:02 +00001181}
1182
Tobias Grosser74394f02013-01-14 22:40:23 +00001183std::string Scop::getContextStr() const { return stringFromIslObj(Context); }
Tobias Grosser5e6813d2014-07-02 17:47:48 +00001184std::string Scop::getAssumedContextStr() const {
1185 return stringFromIslObj(AssumedContext);
1186}
Tobias Grosser75805372011-04-29 06:27:02 +00001187
1188std::string Scop::getNameStr() const {
1189 std::string ExitName, EntryName;
1190 raw_string_ostream ExitStr(ExitName);
1191 raw_string_ostream EntryStr(EntryName);
1192
Tobias Grosserf240b482014-01-09 10:42:15 +00001193 R.getEntry()->printAsOperand(EntryStr, false);
Tobias Grosser75805372011-04-29 06:27:02 +00001194 EntryStr.str();
1195
1196 if (R.getExit()) {
Tobias Grosserf240b482014-01-09 10:42:15 +00001197 R.getExit()->printAsOperand(ExitStr, false);
Tobias Grosser75805372011-04-29 06:27:02 +00001198 ExitStr.str();
1199 } else
1200 ExitName = "FunctionExit";
1201
1202 return EntryName + "---" + ExitName;
1203}
1204
Tobias Grosser74394f02013-01-14 22:40:23 +00001205__isl_give isl_set *Scop::getContext() const { return isl_set_copy(Context); }
Tobias Grosser37487052011-10-06 00:03:42 +00001206__isl_give isl_space *Scop::getParamSpace() const {
1207 return isl_set_get_space(this->Context);
1208}
1209
Tobias Grossere86109f2013-10-29 21:05:49 +00001210__isl_give isl_set *Scop::getAssumedContext() const {
1211 return isl_set_copy(AssumedContext);
1212}
1213
Tobias Grosser5e6813d2014-07-02 17:47:48 +00001214void Scop::addAssumption(__isl_take isl_set *Set) {
1215 AssumedContext = isl_set_intersect(AssumedContext, Set);
1216}
1217
Tobias Grosser75805372011-04-29 06:27:02 +00001218void Scop::printContext(raw_ostream &OS) const {
1219 OS << "Context:\n";
1220
1221 if (!Context) {
1222 OS.indent(4) << "n/a\n\n";
1223 return;
1224 }
1225
1226 OS.indent(4) << getContextStr() << "\n";
Tobias Grosser60b54f12011-11-08 15:41:28 +00001227
Tobias Grosser5e6813d2014-07-02 17:47:48 +00001228 OS.indent(4) << "Assumed Context:\n";
1229 if (!AssumedContext) {
1230 OS.indent(4) << "n/a\n\n";
1231 return;
1232 }
1233
1234 OS.indent(4) << getAssumedContextStr() << "\n";
1235
Tobias Grosser083d3d32014-06-28 08:59:45 +00001236 for (const SCEV *Parameter : Parameters) {
Tobias Grosser60b54f12011-11-08 15:41:28 +00001237 int Dim = ParameterIds.find(Parameter)->second;
Tobias Grosser60b54f12011-11-08 15:41:28 +00001238 OS.indent(4) << "p" << Dim << ": " << *Parameter << "\n";
1239 }
Tobias Grosser75805372011-04-29 06:27:02 +00001240}
1241
1242void Scop::printStatements(raw_ostream &OS) const {
1243 OS << "Statements {\n";
1244
Tobias Grosser083d3d32014-06-28 08:59:45 +00001245 for (ScopStmt *Stmt : *this)
1246 OS.indent(4) << *Stmt;
Tobias Grosser75805372011-04-29 06:27:02 +00001247
1248 OS.indent(4) << "}\n";
1249}
1250
Tobias Grosser75805372011-04-29 06:27:02 +00001251void Scop::print(raw_ostream &OS) const {
Tobias Grosser4eb7ddb2014-03-18 18:51:11 +00001252 OS.indent(4) << "Function: " << getRegion().getEntry()->getParent()->getName()
1253 << "\n";
Tobias Grosser483fdd42014-03-18 18:05:38 +00001254 OS.indent(4) << "Region: " << getNameStr() << "\n";
Tobias Grosser75805372011-04-29 06:27:02 +00001255 printContext(OS.indent(4));
1256 printStatements(OS.indent(4));
1257}
1258
1259void Scop::dump() const { print(dbgs()); }
1260
Tobias Grosser9a38ab82011-11-08 15:41:03 +00001261isl_ctx *Scop::getIslCtx() const { return IslCtx; }
Tobias Grosser75805372011-04-29 06:27:02 +00001262
Tobias Grosser5f9a7622012-02-14 14:02:40 +00001263__isl_give isl_union_set *Scop::getDomains() {
Tobias Grosserbc4ef902014-06-28 08:59:38 +00001264 isl_union_set *Domain = isl_union_set_empty(getParamSpace());
Tobias Grosser5f9a7622012-02-14 14:02:40 +00001265
Tobias Grosserbc4ef902014-06-28 08:59:38 +00001266 for (ScopStmt *Stmt : *this)
1267 Domain = isl_union_set_add_set(Domain, Stmt->getDomain());
Tobias Grosser5f9a7622012-02-14 14:02:40 +00001268
1269 return Domain;
1270}
1271
Tobias Grosser780ce0f2014-07-11 07:12:10 +00001272__isl_give isl_union_map *Scop::getMustWrites() {
1273 isl_union_map *Write = isl_union_map_empty(this->getParamSpace());
1274
1275 for (ScopStmt *Stmt : *this) {
1276 for (MemoryAccess *MA : *Stmt) {
1277 if (!MA->isMustWrite())
1278 continue;
1279
1280 isl_set *Domain = Stmt->getDomain();
1281 isl_map *AccessDomain = MA->getAccessRelation();
1282 AccessDomain = isl_map_intersect_domain(AccessDomain, Domain);
1283 Write = isl_union_map_add_map(Write, AccessDomain);
1284 }
1285 }
1286 return isl_union_map_coalesce(Write);
1287}
1288
1289__isl_give isl_union_map *Scop::getMayWrites() {
1290 isl_union_map *Write = isl_union_map_empty(this->getParamSpace());
1291
1292 for (ScopStmt *Stmt : *this) {
1293 for (MemoryAccess *MA : *Stmt) {
1294 if (!MA->isMayWrite())
1295 continue;
1296
1297 isl_set *Domain = Stmt->getDomain();
1298 isl_map *AccessDomain = MA->getAccessRelation();
1299 AccessDomain = isl_map_intersect_domain(AccessDomain, Domain);
1300 Write = isl_union_map_add_map(Write, AccessDomain);
1301 }
1302 }
1303 return isl_union_map_coalesce(Write);
1304}
1305
Tobias Grosser37eb4222014-02-20 21:43:54 +00001306__isl_give isl_union_map *Scop::getWrites() {
1307 isl_union_map *Write = isl_union_map_empty(this->getParamSpace());
1308
Tobias Grosserbc4ef902014-06-28 08:59:38 +00001309 for (ScopStmt *Stmt : *this) {
Johannes Doerfertf6752892014-06-13 18:01:45 +00001310 for (MemoryAccess *MA : *Stmt) {
1311 if (!MA->isWrite())
Tobias Grosser37eb4222014-02-20 21:43:54 +00001312 continue;
1313
1314 isl_set *Domain = Stmt->getDomain();
Johannes Doerfertf6752892014-06-13 18:01:45 +00001315 isl_map *AccessDomain = MA->getAccessRelation();
Tobias Grosser37eb4222014-02-20 21:43:54 +00001316 AccessDomain = isl_map_intersect_domain(AccessDomain, Domain);
1317 Write = isl_union_map_add_map(Write, AccessDomain);
1318 }
1319 }
1320 return isl_union_map_coalesce(Write);
1321}
1322
1323__isl_give isl_union_map *Scop::getReads() {
Tobias Grosserbc4ef902014-06-28 08:59:38 +00001324 isl_union_map *Read = isl_union_map_empty(getParamSpace());
Tobias Grosser37eb4222014-02-20 21:43:54 +00001325
Tobias Grosserbc4ef902014-06-28 08:59:38 +00001326 for (ScopStmt *Stmt : *this) {
Johannes Doerfertf6752892014-06-13 18:01:45 +00001327 for (MemoryAccess *MA : *Stmt) {
1328 if (!MA->isRead())
Tobias Grosser37eb4222014-02-20 21:43:54 +00001329 continue;
1330
1331 isl_set *Domain = Stmt->getDomain();
Johannes Doerfertf6752892014-06-13 18:01:45 +00001332 isl_map *AccessDomain = MA->getAccessRelation();
Tobias Grosser37eb4222014-02-20 21:43:54 +00001333
1334 AccessDomain = isl_map_intersect_domain(AccessDomain, Domain);
1335 Read = isl_union_map_add_map(Read, AccessDomain);
1336 }
1337 }
1338 return isl_union_map_coalesce(Read);
1339}
1340
1341__isl_give isl_union_map *Scop::getSchedule() {
Tobias Grosserbc4ef902014-06-28 08:59:38 +00001342 isl_union_map *Schedule = isl_union_map_empty(getParamSpace());
Tobias Grosser37eb4222014-02-20 21:43:54 +00001343
Tobias Grosserbc4ef902014-06-28 08:59:38 +00001344 for (ScopStmt *Stmt : *this)
Tobias Grosser37eb4222014-02-20 21:43:54 +00001345 Schedule = isl_union_map_add_map(Schedule, Stmt->getScattering());
Tobias Grosserbc4ef902014-06-28 08:59:38 +00001346
Tobias Grosser37eb4222014-02-20 21:43:54 +00001347 return isl_union_map_coalesce(Schedule);
1348}
1349
1350bool Scop::restrictDomains(__isl_take isl_union_set *Domain) {
1351 bool Changed = false;
Tobias Grosserbc4ef902014-06-28 08:59:38 +00001352 for (ScopStmt *Stmt : *this) {
Tobias Grosser37eb4222014-02-20 21:43:54 +00001353 isl_union_set *StmtDomain = isl_union_set_from_set(Stmt->getDomain());
Tobias Grosser37eb4222014-02-20 21:43:54 +00001354 isl_union_set *NewStmtDomain = isl_union_set_intersect(
1355 isl_union_set_copy(StmtDomain), isl_union_set_copy(Domain));
1356
1357 if (isl_union_set_is_subset(StmtDomain, NewStmtDomain)) {
1358 isl_union_set_free(StmtDomain);
1359 isl_union_set_free(NewStmtDomain);
1360 continue;
1361 }
1362
1363 Changed = true;
1364
1365 isl_union_set_free(StmtDomain);
1366 NewStmtDomain = isl_union_set_coalesce(NewStmtDomain);
1367
1368 if (isl_union_set_is_empty(NewStmtDomain)) {
1369 Stmt->restrictDomain(isl_set_empty(Stmt->getDomainSpace()));
1370 isl_union_set_free(NewStmtDomain);
1371 } else
1372 Stmt->restrictDomain(isl_set_from_union_set(NewStmtDomain));
1373 }
1374 isl_union_set_free(Domain);
1375 return Changed;
1376}
1377
Tobias Grosser75805372011-04-29 06:27:02 +00001378ScalarEvolution *Scop::getSE() const { return SE; }
1379
1380bool Scop::isTrivialBB(BasicBlock *BB, TempScop &tempScop) {
1381 if (tempScop.getAccessFunctions(BB))
1382 return false;
1383
1384 return true;
1385}
1386
Tobias Grosser74394f02013-01-14 22:40:23 +00001387void Scop::buildScop(TempScop &tempScop, const Region &CurRegion,
1388 SmallVectorImpl<Loop *> &NestLoops,
1389 SmallVectorImpl<unsigned> &Scatter, LoopInfo &LI) {
Tobias Grosser75805372011-04-29 06:27:02 +00001390 Loop *L = castToLoop(CurRegion, LI);
1391
1392 if (L)
1393 NestLoops.push_back(L);
1394
1395 unsigned loopDepth = NestLoops.size();
1396 assert(Scatter.size() > loopDepth && "Scatter not big enough!");
1397
1398 for (Region::const_element_iterator I = CurRegion.element_begin(),
Tobias Grosserabfbe632013-02-05 12:09:06 +00001399 E = CurRegion.element_end();
1400 I != E; ++I)
Tobias Grosser75805372011-04-29 06:27:02 +00001401 if (I->isSubRegion())
1402 buildScop(tempScop, *(I->getNodeAs<Region>()), NestLoops, Scatter, LI);
1403 else {
1404 BasicBlock *BB = I->getNodeAs<BasicBlock>();
1405
1406 if (isTrivialBB(BB, tempScop))
1407 continue;
1408
Tobias Grosserabfbe632013-02-05 12:09:06 +00001409 Stmts.push_back(
1410 new ScopStmt(*this, tempScop, CurRegion, *BB, NestLoops, Scatter));
Tobias Grosser75805372011-04-29 06:27:02 +00001411
1412 // Increasing the Scattering function is OK for the moment, because
1413 // we are using a depth first iterator and the program is well structured.
1414 ++Scatter[loopDepth];
1415 }
1416
1417 if (!L)
1418 return;
1419
1420 // Exiting a loop region.
1421 Scatter[loopDepth] = 0;
1422 NestLoops.pop_back();
Tobias Grosser74394f02013-01-14 22:40:23 +00001423 ++Scatter[loopDepth - 1];
Tobias Grosser75805372011-04-29 06:27:02 +00001424}
1425
1426//===----------------------------------------------------------------------===//
Tobias Grosserb76f38532011-08-20 11:11:25 +00001427ScopInfo::ScopInfo() : RegionPass(ID), scop(0) {
1428 ctx = isl_ctx_alloc();
Tobias Grosser4a8e3562011-12-07 07:42:51 +00001429 isl_options_set_on_error(ctx, ISL_ON_ERROR_ABORT);
Tobias Grosserb76f38532011-08-20 11:11:25 +00001430}
1431
1432ScopInfo::~ScopInfo() {
1433 clear();
1434 isl_ctx_free(ctx);
1435}
1436
Tobias Grosser75805372011-04-29 06:27:02 +00001437void ScopInfo::getAnalysisUsage(AnalysisUsage &AU) const {
1438 AU.addRequired<LoopInfo>();
Matt Arsenault8ca36812014-07-19 18:40:17 +00001439 AU.addRequired<RegionInfoPass>();
Tobias Grosser75805372011-04-29 06:27:02 +00001440 AU.addRequired<ScalarEvolution>();
1441 AU.addRequired<TempScopInfo>();
1442 AU.setPreservesAll();
1443}
1444
1445bool ScopInfo::runOnRegion(Region *R, RGPassManager &RGM) {
1446 LoopInfo &LI = getAnalysis<LoopInfo>();
1447 ScalarEvolution &SE = getAnalysis<ScalarEvolution>();
1448
1449 TempScop *tempScop = getAnalysis<TempScopInfo>().getTempScop(R);
1450
1451 // This region is no Scop.
1452 if (!tempScop) {
1453 scop = 0;
1454 return false;
1455 }
1456
1457 // Statistics.
1458 ++ScopFound;
Tobias Grosser74394f02013-01-14 22:40:23 +00001459 if (tempScop->getMaxLoopDepth() > 0)
1460 ++RichScopFound;
Tobias Grosser75805372011-04-29 06:27:02 +00001461
Tobias Grosserb76f38532011-08-20 11:11:25 +00001462 scop = new Scop(*tempScop, LI, SE, ctx);
Tobias Grosser75805372011-04-29 06:27:02 +00001463
1464 return false;
1465}
1466
1467char ScopInfo::ID = 0;
1468
Tobias Grosser4d96c8d2013-03-23 01:05:07 +00001469Pass *polly::createScopInfoPass() { return new ScopInfo(); }
1470
Tobias Grosser73600b82011-10-08 00:30:40 +00001471INITIALIZE_PASS_BEGIN(ScopInfo, "polly-scops",
1472 "Polly - Create polyhedral description of Scops", false,
Tobias Grosser4d96c8d2013-03-23 01:05:07 +00001473 false);
1474INITIALIZE_PASS_DEPENDENCY(LoopInfo);
Matt Arsenault8ca36812014-07-19 18:40:17 +00001475INITIALIZE_PASS_DEPENDENCY(RegionInfoPass);
Tobias Grosser4d96c8d2013-03-23 01:05:07 +00001476INITIALIZE_PASS_DEPENDENCY(ScalarEvolution);
1477INITIALIZE_PASS_DEPENDENCY(TempScopInfo);
Tobias Grosser73600b82011-10-08 00:30:40 +00001478INITIALIZE_PASS_END(ScopInfo, "polly-scops",
1479 "Polly - Create polyhedral description of Scops", false,
1480 false)