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