PR target/6641
[official-gcc.git] / gcc / graphite.c
blob245c336aff341adbe51c54acdde4520eff61eedb
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)
10 any later version.
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
23 to GIMPLE.
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
28 the related work.
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. */
35 #include "config.h"
37 #ifdef HAVE_isl
38 #include <isl/set.h>
39 #include <isl/map.h>
40 #include <isl/options.h>
41 #include <isl/union_map.h>
42 #endif
44 #include "system.h"
45 #include "coretypes.h"
46 #include "diagnostic-core.h"
47 #include "hash-set.h"
48 #include "vec.h"
49 #include "input.h"
50 #include "alias.h"
51 #include "symtab.h"
52 #include "options.h"
53 #include "inchash.h"
54 #include "tree.h"
55 #include "fold-const.h"
56 #include "predict.h"
57 #include "tm.h"
58 #include "hard-reg-set.h"
59 #include "input.h"
60 #include "function.h"
61 #include "dominance.h"
62 #include "cfg.h"
63 #include "basic-block.h"
64 #include "tree-ssa-alias.h"
65 #include "internal-fn.h"
66 #include "gimple-expr.h"
67 #include "is-a.h"
68 #include "gimple.h"
69 #include "gimple-iterator.h"
70 #include "tree-cfg.h"
71 #include "tree-ssa-loop.h"
72 #include "tree-dump.h"
73 #include "cfgloop.h"
74 #include "tree-chrec.h"
75 #include "tree-data-ref.h"
76 #include "tree-scalar-evolution.h"
77 #include "sese.h"
78 #include "dbgcnt.h"
79 #include "tree-parloops.h"
80 #include "tree-pass.h"
81 #include "tree-cfgcleanup.h"
83 #ifdef HAVE_isl
85 #include "graphite-poly.h"
86 #include "graphite-scop-detection.h"
87 #include "graphite-isl-ast-to-gimple.h"
88 #include "graphite-sese-to-poly.h"
90 /* Print global statistics to FILE. */
92 static void
93 print_global_statistics (FILE* file)
95 long n_bbs = 0;
96 long n_loops = 0;
97 long n_stmts = 0;
98 long n_conditions = 0;
99 long n_p_bbs = 0;
100 long n_p_loops = 0;
101 long n_p_stmts = 0;
102 long n_p_conditions = 0;
104 basic_block bb;
106 FOR_ALL_BB_FN (bb, cfun)
108 gimple_stmt_iterator psi;
110 n_bbs++;
111 n_p_bbs += bb->count;
113 /* Ignore artificial surrounding loop. */
114 if (bb == bb->loop_father->header
115 && bb->index != 0)
117 n_loops++;
118 n_p_loops += bb->count;
121 if (EDGE_COUNT (bb->succs) > 1)
123 n_conditions++;
124 n_p_conditions += bb->count;
127 for (psi = gsi_start_bb (bb); !gsi_end_p (psi); gsi_next (&psi))
129 n_stmts++;
130 n_p_stmts += bb->count;
134 fprintf (file, "\nGlobal statistics (");
135 fprintf (file, "BBS:%ld, ", n_bbs);
136 fprintf (file, "LOOPS:%ld, ", n_loops);
137 fprintf (file, "CONDITIONS:%ld, ", n_conditions);
138 fprintf (file, "STMTS:%ld)\n", n_stmts);
139 fprintf (file, "\nGlobal profiling statistics (");
140 fprintf (file, "BBS:%ld, ", n_p_bbs);
141 fprintf (file, "LOOPS:%ld, ", n_p_loops);
142 fprintf (file, "CONDITIONS:%ld, ", n_p_conditions);
143 fprintf (file, "STMTS:%ld)\n", n_p_stmts);
146 /* Print statistics for SCOP to FILE. */
148 static void
149 print_graphite_scop_statistics (FILE* file, scop_p scop)
151 long n_bbs = 0;
152 long n_loops = 0;
153 long n_stmts = 0;
154 long n_conditions = 0;
155 long n_p_bbs = 0;
156 long n_p_loops = 0;
157 long n_p_stmts = 0;
158 long n_p_conditions = 0;
160 basic_block bb;
162 FOR_ALL_BB_FN (bb, cfun)
164 gimple_stmt_iterator psi;
165 loop_p loop = bb->loop_father;
167 if (!bb_in_sese_p (bb, SCOP_REGION (scop)))
168 continue;
170 n_bbs++;
171 n_p_bbs += bb->count;
173 if (EDGE_COUNT (bb->succs) > 1)
175 n_conditions++;
176 n_p_conditions += bb->count;
179 for (psi = gsi_start_bb (bb); !gsi_end_p (psi); gsi_next (&psi))
181 n_stmts++;
182 n_p_stmts += bb->count;
185 if (loop->header == bb && loop_in_sese_p (loop, SCOP_REGION (scop)))
187 n_loops++;
188 n_p_loops += bb->count;
192 fprintf (file, "\nSCoP statistics (");
193 fprintf (file, "BBS:%ld, ", n_bbs);
194 fprintf (file, "LOOPS:%ld, ", n_loops);
195 fprintf (file, "CONDITIONS:%ld, ", n_conditions);
196 fprintf (file, "STMTS:%ld)\n", n_stmts);
197 fprintf (file, "\nSCoP profiling statistics (");
198 fprintf (file, "BBS:%ld, ", n_p_bbs);
199 fprintf (file, "LOOPS:%ld, ", n_p_loops);
200 fprintf (file, "CONDITIONS:%ld, ", n_p_conditions);
201 fprintf (file, "STMTS:%ld)\n", n_p_stmts);
204 /* Print statistics for SCOPS to FILE. */
206 static void
207 print_graphite_statistics (FILE* file, vec<scop_p> scops)
209 int i;
211 scop_p scop;
213 FOR_EACH_VEC_ELT (scops, i, scop)
214 print_graphite_scop_statistics (file, scop);
217 /* Initialize graphite: when there are no loops returns false. */
219 static bool
220 graphite_initialize (isl_ctx *ctx)
222 if (number_of_loops (cfun) <= 1
223 /* FIXME: This limit on the number of basic blocks of a function
224 should be removed when the SCOP detection is faster. */
225 || (n_basic_blocks_for_fn (cfun) >
226 PARAM_VALUE (PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION)))
228 if (dump_file && (dump_flags & TDF_DETAILS))
229 print_global_statistics (dump_file);
231 isl_ctx_free (ctx);
232 return false;
235 scev_reset ();
236 recompute_all_dominators ();
237 initialize_original_copy_tables ();
239 if (dump_file && dump_flags)
240 dump_function_to_file (current_function_decl, dump_file, dump_flags);
242 return true;
245 /* Finalize graphite: perform CFG cleanup when NEED_CFG_CLEANUP_P is
246 true. */
248 static void
249 graphite_finalize (bool need_cfg_cleanup_p)
251 if (need_cfg_cleanup_p)
253 scev_reset ();
254 cleanup_tree_cfg ();
255 profile_status_for_fn (cfun) = PROFILE_ABSENT;
256 release_recorded_exits ();
257 tree_estimate_probability ();
260 free_original_copy_tables ();
262 if (dump_file && dump_flags)
263 print_loops (dump_file, 3);
266 isl_ctx *the_isl_ctx;
268 /* Perform a set of linear transforms on the loops of the current
269 function. */
271 void
272 graphite_transform_loops (void)
274 int i;
275 scop_p scop;
276 bool need_cfg_cleanup_p = false;
277 vec<scop_p> scops = vNULL;
278 isl_ctx *ctx;
280 /* If a function is parallel it was most probably already run through graphite
281 once. No need to run again. */
282 if (parallelized_function_p (cfun->decl))
283 return;
285 ctx = isl_ctx_alloc ();
286 isl_options_set_on_error (ctx, ISL_ON_ERROR_ABORT);
287 if (!graphite_initialize (ctx))
288 return;
290 the_isl_ctx = ctx;
291 build_scops (&scops);
293 if (dump_file && (dump_flags & TDF_DETAILS))
295 print_graphite_statistics (dump_file, scops);
296 print_global_statistics (dump_file);
299 FOR_EACH_VEC_ELT (scops, i, scop)
300 if (dbg_cnt (graphite_scop))
302 scop->ctx = ctx;
303 build_poly_scop (scop);
305 if (POLY_SCOP_P (scop)
306 && apply_poly_transforms (scop)
307 && graphite_regenerate_ast_isl (scop))
308 need_cfg_cleanup_p = true;
312 free_scops (scops);
313 graphite_finalize (need_cfg_cleanup_p);
314 the_isl_ctx = NULL;
315 isl_ctx_free (ctx);
318 #else /* If ISL is not available: #ifndef HAVE_isl. */
320 static void
321 graphite_transform_loops (void)
323 sorry ("Graphite loop optimizations cannot be used (ISL is not available).");
326 #endif
329 static unsigned int
330 graphite_transforms (struct function *fun)
332 if (number_of_loops (fun) <= 1)
333 return 0;
335 graphite_transform_loops ();
337 return 0;
340 static bool
341 gate_graphite_transforms (void)
343 /* Enable -fgraphite pass if any one of the graphite optimization flags
344 is turned on. */
345 if (flag_loop_block
346 || flag_loop_interchange
347 || flag_loop_strip_mine
348 || flag_graphite_identity
349 || flag_loop_parallelize_all
350 || flag_loop_optimize_isl
351 || flag_loop_unroll_jam)
352 flag_graphite = 1;
354 return flag_graphite != 0;
357 namespace {
359 const pass_data pass_data_graphite =
361 GIMPLE_PASS, /* type */
362 "graphite0", /* name */
363 OPTGROUP_LOOP, /* optinfo_flags */
364 TV_GRAPHITE, /* tv_id */
365 ( PROP_cfg | PROP_ssa ), /* properties_required */
366 0, /* properties_provided */
367 0, /* properties_destroyed */
368 0, /* todo_flags_start */
369 0, /* todo_flags_finish */
372 class pass_graphite : public gimple_opt_pass
374 public:
375 pass_graphite (gcc::context *ctxt)
376 : gimple_opt_pass (pass_data_graphite, ctxt)
379 /* opt_pass methods: */
380 virtual bool gate (function *) { return gate_graphite_transforms (); }
382 }; // class pass_graphite
384 } // anon namespace
386 gimple_opt_pass *
387 make_pass_graphite (gcc::context *ctxt)
389 return new pass_graphite (ctxt);
392 namespace {
394 const pass_data pass_data_graphite_transforms =
396 GIMPLE_PASS, /* type */
397 "graphite", /* name */
398 OPTGROUP_LOOP, /* optinfo_flags */
399 TV_GRAPHITE_TRANSFORMS, /* tv_id */
400 ( PROP_cfg | PROP_ssa ), /* properties_required */
401 0, /* properties_provided */
402 0, /* properties_destroyed */
403 0, /* todo_flags_start */
404 0, /* todo_flags_finish */
407 class pass_graphite_transforms : public gimple_opt_pass
409 public:
410 pass_graphite_transforms (gcc::context *ctxt)
411 : gimple_opt_pass (pass_data_graphite_transforms, ctxt)
414 /* opt_pass methods: */
415 virtual bool gate (function *) { return gate_graphite_transforms (); }
416 virtual unsigned int execute (function *fun) { return graphite_transforms (fun); }
418 }; // class pass_graphite_transforms
420 } // anon namespace
422 gimple_opt_pass *
423 make_pass_graphite_transforms (gcc::context *ctxt)
425 return new pass_graphite_transforms (ctxt);