aboutsummaryrefslogtreecommitdiff
path: root/gcc/profile.h
diff options
context:
space:
mode:
authorTeresa Johnson <tejohnson@google.com>2012-11-30 16:47:04 +0000
committerTeresa Johnson <tejohnson@gcc.gnu.org>2012-11-30 16:47:04 +0000
commit2730ada7a02e99f9a3088b74b1ff588255c40154 (patch)
tree2f91f256a35f639f54c8da185d2974983b74c68a /gcc/profile.h
parentc1ed6a0172fa629c31f23f99d76b3fa0109bb66b (diff)
downloadgcc-2730ada7a02e99f9a3088b74b1ff588255c40154.zip
gcc-2730ada7a02e99f9a3088b74b1ff588255c40154.tar.gz
gcc-2730ada7a02e99f9a3088b74b1ff588255c40154.tar.bz2
Revised patch to ensure that histograms from the profile summary are streamed...
Revised patch to ensure that histograms from the profile summary are streamed through the LTO files so that the working set can be computed for use in downstream optimizations. 2012-11-30 Teresa Johnson <tejohnson@google.com> * lto-cgraph.c (output_profile_summary): Stream out sum_all and histogram. (input_profile_summary): Stream in sum_all and histogram. (merge_profile_summaries): Merge sum_all and histogram, and change to use RDIV. (input_symtab): Call compute_working_sets after merging summaries. * gcov-io.c (gcov_histo_index): Make extern for compiler. * gcov-io.h (gcov_histo_index): Ditto. * profile.c (compute_working_sets): Remove static keyword. * profile.h (compute_working_sets): Ditto. * Makefile.in (lto-cgraph.o): Depend on profile.h. From-SVN: r193999
Diffstat (limited to 'gcc/profile.h')
-rw-r--r--gcc/profile.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/profile.h b/gcc/profile.h
index c97d8ef..ed8c886 100644
--- a/gcc/profile.h
+++ b/gcc/profile.h
@@ -47,4 +47,6 @@ extern gcov_type sum_edge_counts (vec<edge, va_gc> *edges);
extern void init_node_map (void);
extern void del_node_map (void);
+extern void compute_working_sets (void);
+
#endif /* PROFILE_H */