1 /* Gimple Represented as Polyhedra.
2 Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
3 Contributed by Sebastian Pop <sebastian.pop@inria.fr>.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #ifndef GCC_GRAPHITE_H
22 #define GCC_GRAPHITE_H
24 #include "tree-data-ref.h"
26 int ref_nb_loops (data_reference_p
);
28 typedef struct graphite_bb
*graphite_bb_p
;
29 DEF_VEC_P(graphite_bb_p
);
30 DEF_VEC_ALLOC_P (graphite_bb_p
, heap
);
33 DEF_VEC_ALLOC_P (scop_p
, heap
);
35 static inline int scop_nb_loops (scop_p scop
);
36 static inline unsigned scop_nb_params (scop_p scop
);
37 static inline bool scop_contains_loop (scop_p scop
, struct loop
*loop
);
39 typedef struct graphite_bb
44 /* The static schedule contains the textual order for every loop layer.
90 - One SCoP can never contain two bbs with the same schedule timestamp.
91 - All bbs at the same loop depth have a consecutive ordering (no gaps). */
92 lambda_vector static_schedule
;
94 /* The iteration domain of this bb. It contains this columns:
95 - In/Eq: If this line is a equation or inequation.
96 - For every loop iterator one column.
97 - One column for every parameter in this SCoP.
98 - The constant column to add integers to the (in)equations.
102 for (i = a - 7*b + 8; i <= 3*a + 13*b + 20; i++)
103 for (j = 2; j <= 2*i + 5; j++)
104 for (k = 0; k <= 5; k++)
107 Loop iterators: i, j, k
112 1 1 0 0 -1 7 -8 # i >= a - 7b + 8
113 1 -1 0 0 3 13 20 # i <= 3a + 13b + 20
114 1 0 1 0 0 0 -2 # j >= 2
115 1 2 -1 0 0 0 5 # j <= 2i + 5
116 1 0 0 1 0 0 0 # k >= 0
117 1 0 0 -1 0 0 5 # k <= 5
119 The number of loop iterators may change and is not connected to the
120 number of loops, that surrounded this bb in the gimple code. */
123 /* Lists containing the restrictions of the conditional statements
124 dominating this bb. This bb can only be executed, if all conditions
129 for (i = 0; i <= 20; i++)
137 So for B there is an additional condition (2i <= 8).
139 TODO: Add these restrictions to the domain matrix.
141 List of COND_EXPR and SWITCH_EXPR. A COND_EXPR is true only if the
142 corresponding element in CONDITION_CASES is not NULL_TREE. For a
143 SWITCH_EXPR the corresponding element in CONDITION_CASES is a
145 VEC (gimple
, heap
) *conditions
;
146 VEC (gimple
, heap
) *condition_cases
;
148 /* LOOPS contains for every column in the graphite domain the corresponding
149 gimple loop. If there exists no corresponding gimple loop LOOPS contains
156 for (i = 0; i <= 20; i++)
157 for (j = 5; j <= 10; j++)
168 Original loops vector:
172 After some changes (Exchange i and j, strip-mine i):
178 1 0 0 -1 0 20 # i <= 20
180 1 -1 0 0 0 10 # j <= 10
181 1 0 -1 1 0 0 # ii <= i
182 1 0 1 -1 0 1 # ii + 1 >= i
183 1 0 -1 0 2 0 # ii <= 2k
184 1 0 1 0 -2 0 # ii >= 2k
188 Loop j NULL Loop i NULL
190 Means the original loop i is now at column two of the domain and
191 loop j in the original loop nest is now at column 0. Column 1 and
193 VEC (loop_p
, heap
) *loops
;
195 lambda_vector compressed_alpha_matrix
;
196 CloogMatrix
*dynamic_schedule
;
197 VEC (data_reference_p
, heap
) *data_refs
;
198 htab_t cloog_iv_types
;
201 #define GBB_BB(GBB) GBB->bb
202 #define GBB_SCOP(GBB) GBB->scop
203 #define GBB_STATIC_SCHEDULE(GBB) GBB->static_schedule
204 #define GBB_DATA_REFS(GBB) GBB->data_refs
205 #define GBB_ALPHA(GBB) GBB->compressed_alpha_matrix
206 #define GBB_DYNAMIC_SCHEDULE(GBB) GBB->dynamic_schedule
207 #define GBB_DOMAIN(GBB) GBB->domain
208 #define GBB_CONDITIONS(GBB) GBB->conditions
209 #define GBB_CONDITION_CASES(GBB) GBB->condition_cases
210 #define GBB_LOOPS(GBB) GBB->loops
211 #define GBB_CLOOG_IV_TYPES(GBB) GBB->cloog_iv_types
213 /* Return the loop that contains the basic block GBB. */
215 static inline struct loop
*
216 gbb_loop (struct graphite_bb
*gbb
)
218 return GBB_BB (gbb
)->loop_father
;
221 int nb_loops_around_gb (graphite_bb_p
);
223 /* Calculate the number of loops around GB in the current SCOP. Only
224 works if GBB_DOMAIN is built. */
227 gbb_nb_loops (const struct graphite_bb
*gb
)
229 scop_p scop
= GBB_SCOP (gb
);
231 if (GBB_DOMAIN (gb
) == NULL
)
234 return GBB_DOMAIN (gb
)->NbColumns
- scop_nb_params (scop
) - 2;
237 /* Returns the gimple loop, that corresponds to the loop_iterator_INDEX.
238 If there is no corresponding gimple loop, we return NULL. */
241 gbb_loop_at_index (graphite_bb_p gb
, int index
)
243 return VEC_index (loop_p
, GBB_LOOPS (gb
), index
);
246 /* Returns the index of LOOP in the loop nest around GB. */
249 gbb_loop_index (graphite_bb_p gb
, loop_p loop
)
254 for (i
= 0; VEC_iterate (loop_p
, GBB_LOOPS (gb
), i
, l
); i
++)
261 struct loop_to_cloog_loop_str
263 unsigned int loop_num
;
264 unsigned int loop_position
; /* The column that represents this loop. */
265 CloogLoop
*cloog_loop
;
268 typedef struct name_tree_d
275 DEF_VEC_P(name_tree
);
276 DEF_VEC_ALLOC_P (name_tree
, heap
);
278 /* A Single Entry, Single Exit region is a part of the CFG delimited
280 typedef struct sese_d
282 /* Single ENTRY and single EXIT from the SESE region. */
285 /* REGION_BASIC_BLOCKS contains the set of all the basic blocks
286 belonging to the SESE region. */
287 struct pointer_set_t
*region_basic_blocks
;
289 /* An SSA_NAME version is flagged in the LIVEOUT bitmap if the
290 SSA_NAME is defined inside and used outside the SESE region. */
293 /* The overall number of SSA_NAME versions used to index LIVEIN. */
296 /* For each SSA_NAME version VER in LIVEOUT, LIVEIN[VER] contains
297 the set of basic blocks indices that contain a use of VER. */
301 #define SESE_ENTRY(S) (S->entry)
302 #define SESE_EXIT(S) (S->exit)
303 #define SESE_REGION_BBS(S) (S->region_basic_blocks)
304 #define SESE_LIVEOUT(S) (S->liveout)
305 #define SESE_LIVEIN(S) (S->livein)
306 #define SESE_LIVEIN_VER(S, I) (S->livein[I])
307 #define SESE_NUM_VER(S) (S->num_ver)
309 extern sese
new_sese (edge
, edge
);
310 extern void free_sese (sese
);
311 extern void sese_build_livein_liveouts (sese
);
313 /* A SCOP is a Static Control Part of the program, simple enough to be
314 represented in polyhedral form. */
317 /* A SCOP is defined as a SESE region. */
320 /* All the basic blocks in this scop that contain memory references
321 and that will be represented as statements in the polyhedral
323 VEC (graphite_bb_p
, heap
) *bbs
;
325 lambda_vector static_schedule
;
327 /* Parameters used within the SCOP. */
328 VEC (name_tree
, heap
) *params
;
330 /* A collection of old induction variables*/
331 VEC (name_tree
, heap
) *old_ivs
;
333 /* Loops completely contained in the SCOP. */
335 VEC (loop_p
, heap
) *loop_nest
;
337 /* ??? It looks like a global mapping loop_id -> cloog_loop would work. */
338 htab_t loop2cloog_loop
;
340 /* Cloog representation of this scop. */
341 CloogProgram
*program
;
343 /* Are we allowed to add more params? This is for debugging purpose. We
344 can only add new params before generating the bb domains, otherwise they
348 /* LIVEOUT_RENAMES registers the rename mapping that has to be
349 applied after code generation. */
350 htab_t liveout_renames
;
353 #define SCOP_BBS(S) S->bbs
354 #define SCOP_REGION(S) S->region
355 /* SCOP_ENTRY bb dominates all the bbs of the scop. SCOP_EXIT bb
356 post-dominates all the bbs of the scop. SCOP_EXIT potentially
357 contains non affine data accesses, side effect statements or
358 difficult constructs, and thus is not considered part of the scop,
359 but just a boundary. SCOP_ENTRY is considered part of the scop. */
360 #define SCOP_ENTRY(S) (SESE_ENTRY (SCOP_REGION (S))->dest)
361 #define SCOP_EXIT(S) (SESE_EXIT (SCOP_REGION (S))->dest)
362 #define SCOP_REGION_BBS(S) (SESE_REGION_BBS (SCOP_REGION (S)))
363 #define SCOP_STATIC_SCHEDULE(S) S->static_schedule
364 #define SCOP_LOOPS(S) S->loops
365 #define SCOP_LOOP_NEST(S) S->loop_nest
366 #define SCOP_ADD_PARAMS(S) S->add_params
367 #define SCOP_PARAMS(S) S->params
368 #define SCOP_OLDIVS(S) S->old_ivs
369 #define SCOP_PROG(S) S->program
370 #define SCOP_LOOP2CLOOG_LOOP(S) S->loop2cloog_loop
371 #define SCOP_LOOPS_MAPPING(S) S->loops_mapping
372 #define SCOP_LIVEOUT_RENAMES(S) S->liveout_renames
374 extern void debug_scop (scop_p
, int);
375 extern void debug_scops (int);
376 extern void print_graphite_bb (FILE *, graphite_bb_p
, int, int);
377 extern void debug_gbb (graphite_bb_p
, int);
378 extern void dot_scop (scop_p
);
379 extern void dot_all_scops (void);
380 extern void debug_clast_stmt (struct clast_stmt
*);
381 extern void debug_rename_map (htab_t
);
382 extern void debug_ivtype_map (htab_t
);
383 extern void debug_loop_vec (graphite_bb_p
);
384 extern void debug_oldivs (scop_p
);
386 /* Describes the type of an iv stack entry. */
388 iv_stack_entry_unknown
= 0,
391 } iv_stack_entry_kind
;
393 /* Data contained in an iv stack entry. */
394 typedef union iv_stack_entry_data_union
398 } iv_stack_entry_data
;
400 /* Datatype for loop iv stack entry. */
401 typedef struct iv_stack_entry_struct
403 iv_stack_entry_kind kind
;
404 iv_stack_entry_data data
;
407 typedef iv_stack_entry
*iv_stack_entry_p
;
409 DEF_VEC_P(iv_stack_entry_p
);
410 DEF_VEC_ALLOC_P(iv_stack_entry_p
,heap
);
412 typedef VEC(iv_stack_entry_p
, heap
) **loop_iv_stack
;
413 extern void debug_loop_iv_stack (loop_iv_stack
);
415 /* Return the old induction variable of the LOOP that is in normal
419 oldiv_for_loop (scop_p scop
, loop_p loop
)
427 for (i
= 0; VEC_iterate (name_tree
, SCOP_OLDIVS (scop
), i
, iv
); i
++)
428 if (iv
->loop
== loop
)
434 /* Return the number of gimple loops contained in SCOP. */
437 scop_nb_loops (scop_p scop
)
439 return VEC_length (loop_p
, SCOP_LOOP_NEST (scop
));
442 /* Returns the number of parameters for SCOP. */
444 static inline unsigned
445 scop_nb_params (scop_p scop
)
447 return VEC_length (name_tree
, SCOP_PARAMS (scop
));
450 /* Return the dimension of the domains for SCOP. */
453 scop_dim_domain (scop_p scop
)
455 return scop_nb_loops (scop
) + scop_nb_params (scop
) + 1;
458 /* Return the dimension of the domains for GB. */
461 gbb_dim_domain (graphite_bb_p gb
)
463 return scop_dim_domain (GBB_SCOP (gb
));
466 /* Returns the dimensionality of a loop iteration domain for a given
467 loop, identified by LOOP_NUM, with respect to SCOP. */
470 loop_domain_dim (unsigned int loop_num
, scop_p scop
)
472 struct loop_to_cloog_loop_str tmp
, *slot
;
473 htab_t tab
= SCOP_LOOP2CLOOG_LOOP (scop
);
475 tmp
.loop_num
= loop_num
;
476 slot
= (struct loop_to_cloog_loop_str
*) htab_find (tab
, &tmp
);
478 /* The loop containing the entry of the scop is not always part of
479 the SCoP, and it is not registered in SCOP_LOOP2CLOOG_LOOP. */
481 return scop_nb_params (scop
) + 2;
483 return cloog_domain_dim (cloog_loop_domain (slot
->cloog_loop
)) + 2;
486 /* Returns the dimensionality of a loop iteration vector in a loop
487 iteration domain for a given loop (identified by LOOP_NUM) with
491 loop_iteration_vector_dim (unsigned int loop_num
, scop_p scop
)
493 return loop_domain_dim (loop_num
, scop
) - 2 - scop_nb_params (scop
);
496 /* Checks, if SCOP contains LOOP. */
499 scop_contains_loop (scop_p scop
, struct loop
*loop
)
501 return bitmap_bit_p (SCOP_LOOPS (scop
), loop
->num
);
504 /* Returns the index of LOOP in the domain matrix for the SCOP. */
507 scop_loop_index (scop_p scop
, struct loop
*loop
)
512 gcc_assert (scop_contains_loop (scop
, loop
));
514 for (i
= 0; VEC_iterate (loop_p
, SCOP_LOOP_NEST (scop
), i
, l
); i
++)
521 /* Return the index of innermost loop that contains the basic block
525 gbb_inner_most_loop_index (scop_p scop
, graphite_bb_p gb
)
527 return scop_loop_index(scop
, gbb_loop (gb
));
530 /* Return the outermost loop that contains the loop LOOP. The outer
531 loops are searched until a sibling for the outer loop is found. */
534 outer_most_loop_1 (scop_p scop
, struct loop
* loop
, struct loop
* current_outer
)
536 return (!scop_contains_loop (scop
, loop
)) ? current_outer
:
537 (loop
->next
!= NULL
) ? loop
:
538 outer_most_loop_1 (scop
, loop_outer (loop
), loop
);
541 /* Return the outermost loop that contains the loop LOOP. */
544 outer_most_loop (scop_p scop
, struct loop
*loop
)
546 return outer_most_loop_1 (scop
, loop
, NULL
);
549 /* Return the index of the outermost loop that contains the basic
553 gbb_outer_most_loop_index (scop_p scop
, graphite_bb_p gb
)
555 return scop_loop_index (scop
, outer_most_loop (scop
, gbb_loop (gb
)));
558 /* Return the loop depth of LOOP in SCOP. */
560 static inline unsigned int
561 scop_gimple_loop_depth (scop_p scop
, loop_p loop
)
563 unsigned int depth
= 0;
565 loop
= loop_outer (loop
);
567 while (scop_contains_loop (scop
, loop
))
570 loop
= loop_outer (loop
);
576 #endif /* GCC_GRAPHITE_H */