From: Jan Hubicka Date: Thu, 28 Nov 2019 14:16:29 +0000 (+0100) Subject: * ipa-cp.c (update_profiling_info): Fix scaling. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2e7fd8678075ef8b2f4ae9a1f3d4923e886b0d54;p=gcc.git * ipa-cp.c (update_profiling_info): Fix scaling. From-SVN: r278808 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fe76b3e2b4a..9897c0e604e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2019-11-28 Jan Hubicka + + * ipa-cp.c (update_profiling_info): Fix scaling. + 2019-11-28 Richard Biener PR tree-optimization/92645 diff --git a/gcc/ipa-cp.c b/gcc/ipa-cp.c index 31a98a3d98a..b13322827b6 100644 --- a/gcc/ipa-cp.c +++ b/gcc/ipa-cp.c @@ -4091,6 +4091,7 @@ update_profiling_info (struct cgraph_node *orig_node, struct caller_statistics stats; profile_count new_sum, orig_sum; profile_count remainder, orig_node_count = orig_node->count; + profile_count orig_new_node_count = new_node->count; if (!(orig_node_count.ipa () > profile_count::zero ())) return; @@ -4128,15 +4129,20 @@ update_profiling_info (struct cgraph_node *orig_node, remainder = orig_node_count.combine_with_ipa_count (orig_node_count.ipa () - new_sum.ipa ()); new_sum = orig_node_count.combine_with_ipa_count (new_sum); + new_node->count = new_sum; orig_node->count = remainder; - profile_count::adjust_for_ipa_scaling (&new_sum, &orig_node_count); + profile_count::adjust_for_ipa_scaling (&new_sum, &orig_new_node_count); for (cs = new_node->callees; cs; cs = cs->next_callee) - cs->count = cs->count.apply_scale (new_sum, orig_node_count); + cs->count = cs->count.apply_scale (new_sum, orig_new_node_count); + for (cs = new_node->indirect_calls; cs; cs = cs->next_callee) + cs->count = cs->count.apply_scale (new_sum, orig_new_node_count); profile_count::adjust_for_ipa_scaling (&remainder, &orig_node_count); for (cs = orig_node->callees; cs; cs = cs->next_callee) cs->count = cs->count.apply_scale (remainder, orig_node_count); + for (cs = orig_node->indirect_calls; cs; cs = cs->next_callee) + cs->count = cs->count.apply_scale (remainder, orig_node_count); if (dump_file) dump_profile_updates (orig_node, new_node);