ad-hoc fix for lfoat compares (this is not mallons optimal solution yet)
[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 #include "error.h"
42
43 /**
44  * Turns a node into a "useless" Tuple.  The Tuple just forms a tuple
45  * from several inputs.
46  * This is useful if a node returning a tuple is removed, but the Projs
47  * extracting values from the tuple are not available.
48  */
49 void turn_into_tuple(ir_node *node, int arity) {
50         assert(node);
51         set_irn_op(node, op_Tuple);
52         if (get_irn_arity(node) == arity) {
53                 /* keep old array */
54         } else {
55                 ir_node *block = get_nodes_block(node);
56                 /* Allocate new array, don't free old in_array, it's on the obstack. */
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         ir_graph *irg;
72
73         assert(old && nw);
74         assert(old != nw && "Exchanging node with itself is not allowed");
75
76         irg = get_irn_irg(old);
77         assert(irg == get_irn_irg(nw) && "New node must be in same irg as old node");
78
79         hook_replace(old, nw);
80
81         /*
82          * If new outs are on, we can skip the id node creation and reroute
83          * the edges from the old node to the new directly.
84          */
85         if (edges_activated(irg)) {
86                 /* copy all dependencies from old to new */
87                 add_irn_deps(nw, old);
88
89                 edges_reroute(old, nw, irg);
90                 edges_reroute_kind(old, nw, EDGE_KIND_DEP, irg);
91                 edges_node_deleted(old, irg);
92                 old->op = op_Bad;
93         } else {
94                 /* Else, do it the old-fashioned way. */
95                 ir_node *block;
96
97                 assert(get_irn_op(old)->opar != oparity_dynamic);
98
99                 hook_turn_into_id(old);
100
101                 block = old->in[0];
102                 if (! block) {
103                         block = is_Block(nw) ? nw : get_nodes_block(nw);
104
105                         if (! block) {
106                                 panic("cannot find legal block for id");
107                         }
108                 }
109
110                 old->op    = op_Id;
111                 old->in    = NEW_ARR_D (ir_node *, irg->obst, 2);
112                 old->in[0] = block;
113                 old->in[1] = nw;
114         }
115 }
116
117 /*--------------------------------------------------------------------*/
118 /*  Functionality for collect_phis                                    */
119 /*--------------------------------------------------------------------*/
120
121 /**
122  * Walker: links all Phi nodes to their Blocks and
123  *         all Proj nodes to there predecessors
124  */
125 static void collect(ir_node *n, void *env) {
126         ir_node *pred;
127         (void) env;
128
129         if (is_Phi(n)) {
130                 set_irn_link(n, get_irn_link(get_nodes_block(n)));
131                 set_irn_link(get_nodes_block(n), 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         irg_walk_graph(irg, firm_clear_link, collect, NULL);
145 }
146
147
148 /*--------------------------------------------------------------------*/
149 /*  Functionality for part_block                                      */
150 /*--------------------------------------------------------------------*/
151
152 /**
153  * Moves node and all predecessors of node from from_bl to to_bl.
154  * Does not move predecessors of Phi nodes (or block nodes).
155  */
156 static void move(ir_node *node, ir_node *from_bl, ir_node *to_bl) {
157         int i, arity;
158         ir_node *pred;
159
160         /* move this node: Projs are moved automagically */
161         if (! is_Proj(node))
162                 set_nodes_block(node, to_bl);
163
164         /* recursion ... */
165         if (get_irn_op(node) == op_Phi) return;
166
167         arity = get_irn_arity(node);
168         for (i = 0; i < arity; i++) {
169                 pred = get_irn_n(node, i);
170                 if (get_nodes_block(pred) == from_bl)
171                         move(pred, from_bl, to_bl);
172         }
173 }
174
175 void part_block(ir_node *node) {
176         ir_node *new_block;
177         ir_node *old_block;
178         ir_node *phi;
179
180         /* Turn off optimizations so that blocks are not merged again. */
181         int rem_opt = get_opt_optimize();
182         set_optimize(0);
183
184         /* Transform the control flow */
185         old_block = get_nodes_block(node);
186         new_block = new_Block(get_Block_n_cfgpreds(old_block),
187                 get_Block_cfgpred_arr(old_block));
188         set_irg_current_block(current_ir_graph, new_block);
189         {
190                 ir_node *jmp = new_Jmp();
191                 set_irn_in(old_block, 1, &jmp);
192                 irn_vrfy_irg(old_block, current_ir_graph);
193         }
194
195         /* move node and its predecessors to new_block */
196         move(node, old_block, new_block);
197
198         /* move Phi nodes to new_block */
199         phi = get_irn_link(old_block);
200         set_irn_link(new_block, phi);
201         set_irn_link(old_block, NULL);
202         while (phi) {
203                 set_nodes_block(phi, new_block);
204                 phi = get_irn_link(phi);
205         }
206
207         set_optimize(rem_opt);
208 }
209
210 /* kill a node by setting its predecessors to Bad and finally exchange the node by Bad itself. */
211 void kill_node(ir_node *node) {
212         ir_graph *irg = get_irn_irg(node);
213         ir_node *bad = get_irg_bad(irg);
214         int i;
215
216         for (i = get_irn_arity(node) - 1; i >= -1; --i) {
217                 set_irn_n(node, i, bad);
218         }
219         exchange(node, bad);
220 }