vectorizer cost model enhancement
[official-gcc.git] / gcc / graphite-poly.c
blob35fe3ba234266d1dbac4a2da2c3b6b2e83a43f7d
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)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
24 #ifdef HAVE_cloog
25 #include <isl/set.h>
26 #include <isl/map.h>
27 #include <isl/union_map.h>
28 #include <isl/constraint.h>
29 #include <isl/ilp.h>
30 #include <isl/aff.h>
31 #include <cloog/cloog.h>
32 #include <cloog/isl/domain.h>
33 #endif
35 #include "system.h"
36 #include "coretypes.h"
37 #include "diagnostic-core.h"
38 #include "tree-ssa.h"
39 #include "dumpfile.h"
40 #include "gimple-pretty-print.h"
41 #include "cfgloop.h"
42 #include "tree-chrec.h"
43 #include "tree-data-ref.h"
44 #include "tree-scalar-evolution.h"
45 #include "sese.h"
47 #ifdef HAVE_cloog
48 #include "graphite-poly.h"
50 #define OPENSCOP_MAX_STRING 256
53 /* Print to STDERR the GMP value VAL. */
55 DEBUG_FUNCTION void
56 debug_gmp_value (mpz_t val)
58 gmp_fprintf (stderr, "%Zd", val);
61 /* Return the maximal loop depth in SCOP. */
63 int
64 scop_max_loop_depth (scop_p scop)
66 int i;
67 poly_bb_p pbb;
68 int max_nb_loops = 0;
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;
77 return max_nb_loops;
80 /* Prints to FILE the scattering function of PBB, at some VERBOSITY
81 level. */
83 static void
84 print_scattering_function_1 (FILE *file, poly_bb_p pbb, int verbosity)
86 graphite_dim_t i;
88 if (verbosity > 0)
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);
111 if (verbosity > 0)
112 fprintf (file, "#)\n");
115 /* Prints to FILE the scattering function of PBB, at some VERBOSITY
116 level. */
118 void
119 print_scattering_function (FILE *file, poly_bb_p pbb, int verbosity)
121 if (!PBB_TRANSFORMED (pbb))
122 return;
124 if (pbb->schedule || pbb->transformed)
126 if (verbosity > 0)
127 fprintf (file, "# Scattering function is provided\n");
129 fprintf (file, "1\n");
131 else
133 if (verbosity > 0)
134 fprintf (file, "# Scattering function is not provided\n");
136 fprintf (file, "0\n");
137 return;
140 print_scattering_function_1 (file, pbb, verbosity);
142 if (verbosity > 0)
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
150 level. */
152 void
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. */
160 void
161 print_scattering_functions (FILE *file, scop_p scop, int verbosity)
163 int i;
164 poly_bb_p pbb;
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
171 VERBOSITY level. */
173 void
174 print_iteration_domains (FILE *file, scop_p scop, int verbosity)
176 int i;
177 poly_bb_p pbb;
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
184 level. */
186 DEBUG_FUNCTION void
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
193 level. */
195 DEBUG_FUNCTION void
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. */
204 DEBUG_FUNCTION void
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. */
213 DEBUG_FUNCTION void
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. */
221 bool
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;
237 if (flag_loop_block)
238 transform_done |= scop_do_block (scop);
239 else
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
249 update the lst. */
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
258 NB_SUBSCRIPTS. */
260 void
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)
265 static int id = 0;
266 poly_dr_p pdr = XNEW (struct poly_dr);
268 PDR_ID (pdr) = id++;
269 PDR_BASE_OBJECT_SET (pdr) = dr_base_object_set;
270 PDR_NB_REFS (pdr) = 1;
271 PDR_PBB (pdr) = pbb;
272 pdr->accesses = acc;
273 pdr->extent = extent;
274 PDR_TYPE (pdr) = type;
275 PDR_CDR (pdr) = cdr;
276 PDR_NB_SUBSCRIPTS (pdr) = nb_subscripts;
277 PBB_DRS (pbb).safe_push (pdr);
280 /* Free polyhedral data reference PDR. */
282 void
283 free_poly_dr (poly_dr_p pdr)
285 isl_map_free (pdr->accesses);
286 isl_set_free (pdr->extent);
287 XDELETE (pdr);
290 /* Create a new polyhedral black box. */
292 poly_bb_p
293 new_poly_bb (scop_p scop, void *black_box)
295 poly_bb_p pbb = XNEW (struct poly_bb);
297 pbb->domain = NULL;
298 pbb->schedule = NULL;
299 pbb->transformed = NULL;
300 pbb->saved = 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;
310 return pbb;
313 /* Free polyhedral black box. */
315 void
316 free_poly_bb (poly_bb_p pbb)
318 int i;
319 poly_dr_p pdr;
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)
328 free_poly_dr (pdr);
330 PBB_DRS (pbb).release ();
331 XDELETE (pbb);
334 static void
335 print_pdr_access_layout (FILE *file, poly_bb_p pbb, poly_dr_p pdr)
337 graphite_dim_t i;
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
356 level. */
358 void
359 print_pdr (FILE *file, poly_dr_p pdr, int verbosity)
361 if (verbosity > 1)
363 fprintf (file, "# pdr_%d (", PDR_ID (pdr));
365 switch (PDR_TYPE (pdr))
367 case PDR_READ:
368 fprintf (file, "read \n");
369 break;
371 case PDR_WRITE:
372 fprintf (file, "write \n");
373 break;
375 case PDR_MAY_WRITE:
376 fprintf (file, "may_write \n");
377 break;
379 default:
380 gcc_unreachable ();
383 dump_data_reference (file, (data_reference_p) PDR_CDR (pdr));
386 if (verbosity > 0)
388 fprintf (file, "# data accesses (\n");
389 print_pdr_access_layout (file, PDR_PBB (pdr), pdr);
392 /* XXX isl dump accesses/subscripts */
394 if (verbosity > 0)
395 fprintf (file, "#)\n");
397 if (verbosity > 1)
398 fprintf (file, "#)\n");
401 /* Prints to STDERR the polyhedral data reference PDR, at some
402 VERBOSITY level. */
404 DEBUG_FUNCTION void
405 debug_pdr (poly_dr_p pdr, int verbosity)
407 print_pdr (stderr, pdr, verbosity);
410 /* Creates a new SCOP containing REGION. */
412 scop_p
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;
437 return scop;
440 /* Deletes SCOP. */
442 void
443 free_scop (scop_p scop)
445 int i;
446 poly_bb_p pbb;
448 FOR_EACH_VEC_ELT (SCOP_BBS (scop), i, pbb)
449 free_poly_bb (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));
469 XDELETE (scop);
472 /* Print to FILE the domain of PBB in OpenScop format, at some VERBOSITY
473 level. */
475 static void
476 openscop_print_pbb_domain (FILE *file, poly_bb_p pbb, int verbosity)
478 graphite_dim_t i;
479 gimple_bb_p gbb = PBB_BLACK_BOX (pbb);
481 if (!pbb->domain)
482 return;
484 if (verbosity > 0)
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");
500 if (verbosity > 0)
501 fprintf (file, "#)\n");
504 /* Print to FILE the domain of PBB, at some VERBOSITY level. */
506 void
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. */
514 static void
515 dump_gbb_cases (FILE *file, gimple_bb_p gbb)
517 int i;
518 gimple stmt;
519 vec<gimple> cases;
521 if (!gbb)
522 return;
524 cases = GBB_CONDITION_CASES (gbb);
525 if (cases.is_empty ())
526 return;
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. */
541 static void
542 dump_gbb_conditions (FILE *file, gimple_bb_p gbb)
544 int i;
545 gimple stmt;
546 vec<gimple> conditions;
548 if (!gbb)
549 return;
551 conditions = GBB_CONDITIONS (gbb);
552 if (conditions.is_empty ())
553 return;
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
567 level. */
569 void
570 print_pdrs (FILE *file, poly_bb_p pbb, int verbosity)
572 int i;
573 poly_dr_p pdr;
574 int nb_reads = 0;
575 int nb_writes = 0;
577 if (PBB_DRS (pbb).length () == 0)
579 if (verbosity > 0)
580 fprintf (file, "# Access informations are not provided\n");\
581 fprintf (file, "0\n");
582 return;
585 if (verbosity > 1)
586 fprintf (file, "# Data references (\n");
588 if (verbosity > 0)
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)
594 nb_reads++;
595 else
596 nb_writes++;
598 if (verbosity > 1)
599 fprintf (file, "# Read data references (\n");
601 if (verbosity > 0)
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);
609 if (verbosity > 1)
610 fprintf (file, "#)\n");
612 if (verbosity > 1)
613 fprintf (file, "# Write data references (\n");
615 if (verbosity > 0)
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);
623 if (verbosity > 1)
624 fprintf (file, "#)\n");
626 if (verbosity > 1)
627 fprintf (file, "#)\n");
630 /* Print to STDERR all the data references of PBB. */
632 DEBUG_FUNCTION void
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. */
641 static void
642 print_pbb_body (FILE *file, poly_bb_p pbb, int verbosity,
643 bool statement_body_provided)
645 if (verbosity > 1)
646 fprintf (file, "# Body (\n");
648 if (!statement_body_provided)
650 if (verbosity > 0)
651 fprintf (file, "# Statement body is not provided\n");
653 fprintf (file, "0\n");
655 if (verbosity > 1)
656 fprintf (file, "#)\n");
657 return;
660 if (verbosity > 0)
661 fprintf (file, "# Statement body is provided\n");
662 fprintf (file, "1\n");
664 if (verbosity > 0)
665 fprintf (file, "# Original iterator names\n# Iterator names are not provided yet.\n");
667 if (verbosity > 0)
668 fprintf (file, "# Statement body\n");
670 fprintf (file, "{\n");
671 dump_bb (file, pbb_bb (pbb), 0, 0);
672 fprintf (file, "}\n");
674 if (verbosity > 1)
675 fprintf (file, "#)\n");
678 /* Print to FILE the domain and scattering function of PBB, at some
679 VERBOSITY level. */
681 void
682 print_pbb (FILE *file, poly_bb_p pbb, int verbosity)
684 if (verbosity > 1)
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);
696 if (verbosity > 1)
697 fprintf (file, "#)\n");
700 /* Print to FILE the parameters of SCOP, at some VERBOSITY level. */
702 void
703 print_scop_params (FILE *file, scop_p scop, int verbosity)
705 int i;
706 tree t;
708 if (verbosity > 1)
709 fprintf (file, "# parameters (\n");
711 if (SESE_PARAMS (SCOP_REGION (scop)).length ())
713 if (verbosity > 0)
714 fprintf (file, "# Parameter names are provided\n");
716 fprintf (file, "1\n");
718 if (verbosity > 0)
719 fprintf (file, "# Parameter names\n");
721 else
723 if (verbosity > 0)
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);
731 fprintf (file, " ");
734 fprintf (file, "\n");
736 if (verbosity > 1)
737 fprintf (file, "#)\n");
740 /* Print to FILE the context of SCoP in OpenScop format, at some VERBOSITY
741 level. */
743 static void
744 openscop_print_scop_context (FILE *file, scop_p scop, int verbosity)
746 graphite_dim_t i;
748 if (verbosity > 0)
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");
759 if (scop->context)
760 /* XXX isl print context */
761 fprintf (file, "XXX isl\n");
762 else
763 fprintf (file, "0 %d 0 0 0 %d\n", (int) scop_nb_params (scop) + 2,
764 (int) scop_nb_params (scop));
766 if (verbosity > 0)
767 fprintf (file, "# )\n");
770 /* Print to FILE the context of SCoP, at some VERBOSITY level. */
772 void
773 print_scop_context (FILE *file, scop_p scop, int verbosity)
775 graphite_dim_t i;
777 if (verbosity > 0)
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");
788 if (scop->context)
789 print_isl_set (file, scop->context);
790 else
791 fprintf (file, "no isl context %d\n", (int) scop_nb_params (scop) + 2);
793 if (verbosity > 0)
794 fprintf (file, "# )\n");
797 /* Print to FILE the SCOP, at some VERBOSITY level. */
799 void
800 print_scop (FILE *file, scop_p scop, int verbosity)
802 int i;
803 poly_bb_p pbb;
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);
810 if (verbosity > 0)
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);
818 if (verbosity > 1)
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. */
835 void
836 print_cloog (FILE *file, scop_p scop, int verbosity)
838 int i;
839 poly_bb_p pbb;
841 fprintf (file, "# SCoP (generated by GCC/Graphite\n");
842 if (verbosity > 0)
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);
849 if (verbosity > 0)
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)
856 if (verbosity > 1)
857 fprintf (file, "# pbb_%d (\n", pbb_index (pbb));
859 print_pbb_domain (file, pbb, verbosity);
860 fprintf (file, "0 0 0");
862 if (verbosity > 0)
863 fprintf (file, "# For future CLooG options.\n");
864 else
865 fprintf (file, "\n");
867 if (verbosity > 1)
868 fprintf (file, "#)\n");
871 fprintf (file, "0");
872 if (verbosity > 0)
873 fprintf (file, "# Don't set the iterator names.\n");
874 else
875 fprintf (file, "\n");
877 if (verbosity > 0)
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))
885 continue;
887 if (verbosity > 1)
888 fprintf (file, "# pbb_%d (\n", pbb_index (pbb));
890 print_scattering_function_1 (file, pbb, verbosity);
892 if (verbosity > 1)
893 fprintf (file, "#)\n");
896 fprintf (file, "0");
897 if (verbosity > 0)
898 fprintf (file, "# Don't set the scattering dimension names.\n");
899 else
900 fprintf (file, "\n");
902 fprintf (file, "#)\n");
905 /* Print to STDERR the domain of PBB, at some VERBOSITY level. */
907 DEBUG_FUNCTION void
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
914 VERBOSITY level. */
916 DEBUG_FUNCTION void
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. */
924 DEBUG_FUNCTION void
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. */
932 DEBUG_FUNCTION void
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
939 level. */
941 DEBUG_FUNCTION void
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
948 level. */
950 DEBUG_FUNCTION void
951 debug_scop_params (scop_p scop, int verbosity)
953 print_scop_params (stderr, scop, verbosity);
956 extern isl_ctx *the_isl_ctx;
957 void
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);
965 DEBUG_FUNCTION void
966 debug_isl_set (isl_set *set)
968 print_isl_set (stderr, set);
971 void
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);
979 DEBUG_FUNCTION void
980 debug_isl_map (isl_map *map)
982 print_isl_map (stderr, map);
985 void
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);
993 DEBUG_FUNCTION void
994 debug_isl_aff (isl_aff *aff)
996 print_isl_aff (stderr, aff);
999 void
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);
1007 DEBUG_FUNCTION void
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. */
1016 void
1017 pbb_number_of_iterations_at_time (poly_bb_p pbb,
1018 graphite_dim_t time_depth,
1019 mpz_t res)
1021 isl_set *transdomain;
1022 isl_space *dc;
1023 isl_aff *aff;
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);
1050 isl_aff_free (aff);
1051 isl_set_free (transdomain);
1054 /* Translates LOOP to LST. */
1056 static lst_p
1057 loop_to_lst (loop_p loop, vec<poly_bb_p> bbs, int *i)
1059 poly_bb_p pbb;
1060 vec<lst_p> seq;
1061 seq.create (5);
1063 for (; bbs.iterate (*i, &pbb); (*i)++)
1065 lst_p stmt;
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))
1075 next = next->next;
1077 stmt = loop_to_lst (next, bbs, i);
1079 else
1081 (*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
1092 representing it. */
1094 void
1095 scop_to_lst (scop_p scop)
1097 lst_p res;
1098 int i, n = SCOP_BBS (scop).length ();
1099 vec<lst_p> seq;
1100 seq.create (5);
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);
1110 else
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. */
1123 static void
1124 lst_indent_to (FILE *file, int column)
1126 int i;
1128 if (column > 0)
1129 fprintf (file, "\n#");
1131 for (i = 0; i < column; i++)
1132 fprintf (file, " ");
1135 /* Print LST to FILE with INDENT spaces of indentation. */
1137 void
1138 print_lst (FILE *file, lst_p lst, int indent)
1140 if (!lst)
1141 return;
1143 lst_indent_to (file, indent);
1145 if (LST_LOOP_P (lst))
1147 int i;
1148 lst_p l;
1150 if (LST_LOOP_FATHER (lst))
1151 fprintf (file, "%d (loop", lst_dewey_number (lst));
1152 else
1153 fprintf (file, "#(root");
1155 FOR_EACH_VEC_ELT (LST_SEQ (lst), i, l)
1156 print_lst (file, l, indent + 2);
1158 fprintf (file, ")");
1160 else
1161 fprintf (file, "%d stmt_%d", lst_dewey_number (lst), pbb_index (LST_PBB (lst)));
1164 /* Print LST to STDERR. */
1166 DEBUG_FUNCTION void
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. */
1174 static void
1175 dot_lst_1 (FILE *file, lst_p lst)
1177 if (!lst)
1178 return;
1180 if (LST_LOOP_P (lst))
1182 int i;
1183 lst_p l;
1185 if (!LST_LOOP_FATHER (lst))
1186 fprintf (file, "L -> L_%d_%d\n",
1187 lst_depth (lst),
1188 lst_dewey_number (lst));
1189 else
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)),
1193 lst_depth (lst),
1194 lst_dewey_number (lst));
1196 FOR_EACH_VEC_ELT (LST_SEQ (lst), i, l)
1197 dot_lst_1 (file, l);
1200 else
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. */
1210 DEBUG_FUNCTION void
1211 dot_lst (lst_p lst)
1213 /* When debugging, enable the following code. This cannot be used
1214 in production compilers because it calls "system". */
1215 #if 0
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);
1222 fclose (stream);
1224 system ("dotty /tmp/lst.dot &");
1225 #else
1226 fputs ("digraph all {\n", stderr);
1227 dot_lst_1 (stderr, lst);
1228 fputs ("}\n\n", stderr);
1230 #endif
1233 /* Computes a checksum for the code generated by CLooG for SCOP. */
1235 DEBUG_FUNCTION void
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". */
1240 #if 0
1241 FILE *stream = fopen ("/tmp/scop.cloog", "w");
1242 gcc_assert (stream);
1243 print_cloog (stream, scop, 0);
1244 fclose (stream);
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 ");
1248 #endif
1251 /* Reverse the loop around PBB at level DEPTH. */
1253 isl_map *
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++)
1265 if (i != depth_dim)
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);
1271 return x;
1274 /* Reverse the loop at level DEPTH for all the PBBS. */
1276 isl_union_map *
1277 reverse_loop_for_pbbs (scop_p scop, vec<poly_bb_p> pbbs, int depth)
1279 poly_bb_p pbb;
1280 int i;
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));
1287 return res;
1291 #endif