diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-09-22 19:39:44 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-09-22 19:39:44 +0000 |
commit | 9908fe4d295445b66e77a474d4fd5082916ad795 (patch) | |
tree | b404afbf06494ab4a638586fe78ffa6a9f2b91f5 /gcc/ipa-cp.c | |
parent | a323e529aa733d6e8ec232f387bc8f77236c3139 (diff) | |
download | gcc-9908fe4d295445b66e77a474d4fd5082916ad795.tar.gz |
* tree-ssa-ccp.c (prop_value_d): Rename to ...
(ccp_prop_value_t): ... this one to avoid ODR violation; update uses.
* ipa-prop.c (struct type_change_info): Rename to ...
(prop_type_change_info): ... this; update uses.
* ggc-page.c (globals): Rename to ...
(static struct ggc_globals): ... this; update uses.
* tree-ssa-loop-im.c (mem_ref): Rename to ...
(im_mem_ref): ... this; update uses.
* ggc-common.c (loc_descriptor): Rename to ...
(ggc_loc_descriptor): ... this; update uses.
* lra-eliminations.c (elim_table): Rename to ...
(lra_elim_table): ... this; update uses.
* bitmap.c (output_info): Rename to ...
(bitmap_output_info): ... this; update uses.
* gcse.c (expr): Rename to ...
(gcse_expr) ... this; update uses.
(occr): Rename to ...
(gcse_occr): .. this; update uses.
* tree-ssa-copy.c (prop_value_d): Rename to ...
(prop_value_t): ... this.
* predict.c (block_info_def): Rename to ...
(block_info): ... this; update uses.
(edge_info_def): Rename to ...
(edge_info): ... this; update uses.
* profile.c (bb_info): Rename to ...
(bb_profile_info): ... this; update uses.
* alloc-pool.c (output_info): Rename to ...
(pool_output_info): ... this; update uses.
* ipa-cp.c (topo_info): Rename to ..
(ipa_topo_info): ... this; update uses.
* tree-nrv.c (nrv_data): Rename to ...
(nrv_data_t): ... this; update uses.
* ipa-split.c (bb_info): Rename to ...
(split_bb_info): ... this one.
* profile.h (edge_info): Rename to ...
(edge_profile_info): ... this one; update uses.
* dse.c (bb_info): Rename to ...
(dse_bb_info): ... this one; update uses.
* cprop.c (occr): Rename to ...
(cprop_occr): ... this one; update uses.
(expr): Rename to ...
(cprop_expr): ... this one; update uses.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@215480 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ipa-cp.c')
-rw-r--r-- | gcc/ipa-cp.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/ipa-cp.c b/gcc/ipa-cp.c index 2ff3b9c1e36..657536c9c8e 100644 --- a/gcc/ipa-cp.c +++ b/gcc/ipa-cp.c @@ -573,7 +573,7 @@ ipcp_cloning_candidate_p (struct cgraph_node *node) /* Arrays representing a topological ordering of call graph nodes and a stack of noes used during constant propagation. */ -struct topo_info +struct ipa_topo_info { struct cgraph_node **order; struct cgraph_node **stack; @@ -583,7 +583,7 @@ struct topo_info /* Allocate the arrays in TOPO and topologically sort the nodes into order. */ static void -build_toporder_info (struct topo_info *topo) +build_toporder_info (struct ipa_topo_info *topo) { topo->order = XCNEWVEC (struct cgraph_node *, symtab->cgraph_count); topo->stack = XCNEWVEC (struct cgraph_node *, symtab->cgraph_count); @@ -596,7 +596,7 @@ build_toporder_info (struct topo_info *topo) TOPO. */ static void -free_toporder_info (struct topo_info *topo) +free_toporder_info (struct ipa_topo_info *topo) { ipa_free_postorder_info (); free (topo->order); @@ -606,7 +606,7 @@ free_toporder_info (struct topo_info *topo) /* Add NODE to the stack in TOPO, unless it is already there. */ static inline void -push_node_to_stack (struct topo_info *topo, struct cgraph_node *node) +push_node_to_stack (struct ipa_topo_info *topo, struct cgraph_node *node) { struct ipa_node_params *info = IPA_NODE_REF (node); if (info->node_enqueued) @@ -619,7 +619,7 @@ push_node_to_stack (struct topo_info *topo, struct cgraph_node *node) is empty. */ static struct cgraph_node * -pop_node_from_stack (struct topo_info *topo) +pop_node_from_stack (struct ipa_topo_info *topo) { if (topo->stack_top) { @@ -2198,7 +2198,7 @@ add_all_node_vals_to_toposort (struct cgraph_node *node) connected components. */ static void -propagate_constants_topo (struct topo_info *topo) +propagate_constants_topo (struct ipa_topo_info *topo) { int i; @@ -2297,7 +2297,7 @@ propagate_effects (void) interprocedurally. */ static void -ipcp_propagate_stage (struct topo_info *topo) +ipcp_propagate_stage (struct ipa_topo_info *topo) { struct cgraph_node *node; @@ -3658,7 +3658,7 @@ identify_dead_nodes (struct cgraph_node *node) TOPO and make specialized clones if deemed beneficial. */ static void -ipcp_decision_stage (struct topo_info *topo) +ipcp_decision_stage (struct ipa_topo_info *topo) { int i; @@ -3693,7 +3693,7 @@ ipcp_driver (void) { struct cgraph_2edge_hook_list *edge_duplication_hook_holder; struct cgraph_edge_hook_list *edge_removal_hook_holder; - struct topo_info topo; + struct ipa_topo_info topo; ipa_check_create_node_params (); ipa_check_create_edge_args (); |