1 /* Loop optimizations over tree-ssa.
2 Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3, or (at your option) any
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
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/>. */
23 #include "coretypes.h"
27 #include "basic-block.h"
29 #include "tree-flow.h"
30 #include "tree-dump.h"
31 #include "tree-pass.h"
35 #include "tree-inline.h"
36 #include "tree-scalar-evolution.h"
37 #include "diagnostic-core.h"
38 #include "tree-vectorizer.h"
40 /* The loop superpass. */
45 return flag_tree_loop_optimize
!= 0;
48 struct gimple_opt_pass pass_tree_loop
=
53 gate_tree_loop
, /* gate */
57 0, /* static_pass_number */
58 TV_TREE_LOOP
, /* tv_id */
59 PROP_cfg
, /* properties_required */
60 0, /* properties_provided */
61 0, /* properties_destroyed */
62 TODO_ggc_collect
, /* todo_flags_start */
63 TODO_dump_func
| TODO_verify_ssa
| TODO_ggc_collect
/* todo_flags_finish */
67 /* Loop optimizer initialization. */
70 tree_ssa_loop_init (void)
72 loop_optimizer_init (LOOPS_NORMAL
73 | LOOPS_HAVE_RECORDED_EXITS
);
74 rewrite_into_loop_closed_ssa (NULL
, TODO_update_ssa
);
76 if (number_of_loops () <= 1)
83 struct gimple_opt_pass pass_tree_loop_init
=
87 "loopinit", /* name */
89 tree_ssa_loop_init
, /* execute */
92 0, /* static_pass_number */
93 TV_TREE_LOOP_INIT
, /* tv_id */
94 PROP_cfg
, /* properties_required */
95 0, /* properties_provided */
96 0, /* properties_destroyed */
97 0, /* todo_flags_start */
98 TODO_dump_func
/* todo_flags_finish */
102 /* Loop invariant motion pass. */
105 tree_ssa_loop_im (void)
107 if (number_of_loops () <= 1)
110 return tree_ssa_lim ();
114 gate_tree_ssa_loop_im (void)
116 return flag_tree_loop_im
!= 0;
119 struct gimple_opt_pass pass_lim
=
124 gate_tree_ssa_loop_im
, /* gate */
125 tree_ssa_loop_im
, /* execute */
128 0, /* static_pass_number */
130 PROP_cfg
, /* properties_required */
131 0, /* properties_provided */
132 0, /* properties_destroyed */
133 0, /* todo_flags_start */
134 TODO_dump_func
/* todo_flags_finish */
138 /* Loop unswitching pass. */
141 tree_ssa_loop_unswitch (void)
143 if (number_of_loops () <= 1)
146 return tree_ssa_unswitch_loops ();
150 gate_tree_ssa_loop_unswitch (void)
152 return flag_unswitch_loops
!= 0;
155 struct gimple_opt_pass pass_tree_unswitch
=
159 "unswitch", /* name */
160 gate_tree_ssa_loop_unswitch
, /* gate */
161 tree_ssa_loop_unswitch
, /* execute */
164 0, /* static_pass_number */
165 TV_TREE_LOOP_UNSWITCH
, /* tv_id */
166 PROP_cfg
, /* properties_required */
167 0, /* properties_provided */
168 0, /* properties_destroyed */
169 0, /* todo_flags_start */
170 TODO_ggc_collect
| TODO_dump_func
/* todo_flags_finish */
174 /* Predictive commoning. */
177 run_tree_predictive_commoning (void)
182 return tree_predictive_commoning ();
186 gate_tree_predictive_commoning (void)
188 return flag_predictive_commoning
!= 0;
191 struct gimple_opt_pass pass_predcom
=
196 gate_tree_predictive_commoning
, /* gate */
197 run_tree_predictive_commoning
, /* execute */
200 0, /* static_pass_number */
201 TV_PREDCOM
, /* tv_id */
202 PROP_cfg
, /* properties_required */
203 0, /* properties_provided */
204 0, /* properties_destroyed */
205 0, /* todo_flags_start */
207 | TODO_update_ssa_only_virtuals
/* todo_flags_finish */
211 /* Loop autovectorization. */
214 tree_vectorize (void)
216 if (number_of_loops () <= 1)
219 return vectorize_loops ();
223 gate_tree_vectorize (void)
225 return flag_tree_vectorize
;
228 struct gimple_opt_pass pass_vectorize
=
233 gate_tree_vectorize
, /* gate */
234 tree_vectorize
, /* execute */
237 0, /* static_pass_number */
238 TV_TREE_VECTORIZATION
, /* tv_id */
239 PROP_cfg
| PROP_ssa
, /* properties_required */
240 0, /* properties_provided */
241 0, /* properties_destroyed */
242 0, /* todo_flags_start */
243 TODO_dump_func
| TODO_update_ssa
244 | TODO_ggc_collect
/* todo_flags_finish */
248 /* GRAPHITE optimizations. */
251 graphite_transforms (void)
256 graphite_transform_loops ();
262 gate_graphite_transforms (void)
264 /* Enable -fgraphite pass if any one of the graphite optimization flags
267 || flag_loop_interchange
268 || flag_loop_strip_mine
269 || flag_graphite_identity
270 || flag_loop_parallelize_all
271 || flag_loop_flatten
)
274 return flag_graphite
!= 0;
277 struct gimple_opt_pass pass_graphite
=
281 "graphite0", /* name */
282 gate_graphite_transforms
, /* gate */
286 0, /* static_pass_number */
287 TV_GRAPHITE
, /* tv_id */
288 PROP_cfg
| PROP_ssa
, /* properties_required */
289 0, /* properties_provided */
290 0, /* properties_destroyed */
291 0, /* todo_flags_start */
292 0 /* todo_flags_finish */
296 struct gimple_opt_pass pass_graphite_transforms
=
300 "graphite", /* name */
301 gate_graphite_transforms
, /* gate */
302 graphite_transforms
, /* execute */
305 0, /* static_pass_number */
306 TV_GRAPHITE_TRANSFORMS
, /* tv_id */
307 PROP_cfg
| PROP_ssa
, /* properties_required */
308 0, /* properties_provided */
309 0, /* properties_destroyed */
310 0, /* todo_flags_start */
311 TODO_dump_func
/* todo_flags_finish */
315 /* Check the correctness of the data dependence analyzers. */
318 check_data_deps (void)
320 if (number_of_loops () <= 1)
323 tree_check_data_deps ();
328 gate_check_data_deps (void)
330 return flag_check_data_deps
!= 0;
333 struct gimple_opt_pass pass_check_data_deps
=
338 gate_check_data_deps
, /* gate */
339 check_data_deps
, /* execute */
342 0, /* static_pass_number */
343 TV_CHECK_DATA_DEPS
, /* tv_id */
344 PROP_cfg
| PROP_ssa
, /* properties_required */
345 0, /* properties_provided */
346 0, /* properties_destroyed */
347 0, /* todo_flags_start */
348 TODO_dump_func
/* todo_flags_finish */
352 /* Canonical induction variable creation pass. */
355 tree_ssa_loop_ivcanon (void)
357 if (number_of_loops () <= 1)
360 return canonicalize_induction_variables ();
364 gate_tree_ssa_loop_ivcanon (void)
366 return flag_tree_loop_ivcanon
!= 0;
369 struct gimple_opt_pass pass_iv_canon
=
373 "ivcanon", /* name */
374 gate_tree_ssa_loop_ivcanon
, /* gate */
375 tree_ssa_loop_ivcanon
, /* execute */
378 0, /* static_pass_number */
379 TV_TREE_LOOP_IVCANON
, /* tv_id */
380 PROP_cfg
| PROP_ssa
, /* properties_required */
381 0, /* properties_provided */
382 0, /* properties_destroyed */
383 0, /* todo_flags_start */
384 TODO_dump_func
/* todo_flags_finish */
388 /* Propagation of constants using scev. */
391 gate_scev_const_prop (void)
393 return flag_tree_scev_cprop
;
396 struct gimple_opt_pass pass_scev_cprop
=
401 gate_scev_const_prop
, /* gate */
402 scev_const_prop
, /* execute */
405 0, /* static_pass_number */
406 TV_SCEV_CONST
, /* tv_id */
407 PROP_cfg
| PROP_ssa
, /* properties_required */
408 0, /* properties_provided */
409 0, /* properties_destroyed */
410 0, /* todo_flags_start */
411 TODO_dump_func
| TODO_cleanup_cfg
412 | TODO_update_ssa_only_virtuals
413 /* todo_flags_finish */
417 /* Record bounds on numbers of iterations of loops. */
420 tree_ssa_loop_bounds (void)
422 if (number_of_loops () <= 1)
425 estimate_numbers_of_iterations (true);
430 struct gimple_opt_pass pass_record_bounds
=
434 "*record_bounds", /* name */
436 tree_ssa_loop_bounds
, /* execute */
439 0, /* static_pass_number */
440 TV_TREE_LOOP_BOUNDS
, /* tv_id */
441 PROP_cfg
| PROP_ssa
, /* properties_required */
442 0, /* properties_provided */
443 0, /* properties_destroyed */
444 0, /* todo_flags_start */
445 0 /* todo_flags_finish */
449 /* Complete unrolling of loops. */
452 tree_complete_unroll (void)
454 if (number_of_loops () <= 1)
457 return tree_unroll_loops_completely (flag_unroll_loops
459 || optimize
>= 3, true);
463 gate_tree_complete_unroll (void)
468 struct gimple_opt_pass pass_complete_unroll
=
472 "cunroll", /* name */
473 gate_tree_complete_unroll
, /* gate */
474 tree_complete_unroll
, /* execute */
477 0, /* static_pass_number */
478 TV_COMPLETE_UNROLL
, /* tv_id */
479 PROP_cfg
| PROP_ssa
, /* properties_required */
480 0, /* properties_provided */
481 0, /* properties_destroyed */
482 0, /* todo_flags_start */
484 | TODO_ggc_collect
/* todo_flags_finish */
488 /* Complete unrolling of inner loops. */
491 tree_complete_unroll_inner (void)
495 loop_optimizer_init (LOOPS_NORMAL
496 | LOOPS_HAVE_RECORDED_EXITS
);
497 if (number_of_loops () > 1)
500 ret
= tree_unroll_loops_completely (optimize
>= 3, false);
501 free_numbers_of_iterations_estimates ();
504 loop_optimizer_finalize ();
510 gate_tree_complete_unroll_inner (void)
512 return optimize
>= 2;
515 struct gimple_opt_pass pass_complete_unrolli
=
519 "cunrolli", /* name */
520 gate_tree_complete_unroll_inner
, /* gate */
521 tree_complete_unroll_inner
, /* execute */
524 0, /* static_pass_number */
525 TV_COMPLETE_UNROLL
, /* tv_id */
526 PROP_cfg
| PROP_ssa
, /* properties_required */
527 0, /* properties_provided */
528 0, /* properties_destroyed */
529 0, /* todo_flags_start */
532 | TODO_ggc_collect
/* todo_flags_finish */
536 /* Parallelization. */
539 gate_tree_parallelize_loops (void)
541 return flag_tree_parallelize_loops
> 1;
545 tree_parallelize_loops (void)
547 if (number_of_loops () <= 1)
550 if (parallelize_loops ())
551 return TODO_cleanup_cfg
| TODO_rebuild_alias
;
555 struct gimple_opt_pass pass_parallelize_loops
=
559 "parloops", /* name */
560 gate_tree_parallelize_loops
, /* gate */
561 tree_parallelize_loops
, /* execute */
564 0, /* static_pass_number */
565 TV_TREE_PARALLELIZE_LOOPS
, /* tv_id */
566 PROP_cfg
| PROP_ssa
, /* properties_required */
567 0, /* properties_provided */
568 0, /* properties_destroyed */
569 0, /* todo_flags_start */
570 TODO_dump_func
/* todo_flags_finish */
577 tree_ssa_loop_prefetch (void)
579 if (number_of_loops () <= 1)
582 return tree_ssa_prefetch_arrays ();
586 gate_tree_ssa_loop_prefetch (void)
588 return flag_prefetch_loop_arrays
> 0;
591 struct gimple_opt_pass pass_loop_prefetch
=
595 "aprefetch", /* name */
596 gate_tree_ssa_loop_prefetch
, /* gate */
597 tree_ssa_loop_prefetch
, /* execute */
600 0, /* static_pass_number */
601 TV_TREE_PREFETCH
, /* tv_id */
602 PROP_cfg
| PROP_ssa
, /* properties_required */
603 0, /* properties_provided */
604 0, /* properties_destroyed */
605 0, /* todo_flags_start */
606 TODO_dump_func
/* todo_flags_finish */
610 /* Induction variable optimizations. */
613 tree_ssa_loop_ivopts (void)
615 if (number_of_loops () <= 1)
618 tree_ssa_iv_optimize ();
623 gate_tree_ssa_loop_ivopts (void)
625 return flag_ivopts
!= 0;
628 struct gimple_opt_pass pass_iv_optimize
=
633 gate_tree_ssa_loop_ivopts
, /* gate */
634 tree_ssa_loop_ivopts
, /* execute */
637 0, /* static_pass_number */
638 TV_TREE_LOOP_IVOPTS
, /* tv_id */
639 PROP_cfg
| PROP_ssa
, /* properties_required */
640 0, /* properties_provided */
641 0, /* properties_destroyed */
642 0, /* todo_flags_start */
643 TODO_dump_func
| TODO_update_ssa
| TODO_ggc_collect
/* todo_flags_finish */
647 /* Loop optimizer finalization. */
650 tree_ssa_loop_done (void)
652 free_numbers_of_iterations_estimates ();
654 loop_optimizer_finalize ();
658 struct gimple_opt_pass pass_tree_loop_done
=
662 "loopdone", /* name */
664 tree_ssa_loop_done
, /* execute */
667 0, /* static_pass_number */
668 TV_TREE_LOOP_FINI
, /* tv_id */
669 PROP_cfg
, /* properties_required */
670 0, /* properties_provided */
671 0, /* properties_destroyed */
672 0, /* todo_flags_start */
675 | TODO_dump_func
/* todo_flags_finish */