fde941c5357b1cf523517cf3c1a56e543dc2b75d
[libfirm] / ir / be / bespillbelady.c
1 /**
2  * Author:      Daniel Grund, Matthias Braun
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 "irprintf_t.h"
24 #include "irgraph.h"
25 #include "irnode.h"
26 #include "irmode.h"
27 #include "irgwalk.h"
28 #include "irloop.h"
29 #include "iredges_t.h"
30 #include "ircons_t.h"
31 #include "irprintf.h"
32
33 #include "beutil.h"
34 #include "bearch.h"
35 #include "bespillbelady.h"
36 #include "beuses_t.h"
37 #include "besched_t.h"
38 #include "beirgmod.h"
39 #include "belive_t.h"
40 #include "benode_t.h"
41 #include "bechordal_t.h"
42
43 #define DBG_SPILL   1
44 #define DBG_WSETS   2
45 #define DBG_FIX     4
46 #define DBG_DECIDE  8
47 #define DBG_START  16
48 #define DBG_SLOTS  32
49 #define DBG_TRACE  64
50 #define DBG_WORKSET 128
51 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
52
53 /**
54  * An association between a node and a point in time.
55  */
56 typedef struct _loc_t {
57   ir_node *irn;        /**< A node. */
58   unsigned time;       /**< A use time (see beuses.h). */
59 } loc_t;
60
61 typedef struct _workset_t {
62         int len;                        /**< current length */
63         loc_t vals[0];          /**< inlined array of the values/distances in this working set */
64 } workset_t;
65
66 typedef struct _belady_env_t {
67         struct obstack ob;
68         const be_chordal_env_t *cenv;
69         const arch_env_t *arch;
70         const arch_register_class_t *cls;
71         int n_regs;                     /** number of regs in this reg-class */
72
73         workset_t *ws;          /**< the main workset used while processing a block. ob-allocated */
74         be_uses_t *uses;        /**< env for the next-use magic */
75         ir_node *instr;         /**< current instruction */
76         unsigned instr_nr;      /**< current instruction number (relative to block start) */
77         pset *used;
78
79         spill_env_t *senv;      /**< see bespill.h */
80 } belady_env_t;
81
82 static int loc_compare(const void *a, const void *b)
83 {
84         const loc_t *p = a;
85         const loc_t *q = b;
86         return p->time - q->time;
87 }
88
89 void workset_print(const workset_t *w)
90 {
91         int i;
92
93         for(i = 0; i < w->len; ++i) {
94                 ir_fprintf(stderr, "%+F %d\n", w->vals[i].irn, w->vals[i].time);
95         }
96 }
97
98 /**
99  * Alloc a new workset on obstack @p ob with maximum size @p max
100  */
101 static INLINE workset_t *new_workset(belady_env_t *env, struct obstack *ob) {
102         workset_t *res;
103         size_t size = sizeof(*res) + (env->n_regs)*sizeof(res->vals[0]);
104         res = obstack_alloc(ob, size);
105         memset(res, 0, size);
106         return res;
107 }
108
109 /**
110  * Alloc a new instance on obstack and make it equal to @param ws
111  */
112 static INLINE workset_t *workset_clone(belady_env_t *env, struct obstack *ob, workset_t *ws) {
113         workset_t *res;
114         size_t size = sizeof(*res) + (env->n_regs)*sizeof(res->vals[0]);
115         res = obstack_alloc(ob, size);
116         memcpy(res, ws, size);
117         return res;
118 }
119
120 /**
121  * Do NOT alloc anything. Make @param tgt equal to @param src.
122  * returns @param tgt for convenience
123  */
124 static INLINE workset_t *workset_copy(belady_env_t *env, workset_t *tgt, workset_t *src) {
125         size_t size = sizeof(*src) + (env->n_regs)*sizeof(src->vals[0]);
126         memcpy(tgt, src, size);
127         return tgt;
128 }
129
130 /**
131  * Overwrites the current content array of @param ws with the
132  * @param count locations given at memory @param locs.
133  * Set the length of @param ws to count.
134  */
135 static INLINE void workset_bulk_fill(workset_t *workset, int count, const loc_t *locs) {
136         workset->len = count;
137         memcpy(&(workset->vals[0]), locs, count * sizeof(locs[0]));
138 }
139
140 /**
141  * Inserts the value @p val into the workset, iff it is not
142  * already contained. The workset must not be full.
143  */
144 static INLINE void workset_insert(belady_env_t *env, workset_t *ws, ir_node *val) {
145         int i;
146         /* check for current regclass */
147         if (!arch_irn_consider_in_reg_alloc(env->arch, env->cls, val)) {
148                 DBG((dbg, DBG_WORKSET, "Skipped %+F\n", val));
149                 return;
150         }
151
152         /* check if val is already contained */
153         for(i=0; i<ws->len; ++i)
154                 if (ws->vals[i].irn == val)
155                         return;
156
157         /* insert val */
158         assert(ws->len < env->n_regs && "Workset already full!");
159         ws->vals[ws->len++].irn = val;
160 }
161
162 /**
163  * Removes all entries from this workset
164  */
165 static INLINE void workset_clear(workset_t *ws) {
166         ws->len = 0;
167 }
168
169 /**
170  * Removes the value @p val from the workset if present.
171  */
172 static INLINE void workset_remove(workset_t *ws, ir_node *val) {
173         int i;
174         for(i=0; i<ws->len; ++i) {
175                 if (ws->vals[i].irn == val) {
176                         ws->vals[i] = ws->vals[--ws->len];
177                         return;
178                 }
179         }
180 }
181
182 static INLINE int workset_contains(const workset_t *ws, const ir_node *val) {
183         int i;
184         for(i=0; i<ws->len; ++i) {
185                 if (ws->vals[i].irn == val)
186                         return 1;
187         }
188
189         return 0;
190 }
191
192 /**
193  * Iterates over all values in the working set.
194  * @p ws The workset to iterate
195  * @p v  A variable to put the current value in
196  * @p i  An integer for internal use
197  */
198 #define workset_foreach(ws, v, i)       for(i=0; \
199                                                                                 v=(i < ws->len) ? ws->vals[i].irn : NULL, i < ws->len; \
200                                                                                 ++i)
201
202 #define workset_set_time(ws, i, t) (ws)->vals[i].time=t
203 #define workset_get_time(ws, i) (ws)->vals[i].time
204 #define workset_set_length(ws, length) (ws)->len = length
205 #define workset_get_length(ws) ((ws)->len)
206 #define workset_get_val(ws, i) ((ws)->vals[i].irn)
207 #define workset_sort(ws) qsort((ws)->vals, (ws)->len, sizeof((ws)->vals[0]), loc_compare);
208
209 typedef struct _block_info_t {
210         workset_t *ws_start, *ws_end;
211         int processed;
212 } block_info_t;
213
214
215 static INLINE void *new_block_info(struct obstack *ob) {
216         block_info_t *res = obstack_alloc(ob, sizeof(*res));
217         res->ws_start = NULL;
218         res->ws_end = NULL;
219         res->processed = 0;
220
221         return res;
222 }
223
224 #define get_block_info(block)        ((block_info_t *)get_irn_link(block))
225 #define set_block_info(block, info)  set_irn_link(block, info)
226
227 /**
228  * @return The distance to the next use or 0 if irn has dont_spill flag set
229  */
230 static INLINE unsigned get_distance(belady_env_t *env, ir_node *from, unsigned from_step, const ir_node *def, int skip_from_uses)
231 {
232         be_next_use_t use;
233         int flags = arch_irn_get_flags(env->arch, def);
234
235         assert(! (flags & arch_irn_flags_ignore));
236
237         use = be_get_next_use(env->uses, from, from_step, def, skip_from_uses);
238         if(USES_IS_INFINITE(use.time))
239                 return USES_INFINITY;
240
241         /* We have to keep nonspillable nodes in the workingset */
242         if(flags & arch_irn_flags_dont_spill)
243                 return 0;
244
245         return use.time;
246 }
247
248 #if 0
249 /**
250  * Fix to remove dead nodes (especially don't spill nodes) from workset.
251  */
252 static void fix_dead_values(workset_t *ws, ir_node *irn) {
253         int idx;
254         ir_node *node;
255         ir_node *block = get_nodes_block(irn);
256
257         DBG((dbg, DBG_DECIDE, "fixing dead values at %+F:\n", irn));
258
259         workset_foreach(ws, node, idx) {
260                 const ir_edge_t *edge;
261                 int             fixme = 1;
262
263                 /* skip already fixed nodes */
264                 if (workset_get_time(ws, idx) == INT_MAX)
265                         continue;
266
267                 /* check all users */
268                 foreach_out_edge(node, edge) {
269                         ir_node *user = get_edge_src_irn(edge);
270
271                         if ((get_nodes_block(user) != block)                           ||  /* user is in a different block */
272                                 (sched_is_scheduled(user) && sched_comes_after(irn, user)) ||  /* user is scheduled after irn */
273                                 user == irn)                                                   /* irn is the user */
274                         {                                                                  /* => don't fix distance */
275                                 fixme = 0;
276                                 break;
277                         }
278                 }
279
280                 /* all users scheduled prior to current irn in in same block as irn -> fix */
281                 if (fixme) {
282                         workset_set_time(ws, idx, INT_MAX);
283                         DBG((dbg, DBG_DECIDE, "\tfixing time for %+F to INT_MAX\n", node));
284                 }
285         }
286
287 }
288 #endif
289
290 /**
291  * Performs the actions necessary to grant the request that:
292  * - new_vals can be held in registers
293  * - as few as possible other values are disposed
294  * - the worst values get disposed
295  *
296  * @p is_usage indicates that the values in new_vals are used (not defined)
297  * In this case reloads must be performed
298  */
299 static void displace(belady_env_t *env, workset_t *new_vals, int is_usage) {
300         ir_node *val;
301         int     i, len, max_allowed, demand, iter;
302
303         workset_t *ws         = env->ws;
304         ir_node   **to_insert = alloca(env->n_regs * sizeof(*to_insert));
305
306         /*
307                 1. Identify the number of needed slots and the values to reload
308         */
309         demand = 0;
310         workset_foreach(new_vals, val, iter) {
311                 /* mark value as used */
312                 if (is_usage)
313                         pset_insert_ptr(env->used, val);
314
315                 if (! workset_contains(ws, val)) {
316                         DBG((dbg, DBG_DECIDE, "    insert %+F\n", val));
317                         to_insert[demand++] = val;
318                         if (is_usage) {
319                                 DBG((dbg, DBG_SPILL, "Reload %+F before %+F\n", val, env->instr));
320                                 be_add_reload(env->senv, val, env->instr, env->cls);
321                         }
322                 }
323                 else {
324                         assert(is_usage || "Defined value already in workset?!?");
325                         DBG((dbg, DBG_DECIDE, "    skip %+F\n", val));
326                 }
327         }
328         DBG((dbg, DBG_DECIDE, "    demand = %d\n", demand));
329
330         /*
331                 2. Make room for at least 'demand' slots
332         */
333         len         = workset_get_length(ws);
334         max_allowed = env->n_regs - demand;
335
336         DBG((dbg, DBG_DECIDE, "    disposing %d values\n", ws->len - max_allowed));
337
338         /* Only make more free room if we do not have enough */
339         if (len > max_allowed) {
340                 /* get current next-use distance */
341                 for (i = 0; i < ws->len; ++i) {
342                         unsigned dist = get_distance(env, env->instr, env->instr_nr, workset_get_val(ws, i), !is_usage);
343                         workset_set_time(ws, i, dist);
344                 }
345
346 #if 0
347                 /*
348                         FIX for don't spill nodes:
349                         Problem is that get_distance always returns 0 for those nodes even if they are not
350                         needed anymore (all their usages have already been visited).
351                         Even if we change this behavior, get_distance doesn't distinguish between not
352                         used anymore (dead) and live out of block.
353                         Solution: Set distances of all nodes having all their usages in schedule prior to
354                         current instruction to MAX_INT.
355                 */
356                 fix_dead_values(ws, env->instr);
357 #endif
358
359                 /* sort entries by increasing nextuse-distance*/
360                 workset_sort(ws);
361
362                 /*
363                         Logic for not needed live-ins: If a value is disposed
364                         before its first usage, remove it from start workset
365                         We don't do this for phis though
366                 */
367                 for (i = max_allowed; i < ws->len; ++i) {
368                         ir_node *irn = ws->vals[i].irn;
369
370                         DBG((dbg, DBG_DECIDE, "    disposing %+F (%u)\n", irn, workset_get_time(ws, i)));
371
372             if (is_Phi(irn))
373                 continue;
374
375                         if (! pset_find_ptr(env->used, irn)) {
376                                 ir_node   *curr_bb  = get_nodes_block(env->instr);
377                                 workset_t *ws_start = get_block_info(curr_bb)->ws_start;
378                                 workset_remove(ws_start, irn);
379
380                                 DBG((dbg, DBG_DECIDE, "    (and removing %+F from start workset)\n", irn));
381                         }
382                 }
383
384                 /* kill the last 'demand' entries in the array */
385                 workset_set_length(ws, max_allowed);
386         }
387
388         /*
389                 3. Insert the new values into the workset
390         */
391         for (i = 0; i < demand; ++i)
392                 workset_insert(env, env->ws, to_insert[i]);
393 }
394
395 static void belady(ir_node *block, void *env);
396
397 static loc_t to_take_or_not_to_take(belady_env_t *env, ir_node* first, ir_node *node, ir_node *block, ir_loop *loop) {
398         be_next_use_t next_use;
399         loc_t loc;
400         loc.time = USES_INFINITY;
401
402         if (!arch_irn_consider_in_reg_alloc(env->arch, env->cls, node)) {
403                 loc.time = USES_INFINITY;
404                 return loc;
405         }
406
407         loc.irn = node;
408
409         /* We have to keep nonspillable nodes in the workingset */
410         if(arch_irn_get_flags(env->arch, node) & arch_irn_flags_dont_spill) {
411                 loc.time = 0;
412                 DBG((dbg, DBG_START, "    %+F taken (dontspill node)\n", node, loc.time));
413                 return loc;
414         }
415
416         next_use = be_get_next_use(env->uses, first, 0, node, 0);
417         if(USES_IS_INFINITE(next_use.time)) {
418                 // the nodes marked as live in shouldn't be dead, so it must be a phi
419                 loc.time = USES_INFINITY;
420                 DBG((dbg, DBG_START, "    %+F not taken (dead)\n", node));
421                 assert(is_Phi(node));
422                 return loc;
423         }
424
425         loc.time = next_use.time;
426
427         if(next_use.outermost_loop >= get_loop_depth(loop)) {
428                 DBG((dbg, DBG_START, "    %+F taken (%u, loop %d)\n", node, loc.time, next_use.outermost_loop));
429                 return loc;
430                 // ARR_APP1(loc_t, starters, loc);
431         } else {
432                 loc.time = USES_INFINITY;
433                 DBG((dbg, DBG_START, "    %+F not taken (outerloopdepth %d < loopdetph %d)\n", node, next_use.outermost_loop, get_loop_depth(loop)));
434                 return loc;
435         }
436 }
437
438 /*
439  * Computes set of live-ins for each block with multiple predecessors
440  * and notifies spill algorithm which phis need to be spilled
441  */
442 static void compute_live_ins(ir_node *block, void *data) {
443         belady_env_t *env = data;
444         block_info_t *block_info;
445         ir_node *first, *irn;
446         loc_t loc, *starters;
447         int i, len, ws_count;
448         ir_loop *loop = get_irn_loop(block);
449         be_lv_t *lv = env->cenv->birg->lv;
450
451         if(get_Block_n_cfgpreds(block) == 1 && get_irg_start_block(get_irn_irg(block)) != block)
452                 return;
453
454         block_info = new_block_info(&env->ob);
455         set_block_info(block, block_info);
456
457         /* Collect all values living at start of block */
458         starters = NEW_ARR_F(loc_t, 0);
459
460         /* rebuild schedule time information, because it seems to be broken */
461         // Matze: is this still true?
462         //sched_renumber(block);
463
464         DBG((dbg, DBG_START, "Living at start of %+F:\n", block));
465         first = sched_first(block);
466
467         sched_foreach(block, irn) {
468                 if(!is_Phi(irn))
469                         break;
470
471                 loc = to_take_or_not_to_take(env, first, irn, block, loop);
472
473                 if(!USES_IS_INFINITE(loc.time)) {
474                         ARR_APP1(loc_t, starters, loc);
475                 } else {
476                         be_spill_phi(env->senv, irn);
477                 }
478         }
479
480         be_lv_foreach(lv, block, be_lv_state_in, i) {
481                 ir_node *node = be_lv_get_irn(lv, block, i);
482
483                 loc = to_take_or_not_to_take(env, first, node, block, loop);
484
485                 if(!USES_IS_INFINITE(loc.time)) {
486                         ARR_APP1(loc_t, starters, loc);
487                 }
488         }
489
490         // Sort start values by first use
491         qsort(starters, ARR_LEN(starters), sizeof(starters[0]), loc_compare);
492
493         /* Copy the best ones from starters to start workset */
494         ws_count = MIN(ARR_LEN(starters), env->n_regs);
495         block_info->ws_start = new_workset(env, &env->ob);
496         workset_bulk_fill(block_info->ws_start, ws_count, starters);
497
498         /* The phis of this block which are not in the start set have to be spilled later. */
499         len = ARR_LEN(starters);
500         for (i = ws_count; i < len; ++i) {
501                 irn = starters[i].irn;
502                 if (!is_Phi(irn) || get_nodes_block(irn) != block)
503                         continue;
504
505                 be_spill_phi(env->senv, irn);
506         }
507
508         DEL_ARR_F(starters);
509 }
510
511 /**
512  * Collects all values live-in at block @p block and all phi results in this block.
513  * Then it adds the best values (at most n_regs) to the blocks start_workset.
514  * The phis among the remaining values get spilled: Introduce psudo-copies of
515  *  their args to break interference and make it possible to spill them to the
516  *  same spill slot.
517  */
518 static block_info_t *compute_block_start_info(belady_env_t *env, ir_node *block) {
519         ir_node *pred_block;
520         block_info_t *res, *pred_info;
521
522         /* Have we seen this block before? */
523         res = get_block_info(block);
524         if (res)
525                 return res;
526
527         /* Create the block info for this block. */
528         res = new_block_info(&env->ob);
529         set_block_info(block, res);
530
531         /* Use endset of predecessor block as startset */
532         assert(get_Block_n_cfgpreds(block) == 1 && block != get_irg_start_block(get_irn_irg(block)));
533         pred_block = get_Block_cfgpred_block(block, 0);
534         pred_info = get_block_info(pred_block);
535
536         /* if pred block has not been processed yet, do it now */
537         if (pred_info == NULL || pred_info->processed == 0) {
538                 belady(pred_block, env);
539                 pred_info = get_block_info(pred_block);
540         }
541
542         /* now we have an end_set of pred */
543         assert(pred_info->ws_end && "The recursive call (above) is supposed to compute an end_set");
544         res->ws_start = workset_clone(env, &env->ob, pred_info->ws_end);
545
546         return res;
547 }
548
549
550 /**
551  * For the given block @p block, decide for each values
552  * whether it is used from a register or is reloaded
553  * before the use.
554  */
555 static void belady(ir_node *block, void *data) {
556         belady_env_t *env = data;
557         workset_t *new_vals;
558         ir_node *irn;
559         int iter;
560         block_info_t *block_info;
561
562         /* make sure we have blockinfo (with startset) */
563         block_info = get_block_info(block);
564         if (block_info == NULL)
565                 block_info = compute_block_start_info(env, block);
566
567         /* Don't do a block twice */
568         if(block_info->processed)
569                 return;
570
571         /* get the starting workset for this block */
572         DBG((dbg, DBG_DECIDE, "\n"));
573         DBG((dbg, DBG_DECIDE, "Decide for %+F\n", block));
574
575         workset_copy(env, env->ws, block_info->ws_start);
576         DBG((dbg, DBG_WSETS, "Start workset for %+F:\n", block));
577         workset_foreach(env->ws, irn, iter)
578                 DBG((dbg, DBG_WSETS, "  %+F (%u)\n", irn, workset_get_time(env->ws, iter)));
579
580         /* process the block from start to end */
581         DBG((dbg, DBG_WSETS, "Processing...\n"));
582         env->used = pset_new_ptr_default();
583         env->instr_nr = 0;
584         new_vals = new_workset(env, &env->ob);
585         sched_foreach(block, irn) {
586                 int i, arity;
587                 assert(workset_get_length(env->ws) <= env->n_regs && "Too much values in workset!");
588
589                 /* projs are handled with the tuple value.
590                  * Phis are no real instr (see insert_starters())
591                  * instr_nr does not increase */
592                 if (is_Proj(irn) || is_Phi(irn)) {
593                         DBG((dbg, DBG_DECIDE, "  ...%+F skipped\n", irn));
594                         continue;
595                 }
596                 DBG((dbg, DBG_DECIDE, "  ...%+F\n", irn));
597
598                 /* set instruction in the workset */
599                 env->instr = irn;
600
601                 /* allocate all values _used_ by this instruction */
602                 workset_clear(new_vals);
603                 for(i = 0, arity = get_irn_arity(irn); i < arity; ++i) {
604                         workset_insert(env, new_vals, get_irn_n(irn, i));
605                 }
606                 displace(env, new_vals, 1);
607
608                 /* allocate all values _defined_ by this instruction */
609                 workset_clear(new_vals);
610                 if (get_irn_mode(irn) == mode_T) { /* special handling for tuples and projs */
611                         ir_node *proj;
612                         for(proj=sched_next(irn); is_Proj(proj); proj=sched_next(proj))
613                                 workset_insert(env, new_vals, proj);
614                 } else {
615                         workset_insert(env, new_vals, irn);
616                 }
617                 displace(env, new_vals, 0);
618
619                 env->instr_nr++;
620         }
621         del_pset(env->used);
622
623         /* Remember end-workset for this block */
624         block_info->ws_end = workset_clone(env, &env->ob, env->ws);
625         block_info->processed = 1;
626         DBG((dbg, DBG_WSETS, "End workset for %+F:\n", block));
627         workset_foreach(block_info->ws_end, irn, iter)
628                 DBG((dbg, DBG_WSETS, "  %+F (%u)\n", irn, workset_get_time(block_info->ws_end, iter)));
629 }
630
631 /**
632  * 'decide' is block-local and makes assumptions
633  * about the set of live-ins. Thus we must adapt the
634  * live-outs to the live-ins at each block-border.
635  */
636 static void fix_block_borders(ir_node *block, void *data) {
637         belady_env_t *env = data;
638         workset_t *wsb;
639         ir_graph *irg = get_irn_irg(block);
640         ir_node *startblock = get_irg_start_block(irg);
641         int i, max, iter, iter2;
642
643         if(block == startblock)
644             return;
645
646         DBG((dbg, DBG_FIX, "\n"));
647         DBG((dbg, DBG_FIX, "Fixing %+F\n", block));
648
649         wsb = get_block_info(block)->ws_start;
650
651         /* process all pred blocks */
652         for (i=0, max=get_irn_arity(block); i<max; ++i) {
653                 ir_node *irnb, *irnp, *pred = get_Block_cfgpred_block(block, i);
654                 workset_t *wsp = get_block_info(pred)->ws_end;
655
656                 DBG((dbg, DBG_FIX, "  Pred %+F\n", pred));
657
658                 workset_foreach(wsb, irnb, iter) {
659                         /* if irnb is a phi of the current block we reload
660                          * the corresponding argument, else irnb itself */
661                         if(is_Phi(irnb) && block == get_nodes_block(irnb)) {
662                                 irnb = get_irn_n(irnb, i);
663
664                                 // we might have unknowns as argument for the phi
665                                 if(!arch_irn_consider_in_reg_alloc(env->arch, env->cls, irnb))
666                                         continue;
667                         }
668
669                         /* Unknowns are available everywhere */
670                         if(get_irn_opcode(irnb) == iro_Unknown)
671                                 continue;
672
673                         /* check if irnb is in a register at end of pred */
674                         workset_foreach(wsp, irnp, iter2) {
675                                 if (irnb == irnp)
676                                         goto next_value;
677                         }
678
679                         /* irnb is not in memory at the end of pred, so we have to reload it */
680                         DBG((dbg, DBG_FIX, "    reload %+F\n", irnb));
681                         DBG((dbg, DBG_SPILL, "Reload %+F before %+F,%d\n", irnb, block, i));
682                         be_add_reload_on_edge(env->senv, irnb, block, i, env->cls);
683
684 next_value:
685                         /*epsilon statement :)*/;
686                 }
687         }
688 }
689
690 void be_spill_belady(const be_chordal_env_t *chordal_env) {
691         be_spill_belady_spill_env(chordal_env, NULL);
692 }
693
694 void be_spill_belady_spill_env(const be_chordal_env_t *chordal_env, spill_env_t *spill_env) {
695         belady_env_t env;
696
697         FIRM_DBG_REGISTER(dbg, "firm.be.spill.belady");
698         //firm_dbg_set_mask(dbg, DBG_SPILL);
699
700         be_assure_liveness(chordal_env->birg);
701
702         /* init belady env */
703         obstack_init(&env.ob);
704         env.cenv      = chordal_env;
705         env.arch      = chordal_env->birg->main_env->arch_env;
706         env.cls       = chordal_env->cls;
707         env.n_regs    = env.cls->n_regs - be_put_ignore_regs(chordal_env->birg, chordal_env->cls, NULL);
708         env.ws        = new_workset(&env, &env.ob);
709         env.uses      = be_begin_uses(chordal_env->irg, chordal_env->birg->lv);
710         if(spill_env == NULL) {
711                 env.senv = be_new_spill_env(chordal_env);
712         } else {
713                 env.senv = spill_env;
714         }
715         DEBUG_ONLY(be_set_spill_env_dbg_module(env.senv, dbg);)
716
717         be_clear_links(chordal_env->irg);
718         /* Decide which phi nodes will be spilled and place copies for them into the graph */
719         irg_block_walk_graph(chordal_env->irg, compute_live_ins, NULL, &env);
720         /* Fix high register pressure with belady algorithm */
721         irg_block_walk_graph(chordal_env->irg, NULL, belady, &env);
722         /* belady was block-local, fix the global flow by adding reloads on the edges */
723         irg_block_walk_graph(chordal_env->irg, fix_block_borders, NULL, &env);
724         /* Insert spill/reload nodes into the graph and fix usages */
725         be_insert_spills_reloads(env.senv);
726
727         /* clean up */
728         if(spill_env == NULL)
729                 be_delete_spill_env(env.senv);
730         be_end_uses(env.uses);
731         obstack_free(&env.ob, NULL);
732 }