Commit e19ef86d by Martin Liska Committed by Martin Liska

Print 2 digits after decimal delimiter for BB frequencies

	* gimple-pretty-print.c (dump_probability): New function.
	(dump_edge_probability): Use the function.
	(dump_gimple_label): Likewise.
	(dump_gimple_bb_header): Likewise.
	* gcc.dg/tree-ssa/20040703-1.c: Update scanned pattern.
	* gcc.dg/tree-ssa/dump-2.c: Likewise.

From-SVN: r243643
parent ca3b6071
2016-12-14 Martin Liska <mliska@suse.cz>
* gimple-pretty-print.c (dump_probability): New function.
(dump_edge_probability): Use the function.
(dump_gimple_label): Likewise.
(dump_gimple_bb_header): Likewise.
2016-12-14 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> 2016-12-14 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
Jakub Jelinek <jakub@redhat.com> Jakub Jelinek <jakub@redhat.com>
...@@ -73,13 +73,35 @@ debug_gimple_stmt (gimple *gs) ...@@ -73,13 +73,35 @@ debug_gimple_stmt (gimple *gs)
print_gimple_stmt (stderr, gs, 0, TDF_VOPS|TDF_MEMSYMS); print_gimple_stmt (stderr, gs, 0, TDF_VOPS|TDF_MEMSYMS);
} }
/* Return formatted string of a VALUE probability
(biased by REG_BR_PROB_BASE). Returned string is allocated
by xstrdup_for_dump. */
static const char *
dump_probability (int value)
{
float minimum = 0.01f;
gcc_assert (0 <= value && value <= REG_BR_PROB_BASE);
float fvalue = value * 100.0f / REG_BR_PROB_BASE;
if (fvalue < minimum && value > 0)
return "[0.01%]";
char *buf;
asprintf (&buf, "[%.2f%%]", fvalue);
const char *ret = xstrdup_for_dump (buf);
free (buf);
return ret;
}
/* Dump E probability to BUFFER. */ /* Dump E probability to BUFFER. */
static void static void
dump_edge_probability (pretty_printer *buffer, edge e) dump_edge_probability (pretty_printer *buffer, edge e)
{ {
pp_scalar (buffer, " [%.1f%%]", pp_scalar (buffer, " %s", dump_probability (e->probability));
e->probability * 100.0 / REG_BR_PROB_BASE);
} }
/* Print GIMPLE statement G to FILE using SPC indentation spaces and /* Print GIMPLE statement G to FILE using SPC indentation spaces and
...@@ -1032,8 +1054,7 @@ dump_gimple_label (pretty_printer *buffer, glabel *gs, int spc, int flags) ...@@ -1032,8 +1054,7 @@ dump_gimple_label (pretty_printer *buffer, glabel *gs, int spc, int flags)
dump_generic_node (buffer, label, spc, flags, false); dump_generic_node (buffer, label, spc, flags, false);
basic_block bb = gimple_bb (gs); basic_block bb = gimple_bb (gs);
if (bb && !(flags & TDF_GIMPLE)) if (bb && !(flags & TDF_GIMPLE))
pp_scalar (buffer, " [%.1f%%]", pp_scalar (buffer, " %s", dump_probability (bb->frequency));
bb->frequency * 100.0 / REG_BR_PROB_BASE);
pp_colon (buffer); pp_colon (buffer);
} }
if (flags & TDF_GIMPLE) if (flags & TDF_GIMPLE)
...@@ -2599,8 +2620,8 @@ dump_gimple_bb_header (FILE *outf, basic_block bb, int indent, int flags) ...@@ -2599,8 +2620,8 @@ dump_gimple_bb_header (FILE *outf, basic_block bb, int indent, int flags)
if (flags & TDF_GIMPLE) if (flags & TDF_GIMPLE)
fprintf (outf, "%*sbb_%d:\n", indent, "", bb->index); fprintf (outf, "%*sbb_%d:\n", indent, "", bb->index);
else else
fprintf (outf, "%*s<bb %d> [%.1f%%]:\n", indent, "", bb->index, fprintf (outf, "%*s<bb %d> %s:\n",
bb->frequency * 100.0 / REG_BR_PROB_BASE); indent, "", bb->index, dump_probability (bb->frequency));
} }
} }
} }
......
2016-12-14 Martin Liska <mliska@suse.cz>
* gcc.dg/tree-ssa/20040703-1.c: Update scanned pattern.
* gcc.dg/tree-ssa/dump-2.c: Likewise.
2016-12-14 Toma Tabacu <toma.tabacu@imgtec.com> 2016-12-14 Toma Tabacu <toma.tabacu@imgtec.com>
* gcc.target/mips/msa-builtins-err.c (dg-options): Add * gcc.target/mips/msa-builtins-err.c (dg-options): Add
......
...@@ -9,4 +9,4 @@ float foo(float x) ...@@ -9,4 +9,4 @@ float foo(float x)
} }
/* We should *not* fold the arithmetic. */ /* We should *not* fold the arithmetic. */
/* { dg-final { scan-tree-dump-times "0\\.0\[^%\]" 0 "dom2"} } */ /* { dg-final { scan-tree-dump-times "0\\.0\[^%0\]" 0 "dom2"} } */
...@@ -6,4 +6,4 @@ int f(void) ...@@ -6,4 +6,4 @@ int f(void)
return 0; return 0;
} }
/* { dg-final { scan-tree-dump "<bb \[0-9\]> \\\[100\\\.0%\\\]:" "optimized" } } */ /* { dg-final { scan-tree-dump "<bb \[0-9\]> \\\[100\\\.00%\\\]:" "optimized" } } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment