Add the -f{,no-}deconv switches do {en,dis}able the conv node optimization.
[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 <assert.h>
44 #include "convopt.h"
45 #include "debug.h"
46 #include "ircons.h"
47 #include "irgmod.h"
48 #include "irnode_t.h"
49 #include "iredges_t.h"
50 #include "irgwalk.h"
51 #include "irprintf.h"
52
53 DEBUG_ONLY(static firm_dbg_module_t *dbg);
54
55 static
56 int is_optimizable_node(const ir_node *node)
57 {
58         if(is_Const(node)) {
59                 ir_mode *mode = get_irn_mode(node);
60                 /* tarval module is incomplete and can't convert floats to ints */
61                 if(!mode_is_int(mode))
62                         return 0;
63                 return 1;
64         }
65         return is_Add(node) || is_Sub(node) || is_Mul(node);
66 }
67
68 static
69 int get_conv_costs(const ir_node *node, ir_mode *dest_mode)
70 {
71         ir_mode *mode = get_irn_mode(node);
72
73         if(mode == dest_mode)
74                 return 0;
75
76         /* TODO... */
77         if(!is_Const(node) && get_irn_n_edges(node) > 1) {
78                 DB((dbg, LEVEL_3, "multi outs at %+F\n", node));
79                 return 1;
80         }
81
82         if(is_Conv(node)) {
83                 return get_conv_costs(get_Conv_op(node), dest_mode) - 1;
84         }
85
86         if(is_optimizable_node(node)) {
87                 int i;
88                 int arity = get_irn_arity(node);
89                 int costs = 0;
90
91                 for(i = 0; i < arity; ++i) {
92                         ir_node *pred = get_irn_n(node, i);
93                         costs += get_conv_costs(pred, dest_mode);
94                 }
95
96                 return costs;
97         }
98
99         return 1;
100 }
101
102 static
103 ir_node *conv_transform(ir_node *node, ir_mode *dest_mode)
104 {
105         size_t arity;
106         size_t i;
107
108         if (get_irn_mode(node) == dest_mode)
109                 return node;
110
111         if (is_Const(node)) {
112                 tarval *tv = tarval_convert_to(get_Const_tarval(node), dest_mode);
113                 assert(get_tarval_mode(tv) == dest_mode);
114                 return new_Const(dest_mode, tv);
115         }
116
117         if (!is_optimizable_node(node) || get_irn_n_edges(node) > 1) {
118                 ir_node *block = get_nodes_block(node);
119                 ir_node *conv = new_r_Conv(current_ir_graph, block, node, dest_mode);
120                 return conv;
121         }
122
123         if (is_Conv(node))
124                 return conv_transform(get_Conv_op(node), dest_mode);
125
126         arity = get_irn_arity(node);
127         for (i = 0; i < arity; i++) {
128                 ir_node *pred = get_irn_n(node, i);
129                 ir_node *transformed = conv_transform(pred, dest_mode);
130                 set_irn_n(node, i, transformed);
131         }
132         set_irn_mode(node, dest_mode);
133         return node;
134 }
135
136 static
137 int is_downconv(ir_mode *src_mode, ir_mode *dest_mode)
138 {
139         if(!mode_is_int(src_mode) || !mode_is_int(dest_mode))
140                 return 0;
141         if(get_mode_size_bits(dest_mode) >= get_mode_size_bits(src_mode))
142                 return 0;
143
144         return 1;
145 }
146
147 /* TODO, backends can't handle and it's probably not more efficient on most
148    archs */
149 #if 0
150 static
151 void try_optimize_cmp(ir_node *node)
152 {
153         ir_node *left  = get_Cmp_left(node);
154         ir_node *right = get_Cmp_right(node);
155         ir_node *conv  = NULL;
156
157         if(is_downconv
158 }
159 #endif
160
161 static
162 void conv_opt_walker(ir_node *node, void *data)
163 {
164         ir_node *transformed;
165         ir_node *pred;
166         ir_mode *pred_mode;
167         ir_mode *mode;
168         int costs;
169
170 #if 0
171         if(is_Cmp(node)) {
172                 try_optimize_cmp(node);
173                 return;
174         }
175 #endif
176
177         if(!is_Conv(node))
178                 return;
179
180         pred      = get_Conv_op(node);
181         mode      = get_irn_mode(node);
182         pred_mode = get_irn_mode(pred);
183
184         if(!is_downconv(pred_mode, mode))
185                 return;
186
187         costs = get_conv_costs(pred, mode);
188         DB((dbg, LEVEL_2, "Costs for %+F -> %+F: %d\n", node, pred, costs));
189         if (costs >= 0) return;
190
191         transformed = conv_transform(pred, mode);
192         exchange(node, transformed);
193 }
194
195 void conv_opt(ir_graph *irg)
196 {
197         FIRM_DBG_REGISTER(dbg, "firm.opt.conv");
198
199         DB((dbg, LEVEL_1, "===> Performing conversion optimization on %+F\n", irg));
200
201         edges_assure(irg);
202         irg_walk_graph(irg, conv_opt_walker, NULL, NULL);
203 }