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