renamed phase_t to ir_phase
[libfirm] / ir / be / belive.c
1 /**
2  * Interblock liveness analysis.
3  * @author Sebastian Hack
4  * @date 6.12.2004
5  */
6 #ifdef HAVE_CONFIG_H
7 #include "config.h"
8 #endif
9
10 #include "impl.h"
11 #include "iredges_t.h"
12 #include "irgwalk.h"
13 #include "irprintf_t.h"
14 #include "irbitset.h"
15 #include "irdump_t.h"
16
17 #include "beutil.h"
18 #include "belive_t.h"
19 #include "besched_t.h"
20 #include "bemodule.h"
21
22 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
23
24 #define LV_STD_SIZE             128
25 #define LV_USE_BINARY_SEARCH
26 #undef  LV_INTESIVE_CHECKS
27
28 static INLINE int is_liveness_node(const ir_node *irn)
29 {
30         switch(get_irn_opcode(irn)) {
31         case iro_Block:
32         case iro_Bad:
33         case iro_End:
34                 return 0;
35         default:;
36         }
37
38         return 1;
39 }
40
41 int (be_lv_next_irn)(const struct _be_lv_t *lv, const ir_node *bl, unsigned flags, int i)
42 {
43         return _be_lv_next_irn(lv, bl, flags, i);
44 }
45
46 const ir_node * (be_lv_get_irn)(const struct _be_lv_t *lv, const ir_node *bl, int i)
47 {
48         return _be_lv_get_irn(lv, bl, i);
49 }
50
51 int (be_is_live_in)(const be_lv_t *lv, const ir_node *block, const ir_node *irn)
52 {
53         return _be_is_live_xxx(lv, block, irn, be_lv_state_in);
54 }
55
56 int (be_is_live_out)(const be_lv_t *lv, const ir_node *block, const ir_node *irn)
57 {
58         return _be_is_live_xxx(lv, block, irn, be_lv_state_out);
59 }
60
61 int (be_is_live_end)(const be_lv_t *lv, const ir_node *block, const ir_node *irn)
62 {
63         return _be_is_live_xxx(lv, block, irn, be_lv_state_end);
64 }
65
66
67 #ifdef LV_USE_BINARY_SEARCH
68 static INLINE unsigned _be_liveness_bsearch(struct _be_lv_info_t *arr, unsigned idx)
69 {
70         struct _be_lv_info_t *payload = arr + 1;
71
72         unsigned n   = arr[0].u.head.n_members;
73         unsigned res = 0;
74         int lo       = 0;
75         int hi       = n;
76
77         if(n == 0)
78                 return 0;
79
80 #if 0
81         if(idx < payload[0].u.node.idx)
82                 return 0;
83
84         if(idx > payload[n - 1].u.node.idx)
85                 return n - 1;
86 #endif
87
88         /* start a binary search for the requested node. */
89         while(lo < hi) {
90                 int md          = lo + ((hi - lo) >> 1);
91                 unsigned md_idx = payload[md].u.node.idx;
92
93                 if(idx > md_idx)
94                         lo = md + 1;
95                 else if(idx < md_idx)
96                         hi = md;
97                 else {
98                         res = md;
99                         assert(payload[res].u.node.idx == idx);
100                         break;
101                 }
102
103                 res = lo;
104         }
105
106 #ifdef LV_INTESIVE_CHECKS
107         {
108                 unsigned i;
109                 for(i = res; i < n; ++i)
110                         assert(payload[i].u.node.idx >= idx);
111
112                 for(i = 0; i < res; ++i)
113                         assert(payload[i].u.node.idx < idx);
114         }
115 #endif
116
117         return res;
118 }
119
120 #else
121
122 /**
123  * This function searches linearly for the node in the array.
124  */
125 static INLINE unsigned _be_liveness_bsearch(struct _be_lv_info_t *arr, unsigned idx) {
126         unsigned n  = arr[0].u.head.n_members;
127         unsigned i;
128
129         for(i = 0; i < n; ++i) {
130                 if(arr[i + 1].u.node.idx == idx)
131                         return i;
132         }
133
134         return i;
135 }
136 #endif
137
138 struct _be_lv_info_node_t *be_lv_get(const struct _be_lv_t *li, const ir_node *bl, const ir_node *irn)
139 {
140         struct _be_lv_info_t *irn_live = phase_get_irn_data(&li->ph, bl);
141
142         if(irn_live) {
143                 unsigned idx = get_irn_idx(irn);
144
145                 /* Get the position of the index in the array. */
146                 int pos = _be_liveness_bsearch(irn_live, idx);
147
148                 /* Get the record in question. 1 must be added, since the first record contains information about the array and must be skipped. */
149                 struct _be_lv_info_node_t *res = &irn_live[pos + 1].u.node;
150
151                 /* Check, if the irn is in deed in the array. */
152                 if(res->idx == idx)
153                         return res;
154         }
155
156         return NULL;
157 }
158
159 static struct _be_lv_info_node_t *be_lv_get_or_set(struct _be_lv_t *li, ir_node *bl, ir_node *irn)
160 {
161         struct _be_lv_info_t *irn_live = phase_get_or_set_irn_data(&li->ph, bl);
162
163         unsigned idx = get_irn_idx(irn);
164
165         /* Get the position of the index in the array. */
166         unsigned pos = _be_liveness_bsearch(irn_live, idx);
167
168         /* Get the record in question. 1 must be added, since the first record contains information about the array and must be skipped. */
169         struct _be_lv_info_node_t *res = &irn_live[pos + 1].u.node;
170
171         /* Check, if the irn is in deed in the array. */
172         if(res->idx != idx) {
173                 struct _be_lv_info_t *payload;
174                 unsigned n_members = irn_live[0].u.head.n_members;
175                 unsigned n_size    = irn_live[0].u.head.n_size;
176                 unsigned i;
177
178                 if(n_members == n_size - 1) {
179                         unsigned new_size = 2 * n_size * sizeof(irn_live[0]);
180                         struct _be_lv_info_t *nw = phase_alloc(&li->ph, new_size);
181                         memcpy(nw, irn_live, new_size);
182                         nw[0].u.head.n_size = new_size;
183                         irn_live = nw;
184                         phase_set_irn_data(&li->ph, irn, nw);
185                 }
186
187                 payload = &irn_live[1];
188                 for(i = n_members; i > pos; --i) {
189                         payload[i] = payload[i - 1];
190                 }
191
192                 ++irn_live[0].u.head.n_members;
193
194                 res = &payload[pos].u.node;
195                 res->idx    = idx;
196                 res->flags  = 0;
197         }
198
199 #ifdef LV_INTESIVE_CHECKS
200         {
201                 unsigned i;
202                 unsigned n = irn_live[0].u.head.n_members;
203                 unsigned last = 0;
204                 struct _be_lv_info_t *payload = &irn_live[1];
205
206                 for(i = 0; i < n; ++i) {
207                         assert(payload[i].u.node.idx >= last);
208                         last = payload[i].u.node.idx;
209                 }
210         }
211 #endif
212
213         return res;
214 }
215
216 /**
217  * Removes a node from the list of live variables of a block.
218  * @return 1 if the node was live at that block, 0 if not.
219  */
220 static int be_lv_remove(struct _be_lv_t *li, ir_node *bl, ir_node *irn)
221 {
222         struct _be_lv_info_t *irn_live = phase_get_irn_data(&li->ph, bl);
223
224         if(irn_live) {
225                 unsigned n   = irn_live[0].u.head.n_members;
226                 unsigned idx = get_irn_idx(irn);
227                 unsigned pos = _be_liveness_bsearch(irn_live, idx);
228                 struct _be_lv_info_t *payload  = irn_live + 1;
229                 struct _be_lv_info_node_t *res = &payload[pos].u.node;
230
231                 /* The node is in deed in the block's array. Let's remove it. */
232                 if(res->idx == idx) {
233                         unsigned i;
234
235                         for(i = pos + 1; i < n; ++i)
236                                 payload[i - 1] = payload[i];
237
238                         payload[n - 1].u.node.idx   = 0;
239                         payload[n - 1].u.node.flags = 0;
240
241                         --irn_live[0].u.head.n_members;
242                         DBG((dbg, LEVEL_3, "\tdeleting %+F from %+F at pos %d\n", irn, bl, pos));
243                         return 1;
244                 }
245         }
246
247         return 0;
248 }
249
250 static void register_node(be_lv_t *lv, const ir_node *irn)
251 {
252         unsigned idx = get_irn_idx(irn);
253         if(idx >= bitset_size(lv->nodes)) {
254                 bitset_t *nw = bitset_malloc(2 * idx);
255                 bitset_copy(nw, lv->nodes);
256                 bitset_free(lv->nodes);
257                 lv->nodes = nw;
258         }
259
260         bitset_set(lv->nodes, idx);
261 }
262
263 /**
264  * Mark a node as live-in in a block.
265  */
266 static INLINE void mark_live_in(be_lv_t *lv, ir_node *block, ir_node *irn)
267 {
268         struct _be_lv_info_node_t *n = be_lv_get_or_set(lv, block, irn);
269         DBG((dbg, LEVEL_2, "marking %+F live in at %+F\n", irn, block));
270         n->flags |= be_lv_state_in;
271         register_node(lv, irn);
272 }
273
274 /**
275  * Mark a node as live-out in a block.
276  */
277 static INLINE void mark_live_out(be_lv_t *lv, ir_node *block, ir_node *irn)
278 {
279         struct _be_lv_info_node_t *n = be_lv_get_or_set(lv, block, irn);
280         DBG((dbg, LEVEL_2, "marking %+F live out at %+F\n", irn, block));
281         n->flags |= be_lv_state_out | be_lv_state_end;
282         register_node(lv, irn);
283 }
284
285 /**
286  * Mark a node as live-end in a block.
287  */
288 static INLINE void mark_live_end(be_lv_t *lv, ir_node *block, ir_node *irn)
289 {
290         struct _be_lv_info_node_t *n = be_lv_get_or_set(lv, block, irn);
291         DBG((dbg, LEVEL_2, "marking %+F live end at %+F\n", irn, block));
292         n->flags |= be_lv_state_end;
293         register_node(lv, irn);
294 }
295
296 /**
297  * Mark a node (value) live out at a certain block. Do this also
298  * transitively, i.e. if the block is not the block of the value's
299  * definition, all predecessors are also marked live.
300  * @param def The node (value).
301  * @param block The block to mark the value live out of.
302  * @param visited A set were all visited blocks are recorded.
303  * @param is_true_out Is the node real out there or only live at the end
304  * of the block.
305  */
306 static void live_end_at_block(be_lv_t *lv, ir_node *def, ir_node *block, bitset_t *visited, int is_true_out)
307 {
308         mark_live_end(lv, block, def);
309         if(is_true_out)
310                 mark_live_out(lv, block, def);
311
312         if(!bitset_contains_irn(visited, block)) {
313                 bitset_add_irn(visited, block);
314
315                 /*
316                 * If this block is not the definition block, we have to go up
317                 * further.
318                 */
319                 if(get_nodes_block(def) != block) {
320                         int i, n;
321
322                         mark_live_in(lv, block, def);
323
324                         for(i = 0, n = get_Block_n_cfgpreds(block); i < n; ++i)
325                                 live_end_at_block(lv, def, get_Block_cfgpred_block(block, i), visited, 1);
326                 }
327
328         }
329 }
330
331 struct _lv_walker_t {
332         be_lv_t *lv;
333         void *data;
334 };
335
336 /**
337  * Liveness analysis for a value.
338  * This functions is meant to be called by a firm walker, to compute the
339  * set of all blocks a value is live in.
340  * @param irn The node (value).
341  * @param env Ignored.
342  */
343 static void liveness_for_node(ir_node *irn, void *data)
344 {
345         struct _lv_walker_t *walker = data;
346         be_lv_t *lv       = walker->lv;
347         bitset_t *visited = walker->data;
348         const ir_edge_t *edge;
349         ir_node *def_block;
350
351         /* Don't compute liveness information for non-data nodes. */
352         if(!is_liveness_node(irn))
353                 return;
354
355         bitset_clear_all(visited);
356         def_block = get_nodes_block(irn);
357
358         /* Go over all uses of the value */
359         foreach_out_edge(irn, edge) {
360                 ir_node *use = edge->src;
361                 ir_node *use_block;
362
363                 /*
364                  * If the usage is no data node, skip this use, since it does not
365                  * affect the liveness of the node.
366                  */
367                 if(!is_liveness_node(use))
368                         continue;
369
370                 /* Get the block where the usage is in. */
371                 use_block = get_nodes_block(use);
372
373                 /*
374                  * If the use is a phi function, determine the corresponding block
375                  * through which the value reaches the phi function and mark the
376                  * value as live out of that block.
377                  */
378                 if(is_Phi(use)) {
379                         ir_node *pred_block = get_Block_cfgpred_block(use_block, edge->pos);
380                         live_end_at_block(lv, irn, pred_block, visited, 0);
381                 }
382
383                 /*
384                  * Else, the value is live in at this block. Mark it and call live
385                  * out on the predecessors.
386                  */
387                 else if(def_block != use_block) {
388                         int i, n;
389
390                         mark_live_in(lv, use_block, irn);
391
392                         for(i = 0, n = get_Block_n_cfgpreds(use_block); i < n; ++i) {
393                                 ir_node *pred_block = get_Block_cfgpred_block(use_block, i);
394                                 live_end_at_block(lv, irn, pred_block, visited, 1);
395                         }
396                 }
397         }
398 }
399
400 static void lv_remove_irn_walker(ir_node *bl, void *data)
401 {
402         struct _lv_walker_t *w = data;
403         be_lv_t *lv  = w->lv;
404         ir_node *irn = w->data;
405         be_lv_remove(lv, bl, irn);
406 }
407
408 static const char *lv_flags_to_str(unsigned flags)
409 {
410         static const char *states[] = {
411                 "---",
412                 "i--",
413                 "-e-",
414                 "ie-",
415                 "--o",
416                 "i-o",
417                 "-eo",
418                 "ieo"
419         };
420
421         return states[flags & 7];
422 }
423
424 static void lv_dump_block(void *context, FILE *f, const ir_node *bl)
425 {
426         if(is_Block(bl)) {
427                 be_lv_t *lv = context;
428                 struct _be_lv_info_t *info = phase_get_irn_data(&lv->ph, bl);
429
430                 fprintf(f, "liveness:\n");
431                 if(info) {
432                         unsigned n = info[0].u.head.n_members;
433                         unsigned i;
434
435                         for(i = 0; i < n; ++i) {
436                                 struct _be_lv_info_node_t *n = &info[i+1].u.node;
437                                 ir_fprintf(f, "%s %+F\n", lv_flags_to_str(n->flags), get_idx_irn(lv->irg, n->idx));
438                         }
439                 }
440         }
441 }
442
443 static void *lv_phase_data_init(ir_phase *phase, ir_node *irn, void *old)
444 {
445         struct _be_lv_info_t *info = phase_alloc(phase, LV_STD_SIZE * sizeof(info[0]));
446         memset(info, 0, LV_STD_SIZE * sizeof(info[0]));
447         info[0].u.head.n_size = LV_STD_SIZE - 1;
448         return info;
449 }
450
451 static void compute_liveness(be_lv_t *lv)
452 {
453         struct _lv_walker_t w;
454         w.lv   = lv;
455         w.data = bitset_malloc(get_irg_last_idx(lv->irg));
456         irg_walk_graph(lv->irg, liveness_for_node, NULL, &w);
457         bitset_free(w.data);
458 }
459
460 /* Compute the inter block liveness for a graph. */
461 be_lv_t *be_liveness(ir_graph *irg)
462 {
463         be_lv_t *lv = xmalloc(sizeof(lv[0]));
464
465         memset(lv, 0, sizeof(lv[0]));
466         lv->irg = irg;
467         lv->nodes = bitset_malloc(2 * get_irg_last_idx(irg));
468         lv->hook_info.context = lv;
469         lv->hook_info.hook._hook_node_info = lv_dump_block;
470         register_hook(hook_node_info, &lv->hook_info);
471         phase_init(&lv->ph, "liveness", irg, PHASE_DEFAULT_GROWTH, lv_phase_data_init);
472         compute_liveness(lv);
473
474         return lv;
475 }
476
477 void be_liveness_recompute(be_lv_t *lv)
478 {
479         unsigned last_idx = get_irg_last_idx(lv->irg);
480         if(last_idx >= bitset_size(lv->nodes)) {
481                 bitset_free(lv->nodes);
482                 lv->nodes = bitset_malloc(last_idx * 2);
483         }
484
485         else
486                 bitset_clear_all(lv->nodes);
487
488         phase_free(&lv->ph);
489         phase_init(&lv->ph, "liveness", lv->irg, PHASE_DEFAULT_GROWTH, lv_phase_data_init);
490         compute_liveness(lv);
491 }
492
493
494 void be_liveness_free(be_lv_t *lv)
495 {
496         unregister_hook(hook_node_info, &lv->hook_info);
497         phase_free(&lv->ph);
498         bitset_free(lv->nodes);
499         free(lv);
500 }
501
502 void be_liveness_remove(be_lv_t *lv, ir_node *irn)
503 {
504         unsigned idx = get_irn_idx(irn);
505         struct _lv_walker_t w;
506
507         /*
508          * Removes a single irn from the liveness information.
509          * Since an irn can only be live at blocks dominated by the block of its
510          * definition, we only have to process that dominance subtree.
511          */
512         w.lv   = lv;
513         w.data = irn;
514         dom_tree_walk(get_nodes_block(irn), lv_remove_irn_walker, NULL, &w);
515         if(idx <= bitset_size(lv->nodes))
516                 bitset_clear(lv->nodes, idx);
517 }
518
519 void be_liveness_introduce(be_lv_t *lv, ir_node *irn)
520 {
521         struct _lv_walker_t w;
522         w.lv   = lv;
523         w.data = bitset_malloc(get_irg_last_idx(lv->irg));
524         liveness_for_node(irn, &w);
525         bitset_free(w.data);
526 }
527
528 void be_liveness_update(be_lv_t *lv, ir_node *irn)
529 {
530         be_liveness_remove(lv, irn);
531         be_liveness_introduce(lv, irn);
532 }
533
534 static void lv_add_missing_walker(ir_node *irn, void *data)
535 {
536         struct _lv_walker_t *w = data;
537         if(!is_Block(irn) && !bitset_contains_irn(w->lv->nodes, irn)) {
538                 liveness_for_node(irn, w);
539         }
540 }
541
542 void be_liveness_add_missing(be_lv_t *lv)
543 {
544         struct _lv_walker_t w;
545         w.lv   = lv;
546         w.data = bitset_malloc(get_irg_last_idx(lv->irg));
547         irg_walk_graph(lv->irg, lv_add_missing_walker, NULL, &w);
548         bitset_free(w.data);
549 }
550
551 static void lv_check_walker(ir_node *bl, void *data)
552 {
553         struct _lv_walker_t *w = data;
554         be_lv_t *lv    = w->lv;
555         be_lv_t *fresh = w->data;
556
557         struct _be_lv_info_t *curr = phase_get_irn_data(&lv->ph, bl);
558         struct _be_lv_info_t *fr   = phase_get_irn_data(&fresh->ph, bl);
559
560         if(!fr && curr && curr[0].u.head.n_members > 0) {
561                 unsigned i;
562
563                 ir_fprintf(stderr, "%+F liveness should be empty but current liveness contains:\n", bl);
564                 for(i = 0; i < curr[0].u.head.n_members; ++i) {
565                         ir_fprintf(stderr, "\t%+F\n", get_idx_irn(lv->irg, curr[1 + i].u.node.idx));
566                 }
567         }
568
569         else if(curr) {
570                 unsigned n_curr  = curr[0].u.head.n_members;
571                 unsigned n_fresh = fr[0].u.head.n_members;
572
573                 unsigned i;
574
575                 if(n_curr != n_fresh) {
576                         ir_fprintf(stderr, "%+F: liveness set sizes differ. curr %d, correct %d\n", bl, n_curr, n_fresh);
577
578                         ir_fprintf(stderr, "current:\n");
579                         for(i = 0; i < n_curr; ++i) {
580                                 struct _be_lv_info_node_t *n = &curr[1 + i].u.node;
581                                 ir_fprintf(stderr, "%+F %u %+F %s\n", bl, i, get_idx_irn(lv->irg, n->idx), lv_flags_to_str(n->flags));
582                         }
583
584                         ir_fprintf(stderr, "correct:\n");
585                         for(i = 0; i < n_fresh; ++i) {
586                                 struct _be_lv_info_node_t *n = &fr[1 + i].u.node;
587                                 ir_fprintf(stderr, "%+F %u %+F %s\n", bl, i, get_idx_irn(lv->irg, n->idx), lv_flags_to_str(n->flags));
588                         }
589                 }
590         }
591 }
592
593 void be_liveness_check(be_lv_t *lv)
594 {
595         struct _lv_walker_t w;
596         be_lv_t *fresh = be_liveness(lv->irg);
597
598         w.lv   = lv;
599         w.data = fresh;
600         irg_block_walk_graph(lv->irg, lv_check_walker, NULL, &w);
601         be_liveness_free(fresh);
602 }
603
604
605 static void lv_dump_block_walker(ir_node *irn, void *data)
606 {
607         struct _lv_walker_t *w = data;
608         if(is_Block(irn))
609                 lv_dump_block(w->lv, w->data, irn);
610 }
611
612
613 /* Dump the liveness information for a graph. */
614 void be_liveness_dump(const be_lv_t *lv, FILE *f)
615 {
616         struct _lv_walker_t w;
617
618         w.lv   = (be_lv_t *) lv;
619         w.data = f;
620         irg_block_walk_graph(lv->irg, lv_dump_block_walker, NULL, &w);
621 }
622
623 /* Dump the liveness information for a graph. */
624 void be_liveness_dumpto(const be_lv_t *lv, const char *cls_name)
625 {
626         FILE *f;
627         char buf[128];
628         ir_snprintf(buf, sizeof(buf), "%F_%s-live.txt", lv->irg, cls_name);
629         if((f = fopen(buf, "wt")) != NULL) {
630                 be_liveness_dump(lv, f);
631                 fclose(f);
632         }
633 }
634
635 /**
636  * Walker: checks the every predecessors of a node dominate
637  * the note.
638  */
639 static void dom_check(ir_node *irn, void *data)
640 {
641         int *problem_found = data;
642
643         if(!is_Block(irn) && irn != get_irg_end(get_irn_irg(irn))) {
644                 int i, n;
645                 ir_node *bl = get_nodes_block(irn);
646
647                 for(i = 0, n = get_irn_arity(irn); i < n; ++i) {
648                         ir_node *op     = get_irn_n(irn, i);
649                         ir_node *def_bl = get_nodes_block(op);
650                         ir_node *use_bl = bl;
651
652                         if(is_Phi(irn))
653                                 use_bl = get_Block_cfgpred_block(bl, i);
654
655                         if(get_irn_opcode(use_bl) != iro_Bad
656                              && get_irn_opcode(def_bl) != iro_Bad
657                              && !block_dominates(def_bl, use_bl)) {
658                                 ir_fprintf(stderr, "Verify warning: %+F in %+F must dominate %+F for user %+F (%s)\n", op, def_bl, use_bl, irn, get_irg_dump_name(get_irn_irg(op)));
659                                 *problem_found = 1;
660                         }
661                 }
662         }
663 }
664
665 /* Check, if the SSA dominance property is fulfilled. */
666 int be_check_dominance(ir_graph *irg)
667 {
668         int problem_found = 0;
669
670         assure_doms(irg);
671         irg_walk_graph(irg, dom_check, NULL, &problem_found);
672
673         return !problem_found;
674 }
675
676 pset *be_liveness_transfer(const arch_env_t *arch_env, const arch_register_class_t *cls, ir_node *irn, pset *live)
677 {
678         int i, n;
679
680         /* You should better break out of your loop when hitting the first phi function. */
681         assert(!is_Phi(irn) && "liveness_transfer produces invalid results for phi nodes");
682
683         if(arch_irn_consider_in_reg_alloc(arch_env, cls, irn)) {
684                 ir_node *del = pset_remove_ptr(live, irn);
685                 (void) del;
686                 assert(irn == del);
687         }
688
689         for(i = 0, n = get_irn_arity(irn); i < n; ++i) {
690                 ir_node *op = get_irn_n(irn, i);
691
692                 if(arch_irn_consider_in_reg_alloc(arch_env, cls, op))
693                         pset_insert_ptr(live, op);
694         }
695
696         return live;
697 }
698
699 pset *be_liveness_end_of_block(const be_lv_t *lv, const arch_env_t *arch_env, const arch_register_class_t *cls, const ir_node *bl, pset *live)
700 {
701         int i;
702         be_lv_foreach(lv, bl, be_lv_state_end, i) {
703                 ir_node *irn = be_lv_get_irn(lv, bl, i);
704                 if(arch_irn_consider_in_reg_alloc(arch_env, cls, irn))
705                         pset_insert_ptr(live, irn);
706         }
707
708         return live;
709 }
710
711 pset *be_liveness_nodes_live_at(const be_lv_t *lv, const arch_env_t *arch_env, const arch_register_class_t *cls, const ir_node *pos, pset *live)
712 {
713         const ir_node *bl = is_Block(pos) ? pos : get_nodes_block(pos);
714         ir_node *irn;
715
716         be_liveness_end_of_block(lv, arch_env, cls, bl, live);
717         sched_foreach_reverse(bl, irn) {
718                 /*
719                  * If we encounter the node we want to insert the Perm after,
720                  * exit immediately, so that this node is still live
721                  */
722                 if(irn == pos)
723                         return live;
724
725                 be_liveness_transfer(arch_env, cls, irn, live);
726         }
727
728         return live;
729 }
730
731 pset *be_liveness_nodes_live_at_input(const be_lv_t *lv, const arch_env_t *arch_env, const arch_register_class_t *cls, const ir_node *pos, pset *live)
732 {
733         const ir_node *bl = is_Block(pos) ? pos : get_nodes_block(pos);
734         ir_node *irn;
735
736         be_liveness_end_of_block(lv, arch_env, cls, bl, live);
737         sched_foreach_reverse(bl, irn) {
738                 be_liveness_transfer(arch_env, cls, irn, live);
739                 if(irn == pos)
740                         return live;
741         }
742
743         return live;
744 }
745
746 void be_init_live(void)
747 {
748         FIRM_DBG_REGISTER(dbg, "firm.be.liveness");
749 }
750
751 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_live);