89a6a0d7e9fdee0eb4cd9d3715ebe384515863e3
[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_class_is(arch_env, irn, 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             keep_perm    = 0;
274         int             n, i, pn, do_copy, j, n_ops;
275         reg_pair_t      *pairs;
276         const ir_edge_t *edge;
277         perm_cycle_t    *cycle;
278         ir_node         *sched_point, *block, *in[2];
279         ir_node         *arg1, *arg2, *res1, *res2;
280         ir_node         *cpyxchg = NULL;
281         DEBUG_ONLY(firm_dbg_module_t *mod;)
282
283         arch_env = env->chord_env->birg->main_env->arch_env;
284         do_copy  = env->do_copy;
285         DEBUG_ONLY(mod = env->dbg_module;)
286         block    = get_nodes_block(irn);
287
288         /*
289                 Get the schedule predecessor node to the perm
290                 NOTE: This works with auto-magic. If we insert the
291                         new copy/exchange nodes after this node, everything
292                         should be ok.
293         */
294         sched_point = sched_prev(irn);
295         DBG((mod, LEVEL_1, "sched point is %+F\n", sched_point));
296         assert(sched_point && "Perm is not scheduled or has no predecessor");
297
298         n = get_irn_arity(irn);
299         assert(n == get_irn_n_edges(irn) && "perm's in and out numbers different");
300
301         reg_class = arch_get_irn_register(arch_env, get_irn_n(irn, 0))->reg_class;
302         pairs     = alloca(n * sizeof(pairs[0]));
303
304         /* build the list of register pairs (in, out) */
305         i = 0;
306         foreach_out_edge(irn, edge) {
307                 pairs[i].out_node = get_edge_src_irn(edge);
308                 pn                = get_Proj_proj(pairs[i].out_node);
309                 pairs[i].in_node  = get_irn_n(irn, pn);
310
311                 pairs[i].in_reg  = arch_get_irn_register(arch_env, pairs[i].in_node);
312                 pairs[i].out_reg = arch_get_irn_register(arch_env, pairs[i].out_node);
313
314                 pairs[i].checked = 0;
315                 i++;
316         }
317
318         /* sort the register pairs by the indices of the in registers */
319         qsort(pairs, n, sizeof(pairs[0]), compare_reg_pair);
320
321         /* Mark all equal pairs as checked, and exchange the OUT proj with
322                 the IN node. */
323         for (i = 0; i < n; i++) {
324                 if (pairs[i].in_reg->index == pairs[i].out_reg->index) {
325                         DBG((mod, LEVEL_1, "%+F removing equal perm register pair (%+F, %+F, %s)\n",
326                                 irn, pairs[i].in_node, pairs[i].out_node, pairs[i].out_reg->name));
327
328                         /* We have to check for a special case:
329                                 The in-node could be a Proj from a Perm. In this case,
330                                 we need to correct the projnum */
331                         if (is_Perm(arch_env, pairs[i].in_node) && is_Proj(pairs[i].in_node)) {
332                                 set_Proj_proj(pairs[i].out_node, get_Proj_proj(pairs[i].in_node));
333                         }
334
335                         /* remove the proj from the schedule */
336                         sched_remove(pairs[i].out_node);
337
338                         /* reroute the edges from the proj to the argument */
339                         edges_reroute(pairs[i].out_node, pairs[i].in_node, env->chord_env->irg);
340
341                         pairs[i].checked = 1;
342                 }
343         }
344
345         /* Set do_copy to 0 if it's on but we have no free register */
346         if (do_copy) {
347                 do_copy = 0;
348         }
349
350         real_size = n - get_n_checked_pairs(pairs, n);
351
352         be_do_stat_perm(reg_class->name, reg_class->n_regs, irn, block, n, real_size);
353
354         /* check for cycles and chains */
355         while (get_n_checked_pairs(pairs, n) < n) {
356                 i = n_ops = 0;
357
358                 /* go to the first not-checked pair */
359                 while (pairs[i].checked) i++;
360                 cycle = xcalloc(1, sizeof(*cycle));
361                 cycle = get_perm_cycle(cycle, pairs, n, i);
362
363                 DB((mod, LEVEL_1, "%+F: following %s created:\n  ", irn, cycle->type == PERM_CHAIN ? "chain" : "cycle"));
364                 for (j = 0; j < cycle->n_elems; j++) {
365                         DB((mod, LEVEL_1, " %s", cycle->elems[j]->name));
366                 }
367                 DB((mod, LEVEL_1, "\n"));
368
369                 /*
370                         We don't need to do anything if we have a Perm with two
371                         elements which represents a cycle, because those nodes
372                         already represent exchange nodes
373                 */
374                 if (n == 2 && cycle->type == PERM_CYCLE) {
375                         free(cycle);
376                         keep_perm = 1;
377                         continue;
378                 }
379
380 //TODO: - iff PERM_CYCLE && do_copy -> determine free temp reg and insert copy to/from it before/after
381 //        the copy cascade (this reduces the cycle into a chain)
382
383                 /* build copy/swap nodes from back to front */
384                 for (i = cycle->n_elems - 2; i >= 0; i--) {
385                         arg1 = get_node_for_register(pairs, n, cycle->elems[i], 0);
386                         arg2 = get_node_for_register(pairs, n, cycle->elems[i + 1], 0);
387
388                         res1 = get_node_for_register(pairs, n, cycle->elems[i], 1);
389                         res2 = get_node_for_register(pairs, n, cycle->elems[i + 1], 1);
390                         /*
391                                 If we have a cycle and don't copy: we need to create exchange nodes
392                                 NOTE: An exchange node is a perm node with 2 INs and 2 OUTs
393                                 IN_1  = in node with register i
394                                 IN_2  = in node with register i + 1
395                                 OUT_1 = out node with register i + 1
396                                 OUT_2 = out node with register i
397                         */
398                         if (cycle->type == PERM_CYCLE && !do_copy) {
399                                 in[0] = arg1;
400                                 in[1] = arg2;
401
402                                 /* At this point we have to handle the following problem:     */
403                                 /*                                                            */
404                                 /* If we have a cycle with more than two elements, then       */
405                                 /* this could correspond to the following Perm node:          */
406                                 /*                                                            */
407                                 /*   +----+   +----+   +----+                                 */
408                                 /*   | r1 |   | r2 |   | r3 |                                 */
409                                 /*   +-+--+   +-+--+   +--+-+                                 */
410                                 /*     |        |         |                                   */
411                                 /*     |        |         |                                   */
412                                 /*   +-+--------+---------+-+                                 */
413                                 /*   |         Perm         |                                 */
414                                 /*   +-+--------+---------+-+                                 */
415                                 /*     |        |         |                                   */
416                                 /*     |        |         |                                   */
417                                 /*   +-+--+   +-+--+   +--+-+                                 */
418                                 /*   |Proj|   |Proj|   |Proj|                                 */
419                                 /*   | r2 |   | r3 |   | r1 |                                 */
420                                 /*   +----+   +----+   +----+                                 */
421                                 /*                                                            */
422                                 /* This node is about to be split up into two 2x Perm's       */
423                                 /* for which we need 4 Proj's and the one additional Proj     */
424                                 /* of the first Perm has to be one IN of the second. So in    */
425                                 /* general we need to create one additional Proj for each     */
426                                 /* "middle" Perm and set this to one in node of the successor */
427                                 /* Perm.                                                      */
428
429                                 DBG((mod, LEVEL_1, "%+F creating exchange node (%+F, %s) and (%+F, %s) with\n",
430                                         irn, arg1, cycle->elems[i]->name, arg2, cycle->elems[i + 1]->name));
431                                 DBG((mod, LEVEL_1, "%+F                        (%+F, %s) and (%+F, %s)\n",
432                                         irn, res1, cycle->elems[i]->name, res2, cycle->elems[i + 1]->name));
433
434                                 cpyxchg = be_new_Perm(reg_class, env->chord_env->irg, block, 2, in);
435                                 n_ops++;
436
437                                 if (i > 0) {
438                                         /* cycle is not done yet */
439                                         int pidx = get_pairidx_for_regidx(pairs, n, cycle->elems[i]->index, 0);
440
441                                         /* create intermediate proj */
442                                         res1 = new_r_Proj(get_irn_irg(irn), block, cpyxchg, get_irn_mode(res1), 0);
443
444                                         /* set as in for next Perm */
445                                         pairs[pidx].in_node = res1;
446                                 }
447                                 else {
448                                         sched_remove(res1);
449                                 }
450
451                                 sched_remove(res2);
452
453                                 set_Proj_pred(res2, cpyxchg);
454                                 set_Proj_proj(res2, 0);
455                                 set_Proj_pred(res1, cpyxchg);
456                                 set_Proj_proj(res1, 1);
457
458                                 sched_add_after(sched_point, res1);
459                                 sched_add_after(sched_point, res2);
460
461                                 arch_set_irn_register(arch_env, res2, cycle->elems[i + 1]);
462                                 arch_set_irn_register(arch_env, res1, cycle->elems[i]);
463
464                                 /* insert the copy/exchange node in schedule after the magic schedule node (see above) */
465                                 sched_add_after(sched_point, cpyxchg);
466
467                                 DBG((mod, LEVEL_1, "replacing %+F with %+F, placed new node after %+F\n", irn, cpyxchg, sched_point));
468
469                                 /* set the new scheduling point */
470                                 sched_point = res1;
471                         }
472                         else {
473                                 DBG((mod, LEVEL_1, "%+F creating copy node (%+F, %s) -> (%+F, %s)\n",
474                                         irn, arg1, cycle->elems[i]->name, res2, cycle->elems[i + 1]->name));
475
476                                 cpyxchg = be_new_Copy(reg_class, env->chord_env->irg, block, arg1);
477                                 arch_set_irn_register(arch_env, cpyxchg, cycle->elems[i + 1]);
478                                 n_ops++;
479
480                                 /* remove the proj from the schedule */
481                                 sched_remove(res2);
482
483                                 /* exchange copy node and proj */
484                                 exchange(res2, cpyxchg);
485
486                                 /* insert the copy/exchange node in schedule after the magic schedule node (see above) */
487                                 sched_add_after(sched_point, cpyxchg);
488
489                                 /* set the new scheduling point */
490                                 sched_point = cpyxchg;
491                         }
492                 }
493
494                 be_do_stat_permcycle(reg_class->name, irn, block, cycle->type == PERM_CHAIN, cycle->n_elems, n_ops);
495
496                 free((void *) cycle->elems);
497                 free(cycle);
498         }
499
500         /* remove the perm from schedule */
501         if (! keep_perm)
502                 sched_remove(irn);
503 }
504
505
506
507 static int get_n_out_edges(const ir_node *irn) {
508         const ir_edge_t *edge;
509         int cnt = 0;
510
511         foreach_out_edge(irn, edge) {
512                 cnt++;
513         }
514
515         return cnt;
516 }
517
518 static ir_node *belower_skip_proj(ir_node *irn) {
519         while(is_Proj(irn))
520                 irn = get_Proj_pred(irn);
521         return irn;
522 }
523
524 static void gen_assure_different_pattern(ir_node *irn, ir_node *other_different, constraint_env_t *env) {
525         be_irg_t                    *birg     = env->birg;
526         pset                        *op_set   = env->op_set;
527         const arch_env_t            *arch_env = birg->main_env->arch_env;
528         ir_node                     *block    = get_nodes_block(irn);
529         const arch_register_class_t *cls      = arch_get_irn_reg_class(arch_env, other_different, -1);
530         ir_node                     *in[2], *keep, *cpy;
531         op_copy_assoc_t             key, *entry;
532         FIRM_DBG_REGISTER(firm_dbg_module_t *mod, "firm.be.lower");
533
534         if (arch_irn_is(arch_env, other_different, ignore) || ! mode_is_datab(get_irn_mode(other_different))) {
535                 DBG((mod, LEVEL_1, "ignore constraint for %+F because other_irn is ignore or not a datab node\n", irn));
536                 return;
537         }
538
539         /* Make a not spillable copy of the different node   */
540         /* this is needed because the different irn could be */
541         /* in block far far away                             */
542         /* The copy is optimized later if not needed         */
543
544         cpy = be_new_Copy(cls, birg->irg, block, other_different);
545         be_node_set_flags(cpy, BE_OUT_POS(0), arch_irn_flags_dont_spill);
546
547         in[0] = irn;
548         in[1] = cpy;
549
550         /* Add the Keep resp. CopyKeep and reroute the users */
551         /* of the other_different irn in case of CopyKeep.   */
552         if (get_n_out_edges(other_different) == 0) {
553                 keep = be_new_Keep(cls, birg->irg, block, 2, in);
554         }
555         else {
556                 keep = be_new_CopyKeep_single(cls, birg->irg, block, cpy, irn, get_irn_mode(other_different));
557                 be_node_set_reg_class(keep, 1, cls);
558         }
559
560         /* let the copy point to the other_different irn */
561         set_irn_n(cpy, 0, other_different);
562
563         /* insert copy and keep into schedule */
564         assert(sched_is_scheduled(irn) && "need schedule to assure constraints");
565         sched_add_before(belower_skip_proj(irn), cpy);
566         sched_add_after(irn, keep);
567
568         /* insert the other different and it's copies into the set */
569         key.op         = other_different;
570         key.copies     = NULL;
571         entry          = pset_find(op_set, &key, HASH_PTR(other_different));
572
573         if (! entry) {
574                 entry         = obstack_alloc(&env->obst, sizeof(*entry));
575                 entry->copies = pset_new_ptr_default();
576                 entry->op     = other_different;
577         }
578
579         /* insert copy */
580         pset_insert_ptr(entry->copies, cpy);
581
582         /* insert keep in case of CopyKeep */
583         if (be_is_CopyKeep(keep))
584                 pset_insert_ptr(entry->copies, keep);
585
586         pset_insert(op_set, entry, HASH_PTR(other_different));
587
588         DBG((mod, LEVEL_1, "created %+F for %+F to assure should_be_different\n", keep, irn));
589 }
590
591 /**
592  * Checks if node has a should_be_different constraint in output
593  * and adds a Keep then to assure the constraint.
594  */
595 static void assure_different_constraints(ir_node *irn, constraint_env_t *env) {
596         const arch_register_req_t *req;
597         arch_register_req_t       req_temp;
598
599         req = arch_get_register_req(env->birg->main_env->arch_env, &req_temp, irn, -1);
600
601         if (req) {
602                 if (arch_register_req_is(req, should_be_different)) {
603                         gen_assure_different_pattern(irn, req->other_different, env);
604                 }
605                 else if (arch_register_req_is(req, should_be_different_from_all)) {
606                         int i, n = get_irn_arity(belower_skip_proj(irn));
607                         for (i = 0; i < n; i++) {
608                                 gen_assure_different_pattern(irn, get_irn_n(belower_skip_proj(irn), i), env);
609                         }
610                 }
611         }
612 }
613
614
615
616 /**
617  * Calls the functions to assure register constraints.
618  *
619  * @param irn      The node to be checked for lowering
620  * @param walk_env The walker environment
621  */
622 static void assure_constraints_walker(ir_node *irn, void *walk_env) {
623         if (is_Block(irn))
624                 return;
625
626         if (mode_is_datab(get_irn_mode(irn)))
627                 assure_different_constraints(irn, walk_env);
628
629         return;
630 }
631
632
633
634 /**
635  * Walks over all nodes to assure register constraints.
636  *
637  * @param birg  The birg structure containing the irg
638  */
639 void assure_constraints(be_irg_t *birg) {
640         constraint_env_t cenv;
641         op_copy_assoc_t  *entry;
642         dom_front_info_t *dom;
643         ir_node          **nodes;
644         FIRM_DBG_REGISTER(firm_dbg_module_t *mod, "firm.be.lower");
645
646         cenv.birg   = birg;
647         cenv.op_set = new_pset(cmp_op_copy_assoc, 16);
648         obstack_init(&cenv.obst);
649
650         irg_walk_blkwise_graph(birg->irg, NULL, assure_constraints_walker, &cenv);
651
652         /* introduce copies needs dominance information */
653         dom = be_compute_dominance_frontiers(birg->irg);
654
655         /* for all */
656         foreach_pset(cenv.op_set, entry) {
657                 int     n;
658                 ir_node *cp;
659
660                 n     = pset_count(entry->copies);
661                 nodes = alloca((n + 1) * sizeof(nodes[0]));
662
663                 /* put the node in an array */
664                 n          = 0;
665                 nodes[n++] = entry->op;
666                 DBG((mod, LEVEL_1, "introduce copies for %+F ", entry->op));
667
668                 /* collect all copies */
669                 foreach_pset(entry->copies, cp) {
670                         nodes[n++] = cp;
671                         DB((mod, LEVEL_1, ", %+F ", cp));
672                 }
673
674                 DB((mod, LEVEL_1, "\n"));
675
676                 /* introduce the copies for the operand and it's copies */
677                 be_ssa_constr(dom, NULL, n, nodes);
678
679
680                 /* Could be that not all CopyKeeps are really needed, */
681                 /* so we transform unnecessary ones into Keeps.       */
682                 foreach_pset(entry->copies, cp) {
683                         if (be_is_CopyKeep(cp) && get_irn_n_edges(cp) < 1) {
684                                 ir_node *keep;
685                                 int     n = get_irn_arity(cp);
686
687                                 keep = be_new_Keep(arch_get_irn_reg_class(birg->main_env->arch_env, cp, -1),
688                                         birg->irg, get_nodes_block(cp), n, (ir_node **)&get_irn_in(cp)[1]);
689                                 sched_add_before(cp, keep);
690                                 sched_remove(cp);
691
692                                 /* Set all ins (including the block) of the CopyKeep BAD to keep the verifier happy. */
693                                 while (--n >= -1)
694                                         set_irn_n(cp, n, get_irg_bad(birg->irg));
695                         }
696                 }
697
698                 del_pset(entry->copies);
699         }
700
701         be_free_dominance_frontiers(dom);
702
703         del_pset(cenv.op_set);
704         obstack_free(&cenv.obst, NULL);
705 }
706
707
708
709 /**
710  * Calls the corresponding lowering function for the node.
711  *
712  * @param irn      The node to be checked for lowering
713  * @param walk_env The walker environment
714  */
715 static void lower_nodes_after_ra_walker(ir_node *irn, void *walk_env) {
716         lower_env_t      *env      = walk_env;
717         const arch_env_t *arch_env = env->chord_env->birg->main_env->arch_env;
718
719         if (!is_Block(irn) && !is_Proj(irn)) {
720                 if (is_Perm(arch_env, irn)) {
721                         lower_perm_node(irn, walk_env);
722                 }
723         }
724
725         return;
726 }
727
728 /**
729  * Walks over all blocks in an irg and performs lowering need to be
730  * done after register allocation (e.g. perm lowering).
731  *
732  * @param chord_env The chordal environment containing the irg
733  * @param do_copy   1 == resolve cycles with a free reg if available
734  */
735 void lower_nodes_after_ra(be_chordal_env_t *chord_env, int do_copy) {
736         lower_env_t env;
737
738         env.chord_env  = chord_env;
739         env.do_copy    = do_copy;
740         FIRM_DBG_REGISTER(env.dbg_module, "firm.be.lower");
741
742         irg_walk_blkwise_graph(chord_env->irg, NULL, lower_nodes_after_ra_walker, &env);
743 }
744
745 #undef is_Perm