fixed register requirements
[libfirm] / ir / be / ia32 / bearch_ia32.c
1 #ifdef HAVE_CONFIG_H
2 #include "config.h"
3 #endif
4
5 #ifdef _WIN32
6 #include <malloc.h>
7 #else
8 #include <alloca.h>
9 #endif
10
11 #include "pseudo_irg.h"
12 #include "irgwalk.h"
13 #include "irprog.h"
14 #include "irprintf.h"
15 #include "iredges_t.h"
16 #include "ircons.h"
17 #include "irgmod.h"
18
19 #include "bitset.h"
20 #include "debug.h"
21
22 #include "../beabi.h"                 /* the general register allocator interface */
23 #include "../benode_t.h"
24 #include "../belower.h"
25 #include "../besched_t.h"
26 #include "../be.h"
27 #include "bearch_ia32_t.h"
28
29 #include "ia32_new_nodes.h"           /* ia32 nodes interface */
30 #include "gen_ia32_regalloc_if.h"     /* the generated interface (register type and class defenitions) */
31 #include "ia32_gen_decls.h"           /* interface declaration emitter */
32 #include "ia32_transform.h"
33 #include "ia32_emitter.h"
34 #include "ia32_map_regs.h"
35 #include "ia32_optimize.h"
36
37 #define DEBUG_MODULE "firm.be.ia32.isa"
38
39 /* TODO: ugly */
40 static set *cur_reg_set = NULL;
41
42 #undef is_Start
43 #define is_Start(irn) (get_irn_opcode(irn) == iro_Start)
44
45 ir_node *ia32_new_NoReg_gp(ia32_code_gen_t *cg) {
46         return be_abi_get_callee_save_irn(cg->birg->abi, &ia32_gp_regs[REG_XXX]);
47 }
48
49 ir_node *ia32_new_NoReg_fp(ia32_code_gen_t *cg) {
50         return be_abi_get_callee_save_irn(cg->birg->abi, &ia32_fp_regs[REG_XXXX]);
51 }
52
53 /**************************************************
54  *                         _ _              _  __
55  *                        | | |            (_)/ _|
56  *  _ __ ___  __ _    __ _| | | ___   ___   _| |_
57  * | '__/ _ \/ _` |  / _` | | |/ _ \ / __| | |  _|
58  * | | |  __/ (_| | | (_| | | | (_) | (__  | | |
59  * |_|  \___|\__, |  \__,_|_|_|\___/ \___| |_|_|
60  *            __/ |
61  *           |___/
62  **************************************************/
63
64 static ir_node *my_skip_proj(const ir_node *n) {
65         while (is_Proj(n))
66                 n = get_Proj_pred(n);
67         return (ir_node *)n;
68 }
69
70 /**
71  * Return register requirements for an ia32 node.
72  * If the node returns a tuple (mode_T) then the proj's
73  * will be asked for this information.
74  */
75 static const arch_register_req_t *ia32_get_irn_reg_req(const void *self, arch_register_req_t *req, const ir_node *irn, int pos) {
76         const ia32_register_req_t *irn_req;
77         long                       node_pos = pos == -1 ? 0 : pos;
78         ir_mode                   *mode     = get_irn_mode(irn);
79         firm_dbg_module_t         *mod      = firm_dbg_register(DEBUG_MODULE);
80         const ia32_irn_ops_t      *ops      = self;
81
82         if (mode == mode_T || mode == mode_M) {
83                 DBG((mod, LEVEL_1, "ignoring mode_T, mode_M node %+F\n", irn));
84                 return NULL;
85         }
86
87         DBG((mod, LEVEL_1, "get requirements at pos %d for %+F ... ", pos, irn));
88
89
90         if (is_Proj(irn)) {
91                 if (pos == -1) {
92                         node_pos = ia32_translate_proj_pos(irn);
93                 }
94                 else {
95                         node_pos = pos;
96                 }
97
98                 irn = my_skip_proj(irn);
99
100                 DB((mod, LEVEL_1, "skipping Proj, going to %+F at pos %d ... ", irn, node_pos));
101         }
102
103         if (is_ia32_irn(irn)) {
104                 if (pos >= 0) {
105                         irn_req = get_ia32_in_req(irn, pos);
106                 }
107                 else {
108                         irn_req = get_ia32_out_req(irn, node_pos);
109                 }
110
111                 DB((mod, LEVEL_1, "returning reqs for %+F at pos %d\n", irn, pos));
112
113                 memcpy(req, &(irn_req->req), sizeof(*req));
114
115                 if (arch_register_req_is(&(irn_req->req), should_be_same)) {
116                         assert(irn_req->same_pos >= 0 && "should be same constraint for in -> out NYI");
117                         req->other_same = get_irn_n(irn, irn_req->same_pos);
118                 }
119
120                 if (arch_register_req_is(&(irn_req->req), should_be_different)) {
121                         assert(irn_req->different_pos >= 0 && "should be different constraint for in -> out NYI");
122                         req->other_different = get_irn_n(irn, irn_req->different_pos);
123                 }
124         }
125         else {
126                 /* treat Phi like Const with default requirements */
127                 if (is_Phi(irn)) {
128                         DB((mod, LEVEL_1, "returning standard reqs for %+F\n", irn));
129                         if (mode_is_float(mode))
130                                 memcpy(req, &(ia32_default_req_ia32_fp.req), sizeof(*req));
131                         else if (mode_is_int(mode) || mode_is_reference(mode))
132                                 memcpy(req, &(ia32_default_req_ia32_gp.req), sizeof(*req));
133                         else if (mode == mode_T || mode == mode_M) {
134                                 DBG((mod, LEVEL_1, "ignoring Phi node %+F\n", irn));
135                                 return NULL;
136                         }
137                         else
138                                 assert(0 && "unsupported Phi-Mode");
139                 }
140                 else {
141                         DB((mod, LEVEL_1, "returning NULL for %+F (not ia32)\n", irn));
142                         req = NULL;
143                 }
144         }
145
146         return req;
147 }
148
149 static void ia32_set_irn_reg(const void *self, ir_node *irn, const arch_register_t *reg) {
150         int pos = 0;
151
152         if (is_Proj(irn)) {
153                 pos = ia32_translate_proj_pos(irn);
154                 irn = my_skip_proj(irn);
155         }
156
157         if (is_ia32_irn(irn)) {
158                 const arch_register_t **slots;
159
160                 slots      = get_ia32_slots(irn);
161                 slots[pos] = reg;
162         }
163         else {
164                 ia32_set_firm_reg(irn, reg, cur_reg_set);
165         }
166 }
167
168 static const arch_register_t *ia32_get_irn_reg(const void *self, const ir_node *irn) {
169         int pos = 0;
170         const arch_register_t *reg = NULL;
171
172         if (is_Proj(irn)) {
173                 pos = ia32_translate_proj_pos(irn);
174                 irn = my_skip_proj(irn);
175         }
176
177         if (is_ia32_irn(irn)) {
178                 const arch_register_t **slots;
179                 slots = get_ia32_slots(irn);
180                 reg   = slots[pos];
181         }
182         else {
183                 reg = ia32_get_firm_reg(irn, cur_reg_set);
184         }
185
186         return reg;
187 }
188
189 static arch_irn_class_t ia32_classify(const void *self, const ir_node *irn) {
190         irn = my_skip_proj(irn);
191         if (is_cfop(irn))
192                 return arch_irn_class_branch;
193         else if (is_ia32_irn(irn))
194                 return arch_irn_class_normal;
195         else
196                 return 0;
197 }
198
199 static arch_irn_flags_t ia32_get_flags(const void *self, const ir_node *irn) {
200         irn = my_skip_proj(irn);
201         if (is_ia32_irn(irn))
202                 return get_ia32_flags(irn);
203         else {
204                 return 0;
205         }
206 }
207
208 static entity *ia32_get_frame_entity(const void *self, const ir_node *irn) {
209         return is_ia32_irn(irn) ? get_ia32_frame_ent(irn) : NULL;
210 }
211
212 static void ia32_set_stack_bias(const void *self, ir_node *irn, int bias) {
213         char buf[64];
214         const ia32_irn_ops_t *ops = self;
215
216         if (is_ia32_use_frame(irn)) {
217                 ia32_am_flavour_t am_flav = get_ia32_am_flavour(irn);
218
219                 DBG((ops->cg->mod, LEVEL_1, "stack biased %+F with %d\n", irn, bias));
220                 snprintf(buf, sizeof(buf), "%d", bias);
221                 add_ia32_am_offs(irn, buf);
222                 am_flav |= ia32_O;
223                 set_ia32_am_flavour(irn, am_flav);
224         }
225 }
226
227 /* fill register allocator interface */
228
229 static const arch_irn_ops_if_t ia32_irn_ops_if = {
230         ia32_get_irn_reg_req,
231         ia32_set_irn_reg,
232         ia32_get_irn_reg,
233         ia32_classify,
234         ia32_get_flags,
235         ia32_get_frame_entity,
236         ia32_set_stack_bias
237 };
238
239 ia32_irn_ops_t ia32_irn_ops = {
240         &ia32_irn_ops_if,
241         NULL
242 };
243
244
245
246 /**************************************************
247  *                _                         _  __
248  *               | |                       (_)/ _|
249  *   ___ ___   __| | ___  __ _  ___ _ __    _| |_
250  *  / __/ _ \ / _` |/ _ \/ _` |/ _ \ '_ \  | |  _|
251  * | (_| (_) | (_| |  __/ (_| |  __/ | | | | | |
252  *  \___\___/ \__,_|\___|\__, |\___|_| |_| |_|_|
253  *                        __/ |
254  *                       |___/
255  **************************************************/
256
257 /**
258  * Transforms the standard firm graph into
259  * an ia32 firm graph
260  */
261 static void ia32_prepare_graph(void *self) {
262         ia32_code_gen_t *cg = self;
263
264         irg_walk_blkwise_graph(cg->irg, ia32_place_consts, ia32_transform_node, cg);
265         dump_ir_block_graph_sched(cg->irg, "-transformed");
266         edges_deactivate(cg->irg);
267         edges_activate(cg->irg);
268         irg_walk_blkwise_graph(cg->irg, NULL, ia32_optimize_am, cg);
269         dump_ir_block_graph_sched(cg->irg, "-am");
270 }
271
272
273 /**
274  * Insert copies for all ia32 nodes where the should_be_same requirement
275  * is not fulfilled.
276  */
277 static void ia32_finish_irg_walker(ir_node *irn, void *env) {
278         ia32_code_gen_t            *cg = env;
279         const ia32_register_req_t **reqs;
280         const arch_register_t      *out_reg, *in_reg;
281         int                         n_res, i;
282         ir_node                    *copy, *in_node, *block;
283
284         if (! is_ia32_irn(irn))
285                 return;
286
287         /* nodes with destination address mode don't produce values */
288         if (get_ia32_op_type(irn) == ia32_AddrModeD)
289                 return;
290
291         reqs  = get_ia32_out_req_all(irn);
292         n_res = get_ia32_n_res(irn);
293         block = get_nodes_block(irn);
294
295         /* check all OUT requirements, if there is a should_be_same */
296         for (i = 0; i < n_res; i++) {
297                 if (arch_register_req_is(&(reqs[i]->req), should_be_same)) {
298                         /* get in and out register */
299                         out_reg = get_ia32_out_reg(irn, i);
300                         in_node = get_irn_n(irn, reqs[i]->same_pos);
301                         in_reg  = arch_get_irn_register(cg->arch_env, in_node);
302
303                         /* check if in and out register are equal */
304                         if (arch_register_get_index(out_reg) != arch_register_get_index(in_reg)) {
305                                 DBG((cg->mod, LEVEL_1, "inserting copy for %+F in_pos %d\n", irn, reqs[i]->same_pos));
306
307                                 /* create copy from in register */
308                                 copy = be_new_Copy(arch_register_get_class(in_reg), cg->irg, block, in_node);
309
310                                 /* destination is the out register */
311                                 arch_set_irn_register(cg->arch_env, copy, out_reg);
312
313                                 /* insert copy before the node into the schedule */
314                                 sched_add_before(irn, copy);
315
316                                 /* set copy as in */
317                                 set_irn_n(irn, reqs[i]->same_pos, copy);
318                         }
319                 }
320         }
321 }
322
323 /**
324  * Add Copy nodes for not fulfilled should_be_equal constraints
325  */
326 static void ia32_finish_irg(ir_graph *irg, ia32_code_gen_t *cg) {
327         irg_walk_blkwise_graph(irg, NULL, ia32_finish_irg_walker, cg);
328 }
329
330
331
332 /**
333  * Dummy functions for hooks we don't need but which must be filled.
334  */
335 static void ia32_before_sched(void *self) {
336 }
337
338 static void ia32_before_ra(void *self) {
339 }
340
341
342
343 /**
344  * Transforms a be node into a Load.
345  */
346 static void transform_to_Load(ia32_transform_env_t *env) {
347         ir_node *irn   = env->irn;
348         entity  *ent   = be_get_frame_entity(irn);
349         ir_mode *mode  = env->mode;
350         ir_node *noreg = ia32_new_NoReg_gp(env->cg);
351         ir_node *nomem = new_rd_NoMem(env->irg);
352         ir_node *new_op, *proj;
353         ir_node *sched_point = NULL;
354         const arch_register_t *reg;
355
356         if (sched_is_scheduled(irn)) {
357                 sched_point = sched_prev(irn);
358         }
359
360         if (mode_is_float(mode)) {
361                 new_op = new_rd_ia32_fLoad(env->dbg, env->irg, env->block, get_irn_n(irn, 0), noreg, nomem, mode_T);
362         }
363         else {
364                 new_op = new_rd_ia32_Load(env->dbg, env->irg, env->block, get_irn_n(irn, 0), noreg, nomem, mode_T);
365         }
366
367         set_ia32_am_support(new_op, ia32_am_Source);
368         set_ia32_op_type(new_op, ia32_AddrModeS);
369         set_ia32_am_flavour(new_op, ia32_B);
370         set_ia32_ls_mode(new_op, mode);
371         set_ia32_frame_ent(new_op, ent);
372         set_ia32_use_frame(new_op);
373
374         proj = new_rd_Proj(env->dbg, env->irg, env->block, new_op, mode, pn_Load_res);
375
376         if (sched_point) {
377                 sched_add_after(sched_point, new_op);
378                 sched_add_after(new_op, proj);
379
380                 sched_remove(irn);
381         }
382
383         /* copy the register from the old node to the new Load */
384         reg = arch_get_irn_register(env->cg->arch_env, irn);
385         arch_set_irn_register(env->cg->arch_env, new_op, reg);
386
387         exchange(irn, proj);
388
389 }
390
391 /**
392  * Transforms a be node into a Store.
393  */
394 static void transform_to_Store(ia32_transform_env_t *env) {
395         ir_node *irn   = env->irn;
396         entity  *ent   = be_get_frame_entity(irn);
397         ir_mode *mode  = env->mode;
398         ir_node *noreg = ia32_new_NoReg_gp(env->cg);
399         ir_node *nomem = new_rd_NoMem(env->irg);
400         ir_node *ptr   = get_irn_n(irn, 0);
401         ir_node *val   = get_irn_n(irn, 1);
402         ir_node *new_op, *proj;
403         ir_node *sched_point = NULL;
404
405         if (sched_is_scheduled(irn)) {
406                 sched_point = sched_prev(irn);
407         }
408
409         if (mode_is_float(mode)) {
410                 new_op = new_rd_ia32_fStore(env->dbg, env->irg, env->block, ptr, noreg, val, nomem, mode_T);
411         }
412         else {
413                 new_op = new_rd_ia32_Store(env->dbg, env->irg, env->block, ptr, noreg, val, nomem, mode_T);
414         }
415
416         set_ia32_am_support(new_op, ia32_am_Dest);
417         set_ia32_op_type(new_op, ia32_AddrModeD);
418         set_ia32_am_flavour(new_op, ia32_B);
419         set_ia32_ls_mode(new_op, get_irn_mode(val));
420         set_ia32_frame_ent(new_op, ent);
421         set_ia32_use_frame(new_op);
422
423         proj = new_rd_Proj(env->dbg, env->irg, env->block, new_op, mode, 0);
424
425         if (sched_point) {
426                 sched_add_after(sched_point, new_op);
427                 sched_add_after(new_op, proj);
428
429                 sched_remove(irn);
430         }
431
432         exchange(irn, proj);
433
434 }
435
436 /**
437  * Calls the transform functions for StackParam, Spill and Reload.
438  */
439 static void ia32_after_ra_walker(ir_node *node, void *env) {
440         ia32_code_gen_t *cg = env;
441         ir_node *new_node   = NULL;
442         ia32_transform_env_t tenv;
443
444         if (is_Block(node))
445                 return;
446
447         tenv.block = get_nodes_block(node);
448         tenv.dbg   = get_irn_dbg_info(node);
449         tenv.irg   = current_ir_graph;
450         tenv.irn   = node;
451         tenv.mod   = cg->mod;
452         tenv.mode  = get_irn_mode(node);
453         tenv.cg    = cg;
454
455         if (be_is_StackParam(node) || be_is_Reload(node)) {
456                 transform_to_Load(&tenv);
457         }
458         else if (be_is_Spill(node)) {
459                 transform_to_Store(&tenv);
460         }
461 }
462
463 /**
464  * We transform StackParam, Spill and Reload here. This needs to be done before
465  * stack biasing otherwise we would miss the corrected offset for these nodes.
466  */
467 static void ia32_after_ra(void *self) {
468         ia32_code_gen_t *cg = self;
469         irg_walk_blkwise_graph(cg->irg, NULL, ia32_after_ra_walker, self);
470 }
471
472
473 /**
474  * Emits the code, closes the output file and frees
475  * the code generator interface.
476  */
477 static void ia32_codegen(void *self) {
478         ia32_code_gen_t *cg = self;
479         ir_graph        *irg = cg->irg;
480         FILE            *out = cg->out;
481
482         if (cg->emit_decls) {
483                 ia32_gen_decls(cg->out);
484                 cg->emit_decls = 0;
485         }
486
487         ia32_finish_irg(irg, cg);
488         dump_ir_block_graph_sched(irg, "-finished");
489         ia32_gen_routine(out, irg, cg);
490
491         cur_reg_set = NULL;
492
493         pmap_destroy(cg->tv_ent);
494         pmap_destroy(cg->types);
495
496         /* de-allocate code generator */
497         del_set(cg->reg_set);
498         free(self);
499 }
500
501 static void *ia32_cg_init(FILE *F, const be_irg_t *birg);
502
503 static const arch_code_generator_if_t ia32_code_gen_if = {
504         ia32_cg_init,
505         ia32_prepare_graph,
506         ia32_before_sched,   /* before scheduling hook */
507         ia32_before_ra,      /* before register allocation hook */
508         ia32_after_ra,       /* after register allocation hook */
509         ia32_codegen         /* emit && done */
510 };
511
512 /**
513  * Initializes the code generator.
514  */
515 static void *ia32_cg_init(FILE *F, const be_irg_t *birg) {
516         ia32_isa_t      *isa = (ia32_isa_t *)birg->main_env->arch_env->isa;
517         ia32_code_gen_t *cg  = xcalloc(1, sizeof(*cg));
518
519         cg->impl     = &ia32_code_gen_if;
520         cg->irg      = birg->irg;
521         cg->reg_set  = new_set(ia32_cmp_irn_reg_assoc, 1024);
522         cg->mod      = firm_dbg_register("firm.be.ia32.cg");
523         cg->out      = F;
524         cg->arch_env = birg->main_env->arch_env;
525         cg->types    = pmap_create();
526         cg->tv_ent   = pmap_create();
527         cg->birg     = birg;
528
529         isa->num_codegens++;
530
531         if (isa->num_codegens > 1)
532                 cg->emit_decls = 0;
533         else
534                 cg->emit_decls = 1;
535
536         cur_reg_set = cg->reg_set;
537
538         ia32_irn_ops.cg = cg;
539
540         return (arch_code_generator_t *)cg;
541 }
542
543
544
545 /*****************************************************************
546  *  ____             _                  _   _____  _____
547  * |  _ \           | |                | | |_   _|/ ____|  /\
548  * | |_) | __ _  ___| | _____ _ __   __| |   | | | (___   /  \
549  * |  _ < / _` |/ __| |/ / _ \ '_ \ / _` |   | |  \___ \ / /\ \
550  * | |_) | (_| | (__|   <  __/ | | | (_| |  _| |_ ____) / ____ \
551  * |____/ \__,_|\___|_|\_\___|_| |_|\__,_| |_____|_____/_/    \_\
552  *
553  *****************************************************************/
554
555 static ia32_isa_t ia32_isa_template = {
556         &ia32_isa_if,
557         &ia32_gp_regs[REG_ESP],
558         &ia32_gp_regs[REG_EBP],
559         -1,
560         0
561 };
562
563 /**
564  * Initializes the backend ISA.
565  */
566 static void *ia32_init(void) {
567         static int inited = 0;
568         ia32_isa_t *isa;
569
570         if(inited)
571                 return NULL;
572
573         isa = xcalloc(1, sizeof(*isa));
574         memcpy(isa, &ia32_isa_template, sizeof(*isa));
575
576         ia32_register_init(isa);
577         ia32_create_opcodes();
578
579         inited = 1;
580
581         return isa;
582 }
583
584
585
586 /**
587  * Closes the output file and frees the ISA structure.
588  */
589 static void ia32_done(void *self) {
590         free(self);
591 }
592
593
594
595 static int ia32_get_n_reg_class(const void *self) {
596         return N_CLASSES;
597 }
598
599 static const arch_register_class_t *ia32_get_reg_class(const void *self, int i) {
600         assert(i >= 0 && i < N_CLASSES && "Invalid ia32 register class requested.");
601         return &ia32_reg_classes[i];
602 }
603
604 /**
605  * Get the register class which shall be used to store a value of a given mode.
606  * @param self The this pointer.
607  * @param mode The mode in question.
608  * @return A register class which can hold values of the given mode.
609  */
610 const arch_register_class_t *ia32_get_reg_class_for_mode(const void *self, const ir_mode *mode) {
611         if (mode_is_float(mode))
612                 return &ia32_reg_classes[CLASS_ia32_fp];
613         else
614                 return &ia32_reg_classes[CLASS_ia32_gp];
615 }
616
617 /**
618  * Produces the type which sits between the stack args and the locals on the stack.
619  * it will contain the return address and space to store the old base pointer.
620  * @return The Firm type modelling the ABI between type.
621  */
622 static ir_type *get_between_type(void)
623 {
624         static ir_type *between_type = NULL;
625         static entity *old_bp_ent    = NULL;
626
627         if(!between_type) {
628                 entity *ret_addr_ent;
629                 ir_type *ret_addr_type = new_type_primitive(new_id_from_str("return_addr"), mode_P);
630                 ir_type *old_bp_type   = new_type_primitive(new_id_from_str("bp"), mode_P);
631
632                 between_type           = new_type_class(new_id_from_str("ia32_between_type"));
633                 old_bp_ent             = new_entity(between_type, new_id_from_str("old_bp"), old_bp_type);
634                 ret_addr_ent           = new_entity(between_type, new_id_from_str("ret_addr"), ret_addr_type);
635
636                 set_entity_offset_bytes(old_bp_ent, 0);
637                 set_entity_offset_bytes(ret_addr_ent, get_type_size_bytes(old_bp_type));
638                 set_type_size_bytes(between_type, get_type_size_bytes(old_bp_type) + get_type_size_bytes(ret_addr_type));
639         }
640
641         return between_type;
642 }
643
644 /**
645  * Get the ABI restrictions for procedure calls.
646  * @param self        The this pointer.
647  * @param method_type The type of the method (procedure) in question.
648  * @param abi         The abi object to be modified
649  */
650 void ia32_get_call_abi(const void *self, ir_type *method_type, be_abi_call_t *abi) {
651         ir_type  *between_type;
652         ir_type  *tp;
653         ir_mode  *mode;
654         unsigned  cc        = get_method_calling_convention(method_type);
655         int       n         = get_method_n_params(method_type);
656         int       biggest_n = -1;
657         int       stack_idx = 0;
658         int       i, ignore;
659         ir_mode **modes;
660         const arch_register_t *reg;
661         be_abi_call_flags_t call_flags = { 0, 0, 1, 0, 1 };
662
663         /* get the between type and the frame pointer save entity */
664         between_type = get_between_type();
665
666         /* set stack parameter passing style */
667         be_abi_call_set_flags(abi, call_flags, between_type);
668
669         /* collect the mode for each type */
670         modes = alloca(n * sizeof(modes[0]));
671
672         for (i = 0; i < n; i++) {
673                 tp       = get_method_param_type(method_type, i);
674                 modes[i] = get_type_mode(tp);
675         }
676
677         /* set register parameters  */
678         if (cc & cc_reg_param) {
679                 /* determine the number of parameters passed via registers */
680                 biggest_n = ia32_get_n_regparam_class(n, modes, &ignore, &ignore);
681
682                 /* loop over all parameters and set the register requirements */
683                 for (i = 0; i <= biggest_n; i++) {
684                         reg = ia32_get_RegParam_reg(n, modes, i, cc);
685                         assert(reg && "kaputt");
686                         be_abi_call_param_reg(abi, i, reg);
687                 }
688
689                 stack_idx = i;
690         }
691
692
693         /* set stack parameters */
694         for (i = stack_idx; i < n; i++) {
695                 be_abi_call_param_stack(abi, i);
696         }
697
698
699         /* set return registers */
700         n = get_method_n_ress(method_type);
701
702         assert(n <= 2 && "more than two results not supported");
703
704         /* In case of 64bit returns, we will have two 32bit values */
705         if (n == 2) {
706                 tp   = get_method_res_type(method_type, 0);
707                 mode = get_type_mode(tp);
708
709                 assert(!mode_is_float(mode) && "two FP results not supported");
710
711                 tp   = get_method_res_type(method_type, 1);
712                 mode = get_type_mode(tp);
713
714                 assert(!mode_is_float(mode) && "two FP results not supported");
715
716                 be_abi_call_res_reg(abi, 0, &ia32_gp_regs[REG_EAX]);
717                 be_abi_call_res_reg(abi, 1, &ia32_gp_regs[REG_EDX]);
718         }
719         else if (n == 1) {
720                 tp   = get_method_res_type(method_type, 0);
721                 assert(is_atomic_type(tp));
722                 mode = get_type_mode(tp);
723
724                 be_abi_call_res_reg(abi, 0, mode_is_float(mode) ? &ia32_fp_regs[REG_XMM0] : &ia32_gp_regs[REG_EAX]);
725         }
726 }
727
728
729 static const void *ia32_get_irn_ops(const arch_irn_handler_t *self, const ir_node *irn) {
730         return &ia32_irn_ops;
731 }
732
733 const arch_irn_handler_t ia32_irn_handler = {
734         ia32_get_irn_ops
735 };
736
737 const arch_irn_handler_t *ia32_get_irn_handler(const void *self) {
738         return &ia32_irn_handler;
739 }
740
741 int ia32_to_appear_in_schedule(void *block_env, const ir_node *irn) {
742         return is_ia32_irn(irn);
743 }
744
745 /**
746  * Initializes the code generator interface.
747  */
748 static const arch_code_generator_if_t *ia32_get_code_generator_if(void *self) {
749         return &ia32_code_gen_if;
750 }
751
752 list_sched_selector_t ia32_sched_selector;
753
754 /**
755  * Returns the reg_pressure scheduler with to_appear_in_schedule() overloaded
756  */
757 static const list_sched_selector_t *ia32_get_list_sched_selector(const void *self) {
758         memcpy(&ia32_sched_selector, trivial_selector, sizeof(list_sched_selector_t));
759         ia32_sched_selector.to_appear_in_schedule = ia32_to_appear_in_schedule;
760         return &ia32_sched_selector;
761 }
762
763 #ifdef WITH_LIBCORE
764 static void ia32_register_options(lc_opt_entry_t *ent)
765 {
766 }
767 #endif /* WITH_LIBCORE */
768
769 const arch_isa_if_t ia32_isa_if = {
770 #ifdef WITH_LIBCORE
771         ia32_register_options,
772 #endif
773         ia32_init,
774         ia32_done,
775         ia32_get_n_reg_class,
776         ia32_get_reg_class,
777         ia32_get_reg_class_for_mode,
778         ia32_get_call_abi,
779         ia32_get_irn_handler,
780         ia32_get_code_generator_if,
781         ia32_get_list_sched_selector
782 };