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