get_Call_n_params: use int for consistency
[libfirm] / ir / be / bestack.c
1 /*
2  * Copyright (C) 1995-2008 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  * @author      Sebastian Hack, Matthias Braun
23  *
24  * Handling of the stack frame. It is composed of three types:
25  * 1) The type of the arguments which are pushed on the stack.
26  * 2) The "between type" which consists of stuff the call of the
27  *    function pushes on the stack (like the return address and
28  *    the old base pointer for ia32).
29  * 3) The Firm frame type which consists of all local variables
30  *    and the spills.
31  */
32 #include "config.h"
33
34 #include "bestack.h"
35 #include "beirg.h"
36 #include "besched.h"
37 #include "benode.h"
38 #include "bessaconstr.h"
39
40 #include "ircons_t.h"
41 #include "irnode_t.h"
42 #include "irgwalk.h"
43 #include "irgmod.h"
44
45 int be_get_stack_entity_offset(be_stack_layout_t *frame, ir_entity *ent,
46                                int bias)
47 {
48         ir_type *t = get_entity_owner(ent);
49         int ofs    = get_entity_offset(ent);
50
51         int index;
52
53         /* Find the type the entity is contained in. */
54         for (index = 0; index < N_FRAME_TYPES; ++index) {
55                 if (frame->order[index] == t)
56                         break;
57                 /* Add the size of all the types below the one of the entity to the entity's offset */
58                 ofs += get_type_size_bytes(frame->order[index]);
59         }
60
61         /* correct the offset by the initial position of the frame pointer */
62         ofs -= frame->initial_offset;
63
64         /* correct the offset with the current bias. */
65         ofs += bias;
66
67         return ofs;
68 }
69
70 /**
71  * Retrieve the entity with given offset from a frame type.
72  */
73 static ir_entity *search_ent_with_offset(ir_type *t, int offset)
74 {
75         int i, n;
76
77         for (i = 0, n = get_compound_n_members(t); i < n; ++i) {
78                 ir_entity *ent = get_compound_member(t, i);
79                 if (get_entity_offset(ent) == offset)
80                         return ent;
81         }
82
83         return NULL;
84 }
85
86 static int stack_frame_compute_initial_offset(be_stack_layout_t *frame)
87 {
88         ir_type  *base = frame->between_type;
89         ir_entity *ent = search_ent_with_offset(base, 0);
90
91         if (ent == NULL) {
92                 frame->initial_offset = get_type_size_bytes(frame->frame_type);
93         } else {
94                 frame->initial_offset = be_get_stack_entity_offset(frame, ent, 0);
95         }
96
97         return frame->initial_offset;
98 }
99
100 /**
101  * Walker: finally lower all Sels of outer frame or parameter
102  * entities.
103  */
104 static void lower_outer_frame_sels(ir_node *sel, void *ctx)
105 {
106         ir_node           *ptr;
107         ir_entity         *ent;
108         ir_type           *owner;
109         be_stack_layout_t *layout;
110         ir_graph          *irg;
111         (void) ctx;
112
113         if (! is_Sel(sel))
114                 return;
115
116         ent    = get_Sel_entity(sel);
117         owner  = get_entity_owner(ent);
118         ptr    = get_Sel_ptr(sel);
119         irg    = get_irn_irg(sel);
120         layout = be_get_irg_stack_layout(irg);
121
122         if (owner == layout->frame_type || owner == layout->arg_type) {
123                 /* found access to outer frame or arguments */
124                 int offset = be_get_stack_entity_offset(layout, ent, 0);
125
126                 if (offset != 0) {
127                         ir_node  *bl   = get_nodes_block(sel);
128                         dbg_info *dbgi = get_irn_dbg_info(sel);
129                         ir_mode  *mode = get_irn_mode(sel);
130                         ir_mode  *mode_UInt = get_reference_mode_unsigned_eq(mode);
131                         ir_node  *cnst = new_r_Const_long(current_ir_graph, mode_UInt, offset);
132
133                         ptr = new_rd_Add(dbgi, bl, ptr, cnst, mode);
134                 }
135                 exchange(sel, ptr);
136         }
137 }
138
139 /**
140  * A helper struct for the bias walker.
141  */
142 typedef struct bias_walk {
143         int           start_block_bias;  /**< The bias at the end of the start block. */
144         int           between_size;
145         ir_node      *start_block;  /**< The start block of the current graph. */
146 } bias_walk;
147
148 /**
149  * Fix all stack accessing operations in the block bl.
150  *
151  * @param bl         the block to process
152  * @param real_bias  the bias value
153  *
154  * @return the bias at the end of this block
155  */
156 static int process_stack_bias(ir_node *bl, int real_bias)
157 {
158         int                wanted_bias = real_bias;
159         ir_graph          *irg         = get_Block_irg(bl);
160         be_stack_layout_t *layout      = be_get_irg_stack_layout(irg);
161         bool               sp_relative = layout->sp_relative;
162         const arch_env_t  *arch_env    = be_get_irg_arch_env(irg);
163
164         sched_foreach(bl, irn) {
165                 int ofs;
166
167                 /*
168                    Check, if the node relates to an entity on the stack frame.
169                    If so, set the true offset (including the bias) for that
170                    node.
171                  */
172                 ir_entity *ent = arch_get_frame_entity(irn);
173                 if (ent != NULL) {
174                         int bias   = sp_relative ? real_bias : 0;
175                         int offset = be_get_stack_entity_offset(layout, ent, bias);
176                         arch_set_frame_offset(irn, offset);
177                 }
178
179                 /*
180                  * If the node modifies the stack pointer by a constant offset,
181                  * record that in the bias.
182                  */
183                 if (be_is_IncSP(irn)) {
184                         ofs = be_get_IncSP_offset(irn);
185                         /* fill in real stack frame size */
186                         if (be_get_IncSP_align(irn)) {
187                                 /* patch IncSP to produce an aligned stack pointer */
188                                 ir_type *between_type = layout->between_type;
189                                 int      between_size = get_type_size_bytes(between_type);
190                                 int      alignment    = 1 << arch_env->stack_alignment;
191                                 int      delta        = (real_bias + ofs + between_size) & (alignment - 1);
192                                 assert(ofs >= 0);
193                                 if (delta > 0) {
194                                         be_set_IncSP_offset(irn, ofs + alignment - delta);
195                                         real_bias += alignment - delta;
196                                 }
197                         } else {
198                                 /* adjust so real_bias corresponds with wanted_bias */
199                                 int delta = wanted_bias - real_bias;
200                                 assert(delta <= 0);
201                                 if (delta != 0) {
202                                         be_set_IncSP_offset(irn, ofs + delta);
203                                         real_bias += delta;
204                                 }
205                         }
206                         real_bias   += ofs;
207                         wanted_bias += ofs;
208                 } else {
209                         ofs = arch_get_sp_bias(irn);
210                         if (ofs == SP_BIAS_RESET) {
211                                 real_bias   = 0;
212                                 wanted_bias = 0;
213                         } else {
214                                 real_bias   += ofs;
215                                 wanted_bias += ofs;
216                         }
217                 }
218         }
219
220         assert(real_bias == wanted_bias);
221         return real_bias;
222 }
223
224 /**
225  * Block-Walker: fix all stack offsets for all blocks
226  * except the start block
227  */
228 static void stack_bias_walker(ir_node *bl, void *data)
229 {
230         bias_walk *bw = (bias_walk*)data;
231         if (bl != bw->start_block) {
232                 process_stack_bias(bl, bw->start_block_bias);
233         }
234 }
235
236 void be_abi_fix_stack_bias(ir_graph *irg)
237 {
238         be_stack_layout_t *stack_layout = be_get_irg_stack_layout(irg);
239         ir_type           *frame_tp;
240         int                i;
241         bias_walk          bw;
242
243         stack_frame_compute_initial_offset(stack_layout);
244
245         /* Determine the stack bias at the end of the start block. */
246         bw.start_block_bias = process_stack_bias(get_irg_start_block(irg),
247                                                  stack_layout->initial_bias);
248         bw.between_size     = get_type_size_bytes(stack_layout->between_type);
249
250         /* fix the bias is all other blocks */
251         bw.start_block = get_irg_start_block(irg);
252         irg_block_walk_graph(irg, stack_bias_walker, NULL, &bw);
253
254         /* fix now inner functions: these still have Sel node to outer
255            frame and parameter entities */
256         frame_tp = get_irg_frame_type(irg);
257         for (i = get_class_n_members(frame_tp) - 1; i >= 0; --i) {
258                 ir_entity *ent = get_class_member(frame_tp, i);
259                 ir_graph  *irg = get_entity_irg(ent);
260
261                 if (irg != NULL) {
262                         irg_walk_graph(irg, NULL, lower_outer_frame_sels, NULL);
263                 }
264         }
265 }
266
267 typedef struct fix_stack_walker_env_t {
268         ir_node **sp_nodes;
269 } fix_stack_walker_env_t;
270
271 /**
272  * Walker. Collect all stack modifying nodes.
273  */
274 static void collect_stack_nodes_walker(ir_node *node, void *data)
275 {
276         ir_node                   *insn = node;
277         fix_stack_walker_env_t    *env  = (fix_stack_walker_env_t*)data;
278         const arch_register_req_t *req;
279
280         if (is_Proj(node)) {
281                 insn = get_Proj_pred(node);
282         }
283
284         if (arch_get_irn_n_outs(insn) == 0)
285                 return;
286         if (get_irn_mode(node) == mode_T)
287                 return;
288
289         req = arch_get_irn_register_req(node);
290         if (! (req->type & arch_register_req_type_produces_sp))
291                 return;
292
293         ARR_APP1(ir_node*, env->sp_nodes, node);
294 }
295
296 void be_abi_fix_stack_nodes(ir_graph *irg)
297 {
298         be_lv_t                   *lv       = be_get_irg_liveness(irg);
299         const arch_env_t          *arch_env = be_get_irg_arch_env(irg);
300         be_irg_t                  *birg     = be_birg_from_irg(irg);
301         const arch_register_req_t *sp_req   = birg->sp_req;
302         const arch_register_t     *sp       = arch_env->sp;
303         be_ssa_construction_env_t  senv;
304         int i, len;
305         ir_node **phis;
306         fix_stack_walker_env_t walker_env;
307
308         if (sp_req == NULL) {
309                 struct obstack      *obst = be_get_be_obst(irg);
310                 arch_register_req_t *new_sp_req;
311                 unsigned            *limited_bitset;
312
313                 new_sp_req        = OALLOCZ(obst, arch_register_req_t);
314                 new_sp_req->type  = arch_register_req_type_limited
315                                   | arch_register_req_type_produces_sp;
316                 new_sp_req->cls   = arch_register_get_class(arch_env->sp);
317                 new_sp_req->width = 1;
318
319                 limited_bitset = rbitset_obstack_alloc(obst, new_sp_req->cls->n_regs);
320                 rbitset_set(limited_bitset, arch_register_get_index(sp));
321                 new_sp_req->limited = limited_bitset;
322
323                 if (!rbitset_is_set(birg->allocatable_regs, sp->global_index)) {
324                         new_sp_req->type |= arch_register_req_type_ignore;
325                 }
326
327                 sp_req = new_sp_req;
328                 birg->sp_req = new_sp_req;
329         }
330
331         walker_env.sp_nodes = NEW_ARR_F(ir_node*, 0);
332
333         irg_walk_graph(irg, collect_stack_nodes_walker, NULL, &walker_env);
334
335         /* nothing to be done if we didn't find any node, in fact we mustn't
336          * continue, as for endless loops incsp might have had no users and is bad
337          * now.
338          */
339         len = ARR_LEN(walker_env.sp_nodes);
340         if (len == 0) {
341                 DEL_ARR_F(walker_env.sp_nodes);
342                 return;
343         }
344
345         be_ssa_construction_init(&senv, irg);
346         be_ssa_construction_add_copies(&senv, walker_env.sp_nodes,
347                                    ARR_LEN(walker_env.sp_nodes));
348         be_ssa_construction_fix_users_array(&senv, walker_env.sp_nodes,
349                                             ARR_LEN(walker_env.sp_nodes));
350
351         if (lv != NULL) {
352                 len = ARR_LEN(walker_env.sp_nodes);
353                 for (i = 0; i < len; ++i) {
354                         be_liveness_update(lv, walker_env.sp_nodes[i]);
355                 }
356                 be_ssa_construction_update_liveness_phis(&senv, lv);
357         }
358
359         phis = be_ssa_construction_get_new_phis(&senv);
360
361         /* set register requirements for stack phis */
362         len = ARR_LEN(phis);
363         for (i = 0; i < len; ++i) {
364                 ir_node *phi = phis[i];
365                 be_set_phi_reg_req(phi, sp_req);
366                 arch_set_irn_register(phi, arch_env->sp);
367         }
368         be_ssa_construction_destroy(&senv);
369         DEL_ARR_F(walker_env.sp_nodes);
370
371         /* when doing code with frame-pointers then often the last incsp-nodes are
372          * not used anymore because we copy the framepointer to the stack pointer
373          * when leaving the function. Though the last incsp is often kept (because
374          * you often don't know which incsp is the last one and fixstack should find
375          * them all). Remove unnecessary keeps and IncSP nodes */
376         {
377                 ir_node  *end    = get_irg_end(irg);
378                 int       arity  = get_irn_arity(end);
379                 int       i;
380                 for (i = arity-1; i >= 0; --i) {
381                         ir_node *in = get_irn_n(end, i);
382                         if (!be_is_IncSP(in)) {
383                                 continue;
384                         }
385
386                         remove_End_keepalive(end, in);
387                         if (get_irn_n_edges(in) == 0) {
388                                 sched_remove(in);
389                                 kill_node(in);
390                         }
391                 }
392         }
393 }