diff options
author | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-09 21:29:15 +0000 |
---|---|---|
committer | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-09 21:29:15 +0000 |
commit | ed7d889a7226c7b51155be46a4dc7acda388d50e (patch) | |
tree | 6527002294a85c8c75581da8c201ffa8e0109d63 /gcc/dse.c | |
parent | 7a46197ba8ded22c042ef01b299f94e89b54b3ce (diff) | |
download | gcc-ed7d889a7226c7b51155be46a4dc7acda388d50e.tar.gz |
Eliminate FOR_ALL_BB macro.
gcc/
* basic-block.h (FOR_ALL_BB): Eliminate macro.
* cfg.c (alloc_aux_for_blocks, clear_aux_for_blocks): Replace
uses of FOR_ALL_BB with FOR_ALL_BB_FN, making uses of cfun explicit.
* cfganal.c (inverted_post_order_compute): Likewise.
* cfgcleanup.c (try_optimize_cfg): Likewise.
* cfgexpand.c (add_scope_conflicts): Likewise.
* cfghooks.c (dump_flow_info, account_profile_record): Likewise.
* cfgrtl.c (relink_block_chain): Likewise.
* dce.c (mark_artificial_uses): Likewise.
* df-core.c (df_set_blocks, df_compute_cfg_image, df_dump): Likewise.
* df-problems.c (df_lr_verify_solution_start,
df_lr_verify_solution_end, df_lr_verify_transfer_functions,
df_live_verify_solution_start, df_live_verify_solution_end,
df_live_set_all_dirty, df_live_verify_transfer_functions,
df_md_local_comput): Likewise.
* df-scan.c (df_scan_free_internal, df_scan_alloc)
df_reorganize_refs_by_insn, df_scan_verify): Likewise.
* dominance.c (compute_dom_fast_query, calculate_dominance_info,
free_dominance_info): Likewise.
* dse.c (dse_step1, dse_step3, dse_step4, dse_step6): Likewise.
* graph.c (draw_cfg_edges): Likewise.
* graphite-scop-detection.c (print_graphite_scop_statistics,
dot_all_scops_1): Likewise.
* graphite.c (print_global_statistics,
print_graphite_scop_statistics): Likewise.
* ira.c (do_reload): Likewise.
* loop-init.c (loop_optimizer_finalize): Likewise.
* lto-streamer-in.c (input_function): Likewise.
* lto-streamer-out.c (output_function): Likewise.
* mcf.c (adjust_cfg_counts): Likewise.
* predict.c (estimate_loops): Likewise.
* sched-rgn.c (haifa_find_rgns): Likewise.
* tree-cfg.c (split_critical_edges): Likewise.
* tree-dfa.c (renumber_gimple_stmt_uids): Likewise.
* tree-loop-distribution.c (tree_loop_distribution): Likewise.
* tree-ssa-pre.c (compute_antic, insert, init_pre): Likewise.
* tree-ssa-propagate.c (ssa_prop_init): Likewise.
* var-tracking.c (vt_initialize, vt_finalize): Likewise.
* vtable-verify.c (vtable_verify_main): Likewise.
* web.c (web_main): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205830 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dse.c')
-rw-r--r-- | gcc/dse.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/dse.c b/gcc/dse.c index e5b08504cba..958097d2d1c 100644 --- a/gcc/dse.c +++ b/gcc/dse.c @@ -2708,7 +2708,7 @@ dse_step1 (void) bitmap_set_bit (all_blocks, ENTRY_BLOCK); bitmap_set_bit (all_blocks, EXIT_BLOCK); - FOR_ALL_BB (bb) + FOR_ALL_BB_FN (bb, cfun) { insn_info_t ptr; bb_info_t bb_info = (bb_info_t) pool_alloc (bb_info_pool); @@ -3290,7 +3290,7 @@ dse_step3 (bool for_spills) bitmap_ones (unreachable_blocks); - FOR_ALL_BB (bb) + FOR_ALL_BB_FN (bb, cfun) { bb_info_t bb_info = bb_table[bb->index]; if (bb_info->gen) @@ -3469,7 +3469,7 @@ dse_step4 (void) basic_block bb; fprintf (dump_file, "\n\n*** Global dataflow info after analysis.\n"); - FOR_ALL_BB (bb) + FOR_ALL_BB_FN (bb, cfun) { bb_info_t bb_info = bb_table[bb->index]; @@ -3617,7 +3617,7 @@ dse_step6 (void) { basic_block bb; - FOR_ALL_BB (bb) + FOR_ALL_BB_FN (bb, cfun) { bb_info_t bb_info = bb_table[bb->index]; insn_info_t insn_info = bb_info->last_insn; |