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