Add is_Conv().
[libfirm] / ir / ir / irgmod.c
1 /*
2  * Copyright (C) 1995-2007 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 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include "irvrfy.h"
31 #include "irflag_t.h"
32 #include "irgwalk.h"
33 #include "irnode_t.h"
34 #include "irgraph_t.h"
35 #include "irgmod.h"
36 #include "array.h"
37 #include "ircons.h"
38 #include "irhooks.h"
39 #include "iredges_t.h"
40 #include "irtools.h"
41
42 /**
43  * Turns a node into a "useless" Tuple.  The Tuple just forms a tuple
44  * from several inputs.
45  * This is useful if a node returning a tuple is removed, but the Projs
46  * extracting values from the tuple are not available.
47  */
48 void turn_into_tuple (ir_node *node, int arity)
49 {
50         assert(node);
51         set_irn_op(node, op_Tuple);
52         if (get_irn_arity(node) == arity) {
53                 /* keep old array */
54         } else {
55                 /* Allocate new array, don't free old in_array, it's on the obstack. */
56                 ir_node *block = get_nodes_block(node);
57                 edges_node_deleted(node, current_ir_graph);
58                 node->in = NEW_ARR_D(ir_node *, current_ir_graph->obst, arity+1);
59                 /* clear the new in array, else edge_notify tries to delete garbage */
60                 memset(node->in, 0, (arity+1) * sizeof(node->in[0]));
61                 set_nodes_block(node, block);
62         }
63 }
64
65 /**
66  * Insert irnode `new' in place of irnode `old'
67  * Since `new' may be bigger than `old' replace `old'
68  * by an op_Id which is smaller than everything.
69  */
70 void exchange(ir_node *old, ir_node *nw)
71 {
72         ir_graph *irg;
73
74         assert(old && nw);
75         assert(old != nw && "Exchanging node with itself is not allowed");
76
77         irg = get_irn_irg(old);
78         assert(irg == get_irn_irg(nw) && "New node must be in same irg as old node");
79
80         hook_replace(old, nw);
81
82         /*
83         * If new outs are on, we can skip the id node creation and reroute
84         * the edges from the old node to the new directly.
85         */
86         if (edges_activated(irg)) {
87                 /* copy all dependencies from old to new */
88                 add_irn_deps(nw, old);
89
90                 edges_reroute(old, nw, irg);
91                 edges_reroute_kind(old, nw, EDGE_KIND_DEP, irg);
92                 edges_node_deleted(old, irg);
93                 old->op = op_Bad;
94         }
95         else {
96                 /* Else, do it the old-fashioned way. */
97                 ir_node *block;
98
99                 assert(get_irn_op(old)->opar != oparity_dynamic);
100
101                 hook_turn_into_id(old);
102
103                 block = old->in[0];
104                 if (! block) {
105                         block = is_Block(nw) ? nw : get_nodes_block(nw);
106
107                         if (! block) {
108                                 DDMN(old);
109                                 DDMN(nw);
110                                 assert(0 && "cannot find legal block for id");
111                         }
112                 }
113
114                 old->op    = op_Id;
115                 old->in    = NEW_ARR_D (ir_node *, irg->obst, 2);
116                 old->in[0] = block;
117                 old->in[1] = nw;
118         }
119 }
120
121 /*--------------------------------------------------------------------*/
122 /*  Functionality for collect_phis                                    */
123 /*--------------------------------------------------------------------*/
124
125 /**
126  * Walker: links all Phi nodes to their Blocks and
127  *         all Proj nodes to there predecessors
128  */
129 static void collect(ir_node *n, void *env) {
130         ir_node *pred;
131
132         if (is_Phi(n)) {
133                 set_irn_link(n, get_irn_link(get_nodes_block(n)));
134                 set_irn_link(get_nodes_block(n), n);
135         }
136         else if (is_Proj(n)) {
137                 pred = n;
138                 do {
139                         pred = get_Proj_pred(pred);
140                 } while (is_Proj(pred));
141
142                 set_irn_link(n, get_irn_link(pred));
143                 set_irn_link(pred, n);
144         }
145 }
146
147 void collect_phiprojs(ir_graph *irg) {
148         irg_walk_graph(irg, firm_clear_link, collect, NULL);
149 }
150
151
152 /*--------------------------------------------------------------------*/
153 /*  Functionality for part_block                                      */
154 /*--------------------------------------------------------------------*/
155
156 /**
157  * Moves node and all predecessors of node from from_bl to to_bl.
158  * Does not move predecessors of Phi nodes (or block nodes).
159  */
160 static void move(ir_node *node, ir_node *from_bl, ir_node *to_bl) {
161         int i, arity;
162         ir_node *proj, *pred;
163
164         /* move this node */
165         set_nodes_block(node, to_bl);
166
167         /* move its projs */
168         if (get_irn_mode(node) == mode_T) {
169                 proj = get_irn_link(node);
170                 while (proj) {
171                         if (get_nodes_block(proj) == from_bl)
172                                 set_nodes_block(proj, to_bl);
173                         proj = get_irn_link(proj);
174                 }
175         }
176
177         /* recursion ... */
178         if (get_irn_op(node) == op_Phi) return;
179
180         arity = get_irn_arity(node);
181         for (i = 0; i < arity; i++) {
182                 pred = get_irn_n(node, i);
183                 if (get_nodes_block(pred) == from_bl)
184                         move(pred, from_bl, to_bl);
185         }
186 }
187
188 void part_block(ir_node *node) {
189         ir_node *new_block;
190         ir_node *old_block;
191         ir_node *phi;
192
193         /* Turn off optimizations so that blocks are not merged again. */
194         int rem_opt = get_opt_optimize();
195         set_optimize(0);
196
197         /* Transform the control flow */
198         old_block = get_nodes_block(node);
199         new_block = new_Block(get_Block_n_cfgpreds(old_block),
200                 get_Block_cfgpred_arr(old_block));
201         set_irg_current_block(current_ir_graph, new_block);
202         {
203                 ir_node *jmp = new_Jmp();
204                 set_irn_in(old_block, 1, &jmp);
205                 irn_vrfy_irg(old_block, current_ir_graph);
206         }
207
208         /* move node and its predecessors to new_block */
209         move(node, old_block, new_block);
210
211         /* move Phi nodes to new_block */
212         phi = get_irn_link(old_block);
213         set_irn_link(new_block, phi);
214         set_irn_link(old_block, NULL);
215         while (phi) {
216                 if(get_nodes_block(phi) == old_block);   /* @@@ inlinening chokes on phis that don't
217                                                                                                  obey this condition.  How do they get into
218                                                                                                  the list??? Example: InterfaceIII */
219                 set_nodes_block(phi, new_block);
220                 phi = get_irn_link(phi);
221         }
222
223         set_optimize(rem_opt);
224 }