7243c8a9c57aec5dc3d17c6fa674c972ae410d56
[libfirm] / ir / be / becopyheur.c
1 /*
2  * This file is part of libFirm.
3  * Copyright (C) 2012 University of Karlsruhe.
4  */
5
6 /**
7  * @file
8  * @brief       First simple copy minimization heuristics.
9  * @author      Daniel Grund
10  * @date        12.04.2005
11  *
12  * Heuristic for minimizing copies using a queue which holds 'qnodes' not yet
13  * examined. A qnode has a 'target color', nodes out of the opt unit and
14  * a 'conflict graph'. 'Conflict graph' = "Interference graph' + 'conflict edges'
15  * A 'max indep set' is determined from these. We try to color this mis using a
16  * color-exchanging mechanism. Occuring conflicts are modeled with 'conflict edges'
17  * and the qnode is reinserted in the queue. The first qnode colored without
18  * conflicts is the best one.
19  */
20 #include "config.h"
21
22 #include "debug.h"
23 #include "bitset.h"
24 #include "raw_bitset.h"
25 #include "xmalloc.h"
26
27 #include "becopyopt_t.h"
28 #include "becopystat.h"
29 #include "beintlive_t.h"
30 #include "beirg.h"
31 #include "bemodule.h"
32
33 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
34
35 /** Defines an invalid register index. */
36 #define NO_COLOR (-1)
37
38 #define SEARCH_FREE_COLORS
39
40 #define SLOTS_PINNED_GLOBAL 64
41 #define SLOTS_CONFLICTS 8
42 #define SLOTS_CHANGED_NODES 32
43
44 #define list_entry_queue(lh) list_entry(lh, qnode_t, queue)
45 #define HASH_CONFLICT(c) (hash_irn(c.n1) ^ hash_irn(c.n2))
46
47 /**
48  * Modeling additional conflicts between nodes. NOT live range interference
49  */
50 typedef struct conflict_t {
51         const ir_node *n1, *n2;
52 } conflict_t;
53
54 /**
55  * If an irn is changed, the changes first get stored in a node_stat_t,
56  * to allow undo of changes (=drop new data) in case of conflicts.
57  */
58 typedef struct node_stat_t {
59         ir_node *irn;
60         int     new_color;
61         int     pinned_local :1;
62 } node_stat_t;
63
64 /**
65  * Represents a node in the optimization queue.
66  */
67 typedef struct qnode_t {
68         struct list_head queue;            /**< chaining of unit_t->queue */
69         const unit_t     *ou;              /**< the opt unit this node belongs to */
70         int              color;            /**< target color */
71         set              *conflicts;       /**< contains conflict_t's. All internal conflicts */
72         int              mis_costs;        /**< costs of nodes/copies in the mis. */
73         int              mis_size;         /**< size of the array below */
74         ir_node          **mis;            /**< the nodes of unit_t->nodes[] being part of the max independent set */
75         set              *changed_nodes;   /**< contains node_stat_t's. */
76 } qnode_t;
77
78 static pset *pinned_global;  /**< optimized nodes should not be altered any more */
79
80 static int set_cmp_conflict_t(const void *x, const void *y, size_t size)
81 {
82         const conflict_t *xx = (const conflict_t*)x;
83         const conflict_t *yy = (const conflict_t*)y;
84         (void) size;
85
86         return xx->n1 != yy->n1 || xx->n2 != yy->n2;
87 }
88
89 /**
90  * If a local pinned conflict occurs, a new edge in the conflict graph is added.
91  * The next maximum independent set build, will regard it.
92  */
93 static inline void qnode_add_conflict(const qnode_t *qn, const ir_node *n1, const ir_node *n2)
94 {
95         conflict_t c;
96         DBG((dbg, LEVEL_4, "\t      %+F -- %+F\n", n1, n2));
97
98         if (get_irn_idx(n1) < get_irn_idx(n2)) {
99                 c.n1 = n1;
100                 c.n2 = n2;
101         } else {
102                 c.n1 = n2;
103                 c.n2 = n1;
104         }
105         (void)set_insert(conflict_t, qn->conflicts, &c, sizeof(c), HASH_CONFLICT(c));
106 }
107
108 /**
109  * Checks if two nodes are in a conflict.
110  */
111 static inline int qnode_are_conflicting(const qnode_t *qn, const ir_node *n1, const ir_node *n2)
112 {
113         conflict_t c;
114         /* search for live range interference */
115         if (n1 != n2) {
116                 be_lv_t *const lv = be_get_irg_liveness(get_irn_irg(n1));
117                 if (be_values_interfere(lv, n1, n2))
118                         return 1;
119         }
120         /* search for recoloring conflicts */
121         if (get_irn_idx(n1) < get_irn_idx(n2)) {
122                 c.n1 = n1;
123                 c.n2 = n2;
124         } else {
125                 c.n1 = n2;
126                 c.n2 = n1;
127         }
128         return set_find(conflict_t, qn->conflicts, &c, sizeof(c), HASH_CONFLICT(c)) != 0;
129 }
130
131 static int set_cmp_node_stat_t(const void *x, const void *y, size_t size)
132 {
133         (void) size;
134         return ((const node_stat_t*)x)->irn != ((const node_stat_t*)y)->irn;
135 }
136
137 /**
138  * Finds a node status entry of a node if existent. Otherwise return NULL
139  */
140 static inline const node_stat_t *qnode_find_node(const qnode_t *qn, ir_node *irn)
141 {
142         node_stat_t find;
143         find.irn = irn;
144         return set_find(node_stat_t, qn->changed_nodes, &find, sizeof(find), hash_irn(irn));
145 }
146
147 /**
148  * Finds a node status entry of a node if existent. Otherwise it will return
149  * an initialized new entry for this node.
150  */
151 static inline node_stat_t *qnode_find_or_insert_node(const qnode_t *qn, ir_node *irn)
152 {
153         node_stat_t find;
154         find.irn = irn;
155         find.new_color = NO_COLOR;
156         find.pinned_local = 0;
157         return set_insert(node_stat_t, qn->changed_nodes, &find, sizeof(find), hash_irn(irn));
158 }
159
160 /**
161  * Returns the virtual color of a node if set before, else returns the real color.
162  */
163 static inline int qnode_get_new_color(const qnode_t *qn, ir_node *irn)
164 {
165         const node_stat_t *found = qnode_find_node(qn, irn);
166         if (found)
167                 return found->new_color;
168         else
169                 return get_irn_col(irn);
170 }
171
172 /**
173  * Sets the virtual color of a node.
174  */
175 static inline void qnode_set_new_color(const qnode_t *qn, ir_node *irn, int color)
176 {
177         node_stat_t *found = qnode_find_or_insert_node(qn, irn);
178         found->new_color = color;
179         DBG((dbg, LEVEL_3, "\t      col(%+F) := %d\n", irn, color));
180 }
181
182 /**
183  * Checks if a node is local pinned. A node is local pinned, iff it belongs
184  * to the same optimization unit and has been optimized before the current
185  * processed node.
186  */
187 static inline int qnode_is_pinned_local(const qnode_t *qn, ir_node *irn)
188 {
189         const node_stat_t *found = qnode_find_node(qn, irn);
190         if (found)
191                 return found->pinned_local;
192         else
193                 return 0;
194 }
195
196 /**
197  * Local-pins a node, so optimizations of further nodes of the same opt unit
198  * can handle situations in which a color change would undo prior optimizations.
199  */
200 static inline void qnode_pin_local(const qnode_t *qn, ir_node *irn)
201 {
202         node_stat_t *found = qnode_find_or_insert_node(qn, irn);
203         found->pinned_local = 1;
204         if (found->new_color == NO_COLOR)
205                 found->new_color = get_irn_col(irn);
206 }
207
208
209 /**
210  * Possible return values of qnode_color_irn()
211  */
212 #define CHANGE_SAVE NULL
213 #define CHANGE_IMPOSSIBLE (ir_node *)1
214
215 /**
216  * Performs virtual re-coloring of node @p n to color @p col. Virtual colors of
217  * other nodes are changed too, as required to preserve correctness. Function is
218  * aware of local and global pinning. Recursive.
219  *
220  * If irn == trigger the color @p col must be used. (the first recoloring)
221  * If irn != trigger an arbitrary free color may be used. If no color is free, @p col is used.
222  *
223  * @param  irn     The node to set the color for
224  * @param  col     The color to set
225  * @param  trigger The irn that caused the wish to change the color of the irn
226  *                 External callers must call with trigger = irn
227  *
228  * @return CHANGE_SAVE iff setting the color is possible, with all transitive effects.
229  *         CHANGE_IMPOSSIBLE iff conflicts with reg-constraintsis occured.
230  *         Else the first conflicting ir_node encountered is returned.
231  *
232  */
233 static ir_node *qnode_color_irn(qnode_t const *const qn, ir_node *const irn, int const col, ir_node const *const trigger, bitset_t const *const allocatable_regs, be_ifg_t *const ifg)
234 {
235         int irn_col = qnode_get_new_color(qn, irn);
236         neighbours_iter_t iter;
237
238         DBG((dbg, LEVEL_3, "\t    %+F \tcaused col(%+F) \t%2d --> %2d\n", trigger, irn, irn_col, col));
239
240         /* If the target color is already set do nothing */
241         if (irn_col == col) {
242                 DBG((dbg, LEVEL_3, "\t      %+F same color\n", irn));
243                 return CHANGE_SAVE;
244         }
245
246         /* If the irn is pinned, changing color is impossible */
247         if (pset_find_ptr(pinned_global, irn) || qnode_is_pinned_local(qn, irn)) {
248                 DBG((dbg, LEVEL_3, "\t      %+F conflicting\n", irn));
249                 return irn;
250         }
251
252         arch_register_req_t   const *const req = arch_get_irn_register_req(irn);
253         arch_register_class_t const *const cls = req->cls;
254 #ifdef SEARCH_FREE_COLORS
255         /* If we resolve conflicts (recursive calls) we can use any unused color.
256          * In case of the first call @p col must be used.
257          */
258         if (irn != trigger) {
259                 bitset_t *free_cols = bitset_alloca(cls->n_regs);
260                 int free_col;
261
262                 /* Get all possible colors */
263                 bitset_copy(free_cols, allocatable_regs);
264
265                 /* Exclude colors not assignable to the irn */
266                 if (arch_register_req_is(req, limited)) {
267                         bitset_t *limited = bitset_alloca(cls->n_regs);
268                         rbitset_copy_to_bitset(req->limited, limited);
269                         bitset_and(free_cols, limited);
270                 }
271
272                 /* Exclude the color of the irn, because it must _change_ its color */
273                 bitset_clear(free_cols, irn_col);
274
275                 /* Exclude all colors used by adjacent nodes */
276                 be_ifg_foreach_neighbour(ifg, &iter, irn, curr)
277                         bitset_clear(free_cols, qnode_get_new_color(qn, curr));
278
279                 free_col = bitset_next_set(free_cols, 0);
280
281                 if (free_col != -1) {
282                         qnode_set_new_color(qn, irn, free_col);
283                         return CHANGE_SAVE;
284                 }
285         }
286 #endif /* SEARCH_FREE_COLORS */
287
288         /* If target color is not allocatable changing color is impossible */
289         if (!arch_reg_is_allocatable(req, arch_register_for_index(cls, col))) {
290                 DBG((dbg, LEVEL_3, "\t      %+F impossible\n", irn));
291                 return CHANGE_IMPOSSIBLE;
292         }
293
294         /*
295          * If we arrive here changing color may be possible, but there may be conflicts.
296          * Try to color all conflicting nodes 'curr' with the color of the irn itself.
297          */
298         be_ifg_foreach_neighbour(ifg, &iter, irn, curr) {
299                 DBG((dbg, LEVEL_3, "\t      Confl %+F(%d)\n", curr, qnode_get_new_color(qn, curr)));
300                 if (qnode_get_new_color(qn, curr) == col && curr != trigger) {
301                         ir_node *const sub_res = qnode_color_irn(qn, curr, irn_col, irn, allocatable_regs, ifg);
302                         if (sub_res != CHANGE_SAVE) {
303                                 be_ifg_neighbours_break(&iter);
304                                 return sub_res;
305                         }
306                 }
307         }
308
309         /*
310          * If we arrive here, all conflicts were resolved.
311          * So it is save to change this irn
312          */
313         qnode_set_new_color(qn, irn, col);
314         return CHANGE_SAVE;
315 }
316
317
318 /**
319  * Tries to set the colors for all members of this queue node;
320  * to the target color qn->color
321  * @returns 1 iff all members colors could be set
322  *          0 else
323  */
324 static int qnode_try_color(qnode_t const *const qn, bitset_t const *const allocatable_regs, be_ifg_t *const ifg)
325 {
326         int i;
327         for (i=0; i<qn->mis_size; ++i) {
328                 ir_node *test_node, *confl_node;
329
330                 test_node = qn->mis[i];
331                 DBG((dbg, LEVEL_3, "\t    Testing %+F\n", test_node));
332                 confl_node = qnode_color_irn(qn, test_node, qn->color, test_node, allocatable_regs, ifg);
333
334                 if (confl_node == CHANGE_SAVE) {
335                         DBG((dbg, LEVEL_3, "\t    Save --> pin local\n"));
336                         qnode_pin_local(qn, test_node);
337                 } else if (confl_node == CHANGE_IMPOSSIBLE) {
338                         DBG((dbg, LEVEL_3, "\t    Impossible --> remove from qnode\n"));
339                         qnode_add_conflict(qn, test_node, test_node);
340                         return 0;
341                 } else {
342                         if (qnode_is_pinned_local(qn, confl_node)) {
343                                 /* changing test_node would change back a node of current ou */
344                                 if (confl_node == qn->ou->nodes[0]) {
345                                         /* Adding a conflict edge between testnode and conflnode
346                                          * would introduce a root -- arg interference.
347                                          * So remove the arg of the qn */
348                                         DBG((dbg, LEVEL_3, "\t    Conflicting local with phi --> remove from qnode\n"));
349                                         qnode_add_conflict(qn, test_node, test_node);
350                                 } else {
351                                         DBG((dbg, LEVEL_3, "\t    Conflicting local --> add conflict\n"));
352                                         qnode_add_conflict(qn, confl_node, test_node);
353                                 }
354                         }
355                         if (pset_find_ptr(pinned_global, confl_node)) {
356                                 /* changing test_node would change back a node of a prior ou */
357                                 DBG((dbg, LEVEL_3, "\t    Conflicting global --> remove from qnode\n"));
358                                 qnode_add_conflict(qn, test_node, test_node);
359                         }
360                         return 0;
361                 }
362         }
363         return 1;
364 }
365
366 /**
367  * Determines a maximum weighted independent set with respect to
368  * the interference and conflict edges of all nodes in a qnode.
369  */
370 static inline void qnode_max_ind_set(qnode_t *qn, const unit_t *ou)
371 {
372         ir_node **safe, **unsafe;
373         int i, o, safe_count, safe_costs, unsafe_count, *unsafe_costs;
374         bitset_t *curr, *best;
375         int next, curr_weight, best_weight = 0;
376
377         /* assign the nodes into two groups.
378          * safe: node has no interference, hence it is in every max stable set.
379          * unsafe: node has an interference
380          */
381         safe         = ALLOCAN(ir_node*, ou->node_count - 1);
382         safe_costs   = 0;
383         safe_count   = 0;
384         unsafe       = ALLOCAN(ir_node*, ou->node_count - 1);
385         unsafe_costs = ALLOCAN(int,      ou->node_count - 1);
386         unsafe_count = 0;
387         for (i=1; i<ou->node_count; ++i) {
388                 int is_safe = 1;
389                 for (o=1; o<ou->node_count; ++o) {
390                         if (qnode_are_conflicting(qn, ou->nodes[i], ou->nodes[o])) {
391                                 if (i!=o) {
392                                         unsafe_costs[unsafe_count] = ou->costs[i];
393                                         unsafe[unsafe_count] = ou->nodes[i];
394                                         ++unsafe_count;
395                                 }
396                                 is_safe = 0;
397                                 break;
398                         }
399                 }
400                 if (is_safe) {
401                         safe_costs += ou->costs[i];
402                         safe[safe_count++] = ou->nodes[i];
403                 }
404         }
405
406
407
408         /* now compute the best set out of the unsafe nodes*/
409         best = bitset_alloca(unsafe_count);
410
411         if (unsafe_count > MIS_HEUR_TRIGGER) {
412                 /* Heuristic: Greedy trial and error form index 0 to unsafe_count-1 */
413                 for (i=0; i<unsafe_count; ++i) {
414                         bitset_set(best, i);
415                         /* check if it is a stable set */
416                         for (o=bitset_next_set(best, 0); o!=-1 && o<=i; o=bitset_next_set(best, o+1))
417                                 if (qnode_are_conflicting(qn, unsafe[i], unsafe[o])) {
418                                         bitset_clear(best, i); /* clear the bit and try next one */
419                                         break;
420                                 }
421                 }
422                 /* compute the weight */
423                 bitset_foreach(best, pos)
424                         best_weight += unsafe_costs[pos];
425         } else {
426                 /* Exact Algorithm: Brute force */
427                 curr = bitset_alloca(unsafe_count);
428                 bitset_set_all(curr);
429                 while (!bitset_is_empty(curr)) {
430                         /* check if curr is a stable set */
431                         for (i=bitset_next_set(curr, 0); i!=-1; i=bitset_next_set(curr, i+1))
432                                 for (o=bitset_next_set(curr, i); o!=-1; o=bitset_next_set(curr, o+1)) /* !!!!! difference to ou_max_ind_set_costs(): NOT (curr, i+1) */
433                                                 if (qnode_are_conflicting(qn, unsafe[i], unsafe[o]))
434                                                         goto no_stable_set;
435
436                         /* if we arrive here, we have a stable set */
437                         /* compute the weight of the stable set*/
438                         curr_weight = 0;
439                         bitset_foreach(curr, pos)
440                                 curr_weight += unsafe_costs[pos];
441
442                         /* any better ? */
443                         if (curr_weight > best_weight) {
444                                 best_weight = curr_weight;
445                                 bitset_copy(best, curr);
446                         }
447
448 no_stable_set:
449                         bitset_minus1(curr);
450                 }
451         }
452
453         /* transfer the best set into the qn */
454         qn->mis_size = 1+safe_count+bitset_popcount(best);
455         qn->mis_costs = safe_costs+best_weight;
456         qn->mis[0] = ou->nodes[0]; /* the root is always in a max stable set */
457         next = 1;
458         for (i=0; i<safe_count; ++i)
459                 qn->mis[next++] = safe[i];
460         bitset_foreach(best, pos)
461                 qn->mis[next++] = unsafe[pos];
462 }
463
464 /**
465  * Creates a new qnode
466  */
467 static inline qnode_t *new_qnode(const unit_t *ou, int color)
468 {
469         qnode_t *qn = XMALLOC(qnode_t);
470         qn->ou            = ou;
471         qn->color         = color;
472         qn->mis           = XMALLOCN(ir_node*, ou->node_count);
473         qn->conflicts     = new_set(set_cmp_conflict_t, SLOTS_CONFLICTS);
474         qn->changed_nodes = new_set(set_cmp_node_stat_t, SLOTS_CHANGED_NODES);
475         return qn;
476 }
477
478 /**
479  * Frees space used by a queue node
480  */
481 static inline void free_qnode(qnode_t *qn)
482 {
483         del_set(qn->conflicts);
484         del_set(qn->changed_nodes);
485         xfree(qn->mis);
486         xfree(qn);
487 }
488
489 /**
490  * Inserts a qnode in the sorted queue of the optimization unit. Queue is
491  * ordered by field 'size' (the size of the mis) in decreasing order.
492  */
493 static inline void ou_insert_qnode(unit_t *ou, qnode_t *qn)
494 {
495         struct list_head *lh;
496
497         if (qnode_are_conflicting(qn, ou->nodes[0], ou->nodes[0])) {
498                 /* root node is not in qnode */
499                 free_qnode(qn);
500                 return;
501         }
502
503         qnode_max_ind_set(qn, ou);
504         /* do the insertion */
505         DBG((dbg, LEVEL_4, "\t  Insert qnode color %d with cost %d\n", qn->color, qn->mis_costs));
506         lh = &ou->queue;
507         while (lh->next != &ou->queue) {
508                 qnode_t *curr = list_entry_queue(lh->next);
509                 if (curr->mis_costs <= qn->mis_costs)
510                         break;
511                 lh = lh->next;
512         }
513         list_add(&qn->queue, lh);
514 }
515
516 /**
517  * Tries to re-allocate colors of nodes in this opt unit, to achieve lower
518  * costs of copy instructions placed during SSA-destruction and lowering.
519  * Works only for opt units with exactly 1 root node, which is the
520  * case for approximately 80% of all phi classes and 100% of register constrained
521  * nodes. (All other phi classes are reduced to this case.)
522  */
523 static void ou_optimize(unit_t *ou, bitset_t const *const allocatable_regs, be_ifg_t *const ifg)
524 {
525         DBG((dbg, LEVEL_1, "\tOptimizing unit:\n"));
526         for (int i = 0; i < ou->node_count; ++i)
527                 DBG((dbg, LEVEL_1, "\t %+F\n", ou->nodes[i]));
528
529         /* init queue */
530         INIT_LIST_HEAD(&ou->queue);
531
532         arch_register_req_t const *const req    = arch_get_irn_register_req(ou->nodes[0]);
533         unsigned                   const n_regs = req->cls->n_regs;
534         if (arch_register_req_is(req, limited)) {
535                 unsigned const* limited = req->limited;
536
537                 for (unsigned idx = 0; idx != n_regs; ++idx) {
538                         if (!bitset_is_set(allocatable_regs, idx))
539                                 continue;
540                         if (!rbitset_is_set(limited, idx))
541                                 continue;
542
543                         ou_insert_qnode(ou, new_qnode(ou, idx));
544                 }
545         } else {
546                 for (unsigned idx = 0; idx != n_regs; ++idx) {
547                         if (!bitset_is_set(allocatable_regs, idx))
548                                 continue;
549
550                         ou_insert_qnode(ou, new_qnode(ou, idx));
551                 }
552         }
553
554         /* search best */
555         qnode_t *curr;
556         for (;;) {
557                 assert(!list_empty(&ou->queue));
558                 /* get head of queue */
559                 curr = list_entry_queue(ou->queue.next);
560                 list_del(&curr->queue);
561                 DBG((dbg, LEVEL_2, "\t  Examine qnode color %d with cost %d\n", curr->color, curr->mis_costs));
562
563                 /* try */
564                 if (qnode_try_color(curr, allocatable_regs, ifg))
565                         break;
566
567                 /* no success, so re-insert */
568                 del_set(curr->changed_nodes);
569                 curr->changed_nodes = new_set(set_cmp_node_stat_t, SLOTS_CHANGED_NODES);
570                 ou_insert_qnode(ou, curr);
571         }
572
573         /* apply the best found qnode */
574         if (curr->mis_size >= 2) {
575                 int root_col = qnode_get_new_color(curr, ou->nodes[0]);
576                 DBG((dbg, LEVEL_1, "\t  Best color: %d  Costs: %d << %d << %d\n", curr->color, ou->min_nodes_costs, ou->all_nodes_costs - curr->mis_costs, ou->all_nodes_costs));
577                 /* globally pin root and all args which have the same color */
578                 pset_insert_ptr(pinned_global, ou->nodes[0]);
579                 for (int i = 1; i < ou->node_count; ++i) {
580                         ir_node *irn = ou->nodes[i];
581                         int nc = qnode_get_new_color(curr, irn);
582                         if (nc != NO_COLOR && nc == root_col)
583                                 pset_insert_ptr(pinned_global, irn);
584                 }
585
586                 /* set color of all changed nodes */
587                 foreach_set(curr->changed_nodes, node_stat_t, ns) {
588                         /* NO_COLOR is possible, if we had an undo */
589                         if (ns->new_color != NO_COLOR) {
590                                 DBG((dbg, LEVEL_1, "\t    color(%+F) := %d\n", ns->irn, ns->new_color));
591                                 set_irn_col(req->cls, ns->irn, ns->new_color);
592                         }
593                 }
594         }
595
596         /* free best qnode (curr) and queue */
597         free_qnode(curr);
598         list_for_each_entry_safe(qnode_t, curr, tmp, &ou->queue, queue)
599                 free_qnode(curr);
600 }
601
602 /**
603  * Solves the problem using a heuristic approach
604  * Uses the OU data structure
605  */
606 int co_solve_heuristic(copy_opt_t *co)
607 {
608         ASSERT_OU_AVAIL(co);
609
610         pinned_global = pset_new_ptr(SLOTS_PINNED_GLOBAL);
611         bitset_t const *const allocatable_regs = co->cenv->allocatable_regs;
612         be_ifg_t       *const ifg              = co->cenv->ifg;
613         list_for_each_entry(unit_t, curr, &co->units, units) {
614                 if (curr->node_count > 1)
615                         ou_optimize(curr, allocatable_regs, ifg);
616         }
617
618         del_pset(pinned_global);
619         return 0;
620 }
621
622 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_copyheur)
623 void be_init_copyheur(void)
624 {
625         static co_algo_info copyheur = {
626                 co_solve_heuristic, 0
627         };
628
629         be_register_copyopt("heur1", &copyheur);
630         FIRM_DBG_REGISTER(dbg, "ir.be.copyoptheur");
631 }