2013-05-30 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / gcc / graphite.c
blobf953663941226006186a4b2c2f798cff959ab4d1
1 /* Gimple Represented as Polyhedra.
2 Copyright (C) 2006-2013 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_cloog
38 #include <isl/set.h>
39 #include <isl/map.h>
40 #include <isl/options.h>
41 #include <isl/union_map.h>
42 #include <cloog/cloog.h>
43 #include <cloog/isl/domain.h>
44 #include <cloog/isl/cloog.h>
45 #endif
47 #include "system.h"
48 #include "coretypes.h"
49 #include "diagnostic-core.h"
50 #include "tree-flow.h"
51 #include "tree-dump.h"
52 #include "cfgloop.h"
53 #include "tree-chrec.h"
54 #include "tree-data-ref.h"
55 #include "tree-scalar-evolution.h"
56 #include "sese.h"
57 #include "dbgcnt.h"
59 #ifdef HAVE_cloog
61 #include "graphite-poly.h"
62 #include "graphite-scop-detection.h"
63 #include "graphite-clast-to-gimple.h"
64 #include "graphite-sese-to-poly.h"
65 #include "graphite-htab.h"
67 CloogState *cloog_state;
69 /* Print global statistics to FILE. */
71 static void
72 print_global_statistics (FILE* file)
74 long n_bbs = 0;
75 long n_loops = 0;
76 long n_stmts = 0;
77 long n_conditions = 0;
78 long n_p_bbs = 0;
79 long n_p_loops = 0;
80 long n_p_stmts = 0;
81 long n_p_conditions = 0;
83 basic_block bb;
85 FOR_ALL_BB (bb)
87 gimple_stmt_iterator psi;
89 n_bbs++;
90 n_p_bbs += bb->count;
92 /* Ignore artificial surrounding loop. */
93 if (bb == bb->loop_father->header
94 && bb->index != 0)
96 n_loops++;
97 n_p_loops += bb->count;
100 if (EDGE_COUNT (bb->succs) > 1)
102 n_conditions++;
103 n_p_conditions += bb->count;
106 for (psi = gsi_start_bb (bb); !gsi_end_p (psi); gsi_next (&psi))
108 n_stmts++;
109 n_p_stmts += bb->count;
113 fprintf (file, "\nGlobal statistics (");
114 fprintf (file, "BBS:%ld, ", n_bbs);
115 fprintf (file, "LOOPS:%ld, ", n_loops);
116 fprintf (file, "CONDITIONS:%ld, ", n_conditions);
117 fprintf (file, "STMTS:%ld)\n", n_stmts);
118 fprintf (file, "\nGlobal profiling statistics (");
119 fprintf (file, "BBS:%ld, ", n_p_bbs);
120 fprintf (file, "LOOPS:%ld, ", n_p_loops);
121 fprintf (file, "CONDITIONS:%ld, ", n_p_conditions);
122 fprintf (file, "STMTS:%ld)\n", n_p_stmts);
125 /* Print statistics for SCOP to FILE. */
127 static void
128 print_graphite_scop_statistics (FILE* file, scop_p scop)
130 long n_bbs = 0;
131 long n_loops = 0;
132 long n_stmts = 0;
133 long n_conditions = 0;
134 long n_p_bbs = 0;
135 long n_p_loops = 0;
136 long n_p_stmts = 0;
137 long n_p_conditions = 0;
139 basic_block bb;
141 FOR_ALL_BB (bb)
143 gimple_stmt_iterator psi;
144 loop_p loop = bb->loop_father;
146 if (!bb_in_sese_p (bb, SCOP_REGION (scop)))
147 continue;
149 n_bbs++;
150 n_p_bbs += bb->count;
152 if (EDGE_COUNT (bb->succs) > 1)
154 n_conditions++;
155 n_p_conditions += bb->count;
158 for (psi = gsi_start_bb (bb); !gsi_end_p (psi); gsi_next (&psi))
160 n_stmts++;
161 n_p_stmts += bb->count;
164 if (loop->header == bb && loop_in_sese_p (loop, SCOP_REGION (scop)))
166 n_loops++;
167 n_p_loops += bb->count;
171 fprintf (file, "\nSCoP statistics (");
172 fprintf (file, "BBS:%ld, ", n_bbs);
173 fprintf (file, "LOOPS:%ld, ", n_loops);
174 fprintf (file, "CONDITIONS:%ld, ", n_conditions);
175 fprintf (file, "STMTS:%ld)\n", n_stmts);
176 fprintf (file, "\nSCoP profiling statistics (");
177 fprintf (file, "BBS:%ld, ", n_p_bbs);
178 fprintf (file, "LOOPS:%ld, ", n_p_loops);
179 fprintf (file, "CONDITIONS:%ld, ", n_p_conditions);
180 fprintf (file, "STMTS:%ld)\n", n_p_stmts);
183 /* Print statistics for SCOPS to FILE. */
185 static void
186 print_graphite_statistics (FILE* file, vec<scop_p> scops)
188 int i;
190 scop_p scop;
192 FOR_EACH_VEC_ELT (scops, i, scop)
193 print_graphite_scop_statistics (file, scop);
196 /* Initialize graphite: when there are no loops returns false. */
198 static bool
199 graphite_initialize (isl_ctx *ctx)
201 if (number_of_loops (cfun) <= 1
202 /* FIXME: This limit on the number of basic blocks of a function
203 should be removed when the SCOP detection is faster. */
204 || n_basic_blocks > PARAM_VALUE (PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION))
206 if (dump_file && (dump_flags & TDF_DETAILS))
207 print_global_statistics (dump_file);
209 isl_ctx_free (ctx);
210 return false;
213 scev_reset ();
214 recompute_all_dominators ();
215 initialize_original_copy_tables ();
217 cloog_state = cloog_isl_state_malloc (ctx);
219 if (dump_file && dump_flags)
220 dump_function_to_file (current_function_decl, dump_file, dump_flags);
222 return true;
225 /* Finalize graphite: perform CFG cleanup when NEED_CFG_CLEANUP_P is
226 true. */
228 static void
229 graphite_finalize (bool need_cfg_cleanup_p)
231 if (need_cfg_cleanup_p)
233 scev_reset ();
234 cleanup_tree_cfg ();
235 profile_status = PROFILE_ABSENT;
236 release_recorded_exits ();
237 tree_estimate_probability ();
240 cloog_state_free (cloog_state);
241 free_original_copy_tables ();
243 if (dump_file && dump_flags)
244 print_loops (dump_file, 3);
247 isl_ctx *the_isl_ctx;
249 /* Perform a set of linear transforms on the loops of the current
250 function. */
252 void
253 graphite_transform_loops (void)
255 int i;
256 scop_p scop;
257 bool need_cfg_cleanup_p = false;
258 vec<scop_p> scops = vNULL;
259 bb_pbb_htab_type bb_pbb_mapping;
260 isl_ctx *ctx;
262 /* If a function is parallel it was most probably already run through graphite
263 once. No need to run again. */
264 if (parallelized_function_p (cfun->decl))
265 return;
267 ctx = isl_ctx_alloc ();
268 isl_options_set_on_error(ctx, ISL_ON_ERROR_ABORT);
269 if (!graphite_initialize (ctx))
270 return;
272 the_isl_ctx = ctx;
273 build_scops (&scops);
275 if (dump_file && (dump_flags & TDF_DETAILS))
277 print_graphite_statistics (dump_file, scops);
278 print_global_statistics (dump_file);
281 bb_pbb_mapping.create (10);
283 FOR_EACH_VEC_ELT (scops, i, scop)
284 if (dbg_cnt (graphite_scop))
286 scop->ctx = ctx;
287 build_poly_scop (scop);
289 if (POLY_SCOP_P (scop)
290 && apply_poly_transforms (scop)
291 && gloog (scop, bb_pbb_mapping))
292 need_cfg_cleanup_p = true;
295 bb_pbb_mapping.dispose ();
296 free_scops (scops);
297 graphite_finalize (need_cfg_cleanup_p);
298 the_isl_ctx = NULL;
299 isl_ctx_free (ctx);
302 #else /* If Cloog is not available: #ifndef HAVE_cloog. */
304 void
305 graphite_transform_loops (void)
307 sorry ("Graphite loop optimizations cannot be used");
310 #endif