From 327a38c3c847413f53c0adedd0528218b3f8acc0 Mon Sep 17 00:00:00 2001 From: hubicka Date: Sun, 31 Jul 2005 20:55:41 +0000 Subject: [PATCH] * pretty-print.h (pp_widest_integer): New macro. * tree-pretty-print.c (dump_bb_header): Print BB frequencies and counts. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102608 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 6 ++++++ gcc/pretty-print.h | 2 ++ gcc/tree-pretty-print.c | 10 ++++++++++ 3 files changed, 18 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 967a610e24d..45c082fee6b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2005-07-31 Jan Hubicka + * pretty-print.h (pp_widest_integer): New macro. + * tree-pretty-print.c (dump_bb_header): Print BB frequencies and + counts. + +2005-07-31 Jan Hubicka + * output.h (enum section_category): Export from varasm.c (categorize_decl_for_section): Likewise. * varasm.c (enum section_category): Kill. diff --git a/gcc/pretty-print.h b/gcc/pretty-print.h index b587e600882..b2c6772b7c0 100644 --- a/gcc/pretty-print.h +++ b/gcc/pretty-print.h @@ -269,6 +269,8 @@ struct pretty_print_info #define pp_decimal_int(PP, I) pp_scalar (PP, "%d", I) #define pp_wide_integer(PP, I) \ pp_scalar (PP, HOST_WIDE_INT_PRINT_DEC, (HOST_WIDE_INT) I) +#define pp_widest_integer(PP, I) \ + pp_scalar (PP, HOST_WIDEST_INT_PRINT_DEC, (HOST_WIDEST_INT) I) #define pp_pointer(PP, P) pp_scalar (PP, "%p", P) #define pp_identifier(PP, ID) pp_string (PP, ID) diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c index d7bfe8c129c..6fa0326d429 100644 --- a/gcc/tree-pretty-print.c +++ b/gcc/tree-pretty-print.c @@ -2247,6 +2247,16 @@ dump_bb_header (pretty_printer *buffer, basic_block bb, int indent, int flags) INDENT (indent); pp_string (buffer, "# BLOCK "); pp_decimal_int (buffer, bb->index); + if (bb->frequency) + { + pp_string (buffer, " freq:"); + pp_decimal_int (buffer, bb->frequency); + } + if (bb->count) + { + pp_string (buffer, " count:"); + pp_widest_integer (buffer, bb->count); + } if (flags & TDF_LINENO) { -- 2.11.0