fix bugs when exchanging nodes to projs in bepeephole
[libfirm] / ir / be / beirgmod.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       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 /**
149  * Post-block-walker: Find blocks containing only one jump and
150  * remove them.
151  */
152 static void remove_empty_block(ir_node *block, void *data) {
153         const ir_edge_t *edge, *next;
154         ir_node *node;
155         ir_node *pred_block;
156         ir_node *succ_block;
157         int *changed = data;
158         ir_node *jump = NULL;
159
160         assert(is_Block(block));
161
162         if (get_Block_n_cfgpreds(block) != 1)
163                 return;
164
165         sched_foreach(block, node) {
166                 if (! is_Jmp(node))
167                         return;
168                 if (jump != NULL) {
169                         /* we should never have 2 jumps in a block */
170                         panic("found 2 jumps in a block");
171                 }
172                 jump = node;
173         }
174
175         if (jump == NULL)
176                 return;
177
178         pred_block = get_Block_cfgpred(block, 0);
179         succ_block = NULL;
180         foreach_out_edge_safe(jump, edge, next) {
181                 int pos = get_edge_src_pos(edge);
182
183                 assert(succ_block == NULL);
184                 succ_block = get_edge_src_irn(edge);
185
186                 set_irn_n(succ_block, pos, pred_block);
187         }
188
189         /* there can be some non-scheduled Pin nodes left in the block, move them
190          * to the succ block */
191         foreach_out_edge_safe(block, edge, next) {
192                 node = get_edge_src_irn(edge);
193
194                 if(node == jump)
195                         continue;
196                 if(is_Pin(node)) {
197                         set_nodes_block(node, succ_block);
198                         continue;
199                 }
200                 panic("Unexpected node %+F in block %+F with empty schedule", node,
201                       block);
202         }
203
204         set_Block_cfgpred(block, 0, new_Bad());
205         be_kill_node(jump);
206         *changed = 1;
207 }
208
209 /* removes basic blocks that just contain a jump instruction */
210 int be_remove_empty_blocks(ir_graph *irg) {
211         int changed = 0;
212
213         irg_block_walk_graph(irg, remove_empty_block, NULL, &changed);
214         if (changed) {
215                 /* invalidate analysis info */
216                 set_irg_doms_inconsistent(irg);
217                 set_irg_extblk_inconsistent(irg);
218                 set_irg_outs_inconsistent(irg);
219         }
220         return changed;
221 }
222
223 void be_init_irgmod(void)
224 {
225         FIRM_DBG_REGISTER(dbg, "firm.be.irgmod");
226 }
227
228 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_irgmod);