1 /* Gimple Represented as Polyhedra.
2 Copyright (C) 2006-2015 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. */
40 #include <isl/options.h>
41 #include <isl/union_map.h>
45 #include "coretypes.h"
46 #include "diagnostic-core.h"
50 #include "double-int.h"
58 #include "fold-const.h"
61 #include "hard-reg-set.h"
64 #include "dominance.h"
66 #include "basic-block.h"
67 #include "tree-ssa-alias.h"
68 #include "internal-fn.h"
69 #include "gimple-expr.h"
72 #include "gimple-iterator.h"
74 #include "tree-ssa-loop.h"
75 #include "tree-dump.h"
77 #include "tree-chrec.h"
78 #include "tree-data-ref.h"
79 #include "tree-scalar-evolution.h"
82 #include "tree-parloops.h"
83 #include "tree-pass.h"
84 #include "tree-cfgcleanup.h"
88 #include "graphite-poly.h"
89 #include "graphite-scop-detection.h"
90 #include "graphite-isl-ast-to-gimple.h"
91 #include "graphite-sese-to-poly.h"
93 /* Print global statistics to FILE. */
96 print_global_statistics (FILE* file
)
101 long n_conditions
= 0;
105 long n_p_conditions
= 0;
109 FOR_ALL_BB_FN (bb
, cfun
)
111 gimple_stmt_iterator psi
;
114 n_p_bbs
+= bb
->count
;
116 /* Ignore artificial surrounding loop. */
117 if (bb
== bb
->loop_father
->header
121 n_p_loops
+= bb
->count
;
124 if (EDGE_COUNT (bb
->succs
) > 1)
127 n_p_conditions
+= bb
->count
;
130 for (psi
= gsi_start_bb (bb
); !gsi_end_p (psi
); gsi_next (&psi
))
133 n_p_stmts
+= bb
->count
;
137 fprintf (file
, "\nGlobal statistics (");
138 fprintf (file
, "BBS:%ld, ", n_bbs
);
139 fprintf (file
, "LOOPS:%ld, ", n_loops
);
140 fprintf (file
, "CONDITIONS:%ld, ", n_conditions
);
141 fprintf (file
, "STMTS:%ld)\n", n_stmts
);
142 fprintf (file
, "\nGlobal profiling statistics (");
143 fprintf (file
, "BBS:%ld, ", n_p_bbs
);
144 fprintf (file
, "LOOPS:%ld, ", n_p_loops
);
145 fprintf (file
, "CONDITIONS:%ld, ", n_p_conditions
);
146 fprintf (file
, "STMTS:%ld)\n", n_p_stmts
);
149 /* Print statistics for SCOP to FILE. */
152 print_graphite_scop_statistics (FILE* file
, scop_p scop
)
157 long n_conditions
= 0;
161 long n_p_conditions
= 0;
165 FOR_ALL_BB_FN (bb
, cfun
)
167 gimple_stmt_iterator psi
;
168 loop_p loop
= bb
->loop_father
;
170 if (!bb_in_sese_p (bb
, SCOP_REGION (scop
)))
174 n_p_bbs
+= bb
->count
;
176 if (EDGE_COUNT (bb
->succs
) > 1)
179 n_p_conditions
+= bb
->count
;
182 for (psi
= gsi_start_bb (bb
); !gsi_end_p (psi
); gsi_next (&psi
))
185 n_p_stmts
+= bb
->count
;
188 if (loop
->header
== bb
&& loop_in_sese_p (loop
, SCOP_REGION (scop
)))
191 n_p_loops
+= bb
->count
;
195 fprintf (file
, "\nSCoP statistics (");
196 fprintf (file
, "BBS:%ld, ", n_bbs
);
197 fprintf (file
, "LOOPS:%ld, ", n_loops
);
198 fprintf (file
, "CONDITIONS:%ld, ", n_conditions
);
199 fprintf (file
, "STMTS:%ld)\n", n_stmts
);
200 fprintf (file
, "\nSCoP profiling statistics (");
201 fprintf (file
, "BBS:%ld, ", n_p_bbs
);
202 fprintf (file
, "LOOPS:%ld, ", n_p_loops
);
203 fprintf (file
, "CONDITIONS:%ld, ", n_p_conditions
);
204 fprintf (file
, "STMTS:%ld)\n", n_p_stmts
);
207 /* Print statistics for SCOPS to FILE. */
210 print_graphite_statistics (FILE* file
, vec
<scop_p
> scops
)
216 FOR_EACH_VEC_ELT (scops
, i
, scop
)
217 print_graphite_scop_statistics (file
, scop
);
220 /* Initialize graphite: when there are no loops returns false. */
223 graphite_initialize (isl_ctx
*ctx
)
225 if (number_of_loops (cfun
) <= 1
226 /* FIXME: This limit on the number of basic blocks of a function
227 should be removed when the SCOP detection is faster. */
228 || (n_basic_blocks_for_fn (cfun
) >
229 PARAM_VALUE (PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION
)))
231 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
232 print_global_statistics (dump_file
);
239 recompute_all_dominators ();
240 initialize_original_copy_tables ();
242 if (dump_file
&& dump_flags
)
243 dump_function_to_file (current_function_decl
, dump_file
, dump_flags
);
248 /* Finalize graphite: perform CFG cleanup when NEED_CFG_CLEANUP_P is
252 graphite_finalize (bool need_cfg_cleanup_p
)
254 if (need_cfg_cleanup_p
)
258 profile_status_for_fn (cfun
) = PROFILE_ABSENT
;
259 release_recorded_exits ();
260 tree_estimate_probability ();
263 free_original_copy_tables ();
265 if (dump_file
&& dump_flags
)
266 print_loops (dump_file
, 3);
269 isl_ctx
*the_isl_ctx
;
271 /* Perform a set of linear transforms on the loops of the current
275 graphite_transform_loops (void)
279 bool need_cfg_cleanup_p
= false;
280 vec
<scop_p
> scops
= vNULL
;
283 /* If a function is parallel it was most probably already run through graphite
284 once. No need to run again. */
285 if (parallelized_function_p (cfun
->decl
))
288 ctx
= isl_ctx_alloc ();
289 isl_options_set_on_error (ctx
, ISL_ON_ERROR_ABORT
);
290 if (!graphite_initialize (ctx
))
294 build_scops (&scops
);
296 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
298 print_graphite_statistics (dump_file
, scops
);
299 print_global_statistics (dump_file
);
302 FOR_EACH_VEC_ELT (scops
, i
, scop
)
303 if (dbg_cnt (graphite_scop
))
306 build_poly_scop (scop
);
308 if (POLY_SCOP_P (scop
)
309 && apply_poly_transforms (scop
)
310 && graphite_regenerate_ast_isl (scop
))
311 need_cfg_cleanup_p
= true;
316 graphite_finalize (need_cfg_cleanup_p
);
321 #else /* If ISL is not available: #ifndef HAVE_isl. */
324 graphite_transform_loops (void)
326 sorry ("Graphite loop optimizations cannot be used (ISL is not available).");
333 graphite_transforms (struct function
*fun
)
335 if (number_of_loops (fun
) <= 1)
338 graphite_transform_loops ();
344 gate_graphite_transforms (void)
346 /* Enable -fgraphite pass if any one of the graphite optimization flags
349 || flag_loop_interchange
350 || flag_loop_strip_mine
351 || flag_graphite_identity
352 || flag_loop_parallelize_all
353 || flag_loop_optimize_isl
354 || flag_loop_unroll_jam
)
357 return flag_graphite
!= 0;
362 const pass_data pass_data_graphite
=
364 GIMPLE_PASS
, /* type */
365 "graphite0", /* name */
366 OPTGROUP_LOOP
, /* optinfo_flags */
367 TV_GRAPHITE
, /* tv_id */
368 ( PROP_cfg
| PROP_ssa
), /* properties_required */
369 0, /* properties_provided */
370 0, /* properties_destroyed */
371 0, /* todo_flags_start */
372 0, /* todo_flags_finish */
375 class pass_graphite
: public gimple_opt_pass
378 pass_graphite (gcc::context
*ctxt
)
379 : gimple_opt_pass (pass_data_graphite
, ctxt
)
382 /* opt_pass methods: */
383 virtual bool gate (function
*) { return gate_graphite_transforms (); }
385 }; // class pass_graphite
390 make_pass_graphite (gcc::context
*ctxt
)
392 return new pass_graphite (ctxt
);
397 const pass_data pass_data_graphite_transforms
=
399 GIMPLE_PASS
, /* type */
400 "graphite", /* name */
401 OPTGROUP_LOOP
, /* optinfo_flags */
402 TV_GRAPHITE_TRANSFORMS
, /* tv_id */
403 ( PROP_cfg
| PROP_ssa
), /* properties_required */
404 0, /* properties_provided */
405 0, /* properties_destroyed */
406 0, /* todo_flags_start */
407 0, /* todo_flags_finish */
410 class pass_graphite_transforms
: public gimple_opt_pass
413 pass_graphite_transforms (gcc::context
*ctxt
)
414 : gimple_opt_pass (pass_data_graphite_transforms
, ctxt
)
417 /* opt_pass methods: */
418 virtual bool gate (function
*) { return gate_graphite_transforms (); }
419 virtual unsigned int execute (function
*fun
) { return graphite_transforms (fun
); }
421 }; // class pass_graphite_transforms
426 make_pass_graphite_transforms (gcc::context
*ctxt
)
428 return new pass_graphite_transforms (ctxt
);