- various updates to sparc backend
[libfirm] / ir / be / beabi.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  * @brief       Backend ABI implementation.
23  * @author      Sebastian Hack, Michael Beck
24  * @version     $Id$
25  */
26 #include "config.h"
27
28 #include "obst.h"
29 #include "offset.h"
30
31 #include "irgopt.h"
32
33 #include "irgraph_t.h"
34 #include "irnode_t.h"
35 #include "ircons_t.h"
36 #include "iredges_t.h"
37 #include "irgmod.h"
38 #include "irgwalk.h"
39 #include "irprintf_t.h"
40 #include "irgopt.h"
41 #include "irbitset.h"
42 #include "iropt_t.h"
43 #include "height.h"
44 #include "pdeq.h"
45 #include "irtools.h"
46 #include "raw_bitset.h"
47 #include "error.h"
48 #include "pset_new.h"
49
50 #include "be.h"
51 #include "beabi.h"
52 #include "bearch.h"
53 #include "benode.h"
54 #include "belive_t.h"
55 #include "besched.h"
56 #include "beirg.h"
57 #include "bessaconstr.h"
58 #include "bemodule.h"
59
60 DEBUG_ONLY(static firm_dbg_module_t *dbg;)
61
62 typedef struct _be_abi_call_arg_t {
63         unsigned is_res   : 1;  /**< 1: the call argument is a return value. 0: it's a call parameter. */
64         unsigned in_reg   : 1;  /**< 1: this argument is transmitted in registers. */
65         unsigned on_stack : 1;  /**< 1: this argument is transmitted on the stack. */
66         unsigned callee   : 1;  /**< 1: someone called us. 0: We call another function */
67
68         int                    pos;
69         const arch_register_t *reg;
70         ir_entity             *stack_ent;
71         ir_mode               *load_mode;
72         unsigned               alignment;    /**< stack alignment */
73         unsigned               space_before; /**< allocate space before */
74         unsigned               space_after;  /**< allocate space after */
75 } be_abi_call_arg_t;
76
77 struct _be_abi_call_t {
78         be_abi_call_flags_t          flags;  /**< Flags describing the ABI behavior on calls */
79         int                          pop;    /**< number of bytes the stack frame is shrinked by the callee on return. */
80         const be_abi_callbacks_t    *cb;
81         ir_type                     *between_type;
82         set                         *params;
83         const arch_register_class_t *cls_addr; /**< register class of the call address */
84 };
85
86 /**
87  * The ABI information for the current birg.
88  */
89 struct _be_abi_irg_t {
90         be_irg_t             *birg;         /**< The back end IRG. */
91         ir_graph             *irg;
92         const arch_env_t     *arch_env;
93         survive_dce_t        *dce_survivor;
94
95         be_abi_call_t        *call;         /**< The ABI call information. */
96         ir_type              *method_type;  /**< The type of the method of the IRG. */
97
98         ir_node              *init_sp;      /**< The node representing the stack pointer
99                                                  at the start of the function. */
100
101         ir_node              *start;        /**< The be_Start params node. */
102         pmap                 *regs;         /**< A map of all callee-save and ignore regs to
103                                                  their Projs to the RegParams node. */
104
105         int                  start_block_bias; /**< The stack bias at the end of the start block. */
106
107         void                 *cb;           /**< ABI Callback self pointer. */
108
109         pmap                 *keep_map;     /**< mapping blocks to keep nodes. */
110         pset                 *ignore_regs;  /**< Additional registers which shall be ignored. */
111
112         ir_node              **calls;       /**< flexible array containing all be_Call nodes */
113
114         arch_register_req_t  *sp_req;
115
116         be_stack_layout_t    frame;         /**< The stack frame model. */
117 };
118
119 static heights_t *ir_heights;
120
121 /** Flag: if set, try to omit the frame pointer in all routines. */
122 static int be_omit_fp = 1;
123
124 /** Flag: if set, try to omit the frame pointer in leaf routines only. */
125 static int be_omit_leaf_fp = 1;
126
127 /*
128      _    ____ ___    ____      _ _ _                _
129     / \  | __ )_ _|  / ___|__ _| | | |__   __ _  ___| | _____
130    / _ \ |  _ \| |  | |   / _` | | | '_ \ / _` |/ __| |/ / __|
131   / ___ \| |_) | |  | |__| (_| | | | |_) | (_| | (__|   <\__ \
132  /_/   \_\____/___|  \____\__,_|_|_|_.__/ \__,_|\___|_|\_\___/
133
134   These callbacks are used by the backend to set the parameters
135   for a specific call type.
136 */
137
138 /**
139  * Set compare function: compares two ABI call object arguments.
140  */
141 static int cmp_call_arg(const void *a, const void *b, size_t n)
142 {
143         const be_abi_call_arg_t *p = a, *q = b;
144         (void) n;
145         return !(p->is_res == q->is_res && p->pos == q->pos && p->callee == q->callee);
146 }
147
148 /**
149  * Get  an ABI call object argument.
150  *
151  * @param call      the abi call
152  * @param is_res    true for call results, false for call arguments
153  * @param pos       position of the argument
154  * @param callee        context type - if we are callee or caller
155  */
156 static be_abi_call_arg_t *get_call_arg(be_abi_call_t *call, int is_res, int pos, int callee)
157 {
158         be_abi_call_arg_t arg;
159         unsigned hash;
160
161         memset(&arg, 0, sizeof(arg));
162         arg.is_res = is_res;
163         arg.pos    = pos;
164         arg.callee = callee;
165
166         hash = is_res * 128 + pos;
167
168         return set_find(call->params, &arg, sizeof(arg), hash);
169 }
170
171 /**
172  * Set an ABI call object argument.
173  */
174 static void remember_call_arg(be_abi_call_arg_t *arg, be_abi_call_t *call, be_abi_context_t context)
175 {
176         unsigned hash = arg->is_res * 128 + arg->pos;
177         if (context & ABI_CONTEXT_CALLEE) {
178                 arg->callee = 1;
179                 set_insert(call->params, arg, sizeof(*arg), hash);
180         }
181         if (context & ABI_CONTEXT_CALLER) {
182                 arg->callee = 0;
183                 set_insert(call->params, arg, sizeof(*arg), hash);
184         }
185 }
186
187 /* Set the flags for a call. */
188 void be_abi_call_set_flags(be_abi_call_t *call, be_abi_call_flags_t flags, const be_abi_callbacks_t *cb)
189 {
190         call->flags = flags;
191         call->cb    = cb;
192 }
193
194 /* Sets the number of bytes the stackframe is shrinked by the callee on return */
195 void be_abi_call_set_pop(be_abi_call_t *call, int pop)
196 {
197         assert(pop >= 0);
198         call->pop = pop;
199 }
200
201 /* Set register class for call address */
202 void be_abi_call_set_call_address_reg_class(be_abi_call_t *call, const arch_register_class_t *cls)
203 {
204         call->cls_addr = cls;
205 }
206
207
208 void be_abi_call_param_stack(be_abi_call_t *call, int arg_pos,
209                              ir_mode *load_mode, unsigned alignment,
210                              unsigned space_before, unsigned space_after,
211                              be_abi_context_t context)
212 {
213         be_abi_call_arg_t arg;
214         memset(&arg, 0, sizeof(arg));
215         assert(alignment > 0 && "Alignment must be greater than 0");
216         arg.on_stack     = 1;
217         arg.load_mode    = load_mode;
218         arg.alignment    = alignment;
219         arg.space_before = space_before;
220         arg.space_after  = space_after;
221         arg.is_res       = 0;
222         arg.pos          = arg_pos;
223
224         remember_call_arg(&arg, call, context);
225 }
226
227 void be_abi_call_param_reg(be_abi_call_t *call, int arg_pos, const arch_register_t *reg, be_abi_context_t context)
228 {
229         be_abi_call_arg_t arg;
230         memset(&arg, 0, sizeof(arg));
231
232         arg.in_reg = 1;
233         arg.reg    = reg;
234         arg.is_res = 0;
235         arg.pos    = arg_pos;
236
237         remember_call_arg(&arg, call, context);
238 }
239
240 void be_abi_call_res_reg(be_abi_call_t *call, int arg_pos, const arch_register_t *reg, be_abi_context_t context)
241 {
242         be_abi_call_arg_t arg;
243         memset(&arg, 0, sizeof(arg));
244
245         arg.in_reg = 1;
246         arg.reg    = reg;
247         arg.is_res = 1;
248         arg.pos    = arg_pos;
249
250         remember_call_arg(&arg, call, context);
251 }
252
253 /* Get the flags of a ABI call object. */
254 be_abi_call_flags_t be_abi_call_get_flags(const be_abi_call_t *call)
255 {
256         return call->flags;
257 }
258
259 /**
260  * Constructor for a new ABI call object.
261  *
262  * @param cls_addr  register class of the call address
263  *
264  * @return the new ABI call object
265  */
266 static be_abi_call_t *be_abi_call_new(const arch_register_class_t *cls_addr)
267 {
268         be_abi_call_t *call = XMALLOCZ(be_abi_call_t);
269
270         call->flags.val  = 0;
271         call->params     = new_set(cmp_call_arg, 16);
272         call->cb         = NULL;
273         call->cls_addr   = cls_addr;
274
275         call->flags.bits.try_omit_fp = be_omit_fp | be_omit_leaf_fp;
276
277         return call;
278 }
279
280 /**
281  * Destructor for an ABI call object.
282  */
283 static void be_abi_call_free(be_abi_call_t *call)
284 {
285         del_set(call->params);
286         free(call);
287 }
288
289 /*
290   _____                           _   _                 _ _ _
291  |  ___| __ __ _ _ __ ___   ___  | | | | __ _ _ __   __| | (_)_ __   __ _
292  | |_ | '__/ _` | '_ ` _ \ / _ \ | |_| |/ _` | '_ \ / _` | | | '_ \ / _` |
293  |  _|| | | (_| | | | | | |  __/ |  _  | (_| | | | | (_| | | | | | | (_| |
294  |_|  |_|  \__,_|_| |_| |_|\___| |_| |_|\__,_|_| |_|\__,_|_|_|_| |_|\__, |
295                                                                     |___/
296
297   Handling of the stack frame. It is composed of three types:
298   1) The type of the arguments which are pushed on the stack.
299   2) The "between type" which consists of stuff the call of the
300      function pushes on the stack (like the return address and
301          the old base pointer for ia32).
302   3) The Firm frame type which consists of all local variables
303      and the spills.
304 */
305
306 static int get_stack_entity_offset(be_stack_layout_t *frame, ir_entity *ent,
307                                    int bias)
308 {
309         ir_type *t = get_entity_owner(ent);
310         int ofs    = get_entity_offset(ent);
311
312         int index;
313
314         /* Find the type the entity is contained in. */
315         for (index = 0; index < N_FRAME_TYPES; ++index) {
316                 if (frame->order[index] == t)
317                         break;
318                 /* Add the size of all the types below the one of the entity to the entity's offset */
319                 ofs += get_type_size_bytes(frame->order[index]);
320         }
321
322         /* correct the offset by the initial position of the frame pointer */
323         ofs -= frame->initial_offset;
324
325         /* correct the offset with the current bias. */
326         ofs += bias;
327
328         return ofs;
329 }
330
331 /**
332  * Retrieve the entity with given offset from a frame type.
333  */
334 static ir_entity *search_ent_with_offset(ir_type *t, int offset)
335 {
336         int i, n;
337
338         for (i = 0, n = get_compound_n_members(t); i < n; ++i) {
339                 ir_entity *ent = get_compound_member(t, i);
340                 if (get_entity_offset(ent) == offset)
341                         return ent;
342         }
343
344         return NULL;
345 }
346
347 static int stack_frame_compute_initial_offset(be_stack_layout_t *frame)
348 {
349         ir_type  *base = frame->stack_dir < 0 ? frame->between_type : frame->frame_type;
350         ir_entity *ent = search_ent_with_offset(base, 0);
351
352         if (ent == NULL) {
353                 frame->initial_offset
354                         = frame->stack_dir < 0 ? get_type_size_bytes(frame->frame_type) : get_type_size_bytes(frame->between_type);
355         } else {
356                 frame->initial_offset = get_stack_entity_offset(frame, ent, 0);
357         }
358
359         return frame->initial_offset;
360 }
361
362 /**
363  * Initializes the frame layout from parts
364  *
365  * @param frame     the stack layout that will be initialized
366  * @param args      the stack argument layout type
367  * @param between   the between layout type
368  * @param locals    the method frame type
369  * @param stack_dir the stack direction: < 0 decreasing, > 0 increasing addresses
370  * @param param_map an array mapping method argument positions to the stack argument type
371  *
372  * @return the initialized stack layout
373  */
374 static be_stack_layout_t *stack_frame_init(be_stack_layout_t *frame, ir_type *args,
375                                            ir_type *between, ir_type *locals, int stack_dir,
376                                            ir_entity *param_map[])
377 {
378         frame->arg_type       = args;
379         frame->between_type   = between;
380         frame->frame_type     = locals;
381         frame->initial_offset = 0;
382         frame->initial_bias   = 0;
383         frame->stack_dir      = stack_dir;
384         frame->order[1]       = between;
385         frame->param_map      = param_map;
386
387         if (stack_dir > 0) {
388                 frame->order[0] = args;
389                 frame->order[2] = locals;
390         }
391         else {
392                 /* typical decreasing stack: locals have the
393                  * lowest addresses, arguments the highest */
394                 frame->order[0] = locals;
395                 frame->order[2] = args;
396         }
397         return frame;
398 }
399
400 /*
401    ____      _ _
402   / ___|__ _| | |___
403  | |   / _` | | / __|
404  | |__| (_| | | \__ \
405   \____\__,_|_|_|___/
406
407   Adjustment of the calls inside a graph.
408
409 */
410
411 /**
412  * Transform a call node into a be_Call node.
413  *
414  * @param env The ABI environment for the current irg.
415  * @param irn The call node.
416  * @param curr_sp The stack pointer node to use.
417  * @return The stack pointer after the call.
418  */
419 static ir_node *adjust_call(be_abi_irg_t *env, ir_node *irn, ir_node *curr_sp)
420 {
421         ir_graph *irg              = env->birg->irg;
422         const arch_env_t *arch_env = env->birg->main_env->arch_env;
423         ir_type *call_tp           = get_Call_type(irn);
424         ir_node *call_ptr          = get_Call_ptr(irn);
425         int n_params               = get_method_n_params(call_tp);
426         ir_node *curr_mem          = get_Call_mem(irn);
427         ir_node *bl                = get_nodes_block(irn);
428         int stack_size             = 0;
429         int stack_dir              = arch_env->stack_dir;
430         const arch_register_t *sp  = arch_env->sp;
431         be_abi_call_t *call        = be_abi_call_new(sp->reg_class);
432         ir_mode *mach_mode         = sp->reg_class->mode;
433         struct obstack *obst       = be_get_birg_obst(irg);
434         int no_alloc               = call->flags.bits.frame_is_setup_on_call;
435         int n_res                  = get_method_n_ress(call_tp);
436         int do_seq                 = call->flags.bits.store_args_sequential && !no_alloc;
437
438         ir_node *res_proj  = NULL;
439         int n_reg_params   = 0;
440         int n_stack_params = 0;
441         int n_ins;
442
443         pset_new_t              destroyed_regs, states;
444         pset_new_iterator_t     iter;
445         ir_node                *low_call;
446         ir_node               **in;
447         ir_node               **res_projs;
448         int                     n_reg_results = 0;
449         const arch_register_t  *reg;
450         const ir_edge_t        *edge;
451         int                    *reg_param_idxs;
452         int                    *stack_param_idx;
453         int                     i, n, destroy_all_regs;
454         dbg_info               *dbgi;
455
456         pset_new_init(&destroyed_regs);
457         pset_new_init(&states);
458
459         /* Let the isa fill out the abi description for that call node. */
460         arch_env_get_call_abi(arch_env, call_tp, call);
461
462         /* Insert code to put the stack arguments on the stack. */
463         assert(get_Call_n_params(irn) == n_params);
464         assert(obstack_object_size(obst) == 0);
465         stack_param_idx = ALLOCAN(int, n_params);
466         for (i = 0; i < n_params; ++i) {
467                 be_abi_call_arg_t *arg = get_call_arg(call, 0, i, 0);
468                 assert(arg);
469                 if (arg->on_stack) {
470                         int arg_size = get_type_size_bytes(get_method_param_type(call_tp, i));
471
472                         stack_size += round_up2(arg->space_before, arg->alignment);
473                         stack_size += round_up2(arg_size, arg->alignment);
474                         stack_size += round_up2(arg->space_after, arg->alignment);
475
476                         stack_param_idx[n_stack_params++] = i;
477                 }
478         }
479
480         /* Collect all arguments which are passed in registers. */
481         reg_param_idxs = ALLOCAN(int, n_params);
482         for (i = 0; i < n_params; ++i) {
483                 be_abi_call_arg_t *arg = get_call_arg(call, 0, i, 0);
484                 if (arg && arg->in_reg) {
485                         reg_param_idxs[n_reg_params++] = i;
486                 }
487         }
488
489         /*
490          * If the stack is decreasing and we do not want to store sequentially,
491          * or someone else allocated the call frame
492          * we allocate as much space on the stack all parameters need, by
493          * moving the stack pointer along the stack's direction.
494          *
495          * Note: we also have to do this for stack_size == 0, because we may have
496          * to adjust stack alignment for the call.
497          */
498         if (stack_dir < 0 && !do_seq && !no_alloc) {
499                 curr_sp = be_new_IncSP(sp, bl, curr_sp, stack_size, 1);
500         }
501
502         dbgi = get_irn_dbg_info(irn);
503         /* If there are some parameters which shall be passed on the stack. */
504         if (n_stack_params > 0) {
505                 int       curr_ofs = 0;
506                 ir_node **in       = ALLOCAN(ir_node*, n_stack_params+1);
507                 unsigned  n_in     = 0;
508
509                 /*
510                  * Reverse list of stack parameters if call arguments are from left to right.
511                  * We must them reverse again if they are pushed (not stored) and the stack
512                  * direction is downwards.
513                  */
514                 if (call->flags.bits.left_to_right ^ (do_seq && stack_dir < 0)) {
515                         for (i = 0; i < n_stack_params >> 1; ++i) {
516                                 int other  = n_stack_params - i - 1;
517                                 int tmp    = stack_param_idx[i];
518                                 stack_param_idx[i]     = stack_param_idx[other];
519                                 stack_param_idx[other] = tmp;
520                         }
521                 }
522
523                 curr_mem = get_Call_mem(irn);
524                 if (! do_seq) {
525                         in[n_in++] = curr_mem;
526                 }
527
528                 for (i = 0; i < n_stack_params; ++i) {
529                         int p                  = stack_param_idx[i];
530                         be_abi_call_arg_t *arg = get_call_arg(call, 0, p, 0);
531                         ir_node *param         = get_Call_param(irn, p);
532                         ir_node *addr          = curr_sp;
533                         ir_node *mem           = NULL;
534                         ir_type *param_type    = get_method_param_type(call_tp, p);
535                         int param_size         = get_type_size_bytes(param_type) + arg->space_after;
536
537                         /*
538                          * If we wanted to build the arguments sequentially,
539                          * the stack pointer for the next must be incremented,
540                          * and the memory value propagated.
541                          */
542                         if (do_seq) {
543                                 curr_ofs = 0;
544                                 addr = curr_sp = be_new_IncSP(sp, bl, curr_sp,
545                                                               param_size + arg->space_before, 0);
546                                 add_irn_dep(curr_sp, curr_mem);
547                         } else {
548                                 curr_ofs += arg->space_before;
549                                 curr_ofs =  round_up2(curr_ofs, arg->alignment);
550
551                                 /* Make the expression to compute the argument's offset. */
552                                 if (curr_ofs > 0) {
553                                         ir_mode *constmode = mach_mode;
554                                         if (mode_is_reference(mach_mode)) {
555                                                 constmode = mode_Is;
556                                         }
557                                         addr = new_r_Const_long(irg, constmode, curr_ofs);
558                                         addr = new_r_Add(bl, curr_sp, addr, mach_mode);
559                                 }
560                         }
561
562                         /* Insert a store for primitive arguments. */
563                         if (is_atomic_type(param_type)) {
564                                 ir_node *store;
565                                 ir_node *mem_input = do_seq ? curr_mem : new_NoMem();
566                                 store = new_rd_Store(dbgi, bl, mem_input, addr, param, 0);
567                                 mem   = new_r_Proj(store, mode_M, pn_Store_M);
568                         } else {
569                                 /* Make a mem copy for compound arguments. */
570                                 ir_node *copy;
571
572                                 assert(mode_is_reference(get_irn_mode(param)));
573                                 copy = new_rd_CopyB(dbgi, bl, curr_mem, addr, param, param_type);
574                                 mem = new_r_Proj(copy, mode_M, pn_CopyB_M_regular);
575                         }
576
577                         curr_ofs += param_size;
578
579                         if (do_seq)
580                                 curr_mem = mem;
581                         else
582                                 in[n_in++] = mem;
583                 }
584
585                 /* We need the sync only, if we didn't build the stores sequentially. */
586                 if (! do_seq) {
587                         if (n_stack_params >= 1) {
588                                 curr_mem = new_r_Sync(bl, n_in, in);
589                         } else {
590                                 curr_mem = get_Call_mem(irn);
591                         }
592                 }
593         }
594
595         /* check for the return_twice property */
596         destroy_all_regs = 0;
597         if (is_SymConst_addr_ent(call_ptr)) {
598                 ir_entity *ent = get_SymConst_entity(call_ptr);
599
600                 if (get_entity_additional_properties(ent) & mtp_property_returns_twice)
601                         destroy_all_regs = 1;
602         } else {
603                 ir_type *call_tp = get_Call_type(irn);
604
605                 if (get_method_additional_properties(call_tp) & mtp_property_returns_twice)
606                         destroy_all_regs = 1;
607         }
608
609         /* Put caller save into the destroyed set and state registers in the states set */
610         for (i = 0, n = arch_env_get_n_reg_class(arch_env); i < n; ++i) {
611                 unsigned j;
612                 const arch_register_class_t *cls = arch_env_get_reg_class(arch_env, i);
613                 for (j = 0; j < cls->n_regs; ++j) {
614                         const arch_register_t *reg = arch_register_for_index(cls, j);
615
616                         if (destroy_all_regs || arch_register_type_is(reg, caller_save)) {
617                                 if (! arch_register_type_is(reg, ignore))
618                                         pset_new_insert(&destroyed_regs, (void *) reg);
619                         }
620                         if (arch_register_type_is(reg, state)) {
621                                 pset_new_insert(&destroyed_regs, (void*) reg);
622                                 pset_new_insert(&states, (void*) reg);
623                         }
624                 }
625         }
626
627         if (destroy_all_regs) {
628                 /* even if destroyed all is specified, neither SP nor FP are destroyed (else bad things will happen) */
629                 pset_new_remove(&destroyed_regs, arch_env->sp);
630                 pset_new_remove(&destroyed_regs, arch_env->bp);
631         }
632
633         /* search the largest result proj number */
634         res_projs = ALLOCANZ(ir_node*, n_res);
635
636         foreach_out_edge(irn, edge) {
637                 const ir_edge_t *res_edge;
638                 ir_node         *irn = get_edge_src_irn(edge);
639
640                 if (!is_Proj(irn) || get_Proj_proj(irn) != pn_Call_T_result)
641                         continue;
642
643                 foreach_out_edge(irn, res_edge) {
644                         int proj;
645                         ir_node *res = get_edge_src_irn(res_edge);
646
647                         assert(is_Proj(res));
648
649                         proj = get_Proj_proj(res);
650                         assert(proj < n_res);
651                         assert(res_projs[proj] == NULL);
652                         res_projs[proj] = res;
653                 }
654                 res_proj = irn;
655                 break;
656         }
657
658         /** TODO: this is not correct for cases where return values are passed
659          * on the stack, but no known ABI does this currently...
660          */
661         n_reg_results = n_res;
662
663         assert(obstack_object_size(obst) == 0);
664         n_ins = 0;
665         in    = ALLOCAN(ir_node*, n_reg_params + pset_new_size(&states));
666
667         /* make the back end call node and set its register requirements. */
668         for (i = 0; i < n_reg_params; ++i) {
669                 in[n_ins++] = get_Call_param(irn, reg_param_idxs[i]);
670         }
671
672         /* add state registers ins */
673         foreach_pset_new(&states, reg, iter) {
674                 const arch_register_class_t *cls = arch_register_get_class(reg);
675 #if 0
676                 ir_node *regnode = be_abi_reg_map_get(env->regs, reg);
677                 ir_fprintf(stderr, "Adding %+F\n", regnode);
678 #endif
679                 ir_node *regnode = new_r_Unknown(irg, arch_register_class_mode(cls));
680                 in[n_ins++]      = regnode;
681         }
682         assert(n_ins == (int) (n_reg_params + pset_new_size(&states)));
683
684         /* ins collected, build the call */
685         if (env->call->flags.bits.call_has_imm && is_SymConst(call_ptr)) {
686                 /* direct call */
687                 low_call = be_new_Call(dbgi, irg, bl, curr_mem, curr_sp, curr_sp,
688                                        n_reg_results + pn_be_Call_first_res + pset_new_size(&destroyed_regs),
689                                        n_ins, in, get_Call_type(irn));
690                 be_Call_set_entity(low_call, get_SymConst_entity(call_ptr));
691         } else {
692                 /* indirect call */
693                 low_call = be_new_Call(dbgi, irg, bl, curr_mem, curr_sp, call_ptr,
694                                        n_reg_results + pn_be_Call_first_res + pset_new_size(&destroyed_regs),
695                                        n_ins, in, get_Call_type(irn));
696         }
697         be_Call_set_pop(low_call, call->pop);
698
699         /* put the call into the list of all calls for later processing */
700         ARR_APP1(ir_node *, env->calls, low_call);
701
702         /* create new stack pointer */
703         curr_sp = new_r_Proj(low_call, get_irn_mode(curr_sp), pn_be_Call_sp);
704         be_set_constr_single_reg_out(low_call, pn_be_Call_sp, sp,
705                         arch_register_req_type_ignore | arch_register_req_type_produces_sp);
706         arch_set_irn_register(curr_sp, sp);
707
708         /* now handle results */
709         for (i = 0; i < n_res; ++i) {
710                 int pn;
711                 ir_node           *proj = res_projs[i];
712                 be_abi_call_arg_t *arg  = get_call_arg(call, 1, i, 0);
713
714                 /* returns values on stack not supported yet */
715                 assert(arg->in_reg);
716
717                 /*
718                         shift the proj number to the right, since we will drop the
719                         unspeakable Proj_T from the Call. Therefore, all real argument
720                         Proj numbers must be increased by pn_be_Call_first_res
721                 */
722                 pn = i + pn_be_Call_first_res;
723
724                 if (proj == NULL) {
725                         ir_type *res_type = get_method_res_type(call_tp, i);
726                         ir_mode *mode     = get_type_mode(res_type);
727                         proj              = new_r_Proj(low_call, mode, pn);
728                         res_projs[i]      = proj;
729                 } else {
730                         set_Proj_pred(proj, low_call);
731                         set_Proj_proj(proj, pn);
732                 }
733
734                 if (arg->in_reg) {
735                         pset_new_remove(&destroyed_regs, arg->reg);
736                 }
737         }
738
739         /*
740                 Set the register class of the call address to
741                 the backend provided class (default: stack pointer class)
742         */
743         be_node_set_reg_class_in(low_call, be_pos_Call_ptr, call->cls_addr);
744
745         DBG((dbg, LEVEL_3, "\tcreated backend call %+F\n", low_call));
746
747         /* Set the register classes and constraints of the Call parameters. */
748         for (i = 0; i < n_reg_params; ++i) {
749                 int index = reg_param_idxs[i];
750                 be_abi_call_arg_t *arg = get_call_arg(call, 0, index, 0);
751                 assert(arg->reg != NULL);
752
753                 be_set_constr_single_reg_in(low_call, be_pos_Call_first_arg + i,
754                                             arg->reg, 0);
755         }
756
757         /* Set the register constraints of the results. */
758         for (i = 0; i < n_res; ++i) {
759                 ir_node                 *proj = res_projs[i];
760                 const be_abi_call_arg_t *arg  = get_call_arg(call, 1, i, 0);
761                 int                      pn   = get_Proj_proj(proj);
762
763                 assert(arg->in_reg);
764                 be_set_constr_single_reg_out(low_call, pn, arg->reg, 0);
765                 arch_set_irn_register(proj, arg->reg);
766         }
767         exchange(irn, low_call);
768
769         /* kill the ProjT node */
770         if (res_proj != NULL) {
771                 kill_node(res_proj);
772         }
773
774         /* Make additional projs for the caller save registers
775            and the Keep node which keeps them alive. */
776         {
777                 const arch_register_t *reg;
778                 ir_node               **in, *keep;
779                 int                   i;
780                 int                   n = 0;
781                 int                   curr_res_proj = pn_be_Call_first_res + n_reg_results;
782                 pset_new_iterator_t   iter;
783                 int                   n_ins;
784
785                 n_ins = (int)pset_new_size(&destroyed_regs) + n_reg_results + 1;
786                 in    = ALLOCAN(ir_node *, n_ins);
787
788                 /* also keep the stack pointer */
789                 set_irn_link(curr_sp, (void*) sp);
790                 in[n++] = curr_sp;
791
792                 foreach_pset_new(&destroyed_regs, reg, iter) {
793                         ir_node *proj = new_r_Proj(low_call, reg->reg_class->mode, curr_res_proj);
794
795                         /* memorize the register in the link field. we need afterwards to set the register class of the keep correctly. */
796                         be_set_constr_single_reg_out(low_call, curr_res_proj, reg, 0);
797                         arch_set_irn_register(proj, reg);
798
799                         set_irn_link(proj, (void*) reg);
800                         in[n++] = proj;
801                         ++curr_res_proj;
802                 }
803
804                 for (i = 0; i < n_reg_results; ++i) {
805                         ir_node *proj = res_projs[i];
806                         const arch_register_t *reg = arch_get_irn_register(proj);
807                         set_irn_link(proj, (void*) reg);
808                         in[n++] = proj;
809                 }
810                 assert(n <= n_ins);
811
812                 /* create the Keep for the caller save registers */
813                 keep = be_new_Keep(bl, n, in);
814                 for (i = 0; i < n; ++i) {
815                         const arch_register_t *reg = get_irn_link(in[i]);
816                         be_node_set_reg_class_in(keep, i, reg->reg_class);
817                 }
818         }
819
820         /* Clean up the stack. */
821         assert(stack_size >= call->pop);
822         stack_size -= call->pop;
823
824         if (stack_size > 0) {
825                 ir_node *mem_proj = NULL;
826
827                 foreach_out_edge(low_call, edge) {
828                         ir_node *irn = get_edge_src_irn(edge);
829                         if (is_Proj(irn) && get_Proj_proj(irn) == pn_Call_M) {
830                                 mem_proj = irn;
831                                 break;
832                         }
833                 }
834
835                 if (! mem_proj) {
836                         mem_proj = new_r_Proj(low_call, mode_M, pn_be_Call_M_regular);
837                         keep_alive(mem_proj);
838                 }
839         }
840         /* Clean up the stack frame or revert alignment fixes if we allocated it */
841         if (! no_alloc) {
842                 curr_sp = be_new_IncSP(sp, bl, curr_sp, -stack_size, 0);
843         }
844
845         be_abi_call_free(call);
846
847         pset_new_destroy(&states);
848         pset_new_destroy(&destroyed_regs);
849
850         return curr_sp;
851 }
852
853 /**
854  * Adjust the size of a node representing a stack alloc or free for the minimum stack alignment.
855  *
856  * @param alignment  the minimum stack alignment
857  * @param size       the node containing the non-aligned size
858  * @param block      the block where new nodes are allocated on
859  * @param dbg        debug info for new nodes
860  *
861  * @return a node representing the aligned size
862  */
863 static ir_node *adjust_alloc_size(unsigned stack_alignment, ir_node *size,
864                                   ir_node *block, dbg_info *dbg)
865 {
866         if (stack_alignment > 1) {
867                 ir_mode  *mode;
868                 tarval   *tv;
869                 ir_node  *mask;
870                 ir_graph *irg;
871
872                 assert(is_po2(stack_alignment));
873
874                 mode = get_irn_mode(size);
875                 tv   = new_tarval_from_long(stack_alignment-1, mode);
876                 irg  = get_Block_irg(block);
877                 mask = new_r_Const(irg, tv);
878                 size = new_rd_Add(dbg, block, size, mask, mode);
879
880                 tv   = new_tarval_from_long(-(long)stack_alignment, mode);
881                 mask = new_r_Const(irg, tv);
882                 size = new_rd_And(dbg, block, size, mask, mode);
883         }
884         return size;
885 }
886 /**
887  * Adjust an alloca.
888  * The alloca is transformed into a back end alloca node and connected to the stack nodes.
889  */
890 static ir_node *adjust_alloc(be_abi_irg_t *env, ir_node *alloc, ir_node *curr_sp)
891 {
892         ir_node *block;
893         ir_graph *irg;
894         ir_node *alloc_mem;
895         ir_node *alloc_res;
896         ir_type *type;
897         dbg_info *dbg;
898
899         const ir_edge_t *edge;
900         ir_node *new_alloc;
901         ir_node *count;
902         ir_node *size;
903         ir_node *ins[2];
904         unsigned stack_alignment;
905
906         assert(get_Alloc_where(alloc) == stack_alloc);
907
908         block = get_nodes_block(alloc);
909         irg   = get_Block_irg(block);
910         alloc_mem = NULL;
911         alloc_res = NULL;
912         type = get_Alloc_type(alloc);
913
914         foreach_out_edge(alloc, edge) {
915                 ir_node *irn = get_edge_src_irn(edge);
916
917                 assert(is_Proj(irn));
918                 switch (get_Proj_proj(irn)) {
919                 case pn_Alloc_M:
920                         alloc_mem = irn;
921                         break;
922                 case pn_Alloc_res:
923                         alloc_res = irn;
924                         break;
925                 default:
926                         break;
927                 }
928         }
929
930         /* Beware: currently Alloc nodes without a result might happen,
931            only escape analysis kills them and this phase runs only for object
932            oriented source. We kill the Alloc here. */
933         if (alloc_res == NULL && alloc_mem) {
934                 exchange(alloc_mem, get_Alloc_mem(alloc));
935                 return curr_sp;
936         }
937
938         dbg   = get_irn_dbg_info(alloc);
939         count = get_Alloc_count(alloc);
940
941         /* we might need to multiply the count with the element size */
942         if (type != firm_unknown_type && get_type_size_bytes(type) != 1) {
943                 ir_mode *mode = get_irn_mode(count);
944                 tarval *tv    = new_tarval_from_long(get_type_size_bytes(type),
945                                                      mode);
946                 ir_node *cnst = new_rd_Const(dbg, irg, tv);
947                 size          = new_rd_Mul(dbg, block, count, cnst, mode);
948         } else {
949                 size = count;
950         }
951
952         /* The stack pointer will be modified in an unknown manner.
953            We cannot omit it. */
954         env->call->flags.bits.try_omit_fp = 0;
955
956         stack_alignment = 1 << env->arch_env->stack_alignment;
957         size            = adjust_alloc_size(stack_alignment, size, block, dbg);
958         new_alloc       = be_new_AddSP(env->arch_env->sp, block, curr_sp, size);
959         set_irn_dbg_info(new_alloc, dbg);
960
961         if (alloc_mem != NULL) {
962                 ir_node *addsp_mem;
963                 ir_node *sync;
964
965                 addsp_mem = new_r_Proj(new_alloc, mode_M, pn_be_AddSP_M);
966
967                 /* We need to sync the output mem of the AddSP with the input mem
968                    edge into the alloc node. */
969                 ins[0] = get_Alloc_mem(alloc);
970                 ins[1] = addsp_mem;
971                 sync = new_r_Sync(block, 2, ins);
972
973                 exchange(alloc_mem, sync);
974         }
975
976         exchange(alloc, new_alloc);
977
978         /* fix projnum of alloca res */
979         set_Proj_proj(alloc_res, pn_be_AddSP_res);
980
981         curr_sp = new_r_Proj(new_alloc,  get_irn_mode(curr_sp), pn_be_AddSP_sp);
982
983         return curr_sp;
984 }
985
986 /**
987  * Adjust a Free.
988  * The Free is transformed into a back end free node and connected to the stack nodes.
989  */
990 static ir_node *adjust_free(be_abi_irg_t *env, ir_node *free, ir_node *curr_sp)
991 {
992         ir_node *block;
993         ir_graph *irg;
994         ir_node *subsp, *mem, *res, *size, *sync;
995         ir_type *type;
996         ir_node *in[2];
997         ir_mode *sp_mode;
998         unsigned stack_alignment;
999         dbg_info *dbg;
1000
1001         assert(get_Free_where(free) == stack_alloc);
1002
1003         block = get_nodes_block(free);
1004         irg = get_irn_irg(block);
1005         type = get_Free_type(free);
1006         sp_mode = env->arch_env->sp->reg_class->mode;
1007         dbg = get_irn_dbg_info(free);
1008
1009         /* we might need to multiply the size with the element size */
1010         if (type != firm_unknown_type && get_type_size_bytes(type) != 1) {
1011                 tarval *tv = new_tarval_from_long(get_type_size_bytes(type), mode_Iu);
1012                 ir_node *cnst = new_rd_Const(dbg, irg, tv);
1013                 ir_node *mul = new_rd_Mul(dbg, block, get_Free_size(free),
1014                                           cnst, mode_Iu);
1015                 size = mul;
1016         } else {
1017                 size = get_Free_size(free);
1018         }
1019
1020         stack_alignment = 1 << env->arch_env->stack_alignment;
1021         size            = adjust_alloc_size(stack_alignment, size, block, dbg);
1022
1023         /* The stack pointer will be modified in an unknown manner.
1024            We cannot omit it. */
1025         env->call->flags.bits.try_omit_fp = 0;
1026         subsp = be_new_SubSP(env->arch_env->sp, block, curr_sp, size);
1027         set_irn_dbg_info(subsp, dbg);
1028
1029         mem = new_r_Proj(subsp, mode_M, pn_be_SubSP_M);
1030         res = new_r_Proj(subsp, sp_mode, pn_be_SubSP_sp);
1031
1032         /* we need to sync the memory */
1033         in[0] = get_Free_mem(free);
1034         in[1] = mem;
1035         sync = new_r_Sync(block, 2, in);
1036
1037         /* and make the AddSP dependent on the former memory */
1038         add_irn_dep(subsp, get_Free_mem(free));
1039
1040         /* kill the free */
1041         exchange(free, sync);
1042         curr_sp = res;
1043
1044         return curr_sp;
1045 }
1046
1047 /**
1048  * Check if a node is somehow data dependent on another one.
1049  * both nodes must be in the same basic block.
1050  * @param n1 The first node.
1051  * @param n2 The second node.
1052  * @return 1, if n1 is data dependent (transitively) on n2, 0 if not.
1053  */
1054 static int dependent_on(ir_node *n1, ir_node *n2)
1055 {
1056         assert(get_nodes_block(n1) == get_nodes_block(n2));
1057
1058         return heights_reachable_in_block(ir_heights, n1, n2);
1059 }
1060
1061 static int cmp_call_dependency(const void *c1, const void *c2)
1062 {
1063         ir_node *n1 = *(ir_node **) c1;
1064         ir_node *n2 = *(ir_node **) c2;
1065
1066         /*
1067                 Classical qsort() comparison function behavior:
1068                 0  if both elements are equal
1069                 1  if second is "smaller" that first
1070                 -1 if first is "smaller" that second
1071         */
1072         if (dependent_on(n1, n2))
1073                 return -1;
1074
1075         if (dependent_on(n2, n1))
1076                 return 1;
1077
1078         /* The nodes have no depth order, but we need a total order because qsort()
1079          * is not stable. */
1080         return get_irn_idx(n1) - get_irn_idx(n2);
1081 }
1082
1083 /**
1084  * Walker: links all Call/Alloc/Free nodes to the Block they are contained.
1085  * Clears the irg_is_leaf flag if a Call is detected.
1086  */
1087 static void link_ops_in_block_walker(ir_node *irn, void *data)
1088 {
1089         be_abi_irg_t *env  = data;
1090         ir_opcode     code = get_irn_opcode(irn);
1091
1092         if (code == iro_Call ||
1093            (code == iro_Alloc && get_Alloc_where(irn) == stack_alloc) ||
1094            (code == iro_Free && get_Free_where(irn) == stack_alloc)) {
1095                 ir_node *bl       = get_nodes_block(irn);
1096                 void *save        = get_irn_link(bl);
1097
1098                 if (code == iro_Call)
1099                         env->call->flags.bits.irg_is_leaf = 0;
1100
1101                 set_irn_link(irn, save);
1102                 set_irn_link(bl, irn);
1103         }
1104
1105         if (code == iro_Builtin && get_Builtin_kind(irn) == ir_bk_return_address) {
1106                 ir_node       *param = get_Builtin_param(irn, 0);
1107                 tarval        *tv    = get_Const_tarval(param);
1108                 unsigned long  value = get_tarval_long(tv);
1109                 /* use ebp, so the climbframe algo works... */
1110                 if (value > 0) {
1111                         env->call->flags.bits.try_omit_fp = 0;
1112                 }
1113         }
1114 }
1115
1116 /**
1117  * Block-walker:
1118  * Process all Call/Alloc/Free nodes inside a basic block.
1119  * Note that the link field of the block must contain a linked list of all
1120  * Call nodes inside the Block. We first order this list according to data dependency
1121  * and that connect the calls together.
1122  */
1123 static void process_ops_in_block(ir_node *bl, void *data)
1124 {
1125         be_abi_irg_t   *env     = data;
1126         ir_node        *curr_sp = env->init_sp;
1127         ir_node        *irn;
1128         ir_node       **nodes;
1129         int             n;
1130         int             n_nodes;
1131
1132         n_nodes = 0;
1133         for (irn = get_irn_link(bl); irn != NULL; irn = get_irn_link(irn)) {
1134                 ++n_nodes;
1135         }
1136
1137         nodes = ALLOCAN(ir_node*, n_nodes);
1138         for (irn = get_irn_link(bl), n = 0; irn; irn = get_irn_link(irn), ++n) {
1139                 nodes[n] = irn;
1140         }
1141
1142         /* If there were call nodes in the block. */
1143         if (n > 0) {
1144                 ir_node *keep;
1145                 int i;
1146
1147                 /* order the call nodes according to data dependency */
1148                 qsort(nodes, n_nodes, sizeof(nodes[0]), cmp_call_dependency);
1149
1150                 for (i = n_nodes - 1; i >= 0; --i) {
1151                         ir_node *irn = nodes[i];
1152
1153                         DBG((dbg, LEVEL_3, "\tprocessing call %+F\n", irn));
1154                         switch (get_irn_opcode(irn)) {
1155                         case iro_Call:
1156                                 if (! be_omit_fp) {
1157                                         /* The stack pointer will be modified due to a call. */
1158                                         env->call->flags.bits.try_omit_fp = 0;
1159                                 }
1160                                 curr_sp = adjust_call(env, irn, curr_sp);
1161                                 break;
1162                         case iro_Alloc:
1163                                 if (get_Alloc_where(irn) == stack_alloc)
1164                                         curr_sp = adjust_alloc(env, irn, curr_sp);
1165                                 break;
1166                         case iro_Free:
1167                                 if (get_Free_where(irn) == stack_alloc)
1168                                         curr_sp = adjust_free(env, irn, curr_sp);
1169                                 break;
1170                         default:
1171                                 panic("invalid call");
1172                         }
1173                 }
1174
1175                 /* Keep the last stack state in the block by tying it to Keep node,
1176                  * the proj from calls is already kept */
1177                 if (curr_sp != env->init_sp &&
1178                     !(is_Proj(curr_sp) && be_is_Call(get_Proj_pred(curr_sp)))) {
1179                         nodes[0] = curr_sp;
1180                         keep     = be_new_Keep(bl, 1, nodes);
1181                         pmap_insert(env->keep_map, bl, keep);
1182                 }
1183         }
1184
1185         set_irn_link(bl, curr_sp);
1186 }
1187
1188 /**
1189  * Adjust all call nodes in the graph to the ABI conventions.
1190  */
1191 static void process_calls(be_abi_irg_t *env)
1192 {
1193         ir_graph *irg = env->birg->irg;
1194
1195         env->call->flags.bits.irg_is_leaf = 1;
1196         irg_walk_graph(irg, firm_clear_link, link_ops_in_block_walker, env);
1197
1198         ir_heights = heights_new(env->birg->irg);
1199         irg_block_walk_graph(irg, NULL, process_ops_in_block, env);
1200         heights_free(ir_heights);
1201 }
1202
1203 /**
1204  * Computes the stack argument layout type.
1205  * Changes a possibly allocated value param type by moving
1206  * entities to the stack layout type.
1207  *
1208  * @param env           the ABI environment
1209  * @param call          the current call ABI
1210  * @param method_type   the method type
1211  * @param val_param_tp  the value parameter type, will be destroyed
1212  * @param param_map     an array mapping method arguments to the stack layout type
1213  *
1214  * @return the stack argument layout type
1215  */
1216 static ir_type *compute_arg_type(be_abi_irg_t *env, be_abi_call_t *call,
1217                                                                  ir_type *method_type, ir_type *val_param_tp,
1218                                                                  ir_entity ***param_map)
1219 {
1220         int dir  = env->call->flags.bits.left_to_right ? 1 : -1;
1221         int inc  = env->birg->main_env->arch_env->stack_dir * dir;
1222         int n    = get_method_n_params(method_type);
1223         int curr = inc > 0 ? 0 : n - 1;
1224         struct obstack *obst = be_get_birg_obst(env->irg);
1225         int ofs  = 0;
1226
1227         char buf[128];
1228         ir_type *res;
1229         int i;
1230         ident *id = get_entity_ident(get_irg_entity(env->birg->irg));
1231         ir_entity **map;
1232
1233         *param_map = map = OALLOCN(obst, ir_entity*, n);
1234         res = new_type_struct(id_mangle_u(id, new_id_from_chars("arg_type", 8)));
1235         for (i = 0; i < n; ++i, curr += inc) {
1236                 ir_type *param_type    = get_method_param_type(method_type, curr);
1237                 be_abi_call_arg_t *arg = get_call_arg(call, 0, curr, 1);
1238
1239                 map[i] = NULL;
1240                 if (arg->on_stack) {
1241                         if (val_param_tp != NULL) {
1242                                 /* the entity was already created, create a copy in the param type */
1243                                 ir_entity *val_ent = get_method_value_param_ent(method_type, i);
1244                                 arg->stack_ent = copy_entity_own(val_ent, res);
1245                                 set_entity_link(val_ent, arg->stack_ent);
1246                                 set_entity_link(arg->stack_ent, NULL);
1247                         } else {
1248                                 /* create a new entity */
1249                                 snprintf(buf, sizeof(buf), "param_%d", i);
1250                                 arg->stack_ent = new_entity(res, new_id_from_str(buf), param_type);
1251                         }
1252                         ofs += arg->space_before;
1253                         ofs = round_up2(ofs, arg->alignment);
1254                         set_entity_offset(arg->stack_ent, ofs);
1255                         ofs += arg->space_after;
1256                         ofs += get_type_size_bytes(param_type);
1257                         map[i] = arg->stack_ent;
1258                 }
1259         }
1260         set_type_size_bytes(res, ofs);
1261         set_type_state(res, layout_fixed);
1262         return res;
1263 }
1264
1265 typedef struct {
1266         const arch_register_t *reg;
1267         ir_node *irn;
1268 } reg_node_map_t;
1269
1270 static int cmp_regs(const void *a, const void *b)
1271 {
1272         const reg_node_map_t *p = a;
1273         const reg_node_map_t *q = b;
1274
1275         if (p->reg->reg_class == q->reg->reg_class)
1276                 return p->reg->index - q->reg->index;
1277         else
1278                 return p->reg->reg_class - q->reg->reg_class;
1279 }
1280
1281 static void reg_map_to_arr(reg_node_map_t *res, pmap *reg_map)
1282 {
1283         pmap_entry *ent;
1284         int n = pmap_count(reg_map);
1285         int i = 0;
1286
1287         foreach_pmap(reg_map, ent) {
1288                 res[i].reg = ent->key;
1289                 res[i].irn = ent->value;
1290                 i++;
1291         }
1292
1293         qsort(res, n, sizeof(res[0]), cmp_regs);
1294 }
1295
1296 /**
1297  * Creates a barrier.
1298  */
1299 static ir_node *create_barrier(ir_node *bl, ir_node **mem, pmap *regs,
1300                                int in_req)
1301 {
1302         int             n_regs = pmap_count(regs);
1303         int             n;
1304         ir_node        *irn;
1305         ir_node       **in;
1306         reg_node_map_t *rm;
1307
1308         in = ALLOCAN(ir_node*, n_regs+1);
1309         rm = ALLOCAN(reg_node_map_t, n_regs);
1310         reg_map_to_arr(rm, regs);
1311         for (n = 0; n < n_regs; ++n) {
1312                 in[n] = rm[n].irn;
1313         }
1314
1315         if (mem) {
1316                 in[n++] = *mem;
1317         }
1318
1319         irn = be_new_Barrier(bl, n, in);
1320
1321         for (n = 0; n < n_regs; ++n) {
1322                 ir_node               *pred     = rm[n].irn;
1323                 const arch_register_t *reg      = rm[n].reg;
1324                 arch_register_type_t   add_type = 0;
1325                 ir_node               *proj;
1326                 const backend_info_t  *info;
1327
1328                 /* stupid workaround for now... as not all nodes report register
1329                  * requirements. */
1330                 info = be_get_info(skip_Proj(pred));
1331                 if (info != NULL && info->out_infos != NULL) {
1332                         const arch_register_req_t *ireq = arch_get_register_req_out(pred);
1333                         if (ireq->type & arch_register_req_type_ignore)
1334                                 add_type |= arch_register_req_type_ignore;
1335                         if (ireq->type & arch_register_req_type_produces_sp)
1336                                 add_type |= arch_register_req_type_produces_sp;
1337                 }
1338
1339                 proj = new_r_Proj(irn, get_irn_mode(pred), n);
1340                 be_node_set_reg_class_in(irn, n, reg->reg_class);
1341                 if (in_req)
1342                         be_set_constr_single_reg_in(irn, n, reg, 0);
1343                 be_set_constr_single_reg_out(irn, n, reg, add_type);
1344                 arch_set_irn_register(proj, reg);
1345
1346                 pmap_insert(regs, (void *) reg, proj);
1347         }
1348
1349         if (mem) {
1350                 *mem = new_r_Proj(irn, mode_M, n);
1351         }
1352
1353         return irn;
1354 }
1355
1356 /**
1357  * Creates a be_Return for a Return node.
1358  *
1359  * @param @env    the abi environment
1360  * @param irn     the Return node or NULL if there was none
1361  * @param bl      the block where the be_Retun should be placed
1362  * @param mem     the current memory
1363  * @param n_res   number of return results
1364  */
1365 static ir_node *create_be_return(be_abi_irg_t *env, ir_node *irn, ir_node *bl,
1366                 ir_node *mem, int n_res)
1367 {
1368         be_abi_call_t    *call     = env->call;
1369         const arch_env_t *arch_env = env->birg->main_env->arch_env;
1370         dbg_info *dbgi;
1371         pmap *reg_map  = pmap_create();
1372         ir_node *keep  = pmap_get(env->keep_map, bl);
1373         int in_max;
1374         ir_node *ret;
1375         int i, n;
1376         unsigned pop;
1377         ir_node **in;
1378         ir_node *stack;
1379         const arch_register_t **regs;
1380         pmap_entry *ent;
1381
1382         /*
1383                 get the valid stack node in this block.
1384                 If we had a call in that block there is a Keep constructed by process_calls()
1385                 which points to the last stack modification in that block. we'll use
1386                 it then. Else we use the stack from the start block and let
1387                 the ssa construction fix the usage.
1388         */
1389         stack = be_abi_reg_map_get(env->regs, arch_env->sp);
1390         if (keep) {
1391                 stack = get_irn_n(keep, 0);
1392                 kill_node(keep);
1393                 remove_End_keepalive(get_irg_end(env->birg->irg), keep);
1394         }
1395
1396         /* Insert results for Return into the register map. */
1397         for (i = 0; i < n_res; ++i) {
1398                 ir_node *res           = get_Return_res(irn, i);
1399                 be_abi_call_arg_t *arg = get_call_arg(call, 1, i, 1);
1400                 assert(arg->in_reg && "return value must be passed in register");
1401                 pmap_insert(reg_map, (void *) arg->reg, res);
1402         }
1403
1404         /* Add uses of the callee save registers. */
1405         foreach_pmap(env->regs, ent) {
1406                 const arch_register_t *reg = ent->key;
1407                 if (arch_register_type_is(reg, callee_save) || arch_register_type_is(reg, ignore))
1408                         pmap_insert(reg_map, ent->key, ent->value);
1409         }
1410
1411         be_abi_reg_map_set(reg_map, arch_env->sp, stack);
1412
1413         /* Make the Epilogue node and call the arch's epilogue maker. */
1414         create_barrier(bl, &mem, reg_map, 1);
1415         call->cb->epilogue(env->cb, bl, &mem, reg_map);
1416
1417         /*
1418                 Maximum size of the in array for Return nodes is
1419                 return args + callee save/ignore registers + memory + stack pointer
1420         */
1421         in_max = pmap_count(reg_map) + n_res + 2;
1422
1423         in   = ALLOCAN(ir_node*,               in_max);
1424         regs = ALLOCAN(arch_register_t const*, in_max);
1425
1426         in[0]   = mem;
1427         in[1]   = be_abi_reg_map_get(reg_map, arch_env->sp);
1428         regs[0] = NULL;
1429         regs[1] = arch_env->sp;
1430         n       = 2;
1431
1432         /* clear SP entry, since it has already been grown. */
1433         pmap_insert(reg_map, (void *) arch_env->sp, NULL);
1434         for (i = 0; i < n_res; ++i) {
1435                 be_abi_call_arg_t *arg = get_call_arg(call, 1, i, 1);
1436
1437                 in[n]     = be_abi_reg_map_get(reg_map, arg->reg);
1438                 regs[n++] = arg->reg;
1439
1440                 /* Clear the map entry to mark the register as processed. */
1441                 be_abi_reg_map_set(reg_map, arg->reg, NULL);
1442         }
1443
1444         /* grow the rest of the stuff. */
1445         foreach_pmap(reg_map, ent) {
1446                 if (ent->value) {
1447                         in[n]     = ent->value;
1448                         regs[n++] = ent->key;
1449                 }
1450         }
1451
1452         /* The in array for the new back end return is now ready. */
1453         if (irn != NULL) {
1454                 dbgi = get_irn_dbg_info(irn);
1455         } else {
1456                 dbgi = NULL;
1457         }
1458         /* we have to pop the shadow parameter in in case of struct returns */
1459         pop = call->pop;
1460         ret = be_new_Return(dbgi, env->birg->irg, bl, n_res, pop, n, in);
1461
1462         /* Set the register classes of the return's parameter accordingly. */
1463         for (i = 0; i < n; ++i) {
1464                 if (regs[i] == NULL)
1465                         continue;
1466
1467                 be_node_set_reg_class_in(ret, i, regs[i]->reg_class);
1468         }
1469
1470         /* Free the space of the Epilog's in array and the register <-> proj map. */
1471         pmap_destroy(reg_map);
1472
1473         return ret;
1474 }
1475
1476 typedef struct ent_pos_pair ent_pos_pair;
1477 struct ent_pos_pair {
1478         ir_entity    *ent;   /**< a value param entity */
1479         int          pos;    /**< its parameter number */
1480         ent_pos_pair *next;  /**< for linking */
1481 };
1482
1483 typedef struct lower_frame_sels_env_t {
1484         ent_pos_pair *value_param_list;          /**< the list of all value param entities */
1485         ir_node      *frame;                     /**< the current frame */
1486         const arch_register_class_t *sp_class;   /**< register class of the stack pointer */
1487         const arch_register_class_t *link_class; /**< register class of the link pointer */
1488         ir_type      *value_tp;                  /**< the value type if any */
1489         ir_type      *frame_tp;                  /**< the frame type */
1490         int          static_link_pos;            /**< argument number of the hidden static link */
1491 } lower_frame_sels_env_t;
1492
1493 /**
1494  * Return an entity from the backend for an value param entity.
1495  *
1496  * @param ent  an value param type entity
1497  * @param ctx  context
1498  */
1499 static ir_entity *get_argument_entity(ir_entity *ent, lower_frame_sels_env_t *ctx)
1500 {
1501         ir_entity *argument_ent = get_entity_link(ent);
1502
1503         if (argument_ent == NULL) {
1504                 /* we have NO argument entity yet: This is bad, as we will
1505                 * need one for backing store.
1506                 * Create one here.
1507                 */
1508                 ir_type *frame_tp = ctx->frame_tp;
1509                 unsigned offset   = get_type_size_bytes(frame_tp);
1510                 ir_type  *tp      = get_entity_type(ent);
1511                 unsigned align    = get_type_alignment_bytes(tp);
1512
1513                 offset += align - 1;
1514                 offset &= ~(align - 1);
1515
1516                 argument_ent = copy_entity_own(ent, frame_tp);
1517
1518                 /* must be automatic to set a fixed layout */
1519                 set_entity_offset(argument_ent, offset);
1520                 offset += get_type_size_bytes(tp);
1521
1522                 set_type_size_bytes(frame_tp, offset);
1523                 set_entity_link(ent, argument_ent);
1524         }
1525         return argument_ent;
1526 }
1527 /**
1528  * Walker: Replaces Sels of frame type and
1529  * value param type entities by FrameAddress.
1530  * Links all used entities.
1531  */
1532 static void lower_frame_sels_walker(ir_node *irn, void *data)
1533 {
1534         lower_frame_sels_env_t *ctx = data;
1535
1536         if (is_Sel(irn)) {
1537                 ir_node *ptr = get_Sel_ptr(irn);
1538
1539                 if (ptr == ctx->frame) {
1540                         ir_entity    *ent = get_Sel_entity(irn);
1541                         ir_node      *bl  = get_nodes_block(irn);
1542                         ir_node      *nw;
1543                         int          pos = 0;
1544                         int          is_value_param = 0;
1545
1546                         if (get_entity_owner(ent) == ctx->value_tp) {
1547                                 is_value_param = 1;
1548
1549                                 /* replace by its copy from the argument type */
1550                                 pos = get_struct_member_index(ctx->value_tp, ent);
1551                                 ent = get_argument_entity(ent, ctx);
1552                         }
1553
1554                         nw = be_new_FrameAddr(ctx->sp_class, bl, ctx->frame, ent);
1555                         exchange(irn, nw);
1556
1557                         /* check, if it's a param Sel and if have not seen this entity before */
1558                         if (is_value_param && get_entity_link(ent) == NULL) {
1559                                 ent_pos_pair pair;
1560
1561                                 pair.ent  = ent;
1562                                 pair.pos  = pos;
1563                                 pair.next = NULL;
1564                                 ARR_APP1(ent_pos_pair, ctx->value_param_list, pair);
1565                                 /* just a mark */
1566                                 set_entity_link(ent, ctx->value_param_list);
1567                         }
1568                 }
1569         }
1570 }
1571
1572 /**
1573  * Check if a value parameter is transmitted as a register.
1574  * This might happen if the address of an parameter is taken which is
1575  * transmitted in registers.
1576  *
1577  * Note that on some architectures this case must be handled specially
1578  * because the place of the backing store is determined by their ABI.
1579  *
1580  * In the default case we move the entity to the frame type and create
1581  * a backing store into the first block.
1582  */
1583 static void fix_address_of_parameter_access(be_abi_irg_t *env, ent_pos_pair *value_param_list)
1584 {
1585         be_abi_call_t *call = env->call;
1586         ir_graph      *irg  = env->birg->irg;
1587         ent_pos_pair  *entry, *new_list;
1588         ir_type       *frame_tp;
1589         int           i, n = ARR_LEN(value_param_list);
1590
1591         new_list = NULL;
1592         for (i = 0; i < n; ++i) {
1593                 int               pos  = value_param_list[i].pos;
1594                 be_abi_call_arg_t *arg = get_call_arg(call, 0, pos, 1);
1595
1596                 if (arg->in_reg) {
1597                         DBG((dbg, LEVEL_2, "\targ #%d need backing store\n", pos));
1598                         value_param_list[i].next = new_list;
1599                         new_list = &value_param_list[i];
1600                 }
1601         }
1602         if (new_list != NULL) {
1603                 /* ok, change the graph */
1604                 ir_node *start_bl = get_irg_start_block(irg);
1605                 ir_node *first_bl = get_first_block_succ(start_bl);
1606                 ir_node *frame, *imem, *nmem, *store, *mem, *args;
1607                 optimization_state_t state;
1608                 unsigned offset;
1609
1610                 assert(first_bl && first_bl != start_bl);
1611                 /* we had already removed critical edges, so the following
1612                    assertion should be always true. */
1613                 assert(get_Block_n_cfgpreds(first_bl) == 1);
1614
1615                 /* now create backing stores */
1616                 frame = get_irg_frame(irg);
1617                 imem = get_irg_initial_mem(irg);
1618
1619                 save_optimization_state(&state);
1620                 set_optimize(0);
1621                 nmem = new_r_Proj(get_irg_start(irg), mode_M, pn_Start_M);
1622                 restore_optimization_state(&state);
1623
1624                 /* reroute all edges to the new memory source */
1625                 edges_reroute(imem, nmem, irg);
1626
1627                 store   = NULL;
1628                 mem     = imem;
1629                 args    = get_irg_args(irg);
1630                 for (entry = new_list; entry != NULL; entry = entry->next) {
1631                         int     i     = entry->pos;
1632                         ir_type *tp   = get_entity_type(entry->ent);
1633                         ir_mode *mode = get_type_mode(tp);
1634                         ir_node *addr;
1635
1636                         /* address for the backing store */
1637                         addr = be_new_FrameAddr(env->arch_env->sp->reg_class, first_bl, frame, entry->ent);
1638
1639                         if (store)
1640                                 mem = new_r_Proj(store, mode_M, pn_Store_M);
1641
1642                         /* the backing store itself */
1643                         store = new_r_Store(first_bl, mem, addr,
1644                                             new_r_Proj(args, mode, i), 0);
1645                 }
1646                 /* the new memory Proj gets the last Proj from store */
1647                 set_Proj_pred(nmem, store);
1648                 set_Proj_proj(nmem, pn_Store_M);
1649
1650                 /* move all entities to the frame type */
1651                 frame_tp = get_irg_frame_type(irg);
1652                 offset   = get_type_size_bytes(frame_tp);
1653
1654                 /* we will add new entities: set the layout to undefined */
1655                 assert(get_type_state(frame_tp) == layout_fixed);
1656                 set_type_state(frame_tp, layout_undefined);
1657                 for (entry = new_list; entry != NULL; entry = entry->next) {
1658                         ir_entity *ent = entry->ent;
1659
1660                         /* If the entity is still on the argument type, move it to the frame type.
1661                            This happens if the value_param type was build due to compound
1662                            params. */
1663                         if (get_entity_owner(ent) != frame_tp) {
1664                                 ir_type  *tp   = get_entity_type(ent);
1665                                 unsigned align = get_type_alignment_bytes(tp);
1666
1667                                 offset += align - 1;
1668                                 offset &= ~(align - 1);
1669                                 set_entity_owner(ent, frame_tp);
1670                                 add_class_member(frame_tp, ent);
1671                                 /* must be automatic to set a fixed layout */
1672                                 set_entity_offset(ent, offset);
1673                                 offset += get_type_size_bytes(tp);
1674                         }
1675                 }
1676                 set_type_size_bytes(frame_tp, offset);
1677                 /* fix the layout again */
1678                 set_type_state(frame_tp, layout_fixed);
1679         }
1680 }
1681
1682 /**
1683  * The start block has no jump, instead it has an initial exec Proj.
1684  * The backend wants to handle all blocks the same way, so we replace
1685  * the out cfg edge with a real jump.
1686  */
1687 static void fix_start_block(ir_graph *irg)
1688 {
1689         ir_node         *initial_X   = get_irg_initial_exec(irg);
1690         ir_node         *start_block = get_irg_start_block(irg);
1691         const ir_edge_t *edge;
1692
1693         assert(is_Proj(initial_X));
1694
1695         foreach_out_edge(initial_X, edge) {
1696                 ir_node *block = get_edge_src_irn(edge);
1697
1698                 if (is_Anchor(block))
1699                         continue;
1700                 if (block != start_block) {
1701                         ir_node *jmp = new_r_Jmp(start_block);
1702                         set_Block_cfgpred(block, get_edge_src_pos(edge), jmp);
1703                         set_irg_initial_exec(irg, jmp);
1704                         return;
1705                 }
1706         }
1707         panic("Initial exec has no follow block in %+F", irg);
1708 }
1709
1710 /**
1711  * Update the entity of Sels to the outer value parameters.
1712  */
1713 static void update_outer_frame_sels(ir_node *irn, void *env)
1714 {
1715         lower_frame_sels_env_t *ctx = env;
1716         ir_node                *ptr;
1717         ir_entity              *ent;
1718         int                    pos = 0;
1719
1720         if (! is_Sel(irn))
1721                 return;
1722         ptr = get_Sel_ptr(irn);
1723         if (! is_arg_Proj(ptr))
1724                 return;
1725         if (get_Proj_proj(ptr) != ctx->static_link_pos)
1726                 return;
1727         ent   = get_Sel_entity(irn);
1728
1729         if (get_entity_owner(ent) == ctx->value_tp) {
1730                 /* replace by its copy from the argument type */
1731                 pos = get_struct_member_index(ctx->value_tp, ent);
1732                 ent = get_argument_entity(ent, ctx);
1733                 set_Sel_entity(irn, ent);
1734
1735                 /* check, if we have not seen this entity before */
1736                 if (get_entity_link(ent) == NULL) {
1737                         ent_pos_pair pair;
1738
1739                         pair.ent  = ent;
1740                         pair.pos  = pos;
1741                         pair.next = NULL;
1742                         ARR_APP1(ent_pos_pair, ctx->value_param_list, pair);
1743                         /* just a mark */
1744                         set_entity_link(ent, ctx->value_param_list);
1745                 }
1746         }
1747 }
1748
1749 /**
1750  * Fix access to outer local variables.
1751  */
1752 static void fix_outer_variable_access(be_abi_irg_t *env,
1753                                       lower_frame_sels_env_t *ctx)
1754 {
1755         int      i;
1756         ir_graph *irg;
1757         (void) env;
1758
1759         for (i = get_class_n_members(ctx->frame_tp) - 1; i >= 0; --i) {
1760                 ir_entity *ent = get_class_member(ctx->frame_tp, i);
1761
1762                 if (! is_method_entity(ent))
1763                         continue;
1764
1765                 irg = get_entity_irg(ent);
1766                 if (irg == NULL)
1767                         continue;
1768
1769                 /*
1770                  * FIXME: find the number of the static link parameter
1771                  * for now we assume 0 here
1772                  */
1773                 ctx->static_link_pos = 0;
1774
1775                 irg_walk_graph(irg, NULL, update_outer_frame_sels, ctx);
1776         }
1777 }
1778
1779 /**
1780  * Modify the irg itself and the frame type.
1781  */
1782 static void modify_irg(be_abi_irg_t *env)
1783 {
1784         be_abi_call_t *call       = env->call;
1785         const arch_env_t *arch_env= env->birg->main_env->arch_env;
1786         const arch_register_t *sp = arch_env->sp;
1787         ir_graph *irg             = env->birg->irg;
1788         ir_node *end;
1789         ir_node *old_mem;
1790         ir_node *new_mem_proj;
1791         ir_node *mem;
1792         ir_type *method_type      = get_entity_type(get_irg_entity(irg));
1793         struct obstack *obst      = be_get_birg_obst(irg);
1794
1795         int n_params;
1796         int i, n;
1797         unsigned j;
1798         unsigned frame_size;
1799
1800         reg_node_map_t *rm;
1801         const arch_register_t *fp_reg;
1802         ir_node *frame_pointer;
1803         ir_node *start_bl;
1804         ir_node **args;
1805         ir_node *arg_tuple;
1806         const ir_edge_t *edge;
1807         ir_type *arg_type, *bet_type, *tp;
1808         lower_frame_sels_env_t ctx;
1809         ir_entity **param_map;
1810
1811         DBG((dbg, LEVEL_1, "introducing abi on %+F\n", irg));
1812
1813         /* Must fetch memory here, otherwise the start Barrier gets the wrong
1814          * memory, which leads to loops in the DAG. */
1815         old_mem = get_irg_initial_mem(irg);
1816
1817         irp_reserve_resources(irp, IR_RESOURCE_ENTITY_LINK);
1818
1819         /* set the links of all frame entities to NULL, we use it
1820            to detect if an entity is already linked in the value_param_list */
1821         tp = get_method_value_param_type(method_type);
1822         ctx.value_tp = tp;
1823         if (tp != NULL) {
1824                 /* clear the links of the clone type, let the
1825                    original entities point to its clones */
1826                 for (i = get_struct_n_members(tp) - 1; i >= 0; --i) {
1827                         ir_entity *mem  = get_struct_member(tp, i);
1828                         set_entity_link(mem, NULL);
1829                 }
1830         }
1831
1832         arg_type = compute_arg_type(env, call, method_type, tp, &param_map);
1833
1834         /* Convert the Sel nodes in the irg to frame addr nodes: */
1835         ctx.value_param_list = NEW_ARR_F(ent_pos_pair, 0);
1836         ctx.frame            = get_irg_frame(irg);
1837         ctx.sp_class         = env->arch_env->sp->reg_class;
1838         ctx.link_class       = env->arch_env->link_class;
1839         ctx.frame_tp         = get_irg_frame_type(irg);
1840
1841         /* layout the stackframe now */
1842         if (get_type_state(ctx.frame_tp) == layout_undefined) {
1843                 default_layout_compound_type(ctx.frame_tp);
1844         }
1845
1846         /* we will possible add new entities to the frame: set the layout to undefined */
1847         assert(get_type_state(ctx.frame_tp) == layout_fixed);
1848         set_type_state(ctx.frame_tp, layout_undefined);
1849
1850         irg_walk_graph(irg, lower_frame_sels_walker, NULL, &ctx);
1851
1852         /* fix the frame type layout again */
1853         set_type_state(ctx.frame_tp, layout_fixed);
1854         /* align stackframe to 4 byte */
1855         frame_size = get_type_size_bytes(ctx.frame_tp);
1856         if (frame_size % 4 != 0) {
1857                 set_type_size_bytes(ctx.frame_tp, frame_size + 4 - (frame_size % 4));
1858         }
1859
1860         env->regs  = pmap_create();
1861
1862         n_params = get_method_n_params(method_type);
1863         args     = OALLOCNZ(obst, ir_node*, n_params);
1864
1865         /*
1866          * for inner function we must now fix access to outer frame entities.
1867          */
1868         fix_outer_variable_access(env, &ctx);
1869
1870         /* Check if a value parameter is transmitted as a register.
1871          * This might happen if the address of an parameter is taken which is
1872          * transmitted in registers.
1873          *
1874          * Note that on some architectures this case must be handled specially
1875          * because the place of the backing store is determined by their ABI.
1876          *
1877          * In the default case we move the entity to the frame type and create
1878          * a backing store into the first block.
1879          */
1880         fix_address_of_parameter_access(env, ctx.value_param_list);
1881
1882         DEL_ARR_F(ctx.value_param_list);
1883         irp_free_resources(irp, IR_RESOURCE_ENTITY_LINK);
1884
1885         /* Fill the argument vector */
1886         arg_tuple = get_irg_args(irg);
1887         foreach_out_edge(arg_tuple, edge) {
1888                 ir_node *irn = get_edge_src_irn(edge);
1889                 if (! is_Anchor(irn)) {
1890                         int nr       = get_Proj_proj(irn);
1891                         args[nr]     = irn;
1892                         DBG((dbg, LEVEL_2, "\treading arg: %d -> %+F\n", nr, irn));
1893                 }
1894         }
1895
1896         bet_type = call->cb->get_between_type(env->cb);
1897         stack_frame_init(&env->frame, arg_type, bet_type, get_irg_frame_type(irg), arch_env->stack_dir, param_map);
1898
1899         /* Count the register params and add them to the number of Projs for the RegParams node */
1900         for (i = 0; i < n_params; ++i) {
1901                 be_abi_call_arg_t *arg = get_call_arg(call, 0, i, 1);
1902                 if (arg->in_reg && args[i]) {
1903                         assert(arg->reg != sp && "cannot use stack pointer as parameter register");
1904                         assert(i == get_Proj_proj(args[i]));
1905
1906                         /* For now, associate the register with the old Proj from Start representing that argument. */
1907                         pmap_insert(env->regs, (void *) arg->reg, args[i]);
1908                         DBG((dbg, LEVEL_2, "\targ #%d -> reg %s\n", i, arg->reg->name));
1909                 }
1910         }
1911
1912         /* Collect all callee-save registers */
1913         for (i = 0, n = arch_env_get_n_reg_class(arch_env); i < n; ++i) {
1914                 const arch_register_class_t *cls = arch_env_get_reg_class(arch_env, i);
1915                 for (j = 0; j < cls->n_regs; ++j) {
1916                         const arch_register_t *reg = &cls->regs[j];
1917                         if (arch_register_type_is(reg, callee_save) ||
1918                                         arch_register_type_is(reg, state)) {
1919                                 pmap_insert(env->regs, (void *) reg, NULL);
1920                         }
1921                 }
1922         }
1923
1924         /* handle start block here (place a jump in the block) */
1925         fix_start_block(irg);
1926
1927         pmap_insert(env->regs, (void *) sp, NULL);
1928         pmap_insert(env->regs, (void *) arch_env->bp, NULL);
1929         start_bl   = get_irg_start_block(irg);
1930         env->start = be_new_Start(NULL, start_bl, pmap_count(env->regs) + 1);
1931
1932         /*
1933          * make proj nodes for the callee save registers.
1934          * memorize them, since Return nodes get those as inputs.
1935          *
1936          * Note, that if a register corresponds to an argument, the regs map contains
1937          * the old Proj from start for that argument.
1938          */
1939
1940         rm = ALLOCAN(reg_node_map_t, pmap_count(env->regs));
1941         reg_map_to_arr(rm, env->regs);
1942         for (i = 0, n = pmap_count(env->regs); i < n; ++i) {
1943                 arch_register_t          *reg      = (void *) rm[i].reg;
1944                 ir_mode                  *mode     = reg->reg_class->mode;
1945                 long                      nr       = i;
1946                 arch_register_req_type_t  add_type = 0;
1947                 ir_node                  *proj;
1948
1949                 if (reg == sp)
1950                         add_type |= arch_register_req_type_produces_sp | arch_register_req_type_ignore;
1951
1952                 assert(nr >= 0);
1953                 proj = new_r_Proj(env->start, mode, nr + 1);
1954                 pmap_insert(env->regs, (void *) reg, proj);
1955                 be_set_constr_single_reg_out(env->start, nr + 1, reg, add_type);
1956                 arch_set_irn_register(proj, reg);
1957
1958                 DBG((dbg, LEVEL_2, "\tregister save proj #%d -> reg %s\n", nr, reg->name));
1959         }
1960
1961         /* create a new initial memory proj */
1962         assert(is_Proj(old_mem));
1963         arch_set_out_register_req(env->start, 0, arch_no_register_req);
1964         new_mem_proj = new_r_Proj(env->start, mode_M, 0);
1965         mem = new_mem_proj;
1966         set_irg_initial_mem(irg, mem);
1967
1968         /* Generate the Prologue */
1969         fp_reg = call->cb->prologue(env->cb, &mem, env->regs, &env->frame.initial_bias);
1970
1971         /* do the stack allocation BEFORE the barrier, or spill code
1972            might be added before it */
1973         env->init_sp = be_abi_reg_map_get(env->regs, sp);
1974         env->init_sp = be_new_IncSP(sp, start_bl, env->init_sp, BE_STACK_FRAME_SIZE_EXPAND, 0);
1975         be_abi_reg_map_set(env->regs, sp, env->init_sp);
1976
1977         create_barrier(start_bl, &mem, env->regs, 0);
1978
1979         env->init_sp = be_abi_reg_map_get(env->regs, sp);
1980         arch_set_irn_register(env->init_sp, sp);
1981
1982         frame_pointer = be_abi_reg_map_get(env->regs, fp_reg);
1983         set_irg_frame(irg, frame_pointer);
1984         pset_insert_ptr(env->ignore_regs, fp_reg);
1985
1986         /* rewire old mem users to new mem */
1987         exchange(old_mem, mem);
1988
1989         /* keep the mem (for functions with an endless loop = no return) */
1990         keep_alive(mem);
1991
1992         set_irg_initial_mem(irg, mem);
1993
1994         /* Now, introduce stack param nodes for all parameters passed on the stack */
1995         for (i = 0; i < n_params; ++i) {
1996                 ir_node *arg_proj = args[i];
1997                 ir_node *repl     = NULL;
1998
1999                 if (arg_proj != NULL) {
2000                         be_abi_call_arg_t *arg;
2001                         ir_type *param_type;
2002                         int     nr = get_Proj_proj(arg_proj);
2003                         ir_mode *mode;
2004
2005                         nr         = MIN(nr, n_params);
2006                         arg        = get_call_arg(call, 0, nr, 1);
2007                         param_type = get_method_param_type(method_type, nr);
2008
2009                         if (arg->in_reg) {
2010                                 repl = pmap_get(env->regs, (void *) arg->reg);
2011                         } else if (arg->on_stack) {
2012                                 ir_node *addr = be_new_FrameAddr(sp->reg_class, start_bl, frame_pointer, arg->stack_ent);
2013
2014                                 /* For atomic parameters which are actually used, we create a Load node. */
2015                                 if (is_atomic_type(param_type) && get_irn_n_edges(args[i]) > 0) {
2016                                         ir_mode *mode      = get_type_mode(param_type);
2017                                         ir_mode *load_mode = arg->load_mode;
2018
2019                                         ir_node *load = new_r_Load(start_bl, new_NoMem(), addr, load_mode, cons_floats);
2020                                         repl = new_r_Proj(load, load_mode, pn_Load_res);
2021
2022                                         if (mode != load_mode) {
2023                                                 repl = new_r_Conv(start_bl, repl, mode);
2024                                         }
2025                                 } else {
2026                                         /* The stack parameter is not primitive (it is a struct or array),
2027                                          * we thus will create a node representing the parameter's address
2028                                          * on the stack. */
2029                                         repl = addr;
2030                                 }
2031                         }
2032
2033                         assert(repl != NULL);
2034
2035                         /* Beware: the mode of the register parameters is always the mode of the register class
2036                            which may be wrong. Add Conv's then. */
2037                         mode = get_irn_mode(args[i]);
2038                         if (mode != get_irn_mode(repl)) {
2039                                 repl = new_r_Conv(get_nodes_block(repl), repl, mode);
2040                         }
2041                         exchange(args[i], repl);
2042                 }
2043         }
2044
2045         /* the arg proj is not needed anymore now and should be only used by the anchor */
2046         assert(get_irn_n_edges(arg_tuple) == 1);
2047         kill_node(arg_tuple);
2048         set_irg_args(irg, new_r_Bad(irg));
2049
2050         /* All Return nodes hang on the End node, so look for them there. */
2051         end = get_irg_end_block(irg);
2052         for (i = 0, n = get_Block_n_cfgpreds(end); i < n; ++i) {
2053                 ir_node *irn = get_Block_cfgpred(end, i);
2054
2055                 if (is_Return(irn)) {
2056                         ir_node *blk = get_nodes_block(irn);
2057                         ir_node *mem = get_Return_mem(irn);
2058                         ir_node *ret = create_be_return(env, irn, blk, mem, get_Return_n_ress(irn));
2059                         exchange(irn, ret);
2060                 }
2061         }
2062
2063         /* if we have endless loops here, n might be <= 0. Do NOT create a be_Return then,
2064            the code is dead and will never be executed. */
2065 }
2066
2067 /** Fix the state inputs of calls that still hang on unknowns */
2068 static void fix_call_state_inputs(be_abi_irg_t *env)
2069 {
2070         const arch_env_t *arch_env = env->arch_env;
2071         int i, n, n_states;
2072         arch_register_t **stateregs = NEW_ARR_F(arch_register_t*, 0);
2073
2074         /* Collect caller save registers */
2075         n = arch_env_get_n_reg_class(arch_env);
2076         for (i = 0; i < n; ++i) {
2077                 unsigned j;
2078                 const arch_register_class_t *cls = arch_env_get_reg_class(arch_env, i);
2079                 for (j = 0; j < cls->n_regs; ++j) {
2080                         const arch_register_t *reg = arch_register_for_index(cls, j);
2081                         if (arch_register_type_is(reg, state)) {
2082                                 ARR_APP1(arch_register_t*, stateregs, (arch_register_t *)reg);
2083                         }
2084                 }
2085         }
2086
2087         n = ARR_LEN(env->calls);
2088         n_states = ARR_LEN(stateregs);
2089         for (i = 0; i < n; ++i) {
2090                 int s, arity;
2091                 ir_node *call = env->calls[i];
2092
2093                 arity = get_irn_arity(call);
2094
2095                 /* the state reg inputs are the last n inputs of the calls */
2096                 for (s = 0; s < n_states; ++s) {
2097                         int inp = arity - n_states + s;
2098                         const arch_register_t *reg = stateregs[s];
2099                         ir_node *regnode = be_abi_reg_map_get(env->regs, reg);
2100
2101                         set_irn_n(call, inp, regnode);
2102                 }
2103         }
2104
2105         DEL_ARR_F(stateregs);
2106 }
2107
2108 /**
2109  * Create a trampoline entity for the given method.
2110  */
2111 static ir_entity *create_trampoline(be_main_env_t *be, ir_entity *method)
2112 {
2113         ir_type   *type   = get_entity_type(method);
2114         ident     *old_id = get_entity_ld_ident(method);
2115         ident     *id     = id_mangle3("", old_id, "$stub");
2116         ir_type   *parent = be->pic_trampolines_type;
2117         ir_entity *ent    = new_entity(parent, old_id, type);
2118         set_entity_ld_ident(ent, id);
2119         set_entity_visibility(ent, ir_visibility_private);
2120
2121         return ent;
2122 }
2123
2124 /**
2125  * Returns the trampoline entity for the given method.
2126  */
2127 static ir_entity *get_trampoline(be_main_env_t *env, ir_entity *method)
2128 {
2129         ir_entity *result = pmap_get(env->ent_trampoline_map, method);
2130         if (result == NULL) {
2131                 result = create_trampoline(env, method);
2132                 pmap_insert(env->ent_trampoline_map, method, result);
2133         }
2134
2135         return result;
2136 }
2137
2138 static ir_entity *create_pic_symbol(be_main_env_t *be, ir_entity *entity)
2139 {
2140         ident     *old_id = get_entity_ld_ident(entity);
2141         ident     *id     = id_mangle3("", old_id, "$non_lazy_ptr");
2142         ir_type   *e_type = get_entity_type(entity);
2143         ir_type   *type   = new_type_pointer(e_type);
2144         ir_type   *parent = be->pic_symbols_type;
2145         ir_entity *ent    = new_entity(parent, old_id, type);
2146         set_entity_ld_ident(ent, id);
2147         set_entity_visibility(ent, ir_visibility_private);
2148
2149         return ent;
2150 }
2151
2152 static ir_entity *get_pic_symbol(be_main_env_t *env, ir_entity *entity)
2153 {
2154         ir_entity *result = pmap_get(env->ent_pic_symbol_map, entity);
2155         if (result == NULL) {
2156                 result = create_pic_symbol(env, entity);
2157                 pmap_insert(env->ent_pic_symbol_map, entity, result);
2158         }
2159
2160         return result;
2161 }
2162
2163
2164
2165 /**
2166  * Returns non-zero if a given entity can be accessed using a relative address.
2167  */
2168 static int can_address_relative(ir_entity *entity)
2169 {
2170         return get_entity_visibility(entity) != ir_visibility_external
2171                 && !(get_entity_linkage(entity) & IR_LINKAGE_MERGE);
2172 }
2173
2174 /** patches SymConsts to work in position independent code */
2175 static void fix_pic_symconsts(ir_node *node, void *data)
2176 {
2177         ir_graph     *irg;
2178         ir_node      *pic_base;
2179         ir_node      *add;
2180         ir_node      *block;
2181         ir_mode      *mode;
2182         ir_node      *load;
2183         ir_node      *load_res;
2184         be_abi_irg_t *env = data;
2185         int           arity, i;
2186         be_main_env_t *be = env->birg->main_env;
2187
2188         arity = get_irn_arity(node);
2189         for (i = 0; i < arity; ++i) {
2190                 dbg_info  *dbgi;
2191                 ir_node   *pred = get_irn_n(node, i);
2192                 ir_entity *entity;
2193                 ir_entity *pic_symbol;
2194                 ir_node   *pic_symconst;
2195
2196                 if (!is_SymConst(pred))
2197                         continue;
2198
2199                 entity = get_SymConst_entity(pred);
2200                 block  = get_nodes_block(pred);
2201                 irg    = get_irn_irg(pred);
2202
2203                 /* calls can jump to relative addresses, so we can directly jump to
2204                    the (relatively) known call address or the trampoline */
2205                 if (i == 1 && is_Call(node)) {
2206                         ir_entity *trampoline;
2207                         ir_node   *trampoline_const;
2208
2209                         if (can_address_relative(entity))
2210                                 continue;
2211
2212                         dbgi             = get_irn_dbg_info(pred);
2213                         trampoline       = get_trampoline(be, entity);
2214                         trampoline_const = new_rd_SymConst_addr_ent(dbgi, irg, mode_P_code,
2215                                                                     trampoline, NULL);
2216                         set_irn_n(node, i, trampoline_const);
2217                         continue;
2218                 }
2219
2220                 /* everything else is accessed relative to EIP */
2221                 mode     = get_irn_mode(pred);
2222                 pic_base = arch_code_generator_get_pic_base(env->birg->cg);
2223
2224                 /* all ok now for locally constructed stuff */
2225                 if (can_address_relative(entity)) {
2226                         ir_node *add = new_r_Add(block, pic_base, pred, mode);
2227
2228                         /* make sure the walker doesn't visit this add again */
2229                         mark_irn_visited(add);
2230                         set_irn_n(node, i, add);
2231                         continue;
2232                 }
2233
2234                 /* get entry from pic symbol segment */
2235                 dbgi         = get_irn_dbg_info(pred);
2236                 pic_symbol   = get_pic_symbol(be, entity);
2237                 pic_symconst = new_rd_SymConst_addr_ent(dbgi, irg, mode_P_code,
2238                                                         pic_symbol, NULL);
2239                 add = new_r_Add(block, pic_base, pic_symconst, mode);
2240                 mark_irn_visited(add);
2241
2242                 /* we need an extra indirection for global data outside our current
2243                    module. The loads are always safe and can therefore float
2244                    and need no memory input */
2245                 load     = new_r_Load(block, new_NoMem(), add, mode, cons_floats);
2246                 load_res = new_r_Proj(load, mode, pn_Load_res);
2247
2248                 set_irn_n(node, i, load_res);
2249         }
2250 }
2251
2252 be_abi_irg_t *be_abi_introduce(be_irg_t *birg)
2253 {
2254         be_abi_irg_t *env  = XMALLOC(be_abi_irg_t);
2255         ir_node *old_frame = get_irg_frame(birg->irg);
2256         ir_graph *irg      = birg->irg;
2257         struct obstack *obst = be_get_birg_obst(irg);
2258
2259         pmap_entry *ent;
2260         ir_node *dummy;
2261         unsigned *limited_bitset;
2262         arch_register_req_t *sp_req;
2263
2264         be_omit_fp      = birg->main_env->options->omit_fp;
2265         be_omit_leaf_fp = birg->main_env->options->omit_leaf_fp;
2266
2267         obstack_init(obst);
2268
2269         env->arch_env    = birg->main_env->arch_env;
2270         env->method_type = get_entity_type(get_irg_entity(irg));
2271         env->call        = be_abi_call_new(env->arch_env->sp->reg_class);
2272         arch_env_get_call_abi(env->arch_env, env->method_type, env->call);
2273
2274         env->ignore_regs  = pset_new_ptr_default();
2275         env->keep_map     = pmap_create();
2276         env->dce_survivor = new_survive_dce();
2277         env->birg         = birg;
2278         env->irg          = irg;
2279
2280         sp_req = OALLOCZ(obst, arch_register_req_t);
2281         env->sp_req = sp_req;
2282
2283         sp_req->type = arch_register_req_type_limited
2284                      | arch_register_req_type_produces_sp;
2285         sp_req->cls  = arch_register_get_class(env->arch_env->sp);
2286
2287         limited_bitset = rbitset_obstack_alloc(obst, sp_req->cls->n_regs);
2288         rbitset_set(limited_bitset, arch_register_get_index(env->arch_env->sp));
2289         sp_req->limited = limited_bitset;
2290         if (env->arch_env->sp->type & arch_register_type_ignore) {
2291                 sp_req->type |= arch_register_req_type_ignore;
2292         }
2293
2294         env->init_sp = dummy = new_r_Dummy(irg, env->arch_env->sp->reg_class->mode);
2295
2296         env->calls = NEW_ARR_F(ir_node*, 0);
2297
2298         if (birg->main_env->options->pic) {
2299                 irg_walk_graph(irg, fix_pic_symconsts, NULL, env);
2300         }
2301
2302         /* Lower all call nodes in the IRG. */
2303         process_calls(env);
2304
2305         /*
2306                 Beware: init backend abi call object after processing calls,
2307                 otherwise some information might be not yet available.
2308         */
2309         env->cb = env->call->cb->init(env->call, birg->main_env->arch_env, irg);
2310
2311         /* Process the IRG */
2312         modify_irg(env);
2313
2314         /* fix call inputs for state registers */
2315         fix_call_state_inputs(env);
2316
2317         /* We don't need the keep map anymore. */
2318         pmap_destroy(env->keep_map);
2319         env->keep_map = NULL;
2320
2321         /* calls array is not needed anymore */
2322         DEL_ARR_F(env->calls);
2323         env->calls = NULL;
2324
2325         /* reroute the stack origin of the calls to the true stack origin. */
2326         exchange(dummy, env->init_sp);
2327         exchange(old_frame, get_irg_frame(irg));
2328
2329         /* Make some important node pointers survive the dead node elimination. */
2330         survive_dce_register_irn(env->dce_survivor, &env->init_sp);
2331         foreach_pmap(env->regs, ent) {
2332                 survive_dce_register_irn(env->dce_survivor, (ir_node **) &ent->value);
2333         }
2334
2335         env->call->cb->done(env->cb);
2336         env->cb = NULL;
2337         return env;
2338 }
2339
2340 void be_abi_free(be_abi_irg_t *env)
2341 {
2342         be_abi_call_free(env->call);
2343         free_survive_dce(env->dce_survivor);
2344         del_pset(env->ignore_regs);
2345         pmap_destroy(env->regs);
2346         free(env);
2347 }
2348
2349 void be_abi_put_ignore_regs(be_abi_irg_t *abi, const arch_register_class_t *cls, bitset_t *bs)
2350 {
2351         arch_register_t *reg;
2352
2353         for (reg = pset_first(abi->ignore_regs); reg; reg = pset_next(abi->ignore_regs))
2354                 if (reg->reg_class == cls)
2355                         bitset_set(bs, reg->index);
2356 }
2357
2358 void be_abi_set_non_ignore_regs(be_abi_irg_t *abi, const arch_register_class_t *cls, unsigned *raw_bitset)
2359 {
2360         unsigned         i;
2361         arch_register_t *reg;
2362
2363         for (i = 0; i < cls->n_regs; ++i) {
2364                 if (arch_register_type_is(&cls->regs[i], ignore))
2365                         continue;
2366
2367                 rbitset_set(raw_bitset, i);
2368         }
2369
2370         for (reg = pset_first(abi->ignore_regs); reg != NULL;
2371              reg = pset_next(abi->ignore_regs)) {
2372                 if (reg->reg_class != cls)
2373                         continue;
2374
2375                 rbitset_clear(raw_bitset, reg->index);
2376         }
2377 }
2378
2379 /* Returns the stack layout from a abi environment. */
2380 const be_stack_layout_t *be_abi_get_stack_layout(const be_abi_irg_t *abi)
2381 {
2382         return &abi->frame;
2383 }
2384
2385 /*
2386
2387   _____ _        ____  _             _
2388  |  ___(_)_  __ / ___|| |_ __ _  ___| | __
2389  | |_  | \ \/ / \___ \| __/ _` |/ __| |/ /
2390  |  _| | |>  <   ___) | || (_| | (__|   <
2391  |_|   |_/_/\_\ |____/ \__\__,_|\___|_|\_\
2392
2393 */
2394
2395 typedef ir_node **node_array;
2396
2397 typedef struct fix_stack_walker_env_t {
2398         node_array sp_nodes;
2399 } fix_stack_walker_env_t;
2400
2401 /**
2402  * Walker. Collect all stack modifying nodes.
2403  */
2404 static void collect_stack_nodes_walker(ir_node *node, void *data)
2405 {
2406         ir_node                   *insn = node;
2407         fix_stack_walker_env_t    *env = data;
2408         const arch_register_req_t *req;
2409
2410         if (is_Proj(node)) {
2411                 insn = get_Proj_pred(node);
2412         }
2413
2414         if (arch_irn_get_n_outs(insn) == 0)
2415                 return;
2416
2417         req = arch_get_register_req_out(node);
2418         if (! (req->type & arch_register_req_type_produces_sp))
2419                 return;
2420
2421         ARR_APP1(ir_node*, env->sp_nodes, node);
2422 }
2423
2424 void be_abi_fix_stack_nodes(be_abi_irg_t *env)
2425 {
2426         be_ssa_construction_env_t senv;
2427         int i, len;
2428         ir_node **phis;
2429         be_irg_t *birg = env->birg;
2430         be_lv_t *lv = be_get_birg_liveness(birg);
2431         fix_stack_walker_env_t walker_env;
2432
2433         walker_env.sp_nodes = NEW_ARR_F(ir_node*, 0);
2434
2435         irg_walk_graph(birg->irg, collect_stack_nodes_walker, NULL, &walker_env);
2436
2437         /* nothing to be done if we didn't find any node, in fact we mustn't
2438          * continue, as for endless loops incsp might have had no users and is bad
2439          * now.
2440          */
2441         len = ARR_LEN(walker_env.sp_nodes);
2442         if (len == 0) {
2443                 DEL_ARR_F(walker_env.sp_nodes);
2444                 return;
2445         }
2446
2447         be_ssa_construction_init(&senv, birg);
2448         be_ssa_construction_add_copies(&senv, walker_env.sp_nodes,
2449                                    ARR_LEN(walker_env.sp_nodes));
2450         be_ssa_construction_fix_users_array(&senv, walker_env.sp_nodes,
2451                                             ARR_LEN(walker_env.sp_nodes));
2452
2453         if (lv != NULL) {
2454                 len = ARR_LEN(walker_env.sp_nodes);
2455                 for (i = 0; i < len; ++i) {
2456                         be_liveness_update(lv, walker_env.sp_nodes[i]);
2457                 }
2458                 be_ssa_construction_update_liveness_phis(&senv, lv);
2459         }
2460
2461         phis = be_ssa_construction_get_new_phis(&senv);
2462
2463         /* set register requirements for stack phis */
2464         len = ARR_LEN(phis);
2465         for (i = 0; i < len; ++i) {
2466                 ir_node *phi = phis[i];
2467                 be_set_phi_reg_req(phi, env->sp_req);
2468                 arch_set_irn_register(phi, env->arch_env->sp);
2469         }
2470         be_ssa_construction_destroy(&senv);
2471
2472         DEL_ARR_F(walker_env.sp_nodes);
2473 }
2474
2475 /**
2476  * Fix all stack accessing operations in the block bl.
2477  *
2478  * @param env        the abi environment
2479  * @param bl         the block to process
2480  * @param real_bias  the bias value
2481  *
2482  * @return the bias at the end of this block
2483  */
2484 static int process_stack_bias(be_abi_irg_t *env, ir_node *bl, int real_bias)
2485 {
2486         int               omit_fp  = env->call->flags.bits.try_omit_fp;
2487         ir_node          *irn;
2488         int               wanted_bias = real_bias;
2489
2490         sched_foreach(bl, irn) {
2491                 int ofs;
2492
2493                 /*
2494                    Check, if the node relates to an entity on the stack frame.
2495                    If so, set the true offset (including the bias) for that
2496                    node.
2497                  */
2498                 ir_entity *ent = arch_get_frame_entity(irn);
2499                 if (ent != NULL) {
2500                         int bias   = omit_fp ? real_bias : 0;
2501                         int offset = get_stack_entity_offset(&env->frame, ent, bias);
2502                         arch_set_frame_offset(irn, offset);
2503                         DBG((dbg, LEVEL_2, "%F has offset %d (including bias %d)\n",
2504                              ent, offset, bias));
2505                 }
2506
2507                 /*
2508                  * If the node modifies the stack pointer by a constant offset,
2509                  * record that in the bias.
2510                  */
2511                 ofs = arch_get_sp_bias(irn);
2512
2513                 if (be_is_IncSP(irn)) {
2514                         /* fill in real stack frame size */
2515                         if (ofs == BE_STACK_FRAME_SIZE_EXPAND) {
2516                                 ir_type *frame_type = get_irg_frame_type(env->birg->irg);
2517                                 ofs = (int) get_type_size_bytes(frame_type);
2518                                 be_set_IncSP_offset(irn, ofs);
2519                         } else if (ofs == BE_STACK_FRAME_SIZE_SHRINK) {
2520                                 ir_type *frame_type = get_irg_frame_type(env->birg->irg);
2521                                 ofs = - (int)get_type_size_bytes(frame_type);
2522                                 be_set_IncSP_offset(irn, ofs);
2523                         } else {
2524                                 if (be_get_IncSP_align(irn)) {
2525                                         /* patch IncSP to produce an aligned stack pointer */
2526                                         ir_type *between_type = env->frame.between_type;
2527                                         int      between_size = get_type_size_bytes(between_type);
2528                                         int      alignment    = 1 << env->arch_env->stack_alignment;
2529                                         int      delta        = (real_bias + ofs + between_size) & (alignment - 1);
2530                                         assert(ofs >= 0);
2531                                         if (delta > 0) {
2532                                                 be_set_IncSP_offset(irn, ofs + alignment - delta);
2533                                                 real_bias += alignment - delta;
2534                                         }
2535                                 } else {
2536                                         /* adjust so real_bias corresponds with wanted_bias */
2537                                         int delta = wanted_bias - real_bias;
2538                                         assert(delta <= 0);
2539                                         if (delta != 0) {
2540                                                 be_set_IncSP_offset(irn, ofs + delta);
2541                                                 real_bias += delta;
2542                                         }
2543                                 }
2544                         }
2545                 }
2546
2547                 real_bias   += ofs;
2548                 wanted_bias += ofs;
2549         }
2550
2551         assert(real_bias == wanted_bias);
2552         return real_bias;
2553 }
2554
2555 /**
2556  * A helper struct for the bias walker.
2557  */
2558 struct bias_walk {
2559         be_abi_irg_t *env;     /**< The ABI irg environment. */
2560         int           start_block_bias;  /**< The bias at the end of the start block. */
2561         int           between_size;
2562         ir_node      *start_block;  /**< The start block of the current graph. */
2563 };
2564
2565 /**
2566  * Block-Walker: fix all stack offsets for all blocks
2567  * except the start block
2568  */
2569 static void stack_bias_walker(ir_node *bl, void *data)
2570 {
2571         struct bias_walk *bw = data;
2572         if (bl != bw->start_block) {
2573                 process_stack_bias(bw->env, bl, bw->start_block_bias);
2574         }
2575 }
2576
2577 /**
2578  * Walker: finally lower all Sels of outer frame or parameter
2579  * entities.
2580  */
2581 static void lower_outer_frame_sels(ir_node *sel, void *ctx)
2582 {
2583         be_abi_irg_t *env = ctx;
2584         ir_node      *ptr;
2585         ir_entity    *ent;
2586         ir_type      *owner;
2587
2588         if (! is_Sel(sel))
2589                 return;
2590
2591         ent   = get_Sel_entity(sel);
2592         owner = get_entity_owner(ent);
2593         ptr   = get_Sel_ptr(sel);
2594
2595         if (owner == env->frame.frame_type || owner == env->frame.arg_type) {
2596                 /* found access to outer frame or arguments */
2597                 int offset = get_stack_entity_offset(&env->frame, ent, 0);
2598
2599                 if (offset != 0) {
2600                         ir_node  *bl   = get_nodes_block(sel);
2601                         dbg_info *dbgi = get_irn_dbg_info(sel);
2602                         ir_mode  *mode = get_irn_mode(sel);
2603                         ir_mode  *mode_UInt = get_reference_mode_unsigned_eq(mode);
2604                         ir_node  *cnst = new_r_Const_long(current_ir_graph, mode_UInt, offset);
2605
2606                         ptr = new_rd_Add(dbgi, bl, ptr, cnst, mode);
2607                 }
2608                 exchange(sel, ptr);
2609         }
2610 }
2611
2612 void be_abi_fix_stack_bias(be_abi_irg_t *env)
2613 {
2614         ir_graph          *irg = env->birg->irg;
2615         ir_type           *frame_tp;
2616         int               i;
2617         struct bias_walk  bw;
2618
2619         stack_frame_compute_initial_offset(&env->frame);
2620         // stack_layout_dump(stdout, frame);
2621
2622         /* Determine the stack bias at the end of the start block. */
2623         bw.start_block_bias = process_stack_bias(env, get_irg_start_block(irg), env->frame.initial_bias);
2624         bw.between_size     = get_type_size_bytes(env->frame.between_type);
2625
2626         /* fix the bias is all other blocks */
2627         bw.env = env;
2628         bw.start_block = get_irg_start_block(irg);
2629         irg_block_walk_graph(irg, stack_bias_walker, NULL, &bw);
2630
2631         /* fix now inner functions: these still have Sel node to outer
2632            frame and parameter entities */
2633         frame_tp = get_irg_frame_type(irg);
2634         for (i = get_class_n_members(frame_tp) - 1; i >= 0; --i) {
2635                 ir_entity *ent = get_class_member(frame_tp, i);
2636                 ir_graph  *irg = get_entity_irg(ent);
2637
2638                 if (irg != NULL) {
2639                         irg_walk_graph(irg, NULL, lower_outer_frame_sels, env);
2640                 }
2641         }
2642 }
2643
2644 ir_node *be_abi_get_callee_save_irn(be_abi_irg_t *abi, const arch_register_t *reg)
2645 {
2646         assert(arch_register_type_is(reg, callee_save));
2647         assert(pmap_contains(abi->regs, (void *) reg));
2648         return pmap_get(abi->regs, (void *) reg);
2649 }
2650
2651 ir_node *be_abi_get_ignore_irn(be_abi_irg_t *abi, const arch_register_t *reg)
2652 {
2653         assert(arch_register_type_is(reg, ignore));
2654         assert(pmap_contains(abi->regs, (void *) reg));
2655         return pmap_get(abi->regs, (void *) reg);
2656 }
2657
2658 /**
2659  * Returns non-zero if the ABI has omitted the frame pointer in
2660  * the current graph.
2661  */
2662 int be_abi_omit_fp(const be_abi_irg_t *abi)
2663 {
2664         return abi->call->flags.bits.try_omit_fp;
2665 }
2666
2667 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_abi);
2668 void be_init_abi(void)
2669 {
2670         FIRM_DBG_REGISTER(dbg, "firm.be.abi");
2671 }