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