updated Header
[libfirm] / ir / opt / return.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
22  * @brief   Normalize returns.
23  * @author  Michael Beck
24  * @version $Id$
25  */
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #include "irgraph_t.h"
31 #include "ircons_t.h"
32 #include "irnode_t.h"
33 #include "irgmod.h"
34 #include "xmalloc.h"
35
36 #define set_bit(n)      (returns[(n) >> 3] |= 1 << ((n) & 7))
37 #define get_bit(n)      (returns[(n) >> 3] & (1 << ((n) & 7)))
38
39 #undef IMAX
40 #define IMAX(a, b)       ((a) > (b) ? (a) : (b))
41
42 /*
43  * Normalize the Returns of a graph by creating a new End block
44  * with One Return(Phi).
45  * This is the preferred input for the if-conversion.
46  *
47  * In pseudocode, it means:
48  *
49  * if (a)
50  *   return b;
51  * else
52  *   return c;
53  *
54  * is transformed into
55  *
56  * if (a)
57  *   res = b;
58  * else
59  *   res = c;
60  * return res;
61  */
62 void normalize_one_return(ir_graph *irg) {
63         ir_node *endbl = get_irg_end_block(irg);
64         int i, j, k, n, last_idx, n_rets, n_ret_vals = -1;
65         unsigned char *returns;
66         ir_node **in, **retvals, **endbl_in;
67
68         ir_node *block;
69
70         /* look, if we have more than one return */
71         n = get_Block_n_cfgpreds(endbl);
72         if (n <= 0) {
73                 /* The end block has no predecessors, we have an endless
74                    loop. In that case, no returns exists. */
75                 return;
76         }
77
78         returns = alloca((n + 7) >> 3);
79         memset(returns, 0, (n + 7) >> 3);
80
81         for (n_rets = i = 0; i < n; ++i) {
82                 ir_node *node = get_Block_cfgpred(endbl, i);
83
84                 if (is_Return(node)) {
85                         ++n_rets;
86
87                         set_bit(i);
88
89                         if (n_ret_vals < 0)
90                                 n_ret_vals = get_irn_arity(node);
91                 }
92         }
93
94         /* there should be at least one Return node in Firm */
95         if (n_rets <= 1)
96                 return;
97
98         in       = alloca(sizeof(*in)       * IMAX(n_rets, n_ret_vals));
99         retvals  = alloca(sizeof(*retvals)  * n_rets * n_ret_vals);
100         endbl_in = alloca(sizeof(*endbl_in) * n);
101
102         last_idx = 0;
103         for (j = i = 0; i < n; ++i) {
104                 ir_node *ret = get_Block_cfgpred(endbl, i);
105
106                 if (get_bit(i)) {
107                         ir_node *block = get_nodes_block(ret);
108
109                         /* create a new Jmp for every Ret and place the in in */
110                         in[j] = new_r_Jmp(irg, block);
111
112                         /* save the return values and shuffle them */
113                         for (k = 0; k < n_ret_vals; ++k)
114                                 retvals[j + k*n_rets] = get_irn_n(ret, k);
115
116                         ++j;
117                 } else
118                         endbl_in[last_idx++] = ret;
119         }
120
121         /* ok, create a new block with all created in's */
122         block = new_r_Block(irg, n_rets, in);
123
124         /* now create the Phi nodes */
125         for (j = i = 0; i < n_ret_vals; ++i, j += n_rets) {
126                 int k;
127                 ir_node *first;
128                 /* the return values are already shuffled */
129
130                 /* Beware: normally the Phi constructor automatically replaces a Phi(a,...a) into a
131                    but NOT, if a is Unknown. Here, we known that this case can be optimize also,
132                    so do it here */
133                 first = retvals[j + 0];
134                 for (k = 1; k < n_rets; ++k) {
135                         if (retvals[j + k] != first) {
136                                 first = NULL;
137                                 break;
138                         }
139                 }
140                 if (first)
141                         in[i] = first;
142                 else
143                         in[i] = new_r_Phi(irg, block, n_rets, &retvals[j], get_irn_mode(retvals[j]));
144         }
145
146         endbl_in[last_idx++] = new_r_Return(irg, block, in[0], n_ret_vals-1, &in[1]);
147
148         set_irn_in(endbl, last_idx, endbl_in);
149
150         /* invalidate analysis information:
151          * a new Block was added, so dominator, outs and loop are inconsistent,
152          * trouts and callee-state should be still valid
153          */
154         set_irg_doms_inconsistent(irg);
155         set_irg_outs_inconsistent(irg);
156         set_irg_extblk_inconsistent(irg);
157         set_irg_loopinfo_state(irg, loopinfo_cf_inconsistent);
158 }
159
160 /**
161  * check, whether a Ret can be moved on block upwards.
162  *
163  * In a block with a Return, all live nodes must be linked
164  * with the Return, otherwise they are dead (because the Return leaves
165  * the graph, so no more users of the other nodes can exists.
166  *
167  * We can move a Return, if it's predecessors are Phi nodes or
168  * comes from another block. In the later case, it is always possible
169  * to move the Return one block up, because the predecessor block must
170  * dominate the Return block (SSA) and then it dominates the predecessor
171  * block of the Return block as well.
172  *
173  * All predecessors of the Return block must be Jmp's of course, or we
174  * cannot move it up, so we check this either.
175  */
176 static int can_move_ret(ir_node *ret) {
177         ir_node *retbl = get_nodes_block(ret);
178         int i, n = get_irn_arity(ret);
179
180         for (i = 0; i < n; ++i) {
181                 ir_node *pred = get_irn_n(ret, i);
182
183                 if (! is_Phi(pred) && retbl == get_nodes_block(pred)) {
184                         /* first condition failed, found a non-Phi predecessor
185                          * then is in the Return block */
186                         return 0;
187                 }
188         }
189
190         /* check, that predecessors are Jmps */
191         n = get_Block_n_cfgpreds(retbl);
192         for (i = 0; i < n; ++i)
193                 if (get_irn_op(get_Block_cfgpred(retbl, i)) != op_Jmp)
194                         return 0;
195
196         /* if we have 0 control flow predecessors, we cannot move :-) */
197         return n > 0;
198 }
199
200 /*
201  * Normalize the Returns of a graph by moving
202  * the Returns upwards as much as possible.
203  * This might be preferred for code generation.
204  *
205  * In pseudocode, it means:
206  *
207  * if (a)
208  *   res = b;
209  * else
210  *   res = c;
211  * return res;
212  *
213  * is transformed into
214  *
215  * if (a)
216  *   return b;
217  * else
218  *   return c;
219  */
220 void normalize_n_returns(ir_graph *irg) {
221         int i, j, n, n_rets, n_finals, n_ret_vals;
222         ir_node *list  = NULL;
223         ir_node *final = NULL;
224         ir_node **in;
225         ir_node *endbl = get_irg_end_block(irg);
226         ir_node *end;
227
228         /*
229          * First, link all returns:
230          * These must be predecessors of the endblock.
231          * Place Returns that can be moved on list, all others
232          * on final.
233          */
234         n = get_Block_n_cfgpreds(endbl);
235         for (n_finals = n_rets = i = 0; i < n; ++i) {
236                 ir_node *ret = get_Block_cfgpred(endbl, i);
237
238                 if (is_Return(ret) && can_move_ret(ret)) {
239                         /*
240                         * Ok, all conditions met, we can move this Return, put it
241                         * on our work list.
242                         */
243                         set_irn_link(ret, list);
244                         list = ret;
245                         ++n_rets;
246                 } else {
247                         /* Put all nodes that are not changed on the final list. */
248                         set_irn_link(ret, final);
249                         final = ret;
250                         ++n_finals;
251                 }
252         }
253
254         if (n_rets <= 0)
255                 return;
256
257         /*
258          * Now move the Returns upwards. We move always one block up (and create n
259          * new Returns), than we check if a newly created Return can be moved even further.
260          * If yes, we simply add it to our work list, else to the final list.
261          */
262         end        = get_irg_end(irg);
263         n_ret_vals = get_irn_arity(list);
264         in         = alloca(sizeof(*in) * n_ret_vals);
265         while (list) {
266                 ir_node *ret   = list;
267                 ir_node *block = get_nodes_block(ret);
268                 ir_node *phiM;
269
270                 list = get_irn_link(ret);
271                 --n_rets;
272
273                 n = get_Block_n_cfgpreds(block);
274                 for (i = 0; i < n; ++i) {
275                         ir_node *jmp = get_Block_cfgpred(block, i);
276                         ir_node *new_bl, *new_ret;
277
278                         if (get_irn_op(jmp) != op_Jmp)
279                                 continue;
280
281                         new_bl = get_nodes_block(jmp);
282
283                         /* create the in-array for the new Ret */
284                         for (j = 0; j < n_ret_vals; ++j) {
285                                 ir_node *pred = get_irn_n(ret, j);
286
287                                 in[j] = (is_Phi(pred) && get_nodes_block(pred) == block) ? get_Phi_pred(pred, i) : pred;
288                         }
289
290                         new_ret = new_r_Return(irg, new_bl, in[0], n_ret_vals - 1, &in[1]);
291
292                         if (! is_Bad(new_ret)) {
293                                 /*
294                                  * The newly created node might be bad, if we
295                                  * create it in a block with only Bad predecessors.
296                                  * In that case ignore this block.
297                                  *
298                                  * We could even kill the jmp then ...
299                                  */
300                                 if (can_move_ret(new_ret)) {
301                                         set_irn_link(new_ret, list);
302                                         list = new_ret;
303                                         ++n_rets;
304                                 }
305                                 else {
306                                         set_irn_link(new_ret, final);
307                                         final = new_ret;
308                                         ++n_finals;
309                                 }
310                         }
311
312                         /* remove the Jmp, we have placed a Return here */
313                         exchange(jmp, new_r_Bad(irg));
314                 }
315
316                 /*
317                  * if the memory of the old Return is a PhiM, remove it
318                  * from the keep-alives, or it will keep the block which
319                  * will crash the dominator algorithm.
320                  */
321                 phiM = get_Return_mem(ret);
322                 if (is_Phi(phiM)) {
323                         n = get_End_n_keepalives(end);
324                         for (i = 0; i < n; ++i) {
325                                 if (get_End_keepalive(end, i) == phiM) {
326                                         set_End_keepalive(end, i, new_r_Bad(irg));
327                                         break;
328                                 }
329                         }
330                 }
331         }
332
333         /*
334          * Last step: Create a new endblock, with all nodes on the final
335          * list as predecessors.
336          */
337         in = alloca(sizeof(*in) * n_finals);
338
339         for (i = 0; final; ++i, final = get_irn_link(final))
340                 in[i] = final;
341
342         exchange(endbl, new_r_Block(irg, n_finals, in));
343
344         /* the end block is not automatically skipped, so do it here */
345         set_irg_end_block(irg, skip_Id(get_irg_end_block(irg)));
346
347         /* Invalidate analysis information:
348          * Blocks become dead and new Returns were deleted, so dominator, outs and loop are inconsistent,
349          * trouts and callee-state should be still valid
350          */
351         set_irg_doms_inconsistent(irg);
352         set_irg_extblk_inconsistent(irg);  /* may not be needed */
353         set_irg_outs_inconsistent(irg);
354         set_irg_loopinfo_state(current_ir_graph, loopinfo_cf_inconsistent);
355 }