From 3d9c733eb19c1fa07f0adecc083a4c2a053fd903 Mon Sep 17 00:00:00 2001 From: Andrew MacLeod Date: Wed, 2 Oct 2013 17:57:54 +0000 Subject: tree-flow.h: Remove some prototypes. * tree-flow.h: Remove some prototypes. * tree-ssa-dce.c (mark_virtual_operand_for_renaming, mark_virtual_phi_result_for_renaming): Move to tree-into-ssa.c. * tree-into-ssa.c (mark_virtual_operand_for_renaming, mark_virtual_phi_result_for_renaming): Relocate here. * tree-into-ssa.h: Add prototypes. * tree-ssa-phiopt.c: (tree_ssa_phiopt_worker) Use single_pred_before_succ_order. (blocks_in_phiopt_order): Rename and move to cfganal.c. (nonfreeing_call_p) Move to gimple.c. * cfganal.c (single_pred_before_succ_order): Move and renamed from tree-ssa-phiopt.c. * basic-block.h (single_pred_before_succ_order): Add prototype. * gimple.c (nonfreeing_call_p): Relocate here. * gimple.h: Add prototype. * tree-ssa-ifcombine.c: Include tree-ssa-phiopt.h. * tree-ssa-dom.h: New file. Relocate prototypes here. * tree-ssa.h: Include tree-ssa-dom.h. From-SVN: r203122 --- gcc/tree-flow.h | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'gcc/tree-flow.h') diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index bbd1a15..db7f346 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -244,13 +244,6 @@ extern basic_block move_sese_region_to_fn (struct function *, basic_block, void remove_edge_and_dominated_blocks (edge); bool tree_node_can_be_shared (tree); -/* In tree-ssa-dom.c */ -extern void dump_dominator_optimization_stats (FILE *); -extern void debug_dominator_optimization_stats (void); -int loop_depth_of_name (tree); -tree degenerate_phi_result (gimple); -bool simple_iv_increment_p (gimple); - /* In tree-ssa-loop-ch.c */ bool do_while_loop_p (struct loop *); @@ -296,10 +289,6 @@ struct tree_niter_desc enum tree_code cmp; }; -/* In tree-ssa-phiopt.c */ -bool empty_block_p (basic_block); -basic_block *blocks_in_phiopt_order (void); -bool nonfreeing_call_p (gimple); /* In tree-ssa-loop*.c */ @@ -359,10 +348,6 @@ void tree_transform_and_unroll_loop (struct loop *, unsigned, bool contains_abnormal_ssa_name_p (tree); bool stmt_dominates_stmt_p (gimple, gimple); -/* In tree-ssa-dce.c */ -void mark_virtual_operand_for_renaming (tree); -void mark_virtual_phi_result_for_renaming (gimple); - /* In tree-ssa-threadedge.c */ extern void threadedge_initialize_values (void); extern void threadedge_finalize_values (void); -- cgit v1.1