1 /* Loop optimizations over tree-ssa.
2 Copyright (C) 2003 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
11 GCC is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
23 #include "coretypes.h"
28 #include "hard-reg-set.h"
29 #include "basic-block.h"
31 #include "diagnostic.h"
32 #include "tree-flow.h"
33 #include "tree-dump.h"
34 #include "tree-pass.h"
38 #include "tree-inline.h"
39 #include "tree-scalar-evolution.h"
41 /* The loop tree currently optimized. */
43 struct loops
*current_loops
;
45 /* Initializes the loop structures. DUMP is the file to that the details
46 about the analysis should be dumped. */
49 tree_loop_optimizer_init (FILE *dump
)
51 struct loops
*loops
= loop_optimizer_init (dump
);
56 /* Creation of preheaders may create redundant phi nodes if the loop is
57 entered by more than one edge, but the initial value of the induction
58 variable is the same on all of them. */
59 kill_redundant_phi_nodes ();
60 rewrite_into_ssa (false);
61 bitmap_clear (vars_to_rename
);
63 rewrite_into_loop_closed_ssa ();
64 #ifdef ENABLE_CHECKING
65 verify_loop_closed_ssa ();
71 /* The loop superpass. */
76 return flag_tree_loop_optimize
!= 0;
79 struct tree_opt_pass pass_loop
=
86 0, /* static_pass_number */
87 TV_TREE_LOOP
, /* tv_id */
88 PROP_cfg
, /* properties_required */
89 0, /* properties_provided */
90 0, /* properties_destroyed */
91 TODO_ggc_collect
, /* todo_flags_start */
92 TODO_dump_func
| TODO_verify_ssa
| TODO_ggc_collect
, /* todo_flags_finish */
96 /* Loop optimizer initialization. */
99 tree_ssa_loop_init (void)
101 current_loops
= tree_loop_optimizer_init (dump_file
);
105 /* Find the loops that are exited just through a single edge. */
106 mark_single_exit_loops (current_loops
);
108 scev_initialize (current_loops
);
111 struct tree_opt_pass pass_loop_init
=
113 "loopinit", /* name */
115 tree_ssa_loop_init
, /* execute */
118 0, /* static_pass_number */
119 TV_TREE_LOOP_INIT
, /* tv_id */
120 PROP_cfg
, /* properties_required */
121 0, /* properties_provided */
122 0, /* properties_destroyed */
123 0, /* todo_flags_start */
124 TODO_dump_func
, /* todo_flags_finish */
128 /* Loop invariant motion pass. */
131 tree_ssa_loop_im (void)
136 tree_ssa_lim (current_loops
);
140 gate_tree_ssa_loop_im (void)
142 return flag_tree_loop_im
!= 0;
145 struct tree_opt_pass pass_lim
=
148 gate_tree_ssa_loop_im
, /* gate */
149 tree_ssa_loop_im
, /* execute */
152 0, /* static_pass_number */
154 PROP_cfg
, /* properties_required */
155 0, /* properties_provided */
156 0, /* properties_destroyed */
157 0, /* todo_flags_start */
158 TODO_dump_func
, /* todo_flags_finish */
162 /* Loop unswitching pass. */
165 tree_ssa_loop_unswitch (void)
170 tree_ssa_unswitch_loops (current_loops
);
174 gate_tree_ssa_loop_unswitch (void)
176 return flag_unswitch_loops
!= 0;
179 struct tree_opt_pass pass_unswitch
=
181 "unswitch", /* name */
182 gate_tree_ssa_loop_unswitch
, /* gate */
183 tree_ssa_loop_unswitch
, /* execute */
186 0, /* static_pass_number */
187 TV_TREE_LOOP_UNSWITCH
, /* tv_id */
188 PROP_cfg
, /* properties_required */
189 0, /* properties_provided */
190 0, /* properties_destroyed */
191 0, /* todo_flags_start */
192 TODO_dump_func
, /* todo_flags_finish */
196 /* Loop autovectorization. */
199 tree_vectorize (void)
204 bitmap_clear (vars_to_rename
);
205 vectorize_loops (current_loops
);
209 gate_tree_vectorize (void)
211 return flag_tree_vectorize
!= 0;
214 struct tree_opt_pass pass_vectorize
=
217 gate_tree_vectorize
, /* gate */
218 tree_vectorize
, /* execute */
221 0, /* static_pass_number */
222 TV_TREE_VECTORIZATION
, /* tv_id */
223 PROP_cfg
| PROP_ssa
, /* properties_required */
224 0, /* properties_provided */
225 0, /* properties_destroyed */
226 0, /* todo_flags_start */
227 TODO_dump_func
, /* todo_flags_finish */
232 /* Loop nest optimizations. */
235 tree_linear_transform (void)
240 linear_transform_loops (current_loops
);
244 gate_tree_linear_transform (void)
246 return flag_tree_loop_linear
!= 0;
249 struct tree_opt_pass pass_linear_transform
=
252 gate_tree_linear_transform
, /* gate */
253 tree_linear_transform
, /* execute */
256 0, /* static_pass_number */
257 TV_TREE_LINEAR_TRANSFORM
, /* tv_id */
258 PROP_cfg
| PROP_ssa
, /* properties_required */
259 0, /* properties_provided */
260 0, /* properties_destroyed */
261 0, /* todo_flags_start */
262 TODO_dump_func
, /* todo_flags_finish */
266 /* Canonical induction variable creation pass. */
269 tree_ssa_loop_ivcanon (void)
274 canonicalize_induction_variables (current_loops
);
278 gate_tree_ssa_loop_ivcanon (void)
280 return flag_tree_loop_ivcanon
!= 0;
283 struct tree_opt_pass pass_iv_canon
=
285 "ivcanon", /* name */
286 gate_tree_ssa_loop_ivcanon
, /* gate */
287 tree_ssa_loop_ivcanon
, /* execute */
290 0, /* static_pass_number */
291 TV_TREE_LOOP_IVCANON
, /* tv_id */
292 PROP_cfg
| PROP_ssa
, /* properties_required */
293 0, /* properties_provided */
294 0, /* properties_destroyed */
295 0, /* todo_flags_start */
296 TODO_dump_func
, /* todo_flags_finish */
300 /* Record bounds on numbers of iterations of loops. */
303 tree_ssa_loop_bounds (void)
308 estimate_numbers_of_iterations (current_loops
);
312 struct tree_opt_pass pass_record_bounds
=
316 tree_ssa_loop_bounds
, /* execute */
319 0, /* static_pass_number */
320 TV_TREE_LOOP_BOUNDS
, /* tv_id */
321 PROP_cfg
| PROP_ssa
, /* properties_required */
322 0, /* properties_provided */
323 0, /* properties_destroyed */
324 0, /* todo_flags_start */
325 0, /* todo_flags_finish */
329 /* Complete unrolling of loops. */
332 tree_complete_unroll (void)
337 tree_unroll_loops_completely (current_loops
);
341 gate_tree_complete_unroll (void)
343 return flag_unroll_loops
!= 0;
346 struct tree_opt_pass pass_complete_unroll
=
348 "cunroll", /* name */
349 gate_tree_complete_unroll
, /* gate */
350 tree_complete_unroll
, /* execute */
353 0, /* static_pass_number */
354 TV_COMPLETE_UNROLL
, /* tv_id */
355 PROP_cfg
| PROP_ssa
, /* properties_required */
356 0, /* properties_provided */
357 0, /* properties_destroyed */
358 0, /* todo_flags_start */
359 TODO_dump_func
, /* todo_flags_finish */
363 /* Induction variable optimizations. */
366 tree_ssa_loop_ivopts (void)
371 tree_ssa_iv_optimize (current_loops
);
375 gate_tree_ssa_loop_ivopts (void)
377 return flag_ivopts
!= 0;
380 struct tree_opt_pass pass_iv_optimize
=
383 gate_tree_ssa_loop_ivopts
, /* gate */
384 tree_ssa_loop_ivopts
, /* execute */
387 0, /* static_pass_number */
388 TV_TREE_LOOP_IVOPTS
, /* tv_id */
389 PROP_cfg
| PROP_ssa
, /* properties_required */
390 0, /* properties_provided */
391 0, /* properties_destroyed */
392 0, /* todo_flags_start */
393 TODO_dump_func
, /* todo_flags_finish */
397 /* Loop optimizer finalization. */
400 tree_ssa_loop_done (void)
405 #ifdef ENABLE_CHECKING
406 verify_loop_closed_ssa ();
409 free_numbers_of_iterations_estimates (current_loops
);
411 loop_optimizer_finalize (current_loops
,
412 (dump_flags
& TDF_DETAILS
? dump_file
: NULL
));
413 current_loops
= NULL
;
416 struct tree_opt_pass pass_loop_done
=
418 "loopdone", /* name */
420 tree_ssa_loop_done
, /* execute */
423 0, /* static_pass_number */
424 TV_TREE_LOOP_FINI
, /* tv_id */
425 PROP_cfg
, /* properties_required */
426 0, /* properties_provided */
427 0, /* properties_destroyed */
428 0, /* todo_flags_start */
429 TODO_cleanup_cfg
| TODO_dump_func
, /* todo_flags_finish */