1 /* Graphite polyhedral representation.
2 Copyright (C) 2009-2019 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)
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
26 #include <isl/options.h>
30 #include <isl/union_set.h>
32 #include <isl/union_map.h>
34 #include <isl/constraint.h>
37 #include <isl/schedule.h>
38 #include <isl/ast_build.h>
39 #include <isl/schedule_node.h>
41 #include <isl/space.h>
43 typedef struct poly_dr
*poly_dr_p
;
45 typedef struct poly_bb
*poly_bb_p
;
47 typedef struct scop
*scop_p
;
49 typedef unsigned graphite_dim_t
;
51 static inline graphite_dim_t
scop_nb_params (scop_p
);
53 /* A data reference can write or read some memory or we
54 just know it may write some memory. */
58 /* PDR_MAY_READs are represented using PDR_READS. This does not
59 limit the expressiveness. */
66 /* An identifier for this PDR. */
69 /* The number of data refs identical to this one in the PBB. */
72 /* A pointer to the gimple stmt containing this reference. */
75 /* A pointer to the PBB that contains this data reference. */
78 enum poly_dr_type type
;
80 /* The access polyhedron contains the polyhedral space this data
81 reference will access.
83 The polyhedron contains these dimensions:
86 Every memory access is classified in at least one alias set.
88 - The subscripts (s_0, ..., s_n):
89 The memory is accessed using zero or more subscript dimensions.
91 - The iteration domain (variables and parameters)
93 Do not hardcode the dimensions. Use the following accessor functions:
102 | int *p = malloc ();
107 | if (unknown_function ())
114 The data access A[i][j+k] in alias set "5" is described like this:
119 | 0 -1 -1 0 0 1 0 = 0
120 | 0 0 0 0 1 0 0 >= 0 # The last four lines describe the
121 | 0 0 0 0 0 1 0 >= 0 # array size.
122 | 0 0 0 0 -1 0 1335 >= 0
123 | 0 0 0 0 0 -1 123 >= 0
125 The pointer "*p" in alias set "5" and "7" is described as a union of
139 "*p" accesses all of the object allocated with 'malloc'.
141 The scalar data access "m" is represented as an array with zero subscript
147 The difference between the graphite internal format for access data and
148 the OpenSop format is in the order of columns.
154 | 0 -1 -1 0 0 1 0 = 0
155 | 0 0 0 0 1 0 0 >= 0 # The last four lines describe the
156 | 0 0 0 0 0 1 0 >= 0 # array size.
157 | 0 0 0 0 -1 0 1335 >= 0
158 | 0 0 0 0 0 -1 123 >= 0
165 | 0 0 1 0 -1 -1 0 = 0
166 | 0 1 0 0 0 0 0 >= 0 # The last four lines describe the
167 | 0 0 1 0 0 0 0 >= 0 # array size.
168 | 0 -1 0 0 0 0 1335 >= 0
169 | 0 0 -1 0 0 0 123 >= 0
171 The OpenScop access function is printed as follows:
173 | 1 # The number of disjunct components in a union of access functions.
174 | R C O I L P # Described bellow.
178 | 0 0 1 0 -1 -1 0 = 0
179 | 0 1 0 0 0 0 0 >= 0 # The last four lines describe the
180 | 0 0 1 0 0 0 0 >= 0 # array size.
181 | 0 -1 0 0 0 0 1335 >= 0
182 | 0 0 -1 0 0 0 123 >= 0
186 - C: Number of columns.
187 - O: Number of output dimensions = alias set + number of subscripts.
188 - I: Number of input dimensions (iterators).
189 - L: Number of local (existentially quantified) dimensions.
190 - P: Number of parameters.
192 In the example, the vector "R C O I L P" is "7 7 3 2 0 1". */
194 isl_set
*subscript_sizes
;
197 #define PDR_ID(PDR) (PDR->id)
198 #define PDR_NB_REFS(PDR) (PDR->nb_refs)
199 #define PDR_PBB(PDR) (PDR->pbb)
200 #define PDR_TYPE(PDR) (PDR->type)
201 #define PDR_ACCESSES(PDR) (NULL)
203 void new_poly_dr (poly_bb_p
, gimple
*, enum poly_dr_type
,
204 isl_map
*, isl_set
*);
205 void debug_pdr (poly_dr_p
);
206 void print_pdr (FILE *, poly_dr_p
);
209 pdr_read_p (poly_dr_p pdr
)
211 return PDR_TYPE (pdr
) == PDR_READ
;
214 /* Returns true when PDR is a "write". */
217 pdr_write_p (poly_dr_p pdr
)
219 return PDR_TYPE (pdr
) == PDR_WRITE
;
222 /* Returns true when PDR is a "may write". */
225 pdr_may_write_p (poly_dr_p pdr
)
227 return PDR_TYPE (pdr
) == PDR_MAY_WRITE
;
230 /* POLY_BB represents a blackbox in the polyhedral model. */
234 /* Pointer to a basic block or a statement in the compiler. */
235 gimple_poly_bb_p black_box
;
237 /* Pointer to the SCOP containing this PBB. */
240 /* The iteration domain of this bb. The layout of this polyhedron
241 is I|G with I the iteration domain, G the context parameters.
245 for (i = a - 7*b + 8; i <= 3*a + 13*b + 20; i++)
246 for (j = 2; j <= 2*i + 5; j++)
247 for (k = 0; k <= 5; k++)
250 Loop iterators: i, j, k
260 The number of variables in the DOMAIN may change and is not
261 related to the number of loops in the original code. */
265 /* The data references we access. */
268 /* The last basic block generated for this pbb. */
272 #define PBB_BLACK_BOX(PBB) ((gimple_poly_bb_p) PBB->black_box)
273 #define PBB_SCOP(PBB) (PBB->scop)
274 #define PBB_DRS(PBB) (PBB->drs)
276 extern poly_bb_p
new_poly_bb (scop_p
, gimple_poly_bb_p
);
277 extern void print_pbb_domain (FILE *, poly_bb_p
);
278 extern void print_pbb (FILE *, poly_bb_p
);
279 extern void print_scop_context (FILE *, scop_p
);
280 extern void print_scop (FILE *, scop_p
);
281 extern void debug_pbb_domain (poly_bb_p
);
282 extern void debug_pbb (poly_bb_p
);
283 extern void print_pdrs (FILE *, poly_bb_p
);
284 extern void debug_pdrs (poly_bb_p
);
285 extern void debug_scop_context (scop_p
);
286 extern void debug_scop (scop_p
);
287 extern void print_scop_params (FILE *, scop_p
);
288 extern void debug_scop_params (scop_p
);
289 extern void print_iteration_domain (FILE *, poly_bb_p
);
290 extern void print_iteration_domains (FILE *, scop_p
);
291 extern void debug_iteration_domain (poly_bb_p
);
292 extern void debug_iteration_domains (scop_p
);
293 extern void print_isl_set (FILE *, isl_set
*);
294 extern void print_isl_map (FILE *, isl_map
*);
295 extern void print_isl_union_map (FILE *, isl_union_map
*);
296 extern void print_isl_aff (FILE *, isl_aff
*);
297 extern void print_isl_constraint (FILE *, isl_constraint
*);
298 extern void print_isl_schedule (FILE *, isl_schedule
*);
299 extern void debug_isl_schedule (isl_schedule
*);
300 extern void print_isl_ast (FILE *, isl_ast_node
*);
301 extern void debug_isl_ast (isl_ast_node
*);
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 void debug_gmp_value (mpz_t
);
308 extern void debug_scop_pbb (scop_p scop
, int i
);
309 extern void print_schedule_ast (FILE *, __isl_keep isl_schedule
*, scop_p
);
310 extern void debug_schedule_ast (__isl_keep isl_schedule
*, scop_p
);
312 /* The basic block of the PBB. */
314 static inline basic_block
315 pbb_bb (poly_bb_p pbb
)
317 return GBB_BB (PBB_BLACK_BOX (pbb
));
321 pbb_index (poly_bb_p pbb
)
323 return pbb_bb (pbb
)->index
;
326 /* The loop of the PBB. */
329 pbb_loop (poly_bb_p pbb
)
331 return gbb_loop (PBB_BLACK_BOX (pbb
));
334 /* The scop that contains the PDR. */
337 pdr_scop (poly_dr_p pdr
)
339 return PBB_SCOP (PDR_PBB (pdr
));
342 /* Set black box of PBB to BLACKBOX. */
345 pbb_set_black_box (poly_bb_p pbb
, gimple_poly_bb_p black_box
)
347 pbb
->black_box
= black_box
;
350 /* A helper structure to keep track of data references, polyhedral BBs, and
356 invalid_alias_set
= -1
358 /* The data reference. */
361 /* The polyhedral BB containing this DR. */
364 /* ALIAS_SET is the SCC number assigned by a graph_dfs of the alias graph.
365 -1 is an invalid alias set. */
368 /* Construct a DR_INFO from a data reference DR, an ALIAS_SET, and a PBB. */
369 dr_info (data_reference_p dr
, poly_bb_p pbb
,
370 int alias_set
= invalid_alias_set
)
371 : dr (dr
), pbb (pbb
), alias_set (alias_set
) {}
374 /* A SCOP is a Static Control Part of the program, simple enough to be
375 represented in polyhedral form. */
378 /* A SCOP is defined as a SESE region. */
379 sese_info_p scop_info
;
381 /* Number of parameters in SCoP. */
382 graphite_dim_t nb_params
;
384 /* The maximum alias set as assigned to drs by build_alias_sets. */
385 unsigned max_alias_set
;
387 /* All the basic blocks in this scop that contain memory references
388 and that will be represented as statements in the polyhedral
392 /* All the data references in this scop. */
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) {
403 Here we can add these restrictions to the context:
408 isl_set
*param_context
;
410 /* The context used internally by isl. */
411 isl_ctx
*isl_context
;
413 /* SCoP original schedule. */
414 isl_schedule
*original_schedule
;
416 /* SCoP transformed schedule. */
417 isl_schedule
*transformed_schedule
;
419 /* The data dependence relation among the data references in this scop. */
420 isl_union_map
*dependence
;
423 extern scop_p
new_scop (edge
, edge
);
424 extern void free_scop (scop_p
);
425 extern gimple_poly_bb_p
new_gimple_poly_bb (basic_block
, vec
<data_reference_p
>,
426 vec
<scalar_use
>, vec
<tree
>);
427 extern bool apply_poly_transforms (scop_p
);
429 /* Set the region of SCOP to REGION. */
432 scop_set_region (scop_p scop
, sese_info_p region
)
434 scop
->scop_info
= region
;
437 /* Returns the number of parameters for SCOP. */
439 static inline graphite_dim_t
440 scop_nb_params (scop_p scop
)
442 return scop
->nb_params
;
445 /* Set the number of params of SCOP to NB_PARAMS. */
448 scop_set_nb_params (scop_p scop
, graphite_dim_t nb_params
)
450 scop
->nb_params
= nb_params
;
453 extern void scop_get_dependences (scop_p scop
);
456 carries_deps (__isl_keep isl_union_map
*schedule
,
457 __isl_keep isl_union_map
*deps
,
460 extern bool build_poly_scop (scop_p
);
461 extern bool graphite_regenerate_ast_isl (scop_p
);
462 extern void build_scops (vec
<scop_p
> *);
463 extern tree
cached_scalar_evolution_in_region (const sese_l
&, loop_p
, tree
);
464 extern void dot_all_sese (FILE *, vec
<sese_l
> &);
465 extern void dot_sese (sese_l
&);
466 extern void dot_cfg ();