some more debug output if no definition for a value is found on a path
[libfirm] / ir / be / belower.c
1 /**
2  * Author:      Christian Wuerdig
3  * Date:        2005/12/14
4  * Copyright:   (c) Universitaet Karlsruhe
5  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
6  * CVS-Id:      $Id$
7  *
8  * Performs lowering of perm nodes and spill/reload optimization.
9  */
10 #ifdef HAVE_CONFIG_H
11 #include "config.h"
12 #endif
13
14 #include <stdlib.h>
15
16 #include "ircons.h"
17 #include "debug.h"
18 #include "irhooks.h"
19
20 #include "bearch.h"
21 #include "belower.h"
22 #include "benode_t.h"
23 #include "bechordal_t.h"
24 #include "besched_t.h"
25 #include "bestat.h"
26 #include "benodesets.h"
27
28 #include "irgmod.h"
29 #include "iredges_t.h"
30 #include "irgwalk.h"
31
32 #ifdef HAVE_MALLOC_H
33  #include <malloc.h>
34 #endif
35 #ifdef HAVE_ALLOCA_H
36  #include <alloca.h>
37 #endif
38
39 #undef is_Perm
40 #define is_Perm(arch_env, irn) (arch_irn_class_is(arch_env, irn, perm))
41
42 /* associates op with it's copy and CopyKeep */
43 typedef struct {
44         ir_node *op;         /* an irn which must be different */
45         pset    *copies;     /* all non-spillable copies of this irn */
46 } op_copy_assoc_t;
47
48 /* environment for constraints */
49 typedef struct {
50         be_irg_t       *birg;
51         pset           *op_set;
52         struct obstack obst;
53 } constraint_env_t;
54
55 /* lowering walker environment */
56 typedef struct _lower_env_t {
57         be_chordal_env_t  *chord_env;
58         unsigned           do_copy:1;
59         DEBUG_ONLY(firm_dbg_module_t *dbg_module;)
60 } lower_env_t;
61
62 /* holds a perm register pair */
63 typedef struct _reg_pair_t {
64         const arch_register_t *in_reg;    /**< a perm IN register */
65         ir_node               *in_node;   /**< the in node to which the register belongs */
66
67         const arch_register_t *out_reg;   /**< a perm OUT register */
68         ir_node               *out_node;  /**< the out node to which the register belongs */
69
70         int                    checked;   /**< indicates whether the pair was check for cycle or not */
71 } reg_pair_t;
72
73 typedef enum _perm_type_t {
74         PERM_CYCLE,
75         PERM_CHAIN,
76         PERM_SWAP,
77         PERM_COPY
78 } perm_type_t;
79
80 /* structure to represent cycles or chains in a perm */
81 typedef struct _perm_cycle_t {
82         const arch_register_t **elems;       /**< the registers in the cycle */
83         int                     n_elems;     /**< number of elements in the cycle */
84         perm_type_t             type;        /**< type (CHAIN or CYCLE) */
85 } perm_cycle_t;
86
87 /* Compare the two operands */
88 static int cmp_op_copy_assoc(const void *a, const void *b) {
89         const op_copy_assoc_t *op1 = a;
90         const op_copy_assoc_t *op2 = b;
91
92         return op1->op != op2->op;
93 }
94
95 /* Compare the in registers of two register pairs */
96 static int compare_reg_pair(const void *a, const void *b) {
97         const reg_pair_t *pair_a = a;
98         const reg_pair_t *pair_b = b;
99
100         if (pair_a->in_reg->index > pair_b->in_reg->index)
101                 return 1;
102         else
103                 return -1;
104 }
105
106 /* returns the number register pairs marked as checked */
107 static int get_n_checked_pairs(reg_pair_t *pairs, int n) {
108         int i, n_checked = 0;
109
110         for (i = 0; i < n; i++) {
111                 if (pairs[i].checked)
112                         n_checked++;
113         }
114
115         return n_checked;
116 }
117
118 /**
119  * Gets the node corresponding to a register from an array of register pairs.
120  * NOTE: The given registers pairs and the register to look for must belong
121  *       to the same register class.
122  *
123  * @param pairs  The array of register pairs
124  * @param n      The number of pairs
125  * @param reg    The register to look for
126  * @param in_out 0 == look for IN register, 1 == look for OUT register
127  * @return The corresponding node or NULL if not found
128  */
129 static ir_node *get_node_for_register(reg_pair_t *pairs, int n, const arch_register_t *reg, int in_out) {
130         int i;
131
132         if (in_out) {
133                 for (i = 0; i < n; i++) {
134                         /* out register matches */
135                         if (pairs[i].out_reg->index == reg->index)
136                                 return pairs[i].out_node;
137                 }
138         }
139         else {
140                 for (i = 0; i < n; i++) {
141                         /* in register matches */
142                         if (pairs[i].in_reg->index == reg->index)
143                                 return pairs[i].in_node;
144                 }
145         }
146
147         return NULL;
148 }
149
150 /**
151  * Gets the index in the register pair array where the in/out register
152  * corresponds to reg_idx.
153  *
154  * @param pairs  The array of register pairs
155  * @param n      The number of pairs
156  * @param reg    The register index to look for
157  * @param in_out 0 == look for IN register, 1 == look for OUT register
158  * @return The corresponding index in pairs or -1 if not found
159  */
160 static int get_pairidx_for_regidx(reg_pair_t *pairs, int n, int reg_idx, int in_out) {
161         int i;
162
163         if (in_out) {
164                 for (i = 0; i < n; i++) {
165                         /* out register matches */
166                         if (pairs[i].out_reg->index == reg_idx)
167                                 return i;
168                 }
169         }
170         else {
171                 for (i = 0; i < n; i++) {
172                         /* in register matches */
173                         if (pairs[i].in_reg->index == reg_idx)
174                                 return i;
175                 }
176         }
177
178         return -1;
179 }
180
181 /**
182  * Gets an array of register pairs and tries to identify a cycle or chain starting
183  * at position start.
184  *
185  * @param cycle Variable to hold the cycle
186  * @param pairs Array of register pairs
187  * @param start Index to start
188  * @return The cycle or chain
189  */
190 static perm_cycle_t *get_perm_cycle(perm_cycle_t *cycle, reg_pair_t *pairs, int n, int start) {
191         int head         = pairs[start].in_reg->index;
192         int cur_idx      = pairs[start].out_reg->index;
193         int cur_pair_idx = start;
194         int n_pairs_done = get_n_checked_pairs(pairs, n);
195         int idx;
196         perm_type_t cycle_tp = PERM_CYCLE;
197
198         /* We could be right in the middle of a chain, so we need to find the start */
199         while (head != cur_idx) {
200                 /* goto previous register in cycle or chain */
201                 cur_pair_idx = get_pairidx_for_regidx(pairs, n, head, 1);
202
203                 if (cur_pair_idx < 0) {
204                         cycle_tp = PERM_CHAIN;
205                         break;
206                 }
207                 else {
208                         head  = pairs[cur_pair_idx].in_reg->index;
209                         start = cur_pair_idx;
210                 }
211         }
212
213         /* assume worst case: all remaining pairs build a cycle or chain */
214         cycle->elems    = xcalloc((n - n_pairs_done) * 2, sizeof(cycle->elems[0]));
215         cycle->n_elems  = 2;  /* initial number of elements is 2 */
216         cycle->elems[0] = pairs[start].in_reg;
217         cycle->elems[1] = pairs[start].out_reg;
218         cycle->type     = cycle_tp;
219         cur_idx         = pairs[start].out_reg->index;
220
221         idx = 2;
222         /* check for cycle or end of a chain */
223         while (cur_idx != head) {
224                 /* goto next register in cycle or chain */
225                 cur_pair_idx = get_pairidx_for_regidx(pairs, n, cur_idx, 0);
226
227                 if (cur_pair_idx < 0)
228                         break;
229
230                 cur_idx = pairs[cur_pair_idx].out_reg->index;
231
232                 /* it's not the first element: insert it */
233                 if (cur_idx != head) {
234                         cycle->elems[idx++] = pairs[cur_pair_idx].out_reg;
235                         cycle->n_elems++;
236                 }
237                 else {
238                         /* we are there where we started -> CYCLE */
239                         cycle->type = PERM_CYCLE;
240                 }
241         }
242
243         /* mark all pairs having one in/out register with cycle in common as checked */
244         for (idx = 0; idx < cycle->n_elems; idx++) {
245                 cur_pair_idx = get_pairidx_for_regidx(pairs, n, cycle->elems[idx]->index, 0);
246
247                 if (cur_pair_idx >= 0)
248                         pairs[cur_pair_idx].checked = 1;
249
250                 cur_pair_idx = get_pairidx_for_regidx(pairs, n, cycle->elems[idx]->index, 1);
251
252                 if (cur_pair_idx >= 0)
253                         pairs[cur_pair_idx].checked = 1;
254         }
255
256         return cycle;
257 }
258
259 /**
260  * Lowers a perm node.  Resolves cycles and creates a bunch of
261  * copy and swap operations to permute registers.
262  * Note: The caller of this function has to make sure, that irn
263  *       is a Perm node.
264  *
265  * @param irn      The perm node
266  * @param block    The block the perm node belongs to
267  * @param walk_env The environment
268  */
269 static void lower_perm_node(ir_node *irn, void *walk_env) {
270         const arch_register_class_t *reg_class;
271         const arch_env_t            *arch_env;
272         lower_env_t     *env         = walk_env;
273         int             real_size    = 0;
274         int             keep_perm    = 0;
275         int             n, i, pn, do_copy, j, n_ops;
276         reg_pair_t      *pairs;
277         const ir_edge_t *edge;
278         perm_cycle_t    *cycle;
279         ir_node         *sched_point, *block, *in[2];
280         ir_node         *arg1, *arg2, *res1, *res2;
281         ir_node         *cpyxchg = NULL;
282         DEBUG_ONLY(firm_dbg_module_t *mod;)
283
284         arch_env = env->chord_env->birg->main_env->arch_env;
285         do_copy  = env->do_copy;
286         DEBUG_ONLY(mod = env->dbg_module;)
287         block    = get_nodes_block(irn);
288
289         /*
290                 Get the schedule predecessor node to the perm
291                 NOTE: This works with auto-magic. If we insert the
292                         new copy/exchange nodes after this node, everything
293                         should be ok.
294         */
295         sched_point = sched_prev(irn);
296         DBG((mod, LEVEL_1, "sched point is %+F\n", sched_point));
297         assert(sched_point && "Perm is not scheduled or has no predecessor");
298
299         n = get_irn_arity(irn);
300         assert(n == get_irn_n_edges(irn) && "perm's in and out numbers different");
301
302         reg_class = arch_get_irn_register(arch_env, get_irn_n(irn, 0))->reg_class;
303         pairs     = alloca(n * sizeof(pairs[0]));
304
305         /* build the list of register pairs (in, out) */
306         i = 0;
307         foreach_out_edge(irn, edge) {
308                 pairs[i].out_node = get_edge_src_irn(edge);
309                 pn                = get_Proj_proj(pairs[i].out_node);
310                 pairs[i].in_node  = get_irn_n(irn, pn);
311
312                 pairs[i].in_reg  = arch_get_irn_register(arch_env, pairs[i].in_node);
313                 pairs[i].out_reg = arch_get_irn_register(arch_env, pairs[i].out_node);
314
315                 pairs[i].checked = 0;
316                 i++;
317         }
318
319         /* sort the register pairs by the indices of the in registers */
320         qsort(pairs, n, sizeof(pairs[0]), compare_reg_pair);
321
322         /* Mark all equal pairs as checked, and exchange the OUT proj with
323                 the IN node. */
324         for (i = 0; i < n; i++) {
325                 if (pairs[i].in_reg->index == pairs[i].out_reg->index) {
326                         DBG((mod, LEVEL_1, "%+F removing equal perm register pair (%+F, %+F, %s)\n",
327                                 irn, pairs[i].in_node, pairs[i].out_node, pairs[i].out_reg->name));
328
329                         /* We have to check for a special case:
330                                 The in-node could be a Proj from a Perm. In this case,
331                                 we need to correct the projnum */
332                         if (is_Perm(arch_env, pairs[i].in_node) && is_Proj(pairs[i].in_node)) {
333                                 set_Proj_proj(pairs[i].out_node, get_Proj_proj(pairs[i].in_node));
334                         }
335
336                         /* remove the proj from the schedule */
337                         sched_remove(pairs[i].out_node);
338
339                         /* reroute the edges from the proj to the argument */
340                         edges_reroute(pairs[i].out_node, pairs[i].in_node, env->chord_env->irg);
341                         set_irn_n(pairs[i].out_node, 0, new_Bad());
342
343                         pairs[i].checked = 1;
344                 }
345         }
346
347         /* Set do_copy to 0 if it's on but we have no free register */
348         if (do_copy) {
349                 do_copy = 0;
350         }
351
352         real_size = n - get_n_checked_pairs(pairs, n);
353
354         be_do_stat_perm(reg_class->name, reg_class->n_regs, irn, block, n, real_size);
355
356         /* check for cycles and chains */
357         while (get_n_checked_pairs(pairs, n) < n) {
358                 i = n_ops = 0;
359
360                 /* go to the first not-checked pair */
361                 while (pairs[i].checked) i++;
362                 cycle = xcalloc(1, sizeof(*cycle));
363                 cycle = get_perm_cycle(cycle, pairs, n, i);
364
365                 DB((mod, LEVEL_1, "%+F: following %s created:\n  ", irn, cycle->type == PERM_CHAIN ? "chain" : "cycle"));
366                 for (j = 0; j < cycle->n_elems; j++) {
367                         DB((mod, LEVEL_1, " %s", cycle->elems[j]->name));
368                 }
369                 DB((mod, LEVEL_1, "\n"));
370
371                 /*
372                         We don't need to do anything if we have a Perm with two
373                         elements which represents a cycle, because those nodes
374                         already represent exchange nodes
375                 */
376                 if (n == 2 && cycle->type == PERM_CYCLE) {
377                         free(cycle);
378                         keep_perm = 1;
379                         continue;
380                 }
381
382 //TODO: - iff PERM_CYCLE && do_copy -> determine free temp reg and insert copy to/from it before/after
383 //        the copy cascade (this reduces the cycle into a chain)
384
385                 /* build copy/swap nodes from back to front */
386                 for (i = cycle->n_elems - 2; i >= 0; i--) {
387                         arg1 = get_node_for_register(pairs, n, cycle->elems[i], 0);
388                         arg2 = get_node_for_register(pairs, n, cycle->elems[i + 1], 0);
389
390                         res1 = get_node_for_register(pairs, n, cycle->elems[i], 1);
391                         res2 = get_node_for_register(pairs, n, cycle->elems[i + 1], 1);
392                         /*
393                                 If we have a cycle and don't copy: we need to create exchange nodes
394                                 NOTE: An exchange node is a perm node with 2 INs and 2 OUTs
395                                 IN_1  = in node with register i
396                                 IN_2  = in node with register i + 1
397                                 OUT_1 = out node with register i + 1
398                                 OUT_2 = out node with register i
399                         */
400                         if (cycle->type == PERM_CYCLE && !do_copy) {
401                                 in[0] = arg1;
402                                 in[1] = arg2;
403
404                                 /* At this point we have to handle the following problem:     */
405                                 /*                                                            */
406                                 /* If we have a cycle with more than two elements, then       */
407                                 /* this could correspond to the following Perm node:          */
408                                 /*                                                            */
409                                 /*   +----+   +----+   +----+                                 */
410                                 /*   | r1 |   | r2 |   | r3 |                                 */
411                                 /*   +-+--+   +-+--+   +--+-+                                 */
412                                 /*     |        |         |                                   */
413                                 /*     |        |         |                                   */
414                                 /*   +-+--------+---------+-+                                 */
415                                 /*   |         Perm         |                                 */
416                                 /*   +-+--------+---------+-+                                 */
417                                 /*     |        |         |                                   */
418                                 /*     |        |         |                                   */
419                                 /*   +-+--+   +-+--+   +--+-+                                 */
420                                 /*   |Proj|   |Proj|   |Proj|                                 */
421                                 /*   | r2 |   | r3 |   | r1 |                                 */
422                                 /*   +----+   +----+   +----+                                 */
423                                 /*                                                            */
424                                 /* This node is about to be split up into two 2x Perm's       */
425                                 /* for which we need 4 Proj's and the one additional Proj     */
426                                 /* of the first Perm has to be one IN of the second. So in    */
427                                 /* general we need to create one additional Proj for each     */
428                                 /* "middle" Perm and set this to one in node of the successor */
429                                 /* Perm.                                                      */
430
431                                 DBG((mod, LEVEL_1, "%+F creating exchange node (%+F, %s) and (%+F, %s) with\n",
432                                         irn, arg1, cycle->elems[i]->name, arg2, cycle->elems[i + 1]->name));
433                                 DBG((mod, LEVEL_1, "%+F                        (%+F, %s) and (%+F, %s)\n",
434                                         irn, res1, cycle->elems[i]->name, res2, cycle->elems[i + 1]->name));
435
436                                 cpyxchg = be_new_Perm(reg_class, env->chord_env->irg, block, 2, in);
437                                 n_ops++;
438
439                                 if (i > 0) {
440                                         /* cycle is not done yet */
441                                         int pidx = get_pairidx_for_regidx(pairs, n, cycle->elems[i]->index, 0);
442
443                                         /* create intermediate proj */
444                                         res1 = new_r_Proj(get_irn_irg(irn), block, cpyxchg, get_irn_mode(res1), 0);
445
446                                         /* set as in for next Perm */
447                                         pairs[pidx].in_node = res1;
448                                 }
449                                 else {
450                                         sched_remove(res1);
451                                 }
452
453                                 sched_remove(res2);
454
455                                 set_Proj_pred(res2, cpyxchg);
456                                 set_Proj_proj(res2, 0);
457                                 set_Proj_pred(res1, cpyxchg);
458                                 set_Proj_proj(res1, 1);
459
460                                 sched_add_after(sched_point, res1);
461                                 sched_add_after(sched_point, res2);
462
463                                 arch_set_irn_register(arch_env, res2, cycle->elems[i + 1]);
464                                 arch_set_irn_register(arch_env, res1, cycle->elems[i]);
465
466                                 /* insert the copy/exchange node in schedule after the magic schedule node (see above) */
467                                 sched_add_after(sched_point, cpyxchg);
468
469                                 DBG((mod, LEVEL_1, "replacing %+F with %+F, placed new node after %+F\n", irn, cpyxchg, sched_point));
470
471                                 /* set the new scheduling point */
472                                 sched_point = res1;
473                         }
474                         else {
475                                 DBG((mod, LEVEL_1, "%+F creating copy node (%+F, %s) -> (%+F, %s)\n",
476                                         irn, arg1, cycle->elems[i]->name, res2, cycle->elems[i + 1]->name));
477
478                                 cpyxchg = be_new_Copy(reg_class, env->chord_env->irg, block, arg1);
479                                 arch_set_irn_register(arch_env, cpyxchg, cycle->elems[i + 1]);
480                                 n_ops++;
481
482                                 /* remove the proj from the schedule */
483                                 sched_remove(res2);
484
485                                 /* exchange copy node and proj */
486                                 exchange(res2, cpyxchg);
487
488                                 /* insert the copy/exchange node in schedule after the magic schedule node (see above) */
489                                 sched_add_after(sched_point, cpyxchg);
490
491                                 /* set the new scheduling point */
492                                 sched_point = cpyxchg;
493                         }
494                 }
495
496                 be_do_stat_permcycle(reg_class->name, irn, block, cycle->type == PERM_CHAIN, cycle->n_elems, n_ops);
497
498                 free((void *) cycle->elems);
499                 free(cycle);
500         }
501
502         /* remove the perm from schedule */
503         if (! keep_perm) {
504                 int arity = get_irn_arity(irn);
505                 for(i = 0; i < arity; ++i) {
506                         set_irn_n(irn, i, new_Bad());
507                 }
508                 sched_remove(irn);
509         }
510 }
511
512
513
514 static int get_n_out_edges(const ir_node *irn) {
515         const ir_edge_t *edge;
516         int cnt = 0;
517
518         foreach_out_edge(irn, edge) {
519                 cnt++;
520         }
521
522         return cnt;
523 }
524
525 static ir_node *belower_skip_proj(ir_node *irn) {
526         while(is_Proj(irn))
527                 irn = get_Proj_pred(irn);
528         return irn;
529 }
530
531 static void gen_assure_different_pattern(ir_node *irn, ir_node *other_different, constraint_env_t *env) {
532         be_irg_t                    *birg     = env->birg;
533         pset                        *op_set   = env->op_set;
534         const arch_env_t            *arch_env = birg->main_env->arch_env;
535         ir_node                     *block    = get_nodes_block(irn);
536         const arch_register_class_t *cls      = arch_get_irn_reg_class(arch_env, other_different, -1);
537         ir_node                     *in[2], *keep, *cpy;
538         op_copy_assoc_t             key, *entry;
539         FIRM_DBG_REGISTER(firm_dbg_module_t *mod, "firm.be.lower");
540
541         if (arch_irn_is(arch_env, other_different, ignore) || ! mode_is_datab(get_irn_mode(other_different))) {
542                 DBG((mod, LEVEL_1, "ignore constraint for %+F because other_irn is ignore or not a datab node\n", irn));
543                 return;
544         }
545
546         /* Make a not spillable copy of the different node   */
547         /* this is needed because the different irn could be */
548         /* in block far far away                             */
549         /* The copy is optimized later if not needed         */
550
551         cpy = be_new_Copy(cls, birg->irg, block, other_different);
552         be_node_set_flags(cpy, BE_OUT_POS(0), arch_irn_flags_dont_spill);
553
554         in[0] = irn;
555         in[1] = cpy;
556
557         /* Add the Keep resp. CopyKeep and reroute the users */
558         /* of the other_different irn in case of CopyKeep.   */
559         if (get_n_out_edges(other_different) == 0) {
560                 keep = be_new_Keep(cls, birg->irg, block, 2, in);
561         }
562         else {
563                 keep = be_new_CopyKeep_single(cls, birg->irg, block, cpy, irn, get_irn_mode(other_different));
564                 be_node_set_reg_class(keep, 1, cls);
565         }
566
567         /* let the copy point to the other_different irn */
568         set_irn_n(cpy, 0, other_different);
569
570         /* insert copy and keep into schedule */
571         assert(sched_is_scheduled(irn) && "need schedule to assure constraints");
572         sched_add_before(belower_skip_proj(irn), cpy);
573         sched_add_after(irn, keep);
574
575         /* insert the other different and it's copies into the set */
576         key.op         = other_different;
577         key.copies     = NULL;
578         entry          = pset_find(op_set, &key, nodeset_hash(other_different));
579
580         if (! entry) {
581                 entry         = obstack_alloc(&env->obst, sizeof(*entry));
582                 entry->copies = pset_new_ptr_default();
583                 entry->op     = other_different;
584         }
585
586         /* insert copy */
587         pset_insert_ptr(entry->copies, cpy);
588
589         /* insert keep in case of CopyKeep */
590         if (be_is_CopyKeep(keep))
591                 pset_insert_ptr(entry->copies, keep);
592
593         pset_insert(op_set, entry, nodeset_hash(other_different));
594
595         DBG((mod, LEVEL_1, "created %+F for %+F to assure should_be_different\n", keep, irn));
596 }
597
598 /**
599  * Checks if node has a should_be_different constraint in output
600  * and adds a Keep then to assure the constraint.
601  */
602 static void assure_different_constraints(ir_node *irn, constraint_env_t *env) {
603         const arch_register_req_t *req;
604         arch_register_req_t       req_temp;
605
606         req = arch_get_register_req(env->birg->main_env->arch_env, &req_temp, irn, -1);
607
608         if (req) {
609                 if (arch_register_req_is(req, should_be_different)) {
610                         gen_assure_different_pattern(irn, req->other_different, env);
611                 }
612                 else if (arch_register_req_is(req, should_be_different_from_all)) {
613                         int i, n = get_irn_arity(belower_skip_proj(irn));
614                         for (i = 0; i < n; i++) {
615                                 gen_assure_different_pattern(irn, get_irn_n(belower_skip_proj(irn), i), env);
616                         }
617                 }
618         }
619 }
620
621
622
623 /**
624  * Calls the functions to assure register constraints.
625  *
626  * @param irn      The node to be checked for lowering
627  * @param walk_env The walker environment
628  */
629 static void assure_constraints_walker(ir_node *irn, void *walk_env) {
630         if (is_Block(irn))
631                 return;
632
633         if (mode_is_datab(get_irn_mode(irn)))
634                 assure_different_constraints(irn, walk_env);
635
636         return;
637 }
638
639
640
641 /**
642  * Walks over all nodes to assure register constraints.
643  *
644  * @param birg  The birg structure containing the irg
645  */
646 void assure_constraints(be_irg_t *birg) {
647         constraint_env_t cenv;
648         op_copy_assoc_t  *entry;
649         dom_front_info_t *dom;
650         ir_node          **nodes;
651         FIRM_DBG_REGISTER(firm_dbg_module_t *mod, "firm.be.lower");
652
653         cenv.birg   = birg;
654         cenv.op_set = new_pset(cmp_op_copy_assoc, 16);
655         obstack_init(&cenv.obst);
656
657         irg_walk_blkwise_graph(birg->irg, NULL, assure_constraints_walker, &cenv);
658
659         /* introduce copies needs dominance information */
660         dom = be_compute_dominance_frontiers(birg->irg);
661
662         /* for all */
663         foreach_pset(cenv.op_set, entry) {
664                 int     n;
665                 ir_node *cp;
666
667                 n     = pset_count(entry->copies);
668                 nodes = alloca((n + 1) * sizeof(nodes[0]));
669
670                 /* put the node in an array */
671                 n          = 0;
672                 nodes[n++] = entry->op;
673                 DBG((mod, LEVEL_1, "introduce copies for %+F ", entry->op));
674
675                 /* collect all copies */
676                 foreach_pset(entry->copies, cp) {
677                         nodes[n++] = cp;
678                         DB((mod, LEVEL_1, ", %+F ", cp));
679                 }
680
681                 DB((mod, LEVEL_1, "\n"));
682
683                 /* introduce the copies for the operand and it's copies */
684                 be_ssa_constr(dom, NULL, n, nodes);
685
686
687                 /* Could be that not all CopyKeeps are really needed, */
688                 /* so we transform unnecessary ones into Keeps.       */
689                 foreach_pset(entry->copies, cp) {
690                         if (be_is_CopyKeep(cp) && get_irn_n_edges(cp) < 1) {
691                                 ir_node *keep;
692                                 int     n = get_irn_arity(cp);
693
694                                 keep = be_new_Keep(arch_get_irn_reg_class(birg->main_env->arch_env, cp, -1),
695                                         birg->irg, get_nodes_block(cp), n, (ir_node **)&get_irn_in(cp)[1]);
696                                 sched_add_before(cp, keep);
697
698                                 /* Set all ins (including the block) of the CopyKeep BAD to keep the verifier happy. */
699                                 while (--n >= -1)
700                                         set_irn_n(cp, n, new_Bad());
701                                 sched_remove(cp);
702                         }
703                 }
704
705                 del_pset(entry->copies);
706         }
707
708         be_free_dominance_frontiers(dom);
709
710         del_pset(cenv.op_set);
711         obstack_free(&cenv.obst, NULL);
712 }
713
714
715
716 /**
717  * Calls the corresponding lowering function for the node.
718  *
719  * @param irn      The node to be checked for lowering
720  * @param walk_env The walker environment
721  */
722 static void lower_nodes_after_ra_walker(ir_node *irn, void *walk_env) {
723         lower_env_t      *env      = walk_env;
724         const arch_env_t *arch_env = env->chord_env->birg->main_env->arch_env;
725
726         if (!is_Block(irn) && !is_Proj(irn)) {
727                 if (is_Perm(arch_env, irn)) {
728                         lower_perm_node(irn, walk_env);
729                 }
730         }
731
732         return;
733 }
734
735 /**
736  * Walks over all blocks in an irg and performs lowering need to be
737  * done after register allocation (e.g. perm lowering).
738  *
739  * @param chord_env The chordal environment containing the irg
740  * @param do_copy   1 == resolve cycles with a free reg if available
741  */
742 void lower_nodes_after_ra(be_chordal_env_t *chord_env, int do_copy) {
743         lower_env_t env;
744
745         env.chord_env  = chord_env;
746         env.do_copy    = do_copy;
747         FIRM_DBG_REGISTER(env.dbg_module, "firm.be.lower");
748
749         irg_walk_blkwise_graph(chord_env->irg, NULL, lower_nodes_after_ra_walker, &env);
750 }
751
752 #undef is_Perm