68fe2e060a0f073356dbcf2717f55189c570f8fc
[libfirm] / ir / ana / irextbb.c
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ana/irextbb.c
4  * Purpose:     Extended basis block support.
5  * Author:      Michael Beck
6  * Modified by:
7  * Created:     5.2005
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 2002-2005 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 /**
14  * @file irextbb.c
15  *
16  *  Computes extended basic blocks.
17  *
18  *  @author Michael Beck
19  */
20 #include "irextbb_t.h"
21 #include "irgwalk.h"
22 #include "irnode_t.h"
23 #include "xmalloc.h"
24 #include "irprintf.h"
25
26 typedef struct _env {
27   struct obstack *obst;   /**< the obstack where allocations took place */
28   ir_extblk *head;        /**< head of the list of all extended blocks */
29 } env_t;
30
31 /**
32  * allocate a new extended block header.
33  */
34 static void allocate_extblk(ir_node *block, env_t *env)
35 {
36   ir_extblk *extblk = obstack_alloc(env->obst, sizeof(*extblk));
37
38   extblk->kind    = k_ir_extblk;
39   extblk->visited = 1;
40   extblk->blks    = (ir_node **)env->head;
41   extblk->link    = block;
42   env->head       = extblk;
43
44   set_Block_extbb(block, extblk);
45   set_irn_link(block, NULL);
46 }
47
48 /**
49  * add a block to an extended block
50  */
51 static void addto_extblk(ir_extblk *extblk, ir_node *block)
52 {
53   /* link all blocks belonging to this extended block */
54   set_irn_link(block, extblk->link);
55
56   extblk->link = block;
57   extblk->visited++;
58
59   set_Block_extbb(block, extblk);
60 }
61
62
63 /**
64  * Pre block-walker. Calculates the extended block info.
65  */
66 static void pre_walk_calc_extbb(ir_node *block, void *ctx)
67 {
68   int n = get_Block_n_cfgpreds(block);
69   env_t *env = ctx;
70
71   if (n <= 0 || n > 1 || block == get_irg_start_block(current_ir_graph)) {
72     /*
73      * block is a JOIN-node ie he control flow from
74      * many other blocks joins here. block is a leader.
75      * Note that we handle unreachable blocks (n <= 0) here too.
76      */
77     allocate_extblk(block, env);
78   }
79   else {
80     ir_node *add_to = get_Block_cfgpred(block, 0);
81
82     if (! is_Bad(add_to))
83       add_to = get_nodes_block(add_to);
84
85     /* blocks with only one BAD predecessors are leaders too */
86     if (is_Bad(add_to)) {
87       allocate_extblk(block, env);
88     }
89     else {
90       /*
91        * Only one control flow predecessor. This block belongs
92        * to the same extended basic block as its predecessor.
93        */
94       set_Block_extbb(block, NULL);
95     }
96   }
97 }
98
99 /**
100  * Post block-walker. Calculates the extended block info.
101  * During construction, we use the (free) block input of all basic blocks
102  * to point to there previous block.
103  */
104 static void post_walk_calc_extbb(ir_node *block, void *env)
105 {
106   ir_extblk *extbb = get_Block_extbb(block);
107
108   if (! extbb) {
109     ir_node *prev = block;
110
111     /* search the leader */
112     do {
113       prev = get_nodes_block(get_Block_cfgpred(prev, 0));
114       extbb = get_Block_extbb(prev);
115     } while (! extbb);
116
117     addto_extblk(extbb, block);
118   }
119 }
120
121 /*
122  * Compute the extended basic blocks for a graph
123  */
124 void compute_extbb(ir_graph *irg) {
125   env_t env;
126   ir_extblk *extbb, *next;
127
128   if (irg->extbb_obst)
129     obstack_free(irg->extbb_obst, NULL);
130   else {
131     irg->extbb_obst = xmalloc(sizeof(*irg->extbb_obst));
132   }
133   obstack_init(irg->extbb_obst);
134
135   env.obst = irg->extbb_obst;
136   env.head = NULL;
137
138   irg_block_walk_graph(irg, pre_walk_calc_extbb, post_walk_calc_extbb, &env);
139
140   /*
141    * Ok, we have now the list of all extended blocks starting with env.head
142    * every extended block "knowns" the number of blocks in visited and
143    * the blocks are linked in link.
144    * Now we can create arrays that hold the blocks, some kind of "out" edges
145    * for the extended block
146    */
147   for (extbb = env.head; extbb; extbb = next) {
148     int i, len = (int)extbb->visited;
149     ir_node *block;
150
151     next = (ir_extblk *)extbb->blks;
152
153     extbb->blks = NEW_ARR_D(ir_node *, env.obst, len);
154
155     for (block = extbb->link, i = 0; i < len; ++i) {
156       ir_node *nblock = get_irn_link(block);
157
158       extbb->blks[i] = block;
159       set_irn_link(block, NULL);
160       block = nblock;
161     }
162
163     extbb->link    = NULL;
164     extbb->visited = 0;
165   }
166
167   irg->extblk_state = ir_extblk_info_valid;
168 }
169
170 /* free all extended block info. */
171 void free_extbb(ir_graph *irg) {
172   if (irg->extbb_obst) {
173     obstack_free(irg->extbb_obst, NULL);
174     xfree(irg->extbb_obst);
175     irg->extbb_obst = NULL;
176   }
177   irg->extblk_state = ir_extblk_info_none;
178 }
179
180 /* Return the extended block of a node. */
181 ir_extblk *get_nodes_extbb(ir_node *node) {
182   ir_node *block = is_Block(node) ? node : get_nodes_block(node);
183   return get_Block_extbb(block);
184 }
185
186 /* Gets the visited counter of an extended block. */
187 unsigned long (get_extbb_visited)(const ir_extblk *blk) {
188   return _get_extbb_visited(blk);
189 }
190
191 /* Sets the visited counter of an extended block. */
192 void (set_extbb_visited)(ir_extblk *blk, unsigned long visited) {
193   _set_extbb_visited(blk, visited);
194 }
195
196 /* Mark an extended block as visited in a graph. */
197 void (mark_extbb_visited)(ir_extblk *blk) {
198   _mark_extbb_visited(blk);
199 }
200
201 /* Returns non-zero if an extended was visited. */
202 int (extbb_visited)(const ir_extblk *blk) {
203   return _extbb_visited(blk);
204 }
205
206 /* Returns non-zero if an extended block was NOT visited. */
207 int (extbb_not_visited)(const ir_extblk *blk) {
208   return _extbb_not_visited(blk);
209 }
210
211 /* Returns the link field of an extended block. */
212 void *(get_extbb_link)(const ir_extblk *blk) {
213   return _get_extbb_link(blk);
214 }
215
216 /* Sets the link field of an extended block. */
217 void (set_extbb_link)(ir_extblk *blk, void *link) {
218   _set_extbb_link(blk, link);
219 }
220
221 /* Return the number of basic blocks of an extended block */
222 int (get_extbb_n_blocks)(const ir_extblk *blk) {
223   return _get_extbb_n_blocks(blk);
224 }
225
226 /* Return the i'th basic block of an extended block */
227 ir_node *(get_extbb_block)(ir_extblk *blk, int pos) {
228   return _get_extbb_block(blk, pos);
229 }
230
231 /* Return the leader basis block of an extended block. */
232 ir_node *(get_extbb_leader)(ir_extblk *blk) {
233   return _get_extbb_leader(blk);
234 }
235
236 /* Return the node number of an extended block. */
237 long get_extbb_node_nr(ir_extblk *blk) {
238   return get_irn_node_nr(get_extbb_leader(blk));
239 }