diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-12 22:58:22 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-12 22:58:22 +0000 |
commit | 5018c250118696d37986d14aa91cc388791c4a43 (patch) | |
tree | d2df1cff7b7b6d39cad373f658025e733516f5d3 /gcc/profile.c | |
parent | 354363fb354ac0da1e9a6edd0541ab378242090d (diff) | |
download | gcc-5018c250118696d37986d14aa91cc388791c4a43.tar.gz |
* predict.c (estimate_probability): Remove.
* profile.c (rest_of_handle_branch_prob, pass_branch_prob): Remove.
* basic-block.h (estimate_probability): Remove prototype.
* passes.c (finish_optimization_passes): Dump branch prediction or
profiling heuristics to the .profile tree dump.
(init_optimization_passes): Unqueue pass_branch_prob.
* doc/invoke.texi (-fdump-rtl-bp): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@111980 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/profile.c')
-rw-r--r-- | gcc/profile.c | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/gcc/profile.c b/gcc/profile.c index 7fa9aad03ef..2f6d8aa5708 100644 --- a/gcc/profile.c +++ b/gcc/profile.c @@ -1336,46 +1336,3 @@ tree_register_profile_hooks (void) profile_hooks = &tree_profile_hooks; } - -/* Do branch profiling and static profile estimation passes. */ -static unsigned int -rest_of_handle_branch_prob (void) -{ - struct loops loops; - - /* Discover and record the loop depth at the head of each basic - block. The loop infrastructure does the real job for us. */ - flow_loops_find (&loops); - - if (dump_file) - flow_loops_dump (&loops, dump_file, NULL, 0); - - /* Estimate using heuristics if no profiling info is available. */ - if (flag_guess_branch_prob - && profile_status == PROFILE_ABSENT) - estimate_probability (&loops); - - flow_loops_free (&loops); - free_dominance_info (CDI_DOMINATORS); - return 0; -} - -struct tree_opt_pass pass_branch_prob = -{ - "bp", /* name */ - NULL, /* gate */ - rest_of_handle_branch_prob, /* execute */ - NULL, /* sub */ - NULL, /* next */ - 0, /* static_pass_number */ - TV_BRANCH_PROB, /* tv_id */ - 0, /* properties_required */ - 0, /* properties_provided */ - 0, /* properties_destroyed */ - 0, /* todo_flags_start */ - TODO_dump_func, /* todo_flags_finish */ - 'b' /* letter */ -}; - - - |