diff options
author | Jan Hubicka <jh@suse.cz> | 2011-05-07 01:00:49 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2011-05-06 23:00:49 +0000 |
commit | c47d00347d7e74193dda2e9a3f55f52485e7eeeb (patch) | |
tree | 00b435c7373736adc2b2930493aa86fc6e9c0b31 /gcc/ipa-inline-analysis.c | |
parent | e68dde1f40536d6bb7e9d65de04bacd759bb1ee9 (diff) | |
download | gcc-c47d00347d7e74193dda2e9a3f55f52485e7eeeb.zip gcc-c47d00347d7e74193dda2e9a3f55f52485e7eeeb.tar.gz gcc-c47d00347d7e74193dda2e9a3f55f52485e7eeeb.tar.bz2 |
cgraph.c (cgraph_add_thunk): Create real function node instead of alias node...
* cgraph.c (cgraph_add_thunk): Create real function node instead
of alias node; finalize it and mark needed/reachale; arrange visibility
to be right and add it into the corresponding same comdat group list.
(dump_cgraph_node): Dump thunks.
* cgraph.h (cgraph_first_defined_function, cgraph_next_defined_function,
cgraph_function_with_gimple_body_p, cgraph_first_function_with_gimple_body,
cgraph_next_function_with_gimple_body): New functions.
(FOR_EACH_FUNCTION_WITH_GIMPLE_BODY, FOR_EACH_DEFINED_FUNCTION):
New macros.
* ipa-cp.c (ipcp_need_redirect_p): Thunks can't be redirected.
(ipcp_generate_summary): Use FOR_EACH_FUNCTION_WITH_GIMPLE_BODY.
* cgraphunit.c (cgraph_finalize_function): Only look into possible
devirtualization when optimizing.
(verify_cgraph_node): Verify thunks.
(cgraph_analyze_function): Analyze thunks.
(cgraph_mark_functions_to_output): Output thunks only in combination
with function they are assigned to.
(assemble_thunk): Turn thunk into non-thunk; don't try to turn
alias into normal node.
(assemble_thunks): New functoin.
(cgraph_expand_function): Use it.
* lto-cgraph.c (lto_output_node): Stream thunks.
(input_overwrite_node): Stream in thunks.
* ipa-pure-const.c (analyze_function): Thunks do nothing interesting.
* lto-streamer-out.c (lto_output): Do not try to output thunk's body.
* ipa-inline.c (inline_small_functions): Use FOR_EACH_DEFINED_FUNCTION.
* ipa-inline-analysis.c (compute_inline_parameters): "Analyze" thunks.
(inline_analyze_function): Do not care about thunk jump functions.
(inline_generate_summary):Use FOR_EACH_DEFINED_FUNCTION.
* ipa-prop.c (ipa_prop_write_jump_functions): Use cgraph_function_with_gimple_body_p.
* passes.c (do_per_function_toporder): Use cgraph_function_with_gimple_body_p.
(execute_one_pass);Use FOR_EACH_FUNCTION_WITH_GIMPLE_BODY.
(ipa_write_summaries): Use cgraph_function_with_gimple_body_p.
(function_called_by_processed_nodes_p): Likewise.
* lto.c (lto_materialize_function): Use cgraph_function_with_gimple_body_p.
(add_cgraph_node_to_partition): Do not re-add items to partition; handle thunks.
(add_varpool_node_to_partition): Do not re-add items to partition.
From-SVN: r173517
Diffstat (limited to 'gcc/ipa-inline-analysis.c')
-rw-r--r-- | gcc/ipa-inline-analysis.c | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/gcc/ipa-inline-analysis.c b/gcc/ipa-inline-analysis.c index 50ae74d..9021fa2 100644 --- a/gcc/ipa-inline-analysis.c +++ b/gcc/ipa-inline-analysis.c @@ -1443,6 +1443,23 @@ compute_inline_parameters (struct cgraph_node *node, bool early) info = inline_summary (node); + /* FIXME: Thunks are inlinable, but tree-inline don't know how to do that. + Once this happen, we will need to more curefully predict call + statement size. */ + if (node->thunk.thunk_p) + { + struct inline_edge_summary *es = inline_edge_summary (node->callees); + struct predicate t = true_predicate (); + + info->inlinable = info->versionable = 0; + node->callees->call_stmt_cannot_inline_p = true; + node->local.can_change_signature = false; + es->call_stmt_time = 1; + es->call_stmt_size = 1; + account_size_time (info, 0, 0, &t); + return; + } + /* Estimate the stack size for the function if we're optimizing. */ self_stack_size = optimize ? estimated_stack_frame_size (node) : 0; info->estimated_self_stack_size = self_stack_size; @@ -2027,7 +2044,7 @@ inline_analyze_function (struct cgraph_node *node) cgraph_node_name (node), node->uid); /* FIXME: We should remove the optimize check after we ensure we never run IPA passes when not optimizing. */ - if (flag_indirect_inlining && optimize) + if (flag_indirect_inlining && optimize && !node->thunk.thunk_p) inline_indirect_intraprocedural_analysis (node); compute_inline_parameters (node, false); @@ -2058,8 +2075,7 @@ inline_generate_summary (void) if (flag_indirect_inlining) ipa_register_cgraph_hooks (); - for (node = cgraph_nodes; node; node = node->next) - if (node->analyzed) + FOR_EACH_DEFINED_FUNCTION (node) inline_analyze_function (node); } |