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-pretty-print.h"
42 #include "tree-chrec.h"
43 #include "tree-data-ref.h"
44 #include "tree-scalar-evolution.h"
48 #include "graphite-poly.h"
50 #define OPENSCOP_MAX_STRING 256
53 /* Print to STDERR the GMP value VAL. */
56 debug_gmp_value (mpz_t val
)
58 gmp_fprintf (stderr
, "%Zd", val
);
61 /* Return the maximal loop depth in SCOP. */
64 scop_max_loop_depth (scop_p scop
)
70 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
72 int nb_loops
= pbb_dim_iter_domain (pbb
);
73 if (max_nb_loops
< nb_loops
)
74 max_nb_loops
= nb_loops
;
80 /* Prints to FILE the scattering function of PBB, at some VERBOSITY
84 print_scattering_function_1 (FILE *file
, poly_bb_p pbb
, int verbosity
)
90 fprintf (file
, "# scattering bb_%d (\n", pbb_index (pbb
));
91 fprintf (file
, "#eq");
93 for (i
= 0; i
< pbb_nb_scattering_transform (pbb
); i
++)
94 fprintf (file
, " s%d", (int) i
);
96 for (i
= 0; i
< pbb_nb_local_vars (pbb
); i
++)
97 fprintf (file
, " lv%d", (int) i
);
99 for (i
= 0; i
< pbb_dim_iter_domain (pbb
); i
++)
100 fprintf (file
, " i%d", (int) i
);
102 for (i
= 0; i
< pbb_nb_params (pbb
); i
++)
103 fprintf (file
, " p%d", (int) i
);
105 fprintf (file
, " cst\n");
108 fprintf (file
, "isl\n");
109 print_isl_map (file
, pbb
->transformed
? pbb
->transformed
: pbb
->schedule
);
112 fprintf (file
, "#)\n");
115 /* Prints to FILE the scattering function of PBB, at some VERBOSITY
119 print_scattering_function (FILE *file
, poly_bb_p pbb
, int verbosity
)
121 if (!PBB_TRANSFORMED (pbb
))
124 if (pbb
->schedule
|| pbb
->transformed
)
127 fprintf (file
, "# Scattering function is provided\n");
129 fprintf (file
, "1\n");
134 fprintf (file
, "# Scattering function is not provided\n");
136 fprintf (file
, "0\n");
140 print_scattering_function_1 (file
, pbb
, verbosity
);
143 fprintf (file
, "# Scattering names are not provided\n");
145 fprintf (file
, "0\n");
149 /* Prints to FILE the iteration domain of PBB, at some VERBOSITY
153 print_iteration_domain (FILE *file
, poly_bb_p pbb
, int verbosity
)
155 print_pbb_domain (file
, pbb
, verbosity
);
158 /* Prints to FILE the scattering functions of every PBB of SCOP. */
161 print_scattering_functions (FILE *file
, scop_p scop
, int verbosity
)
166 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
167 print_scattering_function (file
, pbb
, verbosity
);
170 /* Prints to FILE the iteration domains of every PBB of SCOP, at some
174 print_iteration_domains (FILE *file
, scop_p scop
, int verbosity
)
179 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
180 print_iteration_domain (file
, pbb
, verbosity
);
183 /* Prints to STDERR the scattering function of PBB, at some VERBOSITY
187 debug_scattering_function (poly_bb_p pbb
, int verbosity
)
189 print_scattering_function (stderr
, pbb
, verbosity
);
192 /* Prints to STDERR the iteration domain of PBB, at some VERBOSITY
196 debug_iteration_domain (poly_bb_p pbb
, int verbosity
)
198 print_iteration_domain (stderr
, pbb
, verbosity
);
201 /* Prints to STDERR the scattering functions of every PBB of SCOP, at
202 some VERBOSITY level. */
205 debug_scattering_functions (scop_p scop
, int verbosity
)
207 print_scattering_functions (stderr
, scop
, verbosity
);
210 /* Prints to STDERR the iteration domains of every PBB of SCOP, at
211 some VERBOSITY level. */
214 debug_iteration_domains (scop_p scop
, int verbosity
)
216 print_iteration_domains (stderr
, scop
, verbosity
);
219 /* Apply graphite transformations to all the basic blocks of SCOP. */
222 apply_poly_transforms (scop_p scop
)
224 bool transform_done
= false;
226 /* Generate code even if we did not apply any real transformation.
227 This also allows to check the performance for the identity
228 transformation: GIMPLE -> GRAPHITE -> GIMPLE
229 Keep in mind that CLooG optimizes in control, so the loop structure
230 may change, even if we only use -fgraphite-identity. */
231 if (flag_graphite_identity
)
232 transform_done
= true;
234 if (flag_loop_parallelize_all
)
235 transform_done
= true;
238 transform_done
|= scop_do_block (scop
);
241 if (flag_loop_strip_mine
)
242 transform_done
|= scop_do_strip_mine (scop
, 0);
244 if (flag_loop_interchange
)
245 transform_done
|= scop_do_interchange (scop
);
248 /* This pass needs to be run at the final stage, as it does not
250 if (flag_loop_optimize_isl
)
251 transform_done
|= optimize_isl (scop
);
253 return transform_done
;
256 /* Create a new polyhedral data reference and add it to PBB. It is
257 defined by its ACCESSES, its TYPE, and the number of subscripts
261 new_poly_dr (poly_bb_p pbb
, int dr_base_object_set
,
262 enum poly_dr_type type
, void *cdr
, graphite_dim_t nb_subscripts
,
263 isl_map
*acc
, isl_set
*extent
)
266 poly_dr_p pdr
= XNEW (struct poly_dr
);
269 PDR_BASE_OBJECT_SET (pdr
) = dr_base_object_set
;
270 PDR_NB_REFS (pdr
) = 1;
273 pdr
->extent
= extent
;
274 PDR_TYPE (pdr
) = type
;
276 PDR_NB_SUBSCRIPTS (pdr
) = nb_subscripts
;
277 PBB_DRS (pbb
).safe_push (pdr
);
280 /* Free polyhedral data reference PDR. */
283 free_poly_dr (poly_dr_p pdr
)
285 isl_map_free (pdr
->accesses
);
286 isl_set_free (pdr
->extent
);
290 /* Create a new polyhedral black box. */
293 new_poly_bb (scop_p scop
, void *black_box
)
295 poly_bb_p pbb
= XNEW (struct poly_bb
);
298 pbb
->schedule
= NULL
;
299 pbb
->transformed
= NULL
;
301 PBB_SCOP (pbb
) = scop
;
302 pbb_set_black_box (pbb
, black_box
);
303 PBB_TRANSFORMED (pbb
) = NULL
;
304 PBB_SAVED (pbb
) = NULL
;
305 PBB_ORIGINAL (pbb
) = NULL
;
306 PBB_DRS (pbb
).create (3);
307 PBB_IS_REDUCTION (pbb
) = false;
308 GBB_PBB ((gimple_bb_p
) black_box
) = pbb
;
313 /* Free polyhedral black box. */
316 free_poly_bb (poly_bb_p pbb
)
321 isl_set_free (pbb
->domain
);
322 isl_map_free (pbb
->schedule
);
323 isl_map_free (pbb
->transformed
);
324 isl_map_free (pbb
->saved
);
326 if (PBB_DRS (pbb
).exists ())
327 FOR_EACH_VEC_ELT (PBB_DRS (pbb
), i
, pdr
)
330 PBB_DRS (pbb
).release ();
335 print_pdr_access_layout (FILE *file
, poly_bb_p pbb
, poly_dr_p pdr
)
339 fprintf (file
, "# eq");
341 fprintf (file
, " alias");
343 for (i
= 0; i
< PDR_NB_SUBSCRIPTS (pdr
); i
++)
344 fprintf (file
, " sub%d", (int) i
);
346 for (i
= 0; i
< pbb_dim_iter_domain (pbb
); i
++)
347 fprintf (file
, " i%d", (int) i
);
349 for (i
= 0; i
< pbb_nb_params (pbb
); i
++)
350 fprintf (file
, " p%d", (int) i
);
352 fprintf (file
, " cst\n");
355 /* Prints to FILE the polyhedral data reference PDR, at some VERBOSITY
359 print_pdr (FILE *file
, poly_dr_p pdr
, int verbosity
)
363 fprintf (file
, "# pdr_%d (", PDR_ID (pdr
));
365 switch (PDR_TYPE (pdr
))
368 fprintf (file
, "read \n");
372 fprintf (file
, "write \n");
376 fprintf (file
, "may_write \n");
383 dump_data_reference (file
, (data_reference_p
) PDR_CDR (pdr
));
388 fprintf (file
, "# data accesses (\n");
389 print_pdr_access_layout (file
, PDR_PBB (pdr
), pdr
);
392 /* XXX isl dump accesses/subscripts */
395 fprintf (file
, "#)\n");
398 fprintf (file
, "#)\n");
401 /* Prints to STDERR the polyhedral data reference PDR, at some
405 debug_pdr (poly_dr_p pdr
, int verbosity
)
407 print_pdr (stderr
, pdr
, verbosity
);
410 /* Creates a new SCOP containing REGION. */
413 new_scop (void *region
)
415 scop_p scop
= XNEW (struct scop
);
417 scop
->context
= NULL
;
418 scop
->must_raw
= NULL
;
419 scop
->may_raw
= NULL
;
420 scop
->must_raw_no_source
= NULL
;
421 scop
->may_raw_no_source
= NULL
;
422 scop
->must_war
= NULL
;
423 scop
->may_war
= NULL
;
424 scop
->must_war_no_source
= NULL
;
425 scop
->may_war_no_source
= NULL
;
426 scop
->must_waw
= NULL
;
427 scop
->may_waw
= NULL
;
428 scop
->must_waw_no_source
= NULL
;
429 scop
->may_waw_no_source
= NULL
;
430 scop_set_region (scop
, region
);
431 SCOP_BBS (scop
).create (3);
432 SCOP_ORIGINAL_SCHEDULE (scop
) = NULL
;
433 SCOP_TRANSFORMED_SCHEDULE (scop
) = NULL
;
434 SCOP_SAVED_SCHEDULE (scop
) = NULL
;
435 POLY_SCOP_P (scop
) = false;
443 free_scop (scop_p scop
)
448 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
451 SCOP_BBS (scop
).release ();
453 isl_set_free (scop
->context
);
454 isl_union_map_free (scop
->must_raw
);
455 isl_union_map_free (scop
->may_raw
);
456 isl_union_map_free (scop
->must_raw_no_source
);
457 isl_union_map_free (scop
->may_raw_no_source
);
458 isl_union_map_free (scop
->must_war
);
459 isl_union_map_free (scop
->may_war
);
460 isl_union_map_free (scop
->must_war_no_source
);
461 isl_union_map_free (scop
->may_war_no_source
);
462 isl_union_map_free (scop
->must_waw
);
463 isl_union_map_free (scop
->may_waw
);
464 isl_union_map_free (scop
->must_waw_no_source
);
465 isl_union_map_free (scop
->may_waw_no_source
);
466 free_lst (SCOP_ORIGINAL_SCHEDULE (scop
));
467 free_lst (SCOP_TRANSFORMED_SCHEDULE (scop
));
468 free_lst (SCOP_SAVED_SCHEDULE (scop
));
472 /* Print to FILE the domain of PBB in OpenScop format, at some VERBOSITY
476 openscop_print_pbb_domain (FILE *file
, poly_bb_p pbb
, int verbosity
)
479 gimple_bb_p gbb
= PBB_BLACK_BOX (pbb
);
486 fprintf (file
, "\n# Iteration domain of bb_%d (\n", GBB_BB (gbb
)->index
);
487 fprintf (file
, "#eq");
489 for (i
= 0; i
< pbb_dim_iter_domain (pbb
); i
++)
490 fprintf (file
, " i%d", (int) i
);
492 for (i
= 0; i
< pbb_nb_params (pbb
); i
++)
493 fprintf (file
, " p%d", (int) i
);
495 fprintf (file
, " cst\n");
498 fprintf (file
, "XXX isl\n");
501 fprintf (file
, "#)\n");
504 /* Print to FILE the domain of PBB, at some VERBOSITY level. */
507 print_pbb_domain (FILE *file
, poly_bb_p pbb
, int verbosity ATTRIBUTE_UNUSED
)
509 print_isl_set (file
, pbb
->domain
);
512 /* Dump the cases of a graphite basic block GBB on FILE. */
515 dump_gbb_cases (FILE *file
, gimple_bb_p gbb
)
524 cases
= GBB_CONDITION_CASES (gbb
);
525 if (cases
.is_empty ())
528 fprintf (file
, "# cases bb_%d (\n", GBB_BB (gbb
)->index
);
530 FOR_EACH_VEC_ELT (cases
, i
, stmt
)
532 fprintf (file
, "# ");
533 print_gimple_stmt (file
, stmt
, 0, 0);
536 fprintf (file
, "#)\n");
539 /* Dump conditions of a graphite basic block GBB on FILE. */
542 dump_gbb_conditions (FILE *file
, gimple_bb_p gbb
)
546 vec
<gimple
> conditions
;
551 conditions
= GBB_CONDITIONS (gbb
);
552 if (conditions
.is_empty ())
555 fprintf (file
, "# conditions bb_%d (\n", GBB_BB (gbb
)->index
);
557 FOR_EACH_VEC_ELT (conditions
, i
, stmt
)
559 fprintf (file
, "# ");
560 print_gimple_stmt (file
, stmt
, 0, 0);
563 fprintf (file
, "#)\n");
566 /* Print to FILE all the data references of PBB, at some VERBOSITY
570 print_pdrs (FILE *file
, poly_bb_p pbb
, int verbosity
)
577 if (PBB_DRS (pbb
).length () == 0)
580 fprintf (file
, "# Access informations are not provided\n");\
581 fprintf (file
, "0\n");
586 fprintf (file
, "# Data references (\n");
589 fprintf (file
, "# Access informations are provided\n");
590 fprintf (file
, "1\n");
592 FOR_EACH_VEC_ELT (PBB_DRS (pbb
), i
, pdr
)
593 if (PDR_TYPE (pdr
) == PDR_READ
)
599 fprintf (file
, "# Read data references (\n");
602 fprintf (file
, "# Read access informations\n");
603 fprintf (file
, "%d\n", nb_reads
);
605 FOR_EACH_VEC_ELT (PBB_DRS (pbb
), i
, pdr
)
606 if (PDR_TYPE (pdr
) == PDR_READ
)
607 print_pdr (file
, pdr
, verbosity
);
610 fprintf (file
, "#)\n");
613 fprintf (file
, "# Write data references (\n");
616 fprintf (file
, "# Write access informations\n");
617 fprintf (file
, "%d\n", nb_writes
);
619 FOR_EACH_VEC_ELT (PBB_DRS (pbb
), i
, pdr
)
620 if (PDR_TYPE (pdr
) != PDR_READ
)
621 print_pdr (file
, pdr
, verbosity
);
624 fprintf (file
, "#)\n");
627 fprintf (file
, "#)\n");
630 /* Print to STDERR all the data references of PBB. */
633 debug_pdrs (poly_bb_p pbb
, int verbosity
)
635 print_pdrs (stderr
, pbb
, verbosity
);
638 /* Print to FILE the body of PBB, at some VERBOSITY level.
639 If statement_body_provided is false statement body is not printed. */
642 print_pbb_body (FILE *file
, poly_bb_p pbb
, int verbosity
,
643 bool statement_body_provided
)
646 fprintf (file
, "# Body (\n");
648 if (!statement_body_provided
)
651 fprintf (file
, "# Statement body is not provided\n");
653 fprintf (file
, "0\n");
656 fprintf (file
, "#)\n");
661 fprintf (file
, "# Statement body is provided\n");
662 fprintf (file
, "1\n");
665 fprintf (file
, "# Original iterator names\n# Iterator names are not provided yet.\n");
668 fprintf (file
, "# Statement body\n");
670 fprintf (file
, "{\n");
671 dump_bb (file
, pbb_bb (pbb
), 0, 0);
672 fprintf (file
, "}\n");
675 fprintf (file
, "#)\n");
678 /* Print to FILE the domain and scattering function of PBB, at some
682 print_pbb (FILE *file
, poly_bb_p pbb
, int verbosity
)
686 fprintf (file
, "# pbb_%d (\n", pbb_index (pbb
));
687 dump_gbb_conditions (file
, PBB_BLACK_BOX (pbb
));
688 dump_gbb_cases (file
, PBB_BLACK_BOX (pbb
));
691 openscop_print_pbb_domain (file
, pbb
, verbosity
);
692 print_scattering_function (file
, pbb
, verbosity
);
693 print_pdrs (file
, pbb
, verbosity
);
694 print_pbb_body (file
, pbb
, verbosity
, false);
697 fprintf (file
, "#)\n");
700 /* Print to FILE the parameters of SCOP, at some VERBOSITY level. */
703 print_scop_params (FILE *file
, scop_p scop
, int verbosity
)
709 fprintf (file
, "# parameters (\n");
711 if (SESE_PARAMS (SCOP_REGION (scop
)).length ())
714 fprintf (file
, "# Parameter names are provided\n");
716 fprintf (file
, "1\n");
719 fprintf (file
, "# Parameter names\n");
724 fprintf (file
, "# Parameter names are not provided\n");
725 fprintf (file
, "0\n");
728 FOR_EACH_VEC_ELT (SESE_PARAMS (SCOP_REGION (scop
)), i
, t
)
730 print_generic_expr (file
, t
, 0);
734 fprintf (file
, "\n");
737 fprintf (file
, "#)\n");
740 /* Print to FILE the context of SCoP in OpenScop format, at some VERBOSITY
744 openscop_print_scop_context (FILE *file
, scop_p scop
, int verbosity
)
750 fprintf (file
, "# Context (\n");
751 fprintf (file
, "#eq");
753 for (i
= 0; i
< scop_nb_params (scop
); i
++)
754 fprintf (file
, " p%d", (int) i
);
756 fprintf (file
, " cst\n");
760 /* XXX isl print context */
761 fprintf (file
, "XXX isl\n");
763 fprintf (file
, "0 %d 0 0 0 %d\n", (int) scop_nb_params (scop
) + 2,
764 (int) scop_nb_params (scop
));
767 fprintf (file
, "# )\n");
770 /* Print to FILE the context of SCoP, at some VERBOSITY level. */
773 print_scop_context (FILE *file
, scop_p scop
, int verbosity
)
779 fprintf (file
, "# Context (\n");
780 fprintf (file
, "#eq");
782 for (i
= 0; i
< scop_nb_params (scop
); i
++)
783 fprintf (file
, " p%d", (int) i
);
785 fprintf (file
, " cst\n");
789 print_isl_set (file
, scop
->context
);
791 fprintf (file
, "no isl context %d\n", (int) scop_nb_params (scop
) + 2);
794 fprintf (file
, "# )\n");
797 /* Print to FILE the SCOP, at some VERBOSITY level. */
800 print_scop (FILE *file
, scop_p scop
, int verbosity
)
805 fprintf (file
, "SCoP 1\n#(\n");
806 fprintf (file
, "# Language\nGimple\n");
807 openscop_print_scop_context (file
, scop
, verbosity
);
808 print_scop_params (file
, scop
, verbosity
);
811 fprintf (file
, "# Number of statements\n");
813 fprintf (file
, "%d\n", SCOP_BBS (scop
).length ());
815 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
816 print_pbb (file
, pbb
, verbosity
);
820 fprintf (file
, "# original_lst (\n");
821 print_lst (file
, SCOP_ORIGINAL_SCHEDULE (scop
), 0);
822 fprintf (file
, "\n#)\n");
824 fprintf (file
, "# transformed_lst (\n");
825 print_lst (file
, SCOP_TRANSFORMED_SCHEDULE (scop
), 0);
826 fprintf (file
, "\n#)\n");
829 fprintf (file
, "#)\n");
832 /* Print to FILE the input file that CLooG would expect as input, at
833 some VERBOSITY level. */
836 print_cloog (FILE *file
, scop_p scop
, int verbosity
)
841 fprintf (file
, "# SCoP (generated by GCC/Graphite\n");
843 fprintf (file
, "# CLooG output language\n");
844 fprintf (file
, "c\n");
846 print_scop_context (file
, scop
, verbosity
);
847 print_scop_params (file
, scop
, verbosity
);
850 fprintf (file
, "# Number of statements\n");
852 fprintf (file
, "%d\n", SCOP_BBS (scop
).length ());
854 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
857 fprintf (file
, "# pbb_%d (\n", pbb_index (pbb
));
859 print_pbb_domain (file
, pbb
, verbosity
);
860 fprintf (file
, "0 0 0");
863 fprintf (file
, "# For future CLooG options.\n");
865 fprintf (file
, "\n");
868 fprintf (file
, "#)\n");
873 fprintf (file
, "# Don't set the iterator names.\n");
875 fprintf (file
, "\n");
878 fprintf (file
, "# Number of scattering functions\n");
880 fprintf (file
, "%d\n", SCOP_BBS (scop
).length ());
882 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
884 if (!(pbb
->transformed
|| pbb
->schedule
))
888 fprintf (file
, "# pbb_%d (\n", pbb_index (pbb
));
890 print_scattering_function_1 (file
, pbb
, verbosity
);
893 fprintf (file
, "#)\n");
898 fprintf (file
, "# Don't set the scattering dimension names.\n");
900 fprintf (file
, "\n");
902 fprintf (file
, "#)\n");
905 /* Print to STDERR the domain of PBB, at some VERBOSITY level. */
908 debug_pbb_domain (poly_bb_p pbb
, int verbosity
)
910 print_pbb_domain (stderr
, pbb
, verbosity
);
913 /* Print to FILE the domain and scattering function of PBB, at some
917 debug_pbb (poly_bb_p pbb
, int verbosity
)
919 print_pbb (stderr
, pbb
, verbosity
);
922 /* Print to STDERR the context of SCOP, at some VERBOSITY level. */
925 debug_scop_context (scop_p scop
, int verbosity
)
927 print_scop_context (stderr
, scop
, verbosity
);
930 /* Print to STDERR the SCOP, at some VERBOSITY level. */
933 debug_scop (scop_p scop
, int verbosity
)
935 print_scop (stderr
, scop
, verbosity
);
938 /* Print to STDERR the SCOP under CLooG format, at some VERBOSITY
942 debug_cloog (scop_p scop
, int verbosity
)
944 print_cloog (stderr
, scop
, verbosity
);
947 /* Print to STDERR the parameters of SCOP, at some VERBOSITY
951 debug_scop_params (scop_p scop
, int verbosity
)
953 print_scop_params (stderr
, scop
, verbosity
);
956 extern isl_ctx
*the_isl_ctx
;
958 print_isl_set (FILE *f
, isl_set
*set
)
960 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
961 p
= isl_printer_print_set (p
, set
);
962 isl_printer_free (p
);
966 debug_isl_set (isl_set
*set
)
968 print_isl_set (stderr
, set
);
972 print_isl_map (FILE *f
, isl_map
*map
)
974 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
975 p
= isl_printer_print_map (p
, map
);
976 isl_printer_free (p
);
980 debug_isl_map (isl_map
*map
)
982 print_isl_map (stderr
, map
);
986 print_isl_aff (FILE *f
, isl_aff
*aff
)
988 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
989 p
= isl_printer_print_aff (p
, aff
);
990 isl_printer_free (p
);
994 debug_isl_aff (isl_aff
*aff
)
996 print_isl_aff (stderr
, aff
);
1000 print_isl_constraint (FILE *f
, isl_constraint
*c
)
1002 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
1003 p
= isl_printer_print_constraint (p
, c
);
1004 isl_printer_free (p
);
1008 debug_isl_constraint (isl_constraint
*c
)
1010 print_isl_constraint (stderr
, c
);
1013 /* Returns the number of iterations RES of the loop around PBB at
1014 time(scattering) dimension TIME_DEPTH. */
1017 pbb_number_of_iterations_at_time (poly_bb_p pbb
,
1018 graphite_dim_t time_depth
,
1021 isl_set
*transdomain
;
1024 isl_int isllb
, islub
;
1026 isl_int_init (isllb
);
1027 isl_int_init (islub
);
1029 /* Map the iteration domain through the current scatter, and work
1030 on the resulting set. */
1031 transdomain
= isl_set_apply (isl_set_copy (pbb
->domain
),
1032 isl_map_copy (pbb
->transformed
));
1034 /* Select the time_depth' dimension via an affine expression. */
1035 dc
= isl_set_get_space (transdomain
);
1036 aff
= isl_aff_zero_on_domain (isl_local_space_from_space (dc
));
1037 aff
= isl_aff_set_coefficient_si (aff
, isl_dim_in
, time_depth
, 1);
1039 /* And find the min/max for that function. */
1040 /* XXX isl check results? */
1041 isl_set_min (transdomain
, aff
, &isllb
);
1042 isl_set_max (transdomain
, aff
, &islub
);
1044 isl_int_sub (islub
, islub
, isllb
);
1045 isl_int_add_ui (islub
, islub
, 1);
1046 isl_int_get_gmp (islub
, res
);
1048 isl_int_clear (isllb
);
1049 isl_int_clear (islub
);
1051 isl_set_free (transdomain
);
1054 /* Translates LOOP to LST. */
1057 loop_to_lst (loop_p loop
, vec
<poly_bb_p
> bbs
, int *i
)
1063 for (; bbs
.iterate (*i
, &pbb
); (*i
)++)
1066 basic_block bb
= GBB_BB (PBB_BLACK_BOX (pbb
));
1068 if (bb
->loop_father
== loop
)
1069 stmt
= new_lst_stmt (pbb
);
1070 else if (flow_bb_inside_loop_p (loop
, bb
))
1072 loop_p next
= loop
->inner
;
1074 while (next
&& !flow_bb_inside_loop_p (next
, bb
))
1077 stmt
= loop_to_lst (next
, bbs
, i
);
1082 return new_lst_loop (seq
);
1085 seq
.safe_push (stmt
);
1088 return new_lst_loop (seq
);
1091 /* Reads the original scattering of the SCOP and returns an LST
1095 scop_to_lst (scop_p scop
)
1098 int i
, n
= SCOP_BBS (scop
).length ();
1101 sese region
= SCOP_REGION (scop
);
1103 for (i
= 0; i
< n
; i
++)
1105 poly_bb_p pbb
= SCOP_BBS (scop
)[i
];
1106 loop_p loop
= outermost_loop_in_sese (region
, GBB_BB (PBB_BLACK_BOX (pbb
)));
1108 if (loop_in_sese_p (loop
, region
))
1109 res
= loop_to_lst (loop
, SCOP_BBS (scop
), &i
);
1111 res
= new_lst_stmt (pbb
);
1113 seq
.safe_push (res
);
1116 res
= new_lst_loop (seq
);
1117 SCOP_ORIGINAL_SCHEDULE (scop
) = res
;
1118 SCOP_TRANSFORMED_SCHEDULE (scop
) = copy_lst (res
);
1121 /* Print to FILE on a new line COLUMN white spaces. */
1124 lst_indent_to (FILE *file
, int column
)
1129 fprintf (file
, "\n#");
1131 for (i
= 0; i
< column
; i
++)
1132 fprintf (file
, " ");
1135 /* Print LST to FILE with INDENT spaces of indentation. */
1138 print_lst (FILE *file
, lst_p lst
, int indent
)
1143 lst_indent_to (file
, indent
);
1145 if (LST_LOOP_P (lst
))
1150 if (LST_LOOP_FATHER (lst
))
1151 fprintf (file
, "%d (loop", lst_dewey_number (lst
));
1153 fprintf (file
, "#(root");
1155 FOR_EACH_VEC_ELT (LST_SEQ (lst
), i
, l
)
1156 print_lst (file
, l
, indent
+ 2);
1158 fprintf (file
, ")");
1161 fprintf (file
, "%d stmt_%d", lst_dewey_number (lst
), pbb_index (LST_PBB (lst
)));
1164 /* Print LST to STDERR. */
1167 debug_lst (lst_p lst
)
1169 print_lst (stderr
, lst
, 0);
1172 /* Pretty print to FILE the loop statement tree LST in DOT format. */
1175 dot_lst_1 (FILE *file
, lst_p lst
)
1180 if (LST_LOOP_P (lst
))
1185 if (!LST_LOOP_FATHER (lst
))
1186 fprintf (file
, "L -> L_%d_%d\n",
1188 lst_dewey_number (lst
));
1190 fprintf (file
, "L_%d_%d -> L_%d_%d\n",
1191 lst_depth (LST_LOOP_FATHER (lst
)),
1192 lst_dewey_number (LST_LOOP_FATHER (lst
)),
1194 lst_dewey_number (lst
));
1196 FOR_EACH_VEC_ELT (LST_SEQ (lst
), i
, l
)
1197 dot_lst_1 (file
, l
);
1201 fprintf (file
, "L_%d_%d -> S_%d\n",
1202 lst_depth (LST_LOOP_FATHER (lst
)),
1203 lst_dewey_number (LST_LOOP_FATHER (lst
)),
1204 pbb_index (LST_PBB (lst
)));
1208 /* Display the LST using dotty. */
1213 /* When debugging, enable the following code. This cannot be used
1214 in production compilers because it calls "system". */
1216 FILE *stream
= fopen ("/tmp/lst.dot", "w");
1217 gcc_assert (stream
);
1219 fputs ("digraph all {\n", stream
);
1220 dot_lst_1 (stream
, lst
);
1221 fputs ("}\n\n", stream
);
1224 system ("dotty /tmp/lst.dot &");
1226 fputs ("digraph all {\n", stderr
);
1227 dot_lst_1 (stderr
, lst
);
1228 fputs ("}\n\n", stderr
);
1233 /* Computes a checksum for the code generated by CLooG for SCOP. */
1236 cloog_checksum (scop_p scop ATTRIBUTE_UNUSED
)
1238 /* When debugging, enable the following code. This cannot be used
1239 in production compilers because it calls "system". */
1241 FILE *stream
= fopen ("/tmp/scop.cloog", "w");
1242 gcc_assert (stream
);
1243 print_cloog (stream
, scop
, 0);
1246 fputs ("\n", stdout
);
1247 system ("cloog -compilable 1 /tmp/scop.cloog > /tmp/scop.c ; gcc -O0 -g /tmp/scop.c -lm -o /tmp/scop; /tmp/scop | md5sum ");
1251 /* Reverse the loop around PBB at level DEPTH. */
1254 reverse_loop_at_level (poly_bb_p pbb
, int depth
)
1256 unsigned i
, depth_dim
= psct_dynamic_dim (pbb
, depth
);
1257 isl_space
*d
= isl_map_get_space (pbb
->transformed
);
1258 isl_space
*d1
= isl_space_range (d
);
1259 unsigned n
= isl_space_dim (d1
, isl_dim_out
);
1260 isl_space
*d2
= isl_space_add_dims (d1
, isl_dim_in
, n
);
1261 isl_map
*x
= isl_map_universe (isl_space_copy (d2
));
1262 isl_constraint
*c
= isl_equality_alloc (isl_local_space_from_space (d2
));
1264 for (i
= 0; i
< n
; i
++)
1266 x
= isl_map_equate (x
, isl_dim_in
, i
, isl_dim_out
, i
);
1268 c
= isl_constraint_set_coefficient_si (c
, isl_dim_in
, depth_dim
, 1);
1269 c
= isl_constraint_set_coefficient_si (c
, isl_dim_out
, depth_dim
, 1);
1270 x
= isl_map_add_constraint (x
, c
);
1274 /* Reverse the loop at level DEPTH for all the PBBS. */
1277 reverse_loop_for_pbbs (scop_p scop
, vec
<poly_bb_p
> pbbs
, int depth
)
1281 isl_space
*space
= isl_space_from_domain (isl_set_get_space (scop
->context
));
1282 isl_union_map
*res
= isl_union_map_empty (space
);
1284 for (i
= 0; pbbs
.iterate (i
, &pbb
); i
++)
1285 res
= isl_union_map_add_map (res
, reverse_loop_at_level (pbb
, depth
));