fixed warnigns
[libfirm] / ir / opt / convopt.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   conv node optimisation
23  * @author  Matthias Braun, Christoph Mallon
24  * @version $Id$
25  *
26  * Try to minimize the number of conv nodes by changing modes of operations.
27  * The typical example is the following structure:
28  *    (some node mode_Hs)
29  *            |                                       (some node_Hs)
30  *         Conv Is                                          |
31  *            |                                          Add Hs
32  *          Add Is            gets transformed to           |
33  *            |
34  *         Conv Hs
35  *
36  * TODO: * try to optimize cmp modes
37  *       * decide when it is useful to move the convs through phis
38  */
39 #ifdef HAVE_CONFIG_H
40 #include "config.h"
41 #endif
42
43 #include "iroptimize.h"
44
45 #include <assert.h>
46 #include "debug.h"
47 #include "ircons.h"
48 #include "irgmod.h"
49 #include "irgopt.h"
50 #include "irnode_t.h"
51 #include "iredges_t.h"
52 #include "irgwalk.h"
53 #include "irprintf.h"
54
55 DEBUG_ONLY(static firm_dbg_module_t *dbg);
56
57 static
58 int is_optimizable_node(const ir_node *node)
59 {
60         return
61                 is_Add(node) ||
62                 is_Sub(node) ||
63                 is_Mul(node) ||
64                 is_Phi(node);
65 }
66
67 static tarval* conv_const_tv(const ir_node* cnst, ir_mode* dest_mode)
68 {
69         return tarval_convert_to(get_Const_tarval(cnst), dest_mode);
70 }
71
72 static
73 int get_conv_costs(const ir_node *node, ir_mode *dest_mode)
74 {
75         ir_mode *mode = get_irn_mode(node);
76         size_t arity;
77         size_t i;
78         int costs;
79
80         if (mode == dest_mode)
81                 return 0;
82
83         if (is_Const(node)) {
84                 /* TODO tarval module is incomplete and can't convert floats to ints */
85                 return conv_const_tv(node, dest_mode) == tarval_bad ? 1 : 0;
86         }
87
88         if (get_irn_n_edges(node) > 1) {
89                 DB((dbg, LEVEL_3, "multi outs at %+F\n", node));
90                 return 1;
91         }
92
93         if (is_Conv(node)) {
94                 return get_conv_costs(get_Conv_op(node), dest_mode) - 1;
95         }
96
97         if (!is_optimizable_node(node)) {
98                 return 1;
99         }
100
101         costs = 0;
102         arity = get_irn_arity(node);
103         for (i = 0; i < arity; ++i) {
104                 ir_node *pred = get_irn_n(node, i);
105                 costs += get_conv_costs(pred, dest_mode);
106         }
107
108         return costs;
109 }
110
111 static ir_node *place_conv(ir_node *node, ir_mode *dest_mode)
112 {
113         ir_node *block = get_nodes_block(node);
114         ir_node *conv = new_r_Conv(current_ir_graph, block, node, dest_mode);
115         return conv;
116 }
117
118 static
119 ir_node *conv_transform(ir_node *node, ir_mode *dest_mode)
120 {
121         size_t arity;
122         size_t i;
123
124         if (get_irn_mode(node) == dest_mode)
125                 return node;
126
127         if (is_Const(node)) {
128                 /* TODO tarval module is incomplete and can't convert floats to ints */
129                 tarval *tv = conv_const_tv(node, dest_mode);
130                 if (tv == tarval_bad) {
131                         return place_conv(node, dest_mode);
132                 } else {
133                         return new_Const(dest_mode, tv);
134                 }
135         }
136
137         if (get_irn_n_edges(node) > 1) {
138                 return place_conv(node, dest_mode);
139         }
140
141         if (is_Conv(node)) {
142                 return conv_transform(get_Conv_op(node), dest_mode);
143         }
144
145         if (!is_optimizable_node(node)) {
146                 return place_conv(node, dest_mode);
147         }
148
149         arity = get_irn_arity(node);
150         for (i = 0; i < arity; i++) {
151                 ir_node *pred = get_irn_n(node, i);
152                 ir_node *transformed = conv_transform(pred, dest_mode);
153                 set_irn_n(node, i, transformed);
154         }
155         set_irn_mode(node, dest_mode);
156         return node;
157 }
158
159 static
160 int is_downconv(ir_mode *src_mode, ir_mode *dest_mode)
161 {
162         return
163                 mode_is_int(src_mode) &&
164                 mode_is_int(dest_mode) &&
165                 get_mode_size_bits(dest_mode) < get_mode_size_bits(src_mode);
166 }
167
168 /* TODO, backends (at least ia23) can't handle it at the moment,
169    and it's probably not more efficient on most
170    archs */
171 #if 0
172 static
173 void try_optimize_cmp(ir_node *node)
174 {
175         ir_node *left  = get_Cmp_left(node);
176         ir_node *right = get_Cmp_right(node);
177         ir_node *conv  = NULL;
178
179         if(is_downconv
180 }
181 #endif
182
183 static char changed;
184
185 static
186 void conv_opt_walker(ir_node *node, void *data)
187 {
188         ir_node *transformed;
189         ir_node *pred;
190         ir_mode *pred_mode;
191         ir_mode *mode;
192         int costs;
193         (void) data;
194
195 #if 0
196         if(is_Cmp(node)) {
197                 try_optimize_cmp(node);
198                 return;
199         }
200 #endif
201
202         if (!is_Conv(node))
203                 return;
204
205         pred      = get_Conv_op(node);
206         mode      = get_irn_mode(node);
207         pred_mode = get_irn_mode(pred);
208
209         if (!is_Phi(pred) && !is_downconv(pred_mode, mode))
210                 return;
211
212         /* - 1 for the initial conv */
213         costs = get_conv_costs(pred, mode) - 1;
214         DB((dbg, LEVEL_2, "Costs for %+F -> %+F: %d\n", node, pred, costs));
215         if (costs >= 0) return;
216
217         transformed = conv_transform(pred, mode);
218         exchange(node, transformed);
219         changed = 1;
220 }
221
222 void conv_opt(ir_graph *irg)
223 {
224         char invalidate = 0;
225         FIRM_DBG_REGISTER(dbg, "firm.opt.conv");
226
227         DB((dbg, LEVEL_1, "===> Performing conversion optimization on %+F\n", irg));
228
229         edges_assure(irg);
230         do {
231                 changed = 0;
232                 irg_walk_graph(irg, NULL, conv_opt_walker, NULL);
233                 local_optimize_graph(irg);
234                 invalidate |= changed;
235         } while (changed);
236
237         if (invalidate) {
238                 set_irg_outs_inconsistent(irg);
239         }
240 }