ae6940a3daf4577c0fe603cf74981e32e29adf86
[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
15 #include "beutil.h"
16 #include "belive_t.h"
17
18 FIRM_IMPL2(is_live_in, int, const ir_node *, const ir_node *)
19 FIRM_IMPL2(is_live_out, int, const ir_node *, const ir_node *)
20 FIRM_IMPL2(is_live_end, int, const ir_node *, const ir_node *)
21
22 /** The offset of the liveness information in a firm node. */
23 size_t live_irg_data_offset = 0;
24
25 void be_liveness_init(void)
26 {
27   live_irg_data_offset = register_additional_graph_data(sizeof(irn_live_t));
28 }
29
30 static INLINE void mark_live_in(ir_node *block, const ir_node *irn)
31 {
32   _get_or_set_live(block, irn, live_state_in);
33 }
34
35 static INLINE void mark_live_out(ir_node *block, const ir_node *irn)
36 {
37   _get_or_set_live(block, irn, live_state_out | live_state_end);
38 }
39
40 static INLINE void mark_live_end(ir_node *block, const ir_node *irn)
41 {
42   _get_or_set_live(block, irn, live_state_end);
43 }
44
45 /**
46  * Mark a node (value) live out at a certain block. Do this also
47  * transitively, i.e. if the block is not the block of the value's
48  * definition, all predecessors are also marked live.
49  * @param def The node (value).
50  * @param block The block to mark the value live out of.
51  * @param visited A set were all visited blocks are recorded.
52  * @param is_true_out Is the node real out there or only live at the end
53  * of the block.
54  */
55 static void live_end_at_block(ir_node *def, ir_node *block,
56     pset *visited, int is_true_out)
57 {
58   mark_live_end(block, def);
59   if(is_true_out)
60     mark_live_out(block, def);
61
62   if(!pset_find_ptr(visited, block)) {
63
64     pset_insert_ptr(visited, block);
65
66     /*
67      * If this block is not the definition block, we have to go up
68      * further.
69      */
70     if(get_nodes_block(def) != block) {
71       int i, n;
72
73       mark_live_in(block, def);
74
75       for(i = 0, n = get_irn_arity(block); i < n; ++i)
76         live_end_at_block(def, get_nodes_block(get_irn_n(block, i)), visited, 1);
77     }
78
79   }
80 }
81
82 /**
83  * Liveness analysis for a value.
84  * This functions is meant to be called by a firm walker, to compute the
85  * set of all blocks a value is live in.
86  * @param irn The node (value).
87  * @param env Ignored.
88  */
89 static void liveness_for_node(ir_node *irn, void *env)
90 {
91   const ir_edge_t *edge;
92   ir_node *def_block;
93   pset *visited;
94
95   /* Don't compute liveness information for non-data nodes. */
96   if(!is_data_node(irn))
97     return;
98
99   visited = pset_new_ptr(512);
100   def_block = get_nodes_block(irn);
101
102   /* Go over all uses of the value */
103   foreach_out_edge(irn, edge) {
104     ir_node *use = edge->src;
105     ir_node *use_block;
106
107     /*
108      * If the usage is no data node, skip this use, since it does not
109      * affect the liveness of the node.
110      */
111     if(!is_data_node(use))
112       continue;
113
114     /* Get the block where the usage is in. */
115     use_block = get_nodes_block(use);
116
117     /*
118      * If the use is a phi function, determine the corresponding block
119      * through which the value reaches the phi function and mark the
120      * value as live out of that block.
121      */
122     if(is_Phi(use)) {
123       int i, n;
124
125       /* Mark the node as a phi operand, since a use by a phi was found. */
126       /* get_node_live_info(irn)->is_phi_op = 1; */
127
128       for(i = 0, n = get_irn_arity(use); i < n; ++i) {
129         if(get_irn_n(use, i) == irn) {
130           ir_node *pred_block = get_nodes_block(get_irn_n(use_block, i));
131           live_end_at_block(irn, pred_block, visited, 0);
132         }
133       }
134     }
135
136     /*
137      * Else, the value is live in at this block. Mark it and call live
138      * out on the predecessors.
139      */
140     else if(def_block != use_block) {
141       int i, n;
142
143       mark_live_in(use_block, irn);
144
145       for(i = 0, n = get_irn_arity(use_block); i < n; ++i) {
146         ir_node *pred_block = get_nodes_block(get_irn_n(use_block, i));
147         live_end_at_block(irn, pred_block, visited, 1);
148       }
149     }
150   }
151
152   del_pset(visited);
153 }
154
155 static int cmp_irn_live(const void *a, const void *b, size_t size)
156 {
157   const irn_live_t *p = a;
158   const irn_live_t *q = b;
159
160   return !(p->block == q->block && p->irn == q->irn);
161 }
162
163 void be_liveness(ir_graph *irg)
164 {
165   irg_live_info_t *live_info = get_irg_live_info(irg);
166   if(live_info->live)
167     del_set(live_info->live);
168
169   live_info->live = new_set(cmp_irn_live, 8192);
170   irg_walk_graph(irg, liveness_for_node, NULL, NULL);
171 }