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)
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>
32 #if defined(__cplusplus)
35 #include <isl/val_gmp.h>
36 #if defined(__cplusplus)
39 #include <cloog/cloog.h>
40 #include <cloog/isl/domain.h>
44 #include "coretypes.h"
45 #include "diagnostic-core.h"
47 #include "basic-block.h"
48 #include "tree-ssa-alias.h"
49 #include "internal-fn.h"
50 #include "gimple-expr.h"
53 #include "gimple-iterator.h"
54 #include "tree-ssa-loop.h"
56 #include "gimple-pretty-print.h"
58 #include "tree-chrec.h"
59 #include "tree-data-ref.h"
60 #include "tree-scalar-evolution.h"
64 #include "graphite-poly.h"
66 #define OPENSCOP_MAX_STRING 256
69 /* Print to STDERR the GMP value VAL. */
72 debug_gmp_value (mpz_t val
)
74 gmp_fprintf (stderr
, "%Zd", val
);
77 /* Return the maximal loop depth in SCOP. */
80 scop_max_loop_depth (scop_p scop
)
86 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
88 int nb_loops
= pbb_dim_iter_domain (pbb
);
89 if (max_nb_loops
< nb_loops
)
90 max_nb_loops
= nb_loops
;
96 /* Prints to FILE the scattering function of PBB, at some VERBOSITY
100 print_scattering_function_1 (FILE *file
, poly_bb_p pbb
, int verbosity
)
106 fprintf (file
, "# scattering bb_%d (\n", pbb_index (pbb
));
107 fprintf (file
, "#eq");
109 for (i
= 0; i
< pbb_nb_scattering_transform (pbb
); i
++)
110 fprintf (file
, " s%d", (int) i
);
112 for (i
= 0; i
< pbb_nb_local_vars (pbb
); i
++)
113 fprintf (file
, " lv%d", (int) i
);
115 for (i
= 0; i
< pbb_dim_iter_domain (pbb
); i
++)
116 fprintf (file
, " i%d", (int) i
);
118 for (i
= 0; i
< pbb_nb_params (pbb
); i
++)
119 fprintf (file
, " p%d", (int) i
);
121 fprintf (file
, " cst\n");
124 fprintf (file
, "isl\n");
125 print_isl_map (file
, pbb
->transformed
? pbb
->transformed
: pbb
->schedule
);
128 fprintf (file
, "#)\n");
131 /* Prints to FILE the scattering function of PBB, at some VERBOSITY
135 print_scattering_function (FILE *file
, poly_bb_p pbb
, int verbosity
)
137 if (!PBB_TRANSFORMED (pbb
))
140 if (pbb
->schedule
|| pbb
->transformed
)
143 fprintf (file
, "# Scattering function is provided\n");
145 fprintf (file
, "1\n");
150 fprintf (file
, "# Scattering function is not provided\n");
152 fprintf (file
, "0\n");
156 print_scattering_function_1 (file
, pbb
, verbosity
);
159 fprintf (file
, "# Scattering names are not provided\n");
161 fprintf (file
, "0\n");
165 /* Prints to FILE the iteration domain of PBB, at some VERBOSITY
169 print_iteration_domain (FILE *file
, poly_bb_p pbb
, int verbosity
)
171 print_pbb_domain (file
, pbb
, verbosity
);
174 /* Prints to FILE the scattering functions of every PBB of SCOP. */
177 print_scattering_functions (FILE *file
, scop_p scop
, int verbosity
)
182 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
183 print_scattering_function (file
, pbb
, verbosity
);
186 /* Prints to FILE the iteration domains of every PBB of SCOP, at some
190 print_iteration_domains (FILE *file
, scop_p scop
, int verbosity
)
195 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
196 print_iteration_domain (file
, pbb
, verbosity
);
199 /* Prints to STDERR the scattering function of PBB, at some VERBOSITY
203 debug_scattering_function (poly_bb_p pbb
, int verbosity
)
205 print_scattering_function (stderr
, pbb
, verbosity
);
208 /* Prints to STDERR the iteration domain of PBB, at some VERBOSITY
212 debug_iteration_domain (poly_bb_p pbb
, int verbosity
)
214 print_iteration_domain (stderr
, pbb
, verbosity
);
217 /* Prints to STDERR the scattering functions of every PBB of SCOP, at
218 some VERBOSITY level. */
221 debug_scattering_functions (scop_p scop
, int verbosity
)
223 print_scattering_functions (stderr
, scop
, verbosity
);
226 /* Prints to STDERR the iteration domains of every PBB of SCOP, at
227 some VERBOSITY level. */
230 debug_iteration_domains (scop_p scop
, int verbosity
)
232 print_iteration_domains (stderr
, scop
, verbosity
);
235 /* Apply graphite transformations to all the basic blocks of SCOP. */
238 apply_poly_transforms (scop_p scop
)
240 bool transform_done
= false;
242 /* Generate code even if we did not apply any real transformation.
243 This also allows to check the performance for the identity
244 transformation: GIMPLE -> GRAPHITE -> GIMPLE
245 Keep in mind that CLooG optimizes in control, so the loop structure
246 may change, even if we only use -fgraphite-identity. */
247 if (flag_graphite_identity
)
248 transform_done
= true;
250 if (flag_loop_parallelize_all
)
251 transform_done
= true;
254 transform_done
|= scop_do_block (scop
);
257 if (flag_loop_strip_mine
)
258 transform_done
|= scop_do_strip_mine (scop
, 0);
260 if (flag_loop_interchange
)
261 transform_done
|= scop_do_interchange (scop
);
264 /* This pass needs to be run at the final stage, as it does not
266 if (flag_loop_optimize_isl
)
267 transform_done
|= optimize_isl (scop
);
269 return transform_done
;
272 /* Create a new polyhedral data reference and add it to PBB. It is
273 defined by its ACCESSES, its TYPE, and the number of subscripts
277 new_poly_dr (poly_bb_p pbb
, int dr_base_object_set
,
278 enum poly_dr_type type
, void *cdr
, graphite_dim_t nb_subscripts
,
279 isl_map
*acc
, isl_set
*extent
)
282 poly_dr_p pdr
= XNEW (struct poly_dr
);
285 PDR_BASE_OBJECT_SET (pdr
) = dr_base_object_set
;
286 PDR_NB_REFS (pdr
) = 1;
289 pdr
->extent
= extent
;
290 PDR_TYPE (pdr
) = type
;
292 PDR_NB_SUBSCRIPTS (pdr
) = nb_subscripts
;
293 PBB_DRS (pbb
).safe_push (pdr
);
296 /* Free polyhedral data reference PDR. */
299 free_poly_dr (poly_dr_p pdr
)
301 isl_map_free (pdr
->accesses
);
302 isl_set_free (pdr
->extent
);
306 /* Create a new polyhedral black box. */
309 new_poly_bb (scop_p scop
, void *black_box
)
311 poly_bb_p pbb
= XNEW (struct poly_bb
);
314 pbb
->schedule
= NULL
;
315 pbb
->transformed
= NULL
;
317 PBB_SCOP (pbb
) = scop
;
318 pbb_set_black_box (pbb
, black_box
);
319 PBB_TRANSFORMED (pbb
) = NULL
;
320 PBB_SAVED (pbb
) = NULL
;
321 PBB_ORIGINAL (pbb
) = NULL
;
322 PBB_DRS (pbb
).create (3);
323 PBB_IS_REDUCTION (pbb
) = false;
324 GBB_PBB ((gimple_bb_p
) black_box
) = pbb
;
329 /* Free polyhedral black box. */
332 free_poly_bb (poly_bb_p pbb
)
337 isl_set_free (pbb
->domain
);
338 isl_map_free (pbb
->schedule
);
339 isl_map_free (pbb
->transformed
);
340 isl_map_free (pbb
->saved
);
342 if (PBB_DRS (pbb
).exists ())
343 FOR_EACH_VEC_ELT (PBB_DRS (pbb
), i
, pdr
)
346 PBB_DRS (pbb
).release ();
351 print_pdr_access_layout (FILE *file
, poly_bb_p pbb
, poly_dr_p pdr
)
355 fprintf (file
, "# eq");
357 fprintf (file
, " alias");
359 for (i
= 0; i
< PDR_NB_SUBSCRIPTS (pdr
); i
++)
360 fprintf (file
, " sub%d", (int) i
);
362 for (i
= 0; i
< pbb_dim_iter_domain (pbb
); i
++)
363 fprintf (file
, " i%d", (int) i
);
365 for (i
= 0; i
< pbb_nb_params (pbb
); i
++)
366 fprintf (file
, " p%d", (int) i
);
368 fprintf (file
, " cst\n");
371 /* Prints to FILE the polyhedral data reference PDR, at some VERBOSITY
375 print_pdr (FILE *file
, poly_dr_p pdr
, int verbosity
)
379 fprintf (file
, "# pdr_%d (", PDR_ID (pdr
));
381 switch (PDR_TYPE (pdr
))
384 fprintf (file
, "read \n");
388 fprintf (file
, "write \n");
392 fprintf (file
, "may_write \n");
399 dump_data_reference (file
, (data_reference_p
) PDR_CDR (pdr
));
404 fprintf (file
, "# data accesses (\n");
405 print_pdr_access_layout (file
, PDR_PBB (pdr
), pdr
);
408 /* XXX isl dump accesses/subscripts */
411 fprintf (file
, "#)\n");
414 fprintf (file
, "#)\n");
417 /* Prints to STDERR the polyhedral data reference PDR, at some
421 debug_pdr (poly_dr_p pdr
, int verbosity
)
423 print_pdr (stderr
, pdr
, verbosity
);
426 /* Creates a new SCOP containing REGION. */
429 new_scop (void *region
)
431 scop_p scop
= XNEW (struct scop
);
433 scop
->context
= NULL
;
434 scop
->must_raw
= NULL
;
435 scop
->may_raw
= NULL
;
436 scop
->must_raw_no_source
= NULL
;
437 scop
->may_raw_no_source
= NULL
;
438 scop
->must_war
= NULL
;
439 scop
->may_war
= NULL
;
440 scop
->must_war_no_source
= NULL
;
441 scop
->may_war_no_source
= NULL
;
442 scop
->must_waw
= NULL
;
443 scop
->may_waw
= NULL
;
444 scop
->must_waw_no_source
= NULL
;
445 scop
->may_waw_no_source
= NULL
;
446 scop_set_region (scop
, region
);
447 SCOP_BBS (scop
).create (3);
448 SCOP_ORIGINAL_SCHEDULE (scop
) = NULL
;
449 SCOP_TRANSFORMED_SCHEDULE (scop
) = NULL
;
450 SCOP_SAVED_SCHEDULE (scop
) = NULL
;
451 POLY_SCOP_P (scop
) = false;
459 free_scop (scop_p scop
)
464 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
467 SCOP_BBS (scop
).release ();
469 isl_set_free (scop
->context
);
470 isl_union_map_free (scop
->must_raw
);
471 isl_union_map_free (scop
->may_raw
);
472 isl_union_map_free (scop
->must_raw_no_source
);
473 isl_union_map_free (scop
->may_raw_no_source
);
474 isl_union_map_free (scop
->must_war
);
475 isl_union_map_free (scop
->may_war
);
476 isl_union_map_free (scop
->must_war_no_source
);
477 isl_union_map_free (scop
->may_war_no_source
);
478 isl_union_map_free (scop
->must_waw
);
479 isl_union_map_free (scop
->may_waw
);
480 isl_union_map_free (scop
->must_waw_no_source
);
481 isl_union_map_free (scop
->may_waw_no_source
);
482 free_lst (SCOP_ORIGINAL_SCHEDULE (scop
));
483 free_lst (SCOP_TRANSFORMED_SCHEDULE (scop
));
484 free_lst (SCOP_SAVED_SCHEDULE (scop
));
488 /* Print to FILE the domain of PBB in OpenScop format, at some VERBOSITY
492 openscop_print_pbb_domain (FILE *file
, poly_bb_p pbb
, int verbosity
)
495 gimple_bb_p gbb
= PBB_BLACK_BOX (pbb
);
502 fprintf (file
, "\n# Iteration domain of bb_%d (\n", GBB_BB (gbb
)->index
);
503 fprintf (file
, "#eq");
505 for (i
= 0; i
< pbb_dim_iter_domain (pbb
); i
++)
506 fprintf (file
, " i%d", (int) i
);
508 for (i
= 0; i
< pbb_nb_params (pbb
); i
++)
509 fprintf (file
, " p%d", (int) i
);
511 fprintf (file
, " cst\n");
514 fprintf (file
, "XXX isl\n");
517 fprintf (file
, "#)\n");
520 /* Print to FILE the domain of PBB, at some VERBOSITY level. */
523 print_pbb_domain (FILE *file
, poly_bb_p pbb
, int verbosity ATTRIBUTE_UNUSED
)
525 print_isl_set (file
, pbb
->domain
);
528 /* Dump the cases of a graphite basic block GBB on FILE. */
531 dump_gbb_cases (FILE *file
, gimple_bb_p gbb
)
540 cases
= GBB_CONDITION_CASES (gbb
);
541 if (cases
.is_empty ())
544 fprintf (file
, "# cases bb_%d (\n", GBB_BB (gbb
)->index
);
546 FOR_EACH_VEC_ELT (cases
, i
, stmt
)
548 fprintf (file
, "# ");
549 print_gimple_stmt (file
, stmt
, 0, 0);
552 fprintf (file
, "#)\n");
555 /* Dump conditions of a graphite basic block GBB on FILE. */
558 dump_gbb_conditions (FILE *file
, gimple_bb_p gbb
)
562 vec
<gimple
> conditions
;
567 conditions
= GBB_CONDITIONS (gbb
);
568 if (conditions
.is_empty ())
571 fprintf (file
, "# conditions bb_%d (\n", GBB_BB (gbb
)->index
);
573 FOR_EACH_VEC_ELT (conditions
, i
, stmt
)
575 fprintf (file
, "# ");
576 print_gimple_stmt (file
, stmt
, 0, 0);
579 fprintf (file
, "#)\n");
582 /* Print to FILE all the data references of PBB, at some VERBOSITY
586 print_pdrs (FILE *file
, poly_bb_p pbb
, int verbosity
)
593 if (PBB_DRS (pbb
).length () == 0)
596 fprintf (file
, "# Access informations are not provided\n");\
597 fprintf (file
, "0\n");
602 fprintf (file
, "# Data references (\n");
605 fprintf (file
, "# Access informations are provided\n");
606 fprintf (file
, "1\n");
608 FOR_EACH_VEC_ELT (PBB_DRS (pbb
), i
, pdr
)
609 if (PDR_TYPE (pdr
) == PDR_READ
)
615 fprintf (file
, "# Read data references (\n");
618 fprintf (file
, "# Read access informations\n");
619 fprintf (file
, "%d\n", nb_reads
);
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
, "# Write data references (\n");
632 fprintf (file
, "# Write access informations\n");
633 fprintf (file
, "%d\n", nb_writes
);
635 FOR_EACH_VEC_ELT (PBB_DRS (pbb
), i
, pdr
)
636 if (PDR_TYPE (pdr
) != PDR_READ
)
637 print_pdr (file
, pdr
, verbosity
);
640 fprintf (file
, "#)\n");
643 fprintf (file
, "#)\n");
646 /* Print to STDERR all the data references of PBB. */
649 debug_pdrs (poly_bb_p pbb
, int verbosity
)
651 print_pdrs (stderr
, pbb
, verbosity
);
654 /* Print to FILE the body of PBB, at some VERBOSITY level.
655 If statement_body_provided is false statement body is not printed. */
658 print_pbb_body (FILE *file
, poly_bb_p pbb
, int verbosity
,
659 bool statement_body_provided
)
662 fprintf (file
, "# Body (\n");
664 if (!statement_body_provided
)
667 fprintf (file
, "# Statement body is not provided\n");
669 fprintf (file
, "0\n");
672 fprintf (file
, "#)\n");
677 fprintf (file
, "# Statement body is provided\n");
678 fprintf (file
, "1\n");
681 fprintf (file
, "# Original iterator names\n# Iterator names are not provided yet.\n");
684 fprintf (file
, "# Statement body\n");
686 fprintf (file
, "{\n");
687 dump_bb (file
, pbb_bb (pbb
), 0, 0);
688 fprintf (file
, "}\n");
691 fprintf (file
, "#)\n");
694 /* Print to FILE the domain and scattering function of PBB, at some
698 print_pbb (FILE *file
, poly_bb_p pbb
, int verbosity
)
702 fprintf (file
, "# pbb_%d (\n", pbb_index (pbb
));
703 dump_gbb_conditions (file
, PBB_BLACK_BOX (pbb
));
704 dump_gbb_cases (file
, PBB_BLACK_BOX (pbb
));
707 openscop_print_pbb_domain (file
, pbb
, verbosity
);
708 print_scattering_function (file
, pbb
, verbosity
);
709 print_pdrs (file
, pbb
, verbosity
);
710 print_pbb_body (file
, pbb
, verbosity
, false);
713 fprintf (file
, "#)\n");
716 /* Print to FILE the parameters of SCOP, at some VERBOSITY level. */
719 print_scop_params (FILE *file
, scop_p scop
, int verbosity
)
725 fprintf (file
, "# parameters (\n");
727 if (SESE_PARAMS (SCOP_REGION (scop
)).length ())
730 fprintf (file
, "# Parameter names are provided\n");
732 fprintf (file
, "1\n");
735 fprintf (file
, "# Parameter names\n");
740 fprintf (file
, "# Parameter names are not provided\n");
741 fprintf (file
, "0\n");
744 FOR_EACH_VEC_ELT (SESE_PARAMS (SCOP_REGION (scop
)), i
, t
)
746 print_generic_expr (file
, t
, 0);
750 fprintf (file
, "\n");
753 fprintf (file
, "#)\n");
756 /* Print to FILE the context of SCoP in OpenScop format, at some VERBOSITY
760 openscop_print_scop_context (FILE *file
, scop_p scop
, int verbosity
)
766 fprintf (file
, "# Context (\n");
767 fprintf (file
, "#eq");
769 for (i
= 0; i
< scop_nb_params (scop
); i
++)
770 fprintf (file
, " p%d", (int) i
);
772 fprintf (file
, " cst\n");
776 /* XXX isl print context */
777 fprintf (file
, "XXX isl\n");
779 fprintf (file
, "0 %d 0 0 0 %d\n", (int) scop_nb_params (scop
) + 2,
780 (int) scop_nb_params (scop
));
783 fprintf (file
, "# )\n");
786 /* Print to FILE the context of SCoP, at some VERBOSITY level. */
789 print_scop_context (FILE *file
, scop_p scop
, int verbosity
)
795 fprintf (file
, "# Context (\n");
796 fprintf (file
, "#eq");
798 for (i
= 0; i
< scop_nb_params (scop
); i
++)
799 fprintf (file
, " p%d", (int) i
);
801 fprintf (file
, " cst\n");
805 print_isl_set (file
, scop
->context
);
807 fprintf (file
, "no isl context %d\n", (int) scop_nb_params (scop
) + 2);
810 fprintf (file
, "# )\n");
813 /* Print to FILE the SCOP, at some VERBOSITY level. */
816 print_scop (FILE *file
, scop_p scop
, int verbosity
)
821 fprintf (file
, "SCoP 1\n#(\n");
822 fprintf (file
, "# Language\nGimple\n");
823 openscop_print_scop_context (file
, scop
, verbosity
);
824 print_scop_params (file
, scop
, verbosity
);
827 fprintf (file
, "# Number of statements\n");
829 fprintf (file
, "%d\n", SCOP_BBS (scop
).length ());
831 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
832 print_pbb (file
, pbb
, verbosity
);
836 fprintf (file
, "# original_lst (\n");
837 print_lst (file
, SCOP_ORIGINAL_SCHEDULE (scop
), 0);
838 fprintf (file
, "\n#)\n");
840 fprintf (file
, "# transformed_lst (\n");
841 print_lst (file
, SCOP_TRANSFORMED_SCHEDULE (scop
), 0);
842 fprintf (file
, "\n#)\n");
845 fprintf (file
, "#)\n");
848 /* Print to FILE the input file that CLooG would expect as input, at
849 some VERBOSITY level. */
852 print_cloog (FILE *file
, scop_p scop
, int verbosity
)
857 fprintf (file
, "# SCoP (generated by GCC/Graphite\n");
859 fprintf (file
, "# CLooG output language\n");
860 fprintf (file
, "c\n");
862 print_scop_context (file
, scop
, verbosity
);
863 print_scop_params (file
, scop
, verbosity
);
866 fprintf (file
, "# Number of statements\n");
868 fprintf (file
, "%d\n", SCOP_BBS (scop
).length ());
870 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
873 fprintf (file
, "# pbb_%d (\n", pbb_index (pbb
));
875 print_pbb_domain (file
, pbb
, verbosity
);
876 fprintf (file
, "0 0 0");
879 fprintf (file
, "# For future CLooG options.\n");
881 fprintf (file
, "\n");
884 fprintf (file
, "#)\n");
889 fprintf (file
, "# Don't set the iterator names.\n");
891 fprintf (file
, "\n");
894 fprintf (file
, "# Number of scattering functions\n");
896 fprintf (file
, "%d\n", SCOP_BBS (scop
).length ());
898 FOR_EACH_VEC_ELT (SCOP_BBS (scop
), i
, pbb
)
900 if (!(pbb
->transformed
|| pbb
->schedule
))
904 fprintf (file
, "# pbb_%d (\n", pbb_index (pbb
));
906 print_scattering_function_1 (file
, pbb
, verbosity
);
909 fprintf (file
, "#)\n");
914 fprintf (file
, "# Don't set the scattering dimension names.\n");
916 fprintf (file
, "\n");
918 fprintf (file
, "#)\n");
921 /* Print to STDERR the domain of PBB, at some VERBOSITY level. */
924 debug_pbb_domain (poly_bb_p pbb
, int verbosity
)
926 print_pbb_domain (stderr
, pbb
, verbosity
);
929 /* Print to FILE the domain and scattering function of PBB, at some
933 debug_pbb (poly_bb_p pbb
, int verbosity
)
935 print_pbb (stderr
, pbb
, verbosity
);
938 /* Print to STDERR the context of SCOP, at some VERBOSITY level. */
941 debug_scop_context (scop_p scop
, int verbosity
)
943 print_scop_context (stderr
, scop
, verbosity
);
946 /* Print to STDERR the SCOP, at some VERBOSITY level. */
949 debug_scop (scop_p scop
, int verbosity
)
951 print_scop (stderr
, scop
, verbosity
);
954 /* Print to STDERR the SCOP under CLooG format, at some VERBOSITY
958 debug_cloog (scop_p scop
, int verbosity
)
960 print_cloog (stderr
, scop
, verbosity
);
963 /* Print to STDERR the parameters of SCOP, at some VERBOSITY
967 debug_scop_params (scop_p scop
, int verbosity
)
969 print_scop_params (stderr
, scop
, verbosity
);
972 extern isl_ctx
*the_isl_ctx
;
974 print_isl_set (FILE *f
, isl_set
*set
)
976 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
977 p
= isl_printer_print_set (p
, set
);
978 isl_printer_free (p
);
982 debug_isl_set (isl_set
*set
)
984 print_isl_set (stderr
, set
);
988 print_isl_map (FILE *f
, isl_map
*map
)
990 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
991 p
= isl_printer_print_map (p
, map
);
992 isl_printer_free (p
);
996 debug_isl_map (isl_map
*map
)
998 print_isl_map (stderr
, map
);
1002 print_isl_aff (FILE *f
, isl_aff
*aff
)
1004 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
1005 p
= isl_printer_print_aff (p
, aff
);
1006 isl_printer_free (p
);
1010 debug_isl_aff (isl_aff
*aff
)
1012 print_isl_aff (stderr
, aff
);
1016 print_isl_constraint (FILE *f
, isl_constraint
*c
)
1018 isl_printer
*p
= isl_printer_to_file (the_isl_ctx
, f
);
1019 p
= isl_printer_print_constraint (p
, c
);
1020 isl_printer_free (p
);
1024 debug_isl_constraint (isl_constraint
*c
)
1026 print_isl_constraint (stderr
, c
);
1029 /* Returns the number of iterations RES of the loop around PBB at
1030 time(scattering) dimension TIME_DEPTH. */
1033 pbb_number_of_iterations_at_time (poly_bb_p pbb
,
1034 graphite_dim_t time_depth
,
1037 isl_set
*transdomain
;
1040 isl_val
*isllb
, *islub
;
1042 /* Map the iteration domain through the current scatter, and work
1043 on the resulting set. */
1044 transdomain
= isl_set_apply (isl_set_copy (pbb
->domain
),
1045 isl_map_copy (pbb
->transformed
));
1047 /* Select the time_depth' dimension via an affine expression. */
1048 dc
= isl_set_get_space (transdomain
);
1049 aff
= isl_aff_zero_on_domain (isl_local_space_from_space (dc
));
1050 aff
= isl_aff_set_coefficient_si (aff
, isl_dim_in
, time_depth
, 1);
1052 /* And find the min/max for that function. */
1053 /* XXX isl check results? */
1054 isllb
= isl_set_min_val (transdomain
, aff
);
1055 islub
= isl_set_max_val (transdomain
, aff
);
1057 islub
= isl_val_sub (islub
, isllb
);
1058 islub
= isl_val_add_ui (islub
, 1);
1059 isl_val_get_num_gmp (islub
, res
);
1061 isl_val_free (islub
);
1063 isl_set_free (transdomain
);
1066 /* Translates LOOP to LST. */
1069 loop_to_lst (loop_p loop
, vec
<poly_bb_p
> bbs
, int *i
)
1075 for (; bbs
.iterate (*i
, &pbb
); (*i
)++)
1078 basic_block bb
= GBB_BB (PBB_BLACK_BOX (pbb
));
1080 if (bb
->loop_father
== loop
)
1081 stmt
= new_lst_stmt (pbb
);
1082 else if (flow_bb_inside_loop_p (loop
, bb
))
1084 loop_p next
= loop
->inner
;
1086 while (next
&& !flow_bb_inside_loop_p (next
, bb
))
1089 stmt
= loop_to_lst (next
, bbs
, i
);
1094 return new_lst_loop (seq
);
1097 seq
.safe_push (stmt
);
1100 return new_lst_loop (seq
);
1103 /* Reads the original scattering of the SCOP and returns an LST
1107 scop_to_lst (scop_p scop
)
1110 int i
, n
= SCOP_BBS (scop
).length ();
1113 sese region
= SCOP_REGION (scop
);
1115 for (i
= 0; i
< n
; i
++)
1117 poly_bb_p pbb
= SCOP_BBS (scop
)[i
];
1118 loop_p loop
= outermost_loop_in_sese (region
, GBB_BB (PBB_BLACK_BOX (pbb
)));
1120 if (loop_in_sese_p (loop
, region
))
1121 res
= loop_to_lst (loop
, SCOP_BBS (scop
), &i
);
1123 res
= new_lst_stmt (pbb
);
1125 seq
.safe_push (res
);
1128 res
= new_lst_loop (seq
);
1129 SCOP_ORIGINAL_SCHEDULE (scop
) = res
;
1130 SCOP_TRANSFORMED_SCHEDULE (scop
) = copy_lst (res
);
1133 /* Print to FILE on a new line COLUMN white spaces. */
1136 lst_indent_to (FILE *file
, int column
)
1141 fprintf (file
, "\n#");
1143 for (i
= 0; i
< column
; i
++)
1144 fprintf (file
, " ");
1147 /* Print LST to FILE with INDENT spaces of indentation. */
1150 print_lst (FILE *file
, lst_p lst
, int indent
)
1155 lst_indent_to (file
, indent
);
1157 if (LST_LOOP_P (lst
))
1162 if (LST_LOOP_FATHER (lst
))
1163 fprintf (file
, "%d (loop", lst_dewey_number (lst
));
1165 fprintf (file
, "#(root");
1167 FOR_EACH_VEC_ELT (LST_SEQ (lst
), i
, l
)
1168 print_lst (file
, l
, indent
+ 2);
1170 fprintf (file
, ")");
1173 fprintf (file
, "%d stmt_%d", lst_dewey_number (lst
), pbb_index (LST_PBB (lst
)));
1176 /* Print LST to STDERR. */
1179 debug_lst (lst_p lst
)
1181 print_lst (stderr
, lst
, 0);
1184 /* Pretty print to FILE the loop statement tree LST in DOT format. */
1187 dot_lst_1 (FILE *file
, lst_p lst
)
1192 if (LST_LOOP_P (lst
))
1197 if (!LST_LOOP_FATHER (lst
))
1198 fprintf (file
, "L -> L_%d_%d\n",
1200 lst_dewey_number (lst
));
1202 fprintf (file
, "L_%d_%d -> L_%d_%d\n",
1203 lst_depth (LST_LOOP_FATHER (lst
)),
1204 lst_dewey_number (LST_LOOP_FATHER (lst
)),
1206 lst_dewey_number (lst
));
1208 FOR_EACH_VEC_ELT (LST_SEQ (lst
), i
, l
)
1209 dot_lst_1 (file
, l
);
1213 fprintf (file
, "L_%d_%d -> S_%d\n",
1214 lst_depth (LST_LOOP_FATHER (lst
)),
1215 lst_dewey_number (LST_LOOP_FATHER (lst
)),
1216 pbb_index (LST_PBB (lst
)));
1220 /* Display the LST using dotty. */
1225 /* When debugging, enable the following code. This cannot be used
1226 in production compilers because it calls "system". */
1228 FILE *stream
= fopen ("/tmp/lst.dot", "w");
1229 gcc_assert (stream
);
1231 fputs ("digraph all {\n", stream
);
1232 dot_lst_1 (stream
, lst
);
1233 fputs ("}\n\n", stream
);
1236 system ("dotty /tmp/lst.dot &");
1238 fputs ("digraph all {\n", stderr
);
1239 dot_lst_1 (stderr
, lst
);
1240 fputs ("}\n\n", stderr
);
1245 /* Computes a checksum for the code generated by CLooG for SCOP. */
1248 cloog_checksum (scop_p scop ATTRIBUTE_UNUSED
)
1250 /* When debugging, enable the following code. This cannot be used
1251 in production compilers because it calls "system". */
1253 FILE *stream
= fopen ("/tmp/scop.cloog", "w");
1254 gcc_assert (stream
);
1255 print_cloog (stream
, scop
, 0);
1258 fputs ("\n", stdout
);
1259 system ("cloog -compilable 1 /tmp/scop.cloog > /tmp/scop.c ; gcc -O0 -g /tmp/scop.c -lm -o /tmp/scop; /tmp/scop | md5sum ");
1263 /* Reverse the loop around PBB at level DEPTH. */
1266 reverse_loop_at_level (poly_bb_p pbb
, int depth
)
1268 unsigned i
, depth_dim
= psct_dynamic_dim (pbb
, depth
);
1269 isl_space
*d
= isl_map_get_space (pbb
->transformed
);
1270 isl_space
*d1
= isl_space_range (d
);
1271 unsigned n
= isl_space_dim (d1
, isl_dim_out
);
1272 isl_space
*d2
= isl_space_add_dims (d1
, isl_dim_in
, n
);
1273 isl_map
*x
= isl_map_universe (isl_space_copy (d2
));
1274 isl_constraint
*c
= isl_equality_alloc (isl_local_space_from_space (d2
));
1276 for (i
= 0; i
< n
; i
++)
1278 x
= isl_map_equate (x
, isl_dim_in
, i
, isl_dim_out
, i
);
1280 c
= isl_constraint_set_coefficient_si (c
, isl_dim_in
, depth_dim
, 1);
1281 c
= isl_constraint_set_coefficient_si (c
, isl_dim_out
, depth_dim
, 1);
1282 x
= isl_map_add_constraint (x
, c
);
1286 /* Reverse the loop at level DEPTH for all the PBBS. */
1289 reverse_loop_for_pbbs (scop_p scop
, vec
<poly_bb_p
> pbbs
, int depth
)
1293 isl_space
*space
= isl_space_from_domain (isl_set_get_space (scop
->context
));
1294 isl_union_map
*res
= isl_union_map_empty (space
);
1296 for (i
= 0; pbbs
.iterate (i
, &pbb
); i
++)
1297 res
= isl_union_map_add_map (res
, reverse_loop_at_level (pbb
, depth
));