gcc/testsuite/
[official-gcc.git] / gcc / graphite-poly.c
blob4ca62f9afbd64bc4404ad40b2f4bc8a9c3e7169d
1 /* Graphite polyhedral representation.
2 Copyright (C) 2009-2014 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_cloog
25 #include <isl/set.h>
26 #include <isl/map.h>
27 #include <isl/union_map.h>
28 #include <isl/constraint.h>
29 #include <isl/ilp.h>
30 #include <isl/aff.h>
31 #include <cloog/cloog.h>
32 #include <cloog/isl/domain.h>
33 #endif
35 #include "system.h"
36 #include "coretypes.h"
37 #include "diagnostic-core.h"
38 #include "tree.h"
39 #include "basic-block.h"
40 #include "tree-ssa-alias.h"
41 #include "internal-fn.h"
42 #include "gimple-expr.h"
43 #include "is-a.h"
44 #include "gimple.h"
45 #include "gimple-iterator.h"
46 #include "tree-ssa-loop.h"
47 #include "dumpfile.h"
48 #include "gimple-pretty-print.h"
49 #include "cfgloop.h"
50 #include "tree-chrec.h"
51 #include "tree-data-ref.h"
52 #include "tree-scalar-evolution.h"
53 #include "sese.h"
55 #ifdef HAVE_cloog
56 #include "graphite-poly.h"
58 #define OPENSCOP_MAX_STRING 256
61 /* Print to STDERR the GMP value VAL. */
63 DEBUG_FUNCTION void
64 debug_gmp_value (mpz_t val)
66 gmp_fprintf (stderr, "%Zd", val);
69 /* Return the maximal loop depth in SCOP. */
71 int
72 scop_max_loop_depth (scop_p scop)
74 int i;
75 poly_bb_p pbb;
76 int max_nb_loops = 0;
78 FOR_EACH_VEC_ELT (SCOP_BBS (scop), i, pbb)
80 int nb_loops = pbb_dim_iter_domain (pbb);
81 if (max_nb_loops < nb_loops)
82 max_nb_loops = nb_loops;
85 return max_nb_loops;
88 /* Prints to FILE the scattering function of PBB, at some VERBOSITY
89 level. */
91 static void
92 print_scattering_function_1 (FILE *file, poly_bb_p pbb, int verbosity)
94 graphite_dim_t i;
96 if (verbosity > 0)
98 fprintf (file, "# scattering bb_%d (\n", pbb_index (pbb));
99 fprintf (file, "#eq");
101 for (i = 0; i < pbb_nb_scattering_transform (pbb); i++)
102 fprintf (file, " s%d", (int) i);
104 for (i = 0; i < pbb_nb_local_vars (pbb); i++)
105 fprintf (file, " lv%d", (int) i);
107 for (i = 0; i < pbb_dim_iter_domain (pbb); i++)
108 fprintf (file, " i%d", (int) i);
110 for (i = 0; i < pbb_nb_params (pbb); i++)
111 fprintf (file, " p%d", (int) i);
113 fprintf (file, " cst\n");
116 fprintf (file, "isl\n");
117 print_isl_map (file, pbb->transformed ? pbb->transformed : pbb->schedule);
119 if (verbosity > 0)
120 fprintf (file, "#)\n");
123 /* Prints to FILE the scattering function of PBB, at some VERBOSITY
124 level. */
126 void
127 print_scattering_function (FILE *file, poly_bb_p pbb, int verbosity)
129 if (!PBB_TRANSFORMED (pbb))
130 return;
132 if (pbb->schedule || pbb->transformed)
134 if (verbosity > 0)
135 fprintf (file, "# Scattering function is provided\n");
137 fprintf (file, "1\n");
139 else
141 if (verbosity > 0)
142 fprintf (file, "# Scattering function is not provided\n");
144 fprintf (file, "0\n");
145 return;
148 print_scattering_function_1 (file, pbb, verbosity);
150 if (verbosity > 0)
151 fprintf (file, "# Scattering names are not provided\n");
153 fprintf (file, "0\n");
157 /* Prints to FILE the iteration domain of PBB, at some VERBOSITY
158 level. */
160 void
161 print_iteration_domain (FILE *file, poly_bb_p pbb, int verbosity)
163 print_pbb_domain (file, pbb, verbosity);
166 /* Prints to FILE the scattering functions of every PBB of SCOP. */
168 void
169 print_scattering_functions (FILE *file, scop_p scop, int verbosity)
171 int i;
172 poly_bb_p pbb;
174 FOR_EACH_VEC_ELT (SCOP_BBS (scop), i, pbb)
175 print_scattering_function (file, pbb, verbosity);
178 /* Prints to FILE the iteration domains of every PBB of SCOP, at some
179 VERBOSITY level. */
181 void
182 print_iteration_domains (FILE *file, scop_p scop, int verbosity)
184 int i;
185 poly_bb_p pbb;
187 FOR_EACH_VEC_ELT (SCOP_BBS (scop), i, pbb)
188 print_iteration_domain (file, pbb, verbosity);
191 /* Prints to STDERR the scattering function of PBB, at some VERBOSITY
192 level. */
194 DEBUG_FUNCTION void
195 debug_scattering_function (poly_bb_p pbb, int verbosity)
197 print_scattering_function (stderr, pbb, verbosity);
200 /* Prints to STDERR the iteration domain of PBB, at some VERBOSITY
201 level. */
203 DEBUG_FUNCTION void
204 debug_iteration_domain (poly_bb_p pbb, int verbosity)
206 print_iteration_domain (stderr, pbb, verbosity);
209 /* Prints to STDERR the scattering functions of every PBB of SCOP, at
210 some VERBOSITY level. */
212 DEBUG_FUNCTION void
213 debug_scattering_functions (scop_p scop, int verbosity)
215 print_scattering_functions (stderr, scop, verbosity);
218 /* Prints to STDERR the iteration domains of every PBB of SCOP, at
219 some VERBOSITY level. */
221 DEBUG_FUNCTION void
222 debug_iteration_domains (scop_p scop, int verbosity)
224 print_iteration_domains (stderr, scop, verbosity);
227 /* Apply graphite transformations to all the basic blocks of SCOP. */
229 bool
230 apply_poly_transforms (scop_p scop)
232 bool transform_done = false;
234 /* Generate code even if we did not apply any real transformation.
235 This also allows to check the performance for the identity
236 transformation: GIMPLE -> GRAPHITE -> GIMPLE
237 Keep in mind that CLooG optimizes in control, so the loop structure
238 may change, even if we only use -fgraphite-identity. */
239 if (flag_graphite_identity)
240 transform_done = true;
242 if (flag_loop_parallelize_all)
243 transform_done = true;
245 if (flag_loop_block)
246 transform_done |= scop_do_block (scop);
247 else
249 if (flag_loop_strip_mine)
250 transform_done |= scop_do_strip_mine (scop, 0);
252 if (flag_loop_interchange)
253 transform_done |= scop_do_interchange (scop);
256 /* This pass needs to be run at the final stage, as it does not
257 update the lst. */
258 if (flag_loop_optimize_isl)
259 transform_done |= optimize_isl (scop);
261 return transform_done;
264 /* Create a new polyhedral data reference and add it to PBB. It is
265 defined by its ACCESSES, its TYPE, and the number of subscripts
266 NB_SUBSCRIPTS. */
268 void
269 new_poly_dr (poly_bb_p pbb, int dr_base_object_set,
270 enum poly_dr_type type, void *cdr, graphite_dim_t nb_subscripts,
271 isl_map *acc, isl_set *extent)
273 static int id = 0;
274 poly_dr_p pdr = XNEW (struct poly_dr);
276 PDR_ID (pdr) = id++;
277 PDR_BASE_OBJECT_SET (pdr) = dr_base_object_set;
278 PDR_NB_REFS (pdr) = 1;
279 PDR_PBB (pdr) = pbb;
280 pdr->accesses = acc;
281 pdr->extent = extent;
282 PDR_TYPE (pdr) = type;
283 PDR_CDR (pdr) = cdr;
284 PDR_NB_SUBSCRIPTS (pdr) = nb_subscripts;
285 PBB_DRS (pbb).safe_push (pdr);
288 /* Free polyhedral data reference PDR. */
290 void
291 free_poly_dr (poly_dr_p pdr)
293 isl_map_free (pdr->accesses);
294 isl_set_free (pdr->extent);
295 XDELETE (pdr);
298 /* Create a new polyhedral black box. */
300 poly_bb_p
301 new_poly_bb (scop_p scop, void *black_box)
303 poly_bb_p pbb = XNEW (struct poly_bb);
305 pbb->domain = NULL;
306 pbb->schedule = NULL;
307 pbb->transformed = NULL;
308 pbb->saved = NULL;
309 PBB_SCOP (pbb) = scop;
310 pbb_set_black_box (pbb, black_box);
311 PBB_TRANSFORMED (pbb) = NULL;
312 PBB_SAVED (pbb) = NULL;
313 PBB_ORIGINAL (pbb) = NULL;
314 PBB_DRS (pbb).create (3);
315 PBB_IS_REDUCTION (pbb) = false;
316 GBB_PBB ((gimple_bb_p) black_box) = pbb;
318 return pbb;
321 /* Free polyhedral black box. */
323 void
324 free_poly_bb (poly_bb_p pbb)
326 int i;
327 poly_dr_p pdr;
329 isl_set_free (pbb->domain);
330 isl_map_free (pbb->schedule);
331 isl_map_free (pbb->transformed);
332 isl_map_free (pbb->saved);
334 if (PBB_DRS (pbb).exists ())
335 FOR_EACH_VEC_ELT (PBB_DRS (pbb), i, pdr)
336 free_poly_dr (pdr);
338 PBB_DRS (pbb).release ();
339 XDELETE (pbb);
342 static void
343 print_pdr_access_layout (FILE *file, poly_bb_p pbb, poly_dr_p pdr)
345 graphite_dim_t i;
347 fprintf (file, "# eq");
349 fprintf (file, " alias");
351 for (i = 0; i < PDR_NB_SUBSCRIPTS (pdr); i++)
352 fprintf (file, " sub%d", (int) i);
354 for (i = 0; i < pbb_dim_iter_domain (pbb); i++)
355 fprintf (file, " i%d", (int) i);
357 for (i = 0; i < pbb_nb_params (pbb); i++)
358 fprintf (file, " p%d", (int) i);
360 fprintf (file, " cst\n");
363 /* Prints to FILE the polyhedral data reference PDR, at some VERBOSITY
364 level. */
366 void
367 print_pdr (FILE *file, poly_dr_p pdr, int verbosity)
369 if (verbosity > 1)
371 fprintf (file, "# pdr_%d (", PDR_ID (pdr));
373 switch (PDR_TYPE (pdr))
375 case PDR_READ:
376 fprintf (file, "read \n");
377 break;
379 case PDR_WRITE:
380 fprintf (file, "write \n");
381 break;
383 case PDR_MAY_WRITE:
384 fprintf (file, "may_write \n");
385 break;
387 default:
388 gcc_unreachable ();
391 dump_data_reference (file, (data_reference_p) PDR_CDR (pdr));
394 if (verbosity > 0)
396 fprintf (file, "# data accesses (\n");
397 print_pdr_access_layout (file, PDR_PBB (pdr), pdr);
400 /* XXX isl dump accesses/subscripts */
402 if (verbosity > 0)
403 fprintf (file, "#)\n");
405 if (verbosity > 1)
406 fprintf (file, "#)\n");
409 /* Prints to STDERR the polyhedral data reference PDR, at some
410 VERBOSITY level. */
412 DEBUG_FUNCTION void
413 debug_pdr (poly_dr_p pdr, int verbosity)
415 print_pdr (stderr, pdr, verbosity);
418 /* Creates a new SCOP containing REGION. */
420 scop_p
421 new_scop (void *region)
423 scop_p scop = XNEW (struct scop);
425 scop->context = NULL;
426 scop->must_raw = NULL;
427 scop->may_raw = NULL;
428 scop->must_raw_no_source = NULL;
429 scop->may_raw_no_source = NULL;
430 scop->must_war = NULL;
431 scop->may_war = NULL;
432 scop->must_war_no_source = NULL;
433 scop->may_war_no_source = NULL;
434 scop->must_waw = NULL;
435 scop->may_waw = NULL;
436 scop->must_waw_no_source = NULL;
437 scop->may_waw_no_source = NULL;
438 scop_set_region (scop, region);
439 SCOP_BBS (scop).create (3);
440 SCOP_ORIGINAL_SCHEDULE (scop) = NULL;
441 SCOP_TRANSFORMED_SCHEDULE (scop) = NULL;
442 SCOP_SAVED_SCHEDULE (scop) = NULL;
443 POLY_SCOP_P (scop) = false;
445 return scop;
448 /* Deletes SCOP. */
450 void
451 free_scop (scop_p scop)
453 int i;
454 poly_bb_p pbb;
456 FOR_EACH_VEC_ELT (SCOP_BBS (scop), i, pbb)
457 free_poly_bb (pbb);
459 SCOP_BBS (scop).release ();
461 isl_set_free (scop->context);
462 isl_union_map_free (scop->must_raw);
463 isl_union_map_free (scop->may_raw);
464 isl_union_map_free (scop->must_raw_no_source);
465 isl_union_map_free (scop->may_raw_no_source);
466 isl_union_map_free (scop->must_war);
467 isl_union_map_free (scop->may_war);
468 isl_union_map_free (scop->must_war_no_source);
469 isl_union_map_free (scop->may_war_no_source);
470 isl_union_map_free (scop->must_waw);
471 isl_union_map_free (scop->may_waw);
472 isl_union_map_free (scop->must_waw_no_source);
473 isl_union_map_free (scop->may_waw_no_source);
474 free_lst (SCOP_ORIGINAL_SCHEDULE (scop));
475 free_lst (SCOP_TRANSFORMED_SCHEDULE (scop));
476 free_lst (SCOP_SAVED_SCHEDULE (scop));
477 XDELETE (scop);
480 /* Print to FILE the domain of PBB in OpenScop format, at some VERBOSITY
481 level. */
483 static void
484 openscop_print_pbb_domain (FILE *file, poly_bb_p pbb, int verbosity)
486 graphite_dim_t i;
487 gimple_bb_p gbb = PBB_BLACK_BOX (pbb);
489 if (!pbb->domain)
490 return;
492 if (verbosity > 0)
494 fprintf (file, "\n# Iteration domain of bb_%d (\n", GBB_BB (gbb)->index);
495 fprintf (file, "#eq");
497 for (i = 0; i < pbb_dim_iter_domain (pbb); i++)
498 fprintf (file, " i%d", (int) i);
500 for (i = 0; i < pbb_nb_params (pbb); i++)
501 fprintf (file, " p%d", (int) i);
503 fprintf (file, " cst\n");
506 fprintf (file, "XXX isl\n");
508 if (verbosity > 0)
509 fprintf (file, "#)\n");
512 /* Print to FILE the domain of PBB, at some VERBOSITY level. */
514 void
515 print_pbb_domain (FILE *file, poly_bb_p pbb, int verbosity ATTRIBUTE_UNUSED)
517 print_isl_set (file, pbb->domain);
520 /* Dump the cases of a graphite basic block GBB on FILE. */
522 static void
523 dump_gbb_cases (FILE *file, gimple_bb_p gbb)
525 int i;
526 gimple stmt;
527 vec<gimple> cases;
529 if (!gbb)
530 return;
532 cases = GBB_CONDITION_CASES (gbb);
533 if (cases.is_empty ())
534 return;
536 fprintf (file, "# cases bb_%d (\n", GBB_BB (gbb)->index);
538 FOR_EACH_VEC_ELT (cases, i, stmt)
540 fprintf (file, "# ");
541 print_gimple_stmt (file, stmt, 0, 0);
544 fprintf (file, "#)\n");
547 /* Dump conditions of a graphite basic block GBB on FILE. */
549 static void
550 dump_gbb_conditions (FILE *file, gimple_bb_p gbb)
552 int i;
553 gimple stmt;
554 vec<gimple> conditions;
556 if (!gbb)
557 return;
559 conditions = GBB_CONDITIONS (gbb);
560 if (conditions.is_empty ())
561 return;
563 fprintf (file, "# conditions bb_%d (\n", GBB_BB (gbb)->index);
565 FOR_EACH_VEC_ELT (conditions, i, stmt)
567 fprintf (file, "# ");
568 print_gimple_stmt (file, stmt, 0, 0);
571 fprintf (file, "#)\n");
574 /* Print to FILE all the data references of PBB, at some VERBOSITY
575 level. */
577 void
578 print_pdrs (FILE *file, poly_bb_p pbb, int verbosity)
580 int i;
581 poly_dr_p pdr;
582 int nb_reads = 0;
583 int nb_writes = 0;
585 if (PBB_DRS (pbb).length () == 0)
587 if (verbosity > 0)
588 fprintf (file, "# Access informations are not provided\n");\
589 fprintf (file, "0\n");
590 return;
593 if (verbosity > 1)
594 fprintf (file, "# Data references (\n");
596 if (verbosity > 0)
597 fprintf (file, "# Access informations are provided\n");
598 fprintf (file, "1\n");
600 FOR_EACH_VEC_ELT (PBB_DRS (pbb), i, pdr)
601 if (PDR_TYPE (pdr) == PDR_READ)
602 nb_reads++;
603 else
604 nb_writes++;
606 if (verbosity > 1)
607 fprintf (file, "# Read data references (\n");
609 if (verbosity > 0)
610 fprintf (file, "# Read access informations\n");
611 fprintf (file, "%d\n", nb_reads);
613 FOR_EACH_VEC_ELT (PBB_DRS (pbb), i, pdr)
614 if (PDR_TYPE (pdr) == PDR_READ)
615 print_pdr (file, pdr, verbosity);
617 if (verbosity > 1)
618 fprintf (file, "#)\n");
620 if (verbosity > 1)
621 fprintf (file, "# Write data references (\n");
623 if (verbosity > 0)
624 fprintf (file, "# Write access informations\n");
625 fprintf (file, "%d\n", nb_writes);
627 FOR_EACH_VEC_ELT (PBB_DRS (pbb), i, pdr)
628 if (PDR_TYPE (pdr) != PDR_READ)
629 print_pdr (file, pdr, verbosity);
631 if (verbosity > 1)
632 fprintf (file, "#)\n");
634 if (verbosity > 1)
635 fprintf (file, "#)\n");
638 /* Print to STDERR all the data references of PBB. */
640 DEBUG_FUNCTION void
641 debug_pdrs (poly_bb_p pbb, int verbosity)
643 print_pdrs (stderr, pbb, verbosity);
646 /* Print to FILE the body of PBB, at some VERBOSITY level.
647 If statement_body_provided is false statement body is not printed. */
649 static void
650 print_pbb_body (FILE *file, poly_bb_p pbb, int verbosity,
651 bool statement_body_provided)
653 if (verbosity > 1)
654 fprintf (file, "# Body (\n");
656 if (!statement_body_provided)
658 if (verbosity > 0)
659 fprintf (file, "# Statement body is not provided\n");
661 fprintf (file, "0\n");
663 if (verbosity > 1)
664 fprintf (file, "#)\n");
665 return;
668 if (verbosity > 0)
669 fprintf (file, "# Statement body is provided\n");
670 fprintf (file, "1\n");
672 if (verbosity > 0)
673 fprintf (file, "# Original iterator names\n# Iterator names are not provided yet.\n");
675 if (verbosity > 0)
676 fprintf (file, "# Statement body\n");
678 fprintf (file, "{\n");
679 dump_bb (file, pbb_bb (pbb), 0, 0);
680 fprintf (file, "}\n");
682 if (verbosity > 1)
683 fprintf (file, "#)\n");
686 /* Print to FILE the domain and scattering function of PBB, at some
687 VERBOSITY level. */
689 void
690 print_pbb (FILE *file, poly_bb_p pbb, int verbosity)
692 if (verbosity > 1)
694 fprintf (file, "# pbb_%d (\n", pbb_index (pbb));
695 dump_gbb_conditions (file, PBB_BLACK_BOX (pbb));
696 dump_gbb_cases (file, PBB_BLACK_BOX (pbb));
699 openscop_print_pbb_domain (file, pbb, verbosity);
700 print_scattering_function (file, pbb, verbosity);
701 print_pdrs (file, pbb, verbosity);
702 print_pbb_body (file, pbb, verbosity, false);
704 if (verbosity > 1)
705 fprintf (file, "#)\n");
708 /* Print to FILE the parameters of SCOP, at some VERBOSITY level. */
710 void
711 print_scop_params (FILE *file, scop_p scop, int verbosity)
713 int i;
714 tree t;
716 if (verbosity > 1)
717 fprintf (file, "# parameters (\n");
719 if (SESE_PARAMS (SCOP_REGION (scop)).length ())
721 if (verbosity > 0)
722 fprintf (file, "# Parameter names are provided\n");
724 fprintf (file, "1\n");
726 if (verbosity > 0)
727 fprintf (file, "# Parameter names\n");
729 else
731 if (verbosity > 0)
732 fprintf (file, "# Parameter names are not provided\n");
733 fprintf (file, "0\n");
736 FOR_EACH_VEC_ELT (SESE_PARAMS (SCOP_REGION (scop)), i, t)
738 print_generic_expr (file, t, 0);
739 fprintf (file, " ");
742 fprintf (file, "\n");
744 if (verbosity > 1)
745 fprintf (file, "#)\n");
748 /* Print to FILE the context of SCoP in OpenScop format, at some VERBOSITY
749 level. */
751 static void
752 openscop_print_scop_context (FILE *file, scop_p scop, int verbosity)
754 graphite_dim_t i;
756 if (verbosity > 0)
758 fprintf (file, "# Context (\n");
759 fprintf (file, "#eq");
761 for (i = 0; i < scop_nb_params (scop); i++)
762 fprintf (file, " p%d", (int) i);
764 fprintf (file, " cst\n");
767 if (scop->context)
768 /* XXX isl print context */
769 fprintf (file, "XXX isl\n");
770 else
771 fprintf (file, "0 %d 0 0 0 %d\n", (int) scop_nb_params (scop) + 2,
772 (int) scop_nb_params (scop));
774 if (verbosity > 0)
775 fprintf (file, "# )\n");
778 /* Print to FILE the context of SCoP, at some VERBOSITY level. */
780 void
781 print_scop_context (FILE *file, scop_p scop, int verbosity)
783 graphite_dim_t i;
785 if (verbosity > 0)
787 fprintf (file, "# Context (\n");
788 fprintf (file, "#eq");
790 for (i = 0; i < scop_nb_params (scop); i++)
791 fprintf (file, " p%d", (int) i);
793 fprintf (file, " cst\n");
796 if (scop->context)
797 print_isl_set (file, scop->context);
798 else
799 fprintf (file, "no isl context %d\n", (int) scop_nb_params (scop) + 2);
801 if (verbosity > 0)
802 fprintf (file, "# )\n");
805 /* Print to FILE the SCOP, at some VERBOSITY level. */
807 void
808 print_scop (FILE *file, scop_p scop, int verbosity)
810 int i;
811 poly_bb_p pbb;
813 fprintf (file, "SCoP 1\n#(\n");
814 fprintf (file, "# Language\nGimple\n");
815 openscop_print_scop_context (file, scop, verbosity);
816 print_scop_params (file, scop, verbosity);
818 if (verbosity > 0)
819 fprintf (file, "# Number of statements\n");
821 fprintf (file, "%d\n", SCOP_BBS (scop).length ());
823 FOR_EACH_VEC_ELT (SCOP_BBS (scop), i, pbb)
824 print_pbb (file, pbb, verbosity);
826 if (verbosity > 1)
828 fprintf (file, "# original_lst (\n");
829 print_lst (file, SCOP_ORIGINAL_SCHEDULE (scop), 0);
830 fprintf (file, "\n#)\n");
832 fprintf (file, "# transformed_lst (\n");
833 print_lst (file, SCOP_TRANSFORMED_SCHEDULE (scop), 0);
834 fprintf (file, "\n#)\n");
837 fprintf (file, "#)\n");
840 /* Print to FILE the input file that CLooG would expect as input, at
841 some VERBOSITY level. */
843 void
844 print_cloog (FILE *file, scop_p scop, int verbosity)
846 int i;
847 poly_bb_p pbb;
849 fprintf (file, "# SCoP (generated by GCC/Graphite\n");
850 if (verbosity > 0)
851 fprintf (file, "# CLooG output language\n");
852 fprintf (file, "c\n");
854 print_scop_context (file, scop, verbosity);
855 print_scop_params (file, scop, verbosity);
857 if (verbosity > 0)
858 fprintf (file, "# Number of statements\n");
860 fprintf (file, "%d\n", SCOP_BBS (scop).length ());
862 FOR_EACH_VEC_ELT (SCOP_BBS (scop), i, pbb)
864 if (verbosity > 1)
865 fprintf (file, "# pbb_%d (\n", pbb_index (pbb));
867 print_pbb_domain (file, pbb, verbosity);
868 fprintf (file, "0 0 0");
870 if (verbosity > 0)
871 fprintf (file, "# For future CLooG options.\n");
872 else
873 fprintf (file, "\n");
875 if (verbosity > 1)
876 fprintf (file, "#)\n");
879 fprintf (file, "0");
880 if (verbosity > 0)
881 fprintf (file, "# Don't set the iterator names.\n");
882 else
883 fprintf (file, "\n");
885 if (verbosity > 0)
886 fprintf (file, "# Number of scattering functions\n");
888 fprintf (file, "%d\n", SCOP_BBS (scop).length ());
890 FOR_EACH_VEC_ELT (SCOP_BBS (scop), i, pbb)
892 if (!(pbb->transformed || pbb->schedule))
893 continue;
895 if (verbosity > 1)
896 fprintf (file, "# pbb_%d (\n", pbb_index (pbb));
898 print_scattering_function_1 (file, pbb, verbosity);
900 if (verbosity > 1)
901 fprintf (file, "#)\n");
904 fprintf (file, "0");
905 if (verbosity > 0)
906 fprintf (file, "# Don't set the scattering dimension names.\n");
907 else
908 fprintf (file, "\n");
910 fprintf (file, "#)\n");
913 /* Print to STDERR the domain of PBB, at some VERBOSITY level. */
915 DEBUG_FUNCTION void
916 debug_pbb_domain (poly_bb_p pbb, int verbosity)
918 print_pbb_domain (stderr, pbb, verbosity);
921 /* Print to FILE the domain and scattering function of PBB, at some
922 VERBOSITY level. */
924 DEBUG_FUNCTION void
925 debug_pbb (poly_bb_p pbb, int verbosity)
927 print_pbb (stderr, pbb, verbosity);
930 /* Print to STDERR the context of SCOP, at some VERBOSITY level. */
932 DEBUG_FUNCTION void
933 debug_scop_context (scop_p scop, int verbosity)
935 print_scop_context (stderr, scop, verbosity);
938 /* Print to STDERR the SCOP, at some VERBOSITY level. */
940 DEBUG_FUNCTION void
941 debug_scop (scop_p scop, int verbosity)
943 print_scop (stderr, scop, verbosity);
946 /* Print to STDERR the SCOP under CLooG format, at some VERBOSITY
947 level. */
949 DEBUG_FUNCTION void
950 debug_cloog (scop_p scop, int verbosity)
952 print_cloog (stderr, scop, verbosity);
955 /* Print to STDERR the parameters of SCOP, at some VERBOSITY
956 level. */
958 DEBUG_FUNCTION void
959 debug_scop_params (scop_p scop, int verbosity)
961 print_scop_params (stderr, scop, verbosity);
964 extern isl_ctx *the_isl_ctx;
965 void
966 print_isl_set (FILE *f, isl_set *set)
968 isl_printer *p = isl_printer_to_file (the_isl_ctx, f);
969 p = isl_printer_print_set (p, set);
970 isl_printer_free (p);
973 DEBUG_FUNCTION void
974 debug_isl_set (isl_set *set)
976 print_isl_set (stderr, set);
979 void
980 print_isl_map (FILE *f, isl_map *map)
982 isl_printer *p = isl_printer_to_file (the_isl_ctx, f);
983 p = isl_printer_print_map (p, map);
984 isl_printer_free (p);
987 DEBUG_FUNCTION void
988 debug_isl_map (isl_map *map)
990 print_isl_map (stderr, map);
993 void
994 print_isl_aff (FILE *f, isl_aff *aff)
996 isl_printer *p = isl_printer_to_file (the_isl_ctx, f);
997 p = isl_printer_print_aff (p, aff);
998 isl_printer_free (p);
1001 DEBUG_FUNCTION void
1002 debug_isl_aff (isl_aff *aff)
1004 print_isl_aff (stderr, aff);
1007 void
1008 print_isl_constraint (FILE *f, isl_constraint *c)
1010 isl_printer *p = isl_printer_to_file (the_isl_ctx, f);
1011 p = isl_printer_print_constraint (p, c);
1012 isl_printer_free (p);
1015 DEBUG_FUNCTION void
1016 debug_isl_constraint (isl_constraint *c)
1018 print_isl_constraint (stderr, c);
1021 /* Returns the number of iterations RES of the loop around PBB at
1022 time(scattering) dimension TIME_DEPTH. */
1024 void
1025 pbb_number_of_iterations_at_time (poly_bb_p pbb,
1026 graphite_dim_t time_depth,
1027 mpz_t res)
1029 isl_set *transdomain;
1030 isl_space *dc;
1031 isl_aff *aff;
1032 isl_int isllb, islub;
1034 isl_int_init (isllb);
1035 isl_int_init (islub);
1037 /* Map the iteration domain through the current scatter, and work
1038 on the resulting set. */
1039 transdomain = isl_set_apply (isl_set_copy (pbb->domain),
1040 isl_map_copy (pbb->transformed));
1042 /* Select the time_depth' dimension via an affine expression. */
1043 dc = isl_set_get_space (transdomain);
1044 aff = isl_aff_zero_on_domain (isl_local_space_from_space (dc));
1045 aff = isl_aff_set_coefficient_si (aff, isl_dim_in, time_depth, 1);
1047 /* And find the min/max for that function. */
1048 /* XXX isl check results? */
1049 isl_set_min (transdomain, aff, &isllb);
1050 isl_set_max (transdomain, aff, &islub);
1052 isl_int_sub (islub, islub, isllb);
1053 isl_int_add_ui (islub, islub, 1);
1054 isl_int_get_gmp (islub, res);
1056 isl_int_clear (isllb);
1057 isl_int_clear (islub);
1058 isl_aff_free (aff);
1059 isl_set_free (transdomain);
1062 /* Translates LOOP to LST. */
1064 static lst_p
1065 loop_to_lst (loop_p loop, vec<poly_bb_p> bbs, int *i)
1067 poly_bb_p pbb;
1068 vec<lst_p> seq;
1069 seq.create (5);
1071 for (; bbs.iterate (*i, &pbb); (*i)++)
1073 lst_p stmt;
1074 basic_block bb = GBB_BB (PBB_BLACK_BOX (pbb));
1076 if (bb->loop_father == loop)
1077 stmt = new_lst_stmt (pbb);
1078 else if (flow_bb_inside_loop_p (loop, bb))
1080 loop_p next = loop->inner;
1082 while (next && !flow_bb_inside_loop_p (next, bb))
1083 next = next->next;
1085 stmt = loop_to_lst (next, bbs, i);
1087 else
1089 (*i)--;
1090 return new_lst_loop (seq);
1093 seq.safe_push (stmt);
1096 return new_lst_loop (seq);
1099 /* Reads the original scattering of the SCOP and returns an LST
1100 representing it. */
1102 void
1103 scop_to_lst (scop_p scop)
1105 lst_p res;
1106 int i, n = SCOP_BBS (scop).length ();
1107 vec<lst_p> seq;
1108 seq.create (5);
1109 sese region = SCOP_REGION (scop);
1111 for (i = 0; i < n; i++)
1113 poly_bb_p pbb = SCOP_BBS (scop)[i];
1114 loop_p loop = outermost_loop_in_sese (region, GBB_BB (PBB_BLACK_BOX (pbb)));
1116 if (loop_in_sese_p (loop, region))
1117 res = loop_to_lst (loop, SCOP_BBS (scop), &i);
1118 else
1119 res = new_lst_stmt (pbb);
1121 seq.safe_push (res);
1124 res = new_lst_loop (seq);
1125 SCOP_ORIGINAL_SCHEDULE (scop) = res;
1126 SCOP_TRANSFORMED_SCHEDULE (scop) = copy_lst (res);
1129 /* Print to FILE on a new line COLUMN white spaces. */
1131 static void
1132 lst_indent_to (FILE *file, int column)
1134 int i;
1136 if (column > 0)
1137 fprintf (file, "\n#");
1139 for (i = 0; i < column; i++)
1140 fprintf (file, " ");
1143 /* Print LST to FILE with INDENT spaces of indentation. */
1145 void
1146 print_lst (FILE *file, lst_p lst, int indent)
1148 if (!lst)
1149 return;
1151 lst_indent_to (file, indent);
1153 if (LST_LOOP_P (lst))
1155 int i;
1156 lst_p l;
1158 if (LST_LOOP_FATHER (lst))
1159 fprintf (file, "%d (loop", lst_dewey_number (lst));
1160 else
1161 fprintf (file, "#(root");
1163 FOR_EACH_VEC_ELT (LST_SEQ (lst), i, l)
1164 print_lst (file, l, indent + 2);
1166 fprintf (file, ")");
1168 else
1169 fprintf (file, "%d stmt_%d", lst_dewey_number (lst), pbb_index (LST_PBB (lst)));
1172 /* Print LST to STDERR. */
1174 DEBUG_FUNCTION void
1175 debug_lst (lst_p lst)
1177 print_lst (stderr, lst, 0);
1180 /* Pretty print to FILE the loop statement tree LST in DOT format. */
1182 static void
1183 dot_lst_1 (FILE *file, lst_p lst)
1185 if (!lst)
1186 return;
1188 if (LST_LOOP_P (lst))
1190 int i;
1191 lst_p l;
1193 if (!LST_LOOP_FATHER (lst))
1194 fprintf (file, "L -> L_%d_%d\n",
1195 lst_depth (lst),
1196 lst_dewey_number (lst));
1197 else
1198 fprintf (file, "L_%d_%d -> L_%d_%d\n",
1199 lst_depth (LST_LOOP_FATHER (lst)),
1200 lst_dewey_number (LST_LOOP_FATHER (lst)),
1201 lst_depth (lst),
1202 lst_dewey_number (lst));
1204 FOR_EACH_VEC_ELT (LST_SEQ (lst), i, l)
1205 dot_lst_1 (file, l);
1208 else
1209 fprintf (file, "L_%d_%d -> S_%d\n",
1210 lst_depth (LST_LOOP_FATHER (lst)),
1211 lst_dewey_number (LST_LOOP_FATHER (lst)),
1212 pbb_index (LST_PBB (lst)));
1216 /* Display the LST using dotty. */
1218 DEBUG_FUNCTION void
1219 dot_lst (lst_p lst)
1221 /* When debugging, enable the following code. This cannot be used
1222 in production compilers because it calls "system". */
1223 #if 0
1224 FILE *stream = fopen ("/tmp/lst.dot", "w");
1225 gcc_assert (stream);
1227 fputs ("digraph all {\n", stream);
1228 dot_lst_1 (stream, lst);
1229 fputs ("}\n\n", stream);
1230 fclose (stream);
1232 system ("dotty /tmp/lst.dot &");
1233 #else
1234 fputs ("digraph all {\n", stderr);
1235 dot_lst_1 (stderr, lst);
1236 fputs ("}\n\n", stderr);
1238 #endif
1241 /* Computes a checksum for the code generated by CLooG for SCOP. */
1243 DEBUG_FUNCTION void
1244 cloog_checksum (scop_p scop ATTRIBUTE_UNUSED)
1246 /* When debugging, enable the following code. This cannot be used
1247 in production compilers because it calls "system". */
1248 #if 0
1249 FILE *stream = fopen ("/tmp/scop.cloog", "w");
1250 gcc_assert (stream);
1251 print_cloog (stream, scop, 0);
1252 fclose (stream);
1254 fputs ("\n", stdout);
1255 system ("cloog -compilable 1 /tmp/scop.cloog > /tmp/scop.c ; gcc -O0 -g /tmp/scop.c -lm -o /tmp/scop; /tmp/scop | md5sum ");
1256 #endif
1259 /* Reverse the loop around PBB at level DEPTH. */
1261 isl_map *
1262 reverse_loop_at_level (poly_bb_p pbb, int depth)
1264 unsigned i, depth_dim = psct_dynamic_dim (pbb, depth);
1265 isl_space *d = isl_map_get_space (pbb->transformed);
1266 isl_space *d1 = isl_space_range (d);
1267 unsigned n = isl_space_dim (d1, isl_dim_out);
1268 isl_space *d2 = isl_space_add_dims (d1, isl_dim_in, n);
1269 isl_map *x = isl_map_universe (isl_space_copy (d2));
1270 isl_constraint *c = isl_equality_alloc (isl_local_space_from_space (d2));
1272 for (i = 0; i < n; i++)
1273 if (i != depth_dim)
1274 x = isl_map_equate (x, isl_dim_in, i, isl_dim_out, i);
1276 c = isl_constraint_set_coefficient_si (c, isl_dim_in, depth_dim, 1);
1277 c = isl_constraint_set_coefficient_si (c, isl_dim_out, depth_dim, 1);
1278 x = isl_map_add_constraint (x, c);
1279 return x;
1282 /* Reverse the loop at level DEPTH for all the PBBS. */
1284 isl_union_map *
1285 reverse_loop_for_pbbs (scop_p scop, vec<poly_bb_p> pbbs, int depth)
1287 poly_bb_p pbb;
1288 int i;
1289 isl_space *space = isl_space_from_domain (isl_set_get_space (scop->context));
1290 isl_union_map *res = isl_union_map_empty (space);
1292 for (i = 0; pbbs.iterate (i, &pbb); i++)
1293 res = isl_union_map_add_map (res, reverse_loop_at_level (pbb, depth));
1295 return res;
1299 #endif