1 /* Loop optimizer initialization routines and RTL loop optimization passes.
2 Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 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, 51 Franklin Street, Fifth Floor, Boston, MA
23 #include "coretypes.h"
26 #include "hard-reg-set.h"
28 #include "basic-block.h"
30 #include "cfglayout.h"
31 #include "tree-pass.h"
36 /* Initialize loop optimizer. This is used by the tree and RTL loop
37 optimizers. FLAGS specify what properties to compute and/or ensure for
41 loop_optimizer_init (unsigned flags
)
43 struct loops
*loops
= XCNEW (struct loops
);
46 static bool first_time
= true;
54 /* Avoid annoying special cases of edges going to exit
57 for (ei
= ei_start (EXIT_BLOCK_PTR
->preds
); (e
= ei_safe_edge (ei
)); )
58 if ((e
->flags
& EDGE_FALLTHRU
) && !single_succ_p (e
->src
))
65 if (flow_loops_find (loops
) <= 1)
68 flow_loops_free (loops
);
74 /* Not going to update these. */
75 free (loops
->cfg
.rc_order
);
76 loops
->cfg
.rc_order
= NULL
;
77 free (loops
->cfg
.dfs_order
);
78 loops
->cfg
.dfs_order
= NULL
;
80 /* Create pre-headers. */
81 if (flags
& LOOPS_HAVE_PREHEADERS
)
82 create_preheaders (loops
, CP_SIMPLE_PREHEADERS
);
84 /* Force all latches to have only single successor. */
85 if (flags
& LOOPS_HAVE_SIMPLE_LATCHES
)
86 force_single_succ_latches (loops
);
88 /* Mark irreducible loops. */
89 if (flags
& LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS
)
90 mark_irreducible_loops (loops
);
92 if (flags
& LOOPS_HAVE_MARKED_SINGLE_EXITS
)
93 mark_single_exit_loops (loops
);
96 flow_loops_dump (loops
, dump_file
, NULL
, 1);
98 #ifdef ENABLE_CHECKING
99 verify_dominators (CDI_DOMINATORS
);
100 verify_loop_structure (loops
);
106 /* Finalize loop optimizer. */
108 loop_optimizer_finalize (struct loops
*loops
)
115 for (i
= 1; i
< loops
->num
; i
++)
116 if (loops
->parray
[i
])
117 free_simple_loop_desc (loops
->parray
[i
]);
120 flow_loops_free (loops
);
124 #ifdef ENABLE_CHECKING
130 /* Gate for the RTL loop superpass. The actual passes are subpasses.
131 See passes.c for more on that. */
134 gate_handle_loop2 (void)
137 && (flag_move_loop_invariants
138 || flag_unswitch_loops
141 #ifdef HAVE_doloop_end
142 || (flag_branch_on_count_reg
&& HAVE_doloop_end
)
147 struct tree_opt_pass pass_loop2
=
150 gate_handle_loop2
, /* gate */
154 0, /* static_pass_number */
156 0, /* properties_required */
157 0, /* properties_provided */
158 0, /* properties_destroyed */
159 0, /* todo_flags_start */
161 TODO_ggc_collect
, /* todo_flags_finish */
166 /* Initialization of the RTL loop passes. */
171 dump_flow_info (dump_file
, dump_flags
);
173 /* Initialize structures for layout changes. */
174 cfg_layout_initialize (0);
176 current_loops
= loop_optimizer_init (LOOPS_NORMAL
);
180 struct tree_opt_pass pass_rtl_loop_init
=
182 "loop2_init", /* name */
184 rtl_loop_init
, /* execute */
187 0, /* static_pass_number */
189 0, /* properties_required */
190 0, /* properties_provided */
191 0, /* properties_destroyed */
192 0, /* todo_flags_start */
193 TODO_dump_func
, /* todo_flags_finish */
198 /* Finalization of the RTL loop passes. */
205 loop_optimizer_finalize (current_loops
);
207 free_dominance_info (CDI_DOMINATORS
);
209 /* Finalize layout changes. */
211 if (bb
->next_bb
!= EXIT_BLOCK_PTR
)
212 bb
->aux
= bb
->next_bb
;
213 cfg_layout_finalize ();
215 cleanup_cfg (CLEANUP_EXPENSIVE
);
216 delete_trivially_dead_insns (get_insns (), max_reg_num ());
217 reg_scan (get_insns (), max_reg_num ());
219 dump_flow_info (dump_file
, dump_flags
);
221 current_loops
= NULL
;
225 struct tree_opt_pass pass_rtl_loop_done
=
227 "loop2_done", /* name */
229 rtl_loop_done
, /* execute */
232 0, /* static_pass_number */
234 0, /* properties_required */
235 0, /* properties_provided */
236 0, /* properties_destroyed */
237 0, /* todo_flags_start */
238 TODO_dump_func
, /* todo_flags_finish */
243 /* Loop invariant code motion. */
245 gate_rtl_move_loop_invariants (void)
247 return flag_move_loop_invariants
;
251 rtl_move_loop_invariants (void)
254 move_loop_invariants (current_loops
);
258 struct tree_opt_pass pass_rtl_move_loop_invariants
=
260 "loop2_invariant", /* name */
261 gate_rtl_move_loop_invariants
, /* gate */
262 rtl_move_loop_invariants
, /* execute */
265 0, /* static_pass_number */
267 0, /* properties_required */
268 0, /* properties_provided */
269 0, /* properties_destroyed */
270 0, /* todo_flags_start */
271 TODO_dump_func
, /* todo_flags_finish */
276 /* Loop unswitching for RTL. */
278 gate_rtl_unswitch (void)
280 return flag_unswitch_loops
;
287 unswitch_loops (current_loops
);
291 struct tree_opt_pass pass_rtl_unswitch
=
293 "loop2_unswitch", /* name */
294 gate_rtl_unswitch
, /* gate */
295 rtl_unswitch
, /* execute */
298 0, /* static_pass_number */
300 0, /* properties_required */
301 0, /* properties_provided */
302 0, /* properties_destroyed */
303 0, /* todo_flags_start */
304 TODO_dump_func
, /* todo_flags_finish */
309 /* Loop unswitching for RTL. */
311 gate_rtl_unroll_and_peel_loops (void)
313 return (flag_peel_loops
|| flag_unroll_loops
|| flag_unroll_all_loops
);
317 rtl_unroll_and_peel_loops (void)
325 if (flag_unroll_loops
)
327 if (flag_unroll_all_loops
)
328 flags
|= UAP_UNROLL_ALL
;
330 unroll_and_peel_loops (current_loops
, flags
);
335 struct tree_opt_pass pass_rtl_unroll_and_peel_loops
=
337 "loop2_unroll", /* name */
338 gate_rtl_unroll_and_peel_loops
, /* gate */
339 rtl_unroll_and_peel_loops
, /* execute */
342 0, /* static_pass_number */
344 0, /* properties_required */
345 0, /* properties_provided */
346 0, /* properties_destroyed */
347 0, /* todo_flags_start */
348 TODO_dump_func
, /* todo_flags_finish */
353 /* The doloop optimization. */
355 gate_rtl_doloop (void)
357 #ifdef HAVE_doloop_end
358 return (flag_branch_on_count_reg
&& HAVE_doloop_end
);
367 #ifdef HAVE_doloop_end
369 doloop_optimize_loops (current_loops
);
374 struct tree_opt_pass pass_rtl_doloop
=
376 "loop2_doloop", /* name */
377 gate_rtl_doloop
, /* gate */
378 rtl_doloop
, /* execute */
381 0, /* static_pass_number */
383 0, /* properties_required */
384 0, /* properties_provided */
385 0, /* properties_destroyed */
386 0, /* todo_flags_start */
387 TODO_dump_func
, /* todo_flags_finish */