1 /* Top-level control of tree optimizations.
2 Copyright 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
3 Contributed by Diego Novillo <dnovillo@redhat.com>
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 2, or (at your option)
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 COPYING. If not, write to
19 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
24 #include "coretypes.h"
29 #include "hard-reg-set.h"
30 #include "basic-block.h"
33 #include "diagnostic.h"
34 #include "basic-block.h"
36 #include "tree-flow.h"
37 #include "tree-dump.h"
40 #include "langhooks.h"
44 #include "tree-inline.h"
45 #include "tree-mudflap.h"
46 #include "tree-pass.h"
54 /* Gate: execute, or not, all of the non-trivial optimizations. */
57 gate_all_optimizations (void)
60 /* Don't bother doing anything if the program has errors. */
61 && !(errorcount
|| sorrycount
));
64 struct tree_opt_pass pass_all_optimizations
=
67 gate_all_optimizations
, /* gate */
71 0, /* static_pass_number */
73 0, /* properties_required */
74 0, /* properties_provided */
75 0, /* properties_destroyed */
76 0, /* todo_flags_start */
77 0, /* todo_flags_finish */
81 struct tree_opt_pass pass_early_local_passes
=
84 gate_all_optimizations
, /* gate */
88 0, /* static_pass_number */
90 0, /* properties_required */
91 0, /* properties_provided */
92 0, /* properties_destroyed */
93 0, /* todo_flags_start */
94 0, /* todo_flags_finish */
98 /* Pass: cleanup the CFG just before expanding trees to RTL.
99 This is just a round of label cleanups and case node grouping
100 because after the tree optimizers have run such cleanups may
104 execute_cleanup_cfg_pre_ipa (void)
110 struct tree_opt_pass pass_cleanup_cfg
=
112 "cleanup_cfg", /* name */
114 execute_cleanup_cfg_pre_ipa
, /* execute */
117 0, /* static_pass_number */
119 PROP_cfg
, /* properties_required */
120 0, /* properties_provided */
121 0, /* properties_destroyed */
122 0, /* todo_flags_start */
123 TODO_dump_func
, /* todo_flags_finish */
128 /* Pass: cleanup the CFG just before expanding trees to RTL.
129 This is just a round of label cleanups and case node grouping
130 because after the tree optimizers have run such cleanups may
134 execute_cleanup_cfg_post_optimizing (void)
136 fold_cond_expr_cond ();
138 cleanup_dead_labels ();
139 group_case_labels ();
143 struct tree_opt_pass pass_cleanup_cfg_post_optimizing
=
145 "final_cleanup", /* name */
147 execute_cleanup_cfg_post_optimizing
, /* execute */
150 0, /* static_pass_number */
152 PROP_cfg
, /* properties_required */
153 0, /* properties_provided */
154 0, /* properties_destroyed */
155 0, /* todo_flags_start */
156 TODO_dump_func
, /* todo_flags_finish */
160 /* Pass: do the actions required to finish with tree-ssa optimization
164 execute_free_datastructures (void)
166 /* ??? This isn't the right place for this. Worse, it got computed
167 more or less at random in various passes. */
168 free_dominance_info (CDI_DOMINATORS
);
169 free_dominance_info (CDI_POST_DOMINATORS
);
171 /* Remove the ssa structures. Do it here since this includes statement
172 annotations that need to be intact during disband_implicit_edges. */
177 struct tree_opt_pass pass_free_datastructures
=
181 execute_free_datastructures
, /* execute */
184 0, /* static_pass_number */
186 PROP_cfg
, /* properties_required */
187 0, /* properties_provided */
188 0, /* properties_destroyed */
189 0, /* todo_flags_start */
190 0, /* todo_flags_finish */
193 /* Pass: free cfg annotations. */
196 execute_free_cfg_annotations (void)
199 block_stmt_iterator bsi
;
201 /* Emit gotos for implicit jumps. */
202 disband_implicit_edges ();
204 /* Remove annotations from every tree in the function. */
206 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
208 tree stmt
= bsi_stmt (bsi
);
209 ggc_free (stmt
->common
.ann
);
210 stmt
->common
.ann
= NULL
;
213 /* And get rid of annotations we no longer need. */
214 delete_tree_cfg_annotations ();
216 #ifdef ENABLE_CHECKING
217 /* Once the statement annotations have been removed, we can verify
218 the integrity of statements in the EH throw table. */
219 verify_eh_throw_table_statements ();
224 struct tree_opt_pass pass_free_cfg_annotations
=
228 execute_free_cfg_annotations
, /* execute */
231 0, /* static_pass_number */
233 PROP_cfg
, /* properties_required */
234 0, /* properties_provided */
235 0, /* properties_destroyed */
236 0, /* todo_flags_start */
237 0, /* todo_flags_finish */
240 /* Pass: fixup_cfg - IPA passes or compilation of earlier functions might've
241 changed some properties - such as marked functions nothrow. Remove now
242 redundant edges and basic blocks. */
245 execute_fixup_cfg (void)
248 block_stmt_iterator bsi
;
253 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
255 tree stmt
= bsi_stmt (bsi
);
256 tree call
= get_call_expr_in (stmt
);
258 if (call
&& call_expr_flags (call
) & (ECF_CONST
| ECF_PURE
))
259 TREE_SIDE_EFFECTS (call
) = 0;
260 if (!tree_could_throw_p (stmt
) && lookup_stmt_eh_region (stmt
))
261 remove_stmt_from_eh_region (stmt
);
263 tree_purge_dead_eh_edges (bb
);
270 struct tree_opt_pass pass_fixup_cfg
=
272 "fixupcfg", /* name */
274 execute_fixup_cfg
, /* execute */
277 0, /* static_pass_number */
279 PROP_cfg
, /* properties_required */
280 0, /* properties_provided */
281 0, /* properties_destroyed */
282 0, /* todo_flags_start */
283 TODO_dump_func
, /* todo_flags_finish */
287 /* Do the actions required to initialize internal data structures used
288 in tree-ssa optimization passes. */
291 execute_init_datastructures (void)
293 /* Allocate hash tables, arrays and other structures. */
298 struct tree_opt_pass pass_init_datastructures
=
302 execute_init_datastructures
, /* execute */
305 0, /* static_pass_number */
307 PROP_cfg
, /* properties_required */
308 0, /* properties_provided */
309 0, /* properties_destroyed */
310 0, /* todo_flags_start */
311 0, /* todo_flags_finish */
316 tree_lowering_passes (tree fn
)
318 tree saved_current_function_decl
= current_function_decl
;
320 current_function_decl
= fn
;
321 push_cfun (DECL_STRUCT_FUNCTION (fn
));
322 tree_register_cfg_hooks ();
323 bitmap_obstack_initialize (NULL
);
324 execute_pass_list (all_lowering_passes
);
325 free_dominance_info (CDI_POST_DOMINATORS
);
327 current_function_decl
= saved_current_function_decl
;
328 bitmap_obstack_release (NULL
);
332 /* Update recursively all inlined_to pointers of functions
333 inlined into NODE to INLINED_TO. */
335 update_inlined_to_pointers (struct cgraph_node
*node
,
336 struct cgraph_node
*inlined_to
)
338 struct cgraph_edge
*e
;
339 for (e
= node
->callees
; e
; e
= e
->next_callee
)
341 if (e
->callee
->global
.inlined_to
)
343 e
->callee
->global
.inlined_to
= inlined_to
;
344 update_inlined_to_pointers (e
->callee
, inlined_to
);
350 /* For functions-as-trees languages, this performs all optimization and
351 compilation for FNDECL. */
354 tree_rest_of_compilation (tree fndecl
)
356 location_t saved_loc
;
357 struct cgraph_node
*node
;
359 timevar_push (TV_EXPAND
);
361 gcc_assert (!flag_unit_at_a_time
|| cgraph_global_info_ready
);
363 node
= cgraph_node (fndecl
);
365 /* We might need the body of this function so that we can expand
366 it inline somewhere else. */
367 if (cgraph_preserve_function_body_p (fndecl
))
368 save_inline_function_body (node
);
370 /* Initialize the RTL code for the function. */
371 current_function_decl
= fndecl
;
372 saved_loc
= input_location
;
373 input_location
= DECL_SOURCE_LOCATION (fndecl
);
374 init_function_start (fndecl
);
376 /* Even though we're inside a function body, we still don't want to
377 call expand_expr to calculate the size of a variable-sized array.
378 We haven't necessarily assigned RTL to all variables yet, so it's
379 not safe to try to expand expressions involving them. */
380 cfun
->x_dont_save_pending_sizes_p
= 1;
381 cfun
->after_inlining
= true;
383 if (flag_inline_trees
)
385 struct cgraph_edge
*e
;
386 for (e
= node
->callees
; e
; e
= e
->next_callee
)
387 if (!e
->inline_failed
|| warn_inline
)
391 timevar_push (TV_INTEGRATION
);
392 optimize_inline_calls (fndecl
);
393 timevar_pop (TV_INTEGRATION
);
396 /* In non-unit-at-a-time we must mark all referenced functions as needed.
398 if (!flag_unit_at_a_time
)
400 struct cgraph_edge
*e
;
401 for (e
= node
->callees
; e
; e
= e
->next_callee
)
402 if (e
->callee
->analyzed
)
403 cgraph_mark_needed_node (e
->callee
);
406 /* We are not going to maintain the cgraph edges up to date.
407 Kill it so it won't confuse us. */
408 cgraph_node_remove_callees (node
);
411 /* Initialize the default bitmap obstack. */
412 bitmap_obstack_initialize (NULL
);
413 bitmap_obstack_initialize (®_obstack
); /* FIXME, only at RTL generation*/
415 tree_register_cfg_hooks ();
416 /* Perform all tree transforms and optimizations. */
417 execute_pass_list (all_passes
);
419 bitmap_obstack_release (®_obstack
);
421 /* Release the default bitmap obstack. */
422 bitmap_obstack_release (NULL
);
424 DECL_SAVED_TREE (fndecl
) = NULL
;
427 /* If requested, warn about function definitions where the function will
428 return a value (usually of some struct or union type) which itself will
429 take up a lot of stack space. */
430 if (warn_larger_than
&& !DECL_EXTERNAL (fndecl
) && TREE_TYPE (fndecl
))
432 tree ret_type
= TREE_TYPE (TREE_TYPE (fndecl
));
434 if (ret_type
&& TYPE_SIZE_UNIT (ret_type
)
435 && TREE_CODE (TYPE_SIZE_UNIT (ret_type
)) == INTEGER_CST
436 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type
),
439 unsigned int size_as_int
440 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type
));
442 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type
), size_as_int
) == 0)
443 warning (0, "size of return value of %q+D is %u bytes",
444 fndecl
, size_as_int
);
446 warning (0, "size of return value of %q+D is larger than %wd bytes",
447 fndecl
, larger_than_size
);
451 if (!flag_inline_trees
)
453 DECL_SAVED_TREE (fndecl
) = NULL
;
454 if (DECL_STRUCT_FUNCTION (fndecl
) == 0
455 && !cgraph_node (fndecl
)->origin
)
457 /* Stop pointing to the local nodes about to be freed.
458 But DECL_INITIAL must remain nonzero so we know this
459 was an actual function definition.
460 For a nested function, this is done in c_pop_function_context.
461 If rest_of_compilation set this to 0, leave it 0. */
462 if (DECL_INITIAL (fndecl
) != 0)
463 DECL_INITIAL (fndecl
) = error_mark_node
;
467 input_location
= saved_loc
;
470 timevar_pop (TV_EXPAND
);