Add C++11 header <cuchar>.
[official-gcc.git] / gcc / graphite-poly.c
blob98e8ab01cdc6edb91d412213deaaf7ef9f7330f5
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 #include "config.h"
24 #ifdef HAVE_isl
25 /* Workaround for GMP 5.1.3 bug, see PR56019. */
26 #include <stddef.h>
28 #include <isl/constraint.h>
29 #include <isl/set.h>
30 #include <isl/map.h>
31 #include <isl/union_map.h>
32 #include <isl/constraint.h>
33 #include <isl/ilp.h>
34 #include <isl/aff.h>
35 #include <isl/val.h>
37 /* Since ISL-0.13, the extern is in val_gmp.h. */
38 #if !defined(HAVE_ISL_SCHED_CONSTRAINTS_COMPUTE_SCHEDULE) && defined(__cplusplus)
39 extern "C" {
40 #endif
41 #include <isl/val_gmp.h>
42 #if !defined(HAVE_ISL_SCHED_CONSTRAINTS_COMPUTE_SCHEDULE) && defined(__cplusplus)
44 #endif
46 #include "system.h"
47 #include "coretypes.h"
48 #include "backend.h"
49 #include "diagnostic-core.h"
50 #include "cfghooks.h"
51 #include "tree.h"
52 #include "gimple.h"
53 #include "fold-const.h"
54 #include "gimple-iterator.h"
55 #include "tree-ssa-loop.h"
56 #include "gimple-pretty-print.h"
57 #include "cfgloop.h"
58 #include "tree-data-ref.h"
59 #include "graphite-poly.h"
61 #define OPENSCOP_MAX_STRING 256
64 /* Print to STDERR the GMP value VAL. */
66 DEBUG_FUNCTION void
67 debug_gmp_value (mpz_t val)
69 gmp_fprintf (stderr, "%Zd", val);
72 /* Prints to FILE the iteration domain of PBB, at some VERBOSITY
73 level. */
75 void
76 print_iteration_domain (FILE *file, poly_bb_p pbb, int verbosity)
78 print_pbb_domain (file, pbb, verbosity);
81 /* Prints to FILE the iteration domains of every PBB of SCOP, at some
82 VERBOSITY level. */
84 void
85 print_iteration_domains (FILE *file, scop_p scop, int verbosity)
87 int i;
88 poly_bb_p pbb;
90 FOR_EACH_VEC_ELT (SCOP_BBS (scop), i, pbb)
91 print_iteration_domain (file, pbb, verbosity);
94 /* Prints to STDERR the iteration domain of PBB, at some VERBOSITY
95 level. */
97 DEBUG_FUNCTION void
98 debug_iteration_domain (poly_bb_p pbb, int verbosity)
100 print_iteration_domain (stderr, pbb, verbosity);
103 /* Prints to STDERR the iteration domains of every PBB of SCOP, at
104 some VERBOSITY level. */
106 DEBUG_FUNCTION void
107 debug_iteration_domains (scop_p scop, int verbosity)
109 print_iteration_domains (stderr, scop, verbosity);
112 /* Apply graphite transformations to all the basic blocks of SCOP. */
114 bool
115 apply_poly_transforms (scop_p scop)
117 bool transform_done = false;
119 /* Generate code even if we did not apply any real transformation.
120 This also allows to check the performance for the identity
121 transformation: GIMPLE -> GRAPHITE -> GIMPLE. */
122 if (flag_graphite_identity)
123 transform_done = true;
125 if (flag_loop_parallelize_all)
126 transform_done = true;
128 if (flag_loop_optimize_isl)
129 transform_done |= optimize_isl (scop);
131 return transform_done;
134 /* Create a new polyhedral data reference and add it to PBB. It is
135 defined by its ACCESSES, its TYPE, and the number of subscripts
136 NB_SUBSCRIPTS. */
138 void
139 new_poly_dr (poly_bb_p pbb, int dr_base_object_set,
140 enum poly_dr_type type, void *cdr, graphite_dim_t nb_subscripts,
141 isl_map *acc, isl_set *subscript_sizes)
143 static int id = 0;
144 poly_dr_p pdr = XNEW (struct poly_dr);
146 PDR_ID (pdr) = id++;
147 PDR_BASE_OBJECT_SET (pdr) = dr_base_object_set;
148 PDR_NB_REFS (pdr) = 1;
149 PDR_PBB (pdr) = pbb;
150 pdr->accesses = acc;
151 pdr->subscript_sizes = subscript_sizes;
152 PDR_TYPE (pdr) = type;
153 PDR_CDR (pdr) = cdr;
154 PDR_NB_SUBSCRIPTS (pdr) = nb_subscripts;
155 PBB_DRS (pbb).safe_push (pdr);
158 /* Free polyhedral data reference PDR. */
160 void
161 free_poly_dr (poly_dr_p pdr)
163 isl_map_free (pdr->accesses);
164 isl_set_free (pdr->subscript_sizes);
165 XDELETE (pdr);
168 /* Create a new polyhedral black box. */
170 poly_bb_p
171 new_poly_bb (scop_p scop, void *black_box)
173 poly_bb_p pbb = XNEW (struct poly_bb);
175 pbb->domain = NULL;
176 pbb->schedule = NULL;
177 pbb->transformed = NULL;
178 pbb->saved = NULL;
179 PBB_SCOP (pbb) = scop;
180 pbb_set_black_box (pbb, black_box);
181 PBB_DRS (pbb).create (3);
182 PBB_IS_REDUCTION (pbb) = false;
183 GBB_PBB ((gimple_bb_p) black_box) = pbb;
185 return pbb;
188 /* Free polyhedral black box. */
190 void
191 free_poly_bb (poly_bb_p pbb)
193 int i;
194 poly_dr_p pdr;
196 isl_set_free (pbb->domain);
197 isl_map_free (pbb->schedule);
198 isl_map_free (pbb->transformed);
199 isl_map_free (pbb->saved);
201 if (PBB_DRS (pbb).exists ())
202 FOR_EACH_VEC_ELT (PBB_DRS (pbb), i, pdr)
203 free_poly_dr (pdr);
205 PBB_DRS (pbb).release ();
206 XDELETE (pbb);
209 /* Prints to FILE the polyhedral data reference PDR, at some VERBOSITY
210 level. */
212 void
213 print_pdr (FILE *file, poly_dr_p pdr, int verbosity)
215 if (verbosity > 1)
217 fprintf (file, "# pdr_%d (", PDR_ID (pdr));
219 switch (PDR_TYPE (pdr))
221 case PDR_READ:
222 fprintf (file, "read \n");
223 break;
225 case PDR_WRITE:
226 fprintf (file, "write \n");
227 break;
229 case PDR_MAY_WRITE:
230 fprintf (file, "may_write \n");
231 break;
233 default:
234 gcc_unreachable ();
237 dump_data_reference (file, (data_reference_p) PDR_CDR (pdr));
240 if (verbosity > 0)
242 fprintf (file, "# data accesses (\n");
243 print_isl_map (file, pdr->accesses);
244 print_isl_set (file, pdr->subscript_sizes);
245 fprintf (file, "#)\n");
247 if (verbosity > 1)
248 fprintf (file, "#)\n");
251 /* Prints to STDERR the polyhedral data reference PDR, at some
252 VERBOSITY level. */
254 DEBUG_FUNCTION void
255 debug_pdr (poly_dr_p pdr, int verbosity)
257 print_pdr (stderr, pdr, verbosity);
260 /* Creates a new SCOP containing REGION. */
262 scop_p
263 new_scop (sese region)
265 scop_p scop = XNEW (struct scop);
267 scop->context = NULL;
268 scop->must_raw = NULL;
269 scop->may_raw = NULL;
270 scop->must_raw_no_source = NULL;
271 scop->may_raw_no_source = NULL;
272 scop->must_war = NULL;
273 scop->may_war = NULL;
274 scop->must_war_no_source = NULL;
275 scop->may_war_no_source = NULL;
276 scop->must_waw = NULL;
277 scop->may_waw = NULL;
278 scop->must_waw_no_source = NULL;
279 scop->may_waw_no_source = NULL;
280 scop_set_region (scop, region);
281 SCOP_BBS (scop).create (3);
282 POLY_SCOP_P (scop) = false;
284 return scop;
287 /* Deletes SCOP. */
289 void
290 free_scop (scop_p scop)
292 int i;
293 poly_bb_p pbb;
295 FOR_EACH_VEC_ELT (SCOP_BBS (scop), i, pbb)
296 free_poly_bb (pbb);
298 SCOP_BBS (scop).release ();
300 isl_set_free (scop->context);
301 isl_union_map_free (scop->must_raw);
302 isl_union_map_free (scop->may_raw);
303 isl_union_map_free (scop->must_raw_no_source);
304 isl_union_map_free (scop->may_raw_no_source);
305 isl_union_map_free (scop->must_war);
306 isl_union_map_free (scop->may_war);
307 isl_union_map_free (scop->must_war_no_source);
308 isl_union_map_free (scop->may_war_no_source);
309 isl_union_map_free (scop->must_waw);
310 isl_union_map_free (scop->may_waw);
311 isl_union_map_free (scop->must_waw_no_source);
312 isl_union_map_free (scop->may_waw_no_source);
313 XDELETE (scop);
316 /* Print to FILE the domain of PBB, at some VERBOSITY level. */
318 void
319 print_pbb_domain (FILE *file, poly_bb_p pbb, int verbosity ATTRIBUTE_UNUSED)
321 print_isl_set (file, pbb->domain);
324 /* Dump the cases of a graphite basic block GBB on FILE. */
326 static void
327 dump_gbb_cases (FILE *file, gimple_bb_p gbb)
329 int i;
330 gimple stmt;
331 vec<gimple> cases;
333 if (!gbb)
334 return;
336 cases = GBB_CONDITION_CASES (gbb);
337 if (cases.is_empty ())
338 return;
340 fprintf (file, "# cases bb_%d (\n", GBB_BB (gbb)->index);
342 FOR_EACH_VEC_ELT (cases, i, stmt)
344 fprintf (file, "# ");
345 print_gimple_stmt (file, stmt, 0, 0);
348 fprintf (file, "#)\n");
351 /* Dump conditions of a graphite basic block GBB on FILE. */
353 static void
354 dump_gbb_conditions (FILE *file, gimple_bb_p gbb)
356 int i;
357 gimple stmt;
358 vec<gimple> conditions;
360 if (!gbb)
361 return;
363 conditions = GBB_CONDITIONS (gbb);
364 if (conditions.is_empty ())
365 return;
367 fprintf (file, "# conditions bb_%d (\n", GBB_BB (gbb)->index);
369 FOR_EACH_VEC_ELT (conditions, i, stmt)
371 fprintf (file, "# ");
372 print_gimple_stmt (file, stmt, 0, 0);
375 fprintf (file, "#)\n");
378 /* Print to FILE all the data references of PBB, at some VERBOSITY
379 level. */
381 void
382 print_pdrs (FILE *file, poly_bb_p pbb, int verbosity)
384 int i;
385 poly_dr_p pdr;
386 int nb_reads = 0;
387 int nb_writes = 0;
389 if (PBB_DRS (pbb).length () == 0)
391 if (verbosity > 0)
392 fprintf (file, "# Access informations are not provided\n");\
393 fprintf (file, "0\n");
394 return;
397 if (verbosity > 1)
398 fprintf (file, "# Data references (\n");
400 if (verbosity > 0)
401 fprintf (file, "# Access informations are provided\n");
402 fprintf (file, "1\n");
404 FOR_EACH_VEC_ELT (PBB_DRS (pbb), i, pdr)
405 if (PDR_TYPE (pdr) == PDR_READ)
406 nb_reads++;
407 else
408 nb_writes++;
410 if (verbosity > 1)
411 fprintf (file, "# Read data references (\n");
413 if (verbosity > 0)
414 fprintf (file, "# Read access informations\n");
415 fprintf (file, "%d\n", nb_reads);
417 FOR_EACH_VEC_ELT (PBB_DRS (pbb), i, pdr)
418 if (PDR_TYPE (pdr) == PDR_READ)
419 print_pdr (file, pdr, verbosity);
421 if (verbosity > 1)
422 fprintf (file, "#)\n");
424 if (verbosity > 1)
425 fprintf (file, "# Write data references (\n");
427 if (verbosity > 0)
428 fprintf (file, "# Write access informations\n");
429 fprintf (file, "%d\n", nb_writes);
431 FOR_EACH_VEC_ELT (PBB_DRS (pbb), i, pdr)
432 if (PDR_TYPE (pdr) != PDR_READ)
433 print_pdr (file, pdr, verbosity);
435 if (verbosity > 1)
436 fprintf (file, "#)\n");
438 if (verbosity > 1)
439 fprintf (file, "#)\n");
442 /* Print to STDERR all the data references of PBB. */
444 DEBUG_FUNCTION void
445 debug_pdrs (poly_bb_p pbb, int verbosity)
447 print_pdrs (stderr, pbb, verbosity);
450 /* Print to FILE the body of PBB, at some VERBOSITY level.
451 If statement_body_provided is false statement body is not printed. */
453 static void
454 print_pbb_body (FILE *file, poly_bb_p pbb, int verbosity,
455 bool statement_body_provided)
457 if (verbosity > 1)
458 fprintf (file, "# Body (\n");
460 if (!statement_body_provided)
462 if (verbosity > 0)
463 fprintf (file, "# Statement body is not provided\n");
465 fprintf (file, "0\n");
467 if (verbosity > 1)
468 fprintf (file, "#)\n");
469 return;
472 if (verbosity > 0)
473 fprintf (file, "# Statement body is provided\n");
474 fprintf (file, "1\n");
476 if (verbosity > 0)
477 fprintf (file, "# Original iterator names\n# Iterator names are not provided yet.\n");
479 if (verbosity > 0)
480 fprintf (file, "# Statement body\n");
482 fprintf (file, "{\n");
483 dump_bb (file, pbb_bb (pbb), 0, 0);
484 fprintf (file, "}\n");
486 if (verbosity > 1)
487 fprintf (file, "#)\n");
490 /* Print to FILE the domain and scattering function of PBB, at some
491 VERBOSITY level. */
493 void
494 print_pbb (FILE *file, poly_bb_p pbb, int verbosity)
496 if (verbosity > 1)
498 fprintf (file, "# pbb_%d (\n", pbb_index (pbb));
499 dump_gbb_conditions (file, PBB_BLACK_BOX (pbb));
500 dump_gbb_cases (file, PBB_BLACK_BOX (pbb));
503 print_pbb_domain (file, pbb, verbosity);
504 print_pdrs (file, pbb, verbosity);
505 print_pbb_body (file, pbb, verbosity, false);
507 if (verbosity > 1)
508 fprintf (file, "#)\n");
511 /* Print to FILE the parameters of SCOP, at some VERBOSITY level. */
513 void
514 print_scop_params (FILE *file, scop_p scop, int verbosity)
516 int i;
517 tree t;
519 if (verbosity > 1)
520 fprintf (file, "# parameters (\n");
522 if (SESE_PARAMS (SCOP_REGION (scop)).length ())
524 if (verbosity > 0)
525 fprintf (file, "# Parameter names are provided\n");
527 fprintf (file, "1\n");
529 if (verbosity > 0)
530 fprintf (file, "# Parameter names\n");
532 else
534 if (verbosity > 0)
535 fprintf (file, "# Parameter names are not provided\n");
536 fprintf (file, "0\n");
539 FOR_EACH_VEC_ELT (SESE_PARAMS (SCOP_REGION (scop)), i, t)
541 print_generic_expr (file, t, 0);
542 fprintf (file, " ");
545 fprintf (file, "\n");
547 if (verbosity > 1)
548 fprintf (file, "#)\n");
551 /* Print to FILE the context of SCoP, at some VERBOSITY level. */
553 void
554 print_scop_context (FILE *file, scop_p scop, int verbosity)
556 if (verbosity > 0)
557 fprintf (file, "# Context (\n");
559 if (scop->context)
560 print_isl_set (file, scop->context);
562 if (verbosity > 0)
563 fprintf (file, "# )\n");
566 /* Print to FILE the SCOP, at some VERBOSITY level. */
568 void
569 print_scop (FILE *file, scop_p scop, int verbosity)
571 int i;
572 poly_bb_p pbb;
574 fprintf (file, "SCoP 1\n#(\n");
575 fprintf (file, "# Language\nGimple\n");
576 print_scop_context (file, scop, verbosity);
577 print_scop_params (file, scop, verbosity);
579 if (verbosity > 0)
580 fprintf (file, "# Number of statements\n");
582 fprintf (file, "%d\n", SCOP_BBS (scop).length ());
584 FOR_EACH_VEC_ELT (SCOP_BBS (scop), i, pbb)
585 print_pbb (file, pbb, verbosity);
587 fprintf (file, "#)\n");
590 /* Print to STDERR the domain of PBB, at some VERBOSITY level. */
592 DEBUG_FUNCTION void
593 debug_pbb_domain (poly_bb_p pbb, int verbosity)
595 print_pbb_domain (stderr, pbb, verbosity);
598 /* Print to FILE the domain and scattering function of PBB, at some
599 VERBOSITY level. */
601 DEBUG_FUNCTION void
602 debug_pbb (poly_bb_p pbb, int verbosity)
604 print_pbb (stderr, pbb, verbosity);
607 /* Print to STDERR the context of SCOP, at some VERBOSITY level. */
609 DEBUG_FUNCTION void
610 debug_scop_context (scop_p scop, int verbosity)
612 print_scop_context (stderr, scop, verbosity);
615 /* Print to STDERR the SCOP, at some VERBOSITY level. */
617 DEBUG_FUNCTION void
618 debug_scop (scop_p scop, int verbosity)
620 print_scop (stderr, scop, verbosity);
623 /* Print to STDERR the parameters of SCOP, at some VERBOSITY
624 level. */
626 DEBUG_FUNCTION void
627 debug_scop_params (scop_p scop, int verbosity)
629 print_scop_params (stderr, scop, verbosity);
632 extern isl_ctx *the_isl_ctx;
633 void
634 print_isl_set (FILE *f, isl_set *set)
636 isl_printer *p = isl_printer_to_file (the_isl_ctx, f);
637 p = isl_printer_print_set (p, set);
638 p = isl_printer_print_str (p, "\n");
639 isl_printer_free (p);
642 DEBUG_FUNCTION void
643 debug_isl_set (isl_set *set)
645 print_isl_set (stderr, set);
648 void
649 print_isl_map (FILE *f, isl_map *map)
651 isl_printer *p = isl_printer_to_file (the_isl_ctx, f);
652 p = isl_printer_print_map (p, map);
653 p = isl_printer_print_str (p, "\n");
654 isl_printer_free (p);
657 DEBUG_FUNCTION void
658 debug_isl_map (isl_map *map)
660 print_isl_map (stderr, map);
663 void
664 print_isl_aff (FILE *f, isl_aff *aff)
666 isl_printer *p = isl_printer_to_file (the_isl_ctx, f);
667 p = isl_printer_print_aff (p, aff);
668 p = isl_printer_print_str (p, "\n");
669 isl_printer_free (p);
672 DEBUG_FUNCTION void
673 debug_isl_aff (isl_aff *aff)
675 print_isl_aff (stderr, aff);
678 void
679 print_isl_constraint (FILE *f, isl_constraint *c)
681 isl_printer *p = isl_printer_to_file (the_isl_ctx, f);
682 p = isl_printer_print_constraint (p, c);
683 p = isl_printer_print_str (p, "\n");
684 isl_printer_free (p);
687 DEBUG_FUNCTION void
688 debug_isl_constraint (isl_constraint *c)
690 print_isl_constraint (stderr, c);
693 /* Returns the number of iterations RES of the loop around PBB at
694 time(scattering) dimension TIME_DEPTH. */
696 void
697 pbb_number_of_iterations_at_time (poly_bb_p pbb,
698 graphite_dim_t time_depth,
699 mpz_t res)
701 isl_set *transdomain;
702 isl_space *dc;
703 isl_aff *aff;
704 isl_val *isllb, *islub;
706 /* Map the iteration domain through the current scatter, and work
707 on the resulting set. */
708 transdomain = isl_set_apply (isl_set_copy (pbb->domain),
709 isl_map_copy (pbb->transformed));
711 /* Select the time_depth' dimension via an affine expression. */
712 dc = isl_set_get_space (transdomain);
713 aff = isl_aff_zero_on_domain (isl_local_space_from_space (dc));
714 aff = isl_aff_set_coefficient_si (aff, isl_dim_in, time_depth, 1);
716 /* And find the min/max for that function. */
717 /* XXX isl check results? */
718 isllb = isl_set_min_val (transdomain, aff);
719 islub = isl_set_max_val (transdomain, aff);
721 islub = isl_val_sub (islub, isllb);
722 islub = isl_val_add_ui (islub, 1);
723 isl_val_get_num_gmp (islub, res);
725 isl_val_free (islub);
726 isl_aff_free (aff);
727 isl_set_free (transdomain);
730 #endif /* HAVE_isl */