diff options
author | David Malcolm <dmalcolm@redhat.com> | 2013-12-09 20:38:21 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2013-12-09 20:38:21 +0000 |
commit | 0a6a6ac91c09c352acf13e491c02a6b8795d3e9a (patch) | |
tree | 9f0c39edb95562e8ddd411354ba868a780f626cf /gcc/cfgrtl.c | |
parent | 99729d912d29072cc42c361cdc6bed31cb0c0e6b (diff) | |
download | gcc-0a6a6ac91c09c352acf13e491c02a6b8795d3e9a.zip gcc-0a6a6ac91c09c352acf13e491c02a6b8795d3e9a.tar.gz gcc-0a6a6ac91c09c352acf13e491c02a6b8795d3e9a.tar.bz2 |
Eliminate profile_status macro.
gcc/
* basic-block.h (profile_status): Eliminate macro.
* cfgbuild.c (find_many_sub_basic_blocks): Eliminate use of
profile_status macro in favor of profile_status_for_fn, making
use of cfun explicit.
* cfghooks.c (account_profile_record): Likewise.
* cfgloopanal.c (single_likely_exit):
* cfgrtl.c (rtl_verify_edges, rtl_account_profile_record): Likewise.
* graphite.c (graphite_finalize):
* internal-fn.c (ubsan_expand_si_overflow_addsub_check,
ubsan_expand_si_overflow_neg_check,
ubsan_expand_si_overflow_mul_check): Likewise.
* ipa-split.c (consider_split, execute_split_functions):
* loop-unroll.c (decide_peel_simple):
* optabs.c (emit_cmp_and_jump_insn_1):
* predict.c (maybe_hot_edge_p, probably_never_executed,
predictable_edge_p, probability_reliable_p, gimple_predict_edge,
tree_estimate_probability_driver, estimate_bb_frequencies,
compute_function_frequency, rebuild_frequencies): Likewise.
* profile.c (compute_branch_probabilities): Likewise.
* tree-cfg.c (gimple_account_profile_record): Likewise.
* tree-inline.c (optimize_inline_calls): Likewise.
From-SVN: r205825
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index 772d939..34fe4f3 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -2420,7 +2420,7 @@ rtl_verify_edges (void) && any_condjump_p (BB_END (bb))) { if (XINT (note, 0) != BRANCH_EDGE (bb)->probability - && profile_status != PROFILE_ABSENT) + && profile_status_for_fn (cfun) != PROFILE_ABSENT) { error ("verify_flow_info: REG_BR_PROB does not match cfg %i %i", XINT (note, 0), BRANCH_EDGE (bb)->probability); @@ -5011,10 +5011,10 @@ rtl_account_profile_record (basic_block bb, int after_pass, { record->size[after_pass] += insn_rtx_cost (PATTERN (insn), false); - if (profile_status == PROFILE_READ) + if (profile_status_for_fn (cfun) == PROFILE_READ) record->time[after_pass] += insn_rtx_cost (PATTERN (insn), true) * bb->count; - else if (profile_status == PROFILE_GUESSED) + else if (profile_status_for_fn (cfun) == PROFILE_GUESSED) record->time[after_pass] += insn_rtx_cost (PATTERN (insn), true) * bb->frequency; } |