cleanup vrp
[libfirm] / ir / be / belive.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       Interblock liveness analysis.
23  * @author      Sebastian Hack
24  * @date        06.12.2004
25  */
26 #include "config.h"
27
28 /* statev is expensive here, only enable when needed */
29 #define DISABLE_STATEV
30
31 #include "iredges_t.h"
32 #include "irgwalk.h"
33 #include "irprintf.h"
34 #include "irdump_t.h"
35 #include "irnodeset.h"
36
37 #include "absgraph.h"
38 #include "statev_t.h"
39 #include "be_t.h"
40 #include "bearch.h"
41 #include "beutil.h"
42 #include "belive_t.h"
43 #include "besched.h"
44 #include "bemodule.h"
45
46 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
47
48 #define LV_STD_SIZE             64
49
50 int (be_is_live_in)(const be_lv_t *lv, const ir_node *block, const ir_node *irn)
51 {
52         return _be_is_live_xxx(lv, block, irn, be_lv_state_in);
53 }
54
55 int (be_is_live_out)(const be_lv_t *lv, const ir_node *block, const ir_node *irn)
56 {
57         return _be_is_live_xxx(lv, block, irn, be_lv_state_out);
58 }
59
60 int (be_is_live_end)(const be_lv_t *lv, const ir_node *block, const ir_node *irn)
61 {
62         return _be_is_live_xxx(lv, block, irn, be_lv_state_end);
63 }
64
65 static inline unsigned _be_liveness_bsearch(be_lv_info_t *arr, const ir_node *node)
66 {
67         be_lv_info_t *payload = arr + 1;
68
69         unsigned n   = arr[0].head.n_members;
70         unsigned res = 0;
71         int lo       = 0;
72         int hi       = n;
73
74         if (n == 0)
75                 return 0;
76
77         do {
78                 int md           = lo + ((hi - lo) >> 1);
79                 ir_node *md_node = payload[md].node.node;
80
81                 if (node > md_node)
82                         lo = md + 1;
83                 else if (node < md_node)
84                         hi = md;
85                 else {
86                         res = md;
87                         break;
88                 }
89
90                 res = lo;
91         } while (lo < hi);
92
93         return res;
94 }
95
96 be_lv_info_node_t *be_lv_get(const be_lv_t *li, const ir_node *bl,
97                              const ir_node *irn)
98 {
99         be_lv_info_t *irn_live;
100         be_lv_info_node_t *res = NULL;
101
102         stat_ev_tim_push();
103         irn_live = ir_nodehashmap_get(be_lv_info_t, &li->map, bl);
104         if (irn_live != NULL) {
105                 /* Get the position of the index in the array. */
106                 int pos = _be_liveness_bsearch(irn_live, irn);
107
108                 /* Get the record in question. 1 must be added, since the first record contains information about the array and must be skipped. */
109                 be_lv_info_node_t *rec = &irn_live[pos + 1].node;
110
111                 /* Check, if the irn is in deed in the array. */
112                 if (rec->node == irn)
113                         res = rec;
114         }
115         stat_ev_tim_pop("be_lv_get");
116
117         return res;
118 }
119
120 static be_lv_info_node_t *be_lv_get_or_set(be_lv_t *li, ir_node *bl,
121                                            ir_node *irn)
122 {
123         be_lv_info_t *irn_live = ir_nodehashmap_get(be_lv_info_t, &li->map, bl);
124         if (irn_live == NULL) {
125                 irn_live = OALLOCNZ(&li->obst, be_lv_info_t, LV_STD_SIZE);
126                 irn_live[0].head.n_size = LV_STD_SIZE-1;
127                 ir_nodehashmap_insert(&li->map, bl, irn_live);
128         }
129
130         /* Get the position of the index in the array. */
131         unsigned pos = _be_liveness_bsearch(irn_live, irn);
132
133         /* Get the record in question. 1 must be added, since the first record contains information about the array and must be skipped. */
134         be_lv_info_node_t *res = &irn_live[pos + 1].node;
135
136         /* Check, if the irn is in deed in the array. */
137         if (res->node != irn) {
138                 be_lv_info_t *payload;
139                 unsigned n_members = irn_live[0].head.n_members;
140                 unsigned n_size    = irn_live[0].head.n_size;
141                 unsigned i;
142
143                 if (n_members + 1 >= n_size) {
144                         /* double the array size. Remember that the first entry is
145                          * metadata about the array and not a real array element */
146                         unsigned old_size_bytes  = (n_size + 1) * sizeof(irn_live[0]);
147                         unsigned new_size        = (2 * n_size) + 1;
148                         size_t   new_size_bytes  = new_size * sizeof(irn_live[0]);
149                         be_lv_info_t *nw = OALLOCN(&li->obst, be_lv_info_t, new_size);
150                         memcpy(nw, irn_live, old_size_bytes);
151                         memset(((char*) nw) + old_size_bytes, 0,
152                                new_size_bytes - old_size_bytes);
153                         nw[0].head.n_size = new_size - 1;
154                         irn_live = nw;
155                         ir_nodehashmap_insert(&li->map, bl, nw);
156                 }
157
158                 payload = &irn_live[1];
159                 for (i = n_members; i > pos; --i) {
160                         payload[i] = payload[i - 1];
161                 }
162
163                 ++irn_live[0].head.n_members;
164
165                 res        = &payload[pos].node;
166                 res->node  = irn;
167                 res->flags = 0;
168         }
169
170         return res;
171 }
172
173 /**
174  * Removes a node from the list of live variables of a block.
175  * @return 1 if the node was live at that block, 0 if not.
176  */
177 static int be_lv_remove(be_lv_t *li, const ir_node *bl,
178                         const ir_node *irn)
179 {
180         be_lv_info_t *irn_live = ir_nodehashmap_get(be_lv_info_t, &li->map, bl);
181
182         if (irn_live != NULL) {
183                 unsigned n   = irn_live[0].head.n_members;
184                 unsigned pos = _be_liveness_bsearch(irn_live, irn);
185                 be_lv_info_t *payload  = irn_live + 1;
186                 be_lv_info_node_t *res = &payload[pos].node;
187
188                 /* The node is in deed in the block's array. Let's remove it. */
189                 if (res->node == irn) {
190                         unsigned i;
191
192                         for (i = pos + 1; i < n; ++i)
193                                 payload[i - 1] = payload[i];
194
195                         payload[n - 1].node.node  = NULL;
196                         payload[n - 1].node.flags = 0;
197
198                         --irn_live[0].head.n_members;
199                         DBG((dbg, LEVEL_3, "\tdeleting %+F from %+F at pos %d\n", irn, bl, pos));
200                         return 1;
201                 }
202         }
203
204         return 0;
205 }
206
207 static struct {
208         be_lv_t  *lv;         /**< The liveness object. */
209         ir_node  *def;        /**< The node (value). */
210         ir_node  *def_block;  /**< The block of def. */
211 } re;
212
213 /**
214  * Mark a node (value) live out at a certain block. Do this also
215  * transitively, i.e. if the block is not the block of the value's
216  * definition, all predecessors are also marked live.
217  * @param block The block to mark the value live out of.
218  * @param state The liveness bits to set, either end or end+out.
219  */
220 static void live_end_at_block(ir_node *const block, be_lv_state_t const state)
221 {
222         be_lv_info_node_t *const n      = be_lv_get_or_set(re.lv, block, re.def);
223         be_lv_state_t      const before = n->flags;
224
225         assert(state == be_lv_state_end || state == (be_lv_state_end | be_lv_state_out));
226         DBG((dbg, LEVEL_2, "marking %+F live %s at %+F\n", re.def, state & be_lv_state_out ? "end+out" : "end", block));
227         n->flags |= state;
228
229         /* There is no need to recurse further, if we where here before (i.e., any
230          * live state bits were set before). */
231         if (before != be_lv_state_none)
232                 return;
233
234         /* Stop going up further, if this is the block of the definition. */
235         if (re.def_block == block)
236                 return;
237
238         DBG((dbg, LEVEL_2, "marking %+F live in at %+F\n", re.def, block));
239         n->flags |= be_lv_state_in;
240
241         for (int i = get_Block_n_cfgpreds(block); i-- != 0;) {
242                 ir_node *const pred_block = get_Block_cfgpred_block(block, i);
243                 live_end_at_block(pred_block, be_lv_state_end | be_lv_state_out);
244         }
245 }
246
247 typedef struct lv_remove_walker_t {
248         be_lv_t       *lv;
249         const ir_node *irn;
250 } lv_remove_walker_t;
251
252
253 /**
254  * Liveness analysis for a value.
255  * Compute the set of all blocks a value is live in.
256  * @param irn     The node (value).
257  */
258 static void liveness_for_node(ir_node *irn)
259 {
260         ir_node *const def_block = get_nodes_block(irn);
261
262         re.def       = irn;
263         re.def_block = def_block;
264
265         /* Go over all uses of the value */
266         foreach_out_edge(irn, edge) {
267                 ir_node *use = edge->src;
268                 ir_node *use_block;
269
270                 DBG((dbg, LEVEL_4, "%+F: use at %+F, pos %d in %+F\n", irn, use, edge->pos, get_block(use)));
271                 assert(get_irn_n(use, edge->pos) == irn);
272
273                 /*
274                  * If the usage is no data node, skip this use, since it does not
275                  * affect the liveness of the node.
276                  */
277                 if (!is_liveness_node(use))
278                         continue;
279
280                 /* Get the block where the usage is in. */
281                 use_block = get_nodes_block(use);
282
283                 /*
284                  * If the use is a phi function, determine the corresponding block
285                  * through which the value reaches the phi function and mark the
286                  * value as live out of that block.
287                  */
288                 if (is_Phi(use)) {
289                         ir_node *pred_block = get_Block_cfgpred_block(use_block, edge->pos);
290                         live_end_at_block(pred_block, be_lv_state_end);
291                 }
292
293                 /*
294                  * Else, the value is live in at this block. Mark it and call live
295                  * out on the predecessors.
296                  */
297                 else if (def_block != use_block) {
298                         int i;
299
300                         be_lv_info_node_t *const n = be_lv_get_or_set(re.lv, use_block, irn);
301                         DBG((dbg, LEVEL_2, "marking %+F live in at %+F\n", irn, use_block));
302                         n->flags |= be_lv_state_in;
303
304                         for (i = get_Block_n_cfgpreds(use_block) - 1; i >= 0; --i) {
305                                 ir_node *pred_block = get_Block_cfgpred_block(use_block, i);
306                                 live_end_at_block(pred_block, be_lv_state_end | be_lv_state_out);
307                         }
308                 }
309         }
310 }
311
312 static void lv_remove_irn_walker(ir_node *bl, void *data)
313 {
314         lv_remove_walker_t *w = (lv_remove_walker_t*)data;
315         be_lv_remove(w->lv, bl, w->irn);
316 }
317
318 /**
319  * Walker, collect all nodes for which we want calculate liveness info
320  * on an obstack.
321  */
322 static void collect_liveness_nodes(ir_node *irn, void *data)
323 {
324         ir_node **nodes = (ir_node**)data;
325         if (is_liveness_node(irn))
326                 nodes[get_irn_idx(irn)] = irn;
327 }
328
329 void be_liveness_compute_sets(be_lv_t *lv)
330 {
331         int       i;
332         int       n;
333
334         if (lv->sets_valid)
335                 return;
336
337         be_timer_push(T_LIVE);
338         ir_nodehashmap_init(&lv->map);
339         obstack_init(&lv->obst);
340
341         n = get_irg_last_idx(lv->irg);
342         ir_node **const nodes = NEW_ARR_FZ(ir_node*, n);
343
344         /* inserting the variables sorted by their ID is probably
345          * more efficient since the binary sorted set insertion
346          * will not need to move around the data. */
347         irg_walk_graph(lv->irg, NULL, collect_liveness_nodes, nodes);
348
349         re.lv = lv;
350
351         for (i = 0; i < n; ++i) {
352                 if (nodes[i] != NULL)
353                         liveness_for_node(nodes[i]);
354         }
355
356         DEL_ARR_F(nodes);
357
358         be_timer_pop(T_LIVE);
359
360         lv->sets_valid = true;
361 }
362
363 void be_liveness_compute_chk(be_lv_t *lv)
364 {
365         if (lv->lvc != NULL)
366                 return;
367         lv->lvc = lv_chk_new(lv->irg);
368 }
369
370 void be_liveness_invalidate_sets(be_lv_t *lv)
371 {
372         if (!lv->sets_valid)
373                 return;
374         obstack_free(&lv->obst, NULL);
375         ir_nodehashmap_destroy(&lv->map);
376         lv->sets_valid = false;
377 }
378
379 void be_liveness_invalidate_chk(be_lv_t *lv)
380 {
381         be_liveness_invalidate_sets(lv);
382
383         if (lv->lvc == NULL)
384                 return;
385         lv_chk_free(lv->lvc);
386         lv->lvc = NULL;
387 }
388
389 be_lv_t *be_liveness_new(ir_graph *irg)
390 {
391         be_lv_t *lv = XMALLOCZ(be_lv_t);
392
393         lv->irg = irg;
394
395         return lv;
396 }
397
398 void be_liveness_free(be_lv_t *lv)
399 {
400         be_liveness_invalidate_sets(lv);
401         be_liveness_invalidate_chk(lv);
402
403         xfree(lv);
404 }
405
406 void be_liveness_remove(be_lv_t *lv, const ir_node *irn)
407 {
408         if (lv->sets_valid) {
409                 lv_remove_walker_t w;
410
411                 /*
412                  * Removes a single irn from the liveness information.
413                  * Since an irn can only be live at blocks dominated by the block of its
414                  * definition, we only have to process that dominance subtree.
415                  */
416                 w.lv  = lv;
417                 w.irn = irn;
418                 dom_tree_walk(get_nodes_block(irn), lv_remove_irn_walker, NULL, &w);
419         }
420 }
421
422 void be_liveness_introduce(be_lv_t *lv, ir_node *irn)
423 {
424         /* Don't compute liveness information for non-data nodes. */
425         if (lv->sets_valid && is_liveness_node(irn)) {
426                 re.lv = lv;
427                 liveness_for_node(irn);
428         }
429 }
430
431 void be_liveness_update(be_lv_t *lv, ir_node *irn)
432 {
433         be_liveness_remove(lv, irn);
434         be_liveness_introduce(lv, irn);
435 }
436
437 void be_liveness_transfer(const arch_register_class_t *cls,
438                           ir_node *node, ir_nodeset_t *nodeset)
439 {
440         /* You should better break out of your loop when hitting the first phi
441          * function. */
442         assert(!is_Phi(node) && "liveness_transfer produces invalid results for phi nodes");
443
444         be_foreach_definition(node, cls, value, req,
445                 ir_nodeset_remove(nodeset, value);
446         );
447
448         be_foreach_use(node, cls, in_req, op, op_req,
449                 ir_nodeset_insert(nodeset, op);
450         );
451 }
452
453
454
455 void be_liveness_end_of_block(const be_lv_t *lv,
456                               const arch_register_class_t *cls,
457                               const ir_node *block, ir_nodeset_t *live)
458 {
459         assert(lv->sets_valid && "live sets must be computed");
460         be_lv_foreach_cls(lv, block, be_lv_state_end, cls, node) {
461                 ir_nodeset_insert(live, node);
462         }
463 }
464
465
466
467 void be_liveness_nodes_live_before(be_lv_t const *const lv, arch_register_class_t const *const cls, ir_node const *const pos, ir_nodeset_t *const live)
468 {
469         ir_node const *const bl = get_nodes_block(pos);
470         be_liveness_end_of_block(lv, cls, bl, live);
471         sched_foreach_reverse(bl, irn) {
472                 be_liveness_transfer(cls, irn, live);
473                 if (irn == pos)
474                         return;
475         }
476 }
477
478 static void collect_node(ir_node *irn, void *data)
479 {
480         struct obstack *obst = (struct obstack*)data;
481         obstack_ptr_grow(obst, irn);
482 }
483
484 static void be_live_chk_compare(be_lv_t *lv, lv_chk_t *lvc)
485 {
486         ir_graph *irg    = lv->irg;
487
488         struct obstack obst;
489         ir_node **nodes;
490         ir_node **blocks;
491         int i, j;
492
493         obstack_init(&obst);
494
495         irg_block_walk_graph(irg, collect_node, NULL, &obst);
496         obstack_ptr_grow(&obst, NULL);
497         blocks = (ir_node**)obstack_finish(&obst);
498
499         irg_walk_graph(irg, collect_node, NULL, &obst);
500         obstack_ptr_grow(&obst, NULL);
501         nodes = (ir_node**)obstack_finish(&obst);
502
503         stat_ev_ctx_push("be_lv_chk_compare");
504         for (j = 0; nodes[j]; ++j) {
505                 ir_node *irn = nodes[j];
506                 if (is_Block(irn))
507                         continue;
508
509                 for (i = 0; blocks[i]; ++i) {
510                         ir_node *bl = blocks[i];
511                         int lvr_in  = be_is_live_in (lv, bl, irn);
512                         int lvr_out = be_is_live_out(lv, bl, irn);
513                         int lvr_end = be_is_live_end(lv, bl, irn);
514
515                         int lvc_in  = lv_chk_bl_in (lvc, bl, irn);
516                         int lvc_out = lv_chk_bl_out(lvc, bl, irn);
517                         int lvc_end = lv_chk_bl_end(lvc, bl, irn);
518
519                         if (lvr_in - lvc_in != 0)
520                                 ir_fprintf(stderr, "live in  info for %+F at %+F differs: nml: %d, chk: %d\n", irn, bl, lvr_in, lvc_in);
521
522                         if (lvr_end - lvc_end != 0)
523                                 ir_fprintf(stderr, "live end info for %+F at %+F differs: nml: %d, chk: %d\n", irn, bl, lvr_end, lvc_end);
524
525                         if (lvr_out - lvc_out != 0)
526                                 ir_fprintf(stderr, "live out info for %+F at %+F differs: nml: %d, chk: %d\n", irn, bl, lvr_out, lvc_out);
527                 }
528         }
529         stat_ev_ctx_pop("be_lv_chk_compare");
530
531         obstack_free(&obst, NULL);
532 }
533
534 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_live)
535 void be_init_live(void)
536 {
537         (void)be_live_chk_compare;
538         FIRM_DBG_REGISTER(dbg, "firm.be.liveness");
539 }