Fix memory leaks in tree-vect-data-refs.c
[official-gcc.git] / gcc / graphite.h
blobc7589baef4fa282dc5e56fb418009012203e53f6
1 /* Graphite polyhedral representation.
2 Copyright (C) 2009-2015 Free Software Foundation, Inc.
3 Contributed by Sebastian Pop <sebastian.pop@amd.com> and
4 Tobias Grosser <grosser@fim.uni-passau.de>.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #ifndef GCC_GRAPHITE_POLY_H
23 #define GCC_GRAPHITE_POLY_H
25 #include "sese.h"
27 #ifndef HAVE_ISL_OPTIONS_SET_SCHEDULE_SERIALIZE_SCCS
28 # define isl_stat int
29 # define isl_stat_ok 0
30 #endif
32 typedef struct poly_dr *poly_dr_p;
34 typedef struct poly_bb *poly_bb_p;
36 typedef struct scop *scop_p;
38 typedef unsigned graphite_dim_t;
40 static inline graphite_dim_t scop_nb_params (scop_p);
42 /* A data reference can write or read some memory or we
43 just know it may write some memory. */
44 enum poly_dr_type
46 PDR_READ,
47 /* PDR_MAY_READs are represented using PDR_READS. This does not
48 limit the expressiveness. */
49 PDR_WRITE,
50 PDR_MAY_WRITE
53 struct poly_dr
55 /* An identifier for this PDR. */
56 int id;
58 /* The number of data refs identical to this one in the PBB. */
59 int nb_refs;
61 /* A pointer to the gimple stmt containing this reference. */
62 gimple *stmt;
64 /* A pointer to the PBB that contains this data reference. */
65 poly_bb_p pbb;
67 enum poly_dr_type type;
69 /* The access polyhedron contains the polyhedral space this data
70 reference will access.
72 The polyhedron contains these dimensions:
74 - The alias set (a):
75 Every memory access is classified in at least one alias set.
77 - The subscripts (s_0, ..., s_n):
78 The memory is accessed using zero or more subscript dimensions.
80 - The iteration domain (variables and parameters)
82 Do not hardcode the dimensions. Use the following accessor functions:
83 - pdr_alias_set_dim
84 - pdr_subscript_dim
85 - pdr_iterator_dim
86 - pdr_parameter_dim
88 Example:
90 | int A[1335][123];
91 | int *p = malloc ();
93 | k = ...
94 | for i
95 | {
96 | if (unknown_function ())
97 | p = A;
98 | ... = p[?][?];
99 | for j
100 | A[i][j+k] = m;
103 The data access A[i][j+k] in alias set "5" is described like this:
105 | i j k a s0 s1 1
106 | 0 0 0 1 0 0 -5 = 0
107 |-1 0 0 0 1 0 0 = 0
108 | 0 -1 -1 0 0 1 0 = 0
109 | 0 0 0 0 1 0 0 >= 0 # The last four lines describe the
110 | 0 0 0 0 0 1 0 >= 0 # array size.
111 | 0 0 0 0 -1 0 1335 >= 0
112 | 0 0 0 0 0 -1 123 >= 0
114 The pointer "*p" in alias set "5" and "7" is described as a union of
115 polyhedron:
118 | i k a s0 1
119 | 0 0 1 0 -5 = 0
120 | 0 0 0 1 0 >= 0
122 "or"
124 | i k a s0 1
125 | 0 0 1 0 -7 = 0
126 | 0 0 0 1 0 >= 0
128 "*p" accesses all of the object allocated with 'malloc'.
130 The scalar data access "m" is represented as an array with zero subscript
131 dimensions.
133 | i j k a 1
134 | 0 0 0 -1 15 = 0
136 The difference between the graphite internal format for access data and
137 the OpenSop format is in the order of columns.
138 Instead of having:
140 | i j k a s0 s1 1
141 | 0 0 0 1 0 0 -5 = 0
142 |-1 0 0 0 1 0 0 = 0
143 | 0 -1 -1 0 0 1 0 = 0
144 | 0 0 0 0 1 0 0 >= 0 # The last four lines describe the
145 | 0 0 0 0 0 1 0 >= 0 # array size.
146 | 0 0 0 0 -1 0 1335 >= 0
147 | 0 0 0 0 0 -1 123 >= 0
149 In OpenScop we have:
151 | a s0 s1 i j k 1
152 | 1 0 0 0 0 0 -5 = 0
153 | 0 1 0 -1 0 0 0 = 0
154 | 0 0 1 0 -1 -1 0 = 0
155 | 0 1 0 0 0 0 0 >= 0 # The last four lines describe the
156 | 0 0 1 0 0 0 0 >= 0 # array size.
157 | 0 -1 0 0 0 0 1335 >= 0
158 | 0 0 -1 0 0 0 123 >= 0
160 The OpenScop access function is printed as follows:
162 | 1 # The number of disjunct components in a union of access functions.
163 | R C O I L P # Described bellow.
164 | a s0 s1 i j k 1
165 | 1 0 0 0 0 0 -5 = 0
166 | 0 1 0 -1 0 0 0 = 0
167 | 0 0 1 0 -1 -1 0 = 0
168 | 0 1 0 0 0 0 0 >= 0 # The last four lines describe the
169 | 0 0 1 0 0 0 0 >= 0 # array size.
170 | 0 -1 0 0 0 0 1335 >= 0
171 | 0 0 -1 0 0 0 123 >= 0
173 Where:
174 - R: Number of rows.
175 - C: Number of columns.
176 - O: Number of output dimensions = alias set + number of subscripts.
177 - I: Number of input dimensions (iterators).
178 - L: Number of local (existentially quantified) dimensions.
179 - P: Number of parameters.
181 In the example, the vector "R C O I L P" is "7 7 3 2 0 1". */
182 isl_map *accesses;
183 isl_set *subscript_sizes;
186 #define PDR_ID(PDR) (PDR->id)
187 #define PDR_NB_REFS(PDR) (PDR->nb_refs)
188 #define PDR_PBB(PDR) (PDR->pbb)
189 #define PDR_TYPE(PDR) (PDR->type)
190 #define PDR_ACCESSES(PDR) (NULL)
192 void new_poly_dr (poly_bb_p, gimple *, enum poly_dr_type,
193 isl_map *, isl_set *);
194 void free_poly_dr (poly_dr_p);
195 void debug_pdr (poly_dr_p);
196 void print_pdr (FILE *, poly_dr_p);
198 static inline bool
199 pdr_read_p (poly_dr_p pdr)
201 return PDR_TYPE (pdr) == PDR_READ;
204 /* Returns true when PDR is a "write". */
206 static inline bool
207 pdr_write_p (poly_dr_p pdr)
209 return PDR_TYPE (pdr) == PDR_WRITE;
212 /* Returns true when PDR is a "may write". */
214 static inline bool
215 pdr_may_write_p (poly_dr_p pdr)
217 return PDR_TYPE (pdr) == PDR_MAY_WRITE;
220 /* POLY_BB represents a blackbox in the polyhedral model. */
222 struct poly_bb
224 /* Pointer to a basic block or a statement in the compiler. */
225 gimple_poly_bb_p black_box;
227 /* Pointer to the SCOP containing this PBB. */
228 scop_p scop;
230 /* The iteration domain of this bb. The layout of this polyhedron
231 is I|G with I the iteration domain, G the context parameters.
233 Example:
235 for (i = a - 7*b + 8; i <= 3*a + 13*b + 20; i++)
236 for (j = 2; j <= 2*i + 5; j++)
237 for (k = 0; k <= 5; k++)
238 S (i,j,k)
240 Loop iterators: i, j, k
241 Parameters: a, b
243 | i >= a - 7b + 8
244 | i <= 3a + 13b + 20
245 | j >= 2
246 | j <= 2i + 5
247 | k >= 0
248 | k <= 5
250 The number of variables in the DOMAIN may change and is not
251 related to the number of loops in the original code. */
252 isl_set *domain;
254 /* The data references we access. */
255 vec<poly_dr_p> drs;
257 /* The original scattering. */
258 isl_map *schedule;
260 /* The transformed scattering. */
261 isl_map *transformed;
263 /* A copy of the transformed scattering. */
264 isl_map *saved;
266 /* True when this PBB contains only a reduction statement. */
267 bool is_reduction;
269 /* The last basic block generated for this pbb. */
270 basic_block new_bb;
273 #define PBB_BLACK_BOX(PBB) ((gimple_poly_bb_p) PBB->black_box)
274 #define PBB_SCOP(PBB) (PBB->scop)
275 #define PBB_DRS(PBB) (PBB->drs)
276 #define PBB_IS_REDUCTION(PBB) (PBB->is_reduction)
278 extern poly_bb_p new_poly_bb (scop_p, gimple_poly_bb_p);
279 extern void free_poly_bb (poly_bb_p);
280 extern void debug_loop_vec (poly_bb_p);
281 extern void print_pbb_domain (FILE *, poly_bb_p);
282 extern void print_pbb (FILE *, poly_bb_p);
283 extern void print_scop_context (FILE *, scop_p);
284 extern void print_scop (FILE *, scop_p);
285 extern void debug_pbb_domain (poly_bb_p);
286 extern void debug_pbb (poly_bb_p);
287 extern void print_pdrs (FILE *, poly_bb_p);
288 extern void debug_pdrs (poly_bb_p);
289 extern void debug_scop_context (scop_p);
290 extern void debug_scop (scop_p);
291 extern void print_scop_params (FILE *, scop_p);
292 extern void debug_scop_params (scop_p);
293 extern void print_iteration_domain (FILE *, poly_bb_p);
294 extern void print_iteration_domains (FILE *, scop_p);
295 extern void debug_iteration_domain (poly_bb_p);
296 extern void debug_iteration_domains (scop_p);
297 extern void print_isl_set (FILE *, isl_set *);
298 extern void print_isl_map (FILE *, isl_map *);
299 extern void print_isl_union_map (FILE *, isl_union_map *);
300 extern void print_isl_aff (FILE *, isl_aff *);
301 extern void print_isl_constraint (FILE *, isl_constraint *);
302 extern void debug_isl_set (isl_set *);
303 extern void debug_isl_map (isl_map *);
304 extern void debug_isl_union_map (isl_union_map *);
305 extern void debug_isl_aff (isl_aff *);
306 extern void debug_isl_constraint (isl_constraint *);
307 extern int scop_do_interchange (scop_p);
308 extern int scop_do_strip_mine (scop_p, int);
309 extern bool scop_do_block (scop_p);
310 extern bool flatten_all_loops (scop_p);
311 extern bool optimize_isl (scop_p);
312 extern void pbb_number_of_iterations_at_time (poly_bb_p, graphite_dim_t, mpz_t);
313 extern void debug_gmp_value (mpz_t);
315 /* The basic block of the PBB. */
317 static inline basic_block
318 pbb_bb (poly_bb_p pbb)
320 return GBB_BB (PBB_BLACK_BOX (pbb));
323 static inline int
324 pbb_index (poly_bb_p pbb)
326 return pbb_bb (pbb)->index;
329 /* The loop of the PBB. */
331 static inline loop_p
332 pbb_loop (poly_bb_p pbb)
334 return gbb_loop (PBB_BLACK_BOX (pbb));
337 /* The scop that contains the PDR. */
339 static inline scop_p
340 pdr_scop (poly_dr_p pdr)
342 return PBB_SCOP (PDR_PBB (pdr));
345 /* Set black box of PBB to BLACKBOX. */
347 static inline void
348 pbb_set_black_box (poly_bb_p pbb, gimple_poly_bb_p black_box)
350 pbb->black_box = black_box;
353 /* A helper structure to keep track of data references, polyhedral BBs, and
354 alias sets. */
356 struct dr_info
358 enum {
359 invalid_alias_set = -1
361 /* The data reference. */
362 data_reference_p dr;
364 /* The polyhedral BB containing this DR. */
365 poly_bb_p pbb;
367 /* ALIAS_SET is the SCC number assigned by a graph_dfs of the alias graph.
368 -1 is an invalid alias set. */
369 int alias_set;
371 /* Construct a DR_INFO from a data reference DR, an ALIAS_SET, and a PBB. */
372 dr_info (data_reference_p dr, poly_bb_p pbb,
373 int alias_set = invalid_alias_set)
374 : dr (dr), pbb (pbb), alias_set (alias_set) {}
377 /* A SCOP is a Static Control Part of the program, simple enough to be
378 represented in polyhedral form. */
379 struct scop
381 /* A SCOP is defined as a SESE region. */
382 sese_info_p scop_info;
384 /* Number of parameters in SCoP. */
385 graphite_dim_t nb_params;
387 /* All the basic blocks in this scop that contain memory references
388 and that will be represented as statements in the polyhedral
389 representation. */
390 vec<poly_bb_p> pbbs;
392 /* All the data references in this scop. */
393 vec<dr_info> drs;
395 /* The context describes known restrictions concerning the parameters
396 and relations in between the parameters.
398 void f (int8_t a, uint_16_t b) {
399 c = 2 a + b;
403 Here we can add these restrictions to the context:
405 -128 >= a >= 127
406 0 >= b >= 65,535
407 c = 2a + b */
408 isl_set *param_context;
410 /* The context used internally by ISL. */
411 isl_ctx *isl_context;
413 /* The original dependence relations:
414 RAW are read after write dependences,
415 WAR are write after read dependences,
416 WAW are write after write dependences. */
417 isl_union_map *must_raw, *may_raw, *must_raw_no_source, *may_raw_no_source,
418 *must_war, *may_war, *must_war_no_source, *may_war_no_source,
419 *must_waw, *may_waw, *must_waw_no_source, *may_waw_no_source;
422 extern scop_p new_scop (edge, edge);
423 extern void free_scop (scop_p);
424 extern gimple_poly_bb_p new_gimple_poly_bb (basic_block, vec<data_reference_p>,
425 vec<scalar_use>, vec<tree>);
426 extern void free_gimple_poly_bb (gimple_poly_bb_p);
427 extern void print_generated_program (FILE *, scop_p);
428 extern void debug_generated_program (scop_p);
429 extern int unify_scattering_dimensions (scop_p);
430 extern bool apply_poly_transforms (scop_p);
432 /* Set the region of SCOP to REGION. */
434 static inline void
435 scop_set_region (scop_p scop, sese_info_p region)
437 scop->scop_info = region;
440 /* Returns the number of parameters for SCOP. */
442 static inline graphite_dim_t
443 scop_nb_params (scop_p scop)
445 return scop->nb_params;
448 /* Set the number of params of SCOP to NB_PARAMS. */
450 static inline void
451 scop_set_nb_params (scop_p scop, graphite_dim_t nb_params)
453 scop->nb_params = nb_params;
456 isl_union_map *
457 scop_get_dependences (scop_p scop);
459 bool
460 carries_deps (__isl_keep isl_union_map *schedule,
461 __isl_keep isl_union_map *deps,
462 int depth);
464 extern bool build_poly_scop (scop_p);
465 extern bool graphite_regenerate_ast_isl (scop_p);
467 extern void build_scops (vec<scop_p> *);
468 extern void dot_all_sese (FILE *, vec<sese_l> &);
469 extern void dot_sese (sese_l &);
470 extern void dot_cfg ();
471 #endif