merge common graph copying code; move dead code elimination into an own file
[libfirm] / ir / ir / irssacons.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   restarting SSA construction for values.
23  * @author  Michael Beck
24  * @version $Id$
25  */
26 #include "config.h"
27
28 #include "ircons_t.h"
29 #include "irgraph_t.h"
30 #include "irnode_t.h"
31 #include "irgwalk.h"
32
33 /**
34  * Post-walker: prepare the graph nodes for new SSA construction cycle by allocation
35  * new arrays.
36  */
37 static void prepare_nodes(ir_node *irn, void *env)
38 {
39         (void)env;
40
41         switch (get_irn_opcode(irn)) {
42         case iro_Block:
43                 /* reset mature flag */
44                 irn->attr.block.is_matured = 0;
45                 irn->attr.block.graph_arr  = NEW_ARR_D(ir_node *, current_ir_graph->obst,
46                                                        current_ir_graph->n_loc);
47                 memset(irn->attr.block.graph_arr, 0, sizeof(ir_node *) * current_ir_graph->n_loc);
48                 irn->attr.block.phis       = NULL;
49                 break;
50         /* note that the frag array must be cleared first, else firm_alloc_frag_arr()
51            will not allocate new memory. */
52         case iro_Quot:
53                 irn->attr.except.frag_arr = NULL;
54                 firm_alloc_frag_arr(irn, op_Quot, &irn->attr.except.frag_arr);
55                 break;
56         case iro_DivMod:
57                 irn->attr.except.frag_arr = NULL;
58                 firm_alloc_frag_arr(irn, op_DivMod, &irn->attr.except.frag_arr);
59                 break;
60         case iro_Div:
61                 irn->attr.except.frag_arr = NULL;
62                 firm_alloc_frag_arr(irn, op_Div, &irn->attr.except.frag_arr);
63                 break;
64         case iro_Mod:
65                 irn->attr.except.frag_arr = NULL;
66                 firm_alloc_frag_arr(irn, op_Mod, &irn->attr.except.frag_arr);
67                 break;
68         case iro_Call:
69                 irn->attr.call.exc.frag_arr = NULL;
70                 firm_alloc_frag_arr(irn, op_Call, &irn->attr.call.exc.frag_arr);
71                 break;
72         case iro_Load:
73                 irn->attr.load.exc.frag_arr = NULL;
74                 firm_alloc_frag_arr(irn, op_Load, &irn->attr.load.exc.frag_arr);
75                 break;
76         case iro_Store:
77                 irn->attr.store.exc.frag_arr = NULL;
78                 firm_alloc_frag_arr(irn, op_Store, &irn->attr.store.exc.frag_arr);
79                 break;
80         case iro_Alloc:
81                 irn->attr.alloc.exc.frag_arr = NULL;
82                 firm_alloc_frag_arr(irn, op_Alloc, &irn->attr.alloc.exc.frag_arr);
83                 break;
84         case iro_CopyB:
85                 irn->attr.copyb.exc.frag_arr = NULL;
86                 firm_alloc_frag_arr(irn, op_CopyB, &irn->attr.copyb.exc.frag_arr);
87                 break;
88         case iro_Raise:
89                 irn->attr.bound.exc.frag_arr = NULL;
90                 firm_alloc_frag_arr(irn, op_Bound, &irn->attr.bound.exc.frag_arr);
91                 break;
92         default:
93                 ;
94         }
95 }
96
97 /*
98  * Restarts SSA construction on the given graph with n_loc
99  * new values.
100  *
101  * @param irg    the graph on which the SSA construction is restarted
102  * @param n_loc  number of new variables
103  *
104  * After this function is complete, the graph is in phase_building
105  * again and set_value()/get_value() and mature_block() can be used
106  * to construct new values.
107  */
108 void ssa_cons_start(ir_graph *irg, int n_loc)
109 {
110         /* for now we support only phase_high graphs */
111         assert(irg->phase_state == phase_high);
112
113         /* reset the phase to phase building: some optimization might depend on it */
114         set_irg_phase_state(irg, phase_building);
115
116         irg_set_nloc(irg, n_loc);
117
118         /*
119          * Note: we could try to reuse existing frag arrays, but it does not
120          * seems worth to do this.  First, we have to check if they really exists and
121          * then clear them.  We do not expect SSA construction is used often.
122          */
123         irg_walk_graph(irg, NULL, prepare_nodes, NULL);
124 }
125
126 /**
127  * mature all immature Blocks.
128  */
129 static void finish_block(ir_node *block, void *env)
130 {
131         (void)env;
132
133         if (!get_Block_matured(block))
134                 mature_immBlock(block);
135 }
136
137 /*
138  * Finalize the (restarted) SSA construction. Matures all blocks that are
139  * not matured yet and reset the graph state to phase_high.
140  */
141 void ssa_cons_finish(ir_graph *irg)
142 {
143         irg_block_walk_graph(irg, NULL, finish_block, NULL);
144         irg_finalize_cons(irg);
145 }