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