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"
51 #include "fold-const.h"
54 #include "hard-reg-set.h"
56 #include "dominance.h"
58 #include "basic-block.h"
59 #include "tree-ssa-alias.h"
60 #include "internal-fn.h"
61 #include "gimple-expr.h"
63 #include "gimple-iterator.h"
65 #include "tree-ssa-loop.h"
66 #include "tree-dump.h"
68 #include "tree-chrec.h"
69 #include "tree-data-ref.h"
70 #include "tree-scalar-evolution.h"
73 #include "tree-parloops.h"
74 #include "tree-pass.h"
75 #include "tree-cfgcleanup.h"
79 #include "graphite-poly.h"
80 #include "graphite-scop-detection.h"
81 #include "graphite-isl-ast-to-gimple.h"
82 #include "graphite-sese-to-poly.h"
84 /* Print global statistics to FILE. */
87 print_global_statistics (FILE* file
)
92 long n_conditions
= 0;
96 long n_p_conditions
= 0;
100 FOR_ALL_BB_FN (bb
, cfun
)
102 gimple_stmt_iterator psi
;
105 n_p_bbs
+= bb
->count
;
107 /* Ignore artificial surrounding loop. */
108 if (bb
== bb
->loop_father
->header
112 n_p_loops
+= bb
->count
;
115 if (EDGE_COUNT (bb
->succs
) > 1)
118 n_p_conditions
+= bb
->count
;
121 for (psi
= gsi_start_bb (bb
); !gsi_end_p (psi
); gsi_next (&psi
))
124 n_p_stmts
+= bb
->count
;
128 fprintf (file
, "\nGlobal statistics (");
129 fprintf (file
, "BBS:%ld, ", n_bbs
);
130 fprintf (file
, "LOOPS:%ld, ", n_loops
);
131 fprintf (file
, "CONDITIONS:%ld, ", n_conditions
);
132 fprintf (file
, "STMTS:%ld)\n", n_stmts
);
133 fprintf (file
, "\nGlobal profiling statistics (");
134 fprintf (file
, "BBS:%ld, ", n_p_bbs
);
135 fprintf (file
, "LOOPS:%ld, ", n_p_loops
);
136 fprintf (file
, "CONDITIONS:%ld, ", n_p_conditions
);
137 fprintf (file
, "STMTS:%ld)\n", n_p_stmts
);
140 /* Print statistics for SCOP to FILE. */
143 print_graphite_scop_statistics (FILE* file
, scop_p scop
)
148 long n_conditions
= 0;
152 long n_p_conditions
= 0;
156 FOR_ALL_BB_FN (bb
, cfun
)
158 gimple_stmt_iterator psi
;
159 loop_p loop
= bb
->loop_father
;
161 if (!bb_in_sese_p (bb
, SCOP_REGION (scop
)))
165 n_p_bbs
+= bb
->count
;
167 if (EDGE_COUNT (bb
->succs
) > 1)
170 n_p_conditions
+= bb
->count
;
173 for (psi
= gsi_start_bb (bb
); !gsi_end_p (psi
); gsi_next (&psi
))
176 n_p_stmts
+= bb
->count
;
179 if (loop
->header
== bb
&& loop_in_sese_p (loop
, SCOP_REGION (scop
)))
182 n_p_loops
+= bb
->count
;
186 fprintf (file
, "\nSCoP statistics (");
187 fprintf (file
, "BBS:%ld, ", n_bbs
);
188 fprintf (file
, "LOOPS:%ld, ", n_loops
);
189 fprintf (file
, "CONDITIONS:%ld, ", n_conditions
);
190 fprintf (file
, "STMTS:%ld)\n", n_stmts
);
191 fprintf (file
, "\nSCoP profiling statistics (");
192 fprintf (file
, "BBS:%ld, ", n_p_bbs
);
193 fprintf (file
, "LOOPS:%ld, ", n_p_loops
);
194 fprintf (file
, "CONDITIONS:%ld, ", n_p_conditions
);
195 fprintf (file
, "STMTS:%ld)\n", n_p_stmts
);
198 /* Print statistics for SCOPS to FILE. */
201 print_graphite_statistics (FILE* file
, vec
<scop_p
> scops
)
207 FOR_EACH_VEC_ELT (scops
, i
, scop
)
208 print_graphite_scop_statistics (file
, scop
);
211 /* Initialize graphite: when there are no loops returns false. */
214 graphite_initialize (isl_ctx
*ctx
)
216 if (number_of_loops (cfun
) <= 1
217 /* FIXME: This limit on the number of basic blocks of a function
218 should be removed when the SCOP detection is faster. */
219 || (n_basic_blocks_for_fn (cfun
) >
220 PARAM_VALUE (PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION
)))
222 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
223 print_global_statistics (dump_file
);
230 recompute_all_dominators ();
231 initialize_original_copy_tables ();
233 if (dump_file
&& dump_flags
)
234 dump_function_to_file (current_function_decl
, dump_file
, dump_flags
);
239 /* Finalize graphite: perform CFG cleanup when NEED_CFG_CLEANUP_P is
243 graphite_finalize (bool need_cfg_cleanup_p
)
245 if (need_cfg_cleanup_p
)
249 profile_status_for_fn (cfun
) = PROFILE_ABSENT
;
250 release_recorded_exits ();
251 tree_estimate_probability ();
254 free_original_copy_tables ();
256 if (dump_file
&& dump_flags
)
257 print_loops (dump_file
, 3);
260 isl_ctx
*the_isl_ctx
;
262 /* Perform a set of linear transforms on the loops of the current
266 graphite_transform_loops (void)
270 bool need_cfg_cleanup_p
= false;
271 vec
<scop_p
> scops
= vNULL
;
274 /* If a function is parallel it was most probably already run through graphite
275 once. No need to run again. */
276 if (parallelized_function_p (cfun
->decl
))
279 ctx
= isl_ctx_alloc ();
280 isl_options_set_on_error (ctx
, ISL_ON_ERROR_ABORT
);
281 if (!graphite_initialize (ctx
))
285 build_scops (&scops
);
287 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
289 print_graphite_statistics (dump_file
, scops
);
290 print_global_statistics (dump_file
);
293 FOR_EACH_VEC_ELT (scops
, i
, scop
)
294 if (dbg_cnt (graphite_scop
))
297 build_poly_scop (scop
);
299 if (POLY_SCOP_P (scop
)
300 && apply_poly_transforms (scop
)
301 && graphite_regenerate_ast_isl (scop
))
302 need_cfg_cleanup_p
= true;
307 graphite_finalize (need_cfg_cleanup_p
);
312 #else /* If ISL is not available: #ifndef HAVE_isl. */
315 graphite_transform_loops (void)
317 sorry ("Graphite loop optimizations cannot be used (ISL is not available).");
324 graphite_transforms (struct function
*fun
)
326 if (number_of_loops (fun
) <= 1)
329 graphite_transform_loops ();
335 gate_graphite_transforms (void)
337 /* Enable -fgraphite pass if any one of the graphite optimization flags
340 || flag_loop_interchange
341 || flag_loop_strip_mine
342 || flag_graphite_identity
343 || flag_loop_parallelize_all
344 || flag_loop_optimize_isl
345 || flag_loop_unroll_jam
)
348 return flag_graphite
!= 0;
353 const pass_data pass_data_graphite
=
355 GIMPLE_PASS
, /* type */
356 "graphite0", /* name */
357 OPTGROUP_LOOP
, /* optinfo_flags */
358 TV_GRAPHITE
, /* tv_id */
359 ( PROP_cfg
| PROP_ssa
), /* properties_required */
360 0, /* properties_provided */
361 0, /* properties_destroyed */
362 0, /* todo_flags_start */
363 0, /* todo_flags_finish */
366 class pass_graphite
: public gimple_opt_pass
369 pass_graphite (gcc::context
*ctxt
)
370 : gimple_opt_pass (pass_data_graphite
, ctxt
)
373 /* opt_pass methods: */
374 virtual bool gate (function
*) { return gate_graphite_transforms (); }
376 }; // class pass_graphite
381 make_pass_graphite (gcc::context
*ctxt
)
383 return new pass_graphite (ctxt
);
388 const pass_data pass_data_graphite_transforms
=
390 GIMPLE_PASS
, /* type */
391 "graphite", /* name */
392 OPTGROUP_LOOP
, /* optinfo_flags */
393 TV_GRAPHITE_TRANSFORMS
, /* tv_id */
394 ( PROP_cfg
| PROP_ssa
), /* properties_required */
395 0, /* properties_provided */
396 0, /* properties_destroyed */
397 0, /* todo_flags_start */
398 0, /* todo_flags_finish */
401 class pass_graphite_transforms
: public gimple_opt_pass
404 pass_graphite_transforms (gcc::context
*ctxt
)
405 : gimple_opt_pass (pass_data_graphite_transforms
, ctxt
)
408 /* opt_pass methods: */
409 virtual bool gate (function
*) { return gate_graphite_transforms (); }
410 virtual unsigned int execute (function
*fun
) { return graphite_transforms (fun
); }
412 }; // class pass_graphite_transforms
417 make_pass_graphite_transforms (gcc::context
*ctxt
)
419 return new pass_graphite_transforms (ctxt
);