1 /* Graphite polyhedral representation.
2 Copyright (C) 2009-2013 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/>. */
27 #include <isl/union_map.h>
28 #include <isl/constraint.h>
31 #include <cloog/cloog.h>
32 #include <cloog/isl/domain.h>
36 #include "coretypes.h"
37 #include "diagnostic-core.h"
40 #include "gimple-iterator.h"
41 #include "tree-ssa-loop.h"
43 #include "gimple-pretty-print.h"
45 #include "tree-chrec.h"
46 #include "tree-data-ref.h"
47 #include "tree-scalar-evolution.h"
51 #include "graphite-poly.h"
53 #define OPENSCOP_MAX_STRING 256
56 /* Print to STDERR the GMP value VAL. */
59 debug_gmp_value (mpz_t val
)
61 gmp_fprintf (stderr
, "%Zd", val
);
64 /* Return the maximal loop depth in SCOP. */
67 scop_max_loop_depth (scop_p scop
)
73 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
75 int nb_loops
= pbb_dim_iter_domain (pbb
);
76 if (max_nb_loops
< nb_loops
)
77 max_nb_loops
= nb_loops
;
83 /* Prints to FILE the scattering function of PBB, at some VERBOSITY
87 print_scattering_function_1 (FILE *file
, poly_bb_p pbb
, int verbosity
)
93 fprintf (file
, "# scattering bb_%d (\n", pbb_index (pbb
));
94 fprintf (file
, "#eq");
96 for (i
= 0; i
< pbb_nb_scattering_transform (pbb
); i
++)
97 fprintf (file
, " s%d", (int) i
);
99 for (i
= 0; i
< pbb_nb_local_vars (pbb
); i
++)
100 fprintf (file
, " lv%d", (int) i
);
102 for (i
= 0; i
< pbb_dim_iter_domain (pbb
); i
++)
103 fprintf (file
, " i%d", (int) i
);
105 for (i
= 0; i
< pbb_nb_params (pbb
); i
++)
106 fprintf (file
, " p%d", (int) i
);
108 fprintf (file
, " cst\n");
111 fprintf (file
, "isl\n");
112 print_isl_map (file
, pbb
->transformed
? pbb
->transformed
: pbb
->schedule
);
115 fprintf (file
, "#)\n");
118 /* Prints to FILE the scattering function of PBB, at some VERBOSITY
122 print_scattering_function (FILE *file
, poly_bb_p pbb
, int verbosity
)
124 if (!PBB_TRANSFORMED (pbb
))
127 if (pbb
->schedule
|| pbb
->transformed
)
130 fprintf (file
, "# Scattering function is provided\n");
132 fprintf (file
, "1\n");
137 fprintf (file
, "# Scattering function is not provided\n");
139 fprintf (file
, "0\n");
143 print_scattering_function_1 (file
, pbb
, verbosity
);
146 fprintf (file
, "# Scattering names are not provided\n");
148 fprintf (file
, "0\n");
152 /* Prints to FILE the iteration domain of PBB, at some VERBOSITY
156 print_iteration_domain (FILE *file
, poly_bb_p pbb
, int verbosity
)
158 print_pbb_domain (file
, pbb
, verbosity
);
161 /* Prints to FILE the scattering functions of every PBB of SCOP. */
164 print_scattering_functions (FILE *file
, scop_p scop
, int verbosity
)
169 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
170 print_scattering_function (file
, pbb
, verbosity
);
173 /* Prints to FILE the iteration domains of every PBB of SCOP, at some
177 print_iteration_domains (FILE *file
, scop_p scop
, int verbosity
)
182 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
183 print_iteration_domain (file
, pbb
, verbosity
);
186 /* Prints to STDERR the scattering function of PBB, at some VERBOSITY
190 debug_scattering_function (poly_bb_p pbb
, int verbosity
)
192 print_scattering_function (stderr
, pbb
, verbosity
);
195 /* Prints to STDERR the iteration domain of PBB, at some VERBOSITY
199 debug_iteration_domain (poly_bb_p pbb
, int verbosity
)
201 print_iteration_domain (stderr
, pbb
, verbosity
);
204 /* Prints to STDERR the scattering functions of every PBB of SCOP, at
205 some VERBOSITY level. */
208 debug_scattering_functions (scop_p scop
, int verbosity
)
210 print_scattering_functions (stderr
, scop
, verbosity
);
213 /* Prints to STDERR the iteration domains of every PBB of SCOP, at
214 some VERBOSITY level. */
217 debug_iteration_domains (scop_p scop
, int verbosity
)
219 print_iteration_domains (stderr
, scop
, verbosity
);
222 /* Apply graphite transformations to all the basic blocks of SCOP. */
225 apply_poly_transforms (scop_p scop
)
227 bool transform_done
= false;
229 /* Generate code even if we did not apply any real transformation.
230 This also allows to check the performance for the identity
231 transformation: GIMPLE -> GRAPHITE -> GIMPLE
232 Keep in mind that CLooG optimizes in control, so the loop structure
233 may change, even if we only use -fgraphite-identity. */
234 if (flag_graphite_identity
)
235 transform_done
= true;
237 if (flag_loop_parallelize_all
)
238 transform_done
= true;
241 transform_done
|= scop_do_block (scop
);
244 if (flag_loop_strip_mine
)
245 transform_done
|= scop_do_strip_mine (scop
, 0);
247 if (flag_loop_interchange
)
248 transform_done
|= scop_do_interchange (scop
);
251 /* This pass needs to be run at the final stage, as it does not
253 if (flag_loop_optimize_isl
)
254 transform_done
|= optimize_isl (scop
);
256 return transform_done
;
259 /* Create a new polyhedral data reference and add it to PBB. It is
260 defined by its ACCESSES, its TYPE, and the number of subscripts
264 new_poly_dr (poly_bb_p pbb
, int dr_base_object_set
,
265 enum poly_dr_type type
, void *cdr
, graphite_dim_t nb_subscripts
,
266 isl_map
*acc
, isl_set
*extent
)
269 poly_dr_p pdr
= XNEW (struct poly_dr
);
272 PDR_BASE_OBJECT_SET (pdr
) = dr_base_object_set
;
273 PDR_NB_REFS (pdr
) = 1;
276 pdr
->extent
= extent
;
277 PDR_TYPE (pdr
) = type
;
279 PDR_NB_SUBSCRIPTS (pdr
) = nb_subscripts
;
280 PBB_DRS (pbb
).safe_push (pdr
);
283 /* Free polyhedral data reference PDR. */
286 free_poly_dr (poly_dr_p pdr
)
288 isl_map_free (pdr
->accesses
);
289 isl_set_free (pdr
->extent
);
293 /* Create a new polyhedral black box. */
296 new_poly_bb (scop_p scop
, void *black_box
)
298 poly_bb_p pbb
= XNEW (struct poly_bb
);
301 pbb
->schedule
= NULL
;
302 pbb
->transformed
= NULL
;
304 PBB_SCOP (pbb
) = scop
;
305 pbb_set_black_box (pbb
, black_box
);
306 PBB_TRANSFORMED (pbb
) = NULL
;
307 PBB_SAVED (pbb
) = NULL
;
308 PBB_ORIGINAL (pbb
) = NULL
;
309 PBB_DRS (pbb
).create (3);
310 PBB_IS_REDUCTION (pbb
) = false;
311 GBB_PBB ((gimple_bb_p
) black_box
) = pbb
;
316 /* Free polyhedral black box. */
319 free_poly_bb (poly_bb_p pbb
)
324 isl_set_free (pbb
->domain
);
325 isl_map_free (pbb
->schedule
);
326 isl_map_free (pbb
->transformed
);
327 isl_map_free (pbb
->saved
);
329 if (PBB_DRS (pbb
).exists ())
330 FOR_EACH_VEC_ELT (PBB_DRS (pbb
), i
, pdr
)
333 PBB_DRS (pbb
).release ();
338 print_pdr_access_layout (FILE *file
, poly_bb_p pbb
, poly_dr_p pdr
)
342 fprintf (file
, "# eq");
344 fprintf (file
, " alias");
346 for (i
= 0; i
< PDR_NB_SUBSCRIPTS (pdr
); i
++)
347 fprintf (file
, " sub%d", (int) i
);
349 for (i
= 0; i
< pbb_dim_iter_domain (pbb
); i
++)
350 fprintf (file
, " i%d", (int) i
);
352 for (i
= 0; i
< pbb_nb_params (pbb
); i
++)
353 fprintf (file
, " p%d", (int) i
);
355 fprintf (file
, " cst\n");
358 /* Prints to FILE the polyhedral data reference PDR, at some VERBOSITY
362 print_pdr (FILE *file
, poly_dr_p pdr
, int verbosity
)
366 fprintf (file
, "# pdr_%d (", PDR_ID (pdr
));
368 switch (PDR_TYPE (pdr
))
371 fprintf (file
, "read \n");
375 fprintf (file
, "write \n");
379 fprintf (file
, "may_write \n");
386 dump_data_reference (file
, (data_reference_p
) PDR_CDR (pdr
));
391 fprintf (file
, "# data accesses (\n");
392 print_pdr_access_layout (file
, PDR_PBB (pdr
), pdr
);
395 /* XXX isl dump accesses/subscripts */
398 fprintf (file
, "#)\n");
401 fprintf (file
, "#)\n");
404 /* Prints to STDERR the polyhedral data reference PDR, at some
408 debug_pdr (poly_dr_p pdr
, int verbosity
)
410 print_pdr (stderr
, pdr
, verbosity
);
413 /* Creates a new SCOP containing REGION. */
416 new_scop (void *region
)
418 scop_p scop
= XNEW (struct scop
);
420 scop
->context
= NULL
;
421 scop
->must_raw
= NULL
;
422 scop
->may_raw
= NULL
;
423 scop
->must_raw_no_source
= NULL
;
424 scop
->may_raw_no_source
= NULL
;
425 scop
->must_war
= NULL
;
426 scop
->may_war
= NULL
;
427 scop
->must_war_no_source
= NULL
;
428 scop
->may_war_no_source
= NULL
;
429 scop
->must_waw
= NULL
;
430 scop
->may_waw
= NULL
;
431 scop
->must_waw_no_source
= NULL
;
432 scop
->may_waw_no_source
= NULL
;
433 scop_set_region (scop
, region
);
434 SCOP_BBS (scop
).create (3);
435 SCOP_ORIGINAL_SCHEDULE (scop
) = NULL
;
436 SCOP_TRANSFORMED_SCHEDULE (scop
) = NULL
;
437 SCOP_SAVED_SCHEDULE (scop
) = NULL
;
438 POLY_SCOP_P (scop
) = false;
446 free_scop (scop_p scop
)
451 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
454 SCOP_BBS (scop
).release ();
456 isl_set_free (scop
->context
);
457 isl_union_map_free (scop
->must_raw
);
458 isl_union_map_free (scop
->may_raw
);
459 isl_union_map_free (scop
->must_raw_no_source
);
460 isl_union_map_free (scop
->may_raw_no_source
);
461 isl_union_map_free (scop
->must_war
);
462 isl_union_map_free (scop
->may_war
);
463 isl_union_map_free (scop
->must_war_no_source
);
464 isl_union_map_free (scop
->may_war_no_source
);
465 isl_union_map_free (scop
->must_waw
);
466 isl_union_map_free (scop
->may_waw
);
467 isl_union_map_free (scop
->must_waw_no_source
);
468 isl_union_map_free (scop
->may_waw_no_source
);
469 free_lst (SCOP_ORIGINAL_SCHEDULE (scop
));
470 free_lst (SCOP_TRANSFORMED_SCHEDULE (scop
));
471 free_lst (SCOP_SAVED_SCHEDULE (scop
));
475 /* Print to FILE the domain of PBB in OpenScop format, at some VERBOSITY
479 openscop_print_pbb_domain (FILE *file
, poly_bb_p pbb
, int verbosity
)
482 gimple_bb_p gbb
= PBB_BLACK_BOX (pbb
);
489 fprintf (file
, "\n# Iteration domain of bb_%d (\n", GBB_BB (gbb
)->index
);
490 fprintf (file
, "#eq");
492 for (i
= 0; i
< pbb_dim_iter_domain (pbb
); i
++)
493 fprintf (file
, " i%d", (int) i
);
495 for (i
= 0; i
< pbb_nb_params (pbb
); i
++)
496 fprintf (file
, " p%d", (int) i
);
498 fprintf (file
, " cst\n");
501 fprintf (file
, "XXX isl\n");
504 fprintf (file
, "#)\n");
507 /* Print to FILE the domain of PBB, at some VERBOSITY level. */
510 print_pbb_domain (FILE *file
, poly_bb_p pbb
, int verbosity ATTRIBUTE_UNUSED
)
512 print_isl_set (file
, pbb
->domain
);
515 /* Dump the cases of a graphite basic block GBB on FILE. */
518 dump_gbb_cases (FILE *file
, gimple_bb_p gbb
)
527 cases
= GBB_CONDITION_CASES (gbb
);
528 if (cases
.is_empty ())
531 fprintf (file
, "# cases bb_%d (\n", GBB_BB (gbb
)->index
);
533 FOR_EACH_VEC_ELT (cases
, i
, stmt
)
535 fprintf (file
, "# ");
536 print_gimple_stmt (file
, stmt
, 0, 0);
539 fprintf (file
, "#)\n");
542 /* Dump conditions of a graphite basic block GBB on FILE. */
545 dump_gbb_conditions (FILE *file
, gimple_bb_p gbb
)
549 vec
<gimple
> conditions
;
554 conditions
= GBB_CONDITIONS (gbb
);
555 if (conditions
.is_empty ())
558 fprintf (file
, "# conditions bb_%d (\n", GBB_BB (gbb
)->index
);
560 FOR_EACH_VEC_ELT (conditions
, i
, stmt
)
562 fprintf (file
, "# ");
563 print_gimple_stmt (file
, stmt
, 0, 0);
566 fprintf (file
, "#)\n");
569 /* Print to FILE all the data references of PBB, at some VERBOSITY
573 print_pdrs (FILE *file
, poly_bb_p pbb
, int verbosity
)
580 if (PBB_DRS (pbb
).length () == 0)
583 fprintf (file
, "# Access informations are not provided\n");\
584 fprintf (file
, "0\n");
589 fprintf (file
, "# Data references (\n");
592 fprintf (file
, "# Access informations are provided\n");
593 fprintf (file
, "1\n");
595 FOR_EACH_VEC_ELT (PBB_DRS (pbb
), i
, pdr
)
596 if (PDR_TYPE (pdr
) == PDR_READ
)
602 fprintf (file
, "# Read data references (\n");
605 fprintf (file
, "# Read access informations\n");
606 fprintf (file
, "%d\n", nb_reads
);
608 FOR_EACH_VEC_ELT (PBB_DRS (pbb
), i
, pdr
)
609 if (PDR_TYPE (pdr
) == PDR_READ
)
610 print_pdr (file
, pdr
, verbosity
);
613 fprintf (file
, "#)\n");
616 fprintf (file
, "# Write data references (\n");
619 fprintf (file
, "# Write access informations\n");
620 fprintf (file
, "%d\n", nb_writes
);
622 FOR_EACH_VEC_ELT (PBB_DRS (pbb
), i
, pdr
)
623 if (PDR_TYPE (pdr
) != PDR_READ
)
624 print_pdr (file
, pdr
, verbosity
);
627 fprintf (file
, "#)\n");
630 fprintf (file
, "#)\n");
633 /* Print to STDERR all the data references of PBB. */
636 debug_pdrs (poly_bb_p pbb
, int verbosity
)
638 print_pdrs (stderr
, pbb
, verbosity
);
641 /* Print to FILE the body of PBB, at some VERBOSITY level.
642 If statement_body_provided is false statement body is not printed. */
645 print_pbb_body (FILE *file
, poly_bb_p pbb
, int verbosity
,
646 bool statement_body_provided
)
649 fprintf (file
, "# Body (\n");
651 if (!statement_body_provided
)
654 fprintf (file
, "# Statement body is not provided\n");
656 fprintf (file
, "0\n");
659 fprintf (file
, "#)\n");
664 fprintf (file
, "# Statement body is provided\n");
665 fprintf (file
, "1\n");
668 fprintf (file
, "# Original iterator names\n# Iterator names are not provided yet.\n");
671 fprintf (file
, "# Statement body\n");
673 fprintf (file
, "{\n");
674 dump_bb (file
, pbb_bb (pbb
), 0, 0);
675 fprintf (file
, "}\n");
678 fprintf (file
, "#)\n");
681 /* Print to FILE the domain and scattering function of PBB, at some
685 print_pbb (FILE *file
, poly_bb_p pbb
, int verbosity
)
689 fprintf (file
, "# pbb_%d (\n", pbb_index (pbb
));
690 dump_gbb_conditions (file
, PBB_BLACK_BOX (pbb
));
691 dump_gbb_cases (file
, PBB_BLACK_BOX (pbb
));
694 openscop_print_pbb_domain (file
, pbb
, verbosity
);
695 print_scattering_function (file
, pbb
, verbosity
);
696 print_pdrs (file
, pbb
, verbosity
);
697 print_pbb_body (file
, pbb
, verbosity
, false);
700 fprintf (file
, "#)\n");
703 /* Print to FILE the parameters of SCOP, at some VERBOSITY level. */
706 print_scop_params (FILE *file
, scop_p scop
, int verbosity
)
712 fprintf (file
, "# parameters (\n");
714 if (SESE_PARAMS (SCOP_REGION (scop
)).length ())
717 fprintf (file
, "# Parameter names are provided\n");
719 fprintf (file
, "1\n");
722 fprintf (file
, "# Parameter names\n");
727 fprintf (file
, "# Parameter names are not provided\n");
728 fprintf (file
, "0\n");
731 FOR_EACH_VEC_ELT (SESE_PARAMS (SCOP_REGION (scop
)), i
, t
)
733 print_generic_expr (file
, t
, 0);
737 fprintf (file
, "\n");
740 fprintf (file
, "#)\n");
743 /* Print to FILE the context of SCoP in OpenScop format, at some VERBOSITY
747 openscop_print_scop_context (FILE *file
, scop_p scop
, int verbosity
)
753 fprintf (file
, "# Context (\n");
754 fprintf (file
, "#eq");
756 for (i
= 0; i
< scop_nb_params (scop
); i
++)
757 fprintf (file
, " p%d", (int) i
);
759 fprintf (file
, " cst\n");
763 /* XXX isl print context */
764 fprintf (file
, "XXX isl\n");
766 fprintf (file
, "0 %d 0 0 0 %d\n", (int) scop_nb_params (scop
) + 2,
767 (int) scop_nb_params (scop
));
770 fprintf (file
, "# )\n");
773 /* Print to FILE the context of SCoP, at some VERBOSITY level. */
776 print_scop_context (FILE *file
, scop_p scop
, int verbosity
)
782 fprintf (file
, "# Context (\n");
783 fprintf (file
, "#eq");
785 for (i
= 0; i
< scop_nb_params (scop
); i
++)
786 fprintf (file
, " p%d", (int) i
);
788 fprintf (file
, " cst\n");
792 print_isl_set (file
, scop
->context
);
794 fprintf (file
, "no isl context %d\n", (int) scop_nb_params (scop
) + 2);
797 fprintf (file
, "# )\n");
800 /* Print to FILE the SCOP, at some VERBOSITY level. */
803 print_scop (FILE *file
, scop_p scop
, int verbosity
)
808 fprintf (file
, "SCoP 1\n#(\n");
809 fprintf (file
, "# Language\nGimple\n");
810 openscop_print_scop_context (file
, scop
, verbosity
);
811 print_scop_params (file
, scop
, verbosity
);
814 fprintf (file
, "# Number of statements\n");
816 fprintf (file
, "%d\n", SCOP_BBS (scop
).length ());
818 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
819 print_pbb (file
, pbb
, verbosity
);
823 fprintf (file
, "# original_lst (\n");
824 print_lst (file
, SCOP_ORIGINAL_SCHEDULE (scop
), 0);
825 fprintf (file
, "\n#)\n");
827 fprintf (file
, "# transformed_lst (\n");
828 print_lst (file
, SCOP_TRANSFORMED_SCHEDULE (scop
), 0);
829 fprintf (file
, "\n#)\n");
832 fprintf (file
, "#)\n");
835 /* Print to FILE the input file that CLooG would expect as input, at
836 some VERBOSITY level. */
839 print_cloog (FILE *file
, scop_p scop
, int verbosity
)
844 fprintf (file
, "# SCoP (generated by GCC/Graphite\n");
846 fprintf (file
, "# CLooG output language\n");
847 fprintf (file
, "c\n");
849 print_scop_context (file
, scop
, verbosity
);
850 print_scop_params (file
, scop
, verbosity
);
853 fprintf (file
, "# Number of statements\n");
855 fprintf (file
, "%d\n", SCOP_BBS (scop
).length ());
857 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
860 fprintf (file
, "# pbb_%d (\n", pbb_index (pbb
));
862 print_pbb_domain (file
, pbb
, verbosity
);
863 fprintf (file
, "0 0 0");
866 fprintf (file
, "# For future CLooG options.\n");
868 fprintf (file
, "\n");
871 fprintf (file
, "#)\n");
876 fprintf (file
, "# Don't set the iterator names.\n");
878 fprintf (file
, "\n");
881 fprintf (file
, "# Number of scattering functions\n");
883 fprintf (file
, "%d\n", SCOP_BBS (scop
).length ());
885 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
887 if (!(pbb
->transformed
|| pbb
->schedule
))
891 fprintf (file
, "# pbb_%d (\n", pbb_index (pbb
));
893 print_scattering_function_1 (file
, pbb
, verbosity
);
896 fprintf (file
, "#)\n");
901 fprintf (file
, "# Don't set the scattering dimension names.\n");
903 fprintf (file
, "\n");
905 fprintf (file
, "#)\n");
908 /* Print to STDERR the domain of PBB, at some VERBOSITY level. */
911 debug_pbb_domain (poly_bb_p pbb
, int verbosity
)
913 print_pbb_domain (stderr
, pbb
, verbosity
);
916 /* Print to FILE the domain and scattering function of PBB, at some
920 debug_pbb (poly_bb_p pbb
, int verbosity
)
922 print_pbb (stderr
, pbb
, verbosity
);
925 /* Print to STDERR the context of SCOP, at some VERBOSITY level. */
928 debug_scop_context (scop_p scop
, int verbosity
)
930 print_scop_context (stderr
, scop
, verbosity
);
933 /* Print to STDERR the SCOP, at some VERBOSITY level. */
936 debug_scop (scop_p scop
, int verbosity
)
938 print_scop (stderr
, scop
, verbosity
);
941 /* Print to STDERR the SCOP under CLooG format, at some VERBOSITY
945 debug_cloog (scop_p scop
, int verbosity
)
947 print_cloog (stderr
, scop
, verbosity
);
950 /* Print to STDERR the parameters of SCOP, at some VERBOSITY
954 debug_scop_params (scop_p scop
, int verbosity
)
956 print_scop_params (stderr
, scop
, verbosity
);
959 extern isl_ctx
*the_isl_ctx
;
961 print_isl_set (FILE *f
, isl_set
*set
)
963 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
964 p
= isl_printer_print_set (p
, set
);
965 isl_printer_free (p
);
969 debug_isl_set (isl_set
*set
)
971 print_isl_set (stderr
, set
);
975 print_isl_map (FILE *f
, isl_map
*map
)
977 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
978 p
= isl_printer_print_map (p
, map
);
979 isl_printer_free (p
);
983 debug_isl_map (isl_map
*map
)
985 print_isl_map (stderr
, map
);
989 print_isl_aff (FILE *f
, isl_aff
*aff
)
991 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
992 p
= isl_printer_print_aff (p
, aff
);
993 isl_printer_free (p
);
997 debug_isl_aff (isl_aff
*aff
)
999 print_isl_aff (stderr
, aff
);
1003 print_isl_constraint (FILE *f
, isl_constraint
*c
)
1005 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
1006 p
= isl_printer_print_constraint (p
, c
);
1007 isl_printer_free (p
);
1011 debug_isl_constraint (isl_constraint
*c
)
1013 print_isl_constraint (stderr
, c
);
1016 /* Returns the number of iterations RES of the loop around PBB at
1017 time(scattering) dimension TIME_DEPTH. */
1020 pbb_number_of_iterations_at_time (poly_bb_p pbb
,
1021 graphite_dim_t time_depth
,
1024 isl_set
*transdomain
;
1027 isl_int isllb
, islub
;
1029 isl_int_init (isllb
);
1030 isl_int_init (islub
);
1032 /* Map the iteration domain through the current scatter, and work
1033 on the resulting set. */
1034 transdomain
= isl_set_apply (isl_set_copy (pbb
->domain
),
1035 isl_map_copy (pbb
->transformed
));
1037 /* Select the time_depth' dimension via an affine expression. */
1038 dc
= isl_set_get_space (transdomain
);
1039 aff
= isl_aff_zero_on_domain (isl_local_space_from_space (dc
));
1040 aff
= isl_aff_set_coefficient_si (aff
, isl_dim_in
, time_depth
, 1);
1042 /* And find the min/max for that function. */
1043 /* XXX isl check results? */
1044 isl_set_min (transdomain
, aff
, &isllb
);
1045 isl_set_max (transdomain
, aff
, &islub
);
1047 isl_int_sub (islub
, islub
, isllb
);
1048 isl_int_add_ui (islub
, islub
, 1);
1049 isl_int_get_gmp (islub
, res
);
1051 isl_int_clear (isllb
);
1052 isl_int_clear (islub
);
1054 isl_set_free (transdomain
);
1057 /* Translates LOOP to LST. */
1060 loop_to_lst (loop_p loop
, vec
<poly_bb_p
> bbs
, int *i
)
1066 for (; bbs
.iterate (*i
, &pbb
); (*i
)++)
1069 basic_block bb
= GBB_BB (PBB_BLACK_BOX (pbb
));
1071 if (bb
->loop_father
== loop
)
1072 stmt
= new_lst_stmt (pbb
);
1073 else if (flow_bb_inside_loop_p (loop
, bb
))
1075 loop_p next
= loop
->inner
;
1077 while (next
&& !flow_bb_inside_loop_p (next
, bb
))
1080 stmt
= loop_to_lst (next
, bbs
, i
);
1085 return new_lst_loop (seq
);
1088 seq
.safe_push (stmt
);
1091 return new_lst_loop (seq
);
1094 /* Reads the original scattering of the SCOP and returns an LST
1098 scop_to_lst (scop_p scop
)
1101 int i
, n
= SCOP_BBS (scop
).length ();
1104 sese region
= SCOP_REGION (scop
);
1106 for (i
= 0; i
< n
; i
++)
1108 poly_bb_p pbb
= SCOP_BBS (scop
)[i
];
1109 loop_p loop
= outermost_loop_in_sese (region
, GBB_BB (PBB_BLACK_BOX (pbb
)));
1111 if (loop_in_sese_p (loop
, region
))
1112 res
= loop_to_lst (loop
, SCOP_BBS (scop
), &i
);
1114 res
= new_lst_stmt (pbb
);
1116 seq
.safe_push (res
);
1119 res
= new_lst_loop (seq
);
1120 SCOP_ORIGINAL_SCHEDULE (scop
) = res
;
1121 SCOP_TRANSFORMED_SCHEDULE (scop
) = copy_lst (res
);
1124 /* Print to FILE on a new line COLUMN white spaces. */
1127 lst_indent_to (FILE *file
, int column
)
1132 fprintf (file
, "\n#");
1134 for (i
= 0; i
< column
; i
++)
1135 fprintf (file
, " ");
1138 /* Print LST to FILE with INDENT spaces of indentation. */
1141 print_lst (FILE *file
, lst_p lst
, int indent
)
1146 lst_indent_to (file
, indent
);
1148 if (LST_LOOP_P (lst
))
1153 if (LST_LOOP_FATHER (lst
))
1154 fprintf (file
, "%d (loop", lst_dewey_number (lst
));
1156 fprintf (file
, "#(root");
1158 FOR_EACH_VEC_ELT (LST_SEQ (lst
), i
, l
)
1159 print_lst (file
, l
, indent
+ 2);
1161 fprintf (file
, ")");
1164 fprintf (file
, "%d stmt_%d", lst_dewey_number (lst
), pbb_index (LST_PBB (lst
)));
1167 /* Print LST to STDERR. */
1170 debug_lst (lst_p lst
)
1172 print_lst (stderr
, lst
, 0);
1175 /* Pretty print to FILE the loop statement tree LST in DOT format. */
1178 dot_lst_1 (FILE *file
, lst_p lst
)
1183 if (LST_LOOP_P (lst
))
1188 if (!LST_LOOP_FATHER (lst
))
1189 fprintf (file
, "L -> L_%d_%d\n",
1191 lst_dewey_number (lst
));
1193 fprintf (file
, "L_%d_%d -> L_%d_%d\n",
1194 lst_depth (LST_LOOP_FATHER (lst
)),
1195 lst_dewey_number (LST_LOOP_FATHER (lst
)),
1197 lst_dewey_number (lst
));
1199 FOR_EACH_VEC_ELT (LST_SEQ (lst
), i
, l
)
1200 dot_lst_1 (file
, l
);
1204 fprintf (file
, "L_%d_%d -> S_%d\n",
1205 lst_depth (LST_LOOP_FATHER (lst
)),
1206 lst_dewey_number (LST_LOOP_FATHER (lst
)),
1207 pbb_index (LST_PBB (lst
)));
1211 /* Display the LST using dotty. */
1216 /* When debugging, enable the following code. This cannot be used
1217 in production compilers because it calls "system". */
1219 FILE *stream
= fopen ("/tmp/lst.dot", "w");
1220 gcc_assert (stream
);
1222 fputs ("digraph all {\n", stream
);
1223 dot_lst_1 (stream
, lst
);
1224 fputs ("}\n\n", stream
);
1227 system ("dotty /tmp/lst.dot &");
1229 fputs ("digraph all {\n", stderr
);
1230 dot_lst_1 (stderr
, lst
);
1231 fputs ("}\n\n", stderr
);
1236 /* Computes a checksum for the code generated by CLooG for SCOP. */
1239 cloog_checksum (scop_p scop ATTRIBUTE_UNUSED
)
1241 /* When debugging, enable the following code. This cannot be used
1242 in production compilers because it calls "system". */
1244 FILE *stream
= fopen ("/tmp/scop.cloog", "w");
1245 gcc_assert (stream
);
1246 print_cloog (stream
, scop
, 0);
1249 fputs ("\n", stdout
);
1250 system ("cloog -compilable 1 /tmp/scop.cloog > /tmp/scop.c ; gcc -O0 -g /tmp/scop.c -lm -o /tmp/scop; /tmp/scop | md5sum ");
1254 /* Reverse the loop around PBB at level DEPTH. */
1257 reverse_loop_at_level (poly_bb_p pbb
, int depth
)
1259 unsigned i
, depth_dim
= psct_dynamic_dim (pbb
, depth
);
1260 isl_space
*d
= isl_map_get_space (pbb
->transformed
);
1261 isl_space
*d1
= isl_space_range (d
);
1262 unsigned n
= isl_space_dim (d1
, isl_dim_out
);
1263 isl_space
*d2
= isl_space_add_dims (d1
, isl_dim_in
, n
);
1264 isl_map
*x
= isl_map_universe (isl_space_copy (d2
));
1265 isl_constraint
*c
= isl_equality_alloc (isl_local_space_from_space (d2
));
1267 for (i
= 0; i
< n
; i
++)
1269 x
= isl_map_equate (x
, isl_dim_in
, i
, isl_dim_out
, i
);
1271 c
= isl_constraint_set_coefficient_si (c
, isl_dim_in
, depth_dim
, 1);
1272 c
= isl_constraint_set_coefficient_si (c
, isl_dim_out
, depth_dim
, 1);
1273 x
= isl_map_add_constraint (x
, c
);
1277 /* Reverse the loop at level DEPTH for all the PBBS. */
1280 reverse_loop_for_pbbs (scop_p scop
, vec
<poly_bb_p
> pbbs
, int depth
)
1284 isl_space
*space
= isl_space_from_domain (isl_set_get_space (scop
->context
));
1285 isl_union_map
*res
= isl_union_map_empty (space
);
1287 for (i
= 0; pbbs
.iterate (i
, &pbb
); i
++)
1288 res
= isl_union_map_add_map (res
, reverse_loop_at_level (pbb
, depth
));