aboutsummaryrefslogtreecommitdiff
path: root/gcc/ipa-profile.c
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2020-01-31 13:10:14 +0100
committerMartin Liska <mliska@suse.cz>2020-06-02 12:11:02 +0200
commit871e5ada6d53d5eb495cc9f323983f347487c1b2 (patch)
tree15075fc87b2c7817e72f0b26b065a91e7963d0e6 /gcc/ipa-profile.c
parent23438370f768802fefd732529177fcea074c493b (diff)
downloadgcc-871e5ada6d53d5eb495cc9f323983f347487c1b2.zip
gcc-871e5ada6d53d5eb495cc9f323983f347487c1b2.tar.gz
gcc-871e5ada6d53d5eb495cc9f323983f347487c1b2.tar.bz2
Make TOPN counter dynamically allocated.
gcc/ChangeLog: * coverage.c (get_coverage_counts): Skip sanity check for TOP N counters as they have variable number of counters. * gcov-dump.c (main): Add new option -r. (print_usage): Likewise. (tag_counters): All new raw format. * gcov-io.h (struct gcov_kvp): New. (GCOV_TOPN_VALUES): Remove. (GCOV_TOPN_VALUES_COUNTERS): Likewise. (GCOV_TOPN_MEM_COUNTERS): New. (GCOV_TOPN_DISK_COUNTERS): Likewise. (GCOV_TOPN_MAXIMUM_TRACKED_VALUES): Likewise. * ipa-profile.c (ipa_profile_generate_summary): Use GCOV_TOPN_MAXIMUM_TRACKED_VALUES. (ipa_profile_write_edge_summary): Likewise. (ipa_profile_read_edge_summary): Likewise. (ipa_profile): Remove usage of GCOV_TOPN_VALUES. * profile.c (sort_hist_values): Sort variable number of counters. (compute_value_histograms): Special case for TOP N counters that have dynamic number of key-value pairs. * value-prof.c (dump_histogram_value): Dump variable number of key-value pairs. (stream_in_histogram_value): Stream in variable number of key-value pairs for TOP N counter. (get_nth_most_common_value): Deal with variable number of key-value pairs. (dump_ic_profile): Use GCOV_TOPN_MAXIMUM_TRACKED_VALUES for loop iteration. (gimple_find_values_to_profile): Set GCOV_TOPN_MEM_COUNTERS to n_counters. * doc/gcov-dump.texi: Document new -r option. libgcc/ChangeLog: * libgcov-driver.c (prune_topn_counter): Remove. (prune_counters): Likewise. (merge_one_data): Special case TOP N counters as they have variable length. (write_top_counters): New. (write_one_data): Special case TOP N. (dump_one_gcov): Do not prune TOP N counters. * libgcov-merge.c (merge_topn_values_set): Remove. (__gcov_merge_topn): Use gcov_topn_add_value. * libgcov-profiler.c (__gcov_topn_values_profiler_body): Likewise here. * libgcov.h (gcov_counter_add): New. (gcov_counter_set_if_null): Likewise. (gcov_topn_add_value): New.
Diffstat (limited to 'gcc/ipa-profile.c')
-rw-r--r--gcc/ipa-profile.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/gcc/ipa-profile.c b/gcc/ipa-profile.c
index 9fbfa90..43e9b6b 100644
--- a/gcc/ipa-profile.c
+++ b/gcc/ipa-profile.c
@@ -295,7 +295,8 @@ ipa_profile_generate_summary (void)
speculative_call_summary *csum
= call_sums->get_create (e);
- for (unsigned j = 0; j < GCOV_TOPN_VALUES; j++)
+ for (unsigned j = 0; j < GCOV_TOPN_MAXIMUM_TRACKED_VALUES;
+ j++)
{
if (!get_nth_most_common_value (NULL, "indirect call",
h, &val, &count, &all,
@@ -342,7 +343,7 @@ ipa_profile_write_edge_summary (lto_simple_output_block *ob,
len = csum->speculative_call_targets.length ();
- gcc_assert (len <= GCOV_TOPN_VALUES);
+ gcc_assert (len <= GCOV_TOPN_MAXIMUM_TRACKED_VALUES);
streamer_write_hwi_stream (ob->main_stream, len);
@@ -448,8 +449,7 @@ ipa_profile_read_edge_summary (class lto_input_block *ib, cgraph_edge *edge)
unsigned i, len;
len = streamer_read_hwi (ib);
- gcc_assert (len <= GCOV_TOPN_VALUES);
-
+ gcc_assert (len <= GCOV_TOPN_MAXIMUM_TRACKED_VALUES);
speculative_call_summary *csum = call_sums->get_create (edge);
for (i = 0; i < len; i++)
@@ -885,8 +885,7 @@ ipa_profile (void)
item.target_probability
/ (float) REG_BR_PROB_BASE);
}
- if (item.target_probability
- < REG_BR_PROB_BASE / GCOV_TOPN_VALUES / 2)
+ if (item.target_probability < REG_BR_PROB_BASE / 2)
{
nuseless++;
if (dump_file)