1 /* Gimple Represented as Polyhedra.
2 Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
3 Contributed by Sebastian Pop <sebastian.pop@inria.fr>.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* This pass converts GIMPLE to GRAPHITE, performs some loop
22 transformations and then converts the resulting representation back
25 An early description of this pass can be found in the GCC Summit'06
26 paper "GRAPHITE: Polyhedral Analyses and Optimizations for GCC".
27 The wiki page http://gcc.gnu.org/wiki/Graphite contains pointers to
30 One important document to read is CLooG's internal manual:
31 http://repo.or.cz/w/cloog-ppl.git?a=blob_plain;f=doc/cloog.texi;hb=HEAD
32 that describes the data structure of loops used in this file, and
33 the functions that are used for transforming the code. */
37 #include "coretypes.h"
42 #include "basic-block.h"
43 #include "diagnostic.h"
44 #include "tree-flow.h"
46 #include "tree-dump.h"
49 #include "tree-chrec.h"
50 #include "tree-data-ref.h"
51 #include "tree-scalar-evolution.h"
52 #include "tree-pass.h"
53 #include "value-prof.h"
54 #include "pointer-set.h"
61 #include "cloog/cloog.h"
63 #include "graphite-ppl.h"
65 #include "graphite-poly.h"
66 #include "graphite-scop-detection.h"
67 #include "graphite-clast-to-gimple.h"
68 #include "graphite-sese-to-poly.h"
70 /* Print global statistics to FILE. */
73 print_global_statistics (FILE* file
)
78 long n_conditions
= 0;
82 long n_p_conditions
= 0;
88 gimple_stmt_iterator psi
;
93 /* Ignore artificial surrounding loop. */
94 if (bb
== bb
->loop_father
->header
98 n_p_loops
+= bb
->count
;
101 if (VEC_length (edge
, bb
->succs
) > 1)
104 n_p_conditions
+= bb
->count
;
107 for (psi
= gsi_start_bb (bb
); !gsi_end_p (psi
); gsi_next (&psi
))
110 n_p_stmts
+= bb
->count
;
114 fprintf (file
, "\nGlobal statistics (");
115 fprintf (file
, "BBS:%ld, ", n_bbs
);
116 fprintf (file
, "LOOPS:%ld, ", n_loops
);
117 fprintf (file
, "CONDITIONS:%ld, ", n_conditions
);
118 fprintf (file
, "STMTS:%ld)\n", n_stmts
);
119 fprintf (file
, "\nGlobal profiling statistics (");
120 fprintf (file
, "BBS:%ld, ", n_p_bbs
);
121 fprintf (file
, "LOOPS:%ld, ", n_p_loops
);
122 fprintf (file
, "CONDITIONS:%ld, ", n_p_conditions
);
123 fprintf (file
, "STMTS:%ld)\n", n_p_stmts
);
126 /* Print statistics for SCOP to FILE. */
129 print_graphite_scop_statistics (FILE* file
, scop_p scop
)
134 long n_conditions
= 0;
138 long n_p_conditions
= 0;
144 gimple_stmt_iterator psi
;
145 loop_p loop
= bb
->loop_father
;
147 if (!bb_in_sese_p (bb
, SCOP_REGION (scop
)))
151 n_p_bbs
+= bb
->count
;
153 if (VEC_length (edge
, bb
->succs
) > 1)
156 n_p_conditions
+= bb
->count
;
159 for (psi
= gsi_start_bb (bb
); !gsi_end_p (psi
); gsi_next (&psi
))
162 n_p_stmts
+= bb
->count
;
165 if (loop
->header
== bb
&& loop_in_sese_p (loop
, SCOP_REGION (scop
)))
168 n_p_loops
+= bb
->count
;
172 fprintf (file
, "\nSCoP statistics (");
173 fprintf (file
, "BBS:%ld, ", n_bbs
);
174 fprintf (file
, "LOOPS:%ld, ", n_loops
);
175 fprintf (file
, "CONDITIONS:%ld, ", n_conditions
);
176 fprintf (file
, "STMTS:%ld)\n", n_stmts
);
177 fprintf (file
, "\nSCoP profiling statistics (");
178 fprintf (file
, "BBS:%ld, ", n_p_bbs
);
179 fprintf (file
, "LOOPS:%ld, ", n_p_loops
);
180 fprintf (file
, "CONDITIONS:%ld, ", n_p_conditions
);
181 fprintf (file
, "STMTS:%ld)\n", n_p_stmts
);
184 /* Print statistics for SCOPS to FILE. */
187 print_graphite_statistics (FILE* file
, VEC (scop_p
, heap
) *scops
)
193 for (i
= 0; VEC_iterate (scop_p
, scops
, i
, scop
); i
++)
194 print_graphite_scop_statistics (file
, scop
);
197 /* Initialize graphite: when there are no loops returns false. */
200 graphite_initialize (void)
202 if (number_of_loops () <= 1)
204 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
205 print_global_statistics (dump_file
);
210 recompute_all_dominators ();
211 initialize_original_copy_tables ();
214 if (dump_file
&& dump_flags
)
215 dump_function_to_file (current_function_decl
, dump_file
, dump_flags
);
220 /* Finalize graphite: perform CFG cleanup when NEED_CFG_CLEANUP_P is
224 graphite_finalize (bool need_cfg_cleanup_p
)
226 if (need_cfg_cleanup_p
)
229 profile_status
= PROFILE_ABSENT
;
230 release_recorded_exits ();
231 tree_estimate_probability ();
235 free_original_copy_tables ();
236 free_aux_in_new_loops ();
238 if (dump_file
&& dump_flags
)
239 print_loops (dump_file
, 3);
242 /* Perform a set of linear transforms on the loops of the current
246 graphite_transform_loops (void)
250 bool need_cfg_cleanup_p
= false;
251 VEC (scop_p
, heap
) *scops
= NULL
;
252 htab_t bb_pbb_mapping
;
254 if (!graphite_initialize ())
257 build_scops (&scops
);
259 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
261 print_graphite_statistics (dump_file
, scops
);
262 print_global_statistics (dump_file
);
265 bb_pbb_mapping
= htab_create (10, bb_pbb_map_hash
, eq_bb_pbb_map
, free
);
267 for (i
= 0; VEC_iterate (scop_p
, scops
, i
, scop
); i
++)
269 bool transform_done
= false;
271 if (!build_poly_scop (scop
))
274 if (apply_poly_transforms (scop
))
275 transform_done
= gloog (scop
, bb_pbb_mapping
);
277 check_poly_representation (scop
);
282 need_cfg_cleanup_p
= true;
286 if (flag_loop_parallelize_all
)
287 mark_loops_parallel (bb_pbb_mapping
);
289 htab_delete (bb_pbb_mapping
);
291 graphite_finalize (need_cfg_cleanup_p
);
294 #else /* If Cloog is not available: #ifndef HAVE_cloog. */
297 graphite_transform_loops (void)
299 sorry ("Graphite loop optimizations cannot be used");