aboutsummaryrefslogtreecommitdiff
path: root/gcc/value-prof.h
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2013-03-28 16:29:40 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2013-03-28 15:29:40 +0000
commit89ab31c15784b9d163e15688cc7c5bd589bcf465 (patch)
tree35ba8ad462caf0907fefeff0406e6ef831248073 /gcc/value-prof.h
parent525ec7ee9ca06a99b3826ded6fcba68cd5ab88c1 (diff)
downloadgcc-89ab31c15784b9d163e15688cc7c5bd589bcf465.zip
gcc-89ab31c15784b9d163e15688cc7c5bd589bcf465.tar.gz
gcc-89ab31c15784b9d163e15688cc7c5bd589bcf465.tar.bz2
data-streamer-in.c (streamer_read_gcov_count): New function.
* data-streamer-in.c (streamer_read_gcov_count): New function. * gimple-streamer-out.c: Include value-prof.h. (output_gimple_stmt): Output histogram. (output_bb): Use streamer_write_gcov_count. * value-prof.c: Include data-streamer.h (dump_histogram_value): Add HIST_TYPE_MAX. (stream_out_histogram_value): New function. (stream_in_histogram_value): New function. * value-prof.h (enum hist_type): Add HIST_TYPE_MAX. (stream_out_histogram_value, stream_in_histogram_value): Declare. * data-streamer-out.c (streamer_write_gcov_count): New function. (streamer_write_gcov_count_stream): New function. * lto-cgraph.c (lto_output_edge): Update counter streaming. (lto_output_node): Likewise. (input_node, input_edge): Likewise. * lto-streamer-out.c (output_cfg): Update streaming. * lto-streamer-in.c (input_cfg): Likewise. * data-streamer.h (streamer_write_gcov_count, streamer_write_gcov_count_stream, streamer_read_gcov_count): Declare. * gimple-streamer-in.c: Include value-prof.h (input_gimple_stmt): Input histograms. (input_bb): Update profile streaming. From-SVN: r197205
Diffstat (limited to 'gcc/value-prof.h')
-rw-r--r--gcc/value-prof.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/value-prof.h b/gcc/value-prof.h
index b6c77b6..7030d90 100644
--- a/gcc/value-prof.h
+++ b/gcc/value-prof.h
@@ -33,7 +33,8 @@ enum hist_type
HIST_TYPE_INDIR_CALL, /* Tries to identify the function that is (almost)
called in indirect call */
HIST_TYPE_AVERAGE, /* Compute average value (sum of all values). */
- HIST_TYPE_IOR /* Used to compute expected alignment. */
+ HIST_TYPE_IOR, /* Used to compute expected alignment. */
+ HIST_TYPE_MAX
};
#define COUNTER_FOR_HIST_TYPE(TYPE) ((int) (TYPE) + GCOV_FIRST_VALUE_COUNTER)
@@ -98,6 +99,8 @@ extern void gimple_gen_const_delta_profiler (histogram_value,
unsigned, unsigned);
extern void gimple_gen_average_profiler (histogram_value, unsigned, unsigned);
extern void gimple_gen_ior_profiler (histogram_value, unsigned, unsigned);
+extern void stream_out_histogram_value (struct output_block *, histogram_value);
+extern void stream_in_histogram_value (struct lto_input_block *, gimple);
/* In profile.c. */
extern void init_branch_prob (void);