Fix for PR39557
[official-gcc.git] / gcc / graphite.h
bloba2700655ea44e52445e9723fb879cad386503c8e
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)
10 any later version.
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);
32 DEF_VEC_P(scop_p);
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
41 basic_block bb;
42 scop_p scop;
44 /* The static schedule contains the textual order for every loop layer.
46 Example:
49 for (i ...)
52 for (j ...)
60 for (k ...)
64 for (l ...)
70 S10
72 Schedules:
74 | Depth
75 BB | 0 1 2
76 ------------
77 S0 | 0
78 S1 | 1, 0
79 S2 | 1, 1, 0
80 S3 | 1, 1, 1
81 S4 | 1, 2
82 S5 | 2
83 S6 | 3, 0
84 S7 | 3, 1
85 S8 | 3, 2, 0
86 S9 | 3, 3
87 S10| 4
89 Normalization rules:
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.
100 Example:
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++)
105 S (i,j,k)
107 Loop iterators: i, j, k
108 Parameters: a, b
110 (I)eq i j k a b 1
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. */
121 CloogMatrix *domain;
123 /* Lists containing the restrictions of the conditional statements
124 dominating this bb. This bb can only be executed, if all conditions
125 are true.
127 Example:
129 for (i = 0; i <= 20; i++)
133 if (2i <= 8)
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
144 CASE_LABEL_EXPR. */
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
150 NULL.
152 Example:
154 Original code:
156 for (i = 0; i <= 20; i++)
157 for (j = 5; j <= 10; j++)
160 Original domain:
162 (I)eq i j 1
163 1 1 0 0 # i >= 0
164 1 -1 0 20 # i <= 20
165 1 0 1 0 # j >= 0
166 1 0 -1 10 # j <= 10
168 Original loops vector:
169 0 1
170 Loop i Loop j
172 After some changes (Exchange i and j, strip-mine i):
174 Domain:
176 (I)eq j ii i k 1
177 1 0 0 1 0 0 # i >= 0
178 1 0 0 -1 0 20 # i <= 20
179 1 1 0 0 0 0 # j >= 0
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
186 Iterator vector:
187 0 1 2 3
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
192 3 are emtpy. */
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;
199 } *gbb_p;
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. */
226 static inline int
227 gbb_nb_loops (const struct graphite_bb *gb)
229 scop_p scop = GBB_SCOP (gb);
231 if (GBB_DOMAIN (gb) == NULL)
232 return 0;
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. */
240 static inline loop_p
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. */
248 static inline int
249 gbb_loop_index (graphite_bb_p gb, loop_p loop)
251 int i;
252 loop_p l;
254 for (i = 0; VEC_iterate (loop_p, GBB_LOOPS (gb), i, l); i++)
255 if (loop == l)
256 return i;
258 gcc_unreachable();
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
270 tree t;
271 const char *name;
272 struct loop *loop;
273 } *name_tree;
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
279 by two edges. */
280 typedef struct sese
282 /* Single ENTRY and single EXIT from the SESE region. */
283 edge entry, exit;
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. */
291 bitmap liveout;
293 /* The overall number of SSA_NAME versions used to index LIVEIN. */
294 int num_ver;
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. */
298 bitmap *livein;
299 } *sese;
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. */
315 struct scop
317 /* A SCOP is defined as a SESE region. */
318 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
322 representation. */
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. */
334 bitmap loops;
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
345 become invalid. */
346 bool add_params;
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. */
387 typedef enum {
388 iv_stack_entry_unknown = 0,
389 iv_stack_entry_iv,
390 iv_stack_entry_const
391 } iv_stack_entry_kind;
393 /* Data contained in an iv stack entry. */
394 typedef union iv_stack_entry_data_union
396 name_tree iv;
397 tree constant;
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;
405 } iv_stack_entry;
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
416 form in SCOP. */
418 static inline tree
419 oldiv_for_loop (scop_p scop, loop_p loop)
421 int i;
422 name_tree iv;
424 if (!loop)
425 return NULL_TREE;
427 for (i = 0; VEC_iterate (name_tree, SCOP_OLDIVS (scop), i, iv); i++)
428 if (iv->loop == loop)
429 return iv->t;
431 return NULL_TREE;
434 /* Return the number of gimple loops contained in SCOP. */
436 static inline int
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. */
452 static inline int
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. */
460 static inline int
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. */
469 static inline int
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. */
480 if (!slot)
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
488 respect to SCOP. */
490 static inline int
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. */
498 static inline bool
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. */
506 static inline int
507 scop_loop_index (scop_p scop, struct loop *loop)
509 unsigned i;
510 struct loop *l;
512 gcc_assert (scop_contains_loop (scop, loop));
514 for (i = 0; VEC_iterate (loop_p, SCOP_LOOP_NEST (scop), i, l); i++)
515 if (l == loop)
516 return i;
518 gcc_unreachable();
521 /* Return the index of innermost loop that contains the basic block
522 GBB. */
524 static inline int
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. */
533 static struct loop *
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. */
543 static struct 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
550 block BB. */
552 static inline int
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))
569 depth++;
570 loop = loop_outer (loop);
573 return depth;
576 #endif /* GCC_GRAPHITE_H */