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