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