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