fixed function param types to const
[libfirm] / ir / be / bespillbelady.c
1 /**
2  * Author:      Daniel Grund
3  * Date:                20.09.2005
4  * Copyright:   (c) Universitaet Karlsruhe
5  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
6  *
7  */
8 #ifdef HAVE_CONFIG_H
9 #include "config.h"
10 #endif
11
12 #ifdef HAVE_ALLOCA_H
13 #include <alloca.h>
14 #endif
15
16 #ifdef HAVE_MALLOC_H
17 #include <malloc.h>
18 #endif
19
20 #include "obst.h"
21 #include "set.h"
22 #include "pset.h"
23 #include "irgraph.h"
24 #include "irnode.h"
25 #include "irmode.h"
26 #include "irgwalk.h"
27 #include "iredges_t.h"
28 #include "ircons_t.h"
29 #include "irprintf.h"
30
31 #include "beutil.h"
32 #include "bearch.h"
33 #include "bespillbelady.h"
34 #include "beuses_t.h"
35 #include "besched_t.h"
36 #include "beirgmod.h"
37 #include "belive_t.h"
38 #include "benode_t.h"
39 #include "bechordal_t.h"
40
41 #define DBG_SPILL   1
42 #define DBG_WSETS   2
43 #define DBG_FIX     4
44 #define DBG_DECIDE  8
45 #define DBG_START  16
46 #define DBG_SLOTS  32
47 #define DBG_TRACE  64
48 #define DEBUG_LVL 0 //(DBG_START | DBG_DECIDE | DBG_WSETS | DBG_FIX | DBG_SPILL)
49 static firm_dbg_module_t *dbg = NULL;
50
51 #define MIN(a,b) (((a)<(b))?(a):(b))
52
53 typedef struct _workset_t workset_t;
54
55 typedef struct _belady_env_t {
56         struct obstack ob;
57         const arch_env_t *arch;
58         const arch_register_class_t *cls;
59         int n_regs;                     /** number of regs in this reg-class */
60
61         workset_t *ws;          /**< the main workset used while processing a block. ob-allocated */
62         be_uses_t *uses;        /**< env for the next-use magic */
63         ir_node *instr;         /**< current instruction */
64         unsigned instr_nr;      /**< current instruction number (relative to block start) */
65         pset *used;                     /**< holds the values used (so far) in the current BB */
66         pset *copies;           /**< holds all copies placed due to phi-spilling */
67
68         spill_env_t *senv;      /* see bespill.h */
69         pset *reloads;          /**< all reload nodes placed */
70 } belady_env_t;
71
72 struct _workset_t {
73         belady_env_t *bel;
74         int len;                        /**< current length */
75         loc_t vals[1];          /**< inlined array of the values/distances in this working set */
76 };
77
78 void workset_print(const workset_t *w)
79 {
80         int i;
81
82         for(i = 0; i < w->len; ++i) {
83                 ir_printf("%+F %d\n", w->vals[i].irn, w->vals[i].time);
84         }
85 }
86
87 /**
88  * Alloc a new workset on obstack @p ob with maximum size @p max
89  */
90 static INLINE workset_t *new_workset(struct obstack *ob, belady_env_t *bel) {
91         workset_t *res;
92         size_t size = sizeof(*res) + (bel->n_regs-1)*sizeof(res->vals[0]);
93         res = obstack_alloc(ob, size);
94         memset(res, 0, size);
95         res->bel = bel;
96         return res;
97 }
98
99 /**
100  * Alloc a new instance on obstack and make it equal to @param ws
101  */
102 static INLINE workset_t *workset_clone(struct obstack *ob, workset_t *ws) {
103         workset_t *res;
104         size_t size = sizeof(*res) + (ws->bel->n_regs-1)*sizeof(res->vals[0]);
105         res = obstack_alloc(ob, size);
106         memcpy(res, ws, size);
107         return res;
108 }
109
110 /**
111  * Do NOT alloc anything. Make @param tgt equal to @param src.
112  * returns @param tgt for convinience
113  */
114 static INLINE workset_t *workset_copy(workset_t *tgt, workset_t *src) {
115         size_t size = sizeof(*src) + (src->bel->n_regs-1)*sizeof(src->vals[0]);
116         memcpy(tgt, src, size);
117         return tgt;
118 }
119
120 /**
121  * Overwrites the current content array of @param ws with the
122  * @param count locations given at memory @param locs.
123  * Set the length of @param ws to count.
124  */
125 #define workset_bulk_fill(ws, count, locs) memcpy(&(ws)->vals[0], locs, ((ws)->len=count)*sizeof(locs[0]));
126
127
128 /**
129  * Inserts the value @p val into the workset, iff it is not
130  * already contained. The workset must not be full.
131  */
132 static INLINE void workset_insert(workset_t *ws, ir_node *val) {
133         int i;
134         /* check for current regclass */
135         if (arch_get_irn_reg_class(ws->bel->arch, val, -1) != ws->bel->cls) {
136                 DBG((dbg, DBG_DECIDE, "Dropped %+F\n", val));
137                 return;
138         }
139
140         /* check if val is already contained */
141         for(i=0; i<ws->len; ++i)
142                 if (ws->vals[i].irn == val)
143                         return;
144
145         /* insert val */
146         assert(ws->len < ws->bel->n_regs && "Workset already full!");
147         ws->vals[ws->len++].irn = val;
148 }
149
150 /**
151  * Inserts all values in array @p vals of length @p cnt
152  * into the workset. There must be enough space for the
153  * entries.
154  */
155 static INLINE void workset_bulk_insert(workset_t *ws, int cnt, ir_node **vals) {
156         int i, o;
157
158         for(o=0; o<cnt; ++o) {
159                 ir_node *val = vals[o];
160                 DBG((dbg, DBG_TRACE, "Bulk insert %+F\n", val));
161                 /* check for current regclass */
162                 if (arch_get_irn_reg_class(ws->bel->arch, val, -1) != ws->bel->cls) {
163                         DBG((dbg, DBG_TRACE, "Wrong reg class\n"));
164                         goto no_insert;
165                 }
166
167                 /* check if val is already contained */
168                 for(i=0; i<ws->len; ++i)
169                         if (ws->vals[i].irn == val) {
170                                 DBG((dbg, DBG_TRACE, "Already contained\n"));
171                                 goto no_insert;
172                         }
173
174                 /* insert val */
175                 assert(ws->len < ws->bel->n_regs && "Workset does not have enough room!");
176                 ws->vals[ws->len++].irn = val;
177                 DBG((dbg, DBG_TRACE, "Inserted\n"));
178
179 no_insert:
180                 /*epsilon statement :)*/;
181         }
182 }
183
184 /**
185  * Removes all entries from this workset
186  */
187 #define workset_clear(ws) (ws)->len = 0;
188
189 /**
190  * Removes the value @p val from the workset if present.
191  */
192 static INLINE void workset_remove(workset_t *ws, ir_node *val) {
193         int i;
194         for(i=0; i<ws->len; ++i)
195                 if (ws->vals[i].irn == val) {
196                         ws->vals[i] = ws->vals[--ws->len];
197                         return;
198                 }
199 }
200
201 static INLINE int workset_contains(const workset_t *ws, const ir_node *val) {
202         int i;
203         for(i=0; i<ws->len; ++i)
204                 if (ws->vals[i].irn == val)
205                         return 1;
206         return 0;
207 }
208
209 /**
210  * Iterates over all values in the working set.
211  * @p ws The workset to iterate
212  * @p v  A variable to put the current value in
213  * @p i  An integer for internal use
214  */
215 #define workset_foreach(ws, v, i)       for(i=0; \
216                                                                                 v=(i < ws->len) ? ws->vals[i].irn : NULL, i < ws->len; \
217                                                                                 ++i)
218
219 #define workset_set_time(ws, i, t) (ws)->vals[i].time=t
220 #define workset_set_length(ws, length) (ws)->len = length
221 #define workset_get_length(ws) ((ws)->len)
222 #define workset_get_val(ws, i) ((ws)->vals[i].irn)
223 #define workset_sort(ws) qsort((ws)->vals, (ws)->len, sizeof((ws)->vals[0]), loc_compare);
224
225 typedef struct _block_info_t {
226         workset_t *ws_start, *ws_end;
227 } block_info_t;
228
229
230 static INLINE void *new_block_info(struct obstack *ob) {
231         block_info_t *res = obstack_alloc(ob, sizeof(*res));
232         res->ws_start = NULL;
233         res->ws_end = NULL;
234
235         return res;
236 }
237
238 #define get_block_info(blk)                     ((block_info_t *)get_irn_link(blk))
239 #define set_block_info(blk, info)       set_irn_link(blk, info)
240
241 static int is_mem_phi(const ir_node *irn, void *data) {
242         workset_t *sws;
243         ir_node *blk = get_nodes_block(irn);
244
245         DBG((dbg, DBG_SPILL, "Is %+F a mem-phi?\n", irn));
246         sws = get_block_info(blk)->ws_start;
247         DBG((dbg, DBG_SPILL, "  %d\n", !workset_contains(sws, irn)));
248         return !workset_contains(sws, irn);
249 }
250
251 /**
252  * @return The distance to the next use
253  *         Or 0 if irn is an ignore node
254  */
255
256 static INLINE unsigned get_distance(belady_env_t *bel, const ir_node *from, unsigned from_step, const ir_node *def, int skip_from_uses)
257 {
258         arch_irn_flags_t fl = arch_irn_get_flags(bel->arch, def);
259         if((fl & (arch_irn_flags_ignore | arch_irn_flags_dont_spill)) != 0)
260                 return 0;
261         else
262                 return be_get_next_use(bel->uses, from, from_step, def, skip_from_uses);
263 }
264
265 /**
266  * Performs the actions necessary to grant the request that:
267  * - new_vals can be held in registers
268  * - as few as possible other values are disposed
269  * - the worst values get disposed
270  *
271  * @p is_usage indicates that the values in new_vals are used (not defined)
272  * In this case reloads must be performed
273  */
274 static void displace(belady_env_t *bel, workset_t *new_vals, int is_usage) {
275         ir_node *val;
276         int i, len, max_allowed, demand, iter;
277         workset_t *ws = bel->ws;
278         ir_node **to_insert = alloca(bel->n_regs * sizeof(*to_insert));
279
280         /*
281          * 1. Identify the number of needed slots and the values to reload
282          */
283         demand = 0;
284         workset_foreach(new_vals, val, iter) {
285                 /* mark value as used */
286                 if (is_usage)
287                         pset_insert_ptr(bel->used, val);
288
289                 if (!workset_contains(ws, val)) {
290                         DBG((dbg, DBG_DECIDE, "    insert %+F\n", val));
291                         to_insert[demand++] = val;
292                         if (is_usage)
293                                 be_add_reload(bel->senv, val, bel->instr);
294                 } else
295                         DBG((dbg, DBG_DECIDE, "    skip %+F\n", val));
296         }
297         DBG((dbg, DBG_DECIDE, "    demand = %d\n", demand));
298
299
300         /*
301          * 2. Make room for at least 'demand' slots
302          */
303         len = workset_get_length(ws);
304         max_allowed = bel->n_regs - demand;
305
306         /* Only make more free room if we do not have enough */
307         if (len > max_allowed) {
308                 /* get current next-use distance */
309                 for (i=0; i<ws->len; ++i)
310                         workset_set_time(ws, i, get_distance(bel, bel->instr, bel->instr_nr, workset_get_val(ws, i), !is_usage));
311
312                 /* sort entries by increasing nextuse-distance*/
313                 workset_sort(ws);
314
315                 /* Logic for not needed live-ins: If a value is disposed
316                    before its first usage, remove it from start workset */
317                 for (i=max_allowed; i<ws->len; ++i) {
318                         ir_node *irn = ws->vals[i].irn;
319                         if (!pset_find_ptr(bel->used, irn)) {
320                                 ir_node *curr_bb = get_nodes_block(bel->instr);
321                                 workset_t *ws_start = get_block_info(curr_bb)->ws_start;
322                                 workset_remove(ws_start, irn);
323
324                                 DBG((dbg, DBG_DECIDE, "    dispose %+F dumb\n", irn));
325                         } else
326                                 DBG((dbg, DBG_DECIDE, "    dispose %+F\n", irn));
327                 }
328
329                 /* kill the last 'demand' entries in the array */
330                 workset_set_length(ws, max_allowed);
331         }
332
333         /*
334          * 3. Insert the new values into the workset
335          */
336         workset_bulk_insert(bel->ws, demand, to_insert);
337 }
338
339 static void belady(ir_node *blk, void *env);
340
341 /**
342  * Collects all values live-in at block @p blk and all phi results in this block.
343  * Then it adds the best values (at most n_regs) to the blocks start_workset.
344  * The phis among the remaining values get spilled: Introduce psudo-copies of
345  *  their args to break interference and make it possible to spill them to the
346  *  same spill slot.
347  */
348 static block_info_t *compute_block_start_info(ir_node *blk, void *env) {
349         belady_env_t *bel = env;
350         ir_node *irn, *first;
351         irn_live_t *li;
352         int i, count, ws_count;
353         loc_t loc, *starters;
354         ir_graph *irg = get_irn_irg(blk);
355         struct obstack ob;
356         block_info_t *res = get_block_info(blk);
357
358         /* Have we seen this block before? */
359         if (res)
360                 return res;
361
362         /* Create the block info for this block. */
363         res = new_block_info(&bel->ob);
364         set_block_info(blk, res);
365
366
367         /* Get all values living at the block start sorted by next use*/
368         obstack_init(&ob);
369
370         DBG((dbg, DBG_START, "Living at start of %+F:\n", blk));
371         first = sched_first(blk);
372         count = 0;
373         sched_foreach(blk, irn)
374                 if (is_Phi(irn) && arch_get_irn_reg_class(bel->arch, irn, -1) == bel->cls) {
375                         loc.irn = irn;
376                         loc.time = get_distance(bel, first, 0, irn, 0);
377                         obstack_grow(&ob, &loc, sizeof(loc));
378                         DBG((dbg, DBG_START, "    %+F:\n", irn));
379                         count++;
380                 } else
381                         break;
382
383         live_foreach(blk, li)
384                 if (live_is_in(li) && arch_get_irn_reg_class(bel->arch, li->irn, -1) == bel->cls) {
385                         loc.irn = (ir_node *)li->irn;
386                         loc.time = get_distance(bel, first, 0, li->irn, 0);
387                         obstack_grow(&ob, &loc, sizeof(loc));
388                         DBG((dbg, DBG_START, "    %+F:\n", irn));
389                         count++;
390                 }
391
392         starters = obstack_finish(&ob);
393         qsort(starters, count, sizeof(starters[0]), loc_compare);
394
395
396         /* If we have only one predecessor, we want the start_set of blk to be the end_set of pred */
397         if (get_Block_n_cfgpreds(blk) == 1 && blk != get_irg_start_block(get_irn_irg(blk))) {
398                 ir_node *pred_blk       = get_Block_cfgpred_block(blk, 0);
399                 block_info_t *pred_info = get_block_info(pred_blk);
400
401                 /* if pred block has not been processed yet, do it now */
402                 if (! pred_info) {
403                         belady(pred_blk, bel);
404                         pred_info = get_block_info(pred_blk);
405                 }
406
407                 /* now we have an end_set of pred */
408                 assert(pred_info->ws_end && "The recursive call (above) is supposed to compute an end_set");
409                 res->ws_start = workset_clone(&bel->ob, pred_info->ws_end);
410
411         } else
412
413         /* Else we want the start_set to be the values used 'the closest' */
414         {
415                 /* Copy the best ones from starters to start workset */
416                 ws_count = MIN(count, bel->n_regs);
417                 res->ws_start = new_workset(&bel->ob, bel);
418                 workset_bulk_fill(res->ws_start, ws_count, starters);
419         }
420
421
422         /* The phis of this block which are not in the start set have to be spilled later.
423          * Therefore we add temporary copies in the pred_blocks so the spills can spill
424          * into the same spill slot.
425          * After spilling these copies get deleted. */
426         for (i=workset_get_length(res->ws_start); i<count; ++i) {
427                 int o, max;
428
429                 irn = starters[i].irn;
430                 if (!is_Phi(irn) || get_nodes_block(irn) != blk)
431                         continue;
432
433                 DBG((dbg, DBG_START, "For %+F:\n", irn));
434
435                 for (max=get_irn_arity(irn), o=0; o<max; ++o) {
436                         ir_node *arg = get_irn_n(irn, o);
437                         ir_node *pred_block = get_Block_cfgpred_block(get_nodes_block(irn), o);
438                         ir_node *cpy = be_new_Copy(bel->cls, irg, pred_block, arg);
439                         pset_insert_ptr(bel->copies, cpy);
440                         DBG((dbg, DBG_START, "    place a %+F of %+F in %+F\n", cpy, arg, pred_block));
441                         sched_add_before(pred_block, cpy);
442                         set_irn_n(irn, o, cpy);
443                 }
444         }
445
446         obstack_free(&ob, NULL);
447         return res;
448 }
449
450
451 /**
452  * For the given block @p blk, decide for each values
453  * whether it is used from a register or is reloaded
454  * before the use.
455  */
456 static void belady(ir_node *blk, void *env) {
457         belady_env_t *bel = env;
458         workset_t *new_vals;
459         ir_node *irn;
460         int iter;
461         block_info_t *blk_info;
462
463         /* Don't do a block twice */
464         if (get_block_info(blk))
465                 return;
466
467         /* get the starting workset for this block */
468         blk_info = compute_block_start_info(blk, bel);
469
470         DBG((dbg, DBG_DECIDE, "\n"));
471         DBG((dbg, DBG_DECIDE, "Decide for %+F\n", blk));
472
473         workset_copy(bel->ws, blk_info->ws_start);
474         DBG((dbg, DBG_WSETS, "Start workset for %+F:\n", blk));
475         workset_foreach(bel->ws, irn, iter)
476                 DBG((dbg, DBG_WSETS, "  %+F\n", irn));
477
478         /* process the block from start to end */
479         DBG((dbg, DBG_WSETS, "Processing...\n"));
480         bel->used = pset_new_ptr(32);
481         bel->instr_nr = 0;
482         new_vals = new_workset(&bel->ob, bel);
483         sched_foreach(blk, irn) {
484                 assert(workset_get_length(bel->ws) <= bel->n_regs && "Too much values in workset!");
485
486
487                 /* projs are handled with the tuple value.
488                  * Phis are no real instr (see insert_starters())
489                  * instr_nr does not increase */
490                 if (is_Proj(irn) || is_Phi(irn)) {
491                         DBG((dbg, DBG_DECIDE, "  ...%+F skipped\n", irn));
492                         continue;
493                 }
494                 DBG((dbg, DBG_DECIDE, "  ...%+F\n", irn));
495
496                 /* set instruction in the workset */
497                 bel->instr = irn;
498
499                 /* allocate all values _used_ by this instruction */
500                 workset_clear(new_vals);
501                 workset_bulk_insert(new_vals, get_irn_arity(irn)+1, get_irn_in(irn));
502                 displace(bel, new_vals, 1);
503
504                 /* allocate all values _defined_ by this instruction */
505                 workset_clear(new_vals);
506                 if (get_irn_mode(irn) == mode_T) { /* special handling for tuples and projs */
507                         ir_node *proj;
508                         for(proj=sched_next(irn); is_Proj(proj); proj=sched_next(proj))
509                                 workset_insert(new_vals, proj);
510                 } else {
511                         workset_insert(new_vals, irn);
512                 }
513                 displace(bel, new_vals, 0);
514
515                 bel->instr_nr++;
516         }
517         del_pset(bel->used);
518
519         /* Remember end-workset for this block */
520         blk_info->ws_end = workset_clone(&bel->ob, bel->ws);
521         DBG((dbg, DBG_WSETS, "End workset for %+F:\n", blk));
522         workset_foreach(blk_info->ws_end, irn, iter)
523                 DBG((dbg, DBG_WSETS, "  %+F\n", irn));
524 }
525
526 /**
527  * 'decide' is block-local and makes assumptions
528  * about the set of live-ins. Thus we must adapt the
529  * live-outs to the live-ins at each block-border.
530  */
531 static void fix_block_borders(ir_node *blk, void *env) {
532         workset_t *wsb;
533         belady_env_t *bel = env;
534         int i, max, iter, iter2;
535
536         DBG((dbg, DBG_FIX, "\n"));
537         DBG((dbg, DBG_FIX, "Fixing %+F\n", blk));
538
539         wsb = get_block_info(blk)->ws_start;
540
541         /* process all pred blocks */
542         for (i=0, max=get_irn_arity(blk); i<max; ++i) {
543                 ir_node *irnb, *irnp, *pred = get_Block_cfgpred_block(blk, i);
544                 workset_t *wsp = get_block_info(pred)->ws_end;
545
546                 DBG((dbg, DBG_FIX, "  Pred %+F\n", pred));
547
548                 workset_foreach(wsb, irnb, iter) {
549                         /* if irnb is a phi of the current block we reload
550                          * the corresponding argument, else irnb itself */
551                         if(is_Phi(irnb) && blk == get_nodes_block(irnb))
552                                 irnb = get_irn_n(irnb, i);
553
554                         /* Unknowns are available everywhere */
555                         if(get_irn_opcode(irnb) == iro_Unknown)
556                                 continue;
557
558                         /* check if irnb is in a register at end of pred */
559                         workset_foreach(wsp, irnp, iter2)
560                                 if (irnb == irnp)
561                                         goto next_value;
562
563                         /* irnb is in memory at the end of pred, so we have to reload it */
564                         DBG((dbg, DBG_FIX, "    reload %+F\n", irnb));
565                         be_add_reload_on_edge(bel->senv, irnb, blk, i);
566
567 next_value:
568                         /*epsilon statement :)*/;
569                 }
570         }
571 }
572
573 /**
574  * Removes all used reloads from bel->reloads.
575  * The remaining nodes in bel->reloads will be removed from the graph.
576  */
577 static void rescue_used_reloads(ir_node *irn, void *env) {
578         pset *rlds = (pset *)env;
579         if (pset_find_ptr(rlds, irn))
580                 pset_remove_ptr(rlds, irn);
581 }
582
583 /**
584  * Removes all copies introduced for phi-spills
585  */
586 static void remove_copies(belady_env_t *bel) {
587         ir_node *irn;
588
589         for (irn = pset_first(bel->copies); irn; irn = pset_next(bel->copies)) {
590                 ir_node *src, *spill;
591
592                 assert(be_is_Copy(irn));
593                 assert(get_irn_n_edges(irn) == 1 && "This is not a copy introduced in 'compute_block_start_info()'. Who created it?");
594
595                 spill = get_irn_edge(get_irn_irg(irn), irn, 0)->src;
596                 assert(be_is_Spill(spill) && "This is not a copy introduced in 'compute_block_start_info()'. Who created it?");
597
598                 src = get_irn_n(irn, 0);
599                 set_irn_n(spill, 0, src);
600         }
601 }
602
603 /**
604  * Finds all unused reloads and remove them from the schedule
605  * Also removes spills if they are not used anymore after removing reloads
606  */
607 static void remove_unused_reloads(ir_graph *irg, belady_env_t *bel) {
608         ir_node *irn;
609
610         irg_walk_graph(irg, rescue_used_reloads, NULL, bel->reloads);
611         for(irn = pset_first(bel->reloads); irn; irn = pset_next(bel->reloads)) {
612                 ir_node *spill;
613                 DBG((dbg, DBG_SPILL, "Removing %+F before %+F in %+F\n", irn, sched_next(irn), get_nodes_block(irn)));
614
615                 spill = get_irn_n(irn, 0);
616
617                 /* remove reload */
618                 set_irn_n(irn, 0, new_Bad());
619                 sched_remove(irn);
620
621                 /* if spill not used anymore, remove it too
622                  * test of regclass is necessary since spill may be a phi-M */
623                 if (get_irn_n_edges(spill) == 0 && bel->cls == arch_get_irn_reg_class(bel->arch, spill, -1)) {
624                         set_irn_n(spill, 0, new_Bad());
625                         sched_remove(spill);
626                 }
627         }
628 }
629
630 void be_spill_belady(const be_chordal_env_t *chordal_env) {
631         belady_env_t bel;
632
633         dbg = firm_dbg_register("ir.be.spillbelady");
634
635         /* init belady env */
636         obstack_init(&bel.ob);
637         bel.arch    = chordal_env->birg->main_env->arch_env;
638         bel.cls     = chordal_env->cls;
639         bel.n_regs  = arch_register_class_n_regs(bel.cls);
640         bel.ws      = new_workset(&bel.ob, &bel);
641         bel.uses    = be_begin_uses(chordal_env->irg, chordal_env->birg->main_env->arch_env, bel.cls);
642         bel.senv    = be_new_spill_env(dbg, chordal_env, is_mem_phi, NULL);
643         bel.reloads = pset_new_ptr_default();
644         bel.copies  = pset_new_ptr_default();
645
646         DBG((dbg, LEVEL_1, "running on register class: %s\n", bel.cls->name));
647
648         /* do the work */
649         be_clear_links(chordal_env->irg);
650         irg_block_walk_graph(chordal_env->irg, NULL, belady, &bel);
651         irg_block_walk_graph(chordal_env->irg, fix_block_borders, NULL, &bel);
652         be_insert_spills_reloads(bel.senv, bel.reloads);
653         remove_unused_reloads(chordal_env->irg, &bel);
654         remove_copies(&bel);
655
656         /* clean up */
657         del_pset(bel.reloads);
658         be_delete_spill_env(bel.senv);
659         be_end_uses(bel.uses);
660         obstack_free(&bel.ob, NULL);
661 }