f2f0517e3c4853e40323b0c8aed300e6cd006b9e
[libfirm] / ir / ir / irgmod.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    Support for ir graph modification.
23  * @author   Martin Trapp, Christian Schaefer, Goetz Lindenmaier
24  * @version  $Id$
25  */
26 #include "config.h"
27
28 #include "irflag_t.h"
29 #include "irgwalk.h"
30 #include "irnode_t.h"
31 #include "irgraph_t.h"
32 #include "irgmod.h"
33 #include "array.h"
34 #include "ircons.h"
35 #include "irhooks.h"
36 #include "iredges_t.h"
37 #include "irtools.h"
38 #include "error.h"
39
40 /**
41  * Turns a node into a "useless" Tuple.  The Tuple just forms a tuple
42  * from several inputs.
43  * This is useful if a node returning a tuple is removed, but the Projs
44  * extracting values from the tuple are not available.
45  */
46 void turn_into_tuple(ir_node *node, int arity)
47 {
48         ir_graph *irg = get_irn_irg(node);
49         ir_node **in  = ALLOCAN(ir_node*, arity);
50         int       i;
51
52         /* construct a new in array, with every input being bad */
53         for (i = 0; i < arity; ++i) {
54                 in[i] = new_r_Bad(irg);
55         }
56         set_irn_in(node, arity, in);
57         set_irn_op(node, op_Tuple);
58 }
59
60 /**
61  * Insert irnode `new' in place of irnode `old'
62  * Since `new' may be bigger than `old' replace `old'
63  * by an op_Id which is smaller than everything.
64  */
65 void exchange(ir_node *old, ir_node *nw)
66 {
67         ir_graph *irg;
68
69         assert(old && nw);
70         assert(old != nw && "Exchanging node with itself is not allowed");
71
72         irg = get_irn_irg(old);
73         assert(irg == get_irn_irg(nw) && "New node must be in same irg as old node");
74
75         hook_replace(old, nw);
76
77         /*
78          * If new outs are on, we can skip the id node creation and reroute
79          * the edges from the old node to the new directly.
80          */
81         if (edges_activated(irg)) {
82                 /* copy all dependencies from old to new */
83                 add_irn_deps(nw, old);
84
85                 edges_reroute(old, nw, irg);
86                 edges_reroute_kind(old, nw, EDGE_KIND_DEP, irg);
87                 edges_node_deleted(old, irg);
88                 /* noone is allowed to reference this node anymore */
89                 set_irn_op(old, op_Deleted);
90         } else {
91                 /* Else, do it the old-fashioned way. */
92                 ir_node *block;
93
94                 hook_turn_into_id(old);
95
96                 block = old->in[0];
97                 if (! block) {
98                         block = is_Block(nw) ? nw : get_nodes_block(nw);
99
100                         if (! block) {
101                                 panic("cannot find legal block for id");
102                         }
103                 }
104
105                 if (get_irn_op(old)->opar == oparity_dynamic) {
106                         DEL_ARR_F(get_irn_in(old));
107                 }
108
109                 old->op    = op_Id;
110                 old->in    = NEW_ARR_D (ir_node *, irg->obst, 2);
111                 old->in[0] = block;
112                 old->in[1] = nw;
113         }
114 }
115
116 /*--------------------------------------------------------------------*/
117 /*  Functionality for collect_phis                                    */
118 /*--------------------------------------------------------------------*/
119
120 /**
121  * Walker: links all Phi nodes to their Blocks lists,
122  *         all Proj nodes to there predecessors.
123  */
124 static void collect_phiprojs_walker(ir_node *n, void *env)
125 {
126         ir_node *pred;
127         (void) env;
128
129         if (is_Phi(n)) {
130                 ir_node *block = get_nodes_block(n);
131                 add_Block_phi(block, n);
132         } else if (is_Proj(n)) {
133                 pred = n;
134                 do {
135                         pred = get_Proj_pred(pred);
136                 } while (is_Proj(pred));
137
138                 set_irn_link(n, get_irn_link(pred));
139                 set_irn_link(pred, n);
140         }
141 }
142
143 void collect_phiprojs(ir_graph *irg)
144 {
145         assert((ir_resources_reserved(irg) & (IR_RESOURCE_IRN_LINK|IR_RESOURCE_PHI_LIST)) ==
146                 (IR_RESOURCE_IRN_LINK|IR_RESOURCE_PHI_LIST));
147         irg_walk_graph(irg, firm_clear_node_and_phi_links, collect_phiprojs_walker, NULL);
148 }
149
150 /*--------------------------------------------------------------------*/
151 /*  Functionality for part_block                                      */
152 /*--------------------------------------------------------------------*/
153
154 /**
155  * Moves node and all predecessors of node from from_bl to to_bl.
156  * Does not move predecessors of Phi nodes (or block nodes).
157  */
158 static void move(ir_node *node, ir_node *from_bl, ir_node *to_bl)
159 {
160         int i, arity;
161
162         /* move this node */
163         set_nodes_block(node, to_bl);
164
165         /* move its Projs */
166         if (get_irn_mode(node) == mode_T) {
167                 ir_node *proj = get_irn_link(node);
168                 while (proj) {
169                         if (get_nodes_block(proj) == from_bl)
170                                 set_nodes_block(proj, to_bl);
171                         proj = get_irn_link(proj);
172                 }
173         }
174
175         if (is_Phi(node))
176                 return;
177
178         /* recursion ... */
179         arity = get_irn_arity(node);
180         for (i = 0; i < arity; i++) {
181                 ir_node *pred = get_irn_n(node, i);
182                 if (get_nodes_block(pred) == from_bl)
183                         move(pred, from_bl, to_bl);
184         }
185 }
186
187 /**
188  * Moves node and all predecessors of node from from_bl to to_bl.
189  * Does not move predecessors of Phi nodes (or block nodes).
190  */
191 static void move_edges(ir_node *node, ir_node *from_bl, ir_node *to_bl)
192 {
193         int i, arity;
194
195         /* move this node */
196         set_nodes_block(node, to_bl);
197
198         /* move its Projs */
199         if (get_irn_mode(node) == mode_T) {
200                 const ir_edge_t *edge;
201                 foreach_out_edge(node, edge) {
202                         ir_node *proj = get_edge_src_irn(edge);
203                         set_nodes_block(proj, to_bl);
204                 }
205         }
206
207         /* We must not move predecessors of Phi nodes, even if they are in
208          * from_bl. (because these are values from an earlier loop iteration
209          * which are not predecessors of node here)
210          */
211         if (is_Phi(node))
212                 return;
213
214         /* recursion ... */
215         arity = get_irn_arity(node);
216         for (i = 0; i < arity; i++) {
217                 ir_node *pred = get_irn_n(node, i);
218                 if (get_nodes_block(pred) == from_bl)
219                         move_edges(pred, from_bl, to_bl);
220         }
221 }
222
223 void part_block(ir_node *node)
224 {
225         ir_node *new_block, *old_block;
226         ir_node *phi, *jmp;
227         ir_graph *rem = current_ir_graph;
228
229         /* Turn off optimizations so that blocks are not merged again. */
230         int rem_opt = get_opt_optimize();
231         set_optimize(0);
232
233         current_ir_graph = get_irn_irg(node);
234
235         /* Transform the control flow */
236         old_block = get_nodes_block(node);
237         new_block = new_Block(get_Block_n_cfgpreds(old_block),
238                               get_Block_cfgpred_arr(old_block));
239
240         /* create a jump from new_block to old_block, which is now the lower one */
241         jmp = new_r_Jmp(new_block);
242         set_irn_in(old_block, 1, &jmp);
243
244         /* move node and its predecessors to new_block */
245         move(node, old_block, new_block);
246
247         /* move Phi nodes to new_block */
248         phi = get_Block_phis(old_block);
249         set_Block_phis(new_block, phi);
250         set_Block_phis(old_block, NULL);
251         while (phi) {
252                 set_nodes_block(phi, new_block);
253                 phi = get_Phi_next(phi);
254         }
255
256         set_optimize(rem_opt);
257         current_ir_graph = rem;
258 }
259
260 ir_node *part_block_edges(ir_node *node)
261 {
262         ir_graph        *irg       = get_irn_irg(node);
263         ir_node         *old_block = get_nodes_block(node);
264         ir_node         *new_block = new_r_Block(irg,
265                                                  get_Block_n_cfgpreds(old_block),
266                                                  get_Block_cfgpred_arr(old_block));
267         const ir_edge_t *edge;
268         const ir_edge_t *next;
269
270         /* old_block has no predecessors anymore for now */
271         set_irn_in(old_block, 0, NULL);
272
273         /* move node and its predecessors to new_block */
274         move_edges(node, old_block, new_block);
275
276         /* move Phi nodes to new_block */
277         foreach_out_edge_safe(old_block, edge, next) {
278                 ir_node *phi = get_edge_src_irn(edge);
279                 if (!is_Phi(phi))
280                         continue;
281                 set_nodes_block(phi, new_block);
282         }
283
284         return old_block;
285 }
286
287 void kill_node(ir_node *node)
288 {
289         ir_graph *irg = get_irn_irg(node);
290         ir_node *bad = get_irg_bad(irg);
291         int i;
292
293         for (i = get_irn_arity(node) - 1; i >= -1; --i) {
294                 set_irn_n(node, i, bad);
295         }
296         exchange(node, bad);
297 }