2015-06-11 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / graphite.c
blobafcc6ad2f638534b8931015e73bc0146796fe0f3
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 "input.h"
48 #include "alias.h"
49 #include "symtab.h"
50 #include "options.h"
51 #include "tree.h"
52 #include "fold-const.h"
53 #include "predict.h"
54 #include "tm.h"
55 #include "hard-reg-set.h"
56 #include "input.h"
57 #include "function.h"
58 #include "dominance.h"
59 #include "cfg.h"
60 #include "basic-block.h"
61 #include "tree-ssa-alias.h"
62 #include "internal-fn.h"
63 #include "gimple-expr.h"
64 #include "is-a.h"
65 #include "gimple.h"
66 #include "gimple-iterator.h"
67 #include "tree-cfg.h"
68 #include "tree-ssa-loop.h"
69 #include "tree-dump.h"
70 #include "cfgloop.h"
71 #include "tree-chrec.h"
72 #include "tree-data-ref.h"
73 #include "tree-scalar-evolution.h"
74 #include "sese.h"
75 #include "dbgcnt.h"
76 #include "tree-parloops.h"
77 #include "tree-pass.h"
78 #include "tree-cfgcleanup.h"
80 #ifdef HAVE_isl
82 #include "graphite-poly.h"
83 #include "graphite-scop-detection.h"
84 #include "graphite-isl-ast-to-gimple.h"
85 #include "graphite-sese-to-poly.h"
87 /* Print global statistics to FILE. */
89 static void
90 print_global_statistics (FILE* file)
92 long n_bbs = 0;
93 long n_loops = 0;
94 long n_stmts = 0;
95 long n_conditions = 0;
96 long n_p_bbs = 0;
97 long n_p_loops = 0;
98 long n_p_stmts = 0;
99 long n_p_conditions = 0;
101 basic_block bb;
103 FOR_ALL_BB_FN (bb, cfun)
105 gimple_stmt_iterator psi;
107 n_bbs++;
108 n_p_bbs += bb->count;
110 /* Ignore artificial surrounding loop. */
111 if (bb == bb->loop_father->header
112 && bb->index != 0)
114 n_loops++;
115 n_p_loops += bb->count;
118 if (EDGE_COUNT (bb->succs) > 1)
120 n_conditions++;
121 n_p_conditions += bb->count;
124 for (psi = gsi_start_bb (bb); !gsi_end_p (psi); gsi_next (&psi))
126 n_stmts++;
127 n_p_stmts += bb->count;
131 fprintf (file, "\nGlobal statistics (");
132 fprintf (file, "BBS:%ld, ", n_bbs);
133 fprintf (file, "LOOPS:%ld, ", n_loops);
134 fprintf (file, "CONDITIONS:%ld, ", n_conditions);
135 fprintf (file, "STMTS:%ld)\n", n_stmts);
136 fprintf (file, "\nGlobal profiling statistics (");
137 fprintf (file, "BBS:%ld, ", n_p_bbs);
138 fprintf (file, "LOOPS:%ld, ", n_p_loops);
139 fprintf (file, "CONDITIONS:%ld, ", n_p_conditions);
140 fprintf (file, "STMTS:%ld)\n", n_p_stmts);
143 /* Print statistics for SCOP to FILE. */
145 static void
146 print_graphite_scop_statistics (FILE* file, scop_p scop)
148 long n_bbs = 0;
149 long n_loops = 0;
150 long n_stmts = 0;
151 long n_conditions = 0;
152 long n_p_bbs = 0;
153 long n_p_loops = 0;
154 long n_p_stmts = 0;
155 long n_p_conditions = 0;
157 basic_block bb;
159 FOR_ALL_BB_FN (bb, cfun)
161 gimple_stmt_iterator psi;
162 loop_p loop = bb->loop_father;
164 if (!bb_in_sese_p (bb, SCOP_REGION (scop)))
165 continue;
167 n_bbs++;
168 n_p_bbs += bb->count;
170 if (EDGE_COUNT (bb->succs) > 1)
172 n_conditions++;
173 n_p_conditions += bb->count;
176 for (psi = gsi_start_bb (bb); !gsi_end_p (psi); gsi_next (&psi))
178 n_stmts++;
179 n_p_stmts += bb->count;
182 if (loop->header == bb && loop_in_sese_p (loop, SCOP_REGION (scop)))
184 n_loops++;
185 n_p_loops += bb->count;
189 fprintf (file, "\nSCoP statistics (");
190 fprintf (file, "BBS:%ld, ", n_bbs);
191 fprintf (file, "LOOPS:%ld, ", n_loops);
192 fprintf (file, "CONDITIONS:%ld, ", n_conditions);
193 fprintf (file, "STMTS:%ld)\n", n_stmts);
194 fprintf (file, "\nSCoP profiling statistics (");
195 fprintf (file, "BBS:%ld, ", n_p_bbs);
196 fprintf (file, "LOOPS:%ld, ", n_p_loops);
197 fprintf (file, "CONDITIONS:%ld, ", n_p_conditions);
198 fprintf (file, "STMTS:%ld)\n", n_p_stmts);
201 /* Print statistics for SCOPS to FILE. */
203 static void
204 print_graphite_statistics (FILE* file, vec<scop_p> scops)
206 int i;
208 scop_p scop;
210 FOR_EACH_VEC_ELT (scops, i, scop)
211 print_graphite_scop_statistics (file, scop);
214 /* Initialize graphite: when there are no loops returns false. */
216 static bool
217 graphite_initialize (isl_ctx *ctx)
219 if (number_of_loops (cfun) <= 1
220 /* FIXME: This limit on the number of basic blocks of a function
221 should be removed when the SCOP detection is faster. */
222 || (n_basic_blocks_for_fn (cfun) >
223 PARAM_VALUE (PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION)))
225 if (dump_file && (dump_flags & TDF_DETAILS))
226 print_global_statistics (dump_file);
228 isl_ctx_free (ctx);
229 return false;
232 scev_reset ();
233 recompute_all_dominators ();
234 initialize_original_copy_tables ();
236 if (dump_file && dump_flags)
237 dump_function_to_file (current_function_decl, dump_file, dump_flags);
239 return true;
242 /* Finalize graphite: perform CFG cleanup when NEED_CFG_CLEANUP_P is
243 true. */
245 static void
246 graphite_finalize (bool need_cfg_cleanup_p)
248 if (need_cfg_cleanup_p)
250 scev_reset ();
251 cleanup_tree_cfg ();
252 profile_status_for_fn (cfun) = PROFILE_ABSENT;
253 release_recorded_exits ();
254 tree_estimate_probability ();
257 free_original_copy_tables ();
259 if (dump_file && dump_flags)
260 print_loops (dump_file, 3);
263 isl_ctx *the_isl_ctx;
265 /* Perform a set of linear transforms on the loops of the current
266 function. */
268 void
269 graphite_transform_loops (void)
271 int i;
272 scop_p scop;
273 bool need_cfg_cleanup_p = false;
274 vec<scop_p> scops = vNULL;
275 isl_ctx *ctx;
277 /* If a function is parallel it was most probably already run through graphite
278 once. No need to run again. */
279 if (parallelized_function_p (cfun->decl))
280 return;
282 ctx = isl_ctx_alloc ();
283 isl_options_set_on_error (ctx, ISL_ON_ERROR_ABORT);
284 if (!graphite_initialize (ctx))
285 return;
287 the_isl_ctx = ctx;
288 build_scops (&scops);
290 if (dump_file && (dump_flags & TDF_DETAILS))
292 print_graphite_statistics (dump_file, scops);
293 print_global_statistics (dump_file);
296 FOR_EACH_VEC_ELT (scops, i, scop)
297 if (dbg_cnt (graphite_scop))
299 scop->ctx = ctx;
300 build_poly_scop (scop);
302 if (POLY_SCOP_P (scop)
303 && apply_poly_transforms (scop)
304 && graphite_regenerate_ast_isl (scop))
305 need_cfg_cleanup_p = true;
309 free_scops (scops);
310 graphite_finalize (need_cfg_cleanup_p);
311 the_isl_ctx = NULL;
312 isl_ctx_free (ctx);
315 #else /* If ISL is not available: #ifndef HAVE_isl. */
317 static void
318 graphite_transform_loops (void)
320 sorry ("Graphite loop optimizations cannot be used (ISL is not available).");
323 #endif
326 static unsigned int
327 graphite_transforms (struct function *fun)
329 if (number_of_loops (fun) <= 1)
330 return 0;
332 graphite_transform_loops ();
334 return 0;
337 static bool
338 gate_graphite_transforms (void)
340 /* Enable -fgraphite pass if any one of the graphite optimization flags
341 is turned on. */
342 if (flag_loop_block
343 || flag_loop_interchange
344 || flag_loop_strip_mine
345 || flag_graphite_identity
346 || flag_loop_parallelize_all
347 || flag_loop_optimize_isl
348 || flag_loop_unroll_jam)
349 flag_graphite = 1;
351 return flag_graphite != 0;
354 namespace {
356 const pass_data pass_data_graphite =
358 GIMPLE_PASS, /* type */
359 "graphite0", /* name */
360 OPTGROUP_LOOP, /* optinfo_flags */
361 TV_GRAPHITE, /* tv_id */
362 ( PROP_cfg | PROP_ssa ), /* properties_required */
363 0, /* properties_provided */
364 0, /* properties_destroyed */
365 0, /* todo_flags_start */
366 0, /* todo_flags_finish */
369 class pass_graphite : public gimple_opt_pass
371 public:
372 pass_graphite (gcc::context *ctxt)
373 : gimple_opt_pass (pass_data_graphite, ctxt)
376 /* opt_pass methods: */
377 virtual bool gate (function *) { return gate_graphite_transforms (); }
379 }; // class pass_graphite
381 } // anon namespace
383 gimple_opt_pass *
384 make_pass_graphite (gcc::context *ctxt)
386 return new pass_graphite (ctxt);
389 namespace {
391 const pass_data pass_data_graphite_transforms =
393 GIMPLE_PASS, /* type */
394 "graphite", /* name */
395 OPTGROUP_LOOP, /* optinfo_flags */
396 TV_GRAPHITE_TRANSFORMS, /* tv_id */
397 ( PROP_cfg | PROP_ssa ), /* properties_required */
398 0, /* properties_provided */
399 0, /* properties_destroyed */
400 0, /* todo_flags_start */
401 0, /* todo_flags_finish */
404 class pass_graphite_transforms : public gimple_opt_pass
406 public:
407 pass_graphite_transforms (gcc::context *ctxt)
408 : gimple_opt_pass (pass_data_graphite_transforms, ctxt)
411 /* opt_pass methods: */
412 virtual bool gate (function *) { return gate_graphite_transforms (); }
413 virtual unsigned int execute (function *fun) { return graphite_transforms (fun); }
415 }; // class pass_graphite_transforms
417 } // anon namespace
419 gimple_opt_pass *
420 make_pass_graphite_transforms (gcc::context *ctxt)
422 return new pass_graphite_transforms (ctxt);