new irg finish module
[libfirm] / ir / be / beabi.c
1 /**
2  * ABI lowering.
3  *
4  * @author Sebastian Hack
5  * @date   7.3.2005
6  * @cvsid  $Id$
7  */
8
9 #ifdef HAVE_CONFIG_H
10 # include "config.h"
11 #endif
12
13 #include "obst.h"
14 #include "offset.h"
15
16 #include "type.h"
17 #include "irgopt.h"
18
19 #include "irgraph_t.h"
20 #include "irnode_t.h"
21 #include "ircons_t.h"
22 #include "iredges_t.h"
23 #include "irgmod.h"
24 #include "irgwalk.h"
25 #include "irprintf_t.h"
26 #include "irgopt.h"
27
28 #include "be.h"
29 #include "beabi.h"
30 #include "bearch.h"
31 #include "benode_t.h"
32 #include "belive_t.h"
33 #include "besched_t.h"
34
35 #define MAX(x, y) ((x) > (y) ? (x) : (y))
36 #define MIN(x, y) ((x) < (y) ? (x) : (y))
37
38 typedef struct _be_abi_call_arg_t {
39         unsigned is_res   : 1;  /**< 1: the call argument is a return value. 0: it's a call parameter. */
40         unsigned in_reg   : 1;  /**< 1: this argument is transmitted in registers. */
41         unsigned on_stack : 1;  /**< 1: this argument is transmitted on the stack. */
42
43         int pos;
44         const arch_register_t *reg;
45         entity *stack_ent;
46         unsigned alignment;
47         unsigned space_before;
48         unsigned space_after;
49 } be_abi_call_arg_t;
50
51 struct _be_abi_call_t {
52         be_abi_call_flags_t flags;
53         const be_abi_callbacks_t *cb;
54         ir_type *between_type;
55         set *params;
56 };
57
58 #define N_FRAME_TYPES 3
59
60 /**
61  * This type describes the stack layout.
62  * The stack is divided into 3 parts:
63  * - arg_type:     A struct type describing the stack arguments and it's order.
64  * - between_type: A struct type describing the stack layout between arguments
65  *                 and frame type
66  * - frame_type:   A class type descibing the frame layout
67  */
68 typedef struct _be_stack_layout_t {
69         ir_type *arg_type;                 /**< A type describing the stack argument layout. */
70         ir_type *between_type;             /**< A type describing the "between" layout. */
71         ir_type *frame_type;               /**< The frame type. */
72
73         ir_type *order[N_FRAME_TYPES];     /**< arg, between and frame types ordered. */
74
75         int initial_offset;
76         int stack_dir;                     /**< -1 for decreasing, 1 for increasing. */
77 } be_stack_layout_t;
78
79 struct _be_abi_irg_t {
80         struct obstack       obst;
81         be_stack_layout_t    *frame;        /**< The stack frame model. */
82         const be_irg_t       *birg;         /**< The back end IRG. */
83         const arch_isa_t     *isa;          /**< The isa. */
84         survive_dce_t        *dce_survivor;
85
86         be_abi_call_t        *call;         /**< The ABI call information. */
87         ir_type              *method_type;  /**< The type of the method of the IRG. */
88
89         ir_node              *init_sp;      /**< The node representing the stack pointer
90                                                                              at the start of the function. */
91
92         ir_node              *reg_params;   /**< The reg params node. */
93         pmap                 *regs;         /**< A map of all callee-save and ignore regs to
94                                                                                         their Projs to the RegParams node. */
95
96         pset                 *stack_phis;   /**< The set of all Phi nodes inserted due to
97                                                                                         stack pointer modifying nodes. */
98
99         int                  start_block_bias;  /**< The stack bias at the end of the start block. */
100
101         void                 *cb;           /**< ABI Callback self pointer. */
102
103         pmap                 *keep_map;     /**< mapping blocks to keep nodes. */
104         pset                 *ignore_regs;  /**< Additional registers which shall be ignored. */
105
106         arch_irn_handler_t irn_handler;
107         arch_irn_ops_t     irn_ops;
108         DEBUG_ONLY(firm_dbg_module_t    *dbg;)          /**< The debugging module. */
109 };
110
111 #define get_abi_from_handler(ptr) firm_container_of(ptr, be_abi_irg_t, irn_handler)
112 #define get_abi_from_ops(ptr)     firm_container_of(ptr, be_abi_irg_t, irn_ops)
113
114 /* Forward, since be need it in be_abi_introduce(). */
115 static const arch_irn_ops_if_t abi_irn_ops;
116 static const arch_irn_handler_t abi_irn_handler;
117
118 /* Flag: if set, try to omit the frame pointer if called by the backend */
119 int be_omit_fp = 1;
120
121 /*
122      _    ____ ___    ____      _ _ _                _
123     / \  | __ )_ _|  / ___|__ _| | | |__   __ _  ___| | _____
124    / _ \ |  _ \| |  | |   / _` | | | '_ \ / _` |/ __| |/ / __|
125   / ___ \| |_) | |  | |__| (_| | | | |_) | (_| | (__|   <\__ \
126  /_/   \_\____/___|  \____\__,_|_|_|_.__/ \__,_|\___|_|\_\___/
127
128   These callbacks are used by the backend to set the parameters
129   for a specific call type.
130 */
131
132 /**
133  * Set compare function: compares two ABI call object arguments.
134  */
135 static int cmp_call_arg(const void *a, const void *b, size_t n)
136 {
137         const be_abi_call_arg_t *p = a, *q = b;
138         return !(p->is_res == q->is_res && p->pos == q->pos);
139 }
140
141 /**
142  * Get or set an ABI call object argument.
143  *
144  * @param call      the abi call
145  * @param is_res    true for call results, false for call arguments
146  * @param pos       position of the argument
147  * @param do_insert true if the argument is set, false if it's retrieved
148  */
149 static be_abi_call_arg_t *get_or_set_call_arg(be_abi_call_t *call, int is_res, int pos, int do_insert)
150 {
151         be_abi_call_arg_t arg;
152         unsigned hash;
153
154         memset(&arg, 0, sizeof(arg));
155         arg.is_res = is_res;
156         arg.pos    = pos;
157
158         hash = is_res * 128 + pos;
159
160         return do_insert
161                 ? set_insert(call->params, &arg, sizeof(arg), hash)
162                 : set_find(call->params, &arg, sizeof(arg), hash);
163 }
164
165 /**
166  * Retrieve an ABI call object argument.
167  *
168  * @param call      the ABI call object
169  * @param is_res    true for call results, false for call arguments
170  * @param pos       position of the argument
171  */
172 static INLINE be_abi_call_arg_t *get_call_arg(be_abi_call_t *call, int is_res, int pos)
173 {
174         return get_or_set_call_arg(call, is_res, pos, 0);
175 }
176
177 /* Set the flags for a call. */
178 void be_abi_call_set_flags(be_abi_call_t *call, be_abi_call_flags_t flags, const be_abi_callbacks_t *cb)
179 {
180         call->flags        = flags;
181         call->cb           = cb;
182 }
183
184 void be_abi_call_param_stack(be_abi_call_t *call, int arg_pos, unsigned alignment, unsigned space_before, unsigned space_after)
185 {
186         be_abi_call_arg_t *arg = get_or_set_call_arg(call, 0, arg_pos, 1);
187         arg->on_stack     = 1;
188         arg->alignment    = alignment;
189         arg->space_before = space_before;
190         arg->space_after  = space_after;
191         assert(alignment > 0 && "Alignment must be greater than 0");
192 }
193
194 void be_abi_call_param_reg(be_abi_call_t *call, int arg_pos, const arch_register_t *reg)
195 {
196         be_abi_call_arg_t *arg = get_or_set_call_arg(call, 0, arg_pos, 1);
197         arg->in_reg = 1;
198         arg->reg = reg;
199 }
200
201 void be_abi_call_res_reg(be_abi_call_t *call, int arg_pos, const arch_register_t *reg)
202 {
203         be_abi_call_arg_t *arg = get_or_set_call_arg(call, 1, arg_pos, 1);
204         arg->in_reg = 1;
205         arg->reg = reg;
206 }
207
208 /* Get the flags of a ABI call object. */
209 be_abi_call_flags_t be_abi_call_get_flags(const be_abi_call_t *call)
210 {
211         return call->flags;
212 }
213
214 /**
215  * Constructor for a new ABI call object.
216  *
217  * @return the new ABI call object
218  */
219 static be_abi_call_t *be_abi_call_new()
220 {
221         be_abi_call_t *call = xmalloc(sizeof(call[0]));
222         call->flags.val  = 0;
223         call->params     = new_set(cmp_call_arg, 16);
224         call->cb         = NULL;
225
226         call->flags.bits.try_omit_fp = be_omit_fp;
227         return call;
228 }
229
230 /**
231  * Destructor for an ABI call object.
232  */
233 static void be_abi_call_free(be_abi_call_t *call)
234 {
235         del_set(call->params);
236         free(call);
237 }
238
239 /*
240   _____                           _   _                 _ _ _
241  |  ___| __ __ _ _ __ ___   ___  | | | | __ _ _ __   __| | (_)_ __   __ _
242  | |_ | '__/ _` | '_ ` _ \ / _ \ | |_| |/ _` | '_ \ / _` | | | '_ \ / _` |
243  |  _|| | | (_| | | | | | |  __/ |  _  | (_| | | | | (_| | | | | | | (_| |
244  |_|  |_|  \__,_|_| |_| |_|\___| |_| |_|\__,_|_| |_|\__,_|_|_|_| |_|\__, |
245                                                                     |___/
246
247   Handling of the stack frame. It is composed of three types:
248   1) The type of the arguments which are pushed on the stack.
249   2) The "between type" which consists of stuff the call of the
250      function pushes on the stack (like the return address and
251          the old base pointer for ia32).
252   3) The Firm frame type which consists of all local variables
253      and the spills.
254 */
255
256 static int get_stack_entity_offset(be_stack_layout_t *frame, entity *ent, int bias)
257 {
258         ir_type *t = get_entity_owner(ent);
259         int ofs    = get_entity_offset_bytes(ent);
260
261         int i, index;
262
263         /* Find the type the entity is contained in. */
264         for(index = 0; index < N_FRAME_TYPES; ++index) {
265                 if(frame->order[index] == t)
266                         break;
267         }
268
269         /* Add the size of all the types below the one of the entity to the entity's offset */
270         for(i = 0; i < index; ++i)
271                 ofs += get_type_size_bytes(frame->order[i]);
272
273         /* correct the offset by the initial position of the frame pointer */
274         ofs -= frame->initial_offset;
275
276         /* correct the offset with the current bias. */
277         ofs += bias;
278
279         return ofs;
280 }
281
282 /**
283  * Retrieve the entity with given offset from a frame type.
284  */
285 static entity *search_ent_with_offset(ir_type *t, int offset)
286 {
287         int i, n;
288
289         for(i = 0, n = get_compound_n_members(t); i < n; ++i) {
290                 entity *ent = get_compound_member(t, i);
291                 if(get_entity_offset_bytes(ent) == offset)
292                         return ent;
293         }
294
295         return NULL;
296 }
297
298 static int stack_frame_compute_initial_offset(be_stack_layout_t *frame)
299 {
300         ir_type *base = frame->stack_dir < 0 ? frame->between_type : frame->frame_type;
301         entity *ent   = search_ent_with_offset(base, 0);
302         frame->initial_offset = 0;
303         frame->initial_offset = get_stack_entity_offset(frame, ent, 0);
304         return frame->initial_offset;
305 }
306
307 /**
308  * Initializes the frame layout from parts
309  *
310  * @param frame     the stack layout that will be initialized
311  * @param args      the stack argument layout type
312  * @param between   the between layout type
313  * @param locals    the method frame type
314  * @param stack_dir the stack direction
315  *
316  * @return the initialized stack layout
317  */
318 static be_stack_layout_t *stack_frame_init(be_stack_layout_t *frame, ir_type *args,
319                                            ir_type *between, ir_type *locals, int stack_dir)
320 {
321         frame->arg_type       = args;
322         frame->between_type   = between;
323         frame->frame_type     = locals;
324         frame->initial_offset = 0;
325         frame->stack_dir      = stack_dir;
326         frame->order[1]       = between;
327
328         if(stack_dir > 0) {
329                 frame->order[0] = args;
330                 frame->order[2] = locals;
331         }
332         else {
333                 frame->order[0] = locals;
334                 frame->order[2] = args;
335         }
336         return frame;
337 }
338
339 /** Dumps the stack layout to file. */
340 static void stack_layout_dump(FILE *file, be_stack_layout_t *frame)
341 {
342         int i, j, n;
343
344         ir_fprintf(file, "initial offset: %d\n", frame->initial_offset);
345         for (j = 0; j < N_FRAME_TYPES; ++j) {
346                 ir_type *t = frame->order[j];
347
348                 ir_fprintf(file, "type %d: %F size: %d\n", j, t, get_type_size_bytes(t));
349                 for (i = 0, n = get_compound_n_members(t); i < n; ++i) {
350                         entity *ent = get_compound_member(t, i);
351                         ir_fprintf(file, "\t%F int ofs: %d glob ofs: %d\n", ent, get_entity_offset_bytes(ent), get_stack_entity_offset(frame, ent, 0));
352                 }
353         }
354 }
355
356 /**
357  * Returns non-zero if the call argument at given position
358  * is transfered on the stack.
359  */
360 static INLINE int is_on_stack(be_abi_call_t *call, int pos)
361 {
362         be_abi_call_arg_t *arg = get_call_arg(call, 0, pos);
363         return arg && !arg->in_reg;
364 }
365
366 /*
367    ____      _ _
368   / ___|__ _| | |___
369  | |   / _` | | / __|
370  | |__| (_| | | \__ \
371   \____\__,_|_|_|___/
372
373   Adjustment of the calls inside a graph.
374
375 */
376
377 /**
378  * Transform a call node.
379  * @param env The ABI environment for the current irg.
380  * @param irn The call node.
381  * @param curr_sp The stack pointer node to use.
382  * @return The stack pointer after the call.
383  */
384 static ir_node *adjust_call(be_abi_irg_t *env, ir_node *irn, ir_node *curr_sp)
385 {
386         ir_graph *irg             = env->birg->irg;
387         const arch_isa_t *isa     = env->birg->main_env->arch_env->isa;
388         be_abi_call_t *call       = be_abi_call_new();
389         ir_type *mt               = get_Call_type(irn);
390         ir_node *call_ptr         = get_Call_ptr(irn);
391         int n_params              = get_method_n_params(mt);
392         ir_node *curr_mem         = get_Call_mem(irn);
393         ir_node *bl               = get_nodes_block(irn);
394         pset *results             = pset_new_ptr(8);
395         pset *caller_save         = pset_new_ptr(8);
396         int stack_size            = 0;
397         int stack_dir             = arch_isa_stack_dir(isa);
398         const arch_register_t *sp = arch_isa_sp(isa);
399         ir_mode *mach_mode        = sp->reg_class->mode;
400         struct obstack *obst      = &env->obst;
401         ir_node *no_mem           = get_irg_no_mem(irg);
402         int no_alloc              = call->flags.bits.frame_is_setup_on_call;
403
404         ir_node *res_proj = NULL;
405         int curr_res_proj = pn_Call_max;
406         int n_low_args    = 0;
407         int n_pos         = 0;
408
409         ir_node *low_call;
410         ir_node **in;
411         ir_node **res_projs;
412         const ir_edge_t *edge;
413         int *low_args;
414         int *pos;
415         int i, n;
416
417         /* Let the isa fill out the abi description for that call node. */
418         arch_isa_get_call_abi(isa, mt, call);
419
420         /* Insert code to put the stack arguments on the stack. */
421         assert(get_Call_n_params(irn) == n_params);
422         for(i = 0; i < n_params; ++i) {
423                 be_abi_call_arg_t *arg = get_call_arg(call, 0, i);
424                 assert(arg);
425                 if(arg->on_stack) {
426                         stack_size += arg->space_before;
427                         stack_size =  round_up2(stack_size, arg->alignment);
428                         stack_size += get_type_size_bytes(get_method_param_type(mt, i));
429                         stack_size += arg->space_after;
430                         obstack_int_grow(obst, i);
431                         n_pos++;
432                 }
433         }
434         pos = obstack_finish(obst);
435
436         /* Collect all arguments which are passed in registers. */
437         for(i = 0, n = get_Call_n_params(irn); i < n; ++i) {
438                 be_abi_call_arg_t *arg = get_call_arg(call, 0, i);
439                 if(arg && arg->in_reg) {
440                         obstack_int_grow(obst, i);
441                         n_low_args++;
442                 }
443         }
444         low_args = obstack_finish(obst);
445
446         /* If there are some parameters which shall be passed on the stack. */
447         if(n_pos > 0) {
448                 int curr_ofs      = 0;
449                 int do_seq        = call->flags.bits.store_args_sequential && !no_alloc;
450
451                 /*
452                  * Reverse list of stack parameters if call arguments are from left to right.
453                  * We must them reverse again in they are pushed (not stored) and the stack
454                  * direction is downwards.
455                  */
456                 if (call->flags.bits.left_to_right ^ (do_seq && stack_dir < 0)) {
457                         for(i = 0; i < n_pos >> 1; ++i) {
458                                 int other  = n_pos - i - 1;
459                                 int tmp    = pos[i];
460                                 pos[i]     = pos[other];
461                                 pos[other] = tmp;
462                         }
463                 }
464
465                 /*
466                  * If the stack is decreasing and we do not want to store sequentially,
467                  * or someone else allocated the call frame
468                  * we allocate as much space on the stack all parameters need, by
469                  * moving the stack pointer along the stack's direction.
470                  */
471                 if(stack_dir < 0 && !do_seq && !no_alloc) {
472                         curr_sp = be_new_IncSP(sp, irg, bl, curr_sp, no_mem, stack_size, be_stack_dir_expand);
473                 }
474
475                 assert(mode_is_reference(mach_mode) && "machine mode must be pointer");
476                 for(i = 0; i < n_pos; ++i) {
477                         int p                  = pos[i];
478                         be_abi_call_arg_t *arg = get_call_arg(call, 0, p);
479                         ir_node *param         = get_Call_param(irn, p);
480                         ir_node *addr          = curr_sp;
481                         ir_node *mem           = NULL;
482                         ir_type *param_type    = get_method_param_type(mt, p);
483                         int param_size         = get_type_size_bytes(param_type) + arg->space_after;
484
485                         /*
486                          * If we wanted to build the arguments sequentially,
487                          * the stack pointer for the next must be incremented,
488                          * and the memory value propagated.
489                          */
490                         if (do_seq) {
491                                 curr_ofs = 0;
492                                 addr = curr_sp = be_new_IncSP(sp, irg, bl, curr_sp, curr_mem,
493                                         param_size + arg->space_before, be_stack_dir_expand);
494                         }
495                         else {
496                                 curr_ofs += arg->space_before;
497                                 curr_ofs =  round_up2(curr_ofs, arg->alignment);
498
499                                 /* Make the expression to compute the argument's offset. */
500                                 if(curr_ofs > 0) {
501                                         addr = new_r_Const_long(irg, bl, mode_Is, curr_ofs);
502                                         addr = new_r_Add(irg, bl, curr_sp, addr, mach_mode);
503                                 }
504                         }
505
506                         /* Insert a store for primitive arguments. */
507                         if (is_atomic_type(param_type)) {
508                                 mem = new_r_Store(irg, bl, curr_mem, addr, param);
509                                 mem = new_r_Proj(irg, bl, mem, mode_M, pn_Store_M);
510                         }
511
512                         /* Make a mem copy for compound arguments. */
513                         else {
514                                 assert(mode_is_reference(get_irn_mode(param)));
515                                 mem = new_r_CopyB(irg, bl, curr_mem, addr, param, param_type);
516                                 mem = new_r_Proj(irg, bl, mem, mode_M, pn_CopyB_M_regular);
517                         }
518
519                         curr_ofs += param_size;
520
521                         if (do_seq)
522                                 curr_mem = mem;
523                         else
524                                 obstack_ptr_grow(obst, mem);
525                 }
526
527                 in = (ir_node **) obstack_finish(obst);
528
529                 /* We need the sync only, if we didn't build the stores sequentially. */
530                 if(!do_seq)
531                         curr_mem = new_r_Sync(irg, bl, n_pos, in);
532                 obstack_free(obst, in);
533         }
534
535         /* Collect caller save registers */
536         for(i = 0, n = arch_isa_get_n_reg_class(isa); i < n; ++i) {
537                 int j;
538                 const arch_register_class_t *cls = arch_isa_get_reg_class(isa, i);
539                 for(j = 0; j < cls->n_regs; ++j) {
540                         const arch_register_t *reg = arch_register_for_index(cls, j);
541                         if(arch_register_type_is(reg, caller_save))
542                                 pset_insert_ptr(caller_save, (void *) reg);
543                 }
544         }
545
546         /* search the greatest result proj number */
547
548         /* TODO: what if the result is NOT used? Currently there is
549          * no way to detect this later, especially there is no way to
550          * see this in the proj numbers.
551          * While this is ok for the register allocator, it is bad for
552          * backends which need to change the be_Call further (x87 simulator
553          * for instance. However for this particular case the call_type is
554          * sufficient.).
555          */
556         foreach_out_edge(irn, edge) {
557                 const ir_edge_t *res_edge;
558                 ir_node *irn = get_edge_src_irn(edge);
559
560                 if(is_Proj(irn) && get_Proj_proj(irn) == pn_Call_T_result) {
561                         res_proj = irn;
562                         foreach_out_edge(irn, res_edge) {
563                                 int proj;
564                                 be_abi_call_arg_t *arg;
565                                 ir_node *res = get_edge_src_irn(res_edge);
566
567                                 assert(is_Proj(res));
568
569                                 proj = get_Proj_proj(res);
570                                 arg = get_call_arg(call, 1, proj);
571
572                                 /*
573                                         shift the proj number to the right, since we will drop the
574                                         unspeakable Proj_T from the Call. Therefore, all real argument
575                                         Proj numbers must be increased by pn_be_Call_first_res
576                                 */
577                                 proj += pn_be_Call_first_res;
578                                 set_Proj_proj(res, proj);
579                                 obstack_ptr_grow(obst, res);
580
581                                 if(proj > curr_res_proj)
582                                         curr_res_proj = proj;
583                                 if(arg->in_reg) {
584                                         pset_remove_ptr(caller_save, arg->reg);
585                                         //pmap_insert(arg_regs, arg->reg, INT_TO_PTR(proj + 1))
586                                 }
587                         }
588                 }
589         }
590
591         curr_res_proj++;
592         obstack_ptr_grow(obst, NULL);
593         res_projs = obstack_finish(obst);
594
595         /* make the back end call node and set its register requirements. */
596         for(i = 0; i < n_low_args; ++i)
597                 obstack_ptr_grow(obst, get_Call_param(irn, low_args[i]));
598
599         in = obstack_finish(obst);
600
601         if(env->call->flags.bits.call_has_imm && get_irn_opcode(call_ptr) == iro_SymConst) {
602                 low_call = be_new_Call(get_irn_dbg_info(irn), irg, bl, curr_mem, curr_sp, curr_sp,
603                                        curr_res_proj + pset_count(caller_save), n_low_args, in,
604                                        get_Call_type(irn));
605                 be_Call_set_entity(low_call, get_SymConst_entity(call_ptr));
606         }
607
608         else
609                 low_call = be_new_Call(get_irn_dbg_info(irn), irg, bl, curr_mem, curr_sp, call_ptr,
610                                        curr_res_proj + pset_count(caller_save), n_low_args, in,
611                                        get_Call_type(irn));
612
613         /*
614                 TODO:
615                 Set the register class of the call address to the same as the stack pointer's.
616                 That' probably buggy for some architectures.
617         */
618         be_node_set_reg_class(low_call, be_pos_Call_ptr, sp->reg_class);
619
620         /* Set the register classes and constraints of the Call parameters. */
621         for(i = 0; i < n_low_args; ++i) {
622                 int index = low_args[i];
623                 be_abi_call_arg_t *arg = get_call_arg(call, 0, index);
624                 assert(arg->reg != NULL);
625
626                 be_set_constr_single_reg(low_call, be_pos_Call_first_arg + index, arg->reg);
627         }
628
629         /* Set the register constraints of the results. */
630         for(i = 0; res_projs[i]; ++i) {
631                 ir_node *irn                 = res_projs[i];
632                 int proj                     = get_Proj_proj(irn);
633
634                 /* Correct Proj number since it has been adjusted! (see above) */
635                 const be_abi_call_arg_t *arg = get_call_arg(call, 1, proj - pn_Call_max);
636
637                 assert(arg->in_reg);
638                 be_set_constr_single_reg(low_call, BE_OUT_POS(proj), arg->reg);
639         }
640         obstack_free(obst, in);
641         exchange(irn, low_call);
642
643         /* redirect the result projs to the lowered call instead of the Proj_T */
644         for(i = 0; res_projs[i]; ++i)
645                 set_Proj_pred(res_projs[i], low_call);
646
647         /* Make additional projs for the caller save registers
648            and the Keep node which keeps them alive. */
649         if(pset_count(caller_save) > 0) {
650                 const arch_register_t *reg;
651                 ir_node **in, *keep;
652                 int i, n;
653
654                 for(reg = pset_first(caller_save), n = 0; reg; reg = pset_next(caller_save), ++n) {
655                         ir_node *proj = new_r_Proj(irg, bl, low_call, reg->reg_class->mode, curr_res_proj);
656
657                         /* memorize the register in the link field. we need afterwards to set the register class of the keep correctly. */
658                         be_set_constr_single_reg(low_call, BE_OUT_POS(curr_res_proj), reg);
659                         set_irn_link(proj, (void *) reg);
660                         obstack_ptr_grow(obst, proj);
661                         curr_res_proj++;
662                 }
663
664                 in   = (ir_node **) obstack_finish(obst);
665                 keep = be_new_Keep(NULL, irg, bl, n, in);
666                 for(i = 0; i < n; ++i) {
667                         const arch_register_t *reg = get_irn_link(in[i]);
668                         be_node_set_reg_class(keep, i, reg->reg_class);
669                 }
670                 obstack_free(obst, in);
671         }
672
673         /* Clean up the stack. */
674         if(stack_size > 0) {
675                 ir_node *mem_proj = NULL;
676
677                 foreach_out_edge(low_call, edge) {
678                         ir_node *irn = get_edge_src_irn(edge);
679                         if(is_Proj(irn) && get_Proj_proj(irn) == pn_Call_M) {
680                                 mem_proj = irn;
681                                 break;
682                         }
683                 }
684
685                 if(!mem_proj)
686                         mem_proj = new_r_Proj(irg, bl, low_call, mode_M, pn_Call_M);
687
688                  /* Clean up the stack frame if we allocated it */
689                 if(!no_alloc)
690                         curr_sp = be_new_IncSP(sp, irg, bl, curr_sp, mem_proj, stack_size, be_stack_dir_shrink);
691         }
692
693         be_abi_call_free(call);
694         obstack_free(obst, pos);
695         del_pset(results);
696         del_pset(caller_save);
697
698         return curr_sp;
699 }
700
701 /**
702  * Adjust an alloca.
703  * The alloca is transformed into a back end alloca node and connected to the stack nodes.
704  */
705 static ir_node *adjust_alloc(be_abi_irg_t *env, ir_node *alloc, ir_node *curr_sp)
706 {
707         if (get_Alloc_where(alloc) == stack_alloc) {
708                 ir_node *bl        = get_nodes_block(alloc);
709                 ir_graph *irg      = get_irn_irg(bl);
710                 ir_node *alloc_mem = NULL;
711                 ir_node *alloc_res = NULL;
712
713                 const ir_edge_t *edge;
714                 ir_node *new_alloc;
715
716                 foreach_out_edge(alloc, edge) {
717                         ir_node *irn = get_edge_src_irn(edge);
718
719                         assert(is_Proj(irn));
720                         switch(get_Proj_proj(irn)) {
721                         case pn_Alloc_M:
722                                 alloc_mem = irn;
723                                 break;
724                         case pn_Alloc_res:
725                                 alloc_res = irn;
726                                 break;
727                         default:
728                                 break;
729                         }
730                 }
731
732                 /* Beware: currently Alloc nodes without a result might happen,
733                    only escape analysis kills them and this phase runs only for object
734                    oriented source. We kill the Alloc here. */
735                 if (alloc_res == NULL) {
736                         exchange(alloc_mem, get_Alloc_mem(alloc));
737                         return curr_sp;
738                 }
739
740                 /* The stack pointer will be modified in an unknown manner.
741                    We cannot omit it. */
742                 env->call->flags.bits.try_omit_fp = 0;
743                 new_alloc = be_new_AddSP(env->isa->sp, irg, bl, curr_sp, get_Alloc_size(alloc));
744
745                 exchange(alloc_res, env->isa->stack_dir < 0 ? new_alloc : curr_sp);
746
747                 if(alloc_mem != NULL)
748                         exchange(alloc_mem, new_r_NoMem(irg));
749
750                 curr_sp = new_alloc;
751         }
752
753         return curr_sp;
754 }
755
756 /**
757  * Walker for dependent_on().
758  * This function searches a node tgt recursively from a given node
759  * but is restricted to the given block.
760  * @return 1 if tgt was reachable from curr, 0 if not.
761  */
762 static int check_dependence(ir_node *curr, ir_node *tgt, ir_node *bl, unsigned long visited_nr)
763 {
764         int n, i;
765
766         if(get_irn_visited(curr) >= visited_nr)
767                 return 0;
768
769         set_irn_visited(curr, visited_nr);
770         if(get_nodes_block(curr) != bl)
771                 return 0;
772
773         if(curr == tgt)
774                 return 1;
775
776         /* Phi functions stop the recursion inside a basic block */
777         if(!is_Phi(curr)) {
778                 for(i = 0, n = get_irn_arity(curr); i < n; ++i) {
779                         if(check_dependence(get_irn_n(curr, i), tgt, bl, visited_nr))
780                                 return 1;
781                 }
782         }
783
784         return 0;
785 }
786
787 /**
788  * Check if a node is somehow data dependent on another one.
789  * both nodes must be in the same basic block.
790  * @param n1 The first node.
791  * @param n2 The second node.
792  * @return 1, if n1 is data dependent (transitively) on n2, 0 if not.
793  */
794 static int dependent_on(ir_node *n1, ir_node *n2)
795 {
796         ir_node *bl   = get_nodes_block(n1);
797         ir_graph *irg = get_irn_irg(bl);
798         long vis_nr   = get_irg_visited(irg) + 1;
799
800         assert(bl == get_nodes_block(n2));
801         set_irg_visited(irg, vis_nr);
802         return check_dependence(n1, n2, bl, vis_nr);
803 }
804
805 static int cmp_call_dependecy(const void *c1, const void *c2)
806 {
807         ir_node *n1 = *(ir_node **) c1;
808         ir_node *n2 = *(ir_node **) c2;
809
810         /*
811                 Classical qsort() comparison function behavior:
812                 0  if both elements are equal
813                 1  if second is "smaller" that first
814                 -1 if first is "smaller" that second
815         */
816         return n1 == n2 ? 0 : (dependent_on(n1, n2) ? -1 : 1);
817 }
818
819 /**
820  * Walker: links all Call nodes to the Block they are contained.
821  */
822 static void link_calls_in_block_walker(ir_node *irn, void *data)
823 {
824         if(is_Call(irn)) {
825                 be_abi_irg_t *env = data;
826                 ir_node *bl       = get_nodes_block(irn);
827                 void *save        = get_irn_link(bl);
828
829                 env->call->flags.bits.irg_is_leaf = 0;
830
831                 set_irn_link(irn, save);
832                 set_irn_link(bl, irn);
833         }
834 }
835
836 /**
837  * Block-walker:
838  * Process all Call nodes inside a basic block.
839  * Note that the link field of the block must contain a linked list of all
840  * Call nodes inside the Block. We first order this list according to data dependency
841  * and that connect the calls together.
842  */
843 static void process_calls_in_block(ir_node *bl, void *data)
844 {
845         be_abi_irg_t *env = data;
846         ir_node *curr_sp  = env->init_sp;
847         ir_node *irn;
848         int n;
849
850         for(irn = get_irn_link(bl), n = 0; irn; irn = get_irn_link(irn), ++n)
851                 obstack_ptr_grow(&env->obst, irn);
852
853         /* If there were call nodes in the block. */
854         if(n > 0) {
855                 ir_node *keep;
856                 ir_node **nodes;
857                 int i;
858
859                 nodes = obstack_finish(&env->obst);
860
861                 /* order the call nodes according to data dependency */
862                 qsort(nodes, n, sizeof(nodes[0]), cmp_call_dependecy);
863
864                 for(i = n - 1; i >= 0; --i) {
865                         ir_node *irn = nodes[i];
866
867                         switch(get_irn_opcode(irn)) {
868                         case iro_Call:
869                                 curr_sp = adjust_call(env, irn, curr_sp);
870                                 break;
871                         case iro_Alloc:
872                                 curr_sp = adjust_alloc(env, irn, curr_sp);
873                                 break;
874                         default:
875                                 break;
876                         }
877                 }
878
879                 obstack_free(&env->obst, nodes);
880
881                 /* Keep the last stack state in the block by tying it to Keep node */
882                 nodes[0] = curr_sp;
883                 keep     = be_new_Keep(env->isa->sp->reg_class, get_irn_irg(bl), bl, 1, nodes);
884                 pmap_insert(env->keep_map, bl, keep);
885         }
886
887         set_irn_link(bl, curr_sp);
888 }
889
890 /**
891  * Adjust all call nodes in the graph to the ABI conventions.
892  */
893 static void process_calls(be_abi_irg_t *env)
894 {
895         ir_graph *irg = env->birg->irg;
896
897         env->call->flags.bits.irg_is_leaf = 1;
898         irg_walk_graph(irg, firm_clear_link, link_calls_in_block_walker, env);
899         irg_block_walk_graph(irg, NULL, process_calls_in_block, env);
900 }
901
902 static void collect_return_walker(ir_node *irn, void *data)
903 {
904         if(get_irn_opcode(irn) == iro_Return) {
905                 struct obstack *obst = data;
906                 obstack_ptr_grow(obst, irn);
907         }
908 }
909
910 #if 0 /*
911 static ir_node *setup_frame(be_abi_irg_t *env)
912 {
913         const arch_isa_t *isa = env->birg->main_env->arch_env->isa;
914         const arch_register_t *sp = isa->sp;
915         const arch_register_t *bp = isa->bp;
916         be_abi_call_flags_bits_t flags = env->call->flags.bits;
917         ir_graph *irg      = env->birg->irg;
918         ir_node *bl        = get_irg_start_block(irg);
919         ir_node *no_mem    = get_irg_no_mem(irg);
920         ir_node *old_frame = get_irg_frame(irg);
921         ir_node *stack     = pmap_get(env->regs, (void *) sp);
922         ir_node *frame     = pmap_get(env->regs, (void *) bp);
923
924         int stack_nr       = get_Proj_proj(stack);
925
926         if(flags.try_omit_fp) {
927                 stack = be_new_IncSP(sp, irg, bl, stack, no_mem, BE_STACK_FRAME_SIZE, be_stack_dir_expand);
928                 frame = stack;
929         }
930
931         else {
932                 frame = be_new_Copy(bp->reg_class, irg, bl, stack);
933
934                 be_node_set_flags(frame, -1, arch_irn_flags_dont_spill);
935                 if(!flags.fp_free) {
936                         be_set_constr_single_reg(frame, -1, bp);
937                         be_node_set_flags(frame, -1, arch_irn_flags_ignore);
938                         arch_set_irn_register(env->birg->main_env->arch_env, frame, bp);
939                 }
940
941                 stack = be_new_IncSP(sp, irg, bl, stack, frame, BE_STACK_FRAME_SIZE, be_stack_dir_expand);
942         }
943
944         be_node_set_flags(env->reg_params, -(stack_nr + 1), arch_irn_flags_ignore);
945         env->init_sp = stack;
946         set_irg_frame(irg, frame);
947         edges_reroute(old_frame, frame, irg);
948
949         return frame;
950 }
951
952 static void clearup_frame(be_abi_irg_t *env, ir_node *ret, pmap *reg_map, struct obstack *obst)
953 {
954         const arch_isa_t *isa = env->birg->main_env->arch_env->isa;
955         const arch_register_t *sp = isa->sp;
956         const arch_register_t *bp = isa->bp;
957         ir_graph *irg      = env->birg->irg;
958         ir_node *ret_mem   = get_Return_mem(ret);
959         ir_node *frame     = get_irg_frame(irg);
960         ir_node *bl        = get_nodes_block(ret);
961         ir_node *stack     = get_irn_link(bl);
962
963         pmap_entry *ent;
964
965         if(env->call->flags.bits.try_omit_fp) {
966                 stack = be_new_IncSP(sp, irg, bl, stack, ret_mem, BE_STACK_FRAME_SIZE, be_stack_dir_shrink);
967         }
968
969         else {
970                 stack = be_new_SetSP(sp, irg, bl, stack, frame, ret_mem);
971                 be_set_constr_single_reg(stack, -1, sp);
972                 be_node_set_flags(stack, -1, arch_irn_flags_ignore);
973         }
974
975         pmap_foreach(env->regs, ent) {
976                 const arch_register_t *reg = ent->key;
977                 ir_node *irn               = ent->value;
978
979                 if(reg == sp)
980                         obstack_ptr_grow(&env->obst, stack);
981                 else if(reg == bp)
982                         obstack_ptr_grow(&env->obst, frame);
983                 else if(arch_register_type_is(reg, callee_save) || arch_register_type_is(reg, ignore))
984                         obstack_ptr_grow(obst, irn);
985         }
986 }
987 */
988 #endif
989
990 /**
991  * Computes the stack argument layout type.
992  * Changes a possibly allocated value param type by moving
993  * entities to the stack layout type.
994  *
995  * @param env          the ABI environment
996  * @param call         the current call ABI
997  * @param method_type  the method type
998  *
999  * @return the stack argument layout type
1000  */
1001 static ir_type *compute_arg_type(be_abi_irg_t *env, be_abi_call_t *call, ir_type *method_type)
1002 {
1003         int dir  = env->call->flags.bits.left_to_right ? 1 : -1;
1004         int inc  = env->birg->main_env->arch_env->isa->stack_dir * dir;
1005         int n    = get_method_n_params(method_type);
1006         int curr = inc > 0 ? 0 : n - 1;
1007         int ofs  = 0;
1008
1009         char buf[128];
1010         ir_type *res;
1011         int i;
1012         ir_type *val_param_tp = get_method_value_param_type(method_type);
1013         ident *id = get_entity_ident(get_irg_entity(env->birg->irg));
1014
1015         res = new_type_struct(mangle_u(id, new_id_from_chars("arg_type", 8)));
1016         for (i = 0; i < n; ++i, curr += inc) {
1017                 ir_type *param_type    = get_method_param_type(method_type, curr);
1018                 be_abi_call_arg_t *arg = get_call_arg(call, 0, curr);
1019
1020                 if (arg->on_stack) {
1021                         if (val_param_tp) {
1022                                 /* the entity was already created, move it to the param type */
1023                                 arg->stack_ent = get_method_value_param_ent(method_type, i);
1024                                 remove_struct_member(val_param_tp, arg->stack_ent);
1025                                 set_entity_owner(arg->stack_ent, res);
1026                                 add_struct_member(res, arg->stack_ent);
1027                                 /* must be automatic to set a fixed layout */
1028                                 set_entity_allocation(arg->stack_ent, allocation_automatic);
1029                         }
1030                         else {
1031                                 snprintf(buf, sizeof(buf), "param_%d", i);
1032                                 arg->stack_ent = new_entity(res, new_id_from_str(buf), param_type);
1033                         }
1034                         ofs += arg->space_before;
1035                         ofs = round_up2(ofs, arg->alignment);
1036                         set_entity_offset_bytes(arg->stack_ent, ofs);
1037                         ofs += arg->space_after;
1038                         ofs += get_type_size_bytes(param_type);
1039                 }
1040         }
1041         set_type_size_bytes(res, ofs);
1042         set_type_state(res, layout_fixed);
1043         return res;
1044 }
1045
1046 static void create_register_perms(const arch_isa_t *isa, ir_graph *irg, ir_node *bl, pmap *regs)
1047 {
1048         int i, j, n;
1049         struct obstack obst;
1050
1051         obstack_init(&obst);
1052
1053         /* Create a Perm after the RegParams node to delimit it. */
1054         for(i = 0, n = arch_isa_get_n_reg_class(isa); i < n; ++i) {
1055                 const arch_register_class_t *cls = arch_isa_get_reg_class(isa, i);
1056                 ir_node *perm;
1057                 ir_node **in;
1058                 int n_regs;
1059
1060                 for(n_regs = 0, j = 0; j < cls->n_regs; ++j) {
1061                         const arch_register_t *reg = &cls->regs[j];
1062                         ir_node *irn = pmap_get(regs, (void *) reg);
1063
1064                         if(irn && !arch_register_type_is(reg, ignore)) {
1065                                 n_regs++;
1066                                 obstack_ptr_grow(&obst, irn);
1067                                 set_irn_link(irn, (void *) reg);
1068                         }
1069                 }
1070
1071                 obstack_ptr_grow(&obst, NULL);
1072                 in = obstack_finish(&obst);
1073                 if(n_regs > 0) {
1074                         perm = be_new_Perm(cls, irg, bl, n_regs, in);
1075                         for(j = 0; j < n_regs; ++j) {
1076                                 ir_node *arg = in[j];
1077                                 arch_register_t *reg = get_irn_link(arg);
1078                                 pmap_insert(regs, reg, arg);
1079                                 be_set_constr_single_reg(perm, BE_OUT_POS(j), reg);
1080                         }
1081                 }
1082                 obstack_free(&obst, in);
1083         }
1084
1085         obstack_free(&obst, NULL);
1086 }
1087
1088 typedef struct {
1089         const arch_register_t *reg;
1090         ir_node *irn;
1091 } reg_node_map_t;
1092
1093 static int cmp_regs(const void *a, const void *b)
1094 {
1095         const reg_node_map_t *p = a;
1096         const reg_node_map_t *q = b;
1097
1098         if(p->reg->reg_class == q->reg->reg_class)
1099                 return p->reg->index - q->reg->index;
1100         else
1101                 return p->reg->reg_class - q->reg->reg_class;
1102 }
1103
1104 static reg_node_map_t *reg_map_to_arr(struct obstack *obst, pmap *reg_map)
1105 {
1106         pmap_entry *ent;
1107         int n = pmap_count(reg_map);
1108         int i = 0;
1109         reg_node_map_t *res = obstack_alloc(obst, n * sizeof(res[0]));
1110
1111         pmap_foreach(reg_map, ent) {
1112                 res[i].reg = ent->key;
1113                 res[i].irn = ent->value;
1114                 i++;
1115         }
1116
1117         qsort(res, n, sizeof(res[0]), cmp_regs);
1118         return res;
1119 }
1120
1121 /**
1122  * Creates a barrier.
1123  */
1124 static ir_node *create_barrier(be_abi_irg_t *env, ir_node *bl, ir_node **mem, pmap *regs, int in_req)
1125 {
1126         ir_graph *irg = env->birg->irg;
1127         int n_regs    = pmap_count(regs);
1128         int n;
1129         ir_node *irn;
1130         ir_node **in;
1131         reg_node_map_t *rm;
1132
1133         rm = reg_map_to_arr(&env->obst, regs);
1134
1135         for(n = 0; n < n_regs; ++n)
1136                 obstack_ptr_grow(&env->obst, rm[n].irn);
1137
1138         if(mem) {
1139                 obstack_ptr_grow(&env->obst, *mem);
1140                 n++;
1141         }
1142
1143         in = (ir_node **) obstack_finish(&env->obst);
1144         irn = be_new_Barrier(irg, bl, n, in);
1145         obstack_free(&env->obst, in);
1146
1147         for(n = 0; n < n_regs; ++n) {
1148                 const arch_register_t *reg = rm[n].reg;
1149                 int flags                  = 0;
1150                 int pos                    = BE_OUT_POS(n);
1151                 ir_node *proj;
1152
1153                 proj = new_r_Proj(irg, bl, irn, get_irn_mode(rm[n].irn), n);
1154                 be_node_set_reg_class(irn, n, reg->reg_class);
1155                 if(in_req)
1156                         be_set_constr_single_reg(irn, n, reg);
1157                 be_set_constr_single_reg(irn, pos, reg);
1158                 be_node_set_reg_class(irn, pos, reg->reg_class);
1159                 arch_set_irn_register(env->birg->main_env->arch_env, proj, reg);
1160
1161                 /* if the proj projects a ignore register or a node which is set to ignore, propagate this property. */
1162                 if(arch_register_type_is(reg, ignore) || arch_irn_is(env->birg->main_env->arch_env, in[n], ignore))
1163                         flags |= arch_irn_flags_ignore;
1164
1165                 if(arch_irn_is(env->birg->main_env->arch_env, in[n], modify_sp))
1166                         flags |= arch_irn_flags_modify_sp;
1167
1168                 be_node_set_flags(irn, pos, flags);
1169
1170                 pmap_insert(regs, (void *) reg, proj);
1171         }
1172
1173         if(mem) {
1174                 *mem = new_r_Proj(irg, bl, irn, mode_M, n);
1175         }
1176
1177         obstack_free(&env->obst, rm);
1178         return irn;
1179 }
1180
1181 /**
1182  * Creates a be_Return for a Return node.
1183  *
1184  * @param @env    the abi environment
1185  * @param irn     the Return node or NULL if there was none
1186  * @param bl      the block where the be_Retun should be placed
1187  * @param mem     the current memory
1188  * @param n_res   number of return results
1189  */
1190 static ir_node *create_be_return(be_abi_irg_t *env, ir_node *irn, ir_node *bl, ir_node *mem, int n_res) {
1191         be_abi_call_t *call = env->call;
1192         const arch_isa_t *isa = env->birg->main_env->arch_env->isa;
1193
1194         pmap *reg_map  = pmap_create();
1195         ir_node *keep  = pmap_get(env->keep_map, bl);
1196         int in_max;
1197         ir_node *ret;
1198         int i, n;
1199         ir_node **in;
1200         ir_node *stack;
1201         const arch_register_t **regs;
1202         pmap_entry *ent ;
1203
1204         /*
1205                 get the valid stack node in this block.
1206                 If we had a call in that block there is a Keep constructed by process_calls()
1207                 which points to the last stack modification in that block. we'll use
1208                 it then. Else we use the stack from the start block and let
1209                 the ssa construction fix the usage.
1210         */
1211         stack = be_abi_reg_map_get(env->regs, isa->sp);
1212         if (keep) {
1213                 ir_node *bad = new_r_Bad(env->birg->irg);
1214                 stack = get_irn_n(keep, 0);
1215                 set_nodes_block(keep, bad);
1216                 set_irn_n(keep, 0, bad);
1217                 // exchange(keep, new_r_Bad(env->birg->irg));
1218         }
1219
1220         /* Insert results for Return into the register map. */
1221         for(i = 0; i < n_res; ++i) {
1222                 ir_node *res           = get_Return_res(irn, i);
1223                 be_abi_call_arg_t *arg = get_call_arg(call, 1, i);
1224                 assert(arg->in_reg && "return value must be passed in register");
1225                 pmap_insert(reg_map, (void *) arg->reg, res);
1226         }
1227
1228         /* Add uses of the callee save registers. */
1229         pmap_foreach(env->regs, ent) {
1230                 const arch_register_t *reg = ent->key;
1231                 if(arch_register_type_is(reg, callee_save) || arch_register_type_is(reg, ignore))
1232                         pmap_insert(reg_map, ent->key, ent->value);
1233         }
1234
1235         be_abi_reg_map_set(reg_map, isa->sp, stack);
1236
1237         /* Make the Epilogue node and call the arch's epilogue maker. */
1238         create_barrier(env, bl, &mem, reg_map, 1);
1239         call->cb->epilogue(env->cb, bl, &mem, reg_map);
1240
1241         /*
1242                 Maximum size of the in array for Return nodes is
1243                 return args + callee save/ignore registers + memory + stack pointer
1244         */
1245         in_max = pmap_count(reg_map) + n_res + 2;
1246
1247         in   = obstack_alloc(&env->obst, in_max * sizeof(in[0]));
1248         regs = obstack_alloc(&env->obst, in_max * sizeof(regs[0]));
1249
1250         in[0]   = mem;
1251         in[1]   = be_abi_reg_map_get(reg_map, isa->sp);
1252         regs[0] = NULL;
1253         regs[1] = isa->sp;
1254         n       = 2;
1255
1256         /* clear SP entry, since it has already been grown. */
1257         pmap_insert(reg_map, (void *) isa->sp, NULL);
1258         for(i = 0; i < n_res; ++i) {
1259                 ir_node *res           = get_Return_res(irn, i);
1260                 be_abi_call_arg_t *arg = get_call_arg(call, 1, i);
1261
1262                 in[n]     = be_abi_reg_map_get(reg_map, arg->reg);
1263                 regs[n++] = arg->reg;
1264
1265                 /* Clear the map entry to mark the register as processed. */
1266                 be_abi_reg_map_set(reg_map, arg->reg, NULL);
1267         }
1268
1269         /* grow the rest of the stuff. */
1270         pmap_foreach(reg_map, ent) {
1271                 if(ent->value) {
1272                         in[n]     = ent->value;
1273                         regs[n++] = ent->key;
1274                 }
1275         }
1276
1277         /* The in array for the new back end return is now ready. */
1278         ret = be_new_Return(irn ? get_irn_dbg_info(irn) : NULL, env->birg->irg, bl, n_res, n, in);
1279
1280         /* Set the register classes of the return's parameter accordingly. */
1281         for(i = 0; i < n; ++i)
1282                 if(regs[i])
1283                         be_node_set_reg_class(ret, i, regs[i]->reg_class);
1284
1285         /* Free the space of the Epilog's in array and the register <-> proj map. */
1286         obstack_free(&env->obst, in);
1287         pmap_destroy(reg_map);
1288
1289         return ret;
1290 }
1291
1292 typedef struct lower_frame_sels_env_t {
1293         be_abi_irg_t *env;
1294         entity       *value_param_list;  /**< the list of all value param antities */
1295 } lower_frame_sels_env_t;
1296
1297 /**
1298  * Walker: Replaces Sels of frame type and
1299  * value param type entities by FrameAddress.
1300  */
1301 static void lower_frame_sels_walker(ir_node *irn, void *data)
1302 {
1303         lower_frame_sels_env_t *ctx = data;
1304
1305         if (is_Sel(irn)) {
1306                 ir_graph *irg        = current_ir_graph;
1307                 ir_node  *frame      = get_irg_frame(irg);
1308                 ir_node  *param_base = get_irg_value_param_base(irg);
1309                 ir_node  *ptr        = get_Sel_ptr(irn);
1310
1311                 if (ptr == frame || ptr == param_base) {
1312                         be_abi_irg_t *env = ctx->env;
1313                         entity       *ent = get_Sel_entity(irn);
1314                         ir_node      *bl  = get_nodes_block(irn);
1315                         ir_node      *nw;
1316
1317                         nw = be_new_FrameAddr(env->isa->sp->reg_class, irg, bl, frame, ent);
1318                         exchange(irn, nw);
1319
1320                         if (ptr == param_base) {
1321                                 set_entity_link(ent, ctx->value_param_list);
1322                                 ctx->value_param_list = ent;
1323                         }
1324                 }
1325         }
1326 }
1327
1328 /**
1329  * Check if a value parameter is transmitted as a register.
1330  * This might happen if the address of an parameter is taken which is
1331  * transmitted in registers.
1332  *
1333  * Note that on some architectures this case must be handled specially
1334  * because the place of the backing store is determined by their ABI.
1335  *
1336  * In the default case we move the entity to the frame type and create
1337  * a backing store into the first block.
1338  */
1339 static void fix_address_of_parameter_access(be_abi_irg_t *env, entity *value_param_list) {
1340         be_abi_call_t *call = env->call;
1341         ir_graph *irg       = env->birg->irg;
1342         entity *ent, *next_ent, *new_list;
1343         ir_type *frame_tp;
1344         DEBUG_ONLY(firm_dbg_module_t *dbg = env->dbg;)
1345
1346         new_list = NULL;
1347         for (ent = value_param_list; ent; ent = next_ent) {
1348                 int i = get_struct_member_index(get_entity_owner(ent), ent);
1349                 be_abi_call_arg_t *arg = get_call_arg(call, 0, i);
1350
1351                 next_ent = get_entity_link(ent);
1352                 if (arg->in_reg) {
1353                         DBG((dbg, LEVEL_2, "\targ #%d need backing store\n", i));
1354                         set_entity_link(ent, new_list);
1355                         new_list = ent;
1356                 }
1357         }
1358         if (new_list) {
1359                 /* ok, change the graph */
1360                 ir_node *start_bl = get_irg_start_block(irg);
1361                 ir_node *first_bl = NULL;
1362                 ir_node *frame, *imem, *nmem, *store, *mem, *args, *args_bl;
1363                 const ir_edge_t *edge;
1364                 optimization_state_t state;
1365                 int offset;
1366
1367                 foreach_block_succ(start_bl, edge) {
1368                         ir_node *succ = get_edge_src_irn(edge);
1369                         if (start_bl != succ) {
1370                                 first_bl = succ;
1371                                 break;
1372                         }
1373                 }
1374                 assert(first_bl);
1375                 /* we had already removed critical edges, so the following
1376                    assertion should be always true. */
1377                 assert(get_Block_n_cfgpreds(first_bl) == 1);
1378
1379                 /* now create backing stores */
1380                 frame = get_irg_frame(irg);
1381                 imem = get_irg_initial_mem(irg);
1382
1383                 save_optimization_state(&state);
1384                 set_optimize(0);
1385                 nmem = new_r_Proj(irg, first_bl, get_irg_start(irg), mode_M, pn_Start_M);
1386                 restore_optimization_state(&state);
1387
1388                 /* reroute all edges to the new memory source */
1389                 edges_reroute(imem, nmem, irg);
1390
1391                 store   = NULL;
1392                 mem     = imem;
1393                 args    = get_irg_args(irg);
1394                 args_bl = get_nodes_block(args);
1395                 for (ent = new_list; ent; ent = get_entity_link(ent)) {
1396                         int     i     = get_struct_member_index(get_entity_owner(ent), ent);
1397                         ir_type *tp   = get_entity_type(ent);
1398                         ir_mode *mode = get_type_mode(tp);
1399                         ir_node *addr;
1400
1401                         /* address for the backing store */
1402                         addr = be_new_FrameAddr(env->isa->sp->reg_class, irg, first_bl, frame, ent);
1403
1404                         if (store)
1405                                 mem = new_r_Proj(irg, first_bl, store, mode_M, pn_Store_M);
1406
1407                         /* the backing store itself */
1408                         store = new_r_Store(irg, first_bl, mem, addr,
1409                                             new_r_Proj(irg, args_bl, args, mode, i));
1410                 }
1411                 /* the new memory Proj gets the last Proj from store */
1412                 set_Proj_pred(nmem, store);
1413                 set_Proj_proj(nmem, pn_Store_M);
1414
1415                 /* move all entities to the frame type */
1416                 frame_tp = get_irg_frame_type(irg);
1417                 offset   = get_type_size_bytes(frame_tp);
1418                 for (ent = new_list; ent; ent = get_entity_link(ent)) {
1419                         ir_type *tp = get_entity_type(ent);
1420                         int align = get_type_alignment_bytes(tp);
1421
1422                         offset += align - 1;
1423                         offset &= -align;
1424                         set_entity_owner(ent, frame_tp);
1425                         add_class_member(frame_tp, ent);
1426                         /* must be automatic to set a fixed layout */
1427                         set_entity_allocation(ent, allocation_automatic);
1428                         set_entity_offset_bytes(ent, offset);
1429                         offset += get_type_size_bytes(tp);
1430                 }
1431                 set_type_size_bytes(frame_tp, offset);
1432         }
1433 }
1434
1435 /**
1436  * Modify the irg itself and the frame type.
1437  */
1438 static void modify_irg(be_abi_irg_t *env)
1439 {
1440         be_abi_call_t *call       = env->call;
1441         const arch_isa_t *isa     = env->birg->main_env->arch_env->isa;
1442         const arch_register_t *sp = arch_isa_sp(isa);
1443         ir_graph *irg             = env->birg->irg;
1444         ir_node *bl               = get_irg_start_block(irg);
1445         ir_node *end              = get_irg_end_block(irg);
1446         ir_node *no_mem           = get_irg_no_mem(irg);
1447         ir_node *mem              = get_irg_initial_mem(irg);
1448         ir_type *method_type      = get_entity_type(get_irg_entity(irg));
1449         pset *dont_save           = pset_new_ptr(8);
1450
1451         int n_params;
1452         int i, j, n;
1453
1454         reg_node_map_t *rm;
1455         const arch_register_t *fp_reg;
1456         ir_node *frame_pointer;
1457         ir_node *barrier;
1458         ir_node *reg_params_bl;
1459         ir_node **args;
1460         ir_node *arg_tuple;
1461         const ir_edge_t *edge;
1462         ir_type *arg_type, *bet_type;
1463         lower_frame_sels_env_t ctx;
1464
1465         bitset_t *used_proj_nr;
1466         DEBUG_ONLY(firm_dbg_module_t *dbg = env->dbg;)
1467
1468         DBG((dbg, LEVEL_1, "introducing abi on %+F\n", irg));
1469
1470         /* Convert the Sel nodes in the irg to frame load/store/addr nodes. */
1471         ctx.env              = env;
1472         ctx.value_param_list = NULL;
1473         irg_walk_graph(irg, lower_frame_sels_walker, NULL, &ctx);
1474
1475         env->frame = obstack_alloc(&env->obst, sizeof(env->frame[0]));
1476         env->regs  = pmap_create();
1477
1478         used_proj_nr = bitset_alloca(1024);
1479         n_params     = get_method_n_params(method_type);
1480         args         = obstack_alloc(&env->obst, n_params * sizeof(args[0]));
1481         memset(args, 0, n_params * sizeof(args[0]));
1482
1483         /* Check if a value parameter is transmitted as a register.
1484          * This might happen if the address of an parameter is taken which is
1485          * transmitted in registers.
1486          *
1487          * Note that on some architectures this case must be handled specially
1488          * because the place of the backing store is determined by their ABI.
1489          *
1490          * In the default case we move the entity to the frame type and create
1491          * a backing store into the first block.
1492          */
1493         fix_address_of_parameter_access(env, ctx.value_param_list);
1494
1495         /* Fill the argument vector */
1496         arg_tuple = get_irg_args(irg);
1497         foreach_out_edge(arg_tuple, edge) {
1498                 ir_node *irn = get_edge_src_irn(edge);
1499                 int nr       = get_Proj_proj(irn);
1500                 args[nr]     = irn;
1501                 DBG((dbg, LEVEL_2, "\treading arg: %d -> %+F\n", nr, irn));
1502         }
1503
1504         arg_type = compute_arg_type(env, call, method_type);
1505         bet_type = call->cb->get_between_type(env->cb);
1506         stack_frame_init(env->frame, arg_type, bet_type, get_irg_frame_type(irg), isa->stack_dir);
1507
1508         /* Count the register params and add them to the number of Projs for the RegParams node */
1509         for(i = 0; i < n_params; ++i) {
1510                 be_abi_call_arg_t *arg = get_call_arg(call, 0, i);
1511                 if(arg->in_reg && args[i]) {
1512                         assert(arg->reg != sp && "cannot use stack pointer as parameter register");
1513                         assert(i == get_Proj_proj(args[i]));
1514
1515                         /* For now, associate the register with the old Proj from Start representing that argument. */
1516                         pmap_insert(env->regs, (void *) arg->reg, args[i]);
1517                         bitset_set(used_proj_nr, i);
1518                         DBG((dbg, LEVEL_2, "\targ #%d -> reg %s\n", i, arg->reg->name));
1519                 }
1520         }
1521
1522         /* Collect all callee-save registers */
1523         for(i = 0, n = arch_isa_get_n_reg_class(isa); i < n; ++i) {
1524                 const arch_register_class_t *cls = arch_isa_get_reg_class(isa, i);
1525                 for(j = 0; j < cls->n_regs; ++j) {
1526                         const arch_register_t *reg = &cls->regs[j];
1527                         if(arch_register_type_is(reg, callee_save) || arch_register_type_is(reg, ignore))
1528                                 pmap_insert(env->regs, (void *) reg, NULL);
1529                 }
1530         }
1531
1532         pmap_insert(env->regs, (void *) sp, NULL);
1533         pmap_insert(env->regs, (void *) isa->bp, NULL);
1534         reg_params_bl   = get_irg_start_block(irg);
1535         env->reg_params = be_new_RegParams(irg, reg_params_bl, pmap_count(env->regs));
1536
1537         /*
1538          * make proj nodes for the callee save registers.
1539          * memorize them, since Return nodes get those as inputs.
1540          *
1541          * Note, that if a register corresponds to an argument, the regs map contains
1542          * the old Proj from start for that argument.
1543          */
1544
1545         rm = reg_map_to_arr(&env->obst, env->regs);
1546         for(i = 0, n = pmap_count(env->regs); i < n; ++i) {
1547                 arch_register_t *reg = (void *) rm[i].reg;
1548                 ir_node *arg_proj    = rm[i].irn;
1549                 ir_mode *mode        = arg_proj ? get_irn_mode(arg_proj) : reg->reg_class->mode;
1550                 long nr              = i;
1551                 int pos              = BE_OUT_POS((int) nr);
1552                 int flags            = 0;
1553
1554                 ir_node *proj;
1555
1556                 assert(nr >= 0);
1557                 bitset_set(used_proj_nr, nr);
1558                 proj = new_r_Proj(irg, reg_params_bl, env->reg_params, mode, nr);
1559                 pmap_insert(env->regs, (void *) reg, proj);
1560                 be_set_constr_single_reg(env->reg_params, pos, reg);
1561                 arch_set_irn_register(env->birg->main_env->arch_env, proj, reg);
1562
1563                 /*
1564                  * If the register is an ignore register,
1565                  * The Proj for that register shall also be ignored during register allocation.
1566                  */
1567                 if(arch_register_type_is(reg, ignore))
1568                         flags |= arch_irn_flags_ignore;
1569
1570                 if(reg == sp)
1571                         flags |= arch_irn_flags_modify_sp;
1572
1573                 be_node_set_flags(env->reg_params, pos, flags);
1574
1575                 DBG((dbg, LEVEL_2, "\tregister save proj #%d -> reg %s\n", nr, reg->name));
1576         }
1577         obstack_free(&env->obst, rm);
1578
1579         /* Generate the Prologue */
1580         fp_reg  = call->cb->prologue(env->cb, &mem, env->regs);
1581
1582         /* do the stack allocation BEFORE the barrier, or spill code
1583            might be added before it */
1584         env->init_sp  = be_abi_reg_map_get(env->regs, sp);
1585         env->init_sp = be_new_IncSP(sp, irg, bl, env->init_sp, no_mem, BE_STACK_FRAME_SIZE, be_stack_dir_expand);
1586         be_abi_reg_map_set(env->regs, sp, env->init_sp);
1587
1588         barrier = create_barrier(env, bl, &mem, env->regs, 0);
1589
1590         env->init_sp  = be_abi_reg_map_get(env->regs, sp);
1591         arch_set_irn_register(env->birg->main_env->arch_env, env->init_sp, sp);
1592
1593         frame_pointer = be_abi_reg_map_get(env->regs, fp_reg);
1594         set_irg_frame(irg, frame_pointer);
1595         pset_insert_ptr(env->ignore_regs, fp_reg);
1596
1597         /* Now, introduce stack param nodes for all parameters passed on the stack */
1598         for(i = 0; i < n_params; ++i) {
1599                 ir_node *arg_proj = args[i];
1600                 ir_node *repl     = NULL;
1601
1602                 if(arg_proj != NULL) {
1603                         be_abi_call_arg_t *arg;
1604                         ir_type *param_type;
1605                         int nr = get_Proj_proj(arg_proj);
1606
1607                         nr         = MIN(nr, n_params);
1608                         arg        = get_call_arg(call, 0, nr);
1609                         param_type = get_method_param_type(method_type, nr);
1610
1611                         if(arg->in_reg) {
1612                                 repl = pmap_get(env->regs, (void *) arg->reg);
1613                         }
1614
1615                         else if(arg->on_stack) {
1616                                 /* For atomic parameters which are actually used, we create a StackParam node. */
1617                                 if(is_atomic_type(param_type) && get_irn_n_edges(args[i]) > 0) {
1618                                         ir_mode *mode                    = get_type_mode(param_type);
1619                                         const arch_register_class_t *cls = arch_isa_get_reg_class_for_mode(isa, mode);
1620                                         repl = be_new_StackParam(cls, isa->bp->reg_class, irg, reg_params_bl, mode, frame_pointer, arg->stack_ent);
1621                                 }
1622
1623                                 /* The stack parameter is not primitive (it is a struct or array),
1624                                 we thus will create a node representing the parameter's address
1625                                 on the stack. */
1626                                 else {
1627                                         repl = be_new_FrameAddr(sp->reg_class, irg, reg_params_bl, frame_pointer, arg->stack_ent);
1628                                 }
1629                         }
1630
1631                         assert(repl != NULL);
1632                         edges_reroute(args[i], repl, irg);
1633                 }
1634         }
1635
1636         /* All Return nodes hang on the End node, so look for them there. */
1637         for (i = 0, n = get_Block_n_cfgpreds(end); i < n; ++i) {
1638                 ir_node *irn = get_Block_cfgpred(end, i);
1639
1640                 if (is_Return(irn)) {
1641                         ir_node *ret = create_be_return(env, irn, get_nodes_block(irn), get_Return_mem(irn), get_Return_n_ress(irn));
1642                         exchange(irn, ret);
1643                 }
1644         }
1645         /* if we have endless loops here, n might be <= 0. Do NOT create a be_Return than,
1646            the code is dead and will never be executed. */
1647
1648         del_pset(dont_save);
1649         obstack_free(&env->obst, args);
1650 }
1651
1652 /**
1653  * Walker: puts all Alloc(stack_alloc) on a obstack
1654  */
1655 static void collect_alloca_walker(ir_node *irn, void *data)
1656 {
1657         be_abi_irg_t *env = data;
1658         if(get_irn_opcode(irn) == iro_Alloc && get_Alloc_where(irn) == stack_alloc)
1659                 obstack_ptr_grow(&env->obst, irn);
1660 }
1661
1662 be_abi_irg_t *be_abi_introduce(be_irg_t *birg)
1663 {
1664         be_abi_irg_t *env  = xmalloc(sizeof(env[0]));
1665         ir_node *old_frame = get_irg_frame(birg->irg);
1666         ir_graph *irg      = birg->irg;
1667
1668         pmap_entry *ent;
1669         ir_node *dummy;
1670         optimization_state_t state;
1671
1672         obstack_init(&env->obst);
1673
1674         env->isa           = birg->main_env->arch_env->isa;
1675         env->method_type   = get_entity_type(get_irg_entity(irg));
1676         env->call          = be_abi_call_new();
1677         arch_isa_get_call_abi(env->isa, env->method_type, env->call);
1678
1679         env->ignore_regs      = pset_new_ptr_default();
1680         env->keep_map         = pmap_create();
1681         env->dce_survivor     = new_survive_dce();
1682         env->birg             = birg;
1683         env->stack_phis       = pset_new_ptr(16);
1684         /* Beware: later we replace this node by the real one, ensure it is not CSE'd
1685            to another Unknown or the stack pointer gets used */
1686         save_optimization_state(&state);
1687         set_optimize(0);
1688         env->init_sp = dummy  = new_r_Unknown(irg, env->isa->sp->reg_class->mode);
1689         restore_optimization_state(&state);
1690         FIRM_DBG_REGISTER(env->dbg, "firm.be.abi");
1691
1692         env->cb = env->call->cb->init(env->call, birg->main_env->arch_env, irg);
1693
1694         memcpy(&env->irn_handler, &abi_irn_handler, sizeof(abi_irn_handler));
1695         env->irn_ops.impl = &abi_irn_ops;
1696
1697         /* Lower all call nodes in the IRG. */
1698         process_calls(env);
1699
1700         /* Process the IRG */
1701         modify_irg(env);
1702
1703         /* We don't need the keep map anymore. */
1704         pmap_destroy(env->keep_map);
1705
1706         /* reroute the stack origin of the calls to the true stack origin. */
1707         edges_reroute(dummy, env->init_sp, irg);
1708         edges_reroute(old_frame, get_irg_frame(irg), irg);
1709
1710         /* Make some important node pointers survive the dead node elimination. */
1711         survive_dce_register_irn(env->dce_survivor, &env->init_sp);
1712         pmap_foreach(env->regs, ent)
1713                 survive_dce_register_irn(env->dce_survivor, (ir_node **) &ent->value);
1714
1715         arch_env_push_irn_handler(env->birg->main_env->arch_env, &env->irn_handler);
1716
1717         env->call->cb->done(env->cb);
1718         be_liveness(irg);
1719         return env;
1720 }
1721
1722 void be_abi_free(be_abi_irg_t *env)
1723 {
1724         free_survive_dce(env->dce_survivor);
1725         del_pset(env->stack_phis);
1726         del_pset(env->ignore_regs);
1727         pmap_destroy(env->regs);
1728         obstack_free(&env->obst, NULL);
1729         arch_env_pop_irn_handler(env->birg->main_env->arch_env);
1730         free(env);
1731 }
1732
1733 void be_abi_put_ignore_regs(be_abi_irg_t *abi, const arch_register_class_t *cls, bitset_t *bs)
1734 {
1735         arch_register_t *reg;
1736
1737         for(reg = pset_first(abi->ignore_regs); reg; reg = pset_next(abi->ignore_regs))
1738                 if(reg->reg_class == cls)
1739                         bitset_set(bs, reg->index);
1740 }
1741
1742
1743 /*
1744
1745   _____ _        ____  _             _
1746  |  ___(_)_  __ / ___|| |_ __ _  ___| | __
1747  | |_  | \ \/ / \___ \| __/ _` |/ __| |/ /
1748  |  _| | |>  <   ___) | || (_| | (__|   <
1749  |_|   |_/_/\_\ |____/ \__\__,_|\___|_|\_\
1750
1751 */
1752
1753 struct fix_stack_walker_info {
1754         nodeset *nodes;
1755         const arch_env_t *aenv;
1756 };
1757
1758 /**
1759  * Walker. Collect all stack modifying nodes.
1760  */
1761 static void collect_stack_nodes_walker(ir_node *irn, void *data)
1762 {
1763         struct fix_stack_walker_info *info = data;
1764
1765         if(arch_irn_is(info->aenv, irn, modify_sp))
1766                 pset_insert_ptr(info->nodes, irn);
1767 }
1768
1769 void be_abi_fix_stack_nodes(be_abi_irg_t *env)
1770 {
1771         dom_front_info_t *df;
1772         pset *stack_nodes = pset_new_ptr(16);
1773         struct fix_stack_walker_info info;
1774
1775         info.nodes = stack_nodes;
1776         info.aenv  = env->birg->main_env->arch_env;
1777
1778         /* We need dominance frontiers for fix up */
1779         df = be_compute_dominance_frontiers(env->birg->irg);
1780         irg_walk_graph(env->birg->irg, collect_stack_nodes_walker, NULL, &info);
1781         pset_insert_ptr(stack_nodes, env->init_sp);
1782         be_ssa_constr_set_phis(df, stack_nodes, env->stack_phis);
1783         del_pset(stack_nodes);
1784
1785         /* Liveness could have changed due to Phi nodes. */
1786         be_liveness(env->birg->irg);
1787
1788         /* free these dominance frontiers */
1789         be_free_dominance_frontiers(df);
1790 }
1791
1792 /**
1793  * Translates a direction of an IncSP node (either be_stack_dir_shrink, or ...expand)
1794  * into -1 or 1, respectively.
1795  * @param irn The node.
1796  * @return 1, if the direction of the IncSP was along, -1 if against.
1797  */
1798 static int get_dir(ir_node *irn)
1799 {
1800         return 1 - 2 * (be_get_IncSP_direction(irn) == be_stack_dir_shrink);
1801 }
1802
1803 static int process_stack_bias(be_abi_irg_t *env, ir_node *bl, int bias)
1804 {
1805         const arch_env_t *aenv = env->birg->main_env->arch_env;
1806         int omit_fp            = env->call->flags.bits.try_omit_fp;
1807         ir_node *irn;
1808
1809         sched_foreach(bl, irn) {
1810
1811                 /*
1812                         If the node modifies the stack pointer by a constant offset,
1813                         record that in the bias.
1814                 */
1815                 if(be_is_IncSP(irn)) {
1816                         int ofs = be_get_IncSP_offset(irn);
1817                         int dir = get_dir(irn);
1818
1819                         if(ofs == BE_STACK_FRAME_SIZE) {
1820                                 ofs = get_type_size_bytes(get_irg_frame_type(env->birg->irg));
1821                                 be_set_IncSP_offset(irn, ofs);
1822                         }
1823
1824                         if(omit_fp)
1825                                 bias += dir * ofs;
1826                 }
1827
1828                 /*
1829                         Else check, if the node relates to an entity on the stack frame.
1830                         If so, set the true offset (including the bias) for that
1831                         node.
1832                 */
1833                 else {
1834                         entity *ent = arch_get_frame_entity(aenv, irn);
1835                         if(ent) {
1836                                 int offset = get_stack_entity_offset(env->frame, ent, bias);
1837                                 arch_set_frame_offset(aenv, irn, offset);
1838                                 DBG((env->dbg, LEVEL_2, "%F has offset %d\n", ent, offset));
1839                         }
1840                 }
1841         }
1842
1843         return bias;
1844 }
1845
1846 /**
1847  * A helper struct for the bias walker.
1848  */
1849 struct bias_walk {
1850         be_abi_irg_t *env;     /**< The ABI irg environment. */
1851         int start_block_bias;  /**< The bias at the end of the start block. */
1852         ir_node *start_block;  /**< The start block of the current graph. */
1853 };
1854
1855 /**
1856  * Block-Walker: fix all stack offsets
1857  */
1858 static void stack_bias_walker(ir_node *bl, void *data)
1859 {
1860         struct bias_walk *bw = data;
1861         if (bl != bw->start_block) {
1862                 process_stack_bias(bw->env, bl, bw->start_block_bias);
1863         }
1864 }
1865
1866 void be_abi_fix_stack_bias(be_abi_irg_t *env)
1867 {
1868         ir_graph *irg  = env->birg->irg;
1869         struct bias_walk bw;
1870
1871         stack_frame_compute_initial_offset(env->frame);
1872         // stack_layout_dump(stdout, env->frame);
1873
1874         /* Determine the stack bias at the end of the start block. */
1875         bw.start_block_bias = process_stack_bias(env, get_irg_start_block(irg), 0);
1876
1877         /* fix the bias is all other blocks */
1878         bw.env = env;
1879         bw.start_block = get_irg_start_block(irg);
1880         irg_block_walk_graph(irg, stack_bias_walker, NULL, &bw);
1881 }
1882
1883 ir_node *be_abi_get_callee_save_irn(be_abi_irg_t *abi, const arch_register_t *reg)
1884 {
1885         assert(arch_register_type_is(reg, callee_save));
1886         assert(pmap_contains(abi->regs, (void *) reg));
1887         return pmap_get(abi->regs, (void *) reg);
1888 }
1889
1890 /*
1891   _____ _____  _   _   _    _                 _ _
1892  |_   _|  __ \| \ | | | |  | |               | | |
1893    | | | |__) |  \| | | |__| | __ _ _ __   __| | | ___ _ __
1894    | | |  _  /| . ` | |  __  |/ _` | '_ \ / _` | |/ _ \ '__|
1895   _| |_| | \ \| |\  | | |  | | (_| | | | | (_| | |  __/ |
1896  |_____|_|  \_\_| \_| |_|  |_|\__,_|_| |_|\__,_|_|\___|_|
1897
1898   for Phi nodes which are created due to stack modifying nodes
1899   such as IncSP, AddSP and SetSP.
1900
1901   These Phis are always to be ignored by the reg alloc and are
1902   fixed on the SP register of the ISA.
1903 */
1904
1905 static const void *abi_get_irn_ops(const arch_irn_handler_t *handler, const ir_node *irn)
1906 {
1907         const be_abi_irg_t *abi = get_abi_from_handler(handler);
1908         const void *res = NULL;
1909
1910         if(is_Phi(irn) && pset_find_ptr(abi->stack_phis, (void *) irn))
1911                 res = &abi->irn_ops;
1912
1913         return res;
1914 }
1915
1916 static void be_abi_limited(void *data, bitset_t *bs)
1917 {
1918         be_abi_irg_t *abi = data;
1919         bitset_clear_all(bs);
1920         bitset_set(bs, abi->isa->sp->index);
1921 }
1922
1923 static const arch_register_req_t *abi_get_irn_reg_req(const void *self, arch_register_req_t *req, const ir_node *irn, int pos)
1924 {
1925         be_abi_irg_t *abi          = get_abi_from_ops(self);
1926         const arch_register_t *reg = abi->isa->sp;
1927
1928         memset(req, 0, sizeof(req[0]));
1929
1930         if(pos == BE_OUT_POS(0)) {
1931                 req->cls         = reg->reg_class;
1932                 req->type        = arch_register_req_type_limited;
1933                 req->limited     = be_abi_limited;
1934                 req->limited_env = abi;
1935         }
1936
1937         else if(pos >= 0 && pos < get_irn_arity(irn)) {
1938                 req->cls  = reg->reg_class;
1939                 req->type = arch_register_req_type_normal;
1940         }
1941
1942         return req;
1943 }
1944
1945 static void abi_set_irn_reg(const void *self, ir_node *irn, const arch_register_t *reg)
1946 {
1947 }
1948
1949 static const arch_register_t *abi_get_irn_reg(const void *self, const ir_node *irn)
1950 {
1951         const be_abi_irg_t *abi = get_abi_from_ops(self);
1952         return abi->isa->sp;
1953 }
1954
1955 static arch_irn_class_t abi_classify(const void *_self, const ir_node *irn)
1956 {
1957         return arch_irn_class_normal;
1958 }
1959
1960 static arch_irn_flags_t abi_get_flags(const void *_self, const ir_node *irn)
1961 {
1962         return arch_irn_flags_ignore | arch_irn_flags_modify_sp;
1963 }
1964
1965 static entity *abi_get_frame_entity(const void *_self, const ir_node *irn)
1966 {
1967         return NULL;
1968 }
1969
1970 static void abi_set_stack_bias(const void *_self, ir_node *irn, int bias)
1971 {
1972 }
1973
1974 static const arch_irn_ops_if_t abi_irn_ops = {
1975         abi_get_irn_reg_req,
1976         abi_set_irn_reg,
1977         abi_get_irn_reg,
1978         abi_classify,
1979         abi_get_flags,
1980         abi_get_frame_entity,
1981         abi_set_stack_bias
1982 };
1983
1984 static const arch_irn_handler_t abi_irn_handler = {
1985         abi_get_irn_ops
1986 };