]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/loop-init.c
re PR testsuite/27476 (ACATS: Ada testsuite Bourne shell compatibility problem on...
[thirdparty/gcc.git] / gcc / loop-init.c
CommitLineData
9fa26457 1/* Loop optimizer initialization routines and RTL loop optimization passes.
613c5cd0 2 Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
617b465c
ZD
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
8Software Foundation; either version 2, or (at your option) any later
9version.
10
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
15
16You should have received a copy of the GNU General Public License
17along with GCC; see the file COPYING. If not, write to the Free
366ccddb
KC
18Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
1902110-1301, USA. */
617b465c
ZD
20
21#include "config.h"
22#include "system.h"
23#include "coretypes.h"
24#include "tm.h"
25#include "rtl.h"
26#include "hard-reg-set.h"
7932a3db 27#include "obstack.h"
617b465c
ZD
28#include "basic-block.h"
29#include "cfgloop.h"
30#include "cfglayout.h"
ef330312
PB
31#include "tree-pass.h"
32#include "timevar.h"
33#include "flags.h"
617b465c 34
9fa26457
SB
35\f
36/* Initialize loop optimizer. This is used by the tree and RTL loop
d78f3f78
ZD
37 optimizers. FLAGS specify what properties to compute and/or ensure for
38 loops. */
617b465c
ZD
39
40struct loops *
10d22567 41loop_optimizer_init (unsigned flags)
617b465c 42{
5ed6ace5 43 struct loops *loops = XCNEW (struct loops);
617b465c 44 edge e;
628f6a4e 45 edge_iterator ei;
5e962776
ZD
46 static bool first_time = true;
47
48 if (first_time)
49 {
50 first_time = false;
51 init_set_costs ();
52 }
617b465c
ZD
53
54 /* Avoid annoying special cases of edges going to exit
55 block. */
628f6a4e
BE
56
57 for (ei = ei_start (EXIT_BLOCK_PTR->preds); (e = ei_safe_edge (ei)); )
c5cbcccf 58 if ((e->flags & EDGE_FALLTHRU) && !single_succ_p (e->src))
617b465c 59 split_edge (e);
628f6a4e
BE
60 else
61 ei_next (&ei);
617b465c
ZD
62
63 /* Find the loops. */
64
70388d94 65 if (flow_loops_find (loops) <= 1)
617b465c
ZD
66 {
67 /* No loops. */
68 flow_loops_free (loops);
69 free (loops);
d47cc544 70
617b465c
ZD
71 return NULL;
72 }
73
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;
79
617b465c 80 /* Create pre-headers. */
d78f3f78
ZD
81 if (flags & LOOPS_HAVE_PREHEADERS)
82 create_preheaders (loops, CP_SIMPLE_PREHEADERS);
617b465c
ZD
83
84 /* Force all latches to have only single successor. */
d78f3f78
ZD
85 if (flags & LOOPS_HAVE_SIMPLE_LATCHES)
86 force_single_succ_latches (loops);
617b465c
ZD
87
88 /* Mark irreducible loops. */
d78f3f78
ZD
89 if (flags & LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS)
90 mark_irreducible_loops (loops);
91
92 if (flags & LOOPS_HAVE_MARKED_SINGLE_EXITS)
93 mark_single_exit_loops (loops);
617b465c
ZD
94
95 /* Dump loops. */
10d22567 96 flow_loops_dump (loops, dump_file, NULL, 1);
617b465c
ZD
97
98#ifdef ENABLE_CHECKING
d47cc544 99 verify_dominators (CDI_DOMINATORS);
617b465c
ZD
100 verify_loop_structure (loops);
101#endif
102
103 return loops;
104}
105
106/* Finalize loop optimizer. */
107void
10d22567 108loop_optimizer_finalize (struct loops *loops)
617b465c 109{
50654f6c 110 unsigned i;
617b465c 111
50654f6c
ZD
112 if (!loops)
113 return;
114
115 for (i = 1; i < loops->num; i++)
116 if (loops->parray[i])
117 free_simple_loop_desc (loops->parray[i]);
617b465c 118
617b465c
ZD
119 /* Clean up. */
120 flow_loops_free (loops);
121 free (loops);
0c20a65f 122
617b465c
ZD
123 /* Checking. */
124#ifdef ENABLE_CHECKING
125 verify_flow_info ();
126#endif
127}
9fa26457 128
ef330312 129\f
9fa26457
SB
130/* Gate for the RTL loop superpass. The actual passes are subpasses.
131 See passes.c for more on that. */
132
ef330312
PB
133static bool
134gate_handle_loop2 (void)
135{
1f922264 136 return (optimize > 0
ef330312
PB
137 && (flag_move_loop_invariants
138 || flag_unswitch_loops
139 || flag_peel_loops
140 || flag_unroll_loops
1f922264
ZD
141#ifdef HAVE_doloop_end
142 || (flag_branch_on_count_reg && HAVE_doloop_end)
143#endif
144 ));
ef330312
PB
145}
146
9fa26457 147struct tree_opt_pass pass_loop2 =
ef330312 148{
9fa26457
SB
149 "loop2", /* name */
150 gate_handle_loop2, /* gate */
151 NULL, /* execute */
152 NULL, /* sub */
153 NULL, /* next */
154 0, /* static_pass_number */
155 TV_LOOP, /* tv_id */
156 0, /* properties_required */
157 0, /* properties_provided */
158 0, /* properties_destroyed */
159 0, /* todo_flags_start */
160 TODO_dump_func |
161 TODO_ggc_collect, /* todo_flags_finish */
162 'L' /* letter */
163};
ef330312 164
9fa26457
SB
165\f
166/* Initialization of the RTL loop passes. */
c2924966 167static unsigned int
9fa26457
SB
168rtl_loop_init (void)
169{
ef330312 170 if (dump_file)
5b4fdb20 171 dump_flow_info (dump_file, dump_flags);
ef330312
PB
172
173 /* Initialize structures for layout changes. */
174 cfg_layout_initialize (0);
175
10d22567 176 current_loops = loop_optimizer_init (LOOPS_NORMAL);
c2924966 177 return 0;
9fa26457 178}
ef330312 179
9fa26457
SB
180struct tree_opt_pass pass_rtl_loop_init =
181{
defb77dc 182 "loop2_init", /* name */
9fa26457
SB
183 NULL, /* gate */
184 rtl_loop_init, /* execute */
185 NULL, /* sub */
186 NULL, /* next */
187 0, /* static_pass_number */
188 TV_LOOP, /* tv_id */
189 0, /* properties_required */
190 0, /* properties_provided */
191 0, /* properties_destroyed */
192 0, /* todo_flags_start */
193 TODO_dump_func, /* todo_flags_finish */
194 'L' /* letter */
195};
ef330312 196
9fa26457
SB
197\f
198/* Finalization of the RTL loop passes. */
c2924966 199static unsigned int
9fa26457
SB
200rtl_loop_done (void)
201{
202 basic_block bb;
ef330312 203
9fa26457 204 if (current_loops)
10d22567 205 loop_optimizer_finalize (current_loops);
ef330312
PB
206
207 free_dominance_info (CDI_DOMINATORS);
208
209 /* Finalize layout changes. */
210 FOR_EACH_BB (bb)
211 if (bb->next_bb != EXIT_BLOCK_PTR)
212 bb->aux = bb->next_bb;
213 cfg_layout_finalize ();
214
215 cleanup_cfg (CLEANUP_EXPENSIVE);
216 delete_trivially_dead_insns (get_insns (), max_reg_num ());
217 reg_scan (get_insns (), max_reg_num ());
218 if (dump_file)
5b4fdb20 219 dump_flow_info (dump_file, dump_flags);
9fa26457
SB
220
221 current_loops = NULL;
c2924966 222 return 0;
ef330312
PB
223}
224
9fa26457 225struct tree_opt_pass pass_rtl_loop_done =
ef330312 226{
defb77dc 227 "loop2_done", /* name */
9fa26457
SB
228 NULL, /* gate */
229 rtl_loop_done, /* execute */
ef330312
PB
230 NULL, /* sub */
231 NULL, /* next */
232 0, /* static_pass_number */
233 TV_LOOP, /* tv_id */
234 0, /* properties_required */
235 0, /* properties_provided */
236 0, /* properties_destroyed */
237 0, /* todo_flags_start */
9fa26457
SB
238 TODO_dump_func, /* todo_flags_finish */
239 'L' /* letter */
240};
241
242\f
243/* Loop invariant code motion. */
defb77dc
PB
244static bool
245gate_rtl_move_loop_invariants (void)
246{
247 return flag_move_loop_invariants;
248}
249
c2924966 250static unsigned int
9fa26457
SB
251rtl_move_loop_invariants (void)
252{
defb77dc 253 if (current_loops)
9fa26457 254 move_loop_invariants (current_loops);
c2924966 255 return 0;
9fa26457
SB
256}
257
258struct tree_opt_pass pass_rtl_move_loop_invariants =
259{
defb77dc
PB
260 "loop2_invariant", /* name */
261 gate_rtl_move_loop_invariants, /* gate */
9fa26457
SB
262 rtl_move_loop_invariants, /* execute */
263 NULL, /* sub */
264 NULL, /* next */
265 0, /* static_pass_number */
266 TV_LOOP, /* tv_id */
267 0, /* properties_required */
268 0, /* properties_provided */
269 0, /* properties_destroyed */
270 0, /* todo_flags_start */
271 TODO_dump_func, /* todo_flags_finish */
272 'L' /* letter */
273};
274
275\f
276/* Loop unswitching for RTL. */
defb77dc
PB
277static bool
278gate_rtl_unswitch (void)
279{
280 return flag_unswitch_loops;
281}
282
c2924966 283static unsigned int
9fa26457
SB
284rtl_unswitch (void)
285{
defb77dc 286 if (current_loops)
9fa26457 287 unswitch_loops (current_loops);
c2924966 288 return 0;
9fa26457
SB
289}
290
291struct tree_opt_pass pass_rtl_unswitch =
292{
defb77dc
PB
293 "loop2_unswitch", /* name */
294 gate_rtl_unswitch, /* gate */
9fa26457
SB
295 rtl_unswitch, /* execute */
296 NULL, /* sub */
297 NULL, /* next */
298 0, /* static_pass_number */
299 TV_LOOP, /* tv_id */
300 0, /* properties_required */
301 0, /* properties_provided */
302 0, /* properties_destroyed */
303 0, /* todo_flags_start */
304 TODO_dump_func, /* todo_flags_finish */
305 'L' /* letter */
306};
307
308\f
309/* Loop unswitching for RTL. */
defb77dc
PB
310static bool
311gate_rtl_unroll_and_peel_loops (void)
312{
313 return (flag_peel_loops || flag_unroll_loops || flag_unroll_all_loops);
314}
315
c2924966 316static unsigned int
9fa26457
SB
317rtl_unroll_and_peel_loops (void)
318{
defb77dc 319 if (current_loops)
9fa26457
SB
320 {
321 int flags = 0;
322
323 if (flag_peel_loops)
324 flags |= UAP_PEEL;
325 if (flag_unroll_loops)
326 flags |= UAP_UNROLL;
327 if (flag_unroll_all_loops)
328 flags |= UAP_UNROLL_ALL;
329
330 unroll_and_peel_loops (current_loops, flags);
331 }
c2924966 332 return 0;
9fa26457
SB
333}
334
335struct tree_opt_pass pass_rtl_unroll_and_peel_loops =
336{
defb77dc
PB
337 "loop2_unroll", /* name */
338 gate_rtl_unroll_and_peel_loops, /* gate */
9fa26457
SB
339 rtl_unroll_and_peel_loops, /* execute */
340 NULL, /* sub */
341 NULL, /* next */
342 0, /* static_pass_number */
343 TV_LOOP, /* tv_id */
344 0, /* properties_required */
345 0, /* properties_provided */
346 0, /* properties_destroyed */
347 0, /* todo_flags_start */
348 TODO_dump_func, /* todo_flags_finish */
349 'L' /* letter */
350};
351
352\f
353/* The doloop optimization. */
defb77dc
PB
354static bool
355gate_rtl_doloop (void)
356{
357#ifdef HAVE_doloop_end
358 return (flag_branch_on_count_reg && HAVE_doloop_end);
359#else
360 return 0;
361#endif
362}
363
c2924966 364static unsigned int
9fa26457
SB
365rtl_doloop (void)
366{
367#ifdef HAVE_doloop_end
defb77dc 368 if (current_loops)
9fa26457
SB
369 doloop_optimize_loops (current_loops);
370#endif
c2924966 371 return 0;
9fa26457
SB
372}
373
374struct tree_opt_pass pass_rtl_doloop =
375{
defb77dc
PB
376 "loop2_doloop", /* name */
377 gate_rtl_doloop, /* gate */
9fa26457
SB
378 rtl_doloop, /* execute */
379 NULL, /* sub */
380 NULL, /* next */
381 0, /* static_pass_number */
382 TV_LOOP, /* tv_id */
383 0, /* properties_required */
384 0, /* properties_provided */
385 0, /* properties_destroyed */
386 0, /* todo_flags_start */
387 TODO_dump_func, /* todo_flags_finish */
ef330312
PB
388 'L' /* letter */
389};
390