diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-24 23:40:03 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-24 23:40:03 +0000 |
commit | 450d042a5291a12fd08589b74c0abf6b63581104 (patch) | |
tree | d6106abaa59ec697ae2e96cb33c733be39b7abe0 /gcc/profile.c | |
parent | 53d878e84b60ef66db86efbe173ab8724728e332 (diff) | |
download | gcc-450d042a5291a12fd08589b74c0abf6b63581104.tar.gz |
* toplev.c (dump_file_tbl): Rename from dump_file.
* bb-reorder.c, bt-load.c, cfgcleanup.c, cfglayout.c, cfgloopanal.c,
cfgloopmanip.c, cfgrtl.c, config/arm/arm.c, config/frv/frv.c,
config/i386/i386.c, config/ia64/ia64.c, config/mips/mips.c,
config/sh/sh.c, cse.c, flow.c, ifcvt.c, loop-iv.c, loop-unroll.c,
loop-unswitch.c, output.h, predict.c, profile.c, ra-build.c,
ra-colorize.c, ra-debug.c, ra-rewrite.c, ra.c, regrename.c, reload1.c,
toplev.c, tracer.c, value-prof.c, var-tracking.c, web.c:
s/rtl_dump_file/dump_file/g.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78399 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/profile.c')
-rw-r--r-- | gcc/profile.c | 102 |
1 files changed, 51 insertions, 51 deletions
diff --git a/gcc/profile.c b/gcc/profile.c index b7b39a2f5a8..238a2e264c2 100644 --- a/gcc/profile.c +++ b/gcc/profile.c @@ -151,8 +151,8 @@ instrument_edges (struct edge_list *el) if (e->flags & EDGE_ABNORMAL) abort (); - if (rtl_dump_file) - fprintf (rtl_dump_file, "Edge %d to %d instrumented%s\n", + if (dump_file) + fprintf (dump_file, "Edge %d to %d instrumented%s\n", e->src->index, e->dest->index, EDGE_CRITICAL_P (e) ? " (and split)" : ""); edge_profile = gen_edge_profiler (num_instr_edges++); @@ -163,8 +163,8 @@ instrument_edges (struct edge_list *el) } total_num_blocks_created += num_edges; - if (rtl_dump_file) - fprintf (rtl_dump_file, "%d edges instrumented\n", num_instr_edges); + if (dump_file) + fprintf (dump_file, "%d edges instrumented\n", num_instr_edges); return num_instr_edges; } @@ -255,8 +255,8 @@ get_exec_counts (void) if (!counts) return NULL; - if (rtl_dump_file && profile_info) - fprintf(rtl_dump_file, "Merged %u profiles with maximal count %u.\n", + if (dump_file && profile_info) + fprintf(dump_file, "Merged %u profiles with maximal count %u.\n", profile_info->runs, (unsigned) profile_info->sum_max); return counts; @@ -343,18 +343,18 @@ compute_branch_probabilities (void) EDGE_INFO (e)->count_valid = 1; BB_INFO (bb)->succ_count--; BB_INFO (e->dest)->pred_count--; - if (rtl_dump_file) + if (dump_file) { - fprintf (rtl_dump_file, "\nRead edge from %i to %i, count:", + fprintf (dump_file, "\nRead edge from %i to %i, count:", bb->index, e->dest->index); - fprintf (rtl_dump_file, HOST_WIDEST_INT_PRINT_DEC, + fprintf (dump_file, HOST_WIDEST_INT_PRINT_DEC, (HOST_WIDEST_INT) e->count); } } } - if (rtl_dump_file) - fprintf (rtl_dump_file, "\n%d edge counts read\n", num_edges); + if (dump_file) + fprintf (dump_file, "\n%d edge counts read\n", num_edges); /* For every block in the file, - if every exit/entrance edge has a known count, then set the block count @@ -466,12 +466,12 @@ compute_branch_probabilities (void) } } } - if (rtl_dump_file) - dump_flow_info (rtl_dump_file); + if (dump_file) + dump_flow_info (dump_file); total_num_passes += passes; - if (rtl_dump_file) - fprintf (rtl_dump_file, "Graph solving took %d passes.\n\n", passes); + if (dump_file) + fprintf (dump_file, "Graph solving took %d passes.\n\n", passes); /* If the graph has been correctly solved, every block will have a succ and pred count of zero. */ @@ -600,14 +600,14 @@ compute_branch_probabilities (void) } } - if (rtl_dump_file) + if (dump_file) { - fprintf (rtl_dump_file, "%d branches\n", num_branches); - fprintf (rtl_dump_file, "%d branches never executed\n", + fprintf (dump_file, "%d branches\n", num_branches); + fprintf (dump_file, "%d branches never executed\n", num_never_executed); if (num_branches) for (i = 0; i < 10; i++) - fprintf (rtl_dump_file, "%d%% branches in range %d-%d%%\n", + fprintf (dump_file, "%d%% branches in range %d-%d%%\n", (hist_br_prob[i] + hist_br_prob[19-i]) * 100 / num_branches, 5 * i, 5 * i + 5); @@ -616,8 +616,8 @@ compute_branch_probabilities (void) for (i = 0; i < 20; i++) total_hist_br_prob[i] += hist_br_prob[i]; - fputc ('\n', rtl_dump_file); - fputc ('\n', rtl_dump_file); + fputc ('\n', dump_file); + fputc ('\n', dump_file); } free_aux_for_blocks (); @@ -752,15 +752,15 @@ branch_prob (void) if (need_exit_edge && !have_exit_edge) { - if (rtl_dump_file) - fprintf (rtl_dump_file, "Adding fake exit edge to bb %i\n", + if (dump_file) + fprintf (dump_file, "Adding fake exit edge to bb %i\n", bb->index); make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE); } if (need_entry_edge && !have_entry_edge) { - if (rtl_dump_file) - fprintf (rtl_dump_file, "Adding fake entry edge to bb %i\n", + if (dump_file) + fprintf (dump_file, "Adding fake entry edge to bb %i\n", bb->index); make_edge (ENTRY_BLOCK_PTR, bb, EDGE_FAKE); } @@ -817,16 +817,16 @@ branch_prob (void) } total_num_blocks += n_basic_blocks + 2; - if (rtl_dump_file) - fprintf (rtl_dump_file, "%d basic blocks\n", n_basic_blocks); + if (dump_file) + fprintf (dump_file, "%d basic blocks\n", n_basic_blocks); total_num_edges += num_edges; - if (rtl_dump_file) - fprintf (rtl_dump_file, "%d edges\n", num_edges); + if (dump_file) + fprintf (dump_file, "%d edges\n", num_edges); total_num_edges_ignored += ignored_edges; - if (rtl_dump_file) - fprintf (rtl_dump_file, "%d ignored edges\n", ignored_edges); + if (dump_file) + fprintf (dump_file, "%d ignored edges\n", ignored_edges); /* Write the data from which gcov can reconstruct the basic block graph. */ @@ -993,8 +993,8 @@ branch_prob (void) /* Re-merge split basic blocks and the mess introduced by insert_insn_on_edge. */ cleanup_cfg (profile_arc_flag ? CLEANUP_EXPENSIVE : 0); - if (rtl_dump_file) - dump_flow_info (rtl_dump_file); + if (dump_file) + dump_flow_info (dump_file); free_edge_list (el); } @@ -1066,8 +1066,8 @@ find_spanning_tree (struct edge_list *el) && !EDGE_INFO (e)->ignore && (find_group (e->src) != find_group (e->dest))) { - if (rtl_dump_file) - fprintf (rtl_dump_file, "Abnormal edge %d to %d put to tree\n", + if (dump_file) + fprintf (dump_file, "Abnormal edge %d to %d put to tree\n", e->src->index, e->dest->index); EDGE_INFO (e)->on_tree = 1; union_groups (e->src, e->dest); @@ -1081,8 +1081,8 @@ find_spanning_tree (struct edge_list *el) if (EDGE_CRITICAL_P (e) && !EDGE_INFO (e)->ignore && find_group (e->src) != find_group (e->dest)) { - if (rtl_dump_file) - fprintf (rtl_dump_file, "Critical edge %d to %d put to tree\n", + if (dump_file) + fprintf (dump_file, "Critical edge %d to %d put to tree\n", e->src->index, e->dest->index); EDGE_INFO (e)->on_tree = 1; union_groups (e->src, e->dest); @@ -1096,8 +1096,8 @@ find_spanning_tree (struct edge_list *el) if (!EDGE_INFO (e)->ignore && find_group (e->src) != find_group (e->dest)) { - if (rtl_dump_file) - fprintf (rtl_dump_file, "Normal edge %d to %d put to tree\n", + if (dump_file) + fprintf (dump_file, "Normal edge %d to %d put to tree\n", e->src->index, e->dest->index); EDGE_INFO (e)->on_tree = 1; union_groups (e->src, e->dest); @@ -1134,34 +1134,34 @@ init_branch_prob (void) void end_branch_prob (void) { - if (rtl_dump_file) + if (dump_file) { - fprintf (rtl_dump_file, "\n"); - fprintf (rtl_dump_file, "Total number of blocks: %d\n", + fprintf (dump_file, "\n"); + fprintf (dump_file, "Total number of blocks: %d\n", total_num_blocks); - fprintf (rtl_dump_file, "Total number of edges: %d\n", total_num_edges); - fprintf (rtl_dump_file, "Total number of ignored edges: %d\n", + fprintf (dump_file, "Total number of edges: %d\n", total_num_edges); + fprintf (dump_file, "Total number of ignored edges: %d\n", total_num_edges_ignored); - fprintf (rtl_dump_file, "Total number of instrumented edges: %d\n", + fprintf (dump_file, "Total number of instrumented edges: %d\n", total_num_edges_instrumented); - fprintf (rtl_dump_file, "Total number of blocks created: %d\n", + fprintf (dump_file, "Total number of blocks created: %d\n", total_num_blocks_created); - fprintf (rtl_dump_file, "Total number of graph solution passes: %d\n", + fprintf (dump_file, "Total number of graph solution passes: %d\n", total_num_passes); if (total_num_times_called != 0) - fprintf (rtl_dump_file, "Average number of graph solution passes: %d\n", + fprintf (dump_file, "Average number of graph solution passes: %d\n", (total_num_passes + (total_num_times_called >> 1)) / total_num_times_called); - fprintf (rtl_dump_file, "Total number of branches: %d\n", + fprintf (dump_file, "Total number of branches: %d\n", total_num_branches); - fprintf (rtl_dump_file, "Total number of branches never executed: %d\n", + fprintf (dump_file, "Total number of branches never executed: %d\n", total_num_never_executed); if (total_num_branches) { int i; for (i = 0; i < 10; i++) - fprintf (rtl_dump_file, "%d%% branches in range %d-%d%%\n", + fprintf (dump_file, "%d%% branches in range %d-%d%%\n", (total_hist_br_prob[i] + total_hist_br_prob[19-i]) * 100 / total_num_branches, 5*i, 5*i+5); } |