Fixed initialization of option tables
[libfirm] / ir / be / bessadestr.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       Performs SSA-Destruction.
23  * @author      Daniel Grund
24  * @date        25.05.2005
25  * @version     $Id$
26  */
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include "debug.h"
32 #include "set.h"
33 #include "pmap.h"
34 #include "irnode_t.h"
35 #include "ircons_t.h"
36 #include "iredges_t.h"
37 #include "irgwalk.h"
38 #include "irgmod.h"
39 #include "irdump.h"
40 #include "irprintf.h"
41
42 #include "be_t.h"
43 #include "beutil.h"
44 #include "bechordal_t.h"
45 #include "bearch_t.h"
46 #include "belive_t.h"
47 #include "benode_t.h"
48 #include "besched_t.h"
49 #include "benodesets.h"
50 #include "bestatevent.h"
51 #include "beirg_t.h"
52 #include "beintlive_t.h"
53
54 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
55
56 #define get_chordal_arch(ce) ((ce)->birg->main_env->arch_env)
57 #define get_reg(irn) arch_get_irn_register(get_chordal_arch(chordal_env), irn)
58 #define set_reg(irn, reg) arch_set_irn_register(get_chordal_arch(chordal_env), irn, reg)
59
60 #define is_Perm(irn)            (arch_irn_class_is(arch_env, irn, perm))
61 #define get_reg_cls(irn)        (arch_get_irn_reg_class(arch_env, irn, -1))
62 #define is_curr_reg_class(irn)  (get_reg_cls(p) == chordal_env->cls)
63
64 static void clear_link(ir_node *irn, void *data) {
65         (void) data;
66         set_irn_link(irn, NULL);
67 }
68
69 /**
70  * For each block build a linked list of phis that
71  *  - are in that block
72  *  - have the current register class
73  * The list is rooted at get_irn_link(BB).
74  */
75 static void collect_phis_walker(ir_node *irn, void *data) {
76         be_chordal_env_t *env = data;
77         if (is_Phi(irn) && chordal_has_class(env, irn)) {
78                 ir_node *bl = get_nodes_block(irn);
79                 set_irn_link(irn, get_irn_link(bl));
80                 set_irn_link(bl, irn);
81         }
82 }
83
84 /**
85  * This struct represents a Proj for a Perm.
86  * It records the argument in the Perm and the corresponding Proj of the
87  * Perm.
88  */
89 typedef struct {
90         ir_node *arg;  /**< The phi argument to make the Proj for. */
91         int pos;       /**< The proj number the Proj will get.
92                                                                          This also denotes the position of @p arg
93                                                                          in the in array of the Perm. */
94         ir_node *proj; /**< The proj created for @p arg. */
95 } perm_proj_t;
96
97 static int cmp_perm_proj(const void *a, const void *b, size_t n) {
98         const perm_proj_t *p = a;
99         const perm_proj_t *q = b;
100         (void) n;
101
102         return !(p->arg == q->arg);
103 }
104
105 typedef struct insert_all_perms_env_t {
106         be_chordal_env_t *chordal_env;
107         pmap *perm_map;
108 } insert_all_perms_env_t;
109
110 /**
111  * Insert Perms in all predecessors of a block containing a phi
112  */
113 static void insert_all_perms_walker(ir_node *bl, void *data) {
114         insert_all_perms_env_t *env = data;
115         be_chordal_env_t *chordal_env = env->chordal_env;
116         pmap *perm_map = env->perm_map;
117         ir_graph *irg = chordal_env->irg;
118         be_lv_t *lv = chordal_env->birg->lv;
119         int i, n;
120
121         assert(is_Block(bl));
122
123         /* If the link flag is NULL, this block has no phis. */
124         if(!get_irn_link(bl))
125                 return;
126
127         /* Look at all predecessors of the phi block */
128         for(i = 0, n = get_irn_arity(bl); i < n; ++i) {
129                 ir_node *phi, *perm, *insert_after, **in;
130                 perm_proj_t *pp;
131                 set *arg_set     = new_set(cmp_perm_proj, chordal_env->cls->n_regs);
132                 ir_node *pred_bl = get_Block_cfgpred_block(bl, i);
133                 int n_projs      = 0;
134
135                 assert(!pmap_contains(perm_map, pred_bl) && "Already permed that block");
136
137                 /*
138                  * Note that all phis in the list are in the same
139                  * register class by construction.
140                  */
141                 for(phi = get_irn_link(bl); phi; phi = get_irn_link(phi)) {
142                         perm_proj_t templ;
143                         ir_node *arg     = get_irn_n(phi, i);
144                         unsigned hash    = nodeset_hash(arg);
145
146                         templ.arg  = arg;
147                         pp         = set_find(arg_set, &templ, sizeof(templ), hash);
148
149                         /*
150                          * If a proj_perm_t entry has not been made in the argument set,
151                          * create one. The only restriction is, that the phi argument
152                          * may not be live in at the current block, since this argument
153                          * interferes with the phi and must thus not be member of a
154                          * Perm. A copy will be inserted for this argument alter on.
155                          */
156                         if(!pp && !be_is_live_in(lv, bl, arg)) {
157                                 templ.pos = n_projs++;
158                                 set_insert(arg_set, &templ, sizeof(templ), hash);
159                         }
160                 }
161
162
163                 if (n_projs) {
164                         /*
165                          * Create a new Perm with the arguments just collected
166                          * above in the arg_set and insert it into the schedule.
167                          */
168                         in = xmalloc(n_projs * sizeof(in[0]));
169                         for(pp = set_first(arg_set); pp; pp = set_next(arg_set))
170                                 in[pp->pos] = pp->arg;
171
172                         perm = be_new_Perm(chordal_env->cls, irg, pred_bl, n_projs, in);
173                         be_stat_ev("phi_perm", n_projs);
174
175                         insert_after = sched_skip(sched_last(pred_bl), 0, sched_skip_cf_predicator, chordal_env->birg->main_env->arch_env);
176                         sched_add_after(insert_after, perm);
177
178                         /*
179                          * Make the Projs for the Perm and insert into schedule.
180                          * Register allocation is copied from the former phi
181                          * arguments to the projs (new phi arguments).
182                          */
183                         insert_after = perm;
184                         for(pp = set_first(arg_set); pp; pp = set_next(arg_set)) {
185                                 ir_node *proj = new_r_Proj(irg, pred_bl, perm, get_irn_mode(pp->arg), pp->pos);
186                                 pp->proj = proj;
187                                 assert(get_reg(pp->arg));
188                                 set_reg(proj, get_reg(pp->arg));
189                                 sched_add_after(insert_after, proj);
190                                 insert_after = proj;
191                                 DBG((dbg, LEVEL_2, "Copy register assignment %s from %+F to %+F\n", get_reg(pp->arg)->name, pp->arg, pp->proj));
192                         }
193
194                         /*
195                          * Set the phi nodes to their new arguments: The Projs of the Perm
196                          */
197                         for(phi = get_irn_link(bl); phi; phi = get_irn_link(phi)) {
198                                 perm_proj_t templ;
199
200                                 templ.arg = get_irn_n(phi, i);
201                                 pp        = set_find(arg_set, &templ, sizeof(templ), nodeset_hash(templ.arg));
202
203                                 /* If not found, it was an interfering argument */
204                                 if (pp) {
205                                         set_irn_n(phi, i, pp->proj);
206                                         be_liveness_introduce(lv, pp->proj);
207                                 }
208                         }
209
210                         /* update the liveness of the Perm's operands. It might be changed. */
211                         {
212                                 int i;
213                                 for (i = 0; i < n_projs; ++i)
214                                         be_liveness_update(lv, in[i]);
215                         }
216                         free(in);
217
218                         /* register in perm map */
219                         pmap_insert(perm_map, pred_bl, perm);
220                 }
221
222                 del_set(arg_set);
223         }
224 }
225
226 #define is_pinned(irn) (get_irn_link(irn))
227 #define get_pinning_block(irn) ((ir_node *)get_irn_link(irn))
228 #define pin_irn(irn, lock) (set_irn_link(irn, lock))
229
230 /**
231  * Adjusts the register allocation for the (new) phi-operands
232  * and insert duplicates iff necessary.
233  */
234 static void     set_regs_or_place_dupls_walker(ir_node *bl, void *data) {
235         be_chordal_env_t *chordal_env = data;
236         be_lv_t *lv = chordal_env->birg->lv;
237         ir_node *phi;
238
239         /* Consider all phis of this block */
240         for (phi = get_irn_link(bl); phi; phi = get_irn_link(phi)) {
241                 int i, max;
242                 ir_node *arg, *phi_block, *arg_block;
243                 const arch_register_t *phi_reg, *arg_reg;
244                 const arch_register_class_t *cls;
245
246                 assert(is_Phi(phi) && "Can only handle phi-destruction :)");
247
248                 phi_block = get_nodes_block(phi);
249                 phi_reg   = get_reg(phi);
250                 cls       = arch_get_irn_reg_class(get_chordal_arch(chordal_env), phi, -1);
251
252                 /* process all arguments of the phi */
253                 for (i = 0, max = get_irn_arity(phi); i < max; ++i) {
254                         arg       = get_irn_n(phi, i);
255                         arg_block = get_Block_cfgpred_block(phi_block, i);
256                         arg_reg   = get_reg(arg);
257
258                         assert(arg_reg && "Register must be set while placing perms");
259
260                         DBG((dbg, LEVEL_1, "  for %+F(%s) -- %+F(%s)\n", phi, phi_reg->name, arg, arg_reg->name));
261
262                         if (values_interfere(chordal_env->birg, phi, arg)) {
263                                 /*
264                                         Insert a duplicate in arguments block,
265                                         make it the new phi arg,
266                                         set its register,
267                                         insert it into schedule,
268                                         pin it
269                                 */
270                                 ir_node *dupl  = be_new_Copy(cls, chordal_env->irg, arg_block, arg);
271
272                                 /* this is commented out because it will fail in case of unknown float */
273 #if 0
274                                 ir_mode *m_phi = get_irn_mode(phi), *m_dupl = get_irn_mode(dupl);
275
276                                 /*
277                                         Conv signed <-> unsigned is killed on ia32
278                                         check for: (both int OR both float) AND equal mode sizes
279                                 */
280                                 assert(((mode_is_int(m_phi) && mode_is_int(m_dupl)) ||
281                                         (mode_is_float(m_phi) && mode_is_float(m_dupl))) &&
282                                         (get_mode_size_bits(m_phi) == get_mode_size_bits(m_dupl)));
283 #endif /* if 0 */
284
285                                 set_irn_n(phi, i, dupl);
286                                 set_reg(dupl, phi_reg);
287                                 sched_add_after(sched_skip(sched_last(arg_block), 0, sched_skip_cf_predicator, chordal_env->birg->main_env->arch_env), dupl);
288                                 pin_irn(dupl, phi_block);
289                                 be_liveness_introduce(lv, dupl);
290                                 be_liveness_update(lv, arg);
291                                 DBG((dbg, LEVEL_1, "    they do interfere: insert %+F(%s)\n", dupl, get_reg(dupl)->name));
292                                 continue; /* with next argument */
293                         }
294
295                         if (phi_reg == arg_reg) {
296                                 /* Phi and arg have the same register, so pin and continue */
297                                 pin_irn(arg, phi_block);
298                                 DBG((dbg, LEVEL_1, "      arg has same reg: pin %+F(%s)\n", arg, get_reg(arg)->name));
299                                 continue;
300                         }
301
302                         DBG((dbg, LEVEL_1, "    they do not interfere\n"));
303                         assert(is_Proj(arg));
304                         /*
305                                 First check if there is an other phi
306                                 - in the same block
307                                 - having arg at the current pos in its arg-list
308                                 - having the same color as arg
309
310                                 If found, then pin the arg (for that phi)
311                         */
312                         if (! is_pinned(arg)) {
313                                 ir_node *other_phi;
314
315                                 DBG((dbg, LEVEL_1, "      searching for phi with same arg having args register\n"));
316
317                                 for(other_phi = get_irn_link(phi_block); other_phi; other_phi = get_irn_link(other_phi)) {
318
319                                         assert(is_Phi(other_phi)                               &&
320                                                 get_nodes_block(phi) == get_nodes_block(other_phi) &&
321                                                 "link fields are screwed up");
322
323                                         if (get_irn_n(other_phi, i) == arg && get_reg(other_phi) == arg_reg) {
324                                                 DBG((dbg, LEVEL_1, "        found %+F(%s)\n", other_phi, get_reg(other_phi)->name));
325                                                 pin_irn(arg, phi_block);
326                                                 break;
327                                         }
328                                 }
329                         }
330
331                         if (is_pinned(arg)) {
332                                 /*
333                                         Insert a duplicate of the original value in arguments block,
334                                         make it the new phi arg,
335                                         set its register,
336                                         insert it into schedule,
337                                         pin it
338                                 */
339                                 ir_node *perm     = get_Proj_pred(arg);
340                                 ir_node *dupl     = be_new_Copy(cls, chordal_env->irg, arg_block, arg);
341                                 ir_node *ins;
342
343                                 /* this is commented out because it will fail in case of unknown float */
344 #if 0
345                                 ir_mode *m_phi    = get_irn_mode(phi);
346                                 ir_mode *m_dupl   = get_irn_mode(dupl);
347
348                                 /*
349                                         Conv signed <-> unsigned is killed on ia32
350                                         check for: (both int OR both float) AND equal mode sizes
351                                 */
352                                 assert(((mode_is_int(m_phi) && mode_is_int(m_dupl)) ||
353                                         (mode_is_float(m_phi) && mode_is_float(m_dupl))) &&
354                                         (get_mode_size_bits(m_phi) == get_mode_size_bits(m_dupl)));
355 #endif /* if 0 */
356
357                                 set_irn_n(phi, i, dupl);
358                                 set_reg(dupl, phi_reg);
359                                 /* skip the Perm's Projs and insert the copies behind. */
360                                 for(ins = sched_next(perm); is_Proj(ins); ins = sched_next(ins));
361                                 sched_add_before(ins, dupl);
362                                 pin_irn(dupl, phi_block);
363                                 be_liveness_introduce(lv, dupl);
364                                 be_liveness_update(lv, arg);
365                                 DBG((dbg, LEVEL_1, "      arg is pinned: insert %+F(%s)\n", dupl, get_reg(dupl)->name));
366                         } else {
367                                 /*
368                                         No other phi has the same color (else arg would have been pinned),
369                                         so just set the register and pin
370                                 */
371                                 set_reg(arg, phi_reg);
372                                 pin_irn(arg, phi_block);
373                                 DBG((dbg, LEVEL_1, "      arg is not pinned: so pin %+F(%s)\n", arg, get_reg(arg)->name));
374                         }
375                 }
376         }
377 }
378
379 void be_ssa_destruction(be_chordal_env_t *chordal_env) {
380         insert_all_perms_env_t insert_perms_env;
381         pmap *perm_map = pmap_create();
382         ir_graph *irg  = chordal_env->irg;
383         be_lv_t *lv    = be_assure_liveness(chordal_env->birg);
384
385         FIRM_DBG_REGISTER(dbg, "ir.be.ssadestr");
386
387         be_liveness_assure_sets(lv);
388
389         /* create a map for fast lookup of perms: block --> perm */
390         irg_walk_graph(irg, clear_link, collect_phis_walker, chordal_env);
391
392         DBG((dbg, LEVEL_1, "Placing perms...\n"));
393         insert_perms_env.chordal_env = chordal_env;
394         insert_perms_env.perm_map = perm_map;
395         irg_block_walk_graph(irg, insert_all_perms_walker, NULL, &insert_perms_env);
396
397         // Matze: really needed here?
398         // Sebastian: Yes. the walker function uses interference.
399         be_liveness_invalidate(lv);
400
401         if (chordal_env->opts->dump_flags & BE_CH_DUMP_SSADESTR)
402                 be_dump(irg, "-ssa_destr_perms_placed", dump_ir_block_graph_sched);
403
404         be_liveness_assure_chk(lv);
405
406         DBG((dbg, LEVEL_1, "Setting regs and placing dupls...\n"));
407         irg_block_walk_graph(irg, set_regs_or_place_dupls_walker, NULL, chordal_env);
408
409         /* TODO: unfortunaltely updating doesn't work yet. */
410         be_liveness_invalidate(lv);
411
412         if (chordal_env->opts->dump_flags & BE_CH_DUMP_SSADESTR)
413                 be_dump(irg, "-ssa_destr_regs_set", dump_ir_block_graph_sched);
414
415         pmap_destroy(perm_map);
416 }
417
418 static void ssa_destruction_check_walker(ir_node *bl, void *data) {
419         be_chordal_env_t *chordal_env = data;
420         ir_node *phi;
421         int i, max;
422
423         for (phi = get_irn_link(bl); phi; phi = get_irn_link(phi)) {
424                 const arch_register_t *phi_reg, *arg_reg;
425
426                 phi_reg = get_reg(phi);
427                 /* iterate over all args of phi */
428                 for (i = 0, max = get_irn_arity(phi); i < max; ++i) {
429                         ir_node *arg = get_irn_n(phi, i);
430
431                         arg_reg = get_reg(arg);
432
433                         if (phi_reg != arg_reg) {
434                                 DBG((dbg, 0, "Error: Registers of %+F and %+F differ: %s %s\n", phi, arg, phi_reg->name, arg_reg->name));
435                                 assert(0);
436                         }
437
438                         if (! is_pinned(arg)) {
439                                 DBG((dbg, 0, "Warning: Phi argument %+F is not pinned.\n", arg));
440                                 assert(0);
441                         }
442                 }
443         }
444 }
445
446 void be_ssa_destruction_check(be_chordal_env_t *chordal_env) {
447         irg_block_walk_graph(chordal_env->irg, ssa_destruction_check_walker, NULL, chordal_env);
448 }