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