2ceca4687f814a29b418ca4d3e20d46656d7fd06
[libfirm] / ir / be / beabi.c
1 /*
2  * Copyright (C) 1995-2011 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       Backend ABI implementation.
23  * @author      Sebastian Hack, Michael Beck
24  */
25 #include "config.h"
26
27 #include "obst.h"
28
29 #include "irgopt.h"
30
31 #include "irgraph_t.h"
32 #include "irnode_t.h"
33 #include "ircons_t.h"
34 #include "iredges_t.h"
35 #include "irgmod.h"
36 #include "irgwalk.h"
37 #include "irprintf_t.h"
38 #include "irgopt.h"
39 #include "iropt_t.h"
40 #include "irtools.h"
41 #include "heights.h"
42 #include "pdeq.h"
43 #include "util.h"
44 #include "raw_bitset.h"
45 #include "error.h"
46 #include "pset_new.h"
47
48 #include "be.h"
49 #include "beabi.h"
50 #include "bearch.h"
51 #include "benode.h"
52 #include "belive_t.h"
53 #include "besched.h"
54 #include "beirg.h"
55 #include "bessaconstr.h"
56 #include "bemodule.h"
57 #include "betranshlp.h"
58
59 DEBUG_ONLY(static firm_dbg_module_t *dbg;)
60
61 typedef struct be_abi_call_arg_t {
62         unsigned is_res   : 1;  /**< 1: the call argument is a return value. 0: it's a call parameter. */
63         unsigned in_reg   : 1;  /**< 1: this argument is transmitted 1: in registers, 0: on stack. */
64         unsigned callee   : 1;  /**< 1: someone called us. 0: We call another function */
65
66         int                    pos;
67         const arch_register_t *reg;
68         ir_entity             *stack_ent;
69         ir_mode               *load_mode;
70         unsigned               alignment;    /**< stack alignment */
71         unsigned               space_before; /**< allocate space before */
72         unsigned               space_after;  /**< allocate space after */
73 } be_abi_call_arg_t;
74
75 struct be_abi_call_t {
76         be_abi_call_flags_t          flags;  /**< Flags describing the ABI behavior on calls */
77         int                          pop;    /**< number of bytes the stack frame is shrinked by the callee on return. */
78         const be_abi_callbacks_t    *cb;
79         ir_type                     *between_type;
80         set                         *params;
81         const arch_register_class_t *cls_addr; /**< register class of the call address */
82 };
83
84 /**
85  * The ABI information for the current graph.
86  */
87 struct be_abi_irg_t {
88         be_abi_call_t        *call;         /**< The ABI call information. */
89
90         ir_node              *init_sp;      /**< The node representing the stack pointer
91                                                  at the start of the function. */
92
93         pmap                 *regs;         /**< A map of all callee-save and ignore regs to
94                                                  their Projs to the RegParams node. */
95         pmap                 *keep_map;     /**< mapping blocks to keep nodes. */
96
97         ir_node              **calls;       /**< flexible array containing all be_Call nodes */
98 };
99
100 static ir_heights_t *ir_heights;
101
102 /** Flag: if set, try to omit the frame pointer in all routines. */
103 static int be_omit_fp = 1;
104
105 static ir_node *be_abi_reg_map_get(pmap *map, const arch_register_t *reg)
106 {
107         return pmap_get(ir_node, map, reg);
108 }
109
110 static void be_abi_reg_map_set(pmap *map, const arch_register_t* reg,
111                                ir_node *node)
112 {
113         pmap_insert(map, reg, node);
114 }
115
116 /**
117  * Check if the given register is callee save, ie. will be saved by the callee.
118  */
119 static bool arch_register_is_callee_save(
120         const arch_env_t      *arch_env,
121         const arch_register_t *reg)
122 {
123         if (arch_env->impl->register_saved_by)
124                 return arch_env->impl->register_saved_by(reg, /*callee=*/1);
125         return false;
126 }
127
128 /**
129  * Check if the given register is caller save, ie. must be saved by the caller.
130  */
131 static bool arch_register_is_caller_save(
132         const arch_env_t      *arch_env,
133         const arch_register_t *reg)
134 {
135         if (arch_env->impl->register_saved_by)
136                 return arch_env->impl->register_saved_by(reg, /*callee=*/0);
137         return false;
138 }
139
140
141
142 /*
143      _    ____ ___    ____      _ _ _                _
144     / \  | __ )_ _|  / ___|__ _| | | |__   __ _  ___| | _____
145    / _ \ |  _ \| |  | |   / _` | | | '_ \ / _` |/ __| |/ / __|
146   / ___ \| |_) | |  | |__| (_| | | | |_) | (_| | (__|   <\__ \
147  /_/   \_\____/___|  \____\__,_|_|_|_.__/ \__,_|\___|_|\_\___/
148
149   These callbacks are used by the backend to set the parameters
150   for a specific call type.
151 */
152
153 /**
154  * Set compare function: compares two ABI call object arguments.
155  */
156 static int cmp_call_arg(const void *a, const void *b, size_t n)
157 {
158         const be_abi_call_arg_t *p = (const be_abi_call_arg_t*)a;
159         const be_abi_call_arg_t *q = (const be_abi_call_arg_t*)b;
160         (void) n;
161         return !(p->is_res == q->is_res && p->pos == q->pos && p->callee == q->callee);
162 }
163
164 /**
165  * Get  an ABI call object argument.
166  *
167  * @param call      the abi call
168  * @param is_res    true for call results, false for call arguments
169  * @param pos       position of the argument
170  * @param callee    context type - if we are callee or caller
171  */
172 static be_abi_call_arg_t *get_call_arg(be_abi_call_t *call, int is_res, int pos, int callee)
173 {
174         be_abi_call_arg_t arg;
175         unsigned hash;
176
177         memset(&arg, 0, sizeof(arg));
178         arg.is_res = is_res;
179         arg.pos    = pos;
180         arg.callee = callee;
181
182         hash = is_res * 128 + pos;
183
184         return set_find(be_abi_call_arg_t, call->params, &arg, sizeof(arg), hash);
185 }
186
187 /**
188  * Set an ABI call object argument.
189  */
190 static void remember_call_arg(be_abi_call_arg_t *arg, be_abi_call_t *call, be_abi_context_t context)
191 {
192         unsigned hash = arg->is_res * 128 + arg->pos;
193         if (context & ABI_CONTEXT_CALLEE) {
194                 arg->callee = 1;
195                 (void)set_insert(be_abi_call_arg_t, call->params, arg, sizeof(*arg), hash);
196         }
197         if (context & ABI_CONTEXT_CALLER) {
198                 arg->callee = 0;
199                 (void)set_insert(be_abi_call_arg_t, call->params, arg, sizeof(*arg), hash);
200         }
201 }
202
203 /* Set the flags for a call. */
204 void be_abi_call_set_flags(be_abi_call_t *call, be_abi_call_flags_t flags, const be_abi_callbacks_t *cb)
205 {
206         call->flags = flags;
207         call->cb    = cb;
208 }
209
210 /* Sets the number of bytes the stackframe is shrinked by the callee on return */
211 void be_abi_call_set_pop(be_abi_call_t *call, int pop)
212 {
213         assert(pop >= 0);
214         call->pop = pop;
215 }
216
217 /* Set register class for call address */
218 void be_abi_call_set_call_address_reg_class(be_abi_call_t *call, const arch_register_class_t *cls)
219 {
220         call->cls_addr = cls;
221 }
222
223
224 void be_abi_call_param_stack(be_abi_call_t *call, int arg_pos,
225                              ir_mode *load_mode, unsigned alignment,
226                              unsigned space_before, unsigned space_after,
227                              be_abi_context_t context)
228 {
229         be_abi_call_arg_t arg;
230         memset(&arg, 0, sizeof(arg));
231         assert(alignment > 0 && "Alignment must be greater than 0");
232         arg.load_mode    = load_mode;
233         arg.alignment    = alignment;
234         arg.space_before = space_before;
235         arg.space_after  = space_after;
236         arg.is_res       = 0;
237         arg.pos          = arg_pos;
238
239         remember_call_arg(&arg, call, context);
240 }
241
242 void be_abi_call_param_reg(be_abi_call_t *call, int arg_pos, const arch_register_t *reg, be_abi_context_t context)
243 {
244         be_abi_call_arg_t arg;
245         memset(&arg, 0, sizeof(arg));
246
247         arg.in_reg = 1;
248         arg.reg    = reg;
249         arg.is_res = 0;
250         arg.pos    = arg_pos;
251
252         remember_call_arg(&arg, call, context);
253 }
254
255 void be_abi_call_res_reg(be_abi_call_t *call, int arg_pos, const arch_register_t *reg, be_abi_context_t context)
256 {
257         be_abi_call_arg_t arg;
258         memset(&arg, 0, sizeof(arg));
259
260         arg.in_reg = 1;
261         arg.reg    = reg;
262         arg.is_res = 1;
263         arg.pos    = arg_pos;
264
265         remember_call_arg(&arg, call, context);
266 }
267
268 /* Get the flags of a ABI call object. */
269 be_abi_call_flags_t be_abi_call_get_flags(const be_abi_call_t *call)
270 {
271         return call->flags;
272 }
273
274 /**
275  * Constructor for a new ABI call object.
276  *
277  * @param cls_addr  register class of the call address
278  *
279  * @return the new ABI call object
280  */
281 static be_abi_call_t *be_abi_call_new(const arch_register_class_t *cls_addr)
282 {
283         be_abi_call_t *call = XMALLOCZ(be_abi_call_t);
284
285         call->params            = new_set(cmp_call_arg, 16);
286         call->cb                = NULL;
287         call->cls_addr          = cls_addr;
288         call->flags.try_omit_fp = be_omit_fp;
289
290         return call;
291 }
292
293 /**
294  * Destructor for an ABI call object.
295  */
296 static void be_abi_call_free(be_abi_call_t *call)
297 {
298         del_set(call->params);
299         free(call);
300 }
301
302 /**
303  * Initializes the frame layout from parts
304  *
305  * @param frame     the stack layout that will be initialized
306  * @param args      the stack argument layout type
307  * @param between   the between layout type
308  * @param locals    the method frame type
309  *
310  * @return the initialized stack layout
311  */
312 static be_stack_layout_t *stack_frame_init(be_stack_layout_t *frame, ir_type *args,
313                                            ir_type *between, ir_type *locals)
314 {
315         frame->arg_type       = args;
316         frame->between_type   = between;
317         frame->frame_type     = locals;
318         frame->initial_offset = 0;
319         frame->initial_bias   = 0;
320         frame->order[1]       = between;
321
322         /* typical decreasing stack: locals have the
323          * lowest addresses, arguments the highest */
324         frame->order[0] = locals;
325         frame->order[2] = args;
326         return frame;
327 }
328
329 /*
330    ____      _ _
331   / ___|__ _| | |___
332  | |   / _` | | / __|
333  | |__| (_| | | \__ \
334   \____\__,_|_|_|___/
335
336   Adjustment of the calls inside a graph.
337
338 */
339
340 /**
341  * Transform a call node into a be_Call node.
342  *
343  * @param env The ABI environment for the current irg.
344  * @param irn The call node.
345  * @param curr_sp The stack pointer node to use.
346  * @return The stack pointer after the call.
347  */
348 static ir_node *adjust_call(be_abi_irg_t *env, ir_node *irn, ir_node *curr_sp)
349 {
350         ir_graph *irg              = get_irn_irg(irn);
351         const arch_env_t *arch_env = be_get_irg_arch_env(irg);
352         ir_type *call_tp           = get_Call_type(irn);
353         ir_node *call_ptr          = get_Call_ptr(irn);
354         size_t   n_params          = get_method_n_params(call_tp);
355         ir_node *curr_mem          = get_Call_mem(irn);
356         ir_node *bl                = get_nodes_block(irn);
357         int stack_size             = 0;
358         const arch_register_t *sp  = arch_env->sp;
359         be_abi_call_t *call        = be_abi_call_new(sp->reg_class);
360         ir_mode *mach_mode         = sp->reg_class->mode;
361         int n_res                  = get_method_n_ress(call_tp);
362
363         ir_node *res_proj  = NULL;
364         int n_reg_params   = 0;
365         int n_stack_params = 0;
366         int n_ins;
367
368         const arch_register_t **states = NEW_ARR_F(const arch_register_t*, 0);
369         const arch_register_t **destroyed_regs = NEW_ARR_F(const arch_register_t*, 0);
370         ir_node                *low_call;
371         ir_node               **in;
372         ir_node               **res_projs;
373         int                     n_reg_results = 0;
374         int                    *reg_param_idxs;
375         int                    *stack_param_idx;
376         int                     i, n;
377         int                     throws_exception;
378         size_t                  s;
379         size_t                  p;
380         dbg_info               *dbgi;
381
382         /* Let the isa fill out the abi description for that call node. */
383         arch_env_get_call_abi(arch_env, call_tp, call);
384
385         /* Insert code to put the stack arguments on the stack. */
386         assert((size_t)get_Call_n_params(irn) == n_params);
387         stack_param_idx = ALLOCAN(int, n_params);
388         for (p = 0; p < n_params; ++p) {
389                 be_abi_call_arg_t *arg = get_call_arg(call, 0, p, 0);
390                 assert(arg);
391                 if (!arg->in_reg) {
392                         int arg_size = get_type_size_bytes(get_method_param_type(call_tp, p));
393
394                         stack_size += round_up2(arg->space_before, arg->alignment);
395                         stack_size += round_up2(arg_size, arg->alignment);
396                         stack_size += round_up2(arg->space_after, arg->alignment);
397
398                         stack_param_idx[n_stack_params++] = p;
399                 }
400         }
401
402         /* Collect all arguments which are passed in registers. */
403         reg_param_idxs = ALLOCAN(int, n_params);
404         for (p = 0; p < n_params; ++p) {
405                 be_abi_call_arg_t *arg = get_call_arg(call, 0, p, 0);
406                 if (arg && arg->in_reg) {
407                         reg_param_idxs[n_reg_params++] = p;
408                 }
409         }
410
411         /*
412          * If the stack is decreasing and we do not want to store sequentially,
413          * or someone else allocated the call frame
414          * we allocate as much space on the stack all parameters need, by
415          * moving the stack pointer along the stack's direction.
416          *
417          * Note: we also have to do this for stack_size == 0, because we may have
418          * to adjust stack alignment for the call.
419          */
420         curr_sp = be_new_IncSP(sp, bl, curr_sp, stack_size, 1);
421
422         dbgi = get_irn_dbg_info(irn);
423         /* If there are some parameters which shall be passed on the stack. */
424         if (n_stack_params > 0) {
425                 int       curr_ofs = 0;
426                 ir_node **in       = ALLOCAN(ir_node*, n_stack_params+1);
427                 unsigned  n_in     = 0;
428
429                 curr_mem = get_Call_mem(irn);
430                 in[n_in++] = curr_mem;
431
432                 for (i = 0; i < n_stack_params; ++i) {
433                         int p                  = stack_param_idx[i];
434                         be_abi_call_arg_t *arg = get_call_arg(call, 0, p, 0);
435                         ir_node *param         = get_Call_param(irn, p);
436                         ir_node *addr          = curr_sp;
437                         ir_node *mem           = NULL;
438                         ir_type *param_type    = get_method_param_type(call_tp, p);
439                         int param_size         = get_type_size_bytes(param_type) + arg->space_after;
440
441                         /*
442                          * If we wanted to build the arguments sequentially,
443                          * the stack pointer for the next must be incremented,
444                          * and the memory value propagated.
445                          */
446                         curr_ofs += arg->space_before;
447                         curr_ofs =  round_up2(curr_ofs, arg->alignment);
448
449                         /* Make the expression to compute the argument's offset. */
450                         if (curr_ofs > 0) {
451                                 ir_mode *constmode = mach_mode;
452                                 if (mode_is_reference(mach_mode)) {
453                                         constmode = mode_Is;
454                                 }
455                                 addr = new_r_Const_long(irg, constmode, curr_ofs);
456                                 addr = new_r_Add(bl, curr_sp, addr, mach_mode);
457                         }
458
459                         /* Insert a store for primitive arguments. */
460                         if (is_atomic_type(param_type)) {
461                                 ir_node *nomem     = get_irg_no_mem(irg);
462                                 ir_node *mem_input = nomem;
463                                 ir_node *store     = new_rd_Store(dbgi, bl, mem_input, addr, param, cons_none);
464                                 mem   = new_r_Proj(store, mode_M, pn_Store_M);
465                         } else {
466                                 /* Make a mem copy for compound arguments. */
467                                 ir_node *copy;
468
469                                 assert(mode_is_reference(get_irn_mode(param)));
470                                 copy = new_rd_CopyB(dbgi, bl, curr_mem, addr, param, param_type);
471                                 mem = new_r_Proj(copy, mode_M, pn_CopyB_M);
472                         }
473
474                         curr_ofs += param_size;
475
476                         in[n_in++] = mem;
477                 }
478
479                 /* We need the sync only, if we didn't build the stores sequentially. */
480                 if (n_stack_params >= 1) {
481                         curr_mem = new_r_Sync(bl, n_in, in);
482                 } else {
483                         curr_mem = get_Call_mem(irn);
484                 }
485         }
486
487         /* Put caller save into the destroyed set and state registers in the states
488          * set */
489         for (i = 0, n = arch_env->n_register_classes; i < n; ++i) {
490                 unsigned j;
491                 const arch_register_class_t *cls = &arch_env->register_classes[i];
492                 for (j = 0; j < cls->n_regs; ++j) {
493                         const arch_register_t *reg = arch_register_for_index(cls, j);
494
495                         /* even if destroyed all is specified, neither SP nor FP are
496                          * destroyed (else bad things will happen) */
497                         if (reg == arch_env->sp || reg == arch_env->bp)
498                                 continue;
499
500                         if (reg->type & arch_register_type_state) {
501                                 ARR_APP1(const arch_register_t*, destroyed_regs, reg);
502                                 ARR_APP1(const arch_register_t*, states, reg);
503                                 /* we're already in the destroyed set so no need for further
504                                  * checking */
505                                 continue;
506                         }
507                         if (arch_register_is_caller_save(arch_env, reg)) {
508                                 if (!(reg->type & arch_register_type_ignore)) {
509                                         ARR_APP1(const arch_register_t*, destroyed_regs, reg);
510                                 }
511                         }
512                 }
513         }
514
515         /* search the largest result proj number */
516         res_projs = ALLOCANZ(ir_node*, n_res);
517
518         foreach_out_edge(irn, edge) {
519                 ir_node *irn = get_edge_src_irn(edge);
520
521                 if (!is_Proj(irn) || get_Proj_proj(irn) != pn_Call_T_result)
522                         continue;
523
524                 foreach_out_edge(irn, res_edge) {
525                         int proj;
526                         ir_node *res = get_edge_src_irn(res_edge);
527
528                         assert(is_Proj(res));
529
530                         proj = get_Proj_proj(res);
531                         assert(proj < n_res);
532                         assert(res_projs[proj] == NULL);
533                         res_projs[proj] = res;
534                 }
535                 res_proj = irn;
536                 break;
537         }
538
539         /** TODO: this is not correct for cases where return values are passed
540          * on the stack, but no known ABI does this currently...
541          */
542         n_reg_results = n_res;
543
544         n_ins = 0;
545         in    = ALLOCAN(ir_node*, n_reg_params + ARR_LEN(states));
546
547         /* make the back end call node and set its register requirements. */
548         for (i = 0; i < n_reg_params; ++i) {
549                 in[n_ins++] = get_Call_param(irn, reg_param_idxs[i]);
550         }
551
552         /* add state registers ins */
553         for (s = 0; s < ARR_LEN(states); ++s) {
554                 const arch_register_t       *reg = states[s];
555                 const arch_register_class_t *cls = reg->reg_class;
556                 ir_node *regnode = new_r_Unknown(irg, cls->mode);
557                 in[n_ins++]      = regnode;
558         }
559         assert(n_ins == (int) (n_reg_params + ARR_LEN(states)));
560
561         /* ins collected, build the call */
562         throws_exception = ir_throws_exception(irn);
563         if (env->call->flags.call_has_imm && is_SymConst(call_ptr)) {
564                 /* direct call */
565                 low_call = be_new_Call(dbgi, irg, bl, curr_mem, sp->single_req, curr_sp,
566                                        sp->single_req, curr_sp,
567                                        n_reg_results + pn_be_Call_first_res + ARR_LEN(destroyed_regs),
568                                        n_ins, in, get_Call_type(irn));
569                 be_Call_set_entity(low_call, get_SymConst_entity(call_ptr));
570         } else {
571                 /* indirect call */
572                 low_call = be_new_Call(dbgi, irg, bl, curr_mem, sp->single_req, curr_sp,
573                                        call->cls_addr->class_req, call_ptr,
574                                        n_reg_results + pn_be_Call_first_res + ARR_LEN(destroyed_regs),
575                                        n_ins, in, get_Call_type(irn));
576         }
577         ir_set_throws_exception(low_call, throws_exception);
578         be_Call_set_pop(low_call, call->pop);
579
580         /* put the call into the list of all calls for later processing */
581         ARR_APP1(ir_node *, env->calls, low_call);
582
583         /* create new stack pointer */
584         curr_sp = new_r_Proj(low_call, get_irn_mode(curr_sp), pn_be_Call_sp);
585         be_set_constr_single_reg_out(low_call, pn_be_Call_sp, sp,
586                         arch_register_req_type_ignore | arch_register_req_type_produces_sp);
587         arch_set_irn_register(curr_sp, sp);
588
589         /* now handle results */
590         for (i = 0; i < n_res; ++i) {
591                 ir_node           *proj = res_projs[i];
592                 be_abi_call_arg_t *arg  = get_call_arg(call, 1, i, 0);
593
594                 /* returns values on stack not supported yet */
595                 assert(arg->in_reg);
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                 long pn = i + pn_be_Call_first_res;
603
604                 if (proj == NULL) {
605                         ir_type *res_type = get_method_res_type(call_tp, i);
606                         ir_mode *mode     = get_type_mode(res_type);
607                         proj              = new_r_Proj(low_call, mode, pn);
608                         res_projs[i]      = proj;
609                 } else {
610                         set_Proj_pred(proj, low_call);
611                         set_Proj_proj(proj, pn);
612                 }
613
614                 if (arg->in_reg) {
615                         /* remove register from destroyed regs */
616                         size_t j;
617                         size_t n = ARR_LEN(destroyed_regs);
618                         for (j = 0; j < n; ++j) {
619                                 if (destroyed_regs[j] == arg->reg) {
620                                         destroyed_regs[j] = destroyed_regs[n-1];
621                                         ARR_SHRINKLEN(destroyed_regs,n-1);
622                                         break;
623                                 }
624                         }
625                 }
626         }
627
628         DBG((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_reg_params; ++i) {
632                 int index = reg_param_idxs[i];
633                 be_abi_call_arg_t *arg = get_call_arg(call, 0, index, 0);
634                 assert(arg->reg != NULL);
635
636                 be_set_constr_single_reg_in(low_call, n_be_Call_first_arg + i,
637                                             arg->reg, arch_register_req_type_none);
638         }
639
640         /* Set the register constraints of the results. */
641         for (i = 0; i < n_res; ++i) {
642                 ir_node                 *proj = res_projs[i];
643                 const be_abi_call_arg_t *arg  = get_call_arg(call, 1, i, 0);
644                 int                      pn   = get_Proj_proj(proj);
645
646                 assert(arg->in_reg);
647                 be_set_constr_single_reg_out(low_call, pn, arg->reg,
648                                              arch_register_req_type_none);
649                 arch_set_irn_register(proj, arg->reg);
650         }
651         exchange(irn, low_call);
652
653         /* kill the ProjT node */
654         if (res_proj != NULL) {
655                 kill_node(res_proj);
656         }
657
658         /* Make additional projs for the caller save registers
659            and the Keep node which keeps them alive. */
660         {
661                 ir_node               **in, *keep;
662                 int                   i;
663                 size_t                d;
664                 int                   n = 0;
665                 int                   curr_res_proj = pn_be_Call_first_res + n_reg_results;
666                 int                   n_ins;
667
668                 n_ins = ARR_LEN(destroyed_regs) + n_reg_results + 1;
669                 in    = ALLOCAN(ir_node *, n_ins);
670
671                 /* also keep the stack pointer */
672                 set_irn_link(curr_sp, (void*) sp);
673                 in[n++] = curr_sp;
674
675                 for (d = 0; d < ARR_LEN(destroyed_regs); ++d) {
676                         const arch_register_t *reg = destroyed_regs[d];
677                         ir_node *proj = new_r_Proj(low_call, reg->reg_class->mode, curr_res_proj);
678
679                         /* memorize the register in the link field. we need afterwards to set the register class of the keep correctly. */
680                         be_set_constr_single_reg_out(low_call, curr_res_proj, reg,
681                                                      arch_register_req_type_none);
682                         arch_set_irn_register(proj, reg);
683
684                         set_irn_link(proj, (void*) reg);
685                         in[n++] = proj;
686                         ++curr_res_proj;
687                 }
688
689                 for (i = 0; i < n_reg_results; ++i) {
690                         ir_node *proj = res_projs[i];
691                         const arch_register_t *reg = arch_get_irn_register(proj);
692                         set_irn_link(proj, (void*) reg);
693                         in[n++] = proj;
694                 }
695                 assert(n <= n_ins);
696
697                 /* create the Keep for the caller save registers */
698                 keep = be_new_Keep(bl, n, in);
699                 for (i = 0; i < n; ++i) {
700                         const arch_register_t *reg = (const arch_register_t*)get_irn_link(in[i]);
701                         be_node_set_reg_class_in(keep, i, reg->reg_class);
702                 }
703         }
704
705         /* Clean up the stack. */
706         assert(stack_size >= call->pop);
707         stack_size -= call->pop;
708
709         if (stack_size > 0) {
710                 ir_node *mem_proj = NULL;
711
712                 foreach_out_edge(low_call, edge) {
713                         ir_node *irn = get_edge_src_irn(edge);
714                         if (is_Proj(irn) && get_Proj_proj(irn) == pn_Call_M) {
715                                 mem_proj = irn;
716                                 break;
717                         }
718                 }
719
720                 if (! mem_proj) {
721                         mem_proj = new_r_Proj(low_call, mode_M, pn_be_Call_M);
722                         keep_alive(mem_proj);
723                 }
724         }
725         /* Clean up the stack frame or revert alignment fixes if we allocated it */
726         curr_sp = be_new_IncSP(sp, bl, curr_sp, -stack_size, 0);
727
728         be_abi_call_free(call);
729
730         DEL_ARR_F(states);
731         DEL_ARR_F(destroyed_regs);
732
733         return curr_sp;
734 }
735
736 /**
737  * Adjust the size of a node representing a stack alloc or free for the minimum stack alignment.
738  *
739  * @param alignment  the minimum stack alignment
740  * @param size       the node containing the non-aligned size
741  * @param block      the block where new nodes are allocated on
742  * @param dbg        debug info for new nodes
743  *
744  * @return a node representing the aligned size
745  */
746 static ir_node *adjust_alloc_size(unsigned stack_alignment, ir_node *size,
747                                   ir_node *block, dbg_info *dbg)
748 {
749         if (stack_alignment > 1) {
750                 ir_mode   *mode;
751                 ir_tarval *tv;
752                 ir_node   *mask;
753                 ir_graph  *irg;
754
755                 assert(is_po2(stack_alignment));
756
757                 mode = get_irn_mode(size);
758                 tv   = new_tarval_from_long(stack_alignment-1, mode);
759                 irg  = get_Block_irg(block);
760                 mask = new_r_Const(irg, tv);
761                 size = new_rd_Add(dbg, block, size, mask, mode);
762
763                 tv   = new_tarval_from_long(-(long)stack_alignment, mode);
764                 mask = new_r_Const(irg, tv);
765                 size = new_rd_And(dbg, block, size, mask, mode);
766         }
767         return size;
768 }
769 /**
770  * Adjust an alloca.
771  * The alloca is transformed into a back end alloca node and connected to the stack nodes.
772  */
773 static ir_node *adjust_alloc(be_abi_irg_t *env, ir_node *alloc, ir_node *curr_sp)
774 {
775         ir_node          *block     = get_nodes_block(alloc);
776         ir_graph         *irg       = get_Block_irg(block);
777         const arch_env_t *arch_env  = be_get_irg_arch_env(irg);
778         ir_node          *alloc_mem = NULL;
779         ir_node          *alloc_res = NULL;
780         ir_type          *type      = get_Alloc_type(alloc);
781         dbg_info         *dbg;
782
783         ir_node *new_alloc;
784         ir_node *count;
785         ir_node *size;
786         ir_node *ins[2];
787         unsigned stack_alignment;
788
789         /* all non-stack Alloc nodes should already be lowered before the backend */
790         assert(get_Alloc_where(alloc) == stack_alloc);
791
792         foreach_out_edge(alloc, edge) {
793                 ir_node *irn = get_edge_src_irn(edge);
794
795                 assert(is_Proj(irn));
796                 switch (get_Proj_proj(irn)) {
797                 case pn_Alloc_M:
798                         alloc_mem = irn;
799                         break;
800                 case pn_Alloc_res:
801                         alloc_res = irn;
802                         break;
803                 default:
804                         break;
805                 }
806         }
807
808         /* Beware: currently Alloc nodes without a result might happen,
809            only escape analysis kills them and this phase runs only for object
810            oriented source. We kill the Alloc here. */
811         if (alloc_res == NULL && alloc_mem) {
812                 exchange(alloc_mem, get_Alloc_mem(alloc));
813                 return curr_sp;
814         }
815
816         dbg   = get_irn_dbg_info(alloc);
817         count = get_Alloc_count(alloc);
818
819         /* we might need to multiply the count with the element size */
820         if (!is_unknown_type(type) && get_type_size_bytes(type) != 1) {
821                 ir_mode   *mode  = get_irn_mode(count);
822                 ir_tarval *tv    = new_tarval_from_long(get_type_size_bytes(type),
823                                                         mode);
824                 ir_node   *cnst = new_rd_Const(dbg, irg, tv);
825                 size            = new_rd_Mul(dbg, block, count, cnst, mode);
826         } else {
827                 size = count;
828         }
829
830         /* The stack pointer will be modified in an unknown manner.
831            We cannot omit it. */
832         env->call->flags.try_omit_fp = 0;
833
834         stack_alignment = 1 << arch_env->stack_alignment;
835         size            = adjust_alloc_size(stack_alignment, size, block, dbg);
836         new_alloc       = be_new_AddSP(arch_env->sp, block, curr_sp, size);
837         set_irn_dbg_info(new_alloc, dbg);
838
839         if (alloc_mem != NULL) {
840                 ir_node *addsp_mem;
841                 ir_node *sync;
842
843                 addsp_mem = new_r_Proj(new_alloc, mode_M, pn_be_AddSP_M);
844
845                 /* We need to sync the output mem of the AddSP with the input mem
846                    edge into the alloc node. */
847                 ins[0] = get_Alloc_mem(alloc);
848                 ins[1] = addsp_mem;
849                 sync = new_r_Sync(block, 2, ins);
850
851                 exchange(alloc_mem, sync);
852         }
853
854         exchange(alloc, new_alloc);
855
856         /* fix projnum of alloca res */
857         set_Proj_proj(alloc_res, pn_be_AddSP_res);
858
859         curr_sp = new_r_Proj(new_alloc,  get_irn_mode(curr_sp), pn_be_AddSP_sp);
860
861         return curr_sp;
862 }
863
864 /**
865  * Adjust a Free.
866  * The Free is transformed into a back end free node and connected to the stack nodes.
867  */
868 static ir_node *adjust_free(be_abi_irg_t *env, ir_node *free, ir_node *curr_sp)
869 {
870         ir_node          *block    = get_nodes_block(free);
871         ir_graph         *irg      = get_irn_irg(free);
872         ir_type          *type     = get_Free_type(free);
873         const arch_env_t *arch_env = be_get_irg_arch_env(irg);
874         ir_mode          *sp_mode  = arch_env->sp->reg_class->mode;
875         dbg_info         *dbg      = get_irn_dbg_info(free);
876         ir_node  *subsp, *mem, *res, *size, *sync;
877         ir_node *in[2];
878         unsigned stack_alignment;
879
880         /* all non-stack-alloc Free nodes should already be lowered before the
881          * backend phase */
882         assert(get_Free_where(free) == stack_alloc);
883
884         /* we might need to multiply the size with the element size */
885         if (!is_unknown_type(type) && get_type_size_bytes(type) != 1) {
886                 ir_tarval *tv   = new_tarval_from_long(get_type_size_bytes(type), mode_Iu);
887                 ir_node   *cnst = new_rd_Const(dbg, irg, tv);
888                 ir_node   *mul  = new_rd_Mul(dbg, block, get_Free_count(free),
889                                              cnst, mode_Iu);
890                 size = mul;
891         } else {
892                 size = get_Free_count(free);
893         }
894
895         stack_alignment = 1 << arch_env->stack_alignment;
896         size            = adjust_alloc_size(stack_alignment, size, block, dbg);
897
898         /* The stack pointer will be modified in an unknown manner.
899            We cannot omit it. */
900         env->call->flags.try_omit_fp = 0;
901         subsp = be_new_SubSP(arch_env->sp, block, curr_sp, size);
902         set_irn_dbg_info(subsp, dbg);
903
904         mem = new_r_Proj(subsp, mode_M, pn_be_SubSP_M);
905         res = new_r_Proj(subsp, sp_mode, pn_be_SubSP_sp);
906
907         /* we need to sync the memory */
908         in[0] = get_Free_mem(free);
909         in[1] = mem;
910         sync = new_r_Sync(block, 2, in);
911
912         /* and make the AddSP dependent on the former memory */
913         add_irn_dep(subsp, get_Free_mem(free));
914
915         /* kill the free */
916         exchange(free, sync);
917         curr_sp = res;
918
919         return curr_sp;
920 }
921
922 /**
923  * Check if a node is somehow data dependent on another one.
924  * both nodes must be in the same basic block.
925  * @param n1 The first node.
926  * @param n2 The second node.
927  * @return 1, if n1 is data dependent (transitively) on n2, 0 if not.
928  */
929 static int dependent_on(ir_node *n1, ir_node *n2)
930 {
931         assert(get_nodes_block(n1) == get_nodes_block(n2));
932
933         return heights_reachable_in_block(ir_heights, n1, n2);
934 }
935
936 static int cmp_call_dependency(const void *c1, const void *c2)
937 {
938         ir_node *n1 = *(ir_node **) c1;
939         ir_node *n2 = *(ir_node **) c2;
940         unsigned h1, h2;
941
942         /*
943                 Classical qsort() comparison function behavior:
944                 0  if both elements are equal
945                 1  if second is "smaller" that first
946                 -1 if first is "smaller" that second
947         */
948         if (dependent_on(n1, n2))
949                 return -1;
950
951         if (dependent_on(n2, n1))
952                 return 1;
953
954         /* The nodes have no depth order, but we need a total order because qsort()
955          * is not stable.
956          *
957          * Additionally, we need to respect transitive dependencies. Consider a
958          * Call a depending on Call b and an independent Call c.
959          * We MUST NOT order c > a and b > c. */
960         h1 = get_irn_height(ir_heights, n1);
961         h2 = get_irn_height(ir_heights, n2);
962         if (h1 < h2) return -1;
963         if (h1 > h2) return  1;
964         /* Same height, so use a random (but stable) order */
965         return get_irn_idx(n1) - get_irn_idx(n2);
966 }
967
968 /**
969  * Walker: links all Call/Alloc/Free nodes to the Block they are contained.
970  */
971 static void link_ops_in_block_walker(ir_node *irn, void *data)
972 {
973         be_abi_irg_t *env  = (be_abi_irg_t*)data;
974         unsigned      code = get_irn_opcode(irn);
975
976         if (code == iro_Call ||
977            (code == iro_Alloc && get_Alloc_where(irn) == stack_alloc) ||
978            (code == iro_Free && get_Free_where(irn) == stack_alloc)) {
979                 ir_node *bl       = get_nodes_block(irn);
980                 void *save        = get_irn_link(bl);
981
982                 set_irn_link(irn, save);
983                 set_irn_link(bl, irn);
984         }
985
986         if (code == iro_Builtin && get_Builtin_kind(irn) == ir_bk_return_address) {
987                 ir_node       *param = get_Builtin_param(irn, 0);
988                 ir_tarval     *tv    = get_Const_tarval(param);
989                 unsigned long  value = get_tarval_long(tv);
990                 /* use ebp, so the climbframe algo works... */
991                 if (value > 0) {
992                         env->call->flags.try_omit_fp = 0;
993                 }
994         }
995 }
996
997 /**
998  * Block-walker:
999  * Process all Call/Alloc/Free nodes inside a basic block.
1000  * Note that the link field of the block must contain a linked list of all
1001  * nodes inside the Block. We first order this list according to data dependency
1002  * and that connect the nodes together.
1003  */
1004 static void process_ops_in_block(ir_node *bl, void *data)
1005 {
1006         be_abi_irg_t   *env     = (be_abi_irg_t*)data;
1007         ir_node        *curr_sp = env->init_sp;
1008         ir_node        *irn;
1009         ir_node       **nodes;
1010         int             n;
1011         int             n_nodes;
1012
1013         n_nodes = 0;
1014         for (irn = (ir_node*)get_irn_link(bl); irn != NULL;
1015              irn = (ir_node*)get_irn_link(irn)) {
1016                 ++n_nodes;
1017         }
1018
1019         nodes = ALLOCAN(ir_node*, n_nodes);
1020         for (irn = (ir_node*)get_irn_link(bl), n = 0; irn != NULL;
1021              irn = (ir_node*)get_irn_link(irn), ++n) {
1022                 nodes[n] = irn;
1023         }
1024
1025         /* If there were call nodes in the block. */
1026         if (n > 0) {
1027                 ir_node *keep;
1028                 int i;
1029
1030                 /* order the call nodes according to data dependency */
1031                 qsort(nodes, n_nodes, sizeof(nodes[0]), cmp_call_dependency);
1032
1033                 for (i = n_nodes - 1; i >= 0; --i) {
1034                         ir_node *irn = nodes[i];
1035
1036                         DBG((dbg, LEVEL_3, "\tprocessing call %+F\n", irn));
1037                         switch (get_irn_opcode(irn)) {
1038                         case iro_Call:
1039                                 curr_sp = adjust_call(env, irn, curr_sp);
1040                                 break;
1041                         case iro_Alloc:
1042                                 if (get_Alloc_where(irn) == stack_alloc)
1043                                         curr_sp = adjust_alloc(env, irn, curr_sp);
1044                                 break;
1045                         case iro_Free:
1046                                 if (get_Free_where(irn) == stack_alloc)
1047                                         curr_sp = adjust_free(env, irn, curr_sp);
1048                                 break;
1049                         default:
1050                                 panic("invalid call");
1051                         }
1052                 }
1053
1054                 /* Keep the last stack state in the block by tying it to Keep node,
1055                  * the proj from calls is already kept */
1056                 if (curr_sp != env->init_sp &&
1057                     !(is_Proj(curr_sp) && be_is_Call(get_Proj_pred(curr_sp)))) {
1058                         nodes[0] = curr_sp;
1059                         keep     = be_new_Keep(bl, 1, nodes);
1060                         pmap_insert(env->keep_map, bl, keep);
1061                 }
1062         }
1063
1064         set_irn_link(bl, curr_sp);
1065 }
1066
1067 /**
1068  * Adjust all call nodes in the graph to the ABI conventions.
1069  */
1070 static void process_calls(ir_graph *const irg, be_abi_irg_t *const abi)
1071 {
1072         irg_walk_graph(irg, firm_clear_link, link_ops_in_block_walker, abi);
1073
1074         ir_heights = heights_new(irg);
1075         irg_block_walk_graph(irg, NULL, process_ops_in_block, abi);
1076         heights_free(ir_heights);
1077 }
1078
1079 /**
1080  * Computes the stack argument layout type.
1081  * Changes a possibly allocated value param type by moving
1082  * entities to the stack layout type.
1083  *
1084  * @param call          the current call ABI
1085  * @param method_type   the method type
1086  *
1087  * @return the stack argument layout type
1088  */
1089 static ir_type *compute_arg_type(ir_graph *irg, be_abi_call_t *call,
1090                                                                  ir_type *method_type)
1091 {
1092         struct obstack *obst = be_get_be_obst(irg);
1093         ir_type   *frame_type      = get_irg_frame_type(irg);
1094         size_t     n_params        = get_method_n_params(method_type);
1095         size_t     n_frame_members = get_compound_n_members(frame_type);
1096         ir_entity *va_start_entity = NULL;
1097         size_t   f;
1098         int      ofs  = 0;
1099
1100         ir_type *res;
1101         size_t i;
1102         ir_entity **map = OALLOCNZ(obst, ir_entity*, n_params);
1103         res = new_type_struct(new_id_from_chars("arg_type", 8));
1104
1105         /* collect existing entities for value_param_types */
1106         for (f = n_frame_members; f > 0; ) {
1107                 ir_entity *entity = get_compound_member(frame_type, --f);
1108                 size_t     num;
1109
1110                 set_entity_link(entity, NULL);
1111                 if (!is_parameter_entity(entity))
1112                         continue;
1113                 num = get_entity_parameter_number(entity);
1114                 if (num == IR_VA_START_PARAMETER_NUMBER) {
1115                         /* move entity to new arg_type */
1116                         set_entity_owner(entity, res);
1117                         va_start_entity = entity;
1118                         continue;
1119                 }
1120                 assert(num < n_params);
1121                 if (map[num] != NULL)
1122                         panic("multiple entities for parameter %u in %+F found", f, irg);
1123
1124                 if (num != n_params && get_call_arg(call, 0, num, 1)->in_reg) {
1125                         /* don't move this entity */
1126                         continue;
1127                 }
1128
1129                 map[num] = entity;
1130                 /* move entity to new arg_type */
1131                 set_entity_owner(entity, res);
1132         }
1133
1134         for (i = 0; i < n_params; ++i) {
1135                 be_abi_call_arg_t *arg        = get_call_arg(call, 0, i, 1);
1136                 ir_type           *param_type = get_method_param_type(method_type, i);
1137                 ir_entity         *entity;
1138
1139                 if (arg->in_reg)
1140                         continue;
1141                 entity = map[i];
1142                 if (entity == NULL) {
1143                         /* create a new entity */
1144                         entity = new_parameter_entity(res, i, param_type);
1145                 }
1146                 ofs += arg->space_before;
1147                 ofs = round_up2(ofs, arg->alignment);
1148                 set_entity_offset(entity, ofs);
1149                 ofs += arg->space_after;
1150                 ofs += get_type_size_bytes(param_type);
1151                 arg->stack_ent = entity;
1152         }
1153         if (va_start_entity != NULL) {
1154                 set_entity_offset(va_start_entity, ofs);
1155         }
1156         set_type_size_bytes(res, ofs);
1157         set_type_state(res, layout_fixed);
1158
1159         return res;
1160 }
1161
1162 typedef struct {
1163         const arch_register_t *reg;
1164         ir_node *irn;
1165 } reg_node_map_t;
1166
1167 static int cmp_regs(const void *a, const void *b)
1168 {
1169         const reg_node_map_t *p = (const reg_node_map_t*)a;
1170         const reg_node_map_t *q = (const reg_node_map_t*)b;
1171
1172         if (p->reg->reg_class == q->reg->reg_class)
1173                 return p->reg->index - q->reg->index;
1174         else
1175                 return p->reg->reg_class < q->reg->reg_class ? -1 : +1;
1176 }
1177
1178 static void reg_map_to_arr(reg_node_map_t *res, pmap *reg_map)
1179 {
1180         pmap_entry *ent;
1181         size_t n = pmap_count(reg_map);
1182         size_t i = 0;
1183
1184         foreach_pmap(reg_map, ent) {
1185                 res[i].reg = (const arch_register_t*)ent->key;
1186                 res[i].irn = (ir_node*)ent->value;
1187                 i++;
1188         }
1189
1190         qsort(res, n, sizeof(res[0]), cmp_regs);
1191 }
1192
1193 /**
1194  * Creates a be_Return for a Return node.
1195  *
1196  * @param @env  the abi environment
1197  * @param irn   the Return node or NULL if there was none
1198  * @param bl    the block where the be_Retun should be placed
1199  * @param mem   the current memory
1200  * @param n_res number of return results
1201  */
1202 static ir_node *create_be_return(be_abi_irg_t *env, ir_node *irn, ir_node *bl,
1203                 ir_node *mem, int n_res)
1204 {
1205         be_abi_call_t    *call     = env->call;
1206         ir_graph         *irg      = get_Block_irg(bl);
1207         const arch_env_t *arch_env = be_get_irg_arch_env(irg);
1208         dbg_info *dbgi;
1209         pmap *reg_map  = pmap_create();
1210         ir_node *keep  = pmap_get(ir_node, env->keep_map, bl);
1211         size_t in_max;
1212         ir_node *ret;
1213         int i, n;
1214         unsigned pop;
1215         ir_node **in;
1216         ir_node *stack;
1217         const arch_register_t **regs;
1218         pmap_entry *ent;
1219
1220         /*
1221                 get the valid stack node in this block.
1222                 If we had a call in that block there is a Keep constructed by process_calls()
1223                 which points to the last stack modification in that block. we'll use
1224                 it then. Else we use the stack from the start block and let
1225                 the ssa construction fix the usage.
1226         */
1227         stack = be_abi_reg_map_get(env->regs, arch_env->sp);
1228         if (keep) {
1229                 stack = get_irn_n(keep, 0);
1230                 kill_node(keep);
1231                 remove_End_keepalive(get_irg_end(irg), keep);
1232         }
1233
1234         /* Insert results for Return into the register map. */
1235         for (i = 0; i < n_res; ++i) {
1236                 ir_node *res           = get_Return_res(irn, i);
1237                 be_abi_call_arg_t *arg = get_call_arg(call, 1, i, 1);
1238                 assert(arg->in_reg && "return value must be passed in register");
1239                 pmap_insert(reg_map, (void *) arg->reg, res);
1240         }
1241
1242         /* Add uses of the callee save registers. */
1243         foreach_pmap(env->regs, ent) {
1244                 const arch_register_t *reg = (const arch_register_t*)ent->key;
1245                 if ((reg->type & arch_register_type_ignore) || arch_register_is_callee_save(arch_env, reg))
1246                         pmap_insert(reg_map, ent->key, ent->value);
1247         }
1248
1249         be_abi_reg_map_set(reg_map, arch_env->sp, stack);
1250
1251         /*
1252                 Maximum size of the in array for Return nodes is
1253                 return args + callee save/ignore registers + memory + stack pointer
1254         */
1255         in_max = pmap_count(reg_map) + n_res + 2;
1256
1257         in   = ALLOCAN(ir_node*,               in_max);
1258         regs = ALLOCAN(arch_register_t const*, in_max);
1259
1260         in[0]   = mem;
1261         in[1]   = be_abi_reg_map_get(reg_map, arch_env->sp);
1262         regs[0] = NULL;
1263         regs[1] = arch_env->sp;
1264         n       = 2;
1265
1266         /* clear SP entry, since it has already been grown. */
1267         pmap_insert(reg_map, (void *) arch_env->sp, NULL);
1268         for (i = 0; i < n_res; ++i) {
1269                 be_abi_call_arg_t *arg = get_call_arg(call, 1, i, 1);
1270
1271                 in[n]     = be_abi_reg_map_get(reg_map, arg->reg);
1272                 regs[n++] = arg->reg;
1273
1274                 /* Clear the map entry to mark the register as processed. */
1275                 be_abi_reg_map_set(reg_map, arg->reg, NULL);
1276         }
1277
1278         /* grow the rest of the stuff. */
1279         foreach_pmap(reg_map, ent) {
1280                 if (ent->value) {
1281                         in[n]     = (ir_node*)ent->value;
1282                         regs[n++] = (const arch_register_t*)ent->key;
1283                 }
1284         }
1285
1286         /* The in array for the new back end return is now ready. */
1287         if (irn != NULL) {
1288                 dbgi = get_irn_dbg_info(irn);
1289         } else {
1290                 dbgi = NULL;
1291         }
1292         /* we have to pop the shadow parameter in in case of struct returns */
1293         pop = call->pop;
1294         ret = be_new_Return(dbgi, irg, bl, n_res, pop, n, in);
1295
1296         /* Set the register classes of the return's parameter accordingly. */
1297         for (i = 0; i < n; ++i) {
1298                 if (regs[i] == NULL)
1299                         continue;
1300
1301                 be_set_constr_single_reg_in(ret, i, regs[i], arch_register_req_type_none);
1302         }
1303
1304         /* Free the space of the Epilog's in array and the register <-> proj map. */
1305         pmap_destroy(reg_map);
1306
1307         return ret;
1308 }
1309
1310 typedef struct lower_frame_sels_env_t {
1311         ir_node      *frame;                     /**< the current frame */
1312         const arch_register_class_t *sp_class;   /**< register class of the stack pointer */
1313 } lower_frame_sels_env_t;
1314
1315 /**
1316  * Walker: Replaces Sels of frame type and
1317  * value param type entities by FrameAddress.
1318  * Links all used entities.
1319  */
1320 static void lower_frame_sels_walker(ir_node *irn, void *data)
1321 {
1322         lower_frame_sels_env_t *ctx = (lower_frame_sels_env_t*)data;
1323
1324         if (is_Sel(irn)) {
1325                 ir_node *ptr = get_Sel_ptr(irn);
1326
1327                 if (ptr == ctx->frame) {
1328                         ir_entity    *ent = get_Sel_entity(irn);
1329                         ir_node      *bl  = get_nodes_block(irn);
1330                         ir_node      *nw;
1331
1332                         nw = be_new_FrameAddr(ctx->sp_class, bl, ctx->frame, ent);
1333                         exchange(irn, nw);
1334                 }
1335         }
1336 }
1337
1338 /**
1339  * The start block has no jump, instead it has an initial exec Proj.
1340  * The backend wants to handle all blocks the same way, so we replace
1341  * the out cfg edge with a real jump.
1342  */
1343 static void fix_start_block(ir_graph *irg)
1344 {
1345         ir_node *initial_X   = get_irg_initial_exec(irg);
1346         ir_node *start_block = get_irg_start_block(irg);
1347         ir_node *jmp         = new_r_Jmp(start_block);
1348
1349         assert(is_Proj(initial_X));
1350         exchange(initial_X, jmp);
1351         set_irg_initial_exec(irg, new_r_Bad(irg, mode_X));
1352
1353         /* merge start block with successor if possible */
1354         {
1355                 foreach_out_edge(jmp, edge) {
1356                         ir_node *succ = get_edge_src_irn(edge);
1357                         if (!is_Block(succ))
1358                                 continue;
1359
1360                         if (get_irn_arity(succ) == 1) {
1361                                 exchange(succ, start_block);
1362                         }
1363                         break;
1364                 }
1365         }
1366 }
1367
1368 /**
1369  * Modify the irg itself and the frame type.
1370  */
1371 static void modify_irg(ir_graph *const irg, be_abi_irg_t *const env)
1372 {
1373         be_abi_call_t         *call         = env->call;
1374         const arch_env_t      *arch_env     = be_get_irg_arch_env(irg);
1375         const arch_register_t *sp           = arch_env->sp;
1376         ir_type               *method_type  = get_entity_type(get_irg_entity(irg));
1377         be_irg_t              *birg         = be_birg_from_irg(irg);
1378         struct obstack        *obst         = be_get_be_obst(irg);
1379         be_stack_layout_t     *stack_layout = be_get_irg_stack_layout(irg);
1380         ir_node *end;
1381         ir_node *old_mem;
1382         ir_node *new_mem_proj;
1383         ir_node *mem;
1384
1385         int n_params;
1386         int i, n;
1387         unsigned j;
1388
1389         reg_node_map_t *rm;
1390         const arch_register_t *fp_reg;
1391         ir_node *frame_pointer;
1392         ir_node *start_bl;
1393         ir_node **args;
1394         ir_node *arg_tuple;
1395         ir_type *arg_type, *bet_type;
1396         lower_frame_sels_env_t ctx;
1397
1398         DBG((dbg, LEVEL_1, "introducing abi on %+F\n", irg));
1399
1400         old_mem = get_irg_initial_mem(irg);
1401
1402         irp_reserve_resources(irp, IRP_RESOURCE_ENTITY_LINK);
1403
1404         arg_type = compute_arg_type(irg, call, method_type);
1405
1406         /* Convert the Sel nodes in the irg to frame addr nodes: */
1407         ctx.frame    = get_irg_frame(irg);
1408         ctx.sp_class = arch_env->sp->reg_class;
1409
1410         ir_type *const frame_tp = get_irg_frame_type(irg);
1411         /* layout the stackframe now */
1412         if (get_type_state(frame_tp) == layout_undefined) {
1413                 default_layout_compound_type(frame_tp);
1414         }
1415
1416         /* align stackframe */
1417         unsigned const alignment  = 1U << arch_env->stack_alignment;
1418         unsigned const frame_size = round_up2(get_type_size_bytes(frame_tp), alignment);
1419         set_type_size_bytes(frame_tp, frame_size);
1420
1421         env->regs  = pmap_create();
1422
1423         n_params = get_method_n_params(method_type);
1424         args     = OALLOCNZ(obst, ir_node*, n_params);
1425
1426         be_add_parameter_entity_stores(irg);
1427
1428         irg_walk_graph(irg, lower_frame_sels_walker, NULL, &ctx);
1429
1430         irp_free_resources(irp, IRP_RESOURCE_ENTITY_LINK);
1431
1432         /* Fill the argument vector */
1433         arg_tuple = get_irg_args(irg);
1434         foreach_out_edge(arg_tuple, edge) {
1435                 ir_node *irn = get_edge_src_irn(edge);
1436                 if (! is_Anchor(irn)) {
1437                         int nr       = get_Proj_proj(irn);
1438                         args[nr]     = irn;
1439                         DBG((dbg, LEVEL_2, "\treading arg: %d -> %+F\n", nr, irn));
1440                 }
1441         }
1442
1443         stack_layout->sp_relative = call->flags.try_omit_fp;
1444         bet_type = call->cb->get_between_type(irg);
1445         stack_frame_init(stack_layout, arg_type, bet_type,
1446                          get_irg_frame_type(irg));
1447
1448         /* Count the register params and add them to the number of Projs for the RegParams node */
1449         for (i = 0; i < n_params; ++i) {
1450                 be_abi_call_arg_t *arg = get_call_arg(call, 0, i, 1);
1451                 if (arg->in_reg && args[i]) {
1452                         assert(arg->reg != sp && "cannot use stack pointer as parameter register");
1453                         assert(i == get_Proj_proj(args[i]));
1454
1455                         /* For now, associate the register with the old Proj from Start representing that argument. */
1456                         pmap_insert(env->regs, (void *) arg->reg, args[i]);
1457                         DBG((dbg, LEVEL_2, "\targ #%d -> reg %s\n", i, arg->reg->name));
1458                 }
1459         }
1460
1461         /* Collect all callee-save registers */
1462         for (i = 0, n = arch_env->n_register_classes; i < n; ++i) {
1463                 const arch_register_class_t *cls = &arch_env->register_classes[i];
1464                 for (j = 0; j < cls->n_regs; ++j) {
1465                         const arch_register_t *reg = &cls->regs[j];
1466                         if ((reg->type & arch_register_type_state) || arch_register_is_callee_save(arch_env, reg)) {
1467                                 pmap_insert(env->regs, (void *) reg, NULL);
1468                         }
1469                 }
1470         }
1471
1472         fp_reg = call->flags.try_omit_fp ? arch_env->sp : arch_env->bp;
1473         rbitset_clear(birg->allocatable_regs, fp_reg->global_index);
1474
1475         /* handle start block here (place a jump in the block) */
1476         fix_start_block(irg);
1477
1478         pmap_insert(env->regs, (void *) sp, NULL);
1479         pmap_insert(env->regs, (void *) arch_env->bp, NULL);
1480         start_bl   = get_irg_start_block(irg);
1481         ir_node *const start = be_new_Start(NULL, start_bl, pmap_count(env->regs) + 1);
1482         set_irg_start(irg, start);
1483
1484         /*
1485          * make proj nodes for the callee save registers.
1486          * memorize them, since Return nodes get those as inputs.
1487          *
1488          * Note, that if a register corresponds to an argument, the regs map
1489          * contains the old Proj from start for that argument.
1490          */
1491         rm = ALLOCAN(reg_node_map_t, pmap_count(env->regs));
1492         reg_map_to_arr(rm, env->regs);
1493         for (i = 0, n = pmap_count(env->regs); i < n; ++i) {
1494                 const arch_register_t    *reg      = rm[i].reg;
1495                 ir_mode                  *mode     = reg->reg_class->mode;
1496                 long                      nr       = i;
1497                 arch_register_req_type_t  add_type = arch_register_req_type_none;
1498                 ir_node                  *proj;
1499
1500                 if (reg == sp)
1501                         add_type |= arch_register_req_type_produces_sp;
1502                 if (!rbitset_is_set(birg->allocatable_regs, reg->global_index)) {
1503                         add_type |= arch_register_req_type_ignore;
1504                 }
1505
1506                 assert(nr >= 0);
1507                 proj = new_r_Proj(start, mode, nr + 1);
1508                 pmap_insert(env->regs, (void *) reg, proj);
1509                 be_set_constr_single_reg_out(start, nr + 1, reg, add_type);
1510                 arch_set_irn_register(proj, reg);
1511
1512                 DBG((dbg, LEVEL_2, "\tregister save proj #%d -> reg %s\n", nr, reg->name));
1513         }
1514
1515         /* create a new initial memory proj */
1516         assert(is_Proj(old_mem));
1517         arch_set_irn_register_req_out(start, 0, arch_no_register_req);
1518         new_mem_proj = new_r_Proj(start, mode_M, 0);
1519         mem = new_mem_proj;
1520         set_irg_initial_mem(irg, mem);
1521
1522         env->init_sp = be_abi_reg_map_get(env->regs, sp);
1523
1524         /* set new frame_pointer */
1525         frame_pointer = be_abi_reg_map_get(env->regs, fp_reg);
1526         set_irg_frame(irg, frame_pointer);
1527
1528         /* rewire old mem users to new mem */
1529         exchange(old_mem, mem);
1530
1531         /* keep the mem (for functions with an endless loop = no return) */
1532         keep_alive(mem);
1533
1534         set_irg_initial_mem(irg, mem);
1535
1536         /* Now, introduce stack param nodes for all parameters passed on the stack */
1537         for (i = 0; i < n_params; ++i) {
1538                 ir_node *arg_proj = args[i];
1539                 ir_node *repl     = NULL;
1540
1541                 if (arg_proj != NULL) {
1542                         be_abi_call_arg_t *arg;
1543                         ir_type *param_type;
1544                         int     nr = get_Proj_proj(arg_proj);
1545                         ir_mode *mode;
1546
1547                         nr         = MIN(nr, n_params);
1548                         arg        = get_call_arg(call, 0, nr, 1);
1549                         param_type = get_method_param_type(method_type, nr);
1550
1551                         if (arg->in_reg) {
1552                                 repl = pmap_get(ir_node, env->regs, arg->reg);
1553                         } else {
1554                                 ir_node *addr = be_new_FrameAddr(sp->reg_class, start_bl, frame_pointer, arg->stack_ent);
1555
1556                                 /* For atomic parameters which are actually used, we create a Load node. */
1557                                 if (is_atomic_type(param_type) && get_irn_n_edges(args[i]) > 0) {
1558                                         ir_mode *mode      = get_type_mode(param_type);
1559                                         ir_mode *load_mode = arg->load_mode;
1560                                         ir_node *nomem     = get_irg_no_mem(irg);
1561
1562                                         ir_node *load = new_r_Load(start_bl, nomem, addr, load_mode, cons_floats);
1563                                         repl = new_r_Proj(load, load_mode, pn_Load_res);
1564
1565                                         if (mode != load_mode) {
1566                                                 repl = new_r_Conv(start_bl, repl, mode);
1567                                         }
1568                                 } else {
1569                                         /* The stack parameter is not primitive (it is a struct or array),
1570                                          * we thus will create a node representing the parameter's address
1571                                          * on the stack. */
1572                                         repl = addr;
1573                                 }
1574                         }
1575
1576                         assert(repl != NULL);
1577
1578                         /* Beware: the mode of the register parameters is always the mode of the register class
1579                            which may be wrong. Add Conv's then. */
1580                         mode = get_irn_mode(args[i]);
1581                         if (mode != get_irn_mode(repl)) {
1582                                 repl = new_r_Conv(get_nodes_block(repl), repl, mode);
1583                         }
1584                         exchange(args[i], repl);
1585                 }
1586         }
1587
1588         /* the arg proj is not needed anymore now and should be only used by the anchor */
1589         assert(get_irn_n_edges(arg_tuple) == 1);
1590         kill_node(arg_tuple);
1591         set_irg_args(irg, new_r_Bad(irg, mode_T));
1592
1593         /* All Return nodes hang on the End node, so look for them there. */
1594         end = get_irg_end_block(irg);
1595         for (i = 0, n = get_Block_n_cfgpreds(end); i < n; ++i) {
1596                 ir_node *irn = get_Block_cfgpred(end, i);
1597
1598                 if (is_Return(irn)) {
1599                         ir_node *blk = get_nodes_block(irn);
1600                         ir_node *mem = get_Return_mem(irn);
1601                         ir_node *ret = create_be_return(env, irn, blk, mem, get_Return_n_ress(irn));
1602                         exchange(irn, ret);
1603                 }
1604         }
1605
1606         /* if we have endless loops here, n might be <= 0. Do NOT create a be_Return then,
1607            the code is dead and will never be executed. */
1608 }
1609
1610 /** Fix the state inputs of calls that still hang on unknowns */
1611 static void fix_call_state_inputs(ir_graph *const irg, be_abi_irg_t *const env)
1612 {
1613         const arch_env_t *arch_env = be_get_irg_arch_env(irg);
1614         int i, n, n_states;
1615         arch_register_t **stateregs = NEW_ARR_F(arch_register_t*, 0);
1616
1617         /* Collect caller save registers */
1618         n = arch_env->n_register_classes;
1619         for (i = 0; i < n; ++i) {
1620                 unsigned j;
1621                 const arch_register_class_t *cls = &arch_env->register_classes[i];
1622                 for (j = 0; j < cls->n_regs; ++j) {
1623                         const arch_register_t *reg = arch_register_for_index(cls, j);
1624                         if (reg->type & arch_register_type_state) {
1625                                 ARR_APP1(arch_register_t*, stateregs, (arch_register_t *)reg);
1626                         }
1627                 }
1628         }
1629
1630         n = ARR_LEN(env->calls);
1631         n_states = ARR_LEN(stateregs);
1632         for (i = 0; i < n; ++i) {
1633                 int s, arity;
1634                 ir_node *call = env->calls[i];
1635
1636                 arity = get_irn_arity(call);
1637
1638                 /* the state reg inputs are the last n inputs of the calls */
1639                 for (s = 0; s < n_states; ++s) {
1640                         int inp = arity - n_states + s;
1641                         const arch_register_t *reg = stateregs[s];
1642                         ir_node *regnode = be_abi_reg_map_get(env->regs, reg);
1643
1644                         set_irn_n(call, inp, regnode);
1645                 }
1646         }
1647
1648         DEL_ARR_F(stateregs);
1649 }
1650
1651 /**
1652  * Create a trampoline entity for the given method.
1653  */
1654 static ir_entity *create_trampoline(be_main_env_t *be, ir_entity *method)
1655 {
1656         ir_type   *type   = get_entity_type(method);
1657         ident     *old_id = get_entity_ld_ident(method);
1658         ident     *id     = id_mangle3("", old_id, "$stub");
1659         ir_type   *parent = be->pic_trampolines_type;
1660         ir_entity *ent    = new_entity(parent, old_id, type);
1661         set_entity_ld_ident(ent, id);
1662         set_entity_visibility(ent, ir_visibility_private);
1663
1664         return ent;
1665 }
1666
1667 /**
1668  * Returns the trampoline entity for the given method.
1669  */
1670 static ir_entity *get_trampoline(be_main_env_t *env, ir_entity *method)
1671 {
1672         ir_entity *result = pmap_get(ir_entity, env->ent_trampoline_map, method);
1673         if (result == NULL) {
1674                 result = create_trampoline(env, method);
1675                 pmap_insert(env->ent_trampoline_map, method, result);
1676         }
1677
1678         return result;
1679 }
1680
1681 static ir_entity *create_pic_symbol(be_main_env_t *be, ir_entity *entity)
1682 {
1683         ident     *old_id = get_entity_ld_ident(entity);
1684         ident     *id     = id_mangle3("", old_id, "$non_lazy_ptr");
1685         ir_type   *e_type = get_entity_type(entity);
1686         ir_type   *type   = new_type_pointer(e_type);
1687         ir_type   *parent = be->pic_symbols_type;
1688         ir_entity *ent    = new_entity(parent, old_id, type);
1689         set_entity_ld_ident(ent, id);
1690         set_entity_visibility(ent, ir_visibility_private);
1691
1692         return ent;
1693 }
1694
1695 static ir_entity *get_pic_symbol(be_main_env_t *env, ir_entity *entity)
1696 {
1697         ir_entity *result = pmap_get(ir_entity, env->ent_pic_symbol_map, entity);
1698         if (result == NULL) {
1699                 result = create_pic_symbol(env, entity);
1700                 pmap_insert(env->ent_pic_symbol_map, entity, result);
1701         }
1702
1703         return result;
1704 }
1705
1706
1707
1708 /**
1709  * Returns non-zero if a given entity can be accessed using a relative address.
1710  */
1711 static int can_address_relative(ir_entity *entity)
1712 {
1713         return entity_has_definition(entity) && !(get_entity_linkage(entity) & IR_LINKAGE_MERGE);
1714 }
1715
1716 static ir_node *get_pic_base(ir_graph *irg)
1717 {
1718         const arch_env_t *arch_env = be_get_irg_arch_env(irg);
1719         if (arch_env->impl->get_pic_base == NULL)
1720                 return NULL;
1721         return arch_env->impl->get_pic_base(irg);
1722 }
1723
1724 /** patches SymConsts to work in position independent code */
1725 static void fix_pic_symconsts(ir_node *node, void *data)
1726 {
1727         ir_graph         *irg = get_irn_irg(node);
1728         be_main_env_t    *be  = be_get_irg_main_env(irg);
1729         ir_node          *pic_base;
1730         ir_node          *add;
1731         ir_node          *block;
1732         ir_mode          *mode;
1733         ir_node          *load;
1734         ir_node          *load_res;
1735         int               arity, i;
1736         (void) data;
1737
1738         arity = get_irn_arity(node);
1739         for (i = 0; i < arity; ++i) {
1740                 dbg_info  *dbgi;
1741                 ir_node   *pred = get_irn_n(node, i);
1742                 ir_entity *entity;
1743                 ir_entity *pic_symbol;
1744                 ir_node   *pic_symconst;
1745
1746                 if (!is_SymConst(pred))
1747                         continue;
1748
1749                 entity = get_SymConst_entity(pred);
1750                 block  = get_nodes_block(pred);
1751
1752                 /* calls can jump to relative addresses, so we can directly jump to
1753                    the (relatively) known call address or the trampoline */
1754                 if (i == 1 && is_Call(node)) {
1755                         ir_entity *trampoline;
1756                         ir_node   *trampoline_const;
1757
1758                         if (can_address_relative(entity))
1759                                 continue;
1760
1761                         dbgi             = get_irn_dbg_info(pred);
1762                         trampoline       = get_trampoline(be, entity);
1763                         trampoline_const = new_rd_SymConst_addr_ent(dbgi, irg, mode_P_code,
1764                                                                     trampoline);
1765                         set_irn_n(node, i, trampoline_const);
1766                         continue;
1767                 }
1768
1769                 /* everything else is accessed relative to EIP */
1770                 mode     = get_irn_mode(pred);
1771                 pic_base = get_pic_base(irg);
1772
1773                 /* all ok now for locally constructed stuff */
1774                 if (can_address_relative(entity)) {
1775                         ir_node *add = new_r_Add(block, pic_base, pred, mode);
1776
1777                         /* make sure the walker doesn't visit this add again */
1778                         mark_irn_visited(add);
1779                         set_irn_n(node, i, add);
1780                         continue;
1781                 }
1782
1783                 /* get entry from pic symbol segment */
1784                 dbgi         = get_irn_dbg_info(pred);
1785                 pic_symbol   = get_pic_symbol(be, entity);
1786                 pic_symconst = new_rd_SymConst_addr_ent(dbgi, irg, mode_P_code,
1787                                                         pic_symbol);
1788                 add = new_r_Add(block, pic_base, pic_symconst, mode);
1789                 mark_irn_visited(add);
1790
1791                 /* we need an extra indirection for global data outside our current
1792                    module. The loads are always safe and can therefore float
1793                    and need no memory input */
1794                 load     = new_r_Load(block, get_irg_no_mem(irg), add, mode, cons_floats);
1795                 load_res = new_r_Proj(load, mode, pn_Load_res);
1796
1797                 set_irn_n(node, i, load_res);
1798         }
1799 }
1800
1801 void be_abi_introduce(ir_graph *irg)
1802 {
1803         ir_node          *old_frame   = get_irg_frame(irg);
1804         const arch_env_t *arch_env    = be_get_irg_arch_env(irg);
1805         ir_entity        *entity      = get_irg_entity(irg);
1806         ir_type          *method_type = get_entity_type(entity);
1807         be_irg_t         *birg        = be_birg_from_irg(irg);
1808         struct obstack   *obst        = &birg->obst;
1809         ir_node          *dummy       = new_r_Dummy(irg,
1810                                                     arch_env->sp->reg_class->mode);
1811         unsigned          r;
1812
1813         /* determine allocatable registers */
1814         assert(birg->allocatable_regs == NULL);
1815         birg->allocatable_regs = rbitset_obstack_alloc(obst, arch_env->n_registers);
1816         for (r = 0; r < arch_env->n_registers; ++r) {
1817                 const arch_register_t *reg = &arch_env->registers[r];
1818                 if ( !(reg->type & arch_register_type_ignore)) {
1819                         rbitset_set(birg->allocatable_regs, r);
1820                 }
1821         }
1822
1823         /* Break here if backend provides a custom API. */
1824
1825         be_omit_fp        = be_options.omit_fp;
1826
1827         be_abi_irg_t env;
1828         env.keep_map     = pmap_create();
1829         env.call         = be_abi_call_new(arch_env->sp->reg_class);
1830         arch_env_get_call_abi(arch_env, method_type, env.call);
1831
1832         env.init_sp = dummy;
1833         env.calls   = NEW_ARR_F(ir_node*, 0);
1834
1835         assure_edges(irg);
1836
1837         if (be_options.pic) {
1838                 irg_walk_graph(irg, fix_pic_symconsts, NULL, NULL);
1839         }
1840
1841         /* Lower all call nodes in the IRG. */
1842         process_calls(irg, &env);
1843
1844         /* Process the IRG */
1845         modify_irg(irg, &env);
1846
1847         /* fix call inputs for state registers */
1848         fix_call_state_inputs(irg, &env);
1849
1850         be_abi_call_free(env.call);
1851
1852         /* We don't need the keep map anymore. */
1853         pmap_destroy(env.keep_map);
1854
1855         /* calls array is not needed anymore */
1856         DEL_ARR_F(env.calls);
1857
1858         /* reroute the stack origin of the calls to the true stack origin. */
1859         exchange(dummy, env.init_sp);
1860         exchange(old_frame, get_irg_frame(irg));
1861
1862         pmap_destroy(env.regs);
1863 }
1864
1865 void be_put_allocatable_regs(const ir_graph *irg,
1866                              const arch_register_class_t *cls, bitset_t *bs)
1867 {
1868         be_irg_t *birg             = be_birg_from_irg(irg);
1869         unsigned *allocatable_regs = birg->allocatable_regs;
1870         unsigned  i;
1871
1872         assert(bitset_size(bs) == cls->n_regs);
1873         bitset_clear_all(bs);
1874         for (i = 0; i < cls->n_regs; ++i) {
1875                 const arch_register_t *reg = &cls->regs[i];
1876                 if (rbitset_is_set(allocatable_regs, reg->global_index))
1877                         bitset_set(bs, i);
1878         }
1879 }
1880
1881 unsigned be_get_n_allocatable_regs(const ir_graph *irg,
1882                                    const arch_register_class_t *cls)
1883 {
1884         bitset_t *bs = bitset_alloca(cls->n_regs);
1885         be_put_allocatable_regs(irg, cls, bs);
1886         return bitset_popcount(bs);
1887 }
1888
1889 void be_set_allocatable_regs(const ir_graph *irg,
1890                              const arch_register_class_t *cls,
1891                              unsigned *raw_bitset)
1892 {
1893         be_irg_t *birg             = be_birg_from_irg(irg);
1894         unsigned *allocatable_regs = birg->allocatable_regs;
1895         unsigned  i;
1896
1897         rbitset_clear_all(raw_bitset, cls->n_regs);
1898         for (i = 0; i < cls->n_regs; ++i) {
1899                 const arch_register_t *reg = &cls->regs[i];
1900                 if (rbitset_is_set(allocatable_regs, reg->global_index))
1901                         rbitset_set(raw_bitset, i);
1902         }
1903 }
1904
1905 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_abi)
1906 void be_init_abi(void)
1907 {
1908         FIRM_DBG_REGISTER(dbg, "firm.be.abi");
1909 }