Remove the unused parameter const arch_env_t *arch_env from be_liveness_nodes_live_at().
[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 "irgmod.h"
57 #include "irprintf_t.h"
58 #include "irgwalk.h"
59
60 #include "be_t.h"
61 #include "bechordal_t.h"
62 #include "bearch_t.h"
63 #include "besched_t.h"
64 #include "belive_t.h"
65 #include "benode_t.h"
66 #include "beutil.h"
67 #include "beinsn_t.h"
68 #include "bessaconstr.h"
69 #include "beirg_t.h"
70 #include "beirgmod.h"
71 #include "bemodule.h"
72
73 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
74
75 /*
76   ___                     _     ____
77  |_ _|_ __  ___  ___ _ __| |_  |  _ \ ___ _ __ _ __ ___
78   | || '_ \/ __|/ _ \ '__| __| | |_) / _ \ '__| '_ ` _ \
79   | || | | \__ \  __/ |  | |_  |  __/  __/ |  | | | | | |
80  |___|_| |_|___/\___|_|   \__| |_|   \___|_|  |_| |_| |_|
81
82 */
83
84 ir_node *insert_Perm_after(be_irg_t *birg,
85                                                    const arch_register_class_t *cls,
86                                                    ir_node *pos)
87 {
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, 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 = XMALLOCN(ir_node*, n);
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(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(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_else_mark(block))
164                 return;
165
166         if (get_Block_n_cfgpreds(block) != 1)
167                 goto check_preds;
168
169         sched_foreach(block, node) {
170                 if (! is_Jmp(node))
171                         goto check_preds;
172                 if (jump != NULL) {
173                         /* we should never have 2 jumps in a block */
174                         panic("found 2 jumps in a block");
175                 }
176                 jump = node;
177         }
178
179         if (jump == NULL)
180                 goto check_preds;
181
182         pred       = get_Block_cfgpred(block, 0);
183         succ_block = NULL;
184         foreach_out_edge_safe(jump, edge, next) {
185                 int pos = get_edge_src_pos(edge);
186
187                 assert(succ_block == NULL);
188                 succ_block = get_edge_src_irn(edge);
189
190                 set_irn_n(succ_block, pos, pred);
191         }
192
193         /* there can be some non-scheduled Pin nodes left in the block, move them
194          * to the succ block (Pin) or pred block (Sync) */
195         foreach_out_edge_safe(block, edge, next) {
196                 node = get_edge_src_irn(edge);
197
198                 if(node == jump)
199                         continue;
200                 if (is_Block(node)) {
201                         /* a Block->Block edge: This should be the MacroBlock
202                            edge, ignore it. */
203                         assert(get_Block_MacroBlock(node) == block && "Wrong Block->Block edge");
204                         continue;
205                 }
206                 if (is_Pin(node)) {
207                         set_nodes_block(node, succ_block);
208                         continue;
209                 }
210                 if (is_Sync(node)) {
211                         set_nodes_block(node, get_nodes_block(pred));
212                         continue;
213                 }
214                 if (is_End(node)) { /* End-keep, reroute it to the successor */
215                         int pos = get_edge_src_pos(edge);
216                         set_irn_n(node, pos, succ_block);
217                         continue;
218                 }
219                 panic("Unexpected node %+F in block %+F with empty schedule", node, block);
220         }
221
222         set_Block_cfgpred(block, 0, new_Bad());
223         kill_node(jump);
224         blocks_removed = 1;
225
226         /* check predecessor */
227         remove_empty_block(get_nodes_block(pred));
228         return;
229
230 check_preds:
231         arity = get_Block_n_cfgpreds(block);
232         for(i = 0; i < arity; ++i) {
233                 ir_node *pred = get_Block_cfgpred_block(block, i);
234                 remove_empty_block(pred);
235         }
236 }
237
238 /* removes basic blocks that just contain a jump instruction */
239 int be_remove_empty_blocks(ir_graph *irg)
240 {
241         ir_node *end;
242         int      i, arity;
243
244         blocks_removed = 0;
245
246         ir_reserve_resources(irg, IR_RESOURCE_IRN_VISITED);
247         inc_irg_visited(irg);
248         remove_empty_block(get_irg_end_block(irg));
249         end   = get_irg_end(irg);
250         arity = get_irn_arity(end);
251         for(i = 0; i < arity; ++i) {
252                 ir_node *pred = get_irn_n(end, i);
253                 if(!is_Block(pred))
254                         continue;
255                 remove_empty_block(pred);
256         }
257         ir_free_resources(irg, IR_RESOURCE_IRN_VISITED);
258
259         if (blocks_removed) {
260                 /* invalidate analysis info */
261                 set_irg_doms_inconsistent(irg);
262                 set_irg_extblk_inconsistent(irg);
263                 set_irg_outs_inconsistent(irg);
264                 set_irg_loopinfo_inconsistent(irg);
265         }
266         return blocks_removed;
267 }
268
269 void be_init_irgmod(void)
270 {
271         FIRM_DBG_REGISTER(dbg, "firm.be.irgmod");
272 }
273
274 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_irgmod);