removed two not absolutely necessary const's preventing warnings on VC7
[libfirm] / ir / be / bepeephole.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       Peephole optimisation framework keeps track of which registers contain which values
23  * @author      Matthias Braun
24  * @version     $Id$
25  */
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #include "bepeephole.h"
31
32 #include "iredges_t.h"
33 #include "irgwalk.h"
34 #include "irprintf.h"
35 #include "irgmod.h"
36 #include "error.h"
37
38 #include "beirg_t.h"
39 #include "belive_t.h"
40 #include "bearch_t.h"
41 #include "benode_t.h"
42 #include "besched_t.h"
43 #include "bemodule.h"
44
45 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
46
47 static const arch_env_t *arch_env;
48 static be_lv_t          *lv;
49 static ir_node          *current_node;
50 ir_node               ***register_values;
51
52 static void clear_reg_value(ir_node *node)
53 {
54         const arch_register_t       *reg;
55         const arch_register_class_t *cls;
56         unsigned                     reg_idx;
57         unsigned                     cls_idx;
58
59         if(!mode_is_data(get_irn_mode(node)))
60                 return;
61
62         reg     = arch_get_irn_register(arch_env, node);
63         if(reg == NULL) {
64                 panic("No register assigned at %+F\n", node);
65         }
66         if(arch_register_type_is(reg, virtual))
67                 return;
68         cls     = arch_register_get_class(reg);
69         reg_idx = arch_register_get_index(reg);
70         cls_idx = arch_register_class_index(cls);
71
72         //assert(register_values[cls_idx][reg_idx] != NULL);
73         DBG((dbg, LEVEL_1, "Clear Register %s\n", reg->name));
74         register_values[cls_idx][reg_idx] = NULL;
75 }
76
77 static void set_reg_value(ir_node *node)
78 {
79         const arch_register_t       *reg;
80         const arch_register_class_t *cls;
81         unsigned                     reg_idx;
82         unsigned                     cls_idx;
83
84         if(!mode_is_data(get_irn_mode(node)))
85                 return;
86
87         reg = arch_get_irn_register(arch_env, node);
88         if(reg == NULL) {
89                 panic("No register assigned at %+F\n", node);
90         }
91         if(arch_register_type_is(reg, virtual))
92                 return;
93         cls     = arch_register_get_class(reg);
94         reg_idx = arch_register_get_index(reg);
95         cls_idx = arch_register_class_index(cls);
96
97         DBG((dbg, LEVEL_1, "Set Register %s: %+F\n", reg->name, node));
98         register_values[cls_idx][reg_idx] = node;
99 }
100
101 static void clear_defs(ir_node *node)
102 {
103         /* clear values defined */
104         if(get_irn_mode(node) == mode_T) {
105                 const ir_edge_t *edge;
106                 foreach_out_edge(node, edge) {
107                         ir_node *proj = get_edge_src_irn(edge);
108                         clear_reg_value(proj);
109                 }
110         } else {
111                 clear_reg_value(node);
112         }
113 }
114
115 static void set_uses(ir_node *node)
116 {
117         int i, arity;
118
119         /* set values used */
120         arity = get_irn_arity(node);
121         for(i = 0; i < arity; ++i) {
122                 ir_node *in = get_irn_n(node, i);
123                 set_reg_value(in);
124         }
125 }
126
127 void be_peephole_new_node(ir_node * nw)
128 {
129         be_liveness_introduce(lv, nw);
130 }
131
132 /**
133  * must be called from peephole optimisations before a node will be killed
134  * and its users will be redirected to new_node.
135  * so bepeephole can update it's internal state.
136  *
137  * Note: killing a node and rewiring os only allowed if new_node produces
138  * the same registers as old_node.
139  */
140 void be_peephole_before_exchange(const ir_node *old_node, ir_node *new_node)
141 {
142         const arch_register_t       *reg;
143         const arch_register_class_t *cls;
144         unsigned                     reg_idx;
145         unsigned                     cls_idx;
146
147         DBG((dbg, LEVEL_1, "About to exchange and kill %+F with %+F\n", old_node, new_node));
148
149         if (current_node == old_node) {
150                 /* next node to be processed will be killed. Its scheduling predecessor
151                  * must be processed next. */
152                 current_node = sched_next(current_node);
153                 assert (!is_Bad(current_node));
154         }
155
156         if (!mode_is_data(get_irn_mode(old_node)))
157                 return;
158
159         reg = arch_get_irn_register(arch_env, old_node);
160         if (reg == NULL) {
161                 panic("No register assigned at %+F\n", old_node);
162         }
163         assert(reg == arch_get_irn_register(arch_env, new_node) &&
164               "KILLING a node and replacing by different register is not allowed");
165
166         cls     = arch_register_get_class(reg);
167         reg_idx = arch_register_get_index(reg);
168         cls_idx = arch_register_class_index(cls);
169
170         if (register_values[cls_idx][reg_idx] == old_node) {
171                 register_values[cls_idx][reg_idx] = new_node;
172         }
173
174         be_liveness_remove(lv, old_node);
175 }
176
177 void be_peephole_exchange(ir_node *old, ir_node *nw)
178 {
179         be_peephole_before_exchange(old, nw);
180         sched_remove(old);
181         exchange(old, nw);
182         be_peephole_new_node(nw);
183 }
184
185 /**
186  * block-walker: run peephole optimization on the given block.
187  */
188 static void process_block(ir_node *block, void *data)
189 {
190         unsigned n_classes;
191         unsigned i;
192         int l;
193         (void) data;
194
195         /* construct initial register assignment */
196         n_classes = arch_env_get_n_reg_class(arch_env);
197         for(i = 0; i < n_classes; ++i) {
198                 const arch_register_class_t *cls    = arch_env_get_reg_class(arch_env, i);
199                 unsigned                     n_regs = arch_register_class_n_regs(cls);
200                 memset(register_values[i], 0, sizeof(ir_node*) * n_regs);
201         }
202
203         assert(lv->nodes && "live sets must be computed");
204         DBG((dbg, LEVEL_1, "\nProcessing block %+F (from end)\n", block));
205         be_lv_foreach(lv, block, be_lv_state_end, l) {
206                 ir_node *node = be_lv_get_irn(lv, block, l);
207                 set_reg_value(node);
208         }
209         DBG((dbg, LEVEL_1, "\nstart processing\n"));
210
211         /* walk the block from last insn to the first */
212         current_node = sched_last(block);
213         for( ; !sched_is_begin(current_node);
214                         current_node = sched_prev(current_node)) {
215                 ir_op             *op;
216                 peephole_opt_func  peephole_node;
217
218                 assert(!is_Bad(current_node));
219                 if (is_Phi(current_node))
220                         break;
221
222                 clear_defs(current_node);
223                 set_uses(current_node);
224
225                 op            = get_irn_op(current_node);
226                 peephole_node = (peephole_opt_func)op->ops.generic;
227                 if (peephole_node == NULL)
228                         continue;
229
230                 peephole_node(current_node);
231                 assert(!is_Bad(current_node));
232         }
233 }
234
235 /**
236  * Walk through the block schedule and skip all barrier nodes.
237  */
238 static void skip_barrier(ir_node *ret_blk, ir_graph *irg) {
239         ir_node *irn;
240
241         sched_foreach_reverse(ret_blk, irn) {
242                 if (be_is_Barrier(irn)) {
243                         const ir_edge_t *edge, *next;
244
245                         foreach_out_edge_safe(irn, edge, next) {
246                                 ir_node *proj = get_edge_src_irn(edge);
247                                 int      pn   = (int)get_Proj_proj(proj);
248                                 ir_node *pred = get_irn_n(irn, pn);
249
250                                 edges_reroute_kind(proj, pred, EDGE_KIND_NORMAL, irg);
251                                 edges_reroute_kind(proj, pred, EDGE_KIND_DEP, irg);
252                         }
253                         sched_remove(irn);
254                         kill_node(irn);
255                         break;
256                 }
257         }
258 }
259
260 /**
261  * Kill the Barrier nodes for better peephole optimization.
262  */
263 static void     kill_barriers(ir_graph *irg) {
264         ir_node *end_blk = get_irg_end_block(irg);
265         ir_node *start_blk;
266         int i;
267
268         /* skip the barrier on all return blocks */
269         for (i = get_Block_n_cfgpreds(end_blk) - 1; i >= 0; --i) {
270                 ir_node *be_ret = get_Block_cfgpred(end_blk, i);
271                 ir_node *ret_blk = get_nodes_block(be_ret);
272
273                 skip_barrier(ret_blk, irg);
274         }
275
276         /* skip the barrier on the start block */
277         start_blk = get_irg_start_block(irg);
278         skip_barrier(start_blk, irg);
279 }
280
281 /*
282  * Tries to optimize a beIncSp node with it's previous IncSP node.
283  * Must be run from a be_peephole_opt() context.
284  */
285 ir_node *be_peephole_IncSP_IncSP(ir_node *node)
286 {
287         int      pred_offs;
288         int      curr_offs;
289         int      offs;
290         ir_node *pred = be_get_IncSP_pred(node);
291
292         if (!be_is_IncSP(pred))
293                 return node;
294
295         if (get_irn_n_edges(pred) > 1)
296                 return node;
297
298         pred_offs = be_get_IncSP_offset(pred);
299         curr_offs = be_get_IncSP_offset(node);
300
301         if (pred_offs == BE_STACK_FRAME_SIZE_EXPAND) {
302                 if (curr_offs != BE_STACK_FRAME_SIZE_SHRINK) {
303                         return node;
304                 }
305                 offs = 0;
306         } else if (pred_offs == BE_STACK_FRAME_SIZE_SHRINK) {
307                 if (curr_offs != BE_STACK_FRAME_SIZE_EXPAND) {
308                         return node;
309                 }
310                 offs = 0;
311         } else if (curr_offs == BE_STACK_FRAME_SIZE_EXPAND ||
312                    curr_offs == BE_STACK_FRAME_SIZE_SHRINK) {
313                 return node;
314         } else {
315                 offs = curr_offs + pred_offs;
316         }
317
318         /* add node offset to pred and remove our IncSP */
319         be_set_IncSP_offset(pred, offs);
320
321         be_peephole_exchange(node, pred);
322         return pred;
323 }
324
325 void be_peephole_opt(be_irg_t *birg)
326 {
327         ir_graph   *irg = be_get_birg_irg(birg);
328         unsigned n_classes;
329         unsigned i;
330
331         /* barrier nodes are used for register allocations. They hinders
332          * peephole optimizations, so remove them here. */
333         kill_barriers(irg);
334
335         /* we sometimes find BadE nodes in float apps like optest_float.c or
336          * kahansum.c for example... */
337         be_liveness_invalidate(birg->lv);
338         be_liveness_assure_sets(be_assure_liveness(birg));
339
340         arch_env = be_get_birg_arch_env(birg);
341         lv       = be_get_birg_liveness(birg);
342
343         n_classes = arch_env_get_n_reg_class(arch_env);
344         register_values = alloca(sizeof(register_values[0]) * n_classes);
345         for(i = 0; i < n_classes; ++i) {
346                 const arch_register_class_t *cls    = arch_env_get_reg_class(arch_env, i);
347                 unsigned                     n_regs = arch_register_class_n_regs(cls);
348                 register_values[i] = alloca(sizeof(ir_node*) * n_regs);
349         }
350
351         irg_block_walk_graph(irg, process_block, NULL, NULL);
352 }
353
354 void be_peephole_init(void)
355 {
356         clear_irp_opcodes_generic_func();
357 }
358
359 void be_init_peephole(void)
360 {
361         FIRM_DBG_REGISTER(dbg, "firm.be.peephole");
362 }
363
364 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_spillbelady);