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 "tree-ssa-loop.h"
42 #include "gimple-pretty-print.h"
44 #include "tree-chrec.h"
45 #include "tree-data-ref.h"
46 #include "tree-scalar-evolution.h"
50 #include "graphite-poly.h"
52 #define OPENSCOP_MAX_STRING 256
55 /* Print to STDERR the GMP value VAL. */
58 debug_gmp_value (mpz_t val
)
60 gmp_fprintf (stderr
, "%Zd", val
);
63 /* Return the maximal loop depth in SCOP. */
66 scop_max_loop_depth (scop_p scop
)
72 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
74 int nb_loops
= pbb_dim_iter_domain (pbb
);
75 if (max_nb_loops
< nb_loops
)
76 max_nb_loops
= nb_loops
;
82 /* Prints to FILE the scattering function of PBB, at some VERBOSITY
86 print_scattering_function_1 (FILE *file
, poly_bb_p pbb
, int verbosity
)
92 fprintf (file
, "# scattering bb_%d (\n", pbb_index (pbb
));
93 fprintf (file
, "#eq");
95 for (i
= 0; i
< pbb_nb_scattering_transform (pbb
); i
++)
96 fprintf (file
, " s%d", (int) i
);
98 for (i
= 0; i
< pbb_nb_local_vars (pbb
); i
++)
99 fprintf (file
, " lv%d", (int) i
);
101 for (i
= 0; i
< pbb_dim_iter_domain (pbb
); i
++)
102 fprintf (file
, " i%d", (int) i
);
104 for (i
= 0; i
< pbb_nb_params (pbb
); i
++)
105 fprintf (file
, " p%d", (int) i
);
107 fprintf (file
, " cst\n");
110 fprintf (file
, "isl\n");
111 print_isl_map (file
, pbb
->transformed
? pbb
->transformed
: pbb
->schedule
);
114 fprintf (file
, "#)\n");
117 /* Prints to FILE the scattering function of PBB, at some VERBOSITY
121 print_scattering_function (FILE *file
, poly_bb_p pbb
, int verbosity
)
123 if (!PBB_TRANSFORMED (pbb
))
126 if (pbb
->schedule
|| pbb
->transformed
)
129 fprintf (file
, "# Scattering function is provided\n");
131 fprintf (file
, "1\n");
136 fprintf (file
, "# Scattering function is not provided\n");
138 fprintf (file
, "0\n");
142 print_scattering_function_1 (file
, pbb
, verbosity
);
145 fprintf (file
, "# Scattering names are not provided\n");
147 fprintf (file
, "0\n");
151 /* Prints to FILE the iteration domain of PBB, at some VERBOSITY
155 print_iteration_domain (FILE *file
, poly_bb_p pbb
, int verbosity
)
157 print_pbb_domain (file
, pbb
, verbosity
);
160 /* Prints to FILE the scattering functions of every PBB of SCOP. */
163 print_scattering_functions (FILE *file
, scop_p scop
, int verbosity
)
168 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
169 print_scattering_function (file
, pbb
, verbosity
);
172 /* Prints to FILE the iteration domains of every PBB of SCOP, at some
176 print_iteration_domains (FILE *file
, scop_p scop
, int verbosity
)
181 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
182 print_iteration_domain (file
, pbb
, verbosity
);
185 /* Prints to STDERR the scattering function of PBB, at some VERBOSITY
189 debug_scattering_function (poly_bb_p pbb
, int verbosity
)
191 print_scattering_function (stderr
, pbb
, verbosity
);
194 /* Prints to STDERR the iteration domain of PBB, at some VERBOSITY
198 debug_iteration_domain (poly_bb_p pbb
, int verbosity
)
200 print_iteration_domain (stderr
, pbb
, verbosity
);
203 /* Prints to STDERR the scattering functions of every PBB of SCOP, at
204 some VERBOSITY level. */
207 debug_scattering_functions (scop_p scop
, int verbosity
)
209 print_scattering_functions (stderr
, scop
, verbosity
);
212 /* Prints to STDERR the iteration domains of every PBB of SCOP, at
213 some VERBOSITY level. */
216 debug_iteration_domains (scop_p scop
, int verbosity
)
218 print_iteration_domains (stderr
, scop
, verbosity
);
221 /* Apply graphite transformations to all the basic blocks of SCOP. */
224 apply_poly_transforms (scop_p scop
)
226 bool transform_done
= false;
228 /* Generate code even if we did not apply any real transformation.
229 This also allows to check the performance for the identity
230 transformation: GIMPLE -> GRAPHITE -> GIMPLE
231 Keep in mind that CLooG optimizes in control, so the loop structure
232 may change, even if we only use -fgraphite-identity. */
233 if (flag_graphite_identity
)
234 transform_done
= true;
236 if (flag_loop_parallelize_all
)
237 transform_done
= true;
240 transform_done
|= scop_do_block (scop
);
243 if (flag_loop_strip_mine
)
244 transform_done
|= scop_do_strip_mine (scop
, 0);
246 if (flag_loop_interchange
)
247 transform_done
|= scop_do_interchange (scop
);
250 /* This pass needs to be run at the final stage, as it does not
252 if (flag_loop_optimize_isl
)
253 transform_done
|= optimize_isl (scop
);
255 return transform_done
;
258 /* Create a new polyhedral data reference and add it to PBB. It is
259 defined by its ACCESSES, its TYPE, and the number of subscripts
263 new_poly_dr (poly_bb_p pbb
, int dr_base_object_set
,
264 enum poly_dr_type type
, void *cdr
, graphite_dim_t nb_subscripts
,
265 isl_map
*acc
, isl_set
*extent
)
268 poly_dr_p pdr
= XNEW (struct poly_dr
);
271 PDR_BASE_OBJECT_SET (pdr
) = dr_base_object_set
;
272 PDR_NB_REFS (pdr
) = 1;
275 pdr
->extent
= extent
;
276 PDR_TYPE (pdr
) = type
;
278 PDR_NB_SUBSCRIPTS (pdr
) = nb_subscripts
;
279 PBB_DRS (pbb
).safe_push (pdr
);
282 /* Free polyhedral data reference PDR. */
285 free_poly_dr (poly_dr_p pdr
)
287 isl_map_free (pdr
->accesses
);
288 isl_set_free (pdr
->extent
);
292 /* Create a new polyhedral black box. */
295 new_poly_bb (scop_p scop
, void *black_box
)
297 poly_bb_p pbb
= XNEW (struct poly_bb
);
300 pbb
->schedule
= NULL
;
301 pbb
->transformed
= NULL
;
303 PBB_SCOP (pbb
) = scop
;
304 pbb_set_black_box (pbb
, black_box
);
305 PBB_TRANSFORMED (pbb
) = NULL
;
306 PBB_SAVED (pbb
) = NULL
;
307 PBB_ORIGINAL (pbb
) = NULL
;
308 PBB_DRS (pbb
).create (3);
309 PBB_IS_REDUCTION (pbb
) = false;
310 GBB_PBB ((gimple_bb_p
) black_box
) = pbb
;
315 /* Free polyhedral black box. */
318 free_poly_bb (poly_bb_p pbb
)
323 isl_set_free (pbb
->domain
);
324 isl_map_free (pbb
->schedule
);
325 isl_map_free (pbb
->transformed
);
326 isl_map_free (pbb
->saved
);
328 if (PBB_DRS (pbb
).exists ())
329 FOR_EACH_VEC_ELT (PBB_DRS (pbb
), i
, pdr
)
332 PBB_DRS (pbb
).release ();
337 print_pdr_access_layout (FILE *file
, poly_bb_p pbb
, poly_dr_p pdr
)
341 fprintf (file
, "# eq");
343 fprintf (file
, " alias");
345 for (i
= 0; i
< PDR_NB_SUBSCRIPTS (pdr
); i
++)
346 fprintf (file
, " sub%d", (int) i
);
348 for (i
= 0; i
< pbb_dim_iter_domain (pbb
); i
++)
349 fprintf (file
, " i%d", (int) i
);
351 for (i
= 0; i
< pbb_nb_params (pbb
); i
++)
352 fprintf (file
, " p%d", (int) i
);
354 fprintf (file
, " cst\n");
357 /* Prints to FILE the polyhedral data reference PDR, at some VERBOSITY
361 print_pdr (FILE *file
, poly_dr_p pdr
, int verbosity
)
365 fprintf (file
, "# pdr_%d (", PDR_ID (pdr
));
367 switch (PDR_TYPE (pdr
))
370 fprintf (file
, "read \n");
374 fprintf (file
, "write \n");
378 fprintf (file
, "may_write \n");
385 dump_data_reference (file
, (data_reference_p
) PDR_CDR (pdr
));
390 fprintf (file
, "# data accesses (\n");
391 print_pdr_access_layout (file
, PDR_PBB (pdr
), pdr
);
394 /* XXX isl dump accesses/subscripts */
397 fprintf (file
, "#)\n");
400 fprintf (file
, "#)\n");
403 /* Prints to STDERR the polyhedral data reference PDR, at some
407 debug_pdr (poly_dr_p pdr
, int verbosity
)
409 print_pdr (stderr
, pdr
, verbosity
);
412 /* Creates a new SCOP containing REGION. */
415 new_scop (void *region
)
417 scop_p scop
= XNEW (struct scop
);
419 scop
->context
= NULL
;
420 scop
->must_raw
= NULL
;
421 scop
->may_raw
= NULL
;
422 scop
->must_raw_no_source
= NULL
;
423 scop
->may_raw_no_source
= NULL
;
424 scop
->must_war
= NULL
;
425 scop
->may_war
= NULL
;
426 scop
->must_war_no_source
= NULL
;
427 scop
->may_war_no_source
= NULL
;
428 scop
->must_waw
= NULL
;
429 scop
->may_waw
= NULL
;
430 scop
->must_waw_no_source
= NULL
;
431 scop
->may_waw_no_source
= NULL
;
432 scop_set_region (scop
, region
);
433 SCOP_BBS (scop
).create (3);
434 SCOP_ORIGINAL_SCHEDULE (scop
) = NULL
;
435 SCOP_TRANSFORMED_SCHEDULE (scop
) = NULL
;
436 SCOP_SAVED_SCHEDULE (scop
) = NULL
;
437 POLY_SCOP_P (scop
) = false;
445 free_scop (scop_p scop
)
450 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
453 SCOP_BBS (scop
).release ();
455 isl_set_free (scop
->context
);
456 isl_union_map_free (scop
->must_raw
);
457 isl_union_map_free (scop
->may_raw
);
458 isl_union_map_free (scop
->must_raw_no_source
);
459 isl_union_map_free (scop
->may_raw_no_source
);
460 isl_union_map_free (scop
->must_war
);
461 isl_union_map_free (scop
->may_war
);
462 isl_union_map_free (scop
->must_war_no_source
);
463 isl_union_map_free (scop
->may_war_no_source
);
464 isl_union_map_free (scop
->must_waw
);
465 isl_union_map_free (scop
->may_waw
);
466 isl_union_map_free (scop
->must_waw_no_source
);
467 isl_union_map_free (scop
->may_waw_no_source
);
468 free_lst (SCOP_ORIGINAL_SCHEDULE (scop
));
469 free_lst (SCOP_TRANSFORMED_SCHEDULE (scop
));
470 free_lst (SCOP_SAVED_SCHEDULE (scop
));
474 /* Print to FILE the domain of PBB in OpenScop format, at some VERBOSITY
478 openscop_print_pbb_domain (FILE *file
, poly_bb_p pbb
, int verbosity
)
481 gimple_bb_p gbb
= PBB_BLACK_BOX (pbb
);
488 fprintf (file
, "\n# Iteration domain of bb_%d (\n", GBB_BB (gbb
)->index
);
489 fprintf (file
, "#eq");
491 for (i
= 0; i
< pbb_dim_iter_domain (pbb
); i
++)
492 fprintf (file
, " i%d", (int) i
);
494 for (i
= 0; i
< pbb_nb_params (pbb
); i
++)
495 fprintf (file
, " p%d", (int) i
);
497 fprintf (file
, " cst\n");
500 fprintf (file
, "XXX isl\n");
503 fprintf (file
, "#)\n");
506 /* Print to FILE the domain of PBB, at some VERBOSITY level. */
509 print_pbb_domain (FILE *file
, poly_bb_p pbb
, int verbosity ATTRIBUTE_UNUSED
)
511 print_isl_set (file
, pbb
->domain
);
514 /* Dump the cases of a graphite basic block GBB on FILE. */
517 dump_gbb_cases (FILE *file
, gimple_bb_p gbb
)
526 cases
= GBB_CONDITION_CASES (gbb
);
527 if (cases
.is_empty ())
530 fprintf (file
, "# cases bb_%d (\n", GBB_BB (gbb
)->index
);
532 FOR_EACH_VEC_ELT (cases
, i
, stmt
)
534 fprintf (file
, "# ");
535 print_gimple_stmt (file
, stmt
, 0, 0);
538 fprintf (file
, "#)\n");
541 /* Dump conditions of a graphite basic block GBB on FILE. */
544 dump_gbb_conditions (FILE *file
, gimple_bb_p gbb
)
548 vec
<gimple
> conditions
;
553 conditions
= GBB_CONDITIONS (gbb
);
554 if (conditions
.is_empty ())
557 fprintf (file
, "# conditions bb_%d (\n", GBB_BB (gbb
)->index
);
559 FOR_EACH_VEC_ELT (conditions
, i
, stmt
)
561 fprintf (file
, "# ");
562 print_gimple_stmt (file
, stmt
, 0, 0);
565 fprintf (file
, "#)\n");
568 /* Print to FILE all the data references of PBB, at some VERBOSITY
572 print_pdrs (FILE *file
, poly_bb_p pbb
, int verbosity
)
579 if (PBB_DRS (pbb
).length () == 0)
582 fprintf (file
, "# Access informations are not provided\n");\
583 fprintf (file
, "0\n");
588 fprintf (file
, "# Data references (\n");
591 fprintf (file
, "# Access informations are provided\n");
592 fprintf (file
, "1\n");
594 FOR_EACH_VEC_ELT (PBB_DRS (pbb
), i
, pdr
)
595 if (PDR_TYPE (pdr
) == PDR_READ
)
601 fprintf (file
, "# Read data references (\n");
604 fprintf (file
, "# Read access informations\n");
605 fprintf (file
, "%d\n", nb_reads
);
607 FOR_EACH_VEC_ELT (PBB_DRS (pbb
), i
, pdr
)
608 if (PDR_TYPE (pdr
) == PDR_READ
)
609 print_pdr (file
, pdr
, verbosity
);
612 fprintf (file
, "#)\n");
615 fprintf (file
, "# Write data references (\n");
618 fprintf (file
, "# Write access informations\n");
619 fprintf (file
, "%d\n", nb_writes
);
621 FOR_EACH_VEC_ELT (PBB_DRS (pbb
), i
, pdr
)
622 if (PDR_TYPE (pdr
) != PDR_READ
)
623 print_pdr (file
, pdr
, verbosity
);
626 fprintf (file
, "#)\n");
629 fprintf (file
, "#)\n");
632 /* Print to STDERR all the data references of PBB. */
635 debug_pdrs (poly_bb_p pbb
, int verbosity
)
637 print_pdrs (stderr
, pbb
, verbosity
);
640 /* Print to FILE the body of PBB, at some VERBOSITY level.
641 If statement_body_provided is false statement body is not printed. */
644 print_pbb_body (FILE *file
, poly_bb_p pbb
, int verbosity
,
645 bool statement_body_provided
)
648 fprintf (file
, "# Body (\n");
650 if (!statement_body_provided
)
653 fprintf (file
, "# Statement body is not provided\n");
655 fprintf (file
, "0\n");
658 fprintf (file
, "#)\n");
663 fprintf (file
, "# Statement body is provided\n");
664 fprintf (file
, "1\n");
667 fprintf (file
, "# Original iterator names\n# Iterator names are not provided yet.\n");
670 fprintf (file
, "# Statement body\n");
672 fprintf (file
, "{\n");
673 dump_bb (file
, pbb_bb (pbb
), 0, 0);
674 fprintf (file
, "}\n");
677 fprintf (file
, "#)\n");
680 /* Print to FILE the domain and scattering function of PBB, at some
684 print_pbb (FILE *file
, poly_bb_p pbb
, int verbosity
)
688 fprintf (file
, "# pbb_%d (\n", pbb_index (pbb
));
689 dump_gbb_conditions (file
, PBB_BLACK_BOX (pbb
));
690 dump_gbb_cases (file
, PBB_BLACK_BOX (pbb
));
693 openscop_print_pbb_domain (file
, pbb
, verbosity
);
694 print_scattering_function (file
, pbb
, verbosity
);
695 print_pdrs (file
, pbb
, verbosity
);
696 print_pbb_body (file
, pbb
, verbosity
, false);
699 fprintf (file
, "#)\n");
702 /* Print to FILE the parameters of SCOP, at some VERBOSITY level. */
705 print_scop_params (FILE *file
, scop_p scop
, int verbosity
)
711 fprintf (file
, "# parameters (\n");
713 if (SESE_PARAMS (SCOP_REGION (scop
)).length ())
716 fprintf (file
, "# Parameter names are provided\n");
718 fprintf (file
, "1\n");
721 fprintf (file
, "# Parameter names\n");
726 fprintf (file
, "# Parameter names are not provided\n");
727 fprintf (file
, "0\n");
730 FOR_EACH_VEC_ELT (SESE_PARAMS (SCOP_REGION (scop
)), i
, t
)
732 print_generic_expr (file
, t
, 0);
736 fprintf (file
, "\n");
739 fprintf (file
, "#)\n");
742 /* Print to FILE the context of SCoP in OpenScop format, at some VERBOSITY
746 openscop_print_scop_context (FILE *file
, scop_p scop
, int verbosity
)
752 fprintf (file
, "# Context (\n");
753 fprintf (file
, "#eq");
755 for (i
= 0; i
< scop_nb_params (scop
); i
++)
756 fprintf (file
, " p%d", (int) i
);
758 fprintf (file
, " cst\n");
762 /* XXX isl print context */
763 fprintf (file
, "XXX isl\n");
765 fprintf (file
, "0 %d 0 0 0 %d\n", (int) scop_nb_params (scop
) + 2,
766 (int) scop_nb_params (scop
));
769 fprintf (file
, "# )\n");
772 /* Print to FILE the context of SCoP, at some VERBOSITY level. */
775 print_scop_context (FILE *file
, scop_p scop
, int verbosity
)
781 fprintf (file
, "# Context (\n");
782 fprintf (file
, "#eq");
784 for (i
= 0; i
< scop_nb_params (scop
); i
++)
785 fprintf (file
, " p%d", (int) i
);
787 fprintf (file
, " cst\n");
791 print_isl_set (file
, scop
->context
);
793 fprintf (file
, "no isl context %d\n", (int) scop_nb_params (scop
) + 2);
796 fprintf (file
, "# )\n");
799 /* Print to FILE the SCOP, at some VERBOSITY level. */
802 print_scop (FILE *file
, scop_p scop
, int verbosity
)
807 fprintf (file
, "SCoP 1\n#(\n");
808 fprintf (file
, "# Language\nGimple\n");
809 openscop_print_scop_context (file
, scop
, verbosity
);
810 print_scop_params (file
, scop
, verbosity
);
813 fprintf (file
, "# Number of statements\n");
815 fprintf (file
, "%d\n", SCOP_BBS (scop
).length ());
817 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
818 print_pbb (file
, pbb
, verbosity
);
822 fprintf (file
, "# original_lst (\n");
823 print_lst (file
, SCOP_ORIGINAL_SCHEDULE (scop
), 0);
824 fprintf (file
, "\n#)\n");
826 fprintf (file
, "# transformed_lst (\n");
827 print_lst (file
, SCOP_TRANSFORMED_SCHEDULE (scop
), 0);
828 fprintf (file
, "\n#)\n");
831 fprintf (file
, "#)\n");
834 /* Print to FILE the input file that CLooG would expect as input, at
835 some VERBOSITY level. */
838 print_cloog (FILE *file
, scop_p scop
, int verbosity
)
843 fprintf (file
, "# SCoP (generated by GCC/Graphite\n");
845 fprintf (file
, "# CLooG output language\n");
846 fprintf (file
, "c\n");
848 print_scop_context (file
, scop
, verbosity
);
849 print_scop_params (file
, scop
, verbosity
);
852 fprintf (file
, "# Number of statements\n");
854 fprintf (file
, "%d\n", SCOP_BBS (scop
).length ());
856 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
859 fprintf (file
, "# pbb_%d (\n", pbb_index (pbb
));
861 print_pbb_domain (file
, pbb
, verbosity
);
862 fprintf (file
, "0 0 0");
865 fprintf (file
, "# For future CLooG options.\n");
867 fprintf (file
, "\n");
870 fprintf (file
, "#)\n");
875 fprintf (file
, "# Don't set the iterator names.\n");
877 fprintf (file
, "\n");
880 fprintf (file
, "# Number of scattering functions\n");
882 fprintf (file
, "%d\n", SCOP_BBS (scop
).length ());
884 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
886 if (!(pbb
->transformed
|| pbb
->schedule
))
890 fprintf (file
, "# pbb_%d (\n", pbb_index (pbb
));
892 print_scattering_function_1 (file
, pbb
, verbosity
);
895 fprintf (file
, "#)\n");
900 fprintf (file
, "# Don't set the scattering dimension names.\n");
902 fprintf (file
, "\n");
904 fprintf (file
, "#)\n");
907 /* Print to STDERR the domain of PBB, at some VERBOSITY level. */
910 debug_pbb_domain (poly_bb_p pbb
, int verbosity
)
912 print_pbb_domain (stderr
, pbb
, verbosity
);
915 /* Print to FILE the domain and scattering function of PBB, at some
919 debug_pbb (poly_bb_p pbb
, int verbosity
)
921 print_pbb (stderr
, pbb
, verbosity
);
924 /* Print to STDERR the context of SCOP, at some VERBOSITY level. */
927 debug_scop_context (scop_p scop
, int verbosity
)
929 print_scop_context (stderr
, scop
, verbosity
);
932 /* Print to STDERR the SCOP, at some VERBOSITY level. */
935 debug_scop (scop_p scop
, int verbosity
)
937 print_scop (stderr
, scop
, verbosity
);
940 /* Print to STDERR the SCOP under CLooG format, at some VERBOSITY
944 debug_cloog (scop_p scop
, int verbosity
)
946 print_cloog (stderr
, scop
, verbosity
);
949 /* Print to STDERR the parameters of SCOP, at some VERBOSITY
953 debug_scop_params (scop_p scop
, int verbosity
)
955 print_scop_params (stderr
, scop
, verbosity
);
958 extern isl_ctx
*the_isl_ctx
;
960 print_isl_set (FILE *f
, isl_set
*set
)
962 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
963 p
= isl_printer_print_set (p
, set
);
964 isl_printer_free (p
);
968 debug_isl_set (isl_set
*set
)
970 print_isl_set (stderr
, set
);
974 print_isl_map (FILE *f
, isl_map
*map
)
976 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
977 p
= isl_printer_print_map (p
, map
);
978 isl_printer_free (p
);
982 debug_isl_map (isl_map
*map
)
984 print_isl_map (stderr
, map
);
988 print_isl_aff (FILE *f
, isl_aff
*aff
)
990 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
991 p
= isl_printer_print_aff (p
, aff
);
992 isl_printer_free (p
);
996 debug_isl_aff (isl_aff
*aff
)
998 print_isl_aff (stderr
, aff
);
1002 print_isl_constraint (FILE *f
, isl_constraint
*c
)
1004 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
1005 p
= isl_printer_print_constraint (p
, c
);
1006 isl_printer_free (p
);
1010 debug_isl_constraint (isl_constraint
*c
)
1012 print_isl_constraint (stderr
, c
);
1015 /* Returns the number of iterations RES of the loop around PBB at
1016 time(scattering) dimension TIME_DEPTH. */
1019 pbb_number_of_iterations_at_time (poly_bb_p pbb
,
1020 graphite_dim_t time_depth
,
1023 isl_set
*transdomain
;
1026 isl_int isllb
, islub
;
1028 isl_int_init (isllb
);
1029 isl_int_init (islub
);
1031 /* Map the iteration domain through the current scatter, and work
1032 on the resulting set. */
1033 transdomain
= isl_set_apply (isl_set_copy (pbb
->domain
),
1034 isl_map_copy (pbb
->transformed
));
1036 /* Select the time_depth' dimension via an affine expression. */
1037 dc
= isl_set_get_space (transdomain
);
1038 aff
= isl_aff_zero_on_domain (isl_local_space_from_space (dc
));
1039 aff
= isl_aff_set_coefficient_si (aff
, isl_dim_in
, time_depth
, 1);
1041 /* And find the min/max for that function. */
1042 /* XXX isl check results? */
1043 isl_set_min (transdomain
, aff
, &isllb
);
1044 isl_set_max (transdomain
, aff
, &islub
);
1046 isl_int_sub (islub
, islub
, isllb
);
1047 isl_int_add_ui (islub
, islub
, 1);
1048 isl_int_get_gmp (islub
, res
);
1050 isl_int_clear (isllb
);
1051 isl_int_clear (islub
);
1053 isl_set_free (transdomain
);
1056 /* Translates LOOP to LST. */
1059 loop_to_lst (loop_p loop
, vec
<poly_bb_p
> bbs
, int *i
)
1065 for (; bbs
.iterate (*i
, &pbb
); (*i
)++)
1068 basic_block bb
= GBB_BB (PBB_BLACK_BOX (pbb
));
1070 if (bb
->loop_father
== loop
)
1071 stmt
= new_lst_stmt (pbb
);
1072 else if (flow_bb_inside_loop_p (loop
, bb
))
1074 loop_p next
= loop
->inner
;
1076 while (next
&& !flow_bb_inside_loop_p (next
, bb
))
1079 stmt
= loop_to_lst (next
, bbs
, i
);
1084 return new_lst_loop (seq
);
1087 seq
.safe_push (stmt
);
1090 return new_lst_loop (seq
);
1093 /* Reads the original scattering of the SCOP and returns an LST
1097 scop_to_lst (scop_p scop
)
1100 int i
, n
= SCOP_BBS (scop
).length ();
1103 sese region
= SCOP_REGION (scop
);
1105 for (i
= 0; i
< n
; i
++)
1107 poly_bb_p pbb
= SCOP_BBS (scop
)[i
];
1108 loop_p loop
= outermost_loop_in_sese (region
, GBB_BB (PBB_BLACK_BOX (pbb
)));
1110 if (loop_in_sese_p (loop
, region
))
1111 res
= loop_to_lst (loop
, SCOP_BBS (scop
), &i
);
1113 res
= new_lst_stmt (pbb
);
1115 seq
.safe_push (res
);
1118 res
= new_lst_loop (seq
);
1119 SCOP_ORIGINAL_SCHEDULE (scop
) = res
;
1120 SCOP_TRANSFORMED_SCHEDULE (scop
) = copy_lst (res
);
1123 /* Print to FILE on a new line COLUMN white spaces. */
1126 lst_indent_to (FILE *file
, int column
)
1131 fprintf (file
, "\n#");
1133 for (i
= 0; i
< column
; i
++)
1134 fprintf (file
, " ");
1137 /* Print LST to FILE with INDENT spaces of indentation. */
1140 print_lst (FILE *file
, lst_p lst
, int indent
)
1145 lst_indent_to (file
, indent
);
1147 if (LST_LOOP_P (lst
))
1152 if (LST_LOOP_FATHER (lst
))
1153 fprintf (file
, "%d (loop", lst_dewey_number (lst
));
1155 fprintf (file
, "#(root");
1157 FOR_EACH_VEC_ELT (LST_SEQ (lst
), i
, l
)
1158 print_lst (file
, l
, indent
+ 2);
1160 fprintf (file
, ")");
1163 fprintf (file
, "%d stmt_%d", lst_dewey_number (lst
), pbb_index (LST_PBB (lst
)));
1166 /* Print LST to STDERR. */
1169 debug_lst (lst_p lst
)
1171 print_lst (stderr
, lst
, 0);
1174 /* Pretty print to FILE the loop statement tree LST in DOT format. */
1177 dot_lst_1 (FILE *file
, lst_p lst
)
1182 if (LST_LOOP_P (lst
))
1187 if (!LST_LOOP_FATHER (lst
))
1188 fprintf (file
, "L -> L_%d_%d\n",
1190 lst_dewey_number (lst
));
1192 fprintf (file
, "L_%d_%d -> L_%d_%d\n",
1193 lst_depth (LST_LOOP_FATHER (lst
)),
1194 lst_dewey_number (LST_LOOP_FATHER (lst
)),
1196 lst_dewey_number (lst
));
1198 FOR_EACH_VEC_ELT (LST_SEQ (lst
), i
, l
)
1199 dot_lst_1 (file
, l
);
1203 fprintf (file
, "L_%d_%d -> S_%d\n",
1204 lst_depth (LST_LOOP_FATHER (lst
)),
1205 lst_dewey_number (LST_LOOP_FATHER (lst
)),
1206 pbb_index (LST_PBB (lst
)));
1210 /* Display the LST using dotty. */
1215 /* When debugging, enable the following code. This cannot be used
1216 in production compilers because it calls "system". */
1218 FILE *stream
= fopen ("/tmp/lst.dot", "w");
1219 gcc_assert (stream
);
1221 fputs ("digraph all {\n", stream
);
1222 dot_lst_1 (stream
, lst
);
1223 fputs ("}\n\n", stream
);
1226 system ("dotty /tmp/lst.dot &");
1228 fputs ("digraph all {\n", stderr
);
1229 dot_lst_1 (stderr
, lst
);
1230 fputs ("}\n\n", stderr
);
1235 /* Computes a checksum for the code generated by CLooG for SCOP. */
1238 cloog_checksum (scop_p scop ATTRIBUTE_UNUSED
)
1240 /* When debugging, enable the following code. This cannot be used
1241 in production compilers because it calls "system". */
1243 FILE *stream
= fopen ("/tmp/scop.cloog", "w");
1244 gcc_assert (stream
);
1245 print_cloog (stream
, scop
, 0);
1248 fputs ("\n", stdout
);
1249 system ("cloog -compilable 1 /tmp/scop.cloog > /tmp/scop.c ; gcc -O0 -g /tmp/scop.c -lm -o /tmp/scop; /tmp/scop | md5sum ");
1253 /* Reverse the loop around PBB at level DEPTH. */
1256 reverse_loop_at_level (poly_bb_p pbb
, int depth
)
1258 unsigned i
, depth_dim
= psct_dynamic_dim (pbb
, depth
);
1259 isl_space
*d
= isl_map_get_space (pbb
->transformed
);
1260 isl_space
*d1
= isl_space_range (d
);
1261 unsigned n
= isl_space_dim (d1
, isl_dim_out
);
1262 isl_space
*d2
= isl_space_add_dims (d1
, isl_dim_in
, n
);
1263 isl_map
*x
= isl_map_universe (isl_space_copy (d2
));
1264 isl_constraint
*c
= isl_equality_alloc (isl_local_space_from_space (d2
));
1266 for (i
= 0; i
< n
; i
++)
1268 x
= isl_map_equate (x
, isl_dim_in
, i
, isl_dim_out
, i
);
1270 c
= isl_constraint_set_coefficient_si (c
, isl_dim_in
, depth_dim
, 1);
1271 c
= isl_constraint_set_coefficient_si (c
, isl_dim_out
, depth_dim
, 1);
1272 x
= isl_map_add_constraint (x
, c
);
1276 /* Reverse the loop at level DEPTH for all the PBBS. */
1279 reverse_loop_for_pbbs (scop_p scop
, vec
<poly_bb_p
> pbbs
, int depth
)
1283 isl_space
*space
= isl_space_from_domain (isl_set_get_space (scop
->context
));
1284 isl_union_map
*res
= isl_union_map_empty (space
);
1286 for (i
= 0; pbbs
.iterate (i
, &pbb
); i
++)
1287 res
= isl_union_map_add_map (res
, reverse_loop_at_level (pbb
, depth
));