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