more asserts
[libfirm] / ir / be / bessaconstr.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       SSA construction for a set of nodes
23  * @author      Sebastian Hack, Daniel Grund, Matthias Braun, Christian Wuerdig
24  * @date        04.05.2005
25  * @version     $Id$
26  *
27  * The problem: Given a value and a set of "copies" that are known to
28  * represent the same abstract value, rewire all usages of the original value
29  * to their closest copy while introducing phis as necessary.
30  *
31  * Algorithm: Mark all blocks in the iterated dominance frontiers of the value
32  * and it's copies. Link the copies ordered by dominance to the blocks.  The
33  * we search for each use all all definitions in the current block, if none is
34  * found, then we search one in the immediate dominator. If we are in a block
35  * of the dominance frontier, create a phi and search do the same search for
36  * the phi arguments.
37  *
38  * A copy in this context means, that you want to introduce several new
39  * abstract values (in Firm: nodes) for which you know, that they
40  * represent the same concrete value. This is the case if you
41  * - copy
42  * - spill and reload
43  * - re-materialize
44  * a value.
45  *
46  * This function reroutes all uses of the original value to the copies in the
47  * corresponding dominance subtrees and creates Phi functions where necessary.
48  */
49 #ifdef HAVE_CONFIG_H
50 #include "config.h"
51 #endif
52
53 #include "bessaconstr.h"
54 #include "bemodule.h"
55 #include "besched_t.h"
56 #include "beintlive_t.h"
57 #include "beirg_t.h"
58
59 #include "debug.h"
60 #include "error.h"
61 #include "pdeq.h"
62 #include "array.h"
63 #include "irdom.h"
64
65 #include "ircons.h"
66 #include "iredges_t.h"
67
68 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
69
70 /**
71  * Calculates the iterated dominance frontier of a set of blocks. Marks the
72  * blocks as visited. Sets the link fields of the blocks in the dominance
73  * frontier to the block itself.
74  */
75 static
76 void mark_iterated_dominance_frontiers(const be_dom_front_info_t *domfronts,
77                                        waitq *worklist)
78 {
79         DBG((dbg, LEVEL_3, "Dominance Frontier:"));
80         while(!pdeq_empty(worklist)) {
81                 int i;
82                 ir_node *block = waitq_get(worklist);
83                 ir_node **domfront = be_get_dominance_frontier(domfronts, block);
84                 int domfront_len = ARR_LEN(domfront);
85
86                 for (i = 0; i < domfront_len; ++i) {
87                         ir_node *y = domfront[i];
88                         if(Block_block_visited(y))
89                                 continue;
90
91                         if(!irn_visited(y)) {
92                                 set_irn_link(y, NULL);
93                                 waitq_put(worklist, y);
94                         }
95                         DBG((dbg, LEVEL_3, " %+F", y));
96                         mark_Block_block_visited(y);
97                 }
98         }
99         DBG((dbg, LEVEL_3, "\n"));
100 }
101
102 static
103 ir_node *search_def_end_of_block(be_ssa_construction_env_t *env,
104                                  ir_node *block);
105
106 static
107 ir_node *create_phi(be_ssa_construction_env_t *env, ir_node *block,
108                     ir_node *link_with)
109 {
110         int i, n_preds = get_Block_n_cfgpreds(block);
111         ir_graph *irg = get_irn_irg(block);
112         ir_node *phi;
113         ir_node **ins = alloca(n_preds * sizeof(ins[0]));
114
115         assert(n_preds > 1);
116
117         for(i = 0; i < n_preds; ++i) {
118                 ins[i] = new_r_Unknown(irg, env->mode);
119         }
120         phi = new_r_Phi(irg, block, n_preds, ins, env->mode);
121         if(env->new_phis != NULL) {
122                 ARR_APP1(ir_node*, env->new_phis, phi);
123         }
124
125         if(env->mode != mode_M) {
126                 sched_add_after(block, phi);
127         }
128
129         DBG((dbg, LEVEL_2, "\tcreating phi %+F in %+F\n", phi, block));
130         set_irn_link(link_with, phi);
131         mark_irn_visited(block);
132
133         for(i = 0; i < n_preds; ++i) {
134                 ir_node *pred_block = get_Block_cfgpred_block(block, i);
135                 ir_node *pred_def   = search_def_end_of_block(env, pred_block);
136
137                 set_irn_n(phi, i, pred_def);
138         }
139
140         return phi;
141 }
142
143 static
144 ir_node *get_def_at_idom(be_ssa_construction_env_t *env, ir_node *block)
145 {
146         ir_node *dom = get_Block_idom(block);
147         assert(dom != NULL);
148         ir_node *def = search_def_end_of_block(env, dom);
149
150         return def;
151 }
152
153 static
154 ir_node *search_def_end_of_block(be_ssa_construction_env_t *env, ir_node *block)
155 {
156         if(irn_visited(block)) {
157                 assert(get_irn_link(block) != NULL);
158                 return get_irn_link(block);
159         } else if(Block_block_visited(block)) {
160                 return create_phi(env, block, block);
161         } else {
162                 ir_node *def = get_def_at_idom(env, block);
163                 mark_irn_visited(block);
164                 set_irn_link(block, def);
165
166                 return def;
167         }
168 }
169
170 static
171 ir_node *search_def(be_ssa_construction_env_t *env, ir_node *at)
172 {
173         ir_node *block = get_nodes_block(at);
174         ir_node *node;
175         ir_node *def;
176
177         DBG((dbg, LEVEL_3, "\t...searching def at %+F\n", at));
178
179         /* no defs in the current block we can do the normal searching */
180         if(!irn_visited(block) && !Block_block_visited(block)) {
181                 DBG((dbg, LEVEL_3, "\t...continue at idom\n"));
182                 return get_def_at_idom(env, block);
183         }
184
185         /* there are defs in the current block, walk the linked list to find
186            the one immediately dominating us
187          */
188         node = block;
189         def  = get_irn_link(node);
190         while(def != NULL) {
191                 if(!value_dominates(at, def)) {
192                         DBG((dbg, LEVEL_3, "\t...found dominating def %+F\n", def));
193                         return def;
194                 }
195
196                 node = def;
197                 def  = get_irn_link(node);
198         }
199
200         /* block in dominance frontier? create a phi then */
201         if(Block_block_visited(block)) {
202                 DBG((dbg, LEVEL_3, "\t...create phi at block %+F\n", block));
203                 assert(!is_Phi(node));
204                 return create_phi(env, block, node);
205         }
206
207
208         DBG((dbg, LEVEL_3, "\t...continue at idom (after checking block)\n"));
209         return get_def_at_idom(env, block);
210 }
211
212 /**
213  * Adds a definition into the link field of the block. The definitions are
214  * sorted by dominance. A non-visited block means no definition has been
215  * inserted yet.
216  */
217 static
218 void introduce_def_at_block(ir_node *block, ir_node *def)
219 {
220         if(irn_visited(block)) {
221                 ir_node *node = block;
222                 ir_node *current_def;
223
224                 while(1) {
225                         current_def = get_irn_link(node);
226                         if(current_def == def) {
227                                 /* already in block */
228                                 return;
229                         }
230                         if(current_def == NULL)
231                                 break;
232                         if(value_dominates(current_def, def))
233                                 break;
234                         node = current_def;
235                 }
236
237                 set_irn_link(node, def);
238                 set_irn_link(def, current_def);
239         } else {
240                 set_irn_link(block, def);
241                 set_irn_link(def, NULL);
242                 mark_irn_visited(block);
243         }
244 }
245
246 void be_ssa_construction_init(be_ssa_construction_env_t *env, be_irg_t *birg)
247 {
248         ir_graph *irg = be_get_birg_irg(birg);
249         memset(env, 0, sizeof(env[0]));
250
251         be_assure_dom_front(birg);
252
253         env->irg       = irg;
254         env->domfronts = be_get_birg_dom_front(birg);
255         env->new_phis  = NEW_ARR_F(ir_node*, 0);
256         env->worklist  = new_waitq();
257
258         set_using_visited(irg);
259         set_using_block_visited(irg);
260         set_using_irn_link(irg);
261
262         /* we use the visited flag to indicate blocks in the dominance frontier
263          * and blocks that already have the relevant value at the end calculated */
264         inc_irg_visited(irg);
265         /* We use the block visited flag to indicate blocks in the dominance
266          * froniter of some values (and this potentially needing phis) */
267         inc_irg_block_visited(irg);
268 }
269
270 void be_ssa_construction_destroy(be_ssa_construction_env_t *env)
271 {
272         del_waitq(env->worklist);
273         DEL_ARR_F(env->new_phis);
274
275         clear_using_visited(env->irg);
276         clear_using_block_visited(env->irg);
277         clear_using_irn_link(env->irg);
278 }
279
280 void be_ssa_construction_add_copy(be_ssa_construction_env_t *env,
281                                   ir_node *copy)
282 {
283         ir_node *block;
284
285         assert(env->iterated_domfront_calculated == 0);
286
287         if(env->mode == NULL) {
288                 env->mode = get_irn_mode(copy);
289         } else {
290                 assert(env->mode == get_irn_mode(copy));
291         }
292
293         block = get_nodes_block(copy);
294
295         if(!irn_visited(block)) {
296                 waitq_put(env->worklist, block);
297         }
298         introduce_def_at_block(block, copy);
299 }
300
301 void be_ssa_construction_add_copies(be_ssa_construction_env_t *env,
302                                     ir_node **copies, size_t copies_len)
303 {
304         size_t i;
305
306         assert(env->iterated_domfront_calculated == 0);
307
308         if(env->mode == NULL) {
309                 env->mode = get_irn_mode(copies[0]);
310         }
311
312         for(i = 0; i < copies_len; ++i) {
313                 ir_node *copy = copies[i];
314                 ir_node *block = get_nodes_block(copy);
315
316                 assert(env->mode == get_irn_mode(copy));
317                 if(!irn_visited(block)) {
318                         waitq_put(env->worklist, block);
319                 }
320                 introduce_def_at_block(block, copy);
321         }
322 }
323
324 void be_ssa_construction_set_ignore_uses(be_ssa_construction_env_t *env,
325                                          const ir_nodeset_t *ignore_uses)
326 {
327         env->ignore_uses = ignore_uses;
328 }
329
330 ir_node **be_ssa_construction_get_new_phis(be_ssa_construction_env_t *env)
331 {
332         return env->new_phis;
333 }
334
335 void be_ssa_construction_fix_users(be_ssa_construction_env_t *env,
336                                    ir_node *value)
337 {
338         const ir_edge_t *edge, *next;
339
340         if(!env->iterated_domfront_calculated) {
341                 mark_iterated_dominance_frontiers(env->domfronts, env->worklist);
342                 env->iterated_domfront_calculated = 1;
343         }
344
345         /*
346          * Search the valid def for each use and set it.
347          */
348         foreach_out_edge_safe(value, edge, next) {
349                 ir_node *use = get_edge_src_irn(edge);
350                 ir_node *at  = use;
351                 int pos      = get_edge_src_pos(edge);
352                 ir_node *def;
353
354                 if(env->ignore_uses != NULL     &&
355                    ir_nodeset_contains(env->ignore_uses, use))
356                         continue;
357
358                 if(is_Phi(use)) {
359                         ir_node *block = get_nodes_block(use);
360                         ir_node *predblock = get_Block_cfgpred_block(block, pos);
361                         at = sched_last(predblock);
362                 }
363
364                 def = search_def(env, at);
365
366                 if(def == NULL) {
367                         panic("no definition found for %+F at position %d\n", use, pos);
368                 }
369
370                 DBG((dbg, LEVEL_2, "\t%+F(%d) -> %+F\n", use, pos, def));
371                 set_irn_n(use, pos, def);
372         }
373 }
374
375 void be_ssa_construction_fix_users_array(be_ssa_construction_env_t *env,
376                                          ir_node **nodes, size_t nodes_len)
377 {
378         size_t i;
379
380         for(i = 0; i < nodes_len; ++i) {
381                 ir_node *node = nodes[i];
382                 be_ssa_construction_fix_users(env, node);
383         }
384 }
385
386 void be_ssa_construction_update_liveness_phis(be_ssa_construction_env_t *env,
387                                               be_lv_t *lv)
388 {
389         int i, n;
390
391         n = ARR_LEN(env->new_phis);
392         for(i = 0; i < n; ++i) {
393                 ir_node *phi = env->new_phis[i];
394                 be_liveness_introduce(lv, phi);
395         }
396 }
397
398 void be_init_ssaconstr(void)
399 {
400         FIRM_DBG_REGISTER(dbg, "firm.be.ssaconstr");
401 }
402
403 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_ssaconstr);