we don't need no stinking selfs
[libfirm] / ir / be / beirgmod.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       Backend IRG modification routines.
23  * @author      Sebastian Hack, Daniel Grund, Matthias Braun, Christian Wuerdig
24  * @date        04.05.2005
25  * @version     $Id$
26  *
27  * This file contains the following IRG modifications for be routines:
28  * - insertion of Perm nodes
29  * - empty block elimination
30  * - a simple dead node elimination (set inputs of unreachable nodes to BAD)
31  */
32 #ifdef HAVE_CONFIG_H
33 #include "config.h"
34 #endif
35
36 #include <stdlib.h>
37
38 #include "hashptr.h"
39 #include "pdeq.h"
40 #include "pset.h"
41 #include "pmap.h"
42 #include "util.h"
43 #include "debug.h"
44 #include "error.h"
45 #include "xmalloc.h"
46
47 #include "irflag_t.h"
48 #include "ircons_t.h"
49 #include "irnode_t.h"
50 #include "ircons_t.h"
51 #include "irmode_t.h"
52 #include "irdom_t.h"
53 #include "iredges_t.h"
54 #include "irgraph_t.h"
55 #include "irgopt.h"
56 #include "irprintf_t.h"
57 #include "irgwalk.h"
58
59 #include "be_t.h"
60 #include "bechordal_t.h"
61 #include "bearch_t.h"
62 #include "besched_t.h"
63 #include "belive_t.h"
64 #include "benode_t.h"
65 #include "beutil.h"
66 #include "beinsn_t.h"
67 #include "bessaconstr.h"
68 #include "beirg_t.h"
69 #include "beirgmod.h"
70 #include "bemodule.h"
71
72 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
73
74 /*
75   ___                     _     ____
76  |_ _|_ __  ___  ___ _ __| |_  |  _ \ ___ _ __ _ __ ___
77   | || '_ \/ __|/ _ \ '__| __| | |_) / _ \ '__| '_ ` _ \
78   | || | | \__ \  __/ |  | |_  |  __/  __/ |  | | | | | |
79  |___|_| |_|___/\___|_|   \__| |_|   \___|_|  |_| |_| |_|
80
81 */
82
83 ir_node *insert_Perm_after(be_irg_t *birg,
84                                                    const arch_register_class_t *cls,
85                                                    ir_node *pos)
86 {
87         const arch_env_t *arch_env = &birg->main_env->arch_env;
88         be_lv_t *lv     = birg->lv;
89         ir_node *bl     = is_Block(pos) ? pos : get_nodes_block(pos);
90         ir_graph *irg   = get_irn_irg(bl);
91         ir_nodeset_t          live;
92         ir_nodeset_iterator_t iter;
93
94         ir_node *curr, *irn, *perm, **nodes;
95         size_t i, n;
96
97         DBG((dbg, LEVEL_1, "Insert Perm after: %+F\n", pos));
98
99         ir_nodeset_init(&live);
100         be_liveness_nodes_live_at(lv, arch_env, cls, pos, &live);
101
102         n = ir_nodeset_size(&live);
103         if(n == 0) {
104                 ir_nodeset_destroy(&live);
105                 return NULL;
106         }
107
108         nodes = xmalloc(n * sizeof(nodes[0]));
109
110         DBG((dbg, LEVEL_1, "live:\n"));
111         i = 0;
112         foreach_ir_nodeset(&live, irn, iter) {
113                 DBG((dbg, LEVEL_1, "\t%+F\n", irn));
114                 nodes[i] = irn;
115                 i++;
116         }
117         ir_nodeset_destroy(&live);
118
119         perm = be_new_Perm(cls, irg, bl, n, nodes);
120         sched_add_after(pos, perm);
121         free(nodes);
122
123         curr = perm;
124         for (i = 0; i < n; ++i) {
125                 ir_node *perm_op = get_irn_n(perm, i);
126                 const arch_register_t *reg = arch_get_irn_register(arch_env, perm_op);
127                 be_ssa_construction_env_t senv;
128
129                 ir_mode *mode = get_irn_mode(perm_op);
130                 ir_node *proj = new_r_Proj(irg, bl, perm, mode, i);
131                 arch_set_irn_register(arch_env, proj, reg);
132
133                 curr = proj;
134
135                 be_ssa_construction_init(&senv, birg);
136                 be_ssa_construction_add_copy(&senv, perm_op);
137                 be_ssa_construction_add_copy(&senv, proj);
138                 be_ssa_construction_fix_users(&senv, perm_op);
139                 be_ssa_construction_update_liveness_phis(&senv, lv);
140                 be_liveness_update(lv, perm_op);
141                 be_liveness_update(lv, proj);
142                 be_ssa_construction_destroy(&senv);
143         }
144
145         return perm;
146 }
147
148 static int blocks_removed;
149
150 /**
151  * Post-block-walker: Find blocks containing only one jump and
152  * remove them.
153  */
154 static void remove_empty_block(ir_node *block)
155 {
156         const ir_edge_t *edge, *next;
157         int      i, arity;
158         ir_node *node;
159         ir_node *pred;
160         ir_node *succ_block;
161         ir_node *jump = NULL;
162
163         if (irn_visited(block))
164                 return;
165
166         mark_irn_visited(block);
167         if (get_Block_n_cfgpreds(block) != 1)
168                 goto check_preds;
169
170         sched_foreach(block, node) {
171                 if (! is_Jmp(node))
172                         goto check_preds;
173                 if (jump != NULL) {
174                         /* we should never have 2 jumps in a block */
175                         panic("found 2 jumps in a block");
176                 }
177                 jump = node;
178         }
179
180         if (jump == NULL)
181                 goto check_preds;
182
183         pred       = get_Block_cfgpred(block, 0);
184         succ_block = NULL;
185         foreach_out_edge_safe(jump, edge, next) {
186                 int pos = get_edge_src_pos(edge);
187
188                 assert(succ_block == NULL);
189                 succ_block = get_edge_src_irn(edge);
190
191                 set_irn_n(succ_block, pos, pred);
192         }
193
194         /* there can be some non-scheduled Pin nodes left in the block, move them
195          * to the succ block */
196         foreach_out_edge_safe(block, edge, next) {
197                 node = get_edge_src_irn(edge);
198
199                 if(node == jump)
200                         continue;
201                 if (is_Block(node)) {
202                         /* a Block->Block edge: This should be the MacroBlock
203                            edge, ignore it. */
204                         assert(get_Block_MacroBlock(node) == block && "Wrong Block->Block edge");
205                         continue;
206                 }
207                 if (is_Pin(node)) {
208                         set_nodes_block(node, succ_block);
209                         continue;
210                 }
211                 if (is_Sync(node)) {
212                         set_nodes_block(node, get_nodes_block(pred));
213                         continue;
214                 }
215                 panic("Unexpected node %+F in block %+F with empty schedule", node, block);
216         }
217
218         set_Block_cfgpred(block, 0, new_Bad());
219         be_kill_node(jump);
220         blocks_removed = 1;
221
222         /* check predecessor */
223         remove_empty_block(get_nodes_block(pred));
224         return;
225
226 check_preds:
227         arity = get_Block_n_cfgpreds(block);
228         for(i = 0; i < arity; ++i) {
229                 ir_node *pred = get_Block_cfgpred_block(block, i);
230                 remove_empty_block(pred);
231         }
232 }
233
234 /* removes basic blocks that just contain a jump instruction */
235 int be_remove_empty_blocks(ir_graph *irg)
236 {
237         ir_node *end;
238         int      i, arity;
239
240         blocks_removed = 0;
241
242         set_using_irn_visited(irg);
243         inc_irg_visited(irg);
244         remove_empty_block(get_irg_end_block(irg));
245         end   = get_irg_end(irg);
246         arity = get_irn_arity(end);
247         for(i = 0; i < arity; ++i) {
248                 ir_node *pred = get_irn_n(end, i);
249                 if(!is_Block(pred))
250                         continue;
251                 remove_empty_block(pred);
252         }
253         clear_using_irn_visited(irg);
254
255         if (blocks_removed) {
256                 /* invalidate analysis info */
257                 set_irg_doms_inconsistent(irg);
258                 set_irg_extblk_inconsistent(irg);
259                 set_irg_outs_inconsistent(irg);
260         }
261         return blocks_removed;
262 }
263
264 void be_init_irgmod(void)
265 {
266         FIRM_DBG_REGISTER(dbg, "firm.be.irgmod");
267 }
268
269 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_irgmod);