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