Add code to handle parameters that using the value_base but are transmitted
[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         for(i = 0, n = get_irn_arity(curr); i < n; ++i) {
777                 if(check_dependence(get_irn_n(curr, i), tgt, bl, visited_nr))
778                         return 1;
779         }
780
781         return 0;
782 }
783
784 /**
785  * Check if a node is somehow data dependent on another one.
786  * both nodes must be in the same basic block.
787  * @param n1 The first node.
788  * @param n2 The second node.
789  * @return 1, if n1 is data dependent (transitively) on n2, 0 if not.
790  */
791 static int dependent_on(ir_node *n1, ir_node *n2)
792 {
793         ir_node *bl   = get_nodes_block(n1);
794         ir_graph *irg = get_irn_irg(bl);
795         long vis_nr   = get_irg_visited(irg) + 1;
796
797         assert(bl == get_nodes_block(n2));
798         set_irg_visited(irg, vis_nr);
799         return check_dependence(n1, n2, bl, vis_nr);
800 }
801
802 static int cmp_call_dependecy(const void *c1, const void *c2)
803 {
804         ir_node *n1 = *(ir_node **) c1;
805         ir_node *n2 = *(ir_node **) c2;
806
807         /*
808                 Classical qsort() comparison function behavior:
809                 0  if both elements are equal
810                 1  if second is "smaller" that first
811                 -1 if first is "smaller" that second
812         */
813         return n1 == n2 ? 0 : (dependent_on(n1, n2) ? -1 : 1);
814 }
815
816 /**
817  * Walker: links all Call nodes to the Block they are contained.
818  */
819 static void link_calls_in_block_walker(ir_node *irn, void *data)
820 {
821         if(is_Call(irn)) {
822                 be_abi_irg_t *env = data;
823                 ir_node *bl       = get_nodes_block(irn);
824                 void *save        = get_irn_link(bl);
825
826                 env->call->flags.bits.irg_is_leaf = 0;
827
828                 set_irn_link(irn, save);
829                 set_irn_link(bl, irn);
830         }
831 }
832
833 /**
834  * Block-walker:
835  * Process all Call nodes inside a basic block.
836  * Note that the link field of the block must contain a linked list of all
837  * Call nodes inside the Block. We first order this list according to data dependency
838  * and that connect the calls together.
839  */
840 static void process_calls_in_block(ir_node *bl, void *data)
841 {
842         be_abi_irg_t *env = data;
843         ir_node *curr_sp  = env->init_sp;
844         ir_node *irn;
845         int n;
846
847         for(irn = get_irn_link(bl), n = 0; irn; irn = get_irn_link(irn), ++n)
848                 obstack_ptr_grow(&env->obst, irn);
849
850         /* If there were call nodes in the block. */
851         if(n > 0) {
852                 ir_node *keep;
853                 ir_node **nodes;
854                 int i;
855
856                 nodes = obstack_finish(&env->obst);
857
858                 /* order the call nodes according to data dependency */
859                 qsort(nodes, n, sizeof(nodes[0]), cmp_call_dependecy);
860
861                 for(i = n - 1; i >= 0; --i) {
862                         ir_node *irn = nodes[i];
863
864                         switch(get_irn_opcode(irn)) {
865                         case iro_Call:
866                                 curr_sp = adjust_call(env, irn, curr_sp);
867                                 break;
868                         case iro_Alloc:
869                                 curr_sp = adjust_alloc(env, irn, curr_sp);
870                                 break;
871                         default:
872                                 break;
873                         }
874                 }
875
876                 obstack_free(&env->obst, nodes);
877
878                 /* Keep the last stack state in the block by tying it to Keep node */
879                 nodes[0] = curr_sp;
880                 keep     = be_new_Keep(env->isa->sp->reg_class, get_irn_irg(bl), bl, 1, nodes);
881                 pmap_insert(env->keep_map, bl, keep);
882         }
883
884         set_irn_link(bl, curr_sp);
885 }
886
887 /**
888  * Adjust all call nodes in the graph to the ABI conventions.
889  */
890 static void process_calls(be_abi_irg_t *env)
891 {
892         ir_graph *irg = env->birg->irg;
893
894         env->call->flags.bits.irg_is_leaf = 1;
895         irg_walk_graph(irg, firm_clear_link, link_calls_in_block_walker, env);
896         irg_block_walk_graph(irg, NULL, process_calls_in_block, env);
897 }
898
899 static void collect_return_walker(ir_node *irn, void *data)
900 {
901         if(get_irn_opcode(irn) == iro_Return) {
902                 struct obstack *obst = data;
903                 obstack_ptr_grow(obst, irn);
904         }
905 }
906
907 #if 0 /*
908 static ir_node *setup_frame(be_abi_irg_t *env)
909 {
910         const arch_isa_t *isa = env->birg->main_env->arch_env->isa;
911         const arch_register_t *sp = isa->sp;
912         const arch_register_t *bp = isa->bp;
913         be_abi_call_flags_bits_t flags = env->call->flags.bits;
914         ir_graph *irg      = env->birg->irg;
915         ir_node *bl        = get_irg_start_block(irg);
916         ir_node *no_mem    = get_irg_no_mem(irg);
917         ir_node *old_frame = get_irg_frame(irg);
918         ir_node *stack     = pmap_get(env->regs, (void *) sp);
919         ir_node *frame     = pmap_get(env->regs, (void *) bp);
920
921         int stack_nr       = get_Proj_proj(stack);
922
923         if(flags.try_omit_fp) {
924                 stack = be_new_IncSP(sp, irg, bl, stack, no_mem, BE_STACK_FRAME_SIZE, be_stack_dir_expand);
925                 frame = stack;
926         }
927
928         else {
929                 frame = be_new_Copy(bp->reg_class, irg, bl, stack);
930
931                 be_node_set_flags(frame, -1, arch_irn_flags_dont_spill);
932                 if(!flags.fp_free) {
933                         be_set_constr_single_reg(frame, -1, bp);
934                         be_node_set_flags(frame, -1, arch_irn_flags_ignore);
935                         arch_set_irn_register(env->birg->main_env->arch_env, frame, bp);
936                 }
937
938                 stack = be_new_IncSP(sp, irg, bl, stack, frame, BE_STACK_FRAME_SIZE, be_stack_dir_expand);
939         }
940
941         be_node_set_flags(env->reg_params, -(stack_nr + 1), arch_irn_flags_ignore);
942         env->init_sp = stack;
943         set_irg_frame(irg, frame);
944         edges_reroute(old_frame, frame, irg);
945
946         return frame;
947 }
948
949 static void clearup_frame(be_abi_irg_t *env, ir_node *ret, pmap *reg_map, struct obstack *obst)
950 {
951         const arch_isa_t *isa = env->birg->main_env->arch_env->isa;
952         const arch_register_t *sp = isa->sp;
953         const arch_register_t *bp = isa->bp;
954         ir_graph *irg      = env->birg->irg;
955         ir_node *ret_mem   = get_Return_mem(ret);
956         ir_node *frame     = get_irg_frame(irg);
957         ir_node *bl        = get_nodes_block(ret);
958         ir_node *stack     = get_irn_link(bl);
959
960         pmap_entry *ent;
961
962         if(env->call->flags.bits.try_omit_fp) {
963                 stack = be_new_IncSP(sp, irg, bl, stack, ret_mem, BE_STACK_FRAME_SIZE, be_stack_dir_shrink);
964         }
965
966         else {
967                 stack = be_new_SetSP(sp, irg, bl, stack, frame, ret_mem);
968                 be_set_constr_single_reg(stack, -1, sp);
969                 be_node_set_flags(stack, -1, arch_irn_flags_ignore);
970         }
971
972         pmap_foreach(env->regs, ent) {
973                 const arch_register_t *reg = ent->key;
974                 ir_node *irn               = ent->value;
975
976                 if(reg == sp)
977                         obstack_ptr_grow(&env->obst, stack);
978                 else if(reg == bp)
979                         obstack_ptr_grow(&env->obst, frame);
980                 else if(arch_register_type_is(reg, callee_save) || arch_register_type_is(reg, ignore))
981                         obstack_ptr_grow(obst, irn);
982         }
983 }
984 */
985 #endif
986
987 /**
988  * Computes the stack argument layout type.
989  * Changes a possibly allocated value param type by moving
990  * entities to the stack layout type.
991  *
992  * @param env          the ABI environment
993  * @param call         the current call ABI
994  * @param method_type  the method type
995  *
996  * @return the stack argument layout type
997  */
998 static ir_type *compute_arg_type(be_abi_irg_t *env, be_abi_call_t *call, ir_type *method_type)
999 {
1000         int dir  = env->call->flags.bits.left_to_right ? 1 : -1;
1001         int inc  = env->birg->main_env->arch_env->isa->stack_dir * dir;
1002         int n    = get_method_n_params(method_type);
1003         int curr = inc > 0 ? 0 : n - 1;
1004         int ofs  = 0;
1005
1006         char buf[128];
1007         ir_type *res;
1008         int i;
1009         ir_type *val_param_tp = get_method_value_param_type(method_type);
1010         ident *id = get_entity_ident(get_irg_entity(env->birg->irg));
1011
1012         res = new_type_struct(mangle_u(id, new_id_from_chars("arg_type", 8)));
1013         for (i = 0; i < n; ++i, curr += inc) {
1014                 ir_type *param_type    = get_method_param_type(method_type, curr);
1015                 be_abi_call_arg_t *arg = get_call_arg(call, 0, curr);
1016
1017                 if (arg->on_stack) {
1018                         if (val_param_tp) {
1019                                 /* the entity was already created, move it to the param type */
1020                                 arg->stack_ent = get_method_value_param_ent(method_type, i);
1021                                 remove_struct_member(val_param_tp, arg->stack_ent);
1022                                 set_entity_owner(arg->stack_ent, res);
1023                                 add_struct_member(res, arg->stack_ent);
1024                                 /* must be automatic to set a fixed layout */
1025                                 set_entity_allocation(arg->stack_ent, allocation_automatic);
1026                         }
1027                         else {
1028                                 snprintf(buf, sizeof(buf), "param_%d", i);
1029                                 arg->stack_ent = new_entity(res, new_id_from_str(buf), param_type);
1030                         }
1031                         ofs += arg->space_before;
1032                         ofs = round_up2(ofs, arg->alignment);
1033                         set_entity_offset_bytes(arg->stack_ent, ofs);
1034                         ofs += arg->space_after;
1035                         ofs += get_type_size_bytes(param_type);
1036                 }
1037         }
1038         set_type_size_bytes(res, ofs);
1039         set_type_state(res, layout_fixed);
1040         return res;
1041 }
1042
1043 static void create_register_perms(const arch_isa_t *isa, ir_graph *irg, ir_node *bl, pmap *regs)
1044 {
1045         int i, j, n;
1046         struct obstack obst;
1047
1048         obstack_init(&obst);
1049
1050         /* Create a Perm after the RegParams node to delimit it. */
1051         for(i = 0, n = arch_isa_get_n_reg_class(isa); i < n; ++i) {
1052                 const arch_register_class_t *cls = arch_isa_get_reg_class(isa, i);
1053                 ir_node *perm;
1054                 ir_node **in;
1055                 int n_regs;
1056
1057                 for(n_regs = 0, j = 0; j < cls->n_regs; ++j) {
1058                         const arch_register_t *reg = &cls->regs[j];
1059                         ir_node *irn = pmap_get(regs, (void *) reg);
1060
1061                         if(irn && !arch_register_type_is(reg, ignore)) {
1062                                 n_regs++;
1063                                 obstack_ptr_grow(&obst, irn);
1064                                 set_irn_link(irn, (void *) reg);
1065                         }
1066                 }
1067
1068                 obstack_ptr_grow(&obst, NULL);
1069                 in = obstack_finish(&obst);
1070                 if(n_regs > 0) {
1071                         perm = be_new_Perm(cls, irg, bl, n_regs, in);
1072                         for(j = 0; j < n_regs; ++j) {
1073                                 ir_node *arg = in[j];
1074                                 arch_register_t *reg = get_irn_link(arg);
1075                                 pmap_insert(regs, reg, arg);
1076                                 be_set_constr_single_reg(perm, BE_OUT_POS(j), reg);
1077                         }
1078                 }
1079                 obstack_free(&obst, in);
1080         }
1081
1082         obstack_free(&obst, NULL);
1083 }
1084
1085 typedef struct {
1086         const arch_register_t *reg;
1087         ir_node *irn;
1088 } reg_node_map_t;
1089
1090 static int cmp_regs(const void *a, const void *b)
1091 {
1092         const reg_node_map_t *p = a;
1093         const reg_node_map_t *q = b;
1094
1095         if(p->reg->reg_class == q->reg->reg_class)
1096                 return p->reg->index - q->reg->index;
1097         else
1098                 return p->reg->reg_class - q->reg->reg_class;
1099 }
1100
1101 static reg_node_map_t *reg_map_to_arr(struct obstack *obst, pmap *reg_map)
1102 {
1103         pmap_entry *ent;
1104         int n = pmap_count(reg_map);
1105         int i = 0;
1106         reg_node_map_t *res = obstack_alloc(obst, n * sizeof(res[0]));
1107
1108         pmap_foreach(reg_map, ent) {
1109                 res[i].reg = ent->key;
1110                 res[i].irn = ent->value;
1111                 i++;
1112         }
1113
1114         qsort(res, n, sizeof(res[0]), cmp_regs);
1115         return res;
1116 }
1117
1118 /**
1119  * Creates a barrier.
1120  */
1121 static ir_node *create_barrier(be_abi_irg_t *env, ir_node *bl, ir_node **mem, pmap *regs, int in_req)
1122 {
1123         ir_graph *irg = env->birg->irg;
1124         int n_regs    = pmap_count(regs);
1125         int n;
1126         ir_node *irn;
1127         ir_node **in;
1128         reg_node_map_t *rm;
1129
1130         rm = reg_map_to_arr(&env->obst, regs);
1131
1132         for(n = 0; n < n_regs; ++n)
1133                 obstack_ptr_grow(&env->obst, rm[n].irn);
1134
1135         if(mem) {
1136                 obstack_ptr_grow(&env->obst, *mem);
1137                 n++;
1138         }
1139
1140         in = (ir_node **) obstack_finish(&env->obst);
1141         irn = be_new_Barrier(irg, bl, n, in);
1142         obstack_free(&env->obst, in);
1143
1144         for(n = 0; n < n_regs; ++n) {
1145                 const arch_register_t *reg = rm[n].reg;
1146                 int flags                  = 0;
1147                 int pos                    = BE_OUT_POS(n);
1148                 ir_node *proj;
1149
1150                 proj = new_r_Proj(irg, bl, irn, get_irn_mode(rm[n].irn), n);
1151                 be_node_set_reg_class(irn, n, reg->reg_class);
1152                 if(in_req)
1153                         be_set_constr_single_reg(irn, n, reg);
1154                 be_set_constr_single_reg(irn, pos, reg);
1155                 be_node_set_reg_class(irn, pos, reg->reg_class);
1156                 arch_set_irn_register(env->birg->main_env->arch_env, proj, reg);
1157
1158                 /* if the proj projects a ignore register or a node which is set to ignore, propagate this property. */
1159                 if(arch_register_type_is(reg, ignore) || arch_irn_is(env->birg->main_env->arch_env, in[n], ignore))
1160                         flags |= arch_irn_flags_ignore;
1161
1162                 if(arch_irn_is(env->birg->main_env->arch_env, in[n], modify_sp))
1163                         flags |= arch_irn_flags_modify_sp;
1164
1165                 be_node_set_flags(irn, pos, flags);
1166
1167                 pmap_insert(regs, (void *) reg, proj);
1168         }
1169
1170         if(mem) {
1171                 *mem = new_r_Proj(irg, bl, irn, mode_M, n);
1172         }
1173
1174         obstack_free(&env->obst, rm);
1175         return irn;
1176 }
1177
1178 /**
1179  * Creates a be_Return for a Return node.
1180  *
1181  * @param @env    the abi environment
1182  * @param irn     the Return node or NULL if there was none
1183  * @param bl      the block where the be_Retun should be placed
1184  * @param mem     the current memory
1185  * @param n_res   number of return results
1186  */
1187 static ir_node *create_be_return(be_abi_irg_t *env, ir_node *irn, ir_node *bl, ir_node *mem, int n_res) {
1188         be_abi_call_t *call = env->call;
1189         const arch_isa_t *isa = env->birg->main_env->arch_env->isa;
1190
1191         pmap *reg_map  = pmap_create();
1192         ir_node *keep  = pmap_get(env->keep_map, bl);
1193         int in_max;
1194         ir_node *ret;
1195         int i, n;
1196         ir_node **in;
1197         ir_node *stack;
1198         const arch_register_t **regs;
1199         pmap_entry *ent ;
1200
1201         /*
1202                 get the valid stack node in this block.
1203                 If we had a call in that block there is a Keep constructed by process_calls()
1204                 which points to the last stack modification in that block. we'll use
1205                 it then. Else we use the stack from the start block and let
1206                 the ssa construction fix the usage.
1207         */
1208         stack = be_abi_reg_map_get(env->regs, isa->sp);
1209         if (keep) {
1210                 ir_node *bad = new_r_Bad(env->birg->irg);
1211                 stack = get_irn_n(keep, 0);
1212                 set_nodes_block(keep, bad);
1213                 set_irn_n(keep, 0, bad);
1214                 // exchange(keep, new_r_Bad(env->birg->irg));
1215         }
1216
1217         /* Insert results for Return into the register map. */
1218         for(i = 0; i < n_res; ++i) {
1219                 ir_node *res           = get_Return_res(irn, i);
1220                 be_abi_call_arg_t *arg = get_call_arg(call, 1, i);
1221                 assert(arg->in_reg && "return value must be passed in register");
1222                 pmap_insert(reg_map, (void *) arg->reg, res);
1223         }
1224
1225         /* Add uses of the callee save registers. */
1226         pmap_foreach(env->regs, ent) {
1227                 const arch_register_t *reg = ent->key;
1228                 if(arch_register_type_is(reg, callee_save) || arch_register_type_is(reg, ignore))
1229                         pmap_insert(reg_map, ent->key, ent->value);
1230         }
1231
1232         be_abi_reg_map_set(reg_map, isa->sp, stack);
1233
1234         /* Make the Epilogue node and call the arch's epilogue maker. */
1235         create_barrier(env, bl, &mem, reg_map, 1);
1236         call->cb->epilogue(env->cb, bl, &mem, reg_map);
1237
1238         /*
1239                 Maximum size of the in array for Return nodes is
1240                 return args + callee save/ignore registers + memory + stack pointer
1241         */
1242         in_max = pmap_count(reg_map) + n_res + 2;
1243
1244         in   = obstack_alloc(&env->obst, in_max * sizeof(in[0]));
1245         regs = obstack_alloc(&env->obst, in_max * sizeof(regs[0]));
1246
1247         in[0]   = mem;
1248         in[1]   = be_abi_reg_map_get(reg_map, isa->sp);
1249         regs[0] = NULL;
1250         regs[1] = isa->sp;
1251         n       = 2;
1252
1253         /* clear SP entry, since it has already been grown. */
1254         pmap_insert(reg_map, (void *) isa->sp, NULL);
1255         for(i = 0; i < n_res; ++i) {
1256                 ir_node *res           = get_Return_res(irn, i);
1257                 be_abi_call_arg_t *arg = get_call_arg(call, 1, i);
1258
1259                 in[n]     = be_abi_reg_map_get(reg_map, arg->reg);
1260                 regs[n++] = arg->reg;
1261
1262                 /* Clear the map entry to mark the register as processed. */
1263                 be_abi_reg_map_set(reg_map, arg->reg, NULL);
1264         }
1265
1266         /* grow the rest of the stuff. */
1267         pmap_foreach(reg_map, ent) {
1268                 if(ent->value) {
1269                         in[n]     = ent->value;
1270                         regs[n++] = ent->key;
1271                 }
1272         }
1273
1274         /* The in array for the new back end return is now ready. */
1275         ret = be_new_Return(irn ? get_irn_dbg_info(irn) : NULL, env->birg->irg, bl, n_res, n, in);
1276
1277         /* Set the register classes of the return's parameter accordingly. */
1278         for(i = 0; i < n; ++i)
1279                 if(regs[i])
1280                         be_node_set_reg_class(ret, i, regs[i]->reg_class);
1281
1282         /* Free the space of the Epilog's in array and the register <-> proj map. */
1283         obstack_free(&env->obst, in);
1284         pmap_destroy(reg_map);
1285
1286         return ret;
1287 }
1288
1289 typedef struct lower_frame_sels_env_t {
1290         be_abi_irg_t *env;
1291         entity       *value_param_list;  /**< the list of all value param antities */
1292 } lower_frame_sels_env_t;
1293
1294 /**
1295  * Walker: Replaces Sels of frame type and
1296  * value param type entities by FrameAddress.
1297  */
1298 static void lower_frame_sels_walker(ir_node *irn, void *data)
1299 {
1300         lower_frame_sels_env_t *ctx = data;
1301
1302         if (is_Sel(irn)) {
1303                 ir_graph *irg        = current_ir_graph;
1304                 ir_node  *frame      = get_irg_frame(irg);
1305                 ir_node  *param_base = get_irg_value_param_base(irg);
1306                 ir_node  *ptr        = get_Sel_ptr(irn);
1307
1308                 if (ptr == frame || ptr == param_base) {
1309                         be_abi_irg_t *env = ctx->env;
1310                         entity       *ent = get_Sel_entity(irn);
1311                         ir_node      *bl  = get_nodes_block(irn);
1312                         ir_node      *nw;
1313
1314                         nw = be_new_FrameAddr(env->isa->sp->reg_class, irg, bl, frame, ent);
1315                         exchange(irn, nw);
1316
1317                         if (ptr == param_base) {
1318                                 set_entity_link(ent, ctx->value_param_list);
1319                                 ctx->value_param_list = ent;
1320                         }
1321                 }
1322         }
1323 }
1324
1325 /**
1326  * Check if a value parameter is transmitted as a register.
1327  * This might happen if the address of an parameter is taken which is
1328  * transmitted in registers.
1329  *
1330  * Note that on some architectures this case must be handled specially
1331  * because the place of the backing store is determined by their ABI.
1332  *
1333  * In the default case we move the entity to the frame type and create
1334  * a backing store into the first block.
1335  */
1336 static void fix_address_of_parameter_access(be_abi_irg_t *env, entity *value_param_list) {
1337         be_abi_call_t *call = env->call;
1338         ir_graph *irg       = env->birg->irg;
1339         entity *ent, *next_ent, *new_list;
1340         ir_type *frame_tp;
1341         DEBUG_ONLY(firm_dbg_module_t *dbg = env->dbg;)
1342
1343         new_list = NULL;
1344         for (ent = value_param_list; ent; ent = next_ent) {
1345                 int i = get_struct_member_index(get_entity_owner(ent), ent);
1346                 be_abi_call_arg_t *arg = get_call_arg(call, 0, i);
1347
1348                 next_ent = get_entity_link(ent);
1349                 if (arg->in_reg) {
1350                         DBG((dbg, LEVEL_2, "\targ #%d need backing store\n", i));
1351                         set_entity_link(ent, new_list);
1352                         new_list = ent;
1353                 }
1354         }
1355         if (new_list) {
1356                 /* ok, change the graph */
1357                 ir_node *start_bl = get_irg_start_block(irg);
1358                 ir_node *first_bl = NULL;
1359                 ir_node *frame, *imem, *nmem, *store, *mem, *args, *args_bl;
1360                 const ir_edge_t *edge;
1361                 optimization_state_t state;
1362                 int offset;
1363
1364                 foreach_block_succ(start_bl, edge) {
1365                         ir_node *succ = get_edge_src_irn(edge);
1366                         if (start_bl != succ) {
1367                                 first_bl = succ;
1368                                 break;
1369                         }
1370                 }
1371                 assert(first_bl);
1372                 /* we had already removed critical edges, so the following
1373                    assertion should be always true. */
1374                 assert(get_Block_n_cfgpreds(first_bl) == 1);
1375
1376                 /* now create backing stores */
1377                 frame = get_irg_frame(irg);
1378                 imem = get_irg_initial_mem(irg);
1379
1380                 save_optimization_state(&state);
1381                 set_optimize(0);
1382                 nmem = new_r_Proj(irg, first_bl, get_irg_start(irg), mode_M, pn_Start_M);
1383                 restore_optimization_state(&state);
1384
1385                 /* reroute all edges to the new memory source */
1386                 edges_reroute(imem, nmem, irg);
1387
1388                 store   = NULL;
1389                 mem     = imem;
1390                 args    = get_irg_args(irg);
1391                 args_bl = get_nodes_block(args);
1392                 for (ent = new_list; ent; ent = get_entity_link(ent)) {
1393                         int     i     = get_struct_member_index(get_entity_owner(ent), ent);
1394                         ir_type *tp   = get_entity_type(ent);
1395                         ir_mode *mode = get_type_mode(tp);
1396                         ir_node *addr;
1397
1398                         /* address for the backing store */
1399                         addr = be_new_FrameAddr(env->isa->sp->reg_class, irg, first_bl, frame, ent);
1400
1401                         if (store)
1402                                 mem = new_r_Proj(irg, first_bl, store, mode_M, pn_Store_M);
1403
1404                         /* the backing store itself */
1405                         store = new_r_Store(irg, first_bl, mem, addr,
1406                                             new_r_Proj(irg, args_bl, args, mode, i));
1407                 }
1408                 /* the new memory Proj gets the last Proj from store */
1409                 set_Proj_pred(nmem, store);
1410                 set_Proj_proj(nmem, pn_Store_M);
1411
1412                 /* move all entities to the frame type */
1413                 frame_tp = get_irg_frame_type(irg);
1414                 offset   = get_type_size_bytes(frame_tp);
1415                 for (ent = new_list; ent; ent = get_entity_link(ent)) {
1416                         ir_type *tp = get_entity_type(ent);
1417                         int align = get_type_alignment_bytes(tp);
1418
1419                         offset += align - 1;
1420                         offset &= -align;
1421                         set_entity_owner(ent, frame_tp);
1422                         add_class_member(frame_tp, ent);
1423                         /* must be automatic to set a fixed layout */
1424                         set_entity_allocation(ent, allocation_automatic);
1425                         set_entity_offset_bytes(ent, offset);
1426                         offset += get_type_size_bytes(tp);
1427                 }
1428                 set_type_size_bytes(frame_tp, offset);
1429         }
1430 }
1431
1432 /**
1433  * Modify the irg itself and the frame type.
1434  */
1435 static void modify_irg(be_abi_irg_t *env)
1436 {
1437         be_abi_call_t *call       = env->call;
1438         const arch_isa_t *isa     = env->birg->main_env->arch_env->isa;
1439         const arch_register_t *sp = arch_isa_sp(isa);
1440         ir_graph *irg             = env->birg->irg;
1441         ir_node *bl               = get_irg_start_block(irg);
1442         ir_node *end              = get_irg_end_block(irg);
1443         ir_node *no_mem           = get_irg_no_mem(irg);
1444         ir_node *mem              = get_irg_initial_mem(irg);
1445         ir_type *method_type      = get_entity_type(get_irg_entity(irg));
1446         pset *dont_save           = pset_new_ptr(8);
1447
1448         int n_params;
1449         int i, j, n;
1450
1451         reg_node_map_t *rm;
1452         const arch_register_t *fp_reg;
1453         ir_node *frame_pointer;
1454         ir_node *barrier;
1455         ir_node *reg_params_bl;
1456         ir_node **args;
1457         ir_node *arg_tuple;
1458         const ir_edge_t *edge;
1459         ir_type *arg_type, *bet_type;
1460         lower_frame_sels_env_t ctx;
1461
1462         bitset_t *used_proj_nr;
1463         DEBUG_ONLY(firm_dbg_module_t *dbg = env->dbg;)
1464
1465         DBG((dbg, LEVEL_1, "introducing abi on %+F\n", irg));
1466
1467         /* Convert the Sel nodes in the irg to frame load/store/addr nodes. */
1468         ctx.env              = env;
1469         ctx.value_param_list = NULL;
1470         irg_walk_graph(irg, lower_frame_sels_walker, NULL, &ctx);
1471
1472         env->frame = obstack_alloc(&env->obst, sizeof(env->frame[0]));
1473         env->regs  = pmap_create();
1474
1475         used_proj_nr = bitset_alloca(1024);
1476         n_params     = get_method_n_params(method_type);
1477         args         = obstack_alloc(&env->obst, n_params * sizeof(args[0]));
1478         memset(args, 0, n_params * sizeof(args[0]));
1479
1480         /* Check if a value parameter is transmitted as a register.
1481          * This might happen if the address of an parameter is taken which is
1482          * transmitted in registers.
1483          *
1484          * Note that on some architectures this case must be handled specially
1485          * because the place of the backing store is determined by their ABI.
1486          *
1487          * In the default case we move the entity to the frame type and create
1488          * a backing store into the first block.
1489          */
1490         fix_address_of_parameter_access(env, ctx.value_param_list);
1491
1492         /* Fill the argument vector */
1493         arg_tuple = get_irg_args(irg);
1494         foreach_out_edge(arg_tuple, edge) {
1495                 ir_node *irn = get_edge_src_irn(edge);
1496                 int nr       = get_Proj_proj(irn);
1497                 args[nr]     = irn;
1498                 DBG((dbg, LEVEL_2, "\treading arg: %d -> %+F\n", nr, irn));
1499         }
1500
1501         arg_type = compute_arg_type(env, call, method_type);
1502         bet_type = call->cb->get_between_type(env->cb);
1503         stack_frame_init(env->frame, arg_type, bet_type, get_irg_frame_type(irg), isa->stack_dir);
1504
1505         /* Count the register params and add them to the number of Projs for the RegParams node */
1506         for(i = 0; i < n_params; ++i) {
1507                 be_abi_call_arg_t *arg = get_call_arg(call, 0, i);
1508                 if(arg->in_reg && args[i]) {
1509                         assert(arg->reg != sp && "cannot use stack pointer as parameter register");
1510                         assert(i == get_Proj_proj(args[i]));
1511
1512                         /* For now, associate the register with the old Proj from Start representing that argument. */
1513                         pmap_insert(env->regs, (void *) arg->reg, args[i]);
1514                         bitset_set(used_proj_nr, i);
1515                         DBG((dbg, LEVEL_2, "\targ #%d -> reg %s\n", i, arg->reg->name));
1516                 }
1517         }
1518
1519         /* Collect all callee-save registers */
1520         for(i = 0, n = arch_isa_get_n_reg_class(isa); i < n; ++i) {
1521                 const arch_register_class_t *cls = arch_isa_get_reg_class(isa, i);
1522                 for(j = 0; j < cls->n_regs; ++j) {
1523                         const arch_register_t *reg = &cls->regs[j];
1524                         if(arch_register_type_is(reg, callee_save) || arch_register_type_is(reg, ignore))
1525                                 pmap_insert(env->regs, (void *) reg, NULL);
1526                 }
1527         }
1528
1529         pmap_insert(env->regs, (void *) sp, NULL);
1530         pmap_insert(env->regs, (void *) isa->bp, NULL);
1531         reg_params_bl   = get_irg_start_block(irg);
1532         env->reg_params = be_new_RegParams(irg, reg_params_bl, pmap_count(env->regs));
1533
1534         /*
1535          * make proj nodes for the callee save registers.
1536          * memorize them, since Return nodes get those as inputs.
1537          *
1538          * Note, that if a register corresponds to an argument, the regs map contains
1539          * the old Proj from start for that argument.
1540          */
1541
1542         rm = reg_map_to_arr(&env->obst, env->regs);
1543         for(i = 0, n = pmap_count(env->regs); i < n; ++i) {
1544                 arch_register_t *reg = (void *) rm[i].reg;
1545                 ir_node *arg_proj    = rm[i].irn;
1546                 ir_mode *mode        = arg_proj ? get_irn_mode(arg_proj) : reg->reg_class->mode;
1547                 long nr              = i;
1548                 int pos              = BE_OUT_POS((int) nr);
1549                 int flags            = 0;
1550
1551                 ir_node *proj;
1552
1553                 assert(nr >= 0);
1554                 bitset_set(used_proj_nr, nr);
1555                 proj = new_r_Proj(irg, reg_params_bl, env->reg_params, mode, nr);
1556                 pmap_insert(env->regs, (void *) reg, proj);
1557                 be_set_constr_single_reg(env->reg_params, pos, reg);
1558                 arch_set_irn_register(env->birg->main_env->arch_env, proj, reg);
1559
1560                 /*
1561                  * If the register is an ignore register,
1562                  * The Proj for that register shall also be ignored during register allocation.
1563                  */
1564                 if(arch_register_type_is(reg, ignore))
1565                         flags |= arch_irn_flags_ignore;
1566
1567                 if(reg == sp)
1568                         flags |= arch_irn_flags_modify_sp;
1569
1570                 be_node_set_flags(env->reg_params, pos, flags);
1571
1572                 DBG((dbg, LEVEL_2, "\tregister save proj #%d -> reg %s\n", nr, reg->name));
1573         }
1574         obstack_free(&env->obst, rm);
1575
1576         /* Generate the Prologue */
1577         fp_reg  = call->cb->prologue(env->cb, &mem, env->regs);
1578
1579         /* do the stack allocation BEFORE the barrier, or spill code
1580            might be added before it */
1581         env->init_sp  = be_abi_reg_map_get(env->regs, sp);
1582         env->init_sp = be_new_IncSP(sp, irg, bl, env->init_sp, no_mem, BE_STACK_FRAME_SIZE, be_stack_dir_expand);
1583         be_abi_reg_map_set(env->regs, sp, env->init_sp);
1584
1585         barrier = create_barrier(env, bl, &mem, env->regs, 0);
1586
1587         env->init_sp  = be_abi_reg_map_get(env->regs, sp);
1588         arch_set_irn_register(env->birg->main_env->arch_env, env->init_sp, sp);
1589
1590         frame_pointer = be_abi_reg_map_get(env->regs, fp_reg);
1591         set_irg_frame(irg, frame_pointer);
1592         pset_insert_ptr(env->ignore_regs, fp_reg);
1593
1594         /* Now, introduce stack param nodes for all parameters passed on the stack */
1595         for(i = 0; i < n_params; ++i) {
1596                 ir_node *arg_proj = args[i];
1597                 ir_node *repl     = NULL;
1598
1599                 if(arg_proj != NULL) {
1600                         be_abi_call_arg_t *arg;
1601                         ir_type *param_type;
1602                         int nr = get_Proj_proj(arg_proj);
1603
1604                         nr         = MIN(nr, n_params);
1605                         arg        = get_call_arg(call, 0, nr);
1606                         param_type = get_method_param_type(method_type, nr);
1607
1608                         if(arg->in_reg) {
1609                                 repl = pmap_get(env->regs, (void *) arg->reg);
1610                         }
1611
1612                         else if(arg->on_stack) {
1613                                 /* For atomic parameters which are actually used, we create a StackParam node. */
1614                                 if(is_atomic_type(param_type) && get_irn_n_edges(args[i]) > 0) {
1615                                         ir_mode *mode                    = get_type_mode(param_type);
1616                                         const arch_register_class_t *cls = arch_isa_get_reg_class_for_mode(isa, mode);
1617                                         repl = be_new_StackParam(cls, isa->bp->reg_class, irg, reg_params_bl, mode, frame_pointer, arg->stack_ent);
1618                                 }
1619
1620                                 /* The stack parameter is not primitive (it is a struct or array),
1621                                 we thus will create a node representing the parameter's address
1622                                 on the stack. */
1623                                 else {
1624                                         repl = be_new_FrameAddr(sp->reg_class, irg, reg_params_bl, frame_pointer, arg->stack_ent);
1625                                 }
1626                         }
1627
1628                         assert(repl != NULL);
1629                         edges_reroute(args[i], repl, irg);
1630                 }
1631         }
1632
1633         /* All Return nodes hang on the End node, so look for them there. */
1634         for (i = 0, n = get_Block_n_cfgpreds(end); i < n; ++i) {
1635                 ir_node *irn = get_Block_cfgpred(end, i);
1636
1637                 if (is_Return(irn)) {
1638                         ir_node *ret = create_be_return(env, irn, get_nodes_block(irn), get_Return_mem(irn), get_Return_n_ress(irn));
1639                         exchange(irn, ret);
1640                 }
1641         }
1642         /* if we have endless loops here, n might be <= 0. Do NOT create a be_Return than,
1643            the code is dead and will never be executed. */
1644
1645         del_pset(dont_save);
1646         obstack_free(&env->obst, args);
1647 }
1648
1649 /**
1650  * Walker: puts all Alloc(stack_alloc) on a obstack
1651  */
1652 static void collect_alloca_walker(ir_node *irn, void *data)
1653 {
1654         be_abi_irg_t *env = data;
1655         if(get_irn_opcode(irn) == iro_Alloc && get_Alloc_where(irn) == stack_alloc)
1656                 obstack_ptr_grow(&env->obst, irn);
1657 }
1658
1659 be_abi_irg_t *be_abi_introduce(be_irg_t *birg)
1660 {
1661         be_abi_irg_t *env  = xmalloc(sizeof(env[0]));
1662         ir_node *old_frame = get_irg_frame(birg->irg);
1663         ir_graph *irg      = birg->irg;
1664
1665         pmap_entry *ent;
1666         ir_node *dummy;
1667         optimization_state_t state;
1668
1669         obstack_init(&env->obst);
1670
1671         env->isa           = birg->main_env->arch_env->isa;
1672         env->method_type   = get_entity_type(get_irg_entity(irg));
1673         env->call          = be_abi_call_new();
1674         arch_isa_get_call_abi(env->isa, env->method_type, env->call);
1675
1676         env->ignore_regs      = pset_new_ptr_default();
1677         env->keep_map         = pmap_create();
1678         env->dce_survivor     = new_survive_dce();
1679         env->birg             = birg;
1680         env->stack_phis       = pset_new_ptr(16);
1681         /* Beware: later we replace this node by the real one, ensure it is not CSE'd
1682            to another Unknown or the stack pointer gets used */
1683         save_optimization_state(&state);
1684         set_optimize(0);
1685         env->init_sp = dummy  = new_r_Unknown(irg, env->isa->sp->reg_class->mode);
1686         restore_optimization_state(&state);
1687         FIRM_DBG_REGISTER(env->dbg, "firm.be.abi");
1688
1689         env->cb = env->call->cb->init(env->call, birg->main_env->arch_env, irg);
1690
1691         memcpy(&env->irn_handler, &abi_irn_handler, sizeof(abi_irn_handler));
1692         env->irn_ops.impl = &abi_irn_ops;
1693
1694         /* Lower all call nodes in the IRG. */
1695         process_calls(env);
1696
1697         /* Process the IRG */
1698         modify_irg(env);
1699
1700         /* We don't need the keep map anymore. */
1701         pmap_destroy(env->keep_map);
1702
1703         /* reroute the stack origin of the calls to the true stack origin. */
1704         edges_reroute(dummy, env->init_sp, irg);
1705         edges_reroute(old_frame, get_irg_frame(irg), irg);
1706
1707         /* Make some important node pointers survive the dead node elimination. */
1708         survive_dce_register_irn(env->dce_survivor, &env->init_sp);
1709         pmap_foreach(env->regs, ent)
1710                 survive_dce_register_irn(env->dce_survivor, (ir_node **) &ent->value);
1711
1712         arch_env_push_irn_handler(env->birg->main_env->arch_env, &env->irn_handler);
1713
1714         env->call->cb->done(env->cb);
1715         be_liveness(irg);
1716         return env;
1717 }
1718
1719 void be_abi_free(be_abi_irg_t *env)
1720 {
1721         free_survive_dce(env->dce_survivor);
1722         del_pset(env->stack_phis);
1723         del_pset(env->ignore_regs);
1724         pmap_destroy(env->regs);
1725         obstack_free(&env->obst, NULL);
1726         arch_env_pop_irn_handler(env->birg->main_env->arch_env);
1727         free(env);
1728 }
1729
1730 void be_abi_put_ignore_regs(be_abi_irg_t *abi, const arch_register_class_t *cls, bitset_t *bs)
1731 {
1732         arch_register_t *reg;
1733
1734         for(reg = pset_first(abi->ignore_regs); reg; reg = pset_next(abi->ignore_regs))
1735                 if(reg->reg_class == cls)
1736                         bitset_set(bs, reg->index);
1737 }
1738
1739
1740 /*
1741
1742   _____ _        ____  _             _
1743  |  ___(_)_  __ / ___|| |_ __ _  ___| | __
1744  | |_  | \ \/ / \___ \| __/ _` |/ __| |/ /
1745  |  _| | |>  <   ___) | || (_| | (__|   <
1746  |_|   |_/_/\_\ |____/ \__\__,_|\___|_|\_\
1747
1748 */
1749
1750 struct fix_stack_walker_info {
1751         nodeset *nodes;
1752         const arch_env_t *aenv;
1753 };
1754
1755 /**
1756  * Walker. Collect all stack modifying nodes.
1757  */
1758 static void collect_stack_nodes_walker(ir_node *irn, void *data)
1759 {
1760         struct fix_stack_walker_info *info = data;
1761
1762         if(arch_irn_is(info->aenv, irn, modify_sp))
1763                 pset_insert_ptr(info->nodes, irn);
1764 }
1765
1766 void be_abi_fix_stack_nodes(be_abi_irg_t *env)
1767 {
1768         dom_front_info_t *df;
1769         pset *stack_nodes = pset_new_ptr(16);
1770         struct fix_stack_walker_info info;
1771
1772         info.nodes = stack_nodes;
1773         info.aenv  = env->birg->main_env->arch_env;
1774
1775         /* We need dominance frontiers for fix up */
1776         df = be_compute_dominance_frontiers(env->birg->irg);
1777         irg_walk_graph(env->birg->irg, collect_stack_nodes_walker, NULL, &info);
1778         pset_insert_ptr(stack_nodes, env->init_sp);
1779         be_ssa_constr_set_phis(df, stack_nodes, env->stack_phis);
1780         del_pset(stack_nodes);
1781
1782         /* Liveness could have changed due to Phi nodes. */
1783         be_liveness(env->birg->irg);
1784
1785         /* free these dominance frontiers */
1786         be_free_dominance_frontiers(df);
1787 }
1788
1789 /**
1790  * Translates a direction of an IncSP node (either be_stack_dir_shrink, or ...expand)
1791  * into -1 or 1, respectively.
1792  * @param irn The node.
1793  * @return 1, if the direction of the IncSP was along, -1 if against.
1794  */
1795 static int get_dir(ir_node *irn)
1796 {
1797         return 1 - 2 * (be_get_IncSP_direction(irn) == be_stack_dir_shrink);
1798 }
1799
1800 static int process_stack_bias(be_abi_irg_t *env, ir_node *bl, int bias)
1801 {
1802         const arch_env_t *aenv = env->birg->main_env->arch_env;
1803         int omit_fp            = env->call->flags.bits.try_omit_fp;
1804         ir_node *irn;
1805
1806         sched_foreach(bl, irn) {
1807
1808                 /*
1809                         If the node modifies the stack pointer by a constant offset,
1810                         record that in the bias.
1811                 */
1812                 if(be_is_IncSP(irn)) {
1813                         int ofs = be_get_IncSP_offset(irn);
1814                         int dir = get_dir(irn);
1815
1816                         if(ofs == BE_STACK_FRAME_SIZE) {
1817                                 ofs = get_type_size_bytes(get_irg_frame_type(env->birg->irg));
1818                                 be_set_IncSP_offset(irn, ofs);
1819                         }
1820
1821                         if(omit_fp)
1822                                 bias += dir * ofs;
1823                 }
1824
1825                 /*
1826                         Else check, if the node relates to an entity on the stack frame.
1827                         If so, set the true offset (including the bias) for that
1828                         node.
1829                 */
1830                 else {
1831                         entity *ent = arch_get_frame_entity(aenv, irn);
1832                         if(ent) {
1833                                 int offset = get_stack_entity_offset(env->frame, ent, bias);
1834                                 arch_set_frame_offset(aenv, irn, offset);
1835                                 DBG((env->dbg, LEVEL_2, "%F has offset %d\n", ent, offset));
1836                         }
1837                 }
1838         }
1839
1840         return bias;
1841 }
1842
1843 /**
1844  * A helper struct for the bias walker.
1845  */
1846 struct bias_walk {
1847         be_abi_irg_t *env;     /**< The ABI irg environment. */
1848         int start_block_bias;  /**< The bias at the end of the start block. */
1849         ir_node *start_block;  /**< The start block of the current graph. */
1850 };
1851
1852 /**
1853  * Block-Walker: fix all stack offsets
1854  */
1855 static void stack_bias_walker(ir_node *bl, void *data)
1856 {
1857         struct bias_walk *bw = data;
1858         if (bl != bw->start_block) {
1859                 process_stack_bias(bw->env, bl, bw->start_block_bias);
1860         }
1861 }
1862
1863 void be_abi_fix_stack_bias(be_abi_irg_t *env)
1864 {
1865         ir_graph *irg  = env->birg->irg;
1866         struct bias_walk bw;
1867
1868         stack_frame_compute_initial_offset(env->frame);
1869         // stack_layout_dump(stdout, env->frame);
1870
1871         /* Determine the stack bias at the end of the start block. */
1872         bw.start_block_bias = process_stack_bias(env, get_irg_start_block(irg), 0);
1873
1874         /* fix the bias is all other blocks */
1875         bw.env = env;
1876         bw.start_block = get_irg_start_block(irg);
1877         irg_block_walk_graph(irg, stack_bias_walker, NULL, &bw);
1878 }
1879
1880 ir_node *be_abi_get_callee_save_irn(be_abi_irg_t *abi, const arch_register_t *reg)
1881 {
1882         assert(arch_register_type_is(reg, callee_save));
1883         assert(pmap_contains(abi->regs, (void *) reg));
1884         return pmap_get(abi->regs, (void *) reg);
1885 }
1886
1887 /*
1888   _____ _____  _   _   _    _                 _ _
1889  |_   _|  __ \| \ | | | |  | |               | | |
1890    | | | |__) |  \| | | |__| | __ _ _ __   __| | | ___ _ __
1891    | | |  _  /| . ` | |  __  |/ _` | '_ \ / _` | |/ _ \ '__|
1892   _| |_| | \ \| |\  | | |  | | (_| | | | | (_| | |  __/ |
1893  |_____|_|  \_\_| \_| |_|  |_|\__,_|_| |_|\__,_|_|\___|_|
1894
1895   for Phi nodes which are created due to stack modifying nodes
1896   such as IncSP, AddSP and SetSP.
1897
1898   These Phis are always to be ignored by the reg alloc and are
1899   fixed on the SP register of the ISA.
1900 */
1901
1902 static const void *abi_get_irn_ops(const arch_irn_handler_t *handler, const ir_node *irn)
1903 {
1904         const be_abi_irg_t *abi = get_abi_from_handler(handler);
1905         const void *res = NULL;
1906
1907         if(is_Phi(irn) && pset_find_ptr(abi->stack_phis, (void *) irn))
1908                 res = &abi->irn_ops;
1909
1910         return res;
1911 }
1912
1913 static void be_abi_limited(void *data, bitset_t *bs)
1914 {
1915         be_abi_irg_t *abi = data;
1916         bitset_clear_all(bs);
1917         bitset_set(bs, abi->isa->sp->index);
1918 }
1919
1920 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)
1921 {
1922         be_abi_irg_t *abi          = get_abi_from_ops(self);
1923         const arch_register_t *reg = abi->isa->sp;
1924
1925         memset(req, 0, sizeof(req[0]));
1926
1927         if(pos == BE_OUT_POS(0)) {
1928                 req->cls         = reg->reg_class;
1929                 req->type        = arch_register_req_type_limited;
1930                 req->limited     = be_abi_limited;
1931                 req->limited_env = abi;
1932         }
1933
1934         else if(pos >= 0 && pos < get_irn_arity(irn)) {
1935                 req->cls  = reg->reg_class;
1936                 req->type = arch_register_req_type_normal;
1937         }
1938
1939         return req;
1940 }
1941
1942 static void abi_set_irn_reg(const void *self, ir_node *irn, const arch_register_t *reg)
1943 {
1944 }
1945
1946 static const arch_register_t *abi_get_irn_reg(const void *self, const ir_node *irn)
1947 {
1948         const be_abi_irg_t *abi = get_abi_from_ops(self);
1949         return abi->isa->sp;
1950 }
1951
1952 static arch_irn_class_t abi_classify(const void *_self, const ir_node *irn)
1953 {
1954         return arch_irn_class_normal;
1955 }
1956
1957 static arch_irn_flags_t abi_get_flags(const void *_self, const ir_node *irn)
1958 {
1959         return arch_irn_flags_ignore | arch_irn_flags_modify_sp;
1960 }
1961
1962 static entity *abi_get_frame_entity(const void *_self, const ir_node *irn)
1963 {
1964         return NULL;
1965 }
1966
1967 static void abi_set_stack_bias(const void *_self, ir_node *irn, int bias)
1968 {
1969 }
1970
1971 static const arch_irn_ops_if_t abi_irn_ops = {
1972         abi_get_irn_reg_req,
1973         abi_set_irn_reg,
1974         abi_get_irn_reg,
1975         abi_classify,
1976         abi_get_flags,
1977         abi_get_frame_entity,
1978         abi_set_stack_bias
1979 };
1980
1981 static const arch_irn_handler_t abi_irn_handler = {
1982         abi_get_irn_ops
1983 };