fix some situations where too few spills were placed
[libfirm] / ir / be / bespillbelady.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       Beladys spillalgorithm.
23  * @author      Daniel Grund, Matthias Braun
24  * @date        20.09.2005
25  * @version     $Id$
26  */
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include <stdbool.h>
32
33 #include "obst.h"
34 #include "irprintf_t.h"
35 #include "irgraph.h"
36 #include "irnode.h"
37 #include "irmode.h"
38 #include "irgwalk.h"
39 #include "irloop.h"
40 #include "iredges_t.h"
41 #include "ircons_t.h"
42 #include "irprintf.h"
43 #include "irnodeset.h"
44 #include "xmalloc.h"
45 #include "pdeq.h"
46
47 #include "beutil.h"
48 #include "bearch_t.h"
49 #include "beuses.h"
50 #include "besched_t.h"
51 #include "beirgmod.h"
52 #include "belive_t.h"
53 #include "benode_t.h"
54 #include "bechordal_t.h"
55 #include "bespilloptions.h"
56 #include "beloopana.h"
57 #include "beirg_t.h"
58 #include "bespill.h"
59 #include "bemodule.h"
60
61 #define DBG_SPILL     1
62 #define DBG_WSETS     2
63 #define DBG_FIX       4
64 #define DBG_DECIDE    8
65 #define DBG_START    16
66 #define DBG_SLOTS    32
67 #define DBG_TRACE    64
68 #define DBG_WORKSET 128
69 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
70
71 /* factor to weight the different costs of reloading/rematerializing a node
72    (see bespill.h be_get_reload_costs_no_weight) */
73 #define RELOAD_COST_FACTOR   10
74
75 #define TIME_UNDEFINED 6666
76
77 #define PLACE_SPILLS
78
79 /**
80  * An association between a node and a point in time.
81  */
82 typedef struct loc_t {
83         ir_node          *node;
84         unsigned          time;     /**< A use time (see beuses.h). */
85         bool              spilled;  /**< the value was already spilled on this path */
86 } loc_t;
87
88 typedef struct _workset_t {
89         int   len;          /**< current length */
90         loc_t vals[0];      /**< inlined array of the values/distances in this working set */
91 } workset_t;
92
93 static struct obstack               obst;
94 static const arch_env_t            *arch_env;
95 static const arch_register_class_t *cls;
96 static const be_lv_t               *lv;
97 static be_loopana_t                *loop_ana;
98 static int                          n_regs;
99 static workset_t                   *ws;     /**< the main workset used while
100                                                      processing a block. */
101 static be_uses_t                   *uses;   /**< env for the next-use magic */
102 static ir_node                     *instr;  /**< current instruction */
103 static unsigned                     instr_nr; /**< current instruction number
104                                                        (relative to block start) */
105 static ir_nodeset_t                 used;
106 static spill_env_t                 *senv;   /**< see bespill.h */
107 static pdeq                        *worklist;
108
109 static int loc_compare(const void *a, const void *b)
110 {
111         const loc_t *p = a;
112         const loc_t *q = b;
113         return p->time - q->time;
114 }
115
116 void workset_print(const workset_t *w)
117 {
118         int i;
119
120         for(i = 0; i < w->len; ++i) {
121                 ir_fprintf(stderr, "%+F %d\n", w->vals[i].node, w->vals[i].time);
122         }
123 }
124
125 /**
126  * Alloc a new workset on obstack @p ob with maximum size @p max
127  */
128 static workset_t *new_workset(void)
129 {
130         workset_t *res;
131         size_t     size = sizeof(*res) + n_regs * sizeof(res->vals[0]);
132
133         res  = obstack_alloc(&obst, size);
134         memset(res, 0, size);
135         return res;
136 }
137
138 /**
139  * Alloc a new instance on obstack and make it equal to @param workset
140  */
141 static workset_t *workset_clone(workset_t *workset)
142 {
143         workset_t *res;
144         size_t size = sizeof(*res) + n_regs * sizeof(res->vals[0]);
145         res = obstack_alloc(&obst, size);
146         memcpy(res, workset, size);
147         return res;
148 }
149
150 /**
151  * Copy workset @param src to @param tgt
152  */
153 static void workset_copy(workset_t *dest, const workset_t *src)
154 {
155         size_t size = sizeof(*src) + n_regs * sizeof(src->vals[0]);
156         memcpy(dest, src, size);
157 }
158
159 /**
160  * Overwrites the current content array of @param ws with the
161  * @param count locations given at memory @param locs.
162  * Set the length of @param ws to count.
163  */
164 static void workset_bulk_fill(workset_t *workset, int count, const loc_t *locs)
165 {
166         workset->len = count;
167         memcpy(&(workset->vals[0]), locs, count * sizeof(locs[0]));
168 }
169
170 /**
171  * Inserts the value @p val into the workset, iff it is not
172  * already contained. The workset must not be full.
173  */
174 static void workset_insert(workset_t *workset, ir_node *val, bool spilled)
175 {
176         loc_t *loc;
177         int    i;
178         /* check for current regclass */
179         assert(arch_irn_consider_in_reg_alloc(arch_env, cls, val));
180
181         /* check if val is already contained */
182         for (i = 0; i < workset->len; ++i) {
183                 loc = &workset->vals[i];
184                 if (loc->node == val) {
185                         if (spilled) {
186                                 loc->spilled = true;
187                         }
188                         return;
189                 }
190         }
191
192         /* insert val */
193         assert(workset->len < n_regs && "Workset already full!");
194         loc           = &workset->vals[workset->len];
195         loc->node     = val;
196         loc->spilled  = spilled;
197         loc->time     = TIME_UNDEFINED;
198         workset->len++;
199 }
200
201 /**
202  * Removes all entries from this workset
203  */
204 static void workset_clear(workset_t *workset)
205 {
206         workset->len = 0;
207 }
208
209 /**
210  * Removes the value @p val from the workset if present.
211  */
212 static INLINE void workset_remove(workset_t *workset, ir_node *val)
213 {
214         int i;
215         for(i = 0; i < workset->len; ++i) {
216                 if (workset->vals[i].node == val) {
217                         workset->vals[i] = workset->vals[--workset->len];
218                         return;
219                 }
220         }
221 }
222
223 static INLINE int workset_contains(const workset_t *ws, const ir_node *val)
224 {
225         int i;
226
227         for(i=0; i<ws->len; ++i) {
228                 if (ws->vals[i].node == val)
229                         return 1;
230         }
231
232         return 0;
233 }
234
235 /**
236  * Iterates over all values in the working set.
237  * @p ws The workset to iterate
238  * @p v  A variable to put the current value in
239  * @p i  An integer for internal use
240  */
241 #define workset_foreach(ws, v, i)       for(i=0; \
242                                                                                 v=(i < ws->len) ? ws->vals[i].node : NULL, i < ws->len; \
243                                                                                 ++i)
244
245 #define workset_set_time(ws, i, t) (ws)->vals[i].time=t
246 #define workset_get_time(ws, i) (ws)->vals[i].time
247 #define workset_set_length(ws, length) (ws)->len = length
248 #define workset_get_length(ws) ((ws)->len)
249 #define workset_get_val(ws, i) ((ws)->vals[i].node)
250 #define workset_sort(ws) qsort((ws)->vals, (ws)->len, sizeof((ws)->vals[0]), loc_compare);
251
252 typedef struct _block_info_t
253 {
254         workset_t *start_workset;
255         workset_t *end_workset;
256 } block_info_t;
257
258
259 static void *new_block_info(void)
260 {
261         block_info_t *res = obstack_alloc(&obst, sizeof(res[0]));
262         memset(res, 0, sizeof(res[0]));
263
264         return res;
265 }
266
267 #define get_block_info(block)        ((block_info_t *)get_irn_link(block))
268 #define set_block_info(block, info)  set_irn_link(block, info)
269
270 /**
271  * @return The distance to the next use or 0 if irn has dont_spill flag set
272  */
273 static INLINE unsigned get_distance(ir_node *from, unsigned from_step,
274                                     const ir_node *def, int skip_from_uses)
275 {
276         be_next_use_t use;
277         int           flags = arch_irn_get_flags(arch_env, def);
278         unsigned      costs;
279         unsigned      time;
280
281         assert(! (flags & arch_irn_flags_ignore));
282
283         use = be_get_next_use(uses, from, from_step, def, skip_from_uses);
284         if(USES_IS_INFINITE(use.time))
285                 return USES_INFINITY;
286
287         /* We have to keep nonspillable nodes in the workingset */
288         if(flags & arch_irn_flags_dont_spill)
289                 return 0;
290
291         costs = be_get_reload_costs_no_weight(senv, def, use.before);
292         assert(costs * RELOAD_COST_FACTOR < 1000);
293         time  = use.time + 1000 - (costs * RELOAD_COST_FACTOR);
294
295         return time;
296 }
297
298 /**
299  * Performs the actions necessary to grant the request that:
300  * - new_vals can be held in registers
301  * - as few as possible other values are disposed
302  * - the worst values get disposed
303  *
304  * @p is_usage indicates that the values in new_vals are used (not defined)
305  * In this case reloads must be performed
306  */
307 static void displace(workset_t *new_vals, int is_usage)
308 {
309         ir_node **to_insert = alloca(n_regs * sizeof(to_insert[0]));
310         ir_node  *val;
311         int       i;
312         int       len;
313         int       spills_needed;
314         int       demand;
315         int       iter;
316
317         /* 1. Identify the number of needed slots and the values to reload */
318         demand = 0;
319         workset_foreach(new_vals, val, iter) {
320                 /* mark value as used */
321                 if (is_usage)
322                         ir_nodeset_insert(&used, val);
323
324                 if (! workset_contains(ws, val)) {
325                         DB((dbg, DBG_DECIDE, "    insert %+F\n", val));
326                         if (is_usage) {
327                                 DB((dbg, DBG_SPILL, "Reload %+F before %+F\n", val, instr));
328                                 be_add_reload(senv, val, instr, cls, 1);
329                         }
330                 } else {
331                         DB((dbg, DBG_DECIDE, "    %+F already in workset\n", val));
332                         assert(is_usage);
333                         /* remove the value from the current workset so it is not accidently
334                          * spilled */
335                         workset_remove(ws, val);
336                 }
337                 to_insert[demand++] = val;
338         }
339
340         /* 2. Make room for at least 'demand' slots */
341         len           = workset_get_length(ws);
342         spills_needed = len + demand - n_regs;
343         assert(spills_needed <= len);
344
345         /* Only make more free room if we do not have enough */
346         if (spills_needed > 0) {
347                 ir_node   *curr_bb  = get_nodes_block(instr);
348                 workset_t *ws_start = get_block_info(curr_bb)->start_workset;
349
350                 DB((dbg, DBG_DECIDE, "    disposing %d values\n", spills_needed));
351
352                 /* calculate current next-use distance for live values */
353                 for (i = 0; i < len; ++i) {
354                         ir_node  *val  = workset_get_val(ws, i);
355                         unsigned  dist = get_distance(instr, instr_nr, val, !is_usage);
356                         workset_set_time(ws, i, dist);
357                 }
358
359                 /* sort entries by increasing nextuse-distance*/
360                 workset_sort(ws);
361
362                 /* Logic for not needed live-ins: If a value is disposed
363                  * before its first usage, remove it from start workset
364                  * We don't do this for phis though     */
365                 for (i = len - spills_needed; i < len; ++i) {
366                         ir_node *val = ws->vals[i].node;
367
368                         DB((dbg, DBG_DECIDE, "    disposing node %+F (%u)\n", val,
369                              workset_get_time(ws, i)));
370
371 #ifdef PLACE_SPILLS
372                         if(!USES_IS_INFINITE(ws->vals[i].time) && !ws->vals[i].spilled) {
373                                 be_add_spill(senv, val, instr);
374                         }
375 #endif
376
377                         if (!is_Phi(val) && ! ir_nodeset_contains(&used, val)) {
378                                 workset_remove(ws_start, val);
379                                 DB((dbg, DBG_DECIDE, "    (and removing %+F from start workset)\n", val));
380                         }
381                 }
382
383                 /* kill the last 'demand' entries in the array */
384                 workset_set_length(ws, len - spills_needed);
385         }
386
387         /* 3. Insert the new values into the workset */
388         for (i = 0; i < demand; ++i) {
389                 ir_node *val = to_insert[i];
390
391                 workset_insert(ws, val, false);
392         }
393 }
394
395 /** Decides whether a specific node should be in the start workset or not
396  *
397  * @param env      belady environment
398  * @param first
399  * @param node     the node to test
400  * @param loop     the loop of the node
401  */
402 static loc_t to_take_or_not_to_take(ir_node* first, ir_node *node,
403                                     ir_loop *loop)
404 {
405         be_next_use_t next_use;
406         loc_t         loc;
407
408         loc.time    = USES_INFINITY;
409         loc.node    = node;
410         loc.spilled = false;
411
412         if (!arch_irn_consider_in_reg_alloc(arch_env, cls, node)) {
413                 loc.time = USES_INFINITY;
414                 return loc;
415         }
416
417         /* We have to keep nonspillable nodes in the workingset */
418         if(arch_irn_get_flags(arch_env, node) & arch_irn_flags_dont_spill) {
419                 loc.time = 0;
420                 DB((dbg, DBG_START, "    %+F taken (dontspill node)\n", node, loc.time));
421                 return loc;
422         }
423
424         next_use = be_get_next_use(uses, first, 0, node, 0);
425         if(USES_IS_INFINITE(next_use.time)) {
426                 // the nodes marked as live in shouldn't be dead, so it must be a phi
427                 assert(is_Phi(node));
428                 loc.time = USES_INFINITY;
429                 DB((dbg, DBG_START, "    %+F not taken (dead)\n", node));
430                 if(is_Phi(node)) {
431                         be_spill_phi(senv, node);
432                 }
433                 return loc;
434         }
435
436         loc.time = next_use.time;
437
438         if(next_use.outermost_loop >= get_loop_depth(loop)) {
439                 DB((dbg, DBG_START, "    %+F taken (%u, loop %d)\n", node, loc.time,
440                     next_use.outermost_loop));
441         } else {
442                 loc.time = USES_PENDING;
443                 DB((dbg, DBG_START, "    %+F delayed (outerdepth %d < loopdepth %d)\n",
444                     node, next_use.outermost_loop, get_loop_depth(loop)));
445         }
446         return loc;
447 }
448
449 /**
450  * Computes the start-workset for a block with multiple predecessors. We assume
451  * that at least 1 of the predeccesors is a back-edge which means we're at the
452  * beginning of a loop. We try to reload as much values as possible now so they
453  * don't get reloaded inside the loop.
454  */
455 static void decide_start_workset(const ir_node *block)
456 {
457         ir_loop    *loop = get_irn_loop(block);
458         ir_node    *first;
459         ir_node    *node;
460         loc_t       loc;
461         loc_t      *starters;
462         loc_t      *delayed;
463         int         i, len, ws_count;
464         int             free_slots, free_pressure_slots;
465         unsigned    pressure;
466         int         arity;
467         workset_t **pred_worksets;
468
469         /* Collect all values living at start of block */
470         starters = NEW_ARR_F(loc_t, 0);
471         delayed  = NEW_ARR_F(loc_t, 0);
472
473         DB((dbg, DBG_START, "Living at start of %+F:\n", block));
474         first = sched_first(block);
475
476         /* check all Phis first */
477         sched_foreach(block, node) {
478                 if (! is_Phi(node))
479                         break;
480
481                 loc = to_take_or_not_to_take(first, node, loop);
482
483                 if (! USES_IS_INFINITE(loc.time)) {
484                         if (USES_IS_PENDING(loc.time))
485                                 ARR_APP1(loc_t, delayed, loc);
486                         else
487                                 ARR_APP1(loc_t, starters, loc);
488                 }
489         }
490
491         /* check all Live-Ins */
492         be_lv_foreach(lv, block, be_lv_state_in, i) {
493                 ir_node *node = be_lv_get_irn(lv, block, i);
494
495                 loc = to_take_or_not_to_take(first, node, loop);
496
497                 if (! USES_IS_INFINITE(loc.time)) {
498                         if (USES_IS_PENDING(loc.time))
499                                 ARR_APP1(loc_t, delayed, loc);
500                         else
501                                 ARR_APP1(loc_t, starters, loc);
502                 }
503         }
504
505         pressure            = be_get_loop_pressure(loop_ana, cls, loop);
506         assert(ARR_LEN(delayed) <= (signed)pressure);
507         free_slots          = n_regs - ARR_LEN(starters);
508         free_pressure_slots = n_regs - (pressure - ARR_LEN(delayed));
509         free_slots          = MIN(free_slots, free_pressure_slots);
510
511         /* so far we only put nodes into the starters list that are used inside
512          * the loop. If register pressure in the loop is low then we can take some
513          * values and let them live through the loop */
514         if (free_slots > 0) {
515                 qsort(delayed, ARR_LEN(delayed), sizeof(delayed[0]), loc_compare);
516
517                 for (i = 0; i < ARR_LEN(delayed) && i < free_slots; ++i) {
518                         int    p, arity;
519                         loc_t *loc = & delayed[i];
520
521                         /* don't use values which are dead in a known predecessors
522                          * to not induce unnecessary reloads */
523                         arity = get_irn_arity(block);
524                         for (p = 0; p < arity; ++p) {
525                                 ir_node      *pred_block = get_Block_cfgpred_block(block, p);
526                                 block_info_t *pred_info  = get_block_info(pred_block);
527
528                                 if (pred_info == NULL)
529                                         continue;
530
531                                 if (!workset_contains(pred_info->end_workset, loc->node)) {
532                                         DB((dbg, DBG_START,
533                                             "    delayed %+F not live at pred %+F\n", loc->node,
534                                             pred_block));
535                                         goto skip_delayed;
536                                 }
537                         }
538
539                         DB((dbg, DBG_START, "    delayed %+F taken\n", loc->node));
540                         ARR_APP1(loc_t, starters, *loc);
541                         loc->node = NULL;
542                 skip_delayed:
543                         ;
544                 }
545         }
546
547         /* spill phis (the actual phis not just their values) that are in this block
548          * but not in the start workset */
549         for (i = ARR_LEN(delayed) - 1; i >= 0; --i) {
550                 ir_node *node = delayed[i].node;
551                 if(node == NULL || !is_Phi(node) || get_nodes_block(node) != block)
552                         continue;
553
554                 DB((dbg, DBG_START, "    spilling delayed phi %+F\n", node));
555                 be_spill_phi(senv, node);
556         }
557         DEL_ARR_F(delayed);
558
559         /* Sort start values by first use */
560         qsort(starters, ARR_LEN(starters), sizeof(starters[0]), loc_compare);
561
562         /* Copy the best ones from starters to start workset */
563         ws_count = MIN(ARR_LEN(starters), n_regs);
564         workset_clear(ws);
565         workset_bulk_fill(ws, ws_count, starters);
566
567         /* spill phis (the actual phis not just their values) that are in this block
568          * but not in the start workset */
569         len = ARR_LEN(starters);
570         for (i = ws_count; i < len; ++i) {
571                 ir_node *node = starters[i].node;
572                 if (! is_Phi(node) || get_nodes_block(node) != block)
573                         continue;
574
575                 DB((dbg, DBG_START, "    spilling phi %+F\n", node));
576                 be_spill_phi(senv, node);
577         }
578
579         DEL_ARR_F(starters);
580
581         /* determine spill status of the values: If there's 1 pred block (which
582          * is no backedge) where the value is reloaded then we must set it to
583          * reloaded here. We place spills in all pred where the value was not yet
584          * reloaded to be sure we have a spill on each path */
585         arity           = get_irn_arity(block);
586         pred_worksets   = alloca(sizeof(pred_worksets[0]) * arity);
587         for(i = 0; i < arity; ++i) {
588                 ir_node      *pred_block = get_Block_cfgpred_block(block, i);
589                 block_info_t *pred_info  = get_block_info(pred_block);
590
591                 if(pred_info == NULL)
592                         pred_worksets[i] = NULL;
593                 else
594                         pred_worksets[i] = pred_info->end_workset;
595         }
596
597         for(i = 0; i < ws_count; ++i) {
598                 loc_t   *loc     = &ws->vals[i];
599                 ir_node *value   = loc->node;
600                 bool     spilled;
601                 int      n;
602
603                 /* phis from this block aren't spilled */
604                 if(get_nodes_block(value) == block) {
605                         assert(is_Phi(value));
606                         loc->spilled = false;
607                         continue;
608                 }
609
610                 /* determine if value was spilled on any predecessor */
611                 spilled = false;
612                 for(n = 0; n < arity; ++n) {
613                         workset_t *pred_workset = pred_worksets[n];
614                         int        p_len;
615                         int        p;
616
617                         if (pred_workset == NULL)
618                                 continue;
619
620                         p_len = workset_get_length(pred_workset);
621                         for(p = 0; p < p_len; ++p) {
622                                 loc_t *l = &pred_workset->vals[p];
623
624                                 if (l->node != value)
625                                         continue;
626
627                                 if (l->spilled) {
628                                         spilled = true;
629                                         goto determined_spill;
630                                 }
631                                 break;
632                         }
633                         if (p >= p_len) {
634                                 spilled = true;
635                                 goto determined_spill;
636                         }
637                 }
638
639 determined_spill:
640                 if (spilled) {
641                         for (n = 0; n < arity; ++n) {
642                                 workset_t *pred_workset = pred_worksets[n];
643                                 int        p_len;
644                                 int        p;
645
646                                 if (pred_workset == NULL)
647                                         continue;
648
649                                 p_len = workset_get_length(pred_workset);
650                                 for (p = 0; p < p_len; ++p) {
651                                         loc_t *l = &pred_workset->vals[p];
652
653                                         if (l->node != value)
654                                                 continue;
655
656                                         if (!l->spilled) {
657                                                 ir_node *pred_block = get_Block_cfgpred_block(block, n);
658                                                 ir_node *insert_point
659                                                         = be_get_end_of_block_insertion_point(pred_block);
660                                                 DB((dbg, DBG_SPILL, "Spill %+F before %+F\n", node,
661                                                         insert_point));
662                                                 be_add_spill(senv, value, insert_point);
663                                         }
664                                         break;
665                                 }
666                         }
667                 }
668                 loc->spilled = spilled;
669         }
670 }
671
672 /**
673  * For the given block @p block, decide for each values
674  * whether it is used from a register or is reloaded
675  * before the use.
676  */
677 static void belady(ir_node *block)
678 {
679         workset_t       *new_vals;
680         ir_node         *irn;
681         int              iter;
682         block_info_t    *block_info;
683         int              i, arity;
684         int              has_backedges = 0;
685         //int              first         = 0;
686         const ir_edge_t *edge;
687
688         /* no need to process a block twice */
689         if(get_block_info(block) != NULL) {
690                 return;
691         }
692
693         /* check if all predecessor blocks are processed yet (though for backedges
694          * we have to make an exception as we can't process them first) */
695         arity = get_Block_n_cfgpreds(block);
696         for(i = 0; i < arity; ++i) {
697                 ir_node      *pred_block = get_Block_cfgpred_block(block, i);
698                 block_info_t *pred_info  = get_block_info(pred_block);
699
700                 if(pred_info == NULL) {
701                         /* process predecessor first (it will be in the queue already) */
702                         if(!is_backedge(block, i)) {
703                                 return;
704                         }
705                         has_backedges = 1;
706                 }
707         }
708         (void) has_backedges;
709         if(arity == 0) {
710                 workset_clear(ws);
711         } else if(arity == 1) {
712                 ir_node      *pred_block = get_Block_cfgpred_block(block, 0);
713                 block_info_t *pred_info  = get_block_info(pred_block);
714
715                 assert(pred_info != NULL);
716                 workset_copy(ws, pred_info->end_workset);
717         } else {
718                 /* we need 2 heuristics here, for the case when all predecessor blocks
719                  * are known and when some are backedges (and therefore can't be known
720                  * yet) */
721                 decide_start_workset(block);
722         }
723
724         DB((dbg, DBG_DECIDE, "\n"));
725         DB((dbg, DBG_DECIDE, "Decide for %+F\n", block));
726
727         block_info = new_block_info();
728         set_block_info(block, block_info);
729
730         DB((dbg, DBG_WSETS, "Start workset for %+F:\n", block));
731         workset_foreach(ws, irn, iter) {
732                 DB((dbg, DBG_WSETS, "  %+F (%u)\n", irn,
733                      workset_get_time(ws, iter)));
734         }
735
736         block_info->start_workset = workset_clone(ws);
737
738         /* process the block from start to end */
739         DB((dbg, DBG_WSETS, "Processing...\n"));
740         ir_nodeset_init(&used);
741         instr_nr = 0;
742         /* TODO: this leaks (into the obstack)... */
743         new_vals = new_workset();
744
745         sched_foreach(block, irn) {
746                 int i, arity;
747                 assert(workset_get_length(ws) <= n_regs);
748
749                 /* Phis are no real instr (see insert_starters()) */
750                 if (is_Phi(irn)) {
751                         continue;
752                 }
753                 DB((dbg, DBG_DECIDE, "  ...%+F\n", irn));
754
755                 /* set instruction in the workset */
756                 instr = irn;
757
758                 /* allocate all values _used_ by this instruction */
759                 workset_clear(new_vals);
760                 for(i = 0, arity = get_irn_arity(irn); i < arity; ++i) {
761                         ir_node *in = get_irn_n(irn, i);
762                         if (!arch_irn_consider_in_reg_alloc(arch_env, cls, in))
763                                 continue;
764
765                         /* (note that "spilled" is irrelevant here) */
766                         workset_insert(new_vals, in, false);
767                 }
768                 displace(new_vals, 1);
769
770                 /* allocate all values _defined_ by this instruction */
771                 workset_clear(new_vals);
772                 if (get_irn_mode(irn) == mode_T) {
773                         const ir_edge_t *edge;
774
775                         foreach_out_edge(irn, edge) {
776                                 ir_node *proj = get_edge_src_irn(edge);
777                                 if (!arch_irn_consider_in_reg_alloc(arch_env, cls, proj))
778                                         continue;
779                                 workset_insert(new_vals, proj, false);
780                         }
781                 } else {
782                         if (!arch_irn_consider_in_reg_alloc(arch_env, cls, irn))
783                                 continue;
784                         workset_insert(new_vals, irn, false);
785                 }
786                 displace(new_vals, 0);
787
788                 instr_nr++;
789         }
790         ir_nodeset_destroy(&used);
791
792         /* Remember end-workset for this block */
793         block_info->end_workset = workset_clone(ws);
794         DB((dbg, DBG_WSETS, "End workset for %+F:\n", block));
795         workset_foreach(ws, irn, iter)
796                 DB((dbg, DBG_WSETS, "  %+F (%u)\n", irn,
797                      workset_get_time(ws, iter)));
798
799         /* add successor blocks into worklist */
800         foreach_block_succ(block, edge) {
801                 ir_node *succ = get_edge_src_irn(edge);
802                 pdeq_putr(worklist, succ);
803         }
804 }
805
806 /**
807  * 'decide' is block-local and makes assumptions
808  * about the set of live-ins. Thus we must adapt the
809  * live-outs to the live-ins at each block-border.
810  */
811 static void fix_block_borders(ir_node *block, void *data)
812 {
813         workset_t    *start_workset;
814         int           arity;
815         int           i;
816         int           iter;
817         (void) data;
818
819         DB((dbg, DBG_FIX, "\n"));
820         DB((dbg, DBG_FIX, "Fixing %+F\n", block));
821
822         start_workset = get_block_info(block)->start_workset;
823
824         /* process all pred blocks */
825         arity = get_irn_arity(block);
826         for (i = 0; i < arity; ++i) {
827                 ir_node   *pred = get_Block_cfgpred_block(block, i);
828                 workset_t *pred_end_workset = get_block_info(pred)->end_workset;
829                 ir_node   *node;
830
831                 DB((dbg, DBG_FIX, "  Pred %+F\n", pred));
832
833                 /* spill all values not used anymore */
834                 workset_foreach(pred_end_workset, node, iter) {
835                         ir_node *n2;
836                         int      iter2;
837                         bool     found = false;
838                         workset_foreach(start_workset, n2, iter2) {
839                                 if(n2 == node) {
840                                         found = true;
841                                         break;
842                                 }
843                                 /* note that we do not look at phi inputs, becuase the values
844                                  * will be either live-end and need no spill or
845                                  * they have other users in which must be somewhere else in the
846                                  * workset */
847                         }
848
849                         if (found)
850                                 continue;
851
852 #ifdef PLACE_SPILLS
853                         if(be_is_live_in(lv, block, node)
854                                         && !pred_end_workset->vals[iter].spilled) {
855                                 ir_node *insert_point;
856                                 if (arity > 1) {
857                                         insert_point = be_get_end_of_block_insertion_point(pred);
858                                 } else {
859                                         insert_point = sched_first(block);
860                                         assert(!is_Phi(insert_point));
861                                 }
862                                 DB((dbg, DBG_SPILL, "Spill %+F before %+F\n", node,
863                                      insert_point));
864                                 be_add_spill(senv, node, insert_point);
865                         }
866 #endif
867                 }
868
869                 /* reload missing values in predecessors */
870                 workset_foreach(start_workset, node, iter) {
871                         /* if node is a phi of the current block we reload
872                          * the corresponding argument, else node itself */
873                         if(is_Phi(node) && block == get_nodes_block(node)) {
874                                 node = get_irn_n(node, i);
875
876                                 /* we might have unknowns as argument for the phi */
877                                 if(!arch_irn_consider_in_reg_alloc(arch_env, cls, node))
878                                         continue;
879                         }
880
881                         /* check if node is in a register at end of pred */
882                         if(workset_contains(pred_end_workset, node))
883                                 continue;
884
885                         /* node is not in memory at the end of pred -> reload it */
886                         DB((dbg, DBG_FIX, "    reload %+F\n", node));
887                         DB((dbg, DBG_SPILL, "Reload %+F before %+F,%d\n", node, block, i));
888                         be_add_reload_on_edge(senv, node, block, i, cls, 1);
889                 }
890         }
891 }
892
893 static void be_spill_belady(be_irg_t *birg, const arch_register_class_t *rcls)
894 {
895         ir_graph *irg = be_get_birg_irg(birg);
896
897         be_liveness_assure_sets(be_assure_liveness(birg));
898
899         /* construct control flow loop tree */
900         if(! (get_irg_loopinfo_state(irg) & loopinfo_cf_consistent)) {
901                 construct_cf_backedges(irg);
902         }
903
904         be_clear_links(irg);
905
906         /* init belady env */
907         obstack_init(&obst);
908         arch_env = birg->main_env->arch_env;
909         cls      = rcls;
910         lv       = be_get_birg_liveness(birg);
911         n_regs   = cls->n_regs - be_put_ignore_regs(birg, cls, NULL);
912         ws       = new_workset();
913         uses     = be_begin_uses(irg, lv);
914         loop_ana = be_new_loop_pressure(birg);
915         senv     = be_new_spill_env(birg);
916         worklist = new_pdeq();
917
918         pdeq_putr(worklist, get_irg_start_block(irg));
919
920         while(!pdeq_empty(worklist)) {
921                 ir_node *block = pdeq_getl(worklist);
922                 belady(block);
923         }
924         /* end block might not be reachable in endless loops */
925         belady(get_irg_end_block(irg));
926
927         del_pdeq(worklist);
928
929         /* belady was block-local, fix the global flow by adding reloads on the
930          * edges */
931         irg_block_walk_graph(irg, fix_block_borders, NULL, NULL);
932
933         /* Insert spill/reload nodes into the graph and fix usages */
934         be_insert_spills_reloads(senv);
935
936         /* clean up */
937         be_delete_spill_env(senv);
938         be_end_uses(uses);
939         be_free_loop_pressure(loop_ana);
940         obstack_free(&obst, NULL);
941 }
942
943 void be_init_spillbelady(void)
944 {
945         static be_spiller_t belady_spiller = {
946                 be_spill_belady
947         };
948
949         be_register_spiller("belady", &belady_spiller);
950         FIRM_DBG_REGISTER(dbg, "firm.be.spill.belady");
951 }
952
953 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_spillbelady);