05f09d3d6e2c8491cd2bb4f01ad829795f3e4e3d
[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_irn_n(add_to, -1);
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_irn_n(get_Block_cfgpred(prev, 0), -1);
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       /* ensure that the leader is the first one */
159       extbb->blks[len - 1 - i] = block;
160       set_irn_link(block, NULL);
161       block = nblock;
162     }
163
164     extbb->link    = NULL;
165     extbb->visited = 0;
166   }
167
168   irg->extblk_state = ir_extblk_info_valid;
169 }
170
171 /* free all extended block info. */
172 void free_extbb(ir_graph *irg) {
173   if (irg->extbb_obst) {
174     obstack_free(irg->extbb_obst, NULL);
175     xfree(irg->extbb_obst);
176     irg->extbb_obst = NULL;
177   }
178   irg->extblk_state = ir_extblk_info_none;
179 }
180
181 /* Return the extended block of a node. */
182 ir_extblk *get_nodes_extbb(ir_node *node) {
183   ir_node *block = is_Block(node) ? node : get_irn_n(node, -1);
184   return get_Block_extbb(block);
185 }
186
187 /* Gets the visited counter of an extended block. */
188 unsigned long (get_extbb_visited)(const ir_extblk *blk) {
189   return _get_extbb_visited(blk);
190 }
191
192 /* Sets the visited counter of an extended block. */
193 void (set_extbb_visited)(ir_extblk *blk, unsigned long visited) {
194   _set_extbb_visited(blk, visited);
195 }
196
197 /* Mark an extended block as visited in a graph. */
198 void (mark_extbb_visited)(ir_extblk *blk) {
199   _mark_extbb_visited(blk);
200 }
201
202 /* Returns non-zero if an extended was visited. */
203 int (extbb_visited)(const ir_extblk *blk) {
204   return _extbb_visited(blk);
205 }
206
207 /* Returns non-zero if an extended block was NOT visited. */
208 int (extbb_not_visited)(const ir_extblk *blk) {
209   return _extbb_not_visited(blk);
210 }
211
212 /* Returns the link field of an extended block. */
213 void *(get_extbb_link)(const ir_extblk *blk) {
214   return _get_extbb_link(blk);
215 }
216
217 /* Sets the link field of an extended block. */
218 void (set_extbb_link)(ir_extblk *blk, void *link) {
219   _set_extbb_link(blk, link);
220 }
221
222 /* Return the number of basic blocks of an extended block */
223 int (get_extbb_n_blocks)(const ir_extblk *blk) {
224   return _get_extbb_n_blocks(blk);
225 }
226
227 /* Return the i'th basic block of an extended block */
228 ir_node *(get_extbb_block)(ir_extblk *blk, int pos) {
229   return _get_extbb_block(blk, pos);
230 }
231
232 /* Return the leader basis block of an extended block. */
233 ir_node *(get_extbb_leader)(ir_extblk *blk) {
234   return _get_extbb_leader(blk);
235 }
236
237 /* Return the node number of an extended block. */
238 long get_extbb_node_nr(ir_extblk *blk) {
239   return get_irn_node_nr(get_extbb_leader(blk));
240 }