fixed warnigns
[libfirm] / ir / ana / irlivechk.c
1 /*
2  * Copyright (C) 1995-2007 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    livechk.c
22  * @date    21.04.2007
23  * @author  Sebastian Hack
24  * @version $Id$
25  * @summary
26  *
27  * Liveness checks as developed by Benoit Boissinot, Fabrice Rastello and myself.
28  *
29  * The speciality here is, that nothing has to be recomputed if new nodes are created
30  * or old ones deleted.
31  *
32  * This algo has one core routine check_live_end_internal() which performs the liveness check.
33  * It only relies on the precomputation done in the constructor, which in turn needs:
34  * - out edges
35  * - the dominance tree
36  * - data obtained from a depth-first-search
37  *
38  * The precomputation remains valid as long as the CFG is not altered.
39  */
40
41 #include <stdio.h>
42
43 #include "irgraph_t.h"
44 #include "irphase_t.h"
45 #include "iredges_t.h"
46 #include "irprintf.h"
47 #include "irdump.h"
48
49 #include "dfs_t.h"
50 #include "bitset.h"
51 #include "util.h"
52
53 #include "irlivechk.h"
54
55 #define ENABLE_STATS
56
57 #ifdef ENABLE_STATS
58 #define STAT_INC(memb)  ++lv->stat->memb
59 #else
60 #define STAT_INC(memb)
61 #endif
62
63 typedef struct _bl_info_t {
64         ir_node *block;            /**< The block. */
65
66         int id;                    /**< a tight number for the block.
67                                                                  we're just reusing the pre num from
68                                                                  the DFS. */
69
70         bitset_t *red_reachable;   /**< Holds all id's if blocks reachable
71                                                                  in the CFG modulo back edges. */
72
73         bitset_t *be_tgt_reach;    /**< target blocks of back edges whose
74                                                                  sources are reachable from this block
75                                                                  in the reduced graph. */
76
77         bitset_t *be_tgt_dom;      /**< target blocks of back edges which
78                                                                  are dominated by this block. */
79 } bl_info_t;
80
81 #define get_block_info(lv, bl) ((bl_info_t *) phase_get_irn_data(&(lv)->ph, bl))
82
83 struct _lv_chk_t {
84         ir_phase ph;
85         dfs_t *dfs;
86         DEBUG_ONLY(firm_dbg_module_t *dbg;)
87         int n_blocks;
88         bitset_t *back_edge_src;
89         bitset_t *back_edge_tgt;
90         bl_info_t **map;
91         lv_chk_stat_t *stat;        /**< statistics information. */
92         lv_chk_stat_t stat_data;
93 };
94
95 static void *init_block_data(ir_phase *ph, ir_node *irn, void *old)
96 {
97         lv_chk_t *lv      = container_of(ph, lv_chk_t, ph);
98         bl_info_t *bi     = phase_alloc(ph, sizeof(bi[0]));
99
100         bi->id            = dfs_get_pre_num(lv->dfs, irn);
101         bi->block         = irn;
102         bi->red_reachable = bitset_obstack_alloc(phase_obst(ph), lv->n_blocks);
103         bi->be_tgt_reach  = bitset_obstack_alloc(phase_obst(ph), lv->n_blocks);
104         bi->be_tgt_dom    = bitset_obstack_alloc(phase_obst(ph), lv->n_blocks);
105         (void) old;
106         return bi;
107 }
108
109 /**
110  * Filter function to select all nodes for which liveness is computed.
111  * @param irn A node.
112  * @return    1 if the node shall be considered in liveness, 0 if not.
113  */
114 static INLINE int is_liveness_node(const ir_node *irn)
115 {
116         switch(get_irn_opcode(irn)) {
117         case iro_Block:
118         case iro_Bad:
119         case iro_End:
120                 return 0;
121         default:;
122         }
123
124         return 1;
125 }
126
127 /**
128  * Compute the transitive closure on the reduced graph.
129  * The reduced graph is the original graph without back edges.
130  * Since that is a DAG, a reverse post order of the graph gives a toposort
131  * which is ideally suited to compute the transitive closure.
132  * Note also, that the DFS tree of the reduced graph is the same than the one
133  * of the original graph. This saves us computing a new reverse post order.
134  * We also can re-use the DFS tree of the original graph.
135  */
136 static void red_trans_closure(lv_chk_t *lv)
137 {
138         int i, n;
139
140         for (i = 0, n = dfs_get_n_nodes(lv->dfs); i < n; ++i) {
141                 ir_node *bl   = dfs_get_post_num_node(lv->dfs, i);
142                 bl_info_t *bi = get_block_info(lv, bl);
143
144                 const ir_edge_t *edge;
145
146                 foreach_block_succ (bl, edge) {
147                         ir_node *succ = get_edge_src_irn(edge);
148                         bl_info_t *si = get_block_info(lv, succ);
149                         dfs_edge_kind_t kind = dfs_get_edge_kind(lv->dfs, bl, succ);
150
151                         /*
152                          * if the successor is no back edge, include all reachable
153                          * blocks from there into the reachable set of the current node
154                          */
155                         if (kind != DFS_EDGE_BACK) {
156                                 assert(dfs_get_post_num(lv->dfs, bl)
157                                                 > dfs_get_post_num(lv->dfs, succ));
158                                 bitset_or(bi->red_reachable, si->red_reachable);
159                                 bitset_set(bi->red_reachable, si->id);
160                         }
161
162                         /* mark the block as a back edge src and succ as back edge tgt. */
163                         else {
164                                 bitset_set(lv->back_edge_src, bi->id);
165                                 bitset_set(lv->back_edge_tgt, si->id);
166                         }
167                 }
168
169         }
170
171 }
172
173 /**
174  * Compute the two back edge sets for each block.
175  * <code>be_tgt_reach</code> contains all target blocks of a back edges reachable from a node.
176  * <code>be_tgt_dom</code> contains all target blocks of back edges strictly dominated
177  * by a node.
178  */
179 static void compute_back_edge_sets(lv_chk_t *lv, ir_node *bl)
180 {
181         bl_info_t *bi = phase_get_or_set_irn_data(&(lv)->ph, bl);
182         bitset_t *tmp = bitset_alloca(lv->n_blocks);
183
184         bitset_pos_t elm;
185         ir_node *n;
186
187         dominates_for_each (bl, n) {
188                 bl_info_t *ni = phase_get_or_set_irn_data(&(lv)->ph, n);
189
190                 /* compute information for dominance sub tree */
191                 compute_back_edge_sets(lv, n);
192
193                 /*
194                  * of course all blocks dominated by blocks in the
195                  * subtree are also dominated by bl.
196                  */
197                 bitset_or(bi->be_tgt_dom, ni->be_tgt_dom);
198
199                 /*
200                  * add the immeditate dominee to the back edge tgt dominance
201                  * bitset if it is the target node of a back edge.
202                  */
203                 if (bitset_is_set(lv->back_edge_tgt, ni->id))
204                         bitset_set(bi->be_tgt_dom, ni->id);
205         }
206
207         /*
208          * iterate over all back edge src nodes which are reachable from
209          * this nodes and put the targets of the back edges in the be_tgt_reach
210          * bitset of the node.
211          */
212         bitset_copy(tmp, bi->red_reachable);
213         bitset_set(tmp, bi->id);
214         bitset_and(tmp, lv->back_edge_src);
215         bitset_foreach (tmp, elm) {
216                 ir_node *src = lv->map[elm]->block;
217                 const ir_edge_t *edge;
218
219                 foreach_block_succ (src, edge) {
220                         ir_node *succ        = get_edge_src_irn(edge);
221                         dfs_edge_kind_t kind = dfs_get_edge_kind(lv->dfs, src, succ);
222
223                         if (kind == DFS_EDGE_BACK) {
224                                 bl_info_t *si = get_block_info(lv, succ);
225                                 bitset_set(bi->be_tgt_reach, si->id);
226                         }
227                 }
228         }
229 }
230
231 lv_chk_t *lv_chk_new(ir_graph *irg)
232 {
233         lv_chk_t *res = xmalloc(sizeof(res[0]));
234         struct obstack *obst;
235         int i;
236
237         phase_init(&res->ph, "liveness check", irg, PHASE_DEFAULT_GROWTH, init_block_data, NULL);
238         obst = phase_obst(&res->ph);
239
240         FIRM_DBG_REGISTER(res->dbg, "ir.ana.lvchk");
241
242         res->dfs           = dfs_new(&absgraph_irg_cfg_succ, irg);
243         res->n_blocks      = dfs_get_n_nodes(res->dfs);
244         res->back_edge_src = bitset_obstack_alloc(obst, res->n_blocks);
245         res->back_edge_tgt = bitset_obstack_alloc(obst, res->n_blocks);
246         res->map           = obstack_alloc(obst, res->n_blocks * sizeof(res->map[0]));
247
248 #ifdef ENABLE_STATS
249         memset(&res->stat_data, 0, sizeof(res->stat_data));
250         res->stat = &res->stat_data;
251 #endif
252 #if 0
253         {
254                 char name[256];
255                 FILE *f;
256                 ir_snprintf(name, sizeof(name), "dfs_%F.dot", irg);
257                 if ((f = fopen(name, "wt")) != NULL) {
258                         dfs_dump(res->dfs, f);
259                         fclose(f);
260                 }
261                 dump_ir_block_graph(irg, "-lvchk");
262         }
263 #endif
264
265         /* fill the map which maps pre_num to block infos */
266         for (i = res->n_blocks - 1; i >= 0; --i) {
267                 ir_node *irn = dfs_get_pre_num_node(res->dfs, i);
268                 res->map[i]  = phase_get_or_set_irn_data(&res->ph, irn);
269         }
270
271         /* first of all, compute the transitive closure of the CFG *without* back edges */
272         red_trans_closure(res);
273
274         /* now fill the two remaining bitsets concerning back edges */
275         compute_back_edge_sets(res, get_irg_start_block(irg));
276
277         DEBUG_ONLY_NICE {
278                 DBG((res->dbg, LEVEL_1, "liveness chk in %+F\n", irg));
279                 for (i = res->n_blocks - 1; i >= 0; --i) {
280                         ir_node *irn  = dfs_get_pre_num_node(res->dfs, i);
281                         bl_info_t *bi = get_block_info(res, irn);
282                         DBG((res->dbg, LEVEL_1, "lv_chk for %d -> %+F\n", i, irn));
283                         DBG((res->dbg, LEVEL_1, "\tred reach: %B\n", bi->red_reachable));
284                         DBG((res->dbg, LEVEL_1, "\ttgt reach: %B\n", bi->be_tgt_reach));
285                         DBG((res->dbg, LEVEL_1, "\ttgt dom:   %B\n", bi->be_tgt_dom));
286                 }
287         }
288
289         DBG((res->dbg, LEVEL_1, "back edge src: %B\n", res->back_edge_src));
290         DBG((res->dbg, LEVEL_1, "back edge tgt: %B\n", res->back_edge_tgt));
291
292         return res;
293 }
294
295 void lv_chk_free(lv_chk_t *lv)
296 {
297         obstack_free(phase_obst(&lv->ph), NULL);
298         dfs_free(lv->dfs);
299         xfree(lv);
300 }
301
302 const lv_chk_stat_t *lv_chk_get_stat(const lv_chk_t *lv)
303 {
304 #ifdef ENABLE_STATS
305         return lv->stat;
306 #else
307         return NULL;
308 #endif
309 }
310
311 /**
312  * Check if a node is live at the end of a block.
313  * This function is for internal use as its code is shared between
314  * the in/end routines below. It is almost the "live_end" routine
315  * but passing in the bitset for recording the blocks where the variable
316  * is used saves some effort in the "live_in" routine. See below for
317  * details.
318  *
319  * @param lv    The liveness check environment.
320  * @param what  The node to check for.
321  * @param bl    The block under investigation.
322  * @param uses  A bitset where this routine records all ids of blocks
323  *              where this variable is used. Note that the bitset
324  *              is only guaranteed to be filled if the node was not
325  *              live at the end of the block.
326  * @return      1, if @p what is live at the end at @p bl.
327  */
328 unsigned lv_chk_bl_xxx(const lv_chk_t *lv, const ir_node *bl, const ir_node *what)
329 {
330         ir_node *what_bl;
331
332         assert(is_Block(bl) && "can only check for liveness in a block");
333
334         if (!is_liveness_node(what))
335                 return 0;
336
337         what_bl = get_nodes_block(what);
338         if (!block_dominates(what_bl, bl)) {
339                 STAT_INC(n_no_dominance);
340                 return 0;
341         }
342
343         /*
344          * If the block in question is the same as the definition block,
345          * the algorithm is simple. Just check for uses not inside this block.
346          */
347         if (what_bl == bl) {
348                 int res = 0;
349                 const ir_edge_t *edge;
350
351                 STAT_INC(n_def_block);
352                 DBG((lv->dbg, LEVEL_2, "lv check same block %+F in %+F\n", what, bl));
353                 foreach_out_edge (what, edge) {
354                         ir_node *use    = get_edge_src_irn(edge);
355                         ir_node *use_bl;
356
357                         if (!is_liveness_node(use))
358                                 continue;
359
360                         use_bl = get_nodes_block(use);
361                         if (is_Phi(use)) {
362                                 int pos = get_edge_src_pos(edge);
363                                 use_bl  = get_Block_cfgpred_block(use_bl, pos);
364
365                                 if (use_bl == bl) {
366                                         DBG((lv->dbg, LEVEL_2, "\tphi %+F in succ %+F,%d -> live end\n", use, use_bl, pos));
367                                         res |= lv_chk_state_end;
368                                 }
369                         }
370
371                         if (use_bl != what_bl)
372                                 return lv_chk_state_end | lv_chk_state_out;
373                 }
374
375                 return res;
376         }
377
378         /* this is the complicated case */
379         else {
380                 bitset_t *visited   = bitset_alloca(lv->n_blocks);
381                 bitset_t *to_visit  = bitset_alloca(lv->n_blocks);
382                 bitset_t *next      = bitset_alloca(lv->n_blocks);
383                 bitset_t *uses      = bitset_alloca(lv->n_blocks);
384                 bl_info_t *def      = get_block_info(lv, what_bl);
385                 bl_info_t *bli      = get_block_info(lv, bl);
386                 int res = 0;
387
388                 const ir_edge_t *edge;
389
390                 foreach_out_edge (what, edge) {
391                         ir_node *user   = get_edge_src_irn(edge);
392                         ir_node *use_bl;
393                         bl_info_t *bi;
394
395                         if (!is_liveness_node(user))
396                                 continue;
397
398                         use_bl = get_nodes_block(user);
399                         if (is_Phi(user)) {
400                                 int pos          = get_edge_src_pos(edge);
401
402                                 use_bl = get_Block_cfgpred_block(use_bl, pos);
403                                 bi     = get_block_info(lv, use_bl);
404
405                                 if (use_bl == bl)
406                                         res |= lv_chk_state_end | lv_chk_state_in;
407
408                                 bitset_set(uses, bi->id);
409                         }
410
411                         else {
412                                 bi = get_block_info(lv, use_bl);
413                                 bitset_set(uses, bi->id);
414                                 if (use_bl == bl)
415                                         res |= lv_chk_state_in;
416                         }
417
418                 }
419                 DBG((lv->dbg, LEVEL_2, "\tuses: %B\n", uses));
420
421                 bitset_clear(uses, def->id);
422                 bitset_set(to_visit, bli->id);
423                 do {
424                         int id        = bitset_next_set(to_visit, 0);
425                         bl_info_t *bi = lv->map[id];
426
427                         DBG((lv->dbg, LEVEL_2, "\tto visit: %B\n", to_visit));
428                         DBG((lv->dbg, LEVEL_2, "\tvisited:  %B\n", visited));
429
430                         /*
431                          * if one of the blocks is reachable, the node must be live there.
432                          * Note that this is not sufficient, since the nodes reachable
433                          * via back edges are not contained in the red_reachable set.
434                          */
435                         if (bitset_intersect(bi->red_reachable, uses))
436                                 return lv_chk_state_end | lv_chk_state_out | lv_chk_state_in;
437
438                         /*
439                          * if not, we have to check the back edges in question, if
440                          * they lead to places which are reachable.
441                          */
442                         else {
443                                 bitset_set(visited, id);
444                                 bitset_or(visited, bi->red_reachable);
445
446                                 bitset_copy(next, bi->be_tgt_reach);
447                                 bitset_and(next, def->be_tgt_dom);
448                                 DBG((lv->dbg, LEVEL_2, "\tnext: %B\n----\n", next));
449
450                                 if (bitset_intersect(uses, next))
451                                         return lv_chk_state_end | lv_chk_state_out | lv_chk_state_in;
452
453                                 bitset_or(to_visit, next);
454                                 bitset_andnot(to_visit, visited);
455
456                         }
457                 } while (!bitset_is_empty(to_visit));
458
459                 return res;
460         }
461
462         return 0;
463 }