add special constant to represent VA_START-address in a parameter_entity
[libfirm] / ir / lower / lower_mux.c
1 /*
2  * Copyright (C) 1995-2011 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   Replaces Mux nodes with control-flow
23  * @author  Olaf Liebe
24  * @version $Id$
25  */
26 #include "config.h"
27
28 #include <assert.h>
29
30 #include "lowering.h"
31 #include "array.h"
32 #include "irnode_t.h"
33 #include "irgraph_t.h"
34 #include "irgwalk.h"
35 #include "irgmod.h"
36 #include "ircons.h"
37 #include "irpass_t.h"
38
39 typedef struct walk_env {
40         lower_mux_callback *cb_func;
41         ir_node            **muxes;
42 } walk_env_t;
43
44 static void find_mux_nodes(ir_node *mux, void *ctx)
45 {
46         walk_env_t *env = (walk_env_t*)ctx;
47
48         /* Skip non-mux nodes. */
49         if (!is_Mux(mux))
50                 return;
51
52         /* Skip nodes, depending on the callback function. */
53         if (env->cb_func != NULL && !env->cb_func(mux)) {
54                 return;
55         }
56
57         /* Store the node. */
58         ARR_APP1(ir_node*, env->muxes, mux);
59 }
60
61 static void lower_mux_node(ir_node* mux)
62 {
63         ir_node  *upper_block;
64         ir_node  *lower_block;
65         ir_node  *cond;
66         ir_node  *trueProj;
67         ir_node  *falseProj;
68         ir_node  *falseBlock;
69         ir_node  *mux_jmps[2];
70         ir_node  *mux_values[2];
71         ir_node  *phi;
72         ir_graph *irg;
73
74         irg = get_irn_irg(mux);
75
76         /* Split the block in two halfs, with the mux in the upper block. */
77         lower_block = get_nodes_block(mux);
78         assert(lower_block != 0);
79         part_block(mux);
80         upper_block = get_nodes_block(mux);
81
82         /* Create a cond node with two projs and a phi as mux replacement. The
83          * true proj jumps directly to the lower block, the false proj uses a
84          * block in-between, so that the phi can be used to select the result
85          * value from the old mux node in the lower block. */
86         cond        = new_r_Cond(upper_block, get_Mux_sel(mux));
87         trueProj    = new_r_Proj(cond, mode_X, pn_Cond_true);
88         falseProj   = new_r_Proj(cond, mode_X, pn_Cond_false);
89         falseBlock  = new_r_Block(irg, 1, &falseProj);
90         mux_jmps[0] = trueProj;
91         mux_jmps[1] = new_r_Jmp(falseBlock);
92
93         /* Kill the jump from upper to lower block and replace the in array. */
94         assert(get_Block_n_cfgpreds(lower_block) == 1);
95         kill_node(get_Block_cfgpred(lower_block, 0));
96         set_irn_in(lower_block, 2, mux_jmps);
97
98         /* Combine the two control flows with a phi to select the correct value
99          * and use it to replace the mux. */
100         mux_values[0] = get_Mux_true(mux);
101         mux_values[1] = get_Mux_false(mux);
102         phi = new_r_Phi(lower_block, 2, mux_values, get_irn_mode(mux));
103         exchange(mux, phi);
104
105         /* Add links and update phi node lists, for the next part_block() call.
106          * lower_block and upper_block have been updated by part_block(). Link
107          * the projs with the cond. */
108         set_irn_link(trueProj,   get_irn_link(cond));
109         set_irn_link(falseProj,  trueProj);
110         set_irn_link(cond,       falseProj);
111
112         add_Block_phi(lower_block, phi);
113 }
114
115 void lower_mux(ir_graph *irg, lower_mux_callback *cb_func)
116 {
117         size_t     i, n_muxes;
118         walk_env_t env;
119
120         /* Scan the graph for mux nodes to lower. */
121         env.cb_func = cb_func;
122         env.muxes   = NEW_ARR_F(ir_node*, 0);
123         irg_walk_graph(irg, find_mux_nodes, 0, &env);
124
125         n_muxes = ARR_LEN(env.muxes);
126         if (n_muxes > 0) {
127                 ir_resources_t resources = IR_RESOURCE_IRN_LINK | IR_RESOURCE_PHI_LIST;
128
129                 /* This is required by part_block() later. */
130                 ir_reserve_resources(irg, resources);
131                 collect_phiprojs(irg);
132
133                 for (i = 0; i < n_muxes; ++i) {
134                         lower_mux_node(env.muxes[i]);
135                 }
136
137                 /* Cleanup, verify the graph. */
138                 ir_free_resources(irg, resources);
139
140                 set_irg_doms_inconsistent(irg);
141                 set_irg_extblk_inconsistent(irg);
142         }
143         DEL_ARR_F(env.muxes);
144 }
145
146 typedef struct pass_t {
147         ir_graph_pass_t    pass;
148         lower_mux_callback *cb_func;
149 } pass_t;
150
151 /**
152  * Wrapper to run ir_lower_mux() as an ir_graph pass
153  */
154 static int pass_wrapper(ir_graph *irg, void *context)
155 {
156         pass_t *pass = (pass_t*)context;
157
158         lower_mux(irg, pass->cb_func);
159         return 0;
160 }
161
162 ir_graph_pass_t *lower_mux_pass(const char *name, lower_mux_callback *cb_func)
163 {
164         pass_t *pass = XMALLOCZ(pass_t);
165
166         pass->cb_func = cb_func;
167         return def_graph_pass_constructor(
168                 &pass->pass, name ? name : "lower_mux", pass_wrapper);
169 }