1 /* Top-level control of tree optimizations.
2 Copyright 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Diego Novillo <dnovillo@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
28 #include "basic-block.h"
31 #include "tree-flow.h"
32 #include "tree-dump.h"
35 #include "langhooks.h"
39 #include "tree-inline.h"
40 #include "tree-mudflap.h"
41 #include "tree-pass.h"
48 #include "regset.h" /* FIXME: For reg_obstack. */
50 /* Gate: execute, or not, all of the non-trivial optimizations. */
53 gate_all_optimizations (void)
56 /* Don't bother doing anything if the program has errors.
57 We have to pass down the queue if we already went into SSA */
58 && (!seen_error () || gimple_in_ssa_p (cfun
)));
61 struct gimple_opt_pass pass_all_optimizations
=
65 "*all_optimizations", /* name */
66 gate_all_optimizations
, /* gate */
70 0, /* static_pass_number */
72 0, /* properties_required */
73 0, /* properties_provided */
74 0, /* properties_destroyed */
75 0, /* todo_flags_start */
76 0 /* todo_flags_finish */
80 /* Gate: execute, or not, all of the non-trivial optimizations. */
83 gate_all_early_local_passes (void)
85 /* Don't bother doing anything if the program has errors. */
86 return (!seen_error () && !in_lto_p
);
89 struct simple_ipa_opt_pass pass_early_local_passes
=
93 "early_local_cleanups", /* name */
94 gate_all_early_local_passes
, /* gate */
98 0, /* static_pass_number */
100 0, /* properties_required */
101 0, /* properties_provided */
102 0, /* properties_destroyed */
103 0, /* todo_flags_start */
104 TODO_remove_functions
/* todo_flags_finish */
109 execute_early_local_optimizations (void)
111 /* First time we start with early optimization we need to advance
112 cgraph state so newly inserted functions are also early optimized.
113 However we execute early local optimizations for lately inserted
114 functions, in that case don't reset cgraph state back to IPA_SSA. */
115 if (cgraph_state
< CGRAPH_STATE_IPA_SSA
)
116 cgraph_state
= CGRAPH_STATE_IPA_SSA
;
120 /* Gate: execute, or not, all of the non-trivial optimizations. */
123 gate_all_early_optimizations (void)
125 return (optimize
>= 1
126 /* Don't bother doing anything if the program has errors. */
130 struct gimple_opt_pass pass_all_early_optimizations
=
134 "early_optimizations", /* name */
135 gate_all_early_optimizations
, /* gate */
136 execute_early_local_optimizations
, /* execute */
139 0, /* static_pass_number */
141 0, /* properties_required */
142 0, /* properties_provided */
143 0, /* properties_destroyed */
144 0, /* todo_flags_start */
145 0 /* todo_flags_finish */
149 /* Pass: cleanup the CFG just before expanding trees to RTL.
150 This is just a round of label cleanups and case node grouping
151 because after the tree optimizers have run such cleanups may
155 execute_cleanup_cfg_pre_ipa (void)
161 struct gimple_opt_pass pass_cleanup_cfg
=
165 "cleanup_cfg", /* name */
167 execute_cleanup_cfg_pre_ipa
, /* execute */
170 0, /* static_pass_number */
172 PROP_cfg
, /* properties_required */
173 0, /* properties_provided */
174 0, /* properties_destroyed */
175 0, /* todo_flags_start */
176 TODO_dump_func
/* todo_flags_finish */
181 /* Pass: cleanup the CFG just before expanding trees to RTL.
182 This is just a round of label cleanups and case node grouping
183 because after the tree optimizers have run such cleanups may
187 execute_cleanup_cfg_post_optimizing (void)
189 fold_cond_expr_cond ();
191 cleanup_dead_labels ();
192 group_case_labels ();
196 struct gimple_opt_pass pass_cleanup_cfg_post_optimizing
=
200 "optimized", /* name */
202 execute_cleanup_cfg_post_optimizing
, /* execute */
205 0, /* static_pass_number */
207 PROP_cfg
, /* properties_required */
208 0, /* properties_provided */
209 0, /* properties_destroyed */
210 0, /* todo_flags_start */
211 TODO_dump_func
/* todo_flags_finish */
212 | TODO_remove_unused_locals
216 /* Pass: do the actions required to finish with tree-ssa optimization
220 execute_free_datastructures (void)
222 free_dominance_info (CDI_DOMINATORS
);
223 free_dominance_info (CDI_POST_DOMINATORS
);
225 /* And get rid of annotations we no longer need. */
226 delete_tree_cfg_annotations ();
231 /* Pass: fixup_cfg. IPA passes, compilation of earlier functions or inlining
232 might have changed some properties, such as marked functions nothrow,
233 pure, const or noreturn.
234 Remove redundant edges and basic blocks, and create new ones if necessary.
236 This pass can't be executed as stand alone pass from pass manager, because
237 in between inlining and this fixup the verify_flow_info would fail. */
240 execute_fixup_cfg (void)
243 gimple_stmt_iterator gsi
;
244 int todo
= gimple_in_ssa_p (cfun
) ? TODO_verify_ssa
: 0;
245 gcov_type count_scale
;
249 if (ENTRY_BLOCK_PTR
->count
)
250 count_scale
= (cgraph_node (current_function_decl
)->count
* REG_BR_PROB_BASE
251 + ENTRY_BLOCK_PTR
->count
/ 2) / ENTRY_BLOCK_PTR
->count
;
253 count_scale
= REG_BR_PROB_BASE
;
255 ENTRY_BLOCK_PTR
->count
= cgraph_node (current_function_decl
)->count
;
256 EXIT_BLOCK_PTR
->count
= (EXIT_BLOCK_PTR
->count
* count_scale
257 + REG_BR_PROB_BASE
/ 2) / REG_BR_PROB_BASE
;
261 bb
->count
= (bb
->count
* count_scale
262 + REG_BR_PROB_BASE
/ 2) / REG_BR_PROB_BASE
;
263 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
265 gimple stmt
= gsi_stmt (gsi
);
266 tree decl
= is_gimple_call (stmt
)
267 ? gimple_call_fndecl (stmt
)
271 int flags
= gimple_call_flags (stmt
);
272 if (flags
& (ECF_CONST
| ECF_PURE
| ECF_LOOPING_CONST_OR_PURE
))
274 if (gimple_in_ssa_p (cfun
))
276 todo
|= TODO_update_ssa
| TODO_cleanup_cfg
;
277 mark_symbols_for_renaming (stmt
);
282 if (flags
& ECF_NORETURN
283 && fixup_noreturn_call (stmt
))
284 todo
|= TODO_cleanup_cfg
;
287 maybe_clean_eh_stmt (stmt
);
290 if (gimple_purge_dead_eh_edges (bb
))
291 todo
|= TODO_cleanup_cfg
;
292 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
293 e
->count
= (e
->count
* count_scale
294 + REG_BR_PROB_BASE
/ 2) / REG_BR_PROB_BASE
;
296 if (count_scale
!= REG_BR_PROB_BASE
)
297 compute_function_frequency ();
299 /* We just processed all calls. */
302 VEC_free (gimple
, gc
, MODIFIED_NORETURN_CALLS (cfun
));
303 MODIFIED_NORETURN_CALLS (cfun
) = NULL
;
306 /* Dump a textual representation of the flowgraph. */
308 gimple_dump_cfg (dump_file
, dump_flags
);
313 struct gimple_opt_pass pass_fixup_cfg
=
317 "*free_cfg_annotations", /* name */
319 execute_fixup_cfg
, /* execute */
322 0, /* static_pass_number */
324 PROP_cfg
, /* properties_required */
325 0, /* properties_provided */
326 0, /* properties_destroyed */
327 0, /* todo_flags_start */
328 0 /* todo_flags_finish */
332 /* Do the actions required to initialize internal data structures used
333 in tree-ssa optimization passes. */
336 execute_init_datastructures (void)
338 /* Allocate hash tables, arrays and other structures. */
339 init_tree_ssa (cfun
);
343 struct gimple_opt_pass pass_init_datastructures
=
347 "*init_datastructures", /* name */
349 execute_init_datastructures
, /* execute */
352 0, /* static_pass_number */
354 PROP_cfg
, /* properties_required */
355 0, /* properties_provided */
356 0, /* properties_destroyed */
357 0, /* todo_flags_start */
358 0 /* todo_flags_finish */
363 tree_lowering_passes (tree fn
)
365 tree saved_current_function_decl
= current_function_decl
;
367 current_function_decl
= fn
;
368 push_cfun (DECL_STRUCT_FUNCTION (fn
));
369 gimple_register_cfg_hooks ();
370 bitmap_obstack_initialize (NULL
);
371 execute_pass_list (all_lowering_passes
);
372 if (optimize
&& cgraph_global_info_ready
)
373 execute_pass_list (pass_early_local_passes
.pass
.sub
);
374 free_dominance_info (CDI_POST_DOMINATORS
);
375 free_dominance_info (CDI_DOMINATORS
);
377 current_function_decl
= saved_current_function_decl
;
378 bitmap_obstack_release (NULL
);
382 /* For functions-as-trees languages, this performs all optimization and
383 compilation for FNDECL. */
386 tree_rest_of_compilation (tree fndecl
)
388 location_t saved_loc
;
390 timevar_push (TV_EXPAND
);
392 gcc_assert (cgraph_global_info_ready
);
394 /* Initialize the default bitmap obstack. */
395 bitmap_obstack_initialize (NULL
);
397 /* Initialize the RTL code for the function. */
398 current_function_decl
= fndecl
;
399 saved_loc
= input_location
;
400 input_location
= DECL_SOURCE_LOCATION (fndecl
);
401 init_function_start (fndecl
);
403 /* Even though we're inside a function body, we still don't want to
404 call expand_expr to calculate the size of a variable-sized array.
405 We haven't necessarily assigned RTL to all variables yet, so it's
406 not safe to try to expand expressions involving them. */
407 cfun
->dont_save_pending_sizes_p
= 1;
409 gimple_register_cfg_hooks ();
411 bitmap_obstack_initialize (®_obstack
); /* FIXME, only at RTL generation*/
413 execute_all_ipa_transforms ();
415 /* Perform all tree transforms and optimizations. */
417 /* Signal the start of passes. */
418 invoke_plugin_callbacks (PLUGIN_ALL_PASSES_START
, NULL
);
420 execute_pass_list (all_passes
);
422 /* Signal the end of passes. */
423 invoke_plugin_callbacks (PLUGIN_ALL_PASSES_END
, NULL
);
425 bitmap_obstack_release (®_obstack
);
427 /* Release the default bitmap obstack. */
428 bitmap_obstack_release (NULL
);
432 /* If requested, warn about function definitions where the function will
433 return a value (usually of some struct or union type) which itself will
434 take up a lot of stack space. */
435 if (warn_larger_than
&& !DECL_EXTERNAL (fndecl
) && TREE_TYPE (fndecl
))
437 tree ret_type
= TREE_TYPE (TREE_TYPE (fndecl
));
439 if (ret_type
&& TYPE_SIZE_UNIT (ret_type
)
440 && TREE_CODE (TYPE_SIZE_UNIT (ret_type
)) == INTEGER_CST
441 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type
),
444 unsigned int size_as_int
445 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type
));
447 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type
), size_as_int
) == 0)
448 warning (OPT_Wlarger_than_eq
, "size of return value of %q+D is %u bytes",
449 fndecl
, size_as_int
);
451 warning (OPT_Wlarger_than_eq
, "size of return value of %q+D is larger than %wd bytes",
452 fndecl
, larger_than_size
);
456 gimple_set_body (fndecl
, NULL
);
457 if (DECL_STRUCT_FUNCTION (fndecl
) == 0
458 && !cgraph_node (fndecl
)->origin
)
460 /* Stop pointing to the local nodes about to be freed.
461 But DECL_INITIAL must remain nonzero so we know this
462 was an actual function definition.
463 For a nested function, this is done in c_pop_function_context.
464 If rest_of_compilation set this to 0, leave it 0. */
465 if (DECL_INITIAL (fndecl
) != 0)
466 DECL_INITIAL (fndecl
) = error_mark_node
;
469 input_location
= saved_loc
;
472 timevar_pop (TV_EXPAND
);