- Reworked backends to put out register_requirements into backend_info_t
[libfirm] / ir / be / ia32 / bearch_ia32.c
1 /*
2  * Copyright (C) 1995-2008 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       This is the main ia32 firm backend driver.
23  * @author      Christian Wuerdig
24  * @version     $Id$
25  */
26 #include "config.h"
27
28 #include "lc_opts.h"
29 #include "lc_opts_enum.h"
30
31 #include <math.h>
32
33 #include "pseudo_irg.h"
34 #include "irarch.h"
35 #include "irgwalk.h"
36 #include "irprog.h"
37 #include "irprintf.h"
38 #include "iredges_t.h"
39 #include "ircons.h"
40 #include "irflag.h"
41 #include "irgmod.h"
42 #include "irgopt.h"
43 #include "irbitset.h"
44 #include "irgopt.h"
45 #include "pdeq.h"
46 #include "pset.h"
47 #include "debug.h"
48 #include "error.h"
49 #include "xmalloc.h"
50 #include "irtools.h"
51 #include "iroptimize.h"
52 #include "instrument.h"
53
54 #include "../beabi.h"
55 #include "../beirg.h"
56 #include "../benode.h"
57 #include "../belower.h"
58 #include "../besched.h"
59 #include "be.h"
60 #include "../be_t.h"
61 #include "../beirgmod.h"
62 #include "../be_dbgout.h"
63 #include "../beblocksched.h"
64 #include "../bemachine.h"
65 #include "../beilpsched.h"
66 #include "../bespillslots.h"
67 #include "../bemodule.h"
68 #include "../begnuas.h"
69 #include "../bestate.h"
70 #include "../beflags.h"
71 #include "../betranshlp.h"
72 #include "../belistsched.h"
73
74 #include "bearch_ia32_t.h"
75
76 #include "ia32_new_nodes.h"
77 #include "gen_ia32_regalloc_if.h"
78 #include "gen_ia32_machine.h"
79 #include "ia32_common_transform.h"
80 #include "ia32_transform.h"
81 #include "ia32_emitter.h"
82 #include "ia32_map_regs.h"
83 #include "ia32_optimize.h"
84 #include "ia32_x87.h"
85 #include "ia32_dbg_stat.h"
86 #include "ia32_finish.h"
87 #include "ia32_util.h"
88 #include "ia32_fpu.h"
89 #include "ia32_architecture.h"
90
91 #ifdef FIRM_GRGEN_BE
92 #include "ia32_pbqp_transform.h"
93
94 transformer_t be_transformer = TRANSFORMER_DEFAULT;
95 #endif
96
97 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
98
99 ir_mode         *mode_fpcw       = NULL;
100 ia32_code_gen_t *ia32_current_cg = NULL;
101
102 /** The current omit-fp state */
103 static unsigned ia32_curr_fp_ommitted  = 0;
104 static ir_type *omit_fp_between_type   = NULL;
105 static ir_type *between_type           = NULL;
106 static ir_entity *old_bp_ent           = NULL;
107 static ir_entity *ret_addr_ent         = NULL;
108 static ir_entity *omit_fp_ret_addr_ent = NULL;
109
110 /**
111  * The environment for the intrinsic mapping.
112  */
113 static ia32_intrinsic_env_t intrinsic_env = {
114         NULL,    /* the isa */
115         NULL,    /* the irg, these entities belong to */
116         NULL,    /* entity for __divdi3 library call */
117         NULL,    /* entity for __moddi3 library call */
118         NULL,    /* entity for __udivdi3 library call */
119         NULL,    /* entity for __umoddi3 library call */
120 };
121
122
123 typedef ir_node *(*create_const_node_func) (dbg_info *dbg, ir_node *block);
124
125 /**
126  * Used to create per-graph unique pseudo nodes.
127  */
128 static inline ir_node *create_const(ia32_code_gen_t *cg, ir_node **place,
129                                     create_const_node_func func,
130                                     const arch_register_t* reg)
131 {
132         ir_node *block, *res;
133
134         if(*place != NULL)
135                 return *place;
136
137         block = get_irg_start_block(cg->irg);
138         res = func(NULL, block);
139         arch_set_irn_register(res, reg);
140         *place = res;
141
142         return res;
143 }
144
145 /* Creates the unique per irg GP NoReg node. */
146 ir_node *ia32_new_NoReg_gp(ia32_code_gen_t *cg)
147 {
148         return create_const(cg, &cg->noreg_gp, new_bd_ia32_NoReg_GP,
149                             &ia32_gp_regs[REG_GP_NOREG]);
150 }
151
152 ir_node *ia32_new_NoReg_vfp(ia32_code_gen_t *cg)
153 {
154         return create_const(cg, &cg->noreg_vfp, new_bd_ia32_NoReg_VFP,
155                             &ia32_vfp_regs[REG_VFP_NOREG]);
156 }
157
158 ir_node *ia32_new_NoReg_xmm(ia32_code_gen_t *cg)
159 {
160         return create_const(cg, &cg->noreg_xmm, new_bd_ia32_NoReg_XMM,
161                             &ia32_xmm_regs[REG_XMM_NOREG]);
162 }
163
164 ir_node *ia32_new_Unknown_gp(ia32_code_gen_t *cg)
165 {
166         return create_const(cg, &cg->unknown_gp, new_bd_ia32_Unknown_GP,
167                             &ia32_gp_regs[REG_GP_UKNWN]);
168 }
169
170 ir_node *ia32_new_Unknown_vfp(ia32_code_gen_t *cg)
171 {
172         return create_const(cg, &cg->unknown_vfp, new_bd_ia32_Unknown_VFP,
173                             &ia32_vfp_regs[REG_VFP_UKNWN]);
174 }
175
176 ir_node *ia32_new_Unknown_xmm(ia32_code_gen_t *cg)
177 {
178         return create_const(cg, &cg->unknown_xmm, new_bd_ia32_Unknown_XMM,
179                             &ia32_xmm_regs[REG_XMM_UKNWN]);
180 }
181
182 ir_node *ia32_new_Fpu_truncate(ia32_code_gen_t *cg)
183 {
184         return create_const(cg, &cg->fpu_trunc_mode, new_bd_ia32_ChangeCW,
185                         &ia32_fp_cw_regs[REG_FPCW]);
186 }
187
188
189 /**
190  * Returns the admissible noreg register node for input register pos of node irn.
191  */
192 static ir_node *ia32_get_admissible_noreg(ia32_code_gen_t *cg, ir_node *irn, int pos)
193 {
194         const arch_register_req_t *req = arch_get_register_req(irn, pos);
195
196         assert(req != NULL && "Missing register requirements");
197         if (req->cls == &ia32_reg_classes[CLASS_ia32_gp])
198                 return ia32_new_NoReg_gp(cg);
199
200         if (ia32_cg_config.use_sse2) {
201                 return ia32_new_NoReg_xmm(cg);
202         } else {
203                 return ia32_new_NoReg_vfp(cg);
204         }
205 }
206
207 /**************************************************
208  *                         _ _              _  __
209  *                        | | |            (_)/ _|
210  *  _ __ ___  __ _    __ _| | | ___   ___   _| |_
211  * | '__/ _ \/ _` |  / _` | | |/ _ \ / __| | |  _|
212  * | | |  __/ (_| | | (_| | | | (_) | (__  | | |
213  * |_|  \___|\__, |  \__,_|_|_|\___/ \___| |_|_|
214  *            __/ |
215  *           |___/
216  **************************************************/
217
218 static const arch_register_req_t *get_ia32_SwitchJmp_out_req(
219                 const ir_node *node, int pos)
220 {
221         (void) node;
222         (void) pos;
223         return arch_no_register_req;
224 }
225
226 static arch_irn_class_t ia32_classify(const ir_node *irn)
227 {
228         arch_irn_class_t classification = 0;
229
230         assert(is_ia32_irn(irn));
231
232         if (is_ia32_is_reload(irn))
233                 classification |= arch_irn_class_reload;
234
235         if (is_ia32_is_spill(irn))
236                 classification |= arch_irn_class_spill;
237
238         if (is_ia32_is_remat(irn))
239                 classification |= arch_irn_class_remat;
240
241         return classification;
242 }
243
244 /**
245  * The IA32 ABI callback object.
246  */
247 typedef struct {
248         be_abi_call_flags_bits_t flags;  /**< The call flags. */
249         const arch_env_t *aenv;          /**< The architecture environment. */
250         ir_graph *irg;                   /**< The associated graph. */
251 } ia32_abi_env_t;
252
253 static ir_entity *ia32_get_frame_entity(const ir_node *irn)
254 {
255         return is_ia32_irn(irn) ? get_ia32_frame_ent(irn) : NULL;
256 }
257
258 static void ia32_set_frame_entity(ir_node *irn, ir_entity *ent)
259 {
260         set_ia32_frame_ent(irn, ent);
261 }
262
263 static void ia32_set_frame_offset(ir_node *irn, int bias)
264 {
265         if (get_ia32_frame_ent(irn) == NULL)
266                 return;
267
268         if (is_ia32_Pop(irn) || is_ia32_PopMem(irn)) {
269                 ia32_code_gen_t *cg = ia32_current_cg;
270                 int omit_fp = be_abi_omit_fp(cg->birg->abi);
271                 if (omit_fp) {
272                         /* Pop nodes modify the stack pointer before calculating the
273                          * destination address, so fix this here
274                          */
275                         bias -= 4;
276                 }
277         }
278         add_ia32_am_offs_int(irn, bias);
279 }
280
281 static int ia32_get_sp_bias(const ir_node *node)
282 {
283         if (is_ia32_Call(node))
284                 return -(int)get_ia32_call_attr_const(node)->pop;
285
286         if (is_ia32_Push(node))
287                 return 4;
288
289         if (is_ia32_Pop(node) || is_ia32_PopMem(node))
290                 return -4;
291
292         return 0;
293 }
294
295 /**
296  * Generate the routine prologue.
297  *
298  * @param self       The callback object.
299  * @param mem        A pointer to the mem node. Update this if you define new memory.
300  * @param reg_map    A map mapping all callee_save/ignore/parameter registers to their defining nodes.
301  * @param stack_bias Points to the current stack bias, can be modified if needed.
302  *
303  * @return           The register which shall be used as a stack frame base.
304  *
305  * All nodes which define registers in @p reg_map must keep @p reg_map current.
306  */
307 static const arch_register_t *ia32_abi_prologue(void *self, ir_node **mem, pmap *reg_map, int *stack_bias)
308 {
309         ia32_abi_env_t   *env      = self;
310         ia32_code_gen_t  *cg       = ia32_current_cg;
311         const arch_env_t *arch_env = env->aenv;
312
313         ia32_curr_fp_ommitted = env->flags.try_omit_fp;
314         if (! env->flags.try_omit_fp) {
315                 ir_node  *bl      = get_irg_start_block(env->irg);
316                 ir_node  *curr_sp = be_abi_reg_map_get(reg_map, arch_env->sp);
317                 ir_node  *curr_bp = be_abi_reg_map_get(reg_map, arch_env->bp);
318                 ir_node  *noreg   = ia32_new_NoReg_gp(cg);
319                 ir_node  *push;
320
321                 /* mark bp register as ignore */
322                 be_set_constr_single_reg_out(get_Proj_pred(curr_bp),
323                                 get_Proj_proj(curr_bp), arch_env->bp, arch_register_req_type_ignore);
324
325                 /* push ebp */
326                 push    = new_bd_ia32_Push(NULL, bl, noreg, noreg, *mem, curr_bp, curr_sp);
327                 curr_sp = new_r_Proj(bl, push, get_irn_mode(curr_sp), pn_ia32_Push_stack);
328                 *mem    = new_r_Proj(bl, push, mode_M, pn_ia32_Push_M);
329
330                 /* the push must have SP out register */
331                 arch_set_irn_register(curr_sp, arch_env->sp);
332
333                 /* this modifies the stack bias, because we pushed 32bit */
334                 *stack_bias -= 4;
335
336                 /* move esp to ebp */
337                 curr_bp = be_new_Copy(arch_env->bp->reg_class, bl, curr_sp);
338                 be_set_constr_single_reg_out(curr_bp, 0, arch_env->bp,
339                                              arch_register_req_type_ignore);
340
341                 /* beware: the copy must be done before any other sp use */
342                 curr_sp = be_new_CopyKeep_single(arch_env->sp->reg_class, bl, curr_sp, curr_bp, get_irn_mode(curr_sp));
343                 be_set_constr_single_reg_out(curr_sp, 0, arch_env->sp,
344                                                      arch_register_req_type_produces_sp);
345
346                 be_abi_reg_map_set(reg_map, arch_env->sp, curr_sp);
347                 be_abi_reg_map_set(reg_map, arch_env->bp, curr_bp);
348
349                 return arch_env->bp;
350         }
351
352         return arch_env->sp;
353 }
354
355 /**
356  * Generate the routine epilogue.
357  * @param self    The callback object.
358  * @param bl      The block for the epilog
359  * @param mem     A pointer to the mem node. Update this if you define new memory.
360  * @param reg_map A map mapping all callee_save/ignore/parameter registers to their defining nodes.
361  * @return        The register which shall be used as a stack frame base.
362  *
363  * All nodes which define registers in @p reg_map must keep @p reg_map current.
364  */
365 static void ia32_abi_epilogue(void *self, ir_node *bl, ir_node **mem, pmap *reg_map)
366 {
367         ia32_abi_env_t   *env      = self;
368         const arch_env_t *arch_env = env->aenv;
369         ir_node          *curr_sp  = be_abi_reg_map_get(reg_map, arch_env->sp);
370         ir_node          *curr_bp  = be_abi_reg_map_get(reg_map, arch_env->bp);
371
372         if (env->flags.try_omit_fp) {
373                 /* simply remove the stack frame here */
374                 curr_sp = be_new_IncSP(arch_env->sp, bl, curr_sp, BE_STACK_FRAME_SIZE_SHRINK, 0);
375         } else {
376                 ir_mode *mode_bp = arch_env->bp->reg_class->mode;
377
378                 if (ia32_cg_config.use_leave) {
379                         ir_node *leave;
380
381                         /* leave */
382                         leave   = new_bd_ia32_Leave(NULL, bl, curr_bp);
383                         curr_bp = new_r_Proj(bl, leave, mode_bp, pn_ia32_Leave_frame);
384                         curr_sp = new_r_Proj(bl, leave, get_irn_mode(curr_sp), pn_ia32_Leave_stack);
385                 } else {
386                         ir_node *pop;
387
388                         /* the old SP is not needed anymore (kill the proj) */
389                         assert(is_Proj(curr_sp));
390                         kill_node(curr_sp);
391
392                         /* copy ebp to esp */
393                         curr_sp = be_new_Copy(&ia32_reg_classes[CLASS_ia32_gp], bl, curr_bp);
394                         arch_set_irn_register(curr_sp, arch_env->sp);
395                         be_set_constr_single_reg_out(curr_sp, 0, arch_env->sp,
396                                                          arch_register_req_type_ignore);
397
398                         /* pop ebp */
399                         pop     = new_bd_ia32_PopEbp(NULL, bl, *mem, curr_sp);
400                         curr_bp = new_r_Proj(bl, pop, mode_bp, pn_ia32_Pop_res);
401                         curr_sp = new_r_Proj(bl, pop, get_irn_mode(curr_sp), pn_ia32_Pop_stack);
402
403                         *mem = new_r_Proj(bl, pop, mode_M, pn_ia32_Pop_M);
404                 }
405                 arch_set_irn_register(curr_sp, arch_env->sp);
406                 arch_set_irn_register(curr_bp, arch_env->bp);
407         }
408
409         be_abi_reg_map_set(reg_map, arch_env->sp, curr_sp);
410         be_abi_reg_map_set(reg_map, arch_env->bp, curr_bp);
411 }
412
413 /**
414  * Initialize the callback object.
415  * @param call The call object.
416  * @param aenv The architecture environment.
417  * @param irg  The graph with the method.
418  * @return     Some pointer. This pointer is passed to all other callback functions as self object.
419  */
420 static void *ia32_abi_init(const be_abi_call_t *call, const arch_env_t *aenv, ir_graph *irg)
421 {
422         ia32_abi_env_t      *env = XMALLOC(ia32_abi_env_t);
423         be_abi_call_flags_t  fl  = be_abi_call_get_flags(call);
424         env->flags = fl.bits;
425         env->irg   = irg;
426         env->aenv  = aenv;
427         return env;
428 }
429
430 /**
431  * Destroy the callback object.
432  * @param self The callback object.
433  */
434 static void ia32_abi_done(void *self)
435 {
436         free(self);
437 }
438
439 /**
440  * Build the between type and entities if not already build.
441  */
442 static void ia32_build_between_type(void)
443 {
444 #define IDENT(s) new_id_from_chars(s, sizeof(s)-1)
445         if (! between_type) {
446                 ir_type *old_bp_type   = new_type_primitive(IDENT("bp"), mode_Iu);
447                 ir_type *ret_addr_type = new_type_primitive(IDENT("return_addr"), mode_Iu);
448
449                 between_type           = new_type_struct(IDENT("ia32_between_type"));
450                 old_bp_ent             = new_entity(between_type, IDENT("old_bp"), old_bp_type);
451                 ret_addr_ent           = new_entity(between_type, IDENT("ret_addr"), ret_addr_type);
452
453                 set_entity_offset(old_bp_ent, 0);
454                 set_entity_offset(ret_addr_ent, get_type_size_bytes(old_bp_type));
455                 set_type_size_bytes(between_type, get_type_size_bytes(old_bp_type) + get_type_size_bytes(ret_addr_type));
456                 set_type_state(between_type, layout_fixed);
457
458                 omit_fp_between_type = new_type_struct(IDENT("ia32_between_type_omit_fp"));
459                 omit_fp_ret_addr_ent = new_entity(omit_fp_between_type, IDENT("ret_addr"), ret_addr_type);
460
461                 set_entity_offset(omit_fp_ret_addr_ent, 0);
462                 set_type_size_bytes(omit_fp_between_type, get_type_size_bytes(ret_addr_type));
463                 set_type_state(omit_fp_between_type, layout_fixed);
464         }
465 #undef IDENT
466 }
467
468 /**
469  * Produces the type which sits between the stack args and the locals on the stack.
470  * it will contain the return address and space to store the old base pointer.
471  * @return The Firm type modeling the ABI between type.
472  */
473 static ir_type *ia32_abi_get_between_type(void *self)
474 {
475         ia32_abi_env_t *env = self;
476
477         ia32_build_between_type();
478         return env->flags.try_omit_fp ? omit_fp_between_type : between_type;
479 }
480
481 /**
482  * Return the stack entity that contains the return address.
483  */
484 ir_entity *ia32_get_return_address_entity(void)
485 {
486         ia32_build_between_type();
487         return ia32_curr_fp_ommitted ? omit_fp_ret_addr_ent : ret_addr_ent;
488 }
489
490 /**
491  * Return the stack entity that contains the frame address.
492  */
493 ir_entity *ia32_get_frame_address_entity(void)
494 {
495         ia32_build_between_type();
496         return ia32_curr_fp_ommitted ? NULL : old_bp_ent;
497 }
498
499 /**
500  * Get the estimated cycle count for @p irn.
501  *
502  * @param self The this pointer.
503  * @param irn  The node.
504  *
505  * @return     The estimated cycle count for this operation
506  */
507 static int ia32_get_op_estimated_cost(const ir_node *irn)
508 {
509         int            cost;
510         ia32_op_type_t op_tp;
511
512         if (is_Proj(irn))
513                 return 0;
514         if (!is_ia32_irn(irn))
515                 return 0;
516
517         assert(is_ia32_irn(irn));
518
519         cost  = get_ia32_latency(irn);
520         op_tp = get_ia32_op_type(irn);
521
522         if (is_ia32_CopyB(irn)) {
523                 cost = 250;
524         }
525         else if (is_ia32_CopyB_i(irn)) {
526                 int size = get_ia32_copyb_size(irn);
527                 cost     = 20 + (int)ceil((4/3) * size);
528         }
529         /* in case of address mode operations add additional cycles */
530         else if (op_tp == ia32_AddrModeD || op_tp == ia32_AddrModeS) {
531                 /*
532                         In case of stack access and access to fixed addresses add 5 cycles
533                         (we assume they are in cache), other memory operations cost 20
534                         cycles.
535                 */
536                 if (is_ia32_use_frame(irn) || (
537                         is_ia32_NoReg_GP(get_irn_n(irn, n_ia32_base)) &&
538                         is_ia32_NoReg_GP(get_irn_n(irn, n_ia32_index))
539                     )) {
540                         cost += 5;
541                 } else {
542                         cost += 20;
543                 }
544         }
545
546         return cost;
547 }
548
549 /**
550  * Returns the inverse operation if @p irn, recalculating the argument at position @p i.
551  *
552  * @param irn       The original operation
553  * @param i         Index of the argument we want the inverse operation to yield
554  * @param inverse   struct to be filled with the resulting inverse op
555  * @param obstack   The obstack to use for allocation of the returned nodes array
556  * @return          The inverse operation or NULL if operation invertible
557  */
558 static arch_inverse_t *ia32_get_inverse(const ir_node *irn, int i, arch_inverse_t *inverse, struct obstack *obst)
559 {
560         ir_mode  *mode;
561         ir_mode  *irn_mode;
562         ir_node  *block, *noreg, *nomem;
563         dbg_info *dbg;
564
565         /* we cannot invert non-ia32 irns */
566         if (! is_ia32_irn(irn))
567                 return NULL;
568
569         /* operand must always be a real operand (not base, index or mem) */
570         if (i != n_ia32_binary_left && i != n_ia32_binary_right)
571                 return NULL;
572
573         /* we don't invert address mode operations */
574         if (get_ia32_op_type(irn) != ia32_Normal)
575                 return NULL;
576
577         /* TODO: adjust for new immediates... */
578         ir_fprintf(stderr, "TODO: fix get_inverse for new immediates (%+F)\n",
579                    irn);
580         return NULL;
581
582         block    = get_nodes_block(irn);
583         mode     = get_irn_mode(irn);
584         irn_mode = get_irn_mode(irn);
585         noreg    = get_irn_n(irn, 0);
586         nomem    = new_NoMem();
587         dbg      = get_irn_dbg_info(irn);
588
589         /* initialize structure */
590         inverse->nodes = obstack_alloc(obst, 2 * sizeof(inverse->nodes[0]));
591         inverse->costs = 0;
592         inverse->n     = 1;
593
594         switch (get_ia32_irn_opcode(irn)) {
595                 case iro_ia32_Add:
596 #if 0
597                         if (get_ia32_immop_type(irn) == ia32_ImmConst) {
598                                 /* we have an add with a const here */
599                                 /* invers == add with negated const */
600                                 inverse->nodes[0] = new_bd_ia32_Add(dbg, block, noreg, noreg, nomem, get_irn_n(irn, i), noreg);
601                                 inverse->costs   += 1;
602                                 copy_ia32_Immop_attr(inverse->nodes[0], (ir_node *)irn);
603                                 set_ia32_Immop_tarval(inverse->nodes[0], tarval_neg(get_ia32_Immop_tarval(irn)));
604                                 set_ia32_commutative(inverse->nodes[0]);
605                         }
606                         else if (get_ia32_immop_type(irn) == ia32_ImmSymConst) {
607                                 /* we have an add with a symconst here */
608                                 /* invers == sub with const */
609                                 inverse->nodes[0] = new_bd_ia32_Sub(dbg, block, noreg, noreg, nomem, get_irn_n(irn, i), noreg);
610                                 inverse->costs   += 2;
611                                 copy_ia32_Immop_attr(inverse->nodes[0], (ir_node *)irn);
612                         }
613                         else {
614                                 /* normal add: inverse == sub */
615                                 inverse->nodes[0] = new_bd_ia32_Sub(dbg, block, noreg, noreg, nomem, (ir_node*) irn, get_irn_n(irn, i ^ 1));
616                                 inverse->costs   += 2;
617                         }
618 #endif
619                         break;
620                 case iro_ia32_Sub:
621 #if 0
622                         if (get_ia32_immop_type(irn) != ia32_ImmNone) {
623                                 /* we have a sub with a const/symconst here */
624                                 /* invers == add with this const */
625                                 inverse->nodes[0] = new_bd_ia32_Add(dbg, block, noreg, noreg, nomem, get_irn_n(irn, i), noreg);
626                                 inverse->costs   += (get_ia32_immop_type(irn) == ia32_ImmSymConst) ? 5 : 1;
627                                 copy_ia32_Immop_attr(inverse->nodes[0], (ir_node *)irn);
628                         }
629                         else {
630                                 /* normal sub */
631                                 if (i == n_ia32_binary_left) {
632                                         inverse->nodes[0] = new_bd_ia32_Add(dbg, block, noreg, noreg, nomem, (ir_node*) irn, get_irn_n(irn, 3));
633                                 }
634                                 else {
635                                         inverse->nodes[0] = new_bd_ia32_Sub(dbg, block, noreg, noreg, nomem, get_irn_n(irn, n_ia32_binary_left), (ir_node*) irn);
636                                 }
637                                 inverse->costs += 1;
638                         }
639 #endif
640                         break;
641                 case iro_ia32_Xor:
642 #if 0
643                         if (get_ia32_immop_type(irn) != ia32_ImmNone) {
644                                 /* xor with const: inverse = xor */
645                                 inverse->nodes[0] = new_bd_ia32_Xor(dbg, block, noreg, noreg, nomem, get_irn_n(irn, i), noreg);
646                                 inverse->costs   += (get_ia32_immop_type(irn) == ia32_ImmSymConst) ? 5 : 1;
647                                 copy_ia32_Immop_attr(inverse->nodes[0], (ir_node *)irn);
648                         }
649                         else {
650                                 /* normal xor */
651                                 inverse->nodes[0] = new_bd_ia32_Xor(dbg, block, noreg, noreg, nomem, (ir_node *) irn, get_irn_n(irn, i));
652                                 inverse->costs   += 1;
653                         }
654 #endif
655                         break;
656                 case iro_ia32_Not: {
657                         inverse->nodes[0] = new_bd_ia32_Not(dbg, block, (ir_node*) irn);
658                         inverse->costs   += 1;
659                         break;
660                 }
661                 case iro_ia32_Neg: {
662                         inverse->nodes[0] = new_bd_ia32_Neg(dbg, block, (ir_node*) irn);
663                         inverse->costs   += 1;
664                         break;
665                 }
666                 default:
667                         /* inverse operation not supported */
668                         return NULL;
669         }
670
671         return inverse;
672 }
673
674 static ir_mode *get_spill_mode_mode(const ir_mode *mode)
675 {
676         if(mode_is_float(mode))
677                 return mode_D;
678
679         return mode_Iu;
680 }
681
682 /**
683  * Get the mode that should be used for spilling value node
684  */
685 static ir_mode *get_spill_mode(const ir_node *node)
686 {
687         ir_mode *mode = get_irn_mode(node);
688         return get_spill_mode_mode(mode);
689 }
690
691 /**
692  * Checks whether an addressmode reload for a node with mode mode is compatible
693  * with a spillslot of mode spill_mode
694  */
695 static int ia32_is_spillmode_compatible(const ir_mode *mode, const ir_mode *spillmode)
696 {
697         return !mode_is_float(mode) || mode == spillmode;
698 }
699
700 /**
701  * Check if irn can load its operand at position i from memory (source addressmode).
702  * @param irn    The irn to be checked
703  * @param i      The operands position
704  * @return Non-Zero if operand can be loaded
705  */
706 static int ia32_possible_memory_operand(const ir_node *irn, unsigned int i)
707 {
708         ir_node       *op        = get_irn_n(irn, i);
709         const ir_mode *mode      = get_irn_mode(op);
710         const ir_mode *spillmode = get_spill_mode(op);
711
712         if (!is_ia32_irn(irn)                              ||  /* must be an ia32 irn */
713             get_ia32_op_type(irn) != ia32_Normal           ||  /* must not already be a addressmode irn */
714             !ia32_is_spillmode_compatible(mode, spillmode) ||
715             is_ia32_use_frame(irn))                            /* must not already use frame */
716                 return 0;
717
718         switch (get_ia32_am_support(irn)) {
719                 case ia32_am_none:
720                         return 0;
721
722                 case ia32_am_unary:
723                         if (i != n_ia32_unary_op)
724                                 return 0;
725                         break;
726
727                 case ia32_am_binary:
728                         switch (i) {
729                                 case n_ia32_binary_left: {
730                                         const arch_register_req_t *req;
731                                         if (!is_ia32_commutative(irn))
732                                                 return 0;
733
734                                         /* we can't swap left/right for limited registers
735                                          * (As this (currently) breaks constraint handling copies)
736                                          */
737                                         req = get_ia32_in_req(irn, n_ia32_binary_left);
738                                         if (req->type & arch_register_req_type_limited)
739                                                 return 0;
740                                         break;
741                                 }
742
743                                 case n_ia32_binary_right:
744                                         break;
745
746                                 default:
747                                         return 0;
748                         }
749                         break;
750
751                 default:
752                         panic("Unknown AM type");
753         }
754
755         /* HACK: must not already use "real" memory.
756          * This can happen for Call and Div */
757         if (!is_NoMem(get_irn_n(irn, n_ia32_mem)))
758                 return 0;
759
760         return 1;
761 }
762
763 static void ia32_perform_memory_operand(ir_node *irn, ir_node *spill,
764                                         unsigned int i)
765 {
766         ir_mode *load_mode;
767         ir_mode *dest_op_mode;
768
769         assert(ia32_possible_memory_operand(irn, i) && "Cannot perform memory operand change");
770
771         set_ia32_op_type(irn, ia32_AddrModeS);
772
773         load_mode    = get_irn_mode(get_irn_n(irn, i));
774         dest_op_mode = get_ia32_ls_mode(irn);
775         if (get_mode_size_bits(load_mode) <= get_mode_size_bits(dest_op_mode)) {
776                 set_ia32_ls_mode(irn, load_mode);
777         }
778         set_ia32_use_frame(irn);
779         set_ia32_need_stackent(irn);
780
781         if (i == n_ia32_binary_left                    &&
782             get_ia32_am_support(irn) == ia32_am_binary &&
783             /* immediates are only allowed on the right side */
784             !is_ia32_Immediate(get_irn_n(irn, n_ia32_binary_right))) {
785                 ia32_swap_left_right(irn);
786                 i = n_ia32_binary_right;
787         }
788
789         assert(is_NoMem(get_irn_n(irn, n_ia32_mem)));
790
791         set_irn_n(irn, n_ia32_base, get_irg_frame(get_irn_irg(irn)));
792         set_irn_n(irn, n_ia32_mem,  spill);
793         set_irn_n(irn, i,           ia32_get_admissible_noreg(ia32_current_cg, irn, i));
794         set_ia32_is_reload(irn);
795 }
796
797 static const be_abi_callbacks_t ia32_abi_callbacks = {
798         ia32_abi_init,
799         ia32_abi_done,
800         ia32_abi_get_between_type,
801         ia32_abi_prologue,
802         ia32_abi_epilogue
803 };
804
805 /* register allocator interface */
806 static const arch_irn_ops_t ia32_irn_ops = {
807         get_ia32_in_req,
808         get_ia32_out_req,
809         ia32_classify,
810         ia32_get_frame_entity,
811         ia32_set_frame_entity,
812         ia32_set_frame_offset,
813         ia32_get_sp_bias,
814         ia32_get_inverse,
815         ia32_get_op_estimated_cost,
816         ia32_possible_memory_operand,
817         ia32_perform_memory_operand,
818 };
819
820 /* special register allocator interface for SwitchJmp
821    as it possibly has a WIDE range of Proj numbers.
822    We don't want to allocate output for register constraints for
823    all these. */
824 static const arch_irn_ops_t ia32_SwitchJmp_irn_ops = {
825         /* Note: we also use SwitchJmp_out_req for the inputs too:
826            This is because the bearch API has a conceptual problem at the moment.
827            Querying for negative proj numbers which can happen for switchs
828            isn't possible and will result in inputs getting queried */
829         get_ia32_SwitchJmp_out_req,
830         get_ia32_SwitchJmp_out_req,
831         ia32_classify,
832         ia32_get_frame_entity,
833         ia32_set_frame_entity,
834         ia32_set_frame_offset,
835         ia32_get_sp_bias,
836         ia32_get_inverse,
837         ia32_get_op_estimated_cost,
838         ia32_possible_memory_operand,
839         ia32_perform_memory_operand,
840 };
841
842 /**************************************************
843  *                _                         _  __
844  *               | |                       (_)/ _|
845  *   ___ ___   __| | ___  __ _  ___ _ __    _| |_
846  *  / __/ _ \ / _` |/ _ \/ _` |/ _ \ '_ \  | |  _|
847  * | (_| (_) | (_| |  __/ (_| |  __/ | | | | | |
848  *  \___\___/ \__,_|\___|\__, |\___|_| |_| |_|_|
849  *                        __/ |
850  *                       |___/
851  **************************************************/
852
853 static ir_entity *mcount = NULL;
854
855 #define ID(s) new_id_from_chars(s, sizeof(s) - 1)
856
857 static void ia32_before_abi(void *self)
858 {
859         lower_mode_b_config_t lower_mode_b_config = {
860                 mode_Iu,  /* lowered mode */
861                 mode_Bu,  /* preferred mode for set */
862                 0,        /* don't lower direct compares */
863         };
864         ia32_code_gen_t *cg = self;
865
866         ir_lower_mode_b(cg->irg, &lower_mode_b_config);
867         if (cg->dump)
868                 be_dump(cg->irg, "-lower_modeb", dump_ir_block_graph_sched);
869         if (cg->gprof) {
870                 if (mcount == NULL) {
871                         ir_type *tp = new_type_method(ID("FKT.mcount"), 0, 0);
872                         mcount = new_entity(get_glob_type(), ID("mcount"), tp);
873                         /* FIXME: enter the right ld_ident here */
874                         set_entity_ld_ident(mcount, get_entity_ident(mcount));
875                         set_entity_visibility(mcount, visibility_external_allocated);
876                 }
877                 instrument_initcall(cg->irg, mcount);
878         }
879 }
880
881 /**
882  * Transforms the standard firm graph into
883  * an ia32 firm graph
884  */
885 static void ia32_prepare_graph(void *self)
886 {
887         ia32_code_gen_t *cg = self;
888
889         switch (be_transformer) {
890         case TRANSFORMER_DEFAULT:
891                 /* transform remaining nodes into assembler instructions */
892                 ia32_transform_graph(cg);
893                 break;
894
895 #ifdef FIRM_GRGEN_BE
896         case TRANSFORMER_PBQP:
897         case TRANSFORMER_RAND:
898                 /* transform nodes into assembler instructions by PBQP magic */
899                 ia32_transform_graph_by_pbqp(cg);
900                 break;
901 #endif
902
903         default:
904                 panic("invalid transformer");
905         }
906
907         /* do local optimizations (mainly CSE) */
908         optimize_graph_df(cg->irg);
909
910         if (cg->dump)
911                 be_dump(cg->irg, "-transformed", dump_ir_block_graph_sched);
912
913         /* optimize address mode */
914         ia32_optimize_graph(cg);
915
916         /* do code placement, to optimize the position of constants */
917         place_code(cg->irg);
918
919         if (cg->dump)
920                 be_dump(cg->irg, "-place", dump_ir_block_graph_sched);
921 }
922
923 ir_node *turn_back_am(ir_node *node)
924 {
925         dbg_info *dbgi  = get_irn_dbg_info(node);
926         ir_node  *block = get_nodes_block(node);
927         ir_node  *base  = get_irn_n(node, n_ia32_base);
928         ir_node  *index = get_irn_n(node, n_ia32_index);
929         ir_node  *mem   = get_irn_n(node, n_ia32_mem);
930         ir_node  *noreg;
931
932         ir_node  *load     = new_bd_ia32_Load(dbgi, block, base, index, mem);
933         ir_node  *load_res = new_rd_Proj(dbgi, block, load, mode_Iu, pn_ia32_Load_res);
934
935         ia32_copy_am_attrs(load, node);
936         if (is_ia32_is_reload(node))
937                 set_ia32_is_reload(load);
938         set_irn_n(node, n_ia32_mem, new_NoMem());
939
940         switch (get_ia32_am_support(node)) {
941                 case ia32_am_unary:
942                         set_irn_n(node, n_ia32_unary_op, load_res);
943                         break;
944
945                 case ia32_am_binary:
946                         if (is_ia32_Immediate(get_irn_n(node, n_ia32_binary_right))) {
947                                 set_irn_n(node, n_ia32_binary_left, load_res);
948                         } else {
949                                 set_irn_n(node, n_ia32_binary_right, load_res);
950                         }
951                         break;
952
953                 default:
954                         panic("Unknown AM type");
955         }
956         noreg = ia32_new_NoReg_gp(ia32_current_cg);
957         set_irn_n(node, n_ia32_base,  noreg);
958         set_irn_n(node, n_ia32_index, noreg);
959         set_ia32_am_offs_int(node, 0);
960         set_ia32_am_sc(node, NULL);
961         set_ia32_am_scale(node, 0);
962         clear_ia32_am_sc_sign(node);
963
964         /* rewire mem-proj */
965         if (get_irn_mode(node) == mode_T) {
966                 const ir_edge_t *edge;
967                 foreach_out_edge(node, edge) {
968                         ir_node *out = get_edge_src_irn(edge);
969                         if (get_irn_mode(out) == mode_M) {
970                                 set_Proj_pred(out, load);
971                                 set_Proj_proj(out, pn_ia32_Load_M);
972                                 break;
973                         }
974                 }
975         }
976
977         set_ia32_op_type(node, ia32_Normal);
978         if (sched_is_scheduled(node))
979                 sched_add_before(node, load);
980
981         return load_res;
982 }
983
984 static ir_node *flags_remat(ir_node *node, ir_node *after)
985 {
986         /* we should turn back source address mode when rematerializing nodes */
987         ia32_op_type_t type;
988         ir_node        *block;
989         ir_node        *copy;
990
991         if (is_Block(after)) {
992                 block = after;
993         } else {
994                 block = get_nodes_block(after);
995         }
996
997         type = get_ia32_op_type(node);
998         switch (type) {
999                 case ia32_AddrModeS:
1000                         turn_back_am(node);
1001                         break;
1002
1003                 case ia32_AddrModeD:
1004                         /* TODO implement this later... */
1005                         panic("found DestAM with flag user %+F this should not happen", node);
1006                         break;
1007
1008                 default: assert(type == ia32_Normal); break;
1009         }
1010
1011         copy = exact_copy(node);
1012         set_nodes_block(copy, block);
1013         sched_add_after(after, copy);
1014
1015         return copy;
1016 }
1017
1018 /**
1019  * Called before the register allocator.
1020  */
1021 static void ia32_before_ra(void *self)
1022 {
1023         ia32_code_gen_t *cg = self;
1024
1025         /* setup fpu rounding modes */
1026         ia32_setup_fpu_mode(cg);
1027
1028         /* fixup flags */
1029         be_sched_fix_flags(cg->birg, &ia32_reg_classes[CLASS_ia32_flags],
1030                            &flags_remat);
1031
1032         ia32_add_missing_keeps(cg);
1033 }
1034
1035
1036 /**
1037  * Transforms a be_Reload into a ia32 Load.
1038  */
1039 static void transform_to_Load(ia32_code_gen_t *cg, ir_node *node)
1040 {
1041         ir_graph *irg        = get_irn_irg(node);
1042         dbg_info *dbg        = get_irn_dbg_info(node);
1043         ir_node *block       = get_nodes_block(node);
1044         ir_entity *ent       = be_get_frame_entity(node);
1045         ir_mode *mode        = get_irn_mode(node);
1046         ir_mode *spillmode   = get_spill_mode(node);
1047         ir_node *noreg       = ia32_new_NoReg_gp(cg);
1048         ir_node *sched_point = NULL;
1049         ir_node *ptr         = get_irg_frame(irg);
1050         ir_node *mem         = get_irn_n(node, be_pos_Reload_mem);
1051         ir_node *new_op, *proj;
1052         const arch_register_t *reg;
1053
1054         if (sched_is_scheduled(node)) {
1055                 sched_point = sched_prev(node);
1056         }
1057
1058         if (mode_is_float(spillmode)) {
1059                 if (ia32_cg_config.use_sse2)
1060                         new_op = new_bd_ia32_xLoad(dbg, block, ptr, noreg, mem, spillmode);
1061                 else
1062                         new_op = new_bd_ia32_vfld(dbg, block, ptr, noreg, mem, spillmode);
1063         }
1064         else if (get_mode_size_bits(spillmode) == 128) {
1065                 /* Reload 128 bit SSE registers */
1066                 new_op = new_bd_ia32_xxLoad(dbg, block, ptr, noreg, mem);
1067         }
1068         else
1069                 new_op = new_bd_ia32_Load(dbg, block, ptr, noreg, mem);
1070
1071         set_ia32_op_type(new_op, ia32_AddrModeS);
1072         set_ia32_ls_mode(new_op, spillmode);
1073         set_ia32_frame_ent(new_op, ent);
1074         set_ia32_use_frame(new_op);
1075         set_ia32_is_reload(new_op);
1076
1077         DBG_OPT_RELOAD2LD(node, new_op);
1078
1079         proj = new_rd_Proj(dbg, block, new_op, mode, pn_ia32_Load_res);
1080
1081         if (sched_point) {
1082                 sched_add_after(sched_point, new_op);
1083                 sched_remove(node);
1084         }
1085
1086         /* copy the register from the old node to the new Load */
1087         reg = arch_get_irn_register(node);
1088         arch_set_irn_register(proj, reg);
1089
1090         SET_IA32_ORIG_NODE(new_op, node);
1091
1092         exchange(node, proj);
1093 }
1094
1095 /**
1096  * Transforms a be_Spill node into a ia32 Store.
1097  */
1098 static void transform_to_Store(ia32_code_gen_t *cg, ir_node *node)
1099 {
1100         ir_graph *irg  = get_irn_irg(node);
1101         dbg_info *dbg  = get_irn_dbg_info(node);
1102         ir_node *block = get_nodes_block(node);
1103         ir_entity *ent = be_get_frame_entity(node);
1104         const ir_node *spillval = get_irn_n(node, be_pos_Spill_val);
1105         ir_mode *mode  = get_spill_mode(spillval);
1106         ir_node *noreg = ia32_new_NoReg_gp(cg);
1107         ir_node *nomem = new_NoMem();
1108         ir_node *ptr   = get_irg_frame(irg);
1109         ir_node *val   = get_irn_n(node, be_pos_Spill_val);
1110         ir_node *store;
1111         ir_node *sched_point = NULL;
1112
1113         if (sched_is_scheduled(node)) {
1114                 sched_point = sched_prev(node);
1115         }
1116
1117         /* No need to spill unknown values... */
1118         if(is_ia32_Unknown_GP(val) ||
1119                 is_ia32_Unknown_VFP(val) ||
1120                 is_ia32_Unknown_XMM(val)) {
1121                 store = nomem;
1122                 if(sched_point)
1123                         sched_remove(node);
1124
1125                 exchange(node, store);
1126                 return;
1127         }
1128
1129         if (mode_is_float(mode)) {
1130                 if (ia32_cg_config.use_sse2)
1131                         store = new_bd_ia32_xStore(dbg, block, ptr, noreg, nomem, val);
1132                 else
1133                         store = new_bd_ia32_vfst(dbg, block, ptr, noreg, nomem, val, mode);
1134         } else if (get_mode_size_bits(mode) == 128) {
1135                 /* Spill 128 bit SSE registers */
1136                 store = new_bd_ia32_xxStore(dbg, block, ptr, noreg, nomem, val);
1137         } else if (get_mode_size_bits(mode) == 8) {
1138                 store = new_bd_ia32_Store8Bit(dbg, block, ptr, noreg, nomem, val);
1139         } else {
1140                 store = new_bd_ia32_Store(dbg, block, ptr, noreg, nomem, val);
1141         }
1142
1143         set_ia32_op_type(store, ia32_AddrModeD);
1144         set_ia32_ls_mode(store, mode);
1145         set_ia32_frame_ent(store, ent);
1146         set_ia32_use_frame(store);
1147         set_ia32_is_spill(store);
1148         SET_IA32_ORIG_NODE(store, node);
1149         DBG_OPT_SPILL2ST(node, store);
1150
1151         if (sched_point) {
1152                 sched_add_after(sched_point, store);
1153                 sched_remove(node);
1154         }
1155
1156         exchange(node, store);
1157 }
1158
1159 static ir_node *create_push(ia32_code_gen_t *cg, ir_node *node, ir_node *schedpoint, ir_node *sp, ir_node *mem, ir_entity *ent)
1160 {
1161         dbg_info *dbg = get_irn_dbg_info(node);
1162         ir_node *block = get_nodes_block(node);
1163         ir_node *noreg = ia32_new_NoReg_gp(cg);
1164         ir_graph *irg = get_irn_irg(node);
1165         ir_node *frame = get_irg_frame(irg);
1166
1167         ir_node *push = new_bd_ia32_Push(dbg, block, frame, noreg, mem, noreg, sp);
1168
1169         set_ia32_frame_ent(push, ent);
1170         set_ia32_use_frame(push);
1171         set_ia32_op_type(push, ia32_AddrModeS);
1172         set_ia32_ls_mode(push, mode_Is);
1173         set_ia32_is_spill(push);
1174
1175         sched_add_before(schedpoint, push);
1176         return push;
1177 }
1178
1179 static ir_node *create_pop(ia32_code_gen_t *cg, ir_node *node, ir_node *schedpoint, ir_node *sp, ir_entity *ent)
1180 {
1181         dbg_info *dbg = get_irn_dbg_info(node);
1182         ir_node *block = get_nodes_block(node);
1183         ir_node *noreg = ia32_new_NoReg_gp(cg);
1184         ir_graph *irg  = get_irn_irg(node);
1185         ir_node *frame = get_irg_frame(irg);
1186
1187         ir_node *pop = new_bd_ia32_PopMem(dbg, block, frame, noreg, new_NoMem(), sp);
1188
1189         set_ia32_frame_ent(pop, ent);
1190         set_ia32_use_frame(pop);
1191         set_ia32_op_type(pop, ia32_AddrModeD);
1192         set_ia32_ls_mode(pop, mode_Is);
1193         set_ia32_is_reload(pop);
1194
1195         sched_add_before(schedpoint, pop);
1196
1197         return pop;
1198 }
1199
1200 static ir_node* create_spproj(ir_node *node, ir_node *pred, int pos)
1201 {
1202         dbg_info *dbg = get_irn_dbg_info(node);
1203         ir_node *block = get_nodes_block(node);
1204         ir_mode *spmode = mode_Iu;
1205         const arch_register_t *spreg = &ia32_gp_regs[REG_ESP];
1206         ir_node *sp;
1207
1208         sp = new_rd_Proj(dbg, block, pred, spmode, pos);
1209         arch_set_irn_register(sp, spreg);
1210
1211         return sp;
1212 }
1213
1214 /**
1215  * Transform MemPerm, currently we do this the ugly way and produce
1216  * push/pop into/from memory cascades. This is possible without using
1217  * any registers.
1218  */
1219 static void transform_MemPerm(ia32_code_gen_t *cg, ir_node *node)
1220 {
1221         ir_node         *block = get_nodes_block(node);
1222         ir_node         *sp    = be_abi_get_ignore_irn(cg->birg->abi, &ia32_gp_regs[REG_ESP]);
1223         int              arity = be_get_MemPerm_entity_arity(node);
1224         ir_node        **pops  = ALLOCAN(ir_node*, arity);
1225         ir_node         *in[1];
1226         ir_node         *keep;
1227         int              i;
1228         const ir_edge_t *edge;
1229         const ir_edge_t *next;
1230
1231         /* create Pushs */
1232         for(i = 0; i < arity; ++i) {
1233                 ir_entity *inent = be_get_MemPerm_in_entity(node, i);
1234                 ir_entity *outent = be_get_MemPerm_out_entity(node, i);
1235                 ir_type *enttype = get_entity_type(inent);
1236                 unsigned entsize = get_type_size_bytes(enttype);
1237                 unsigned entsize2 = get_type_size_bytes(get_entity_type(outent));
1238                 ir_node *mem = get_irn_n(node, i + 1);
1239                 ir_node *push;
1240
1241                 /* work around cases where entities have different sizes */
1242                 if(entsize2 < entsize)
1243                         entsize = entsize2;
1244                 assert( (entsize == 4 || entsize == 8) && "spillslot on x86 should be 32 or 64 bit");
1245
1246                 push = create_push(cg, node, node, sp, mem, inent);
1247                 sp = create_spproj(node, push, pn_ia32_Push_stack);
1248                 if(entsize == 8) {
1249                         /* add another push after the first one */
1250                         push = create_push(cg, node, node, sp, mem, inent);
1251                         add_ia32_am_offs_int(push, 4);
1252                         sp = create_spproj(node, push, pn_ia32_Push_stack);
1253                 }
1254
1255                 set_irn_n(node, i, new_Bad());
1256         }
1257
1258         /* create pops */
1259         for(i = arity - 1; i >= 0; --i) {
1260                 ir_entity *inent = be_get_MemPerm_in_entity(node, i);
1261                 ir_entity *outent = be_get_MemPerm_out_entity(node, i);
1262                 ir_type *enttype = get_entity_type(outent);
1263                 unsigned entsize = get_type_size_bytes(enttype);
1264                 unsigned entsize2 = get_type_size_bytes(get_entity_type(inent));
1265                 ir_node *pop;
1266
1267                 /* work around cases where entities have different sizes */
1268                 if(entsize2 < entsize)
1269                         entsize = entsize2;
1270                 assert( (entsize == 4 || entsize == 8) && "spillslot on x86 should be 32 or 64 bit");
1271
1272                 pop = create_pop(cg, node, node, sp, outent);
1273                 sp = create_spproj(node, pop, pn_ia32_Pop_stack);
1274                 if(entsize == 8) {
1275                         add_ia32_am_offs_int(pop, 4);
1276
1277                         /* add another pop after the first one */
1278                         pop = create_pop(cg, node, node, sp, outent);
1279                         sp = create_spproj(node, pop, pn_ia32_Pop_stack);
1280                 }
1281
1282                 pops[i] = pop;
1283         }
1284
1285         in[0] = sp;
1286         keep  = be_new_Keep(block, 1, in);
1287         sched_add_before(node, keep);
1288
1289         /* exchange memprojs */
1290         foreach_out_edge_safe(node, edge, next) {
1291                 ir_node *proj = get_edge_src_irn(edge);
1292                 int p = get_Proj_proj(proj);
1293
1294                 assert(p < arity);
1295
1296                 set_Proj_pred(proj, pops[p]);
1297                 set_Proj_proj(proj, pn_ia32_Pop_M);
1298         }
1299
1300         /* remove memperm */
1301         arity = get_irn_arity(node);
1302         for(i = 0; i < arity; ++i) {
1303                 set_irn_n(node, i, new_Bad());
1304         }
1305         sched_remove(node);
1306 }
1307
1308 /**
1309  * Block-Walker: Calls the transform functions Spill and Reload.
1310  */
1311 static void ia32_after_ra_walker(ir_node *block, void *env)
1312 {
1313         ir_node *node, *prev;
1314         ia32_code_gen_t *cg = env;
1315
1316         /* beware: the schedule is changed here */
1317         for (node = sched_last(block); !sched_is_begin(node); node = prev) {
1318                 prev = sched_prev(node);
1319
1320                 if (be_is_Reload(node)) {
1321                         transform_to_Load(cg, node);
1322                 } else if (be_is_Spill(node)) {
1323                         transform_to_Store(cg, node);
1324                 } else if (be_is_MemPerm(node)) {
1325                         transform_MemPerm(cg, node);
1326                 }
1327         }
1328 }
1329
1330 /**
1331  * Collects nodes that need frame entities assigned.
1332  */
1333 static void ia32_collect_frame_entity_nodes(ir_node *node, void *data)
1334 {
1335         be_fec_env_t  *env = data;
1336         const ir_mode *mode;
1337         int            align;
1338
1339         if (be_is_Reload(node) && be_get_frame_entity(node) == NULL) {
1340                 mode  = get_spill_mode_mode(get_irn_mode(node));
1341                 align = get_mode_size_bytes(mode);
1342         } else if (is_ia32_irn(node)         &&
1343                         get_ia32_frame_ent(node) == NULL &&
1344                         is_ia32_use_frame(node)) {
1345                 if (is_ia32_need_stackent(node))
1346                         goto need_stackent;
1347
1348                 switch (get_ia32_irn_opcode(node)) {
1349 need_stackent:
1350                         case iro_ia32_Load: {
1351                                 const ia32_attr_t *attr = get_ia32_attr_const(node);
1352
1353                                 if (attr->data.need_32bit_stackent) {
1354                                         mode = mode_Is;
1355                                 } else if (attr->data.need_64bit_stackent) {
1356                                         mode = mode_Ls;
1357                                 } else {
1358                                         mode = get_ia32_ls_mode(node);
1359                                         if (is_ia32_is_reload(node))
1360                                                 mode = get_spill_mode_mode(mode);
1361                                 }
1362                                 align = get_mode_size_bytes(mode);
1363                                 break;
1364                         }
1365
1366                         case iro_ia32_vfild:
1367                         case iro_ia32_vfld:
1368                         case iro_ia32_xLoad: {
1369                                 mode  = get_ia32_ls_mode(node);
1370                                 align = 4;
1371                                 break;
1372                         }
1373
1374                         case iro_ia32_FldCW: {
1375                                 /* although 2 byte would be enough 4 byte performs best */
1376                                 mode  = mode_Iu;
1377                                 align = 4;
1378                                 break;
1379                         }
1380
1381                         default:
1382 #ifndef NDEBUG
1383                                 panic("unexpected frame user while collection frame entity nodes");
1384
1385                         case iro_ia32_FnstCW:
1386                         case iro_ia32_Store8Bit:
1387                         case iro_ia32_Store:
1388                         case iro_ia32_fst:
1389                         case iro_ia32_fstp:
1390                         case iro_ia32_vfist:
1391                         case iro_ia32_vfisttp:
1392                         case iro_ia32_vfst:
1393                         case iro_ia32_xStore:
1394                         case iro_ia32_xStoreSimple:
1395 #endif
1396                                 return;
1397                 }
1398         } else {
1399                 return;
1400         }
1401         be_node_needs_frame_entity(env, node, mode, align);
1402 }
1403
1404 /**
1405  * We transform Spill and Reload here. This needs to be done before
1406  * stack biasing otherwise we would miss the corrected offset for these nodes.
1407  */
1408 static void ia32_after_ra(void *self)
1409 {
1410         ia32_code_gen_t *cg = self;
1411         ir_graph *irg = cg->irg;
1412         be_fec_env_t *fec_env = be_new_frame_entity_coalescer(cg->birg);
1413
1414         /* create and coalesce frame entities */
1415         irg_walk_graph(irg, NULL, ia32_collect_frame_entity_nodes, fec_env);
1416         be_assign_entities(fec_env);
1417         be_free_frame_entity_coalescer(fec_env);
1418
1419         irg_block_walk_graph(irg, NULL, ia32_after_ra_walker, cg);
1420 }
1421
1422 /**
1423  * Last touchups for the graph before emit: x87 simulation to replace the
1424  * virtual with real x87 instructions, creating a block schedule and peephole
1425  * optimisations.
1426  */
1427 static void ia32_finish(void *self)
1428 {
1429         ia32_code_gen_t *cg = self;
1430         ir_graph        *irg = cg->irg;
1431
1432         ia32_finish_irg(irg, cg);
1433
1434         /* we might have to rewrite x87 virtual registers */
1435         if (cg->do_x87_sim) {
1436                 x87_simulate_graph(cg->birg);
1437         }
1438
1439         /* do peephole optimisations */
1440         ia32_peephole_optimization(cg);
1441
1442         /* create block schedule, this also removes empty blocks which might
1443          * produce critical edges */
1444         cg->blk_sched = be_create_block_schedule(irg, cg->birg->exec_freq);
1445 }
1446
1447 /**
1448  * Emits the code, closes the output file and frees
1449  * the code generator interface.
1450  */
1451 static void ia32_codegen(void *self)
1452 {
1453         ia32_code_gen_t *cg = self;
1454         ir_graph        *irg = cg->irg;
1455
1456         if (ia32_cg_config.emit_machcode) {
1457                 ia32_gen_binary_routine(cg, irg);
1458         } else {
1459                 ia32_gen_routine(cg, irg);
1460         }
1461
1462         /* remove it from the isa */
1463         cg->isa->cg = NULL;
1464
1465         assert(ia32_current_cg == cg);
1466         ia32_current_cg = NULL;
1467
1468         /* de-allocate code generator */
1469         free(cg);
1470 }
1471
1472 /**
1473  * Returns the node representing the PIC base.
1474  */
1475 static ir_node *ia32_get_pic_base(void *self)
1476 {
1477         ir_node         *block;
1478         ia32_code_gen_t *cg      = self;
1479         ir_node         *get_eip = cg->get_eip;
1480         if (get_eip != NULL)
1481                 return get_eip;
1482
1483         block       = get_irg_start_block(cg->irg);
1484         get_eip     = new_bd_ia32_GetEIP(NULL, block);
1485         cg->get_eip = get_eip;
1486
1487         be_dep_on_frame(get_eip);
1488         return get_eip;
1489 }
1490
1491 static void *ia32_cg_init(be_irg_t *birg);
1492
1493 static const arch_code_generator_if_t ia32_code_gen_if = {
1494         ia32_cg_init,
1495         ia32_get_pic_base,   /* return node used as base in pic code addresses */
1496         ia32_before_abi,     /* before abi introduce hook */
1497         ia32_prepare_graph,
1498         NULL,                /* spill */
1499         ia32_before_ra,      /* before register allocation hook */
1500         ia32_after_ra,       /* after register allocation hook */
1501         ia32_finish,         /* called before codegen */
1502         ia32_codegen         /* emit && done */
1503 };
1504
1505 /**
1506  * Initializes a IA32 code generator.
1507  */
1508 static void *ia32_cg_init(be_irg_t *birg)
1509 {
1510         ia32_isa_t      *isa = (ia32_isa_t *)birg->main_env->arch_env;
1511         ia32_code_gen_t *cg  = XMALLOCZ(ia32_code_gen_t);
1512
1513         cg->impl      = &ia32_code_gen_if;
1514         cg->irg       = birg->irg;
1515         cg->isa       = isa;
1516         cg->birg      = birg;
1517         cg->blk_sched = NULL;
1518         cg->dump      = (birg->main_env->options->dump_flags & DUMP_BE) ? 1 : 0;
1519         cg->gprof     = (birg->main_env->options->gprof) ? 1 : 0;
1520
1521         if (cg->gprof) {
1522                 /* Linux gprof implementation needs base pointer */
1523                 birg->main_env->options->omit_fp = 0;
1524         }
1525
1526         /* enter it */
1527         isa->cg = cg;
1528
1529 #ifndef NDEBUG
1530         if (isa->name_obst) {
1531                 obstack_free(isa->name_obst, NULL);
1532                 obstack_init(isa->name_obst);
1533         }
1534 #endif /* NDEBUG */
1535
1536         assert(ia32_current_cg == NULL);
1537         ia32_current_cg = cg;
1538
1539         return (arch_code_generator_t *)cg;
1540 }
1541
1542
1543
1544 /*****************************************************************
1545  *  ____             _                  _   _____  _____
1546  * |  _ \           | |                | | |_   _|/ ____|  /\
1547  * | |_) | __ _  ___| | _____ _ __   __| |   | | | (___   /  \
1548  * |  _ < / _` |/ __| |/ / _ \ '_ \ / _` |   | |  \___ \ / /\ \
1549  * | |_) | (_| | (__|   <  __/ | | | (_| |  _| |_ ____) / ____ \
1550  * |____/ \__,_|\___|_|\_\___|_| |_|\__,_| |_____|_____/_/    \_\
1551  *
1552  *****************************************************************/
1553
1554 /**
1555  * Set output modes for GCC
1556  */
1557 static const tarval_mode_info mo_integer = {
1558         TVO_HEX,
1559         "0x",
1560         NULL,
1561 };
1562
1563 /*
1564  * set the tarval output mode of all integer modes to decimal
1565  */
1566 static void set_tarval_output_modes(void)
1567 {
1568         int i;
1569
1570         for (i = get_irp_n_modes() - 1; i >= 0; --i) {
1571                 ir_mode *mode = get_irp_mode(i);
1572
1573                 if (mode_is_int(mode))
1574                         set_tarval_mode_output_option(mode, &mo_integer);
1575         }
1576 }
1577
1578 const arch_isa_if_t ia32_isa_if;
1579
1580 /**
1581  * The template that generates a new ISA object.
1582  * Note that this template can be changed by command line
1583  * arguments.
1584  */
1585 static ia32_isa_t ia32_isa_template = {
1586         {
1587                 &ia32_isa_if,            /* isa interface implementation */
1588                 &ia32_gp_regs[REG_ESP],  /* stack pointer register */
1589                 &ia32_gp_regs[REG_EBP],  /* base pointer register */
1590                 &ia32_reg_classes[CLASS_ia32_gp],  /* static link pointer register class */
1591                 -1,                      /* stack direction */
1592                 2,                       /* power of two stack alignment, 2^2 == 4 */
1593                 NULL,                    /* main environment */
1594                 7,                       /* costs for a spill instruction */
1595                 5,                       /* costs for a reload instruction */
1596         },
1597         NULL,                    /* 16bit register names */
1598         NULL,                    /* 8bit register names */
1599         NULL,                    /* 8bit register names high */
1600         NULL,                    /* types */
1601         NULL,                    /* tv_ents */
1602         NULL,                    /* current code generator */
1603         NULL,                    /* abstract machine */
1604 #ifndef NDEBUG
1605         NULL,                    /* name obstack */
1606 #endif
1607 };
1608
1609 static void init_asm_constraints(void)
1610 {
1611         be_init_default_asm_constraint_flags();
1612
1613         asm_constraint_flags['a'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1614         asm_constraint_flags['b'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1615         asm_constraint_flags['c'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1616         asm_constraint_flags['d'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1617         asm_constraint_flags['D'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1618         asm_constraint_flags['S'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1619         asm_constraint_flags['Q'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1620         asm_constraint_flags['q'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1621         asm_constraint_flags['A'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1622         asm_constraint_flags['l'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1623         asm_constraint_flags['R'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1624         asm_constraint_flags['r'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1625         asm_constraint_flags['p'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1626         asm_constraint_flags['f'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1627         asm_constraint_flags['t'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1628         asm_constraint_flags['u'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1629         asm_constraint_flags['Y'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1630         asm_constraint_flags['X'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1631         asm_constraint_flags['n'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
1632         asm_constraint_flags['g'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
1633
1634         /* no support for autodecrement/autoincrement */
1635         asm_constraint_flags['<'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1636         asm_constraint_flags['>'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1637         /* no float consts */
1638         asm_constraint_flags['E'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1639         asm_constraint_flags['F'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1640         /* makes no sense on x86 */
1641         asm_constraint_flags['s'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1642         /* no support for sse consts yet */
1643         asm_constraint_flags['C'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1644         /* no support for x87 consts yet */
1645         asm_constraint_flags['G'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1646         /* no support for mmx registers yet */
1647         asm_constraint_flags['y'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1648         /* not available in 32bit mode */
1649         asm_constraint_flags['Z'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1650         asm_constraint_flags['e'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1651
1652         /* no code yet to determine register class needed... */
1653         asm_constraint_flags['X'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1654 }
1655
1656 /**
1657  * Initializes the backend ISA.
1658  */
1659 static arch_env_t *ia32_init(FILE *file_handle)
1660 {
1661         static int inited = 0;
1662         ia32_isa_t *isa;
1663         int        i, n;
1664
1665         if (inited)
1666                 return NULL;
1667         inited = 1;
1668
1669         set_tarval_output_modes();
1670
1671         isa = XMALLOC(ia32_isa_t);
1672         memcpy(isa, &ia32_isa_template, sizeof(*isa));
1673
1674         if(mode_fpcw == NULL) {
1675                 mode_fpcw = new_ir_mode("Fpcw", irms_int_number, 16, 0, irma_none, 0);
1676         }
1677
1678         ia32_register_init();
1679         ia32_create_opcodes(&ia32_irn_ops);
1680         /* special handling for SwitchJmp */
1681         op_ia32_SwitchJmp->ops.be_ops = &ia32_SwitchJmp_irn_ops;
1682
1683         be_emit_init(file_handle);
1684         isa->regs_16bit     = pmap_create();
1685         isa->regs_8bit      = pmap_create();
1686         isa->regs_8bit_high = pmap_create();
1687         isa->types          = pmap_create();
1688         isa->tv_ent         = pmap_create();
1689         isa->cpu            = ia32_init_machine_description();
1690
1691         ia32_build_16bit_reg_map(isa->regs_16bit);
1692         ia32_build_8bit_reg_map(isa->regs_8bit);
1693         ia32_build_8bit_reg_map_high(isa->regs_8bit_high);
1694
1695 #ifndef NDEBUG
1696         isa->name_obst = XMALLOC(struct obstack);
1697         obstack_init(isa->name_obst);
1698 #endif /* NDEBUG */
1699
1700         /* enter the ISA object into the intrinsic environment */
1701         intrinsic_env.isa = isa;
1702
1703         /* emit asm includes */
1704         n = get_irp_n_asms();
1705         for (i = 0; i < n; ++i) {
1706                 be_emit_cstring("#APP\n");
1707                 be_emit_ident(get_irp_asm(i));
1708                 be_emit_cstring("\n#NO_APP\n");
1709         }
1710
1711         /* needed for the debug support */
1712         be_gas_emit_switch_section(GAS_SECTION_TEXT);
1713         be_emit_cstring(".Ltext0:\n");
1714         be_emit_write_line();
1715
1716         /* we mark referenced global entities, so we can only emit those which
1717          * are actually referenced. (Note: you mustn't use the type visited flag
1718          * elsewhere in the backend)
1719          */
1720         inc_master_type_visited();
1721
1722         return &isa->arch_env;
1723 }
1724
1725
1726
1727 /**
1728  * Closes the output file and frees the ISA structure.
1729  */
1730 static void ia32_done(void *self)
1731 {
1732         ia32_isa_t *isa = self;
1733
1734         /* emit now all global declarations */
1735         be_gas_emit_decls(isa->arch_env.main_env, 1);
1736
1737         pmap_destroy(isa->regs_16bit);
1738         pmap_destroy(isa->regs_8bit);
1739         pmap_destroy(isa->regs_8bit_high);
1740         pmap_destroy(isa->tv_ent);
1741         pmap_destroy(isa->types);
1742
1743 #ifndef NDEBUG
1744         obstack_free(isa->name_obst, NULL);
1745 #endif /* NDEBUG */
1746
1747         be_emit_exit();
1748
1749         free(self);
1750 }
1751
1752
1753 /**
1754  * Return the number of register classes for this architecture.
1755  * We report always these:
1756  *  - the general purpose registers
1757  *  - the SSE floating point register set
1758  *  - the virtual floating point registers
1759  *  - the SSE vector register set
1760  */
1761 static unsigned ia32_get_n_reg_class(void)
1762 {
1763         return N_CLASSES;
1764 }
1765
1766 /**
1767  * Return the register class for index i.
1768  */
1769 static const arch_register_class_t *ia32_get_reg_class(unsigned i)
1770 {
1771         assert(i < N_CLASSES);
1772         return &ia32_reg_classes[i];
1773 }
1774
1775 /**
1776  * Get the register class which shall be used to store a value of a given mode.
1777  * @param self The this pointer.
1778  * @param mode The mode in question.
1779  * @return A register class which can hold values of the given mode.
1780  */
1781 const arch_register_class_t *ia32_get_reg_class_for_mode(const ir_mode *mode)
1782 {
1783         if (mode_is_float(mode)) {
1784                 return ia32_cg_config.use_sse2 ? &ia32_reg_classes[CLASS_ia32_xmm] : &ia32_reg_classes[CLASS_ia32_vfp];
1785         }
1786         else
1787                 return &ia32_reg_classes[CLASS_ia32_gp];
1788 }
1789
1790 /**
1791  * Returns the register for parameter nr.
1792  */
1793 static const arch_register_t *ia32_get_RegParam_reg(unsigned cc, unsigned nr,
1794                                                     const ir_mode *mode)
1795 {
1796         static const arch_register_t *gpreg_param_reg_fastcall[] = {
1797                 &ia32_gp_regs[REG_ECX],
1798                 &ia32_gp_regs[REG_EDX],
1799                 NULL
1800         };
1801         static const unsigned MAXNUM_GPREG_ARGS = 3;
1802
1803         static const arch_register_t *gpreg_param_reg_regparam[] = {
1804                 &ia32_gp_regs[REG_EAX],
1805                 &ia32_gp_regs[REG_EDX],
1806                 &ia32_gp_regs[REG_ECX]
1807         };
1808
1809         static const arch_register_t *gpreg_param_reg_this[] = {
1810                 &ia32_gp_regs[REG_ECX],
1811                 NULL,
1812                 NULL
1813         };
1814
1815         static const arch_register_t *fpreg_sse_param_reg_std[] = {
1816                 &ia32_xmm_regs[REG_XMM0],
1817                 &ia32_xmm_regs[REG_XMM1],
1818                 &ia32_xmm_regs[REG_XMM2],
1819                 &ia32_xmm_regs[REG_XMM3],
1820                 &ia32_xmm_regs[REG_XMM4],
1821                 &ia32_xmm_regs[REG_XMM5],
1822                 &ia32_xmm_regs[REG_XMM6],
1823                 &ia32_xmm_regs[REG_XMM7]
1824         };
1825
1826         static const arch_register_t *fpreg_sse_param_reg_this[] = {
1827                 NULL,  /* in case of a "this" pointer, the first parameter must not be a float */
1828         };
1829         static const unsigned MAXNUM_SSE_ARGS = 8;
1830
1831         if ((cc & cc_this_call) && nr == 0)
1832                 return gpreg_param_reg_this[0];
1833
1834         if (! (cc & cc_reg_param))
1835                 return NULL;
1836
1837         if (mode_is_float(mode)) {
1838                 if (!ia32_cg_config.use_sse2 || (cc & cc_fpreg_param) == 0)
1839                         return NULL;
1840                 if (nr >= MAXNUM_SSE_ARGS)
1841                         return NULL;
1842
1843                 if (cc & cc_this_call) {
1844                         return fpreg_sse_param_reg_this[nr];
1845                 }
1846                 return fpreg_sse_param_reg_std[nr];
1847         } else if (mode_is_int(mode) || mode_is_reference(mode)) {
1848                 unsigned num_regparam;
1849
1850                 if (get_mode_size_bits(mode) > 32)
1851                         return NULL;
1852
1853                 if (nr >= MAXNUM_GPREG_ARGS)
1854                         return NULL;
1855
1856                 if (cc & cc_this_call) {
1857                         return gpreg_param_reg_this[nr];
1858                 }
1859                 num_regparam = cc & ~cc_bits;
1860                 if (num_regparam == 0) {
1861                         /* default fastcall */
1862                         return gpreg_param_reg_fastcall[nr];
1863                 }
1864                 if (nr < num_regparam)
1865                         return gpreg_param_reg_regparam[nr];
1866                 return NULL;
1867         }
1868
1869         panic("unknown argument mode");
1870 }
1871
1872 /**
1873  * Get the ABI restrictions for procedure calls.
1874  * @param self        The this pointer.
1875  * @param method_type The type of the method (procedure) in question.
1876  * @param abi         The abi object to be modified
1877  */
1878 static void ia32_get_call_abi(const void *self, ir_type *method_type,
1879                               be_abi_call_t *abi)
1880 {
1881         ir_type  *tp;
1882         ir_mode  *mode;
1883         unsigned  cc;
1884         int       n, i, regnum;
1885         int                 pop_amount = 0;
1886         be_abi_call_flags_t call_flags = be_abi_call_get_flags(abi);
1887
1888         (void) self;
1889
1890         /* set abi flags for calls */
1891         call_flags.bits.left_to_right         = 0;  /* always last arg first on stack */
1892         call_flags.bits.store_args_sequential = 0;
1893         /* call_flags.bits.try_omit_fp                 not changed: can handle both settings */
1894         call_flags.bits.fp_free               = 0;  /* the frame pointer is fixed in IA32 */
1895         call_flags.bits.call_has_imm          = 0;  /* No call immediate, we handle this by ourselves */
1896
1897         /* set parameter passing style */
1898         be_abi_call_set_flags(abi, call_flags, &ia32_abi_callbacks);
1899
1900         cc = get_method_calling_convention(method_type);
1901         if (get_method_variadicity(method_type) == variadicity_variadic) {
1902                 /* pass all parameters of a variadic function on the stack */
1903                 cc = cc_cdecl_set | (cc & cc_this_call);
1904         } else {
1905                 if (get_method_additional_properties(method_type) & mtp_property_private &&
1906                     ia32_cg_config.optimize_cc) {
1907                         /* set the fast calling conventions (allowing up to 3) */
1908                         cc = SET_FASTCALL(cc) | 3;
1909                 }
1910         }
1911
1912         /* we have to pop the shadow parameter ourself for compound calls */
1913         if ( (get_method_calling_convention(method_type) & cc_compound_ret)
1914                         && !(cc & cc_reg_param)) {
1915                 pop_amount += get_mode_size_bytes(mode_P_data);
1916         }
1917
1918         n = get_method_n_params(method_type);
1919         for (i = regnum = 0; i < n; i++) {
1920                 ir_mode               *mode;
1921                 const arch_register_t *reg = NULL;
1922
1923                 tp   = get_method_param_type(method_type, i);
1924                 mode = get_type_mode(tp);
1925                 if (mode != NULL) {
1926                         reg  = ia32_get_RegParam_reg(cc, regnum, mode);
1927                 }
1928                 if (reg != NULL) {
1929                         be_abi_call_param_reg(abi, i, reg);
1930                         ++regnum;
1931                 } else {
1932                         /* Micro optimisation: if the mode is shorter than 4 bytes, load 4 bytes.
1933                          * movl has a shorter opcode than mov[sz][bw]l */
1934                         ir_mode *load_mode = mode;
1935
1936                         if (mode != NULL) {
1937                                 unsigned size = get_mode_size_bytes(mode);
1938
1939                                 if (cc & cc_callee_clear_stk) {
1940                                         pop_amount += (size + 3U) & ~3U;
1941                                 }
1942
1943                                 if (size < 4) load_mode = mode_Iu;
1944                         }
1945
1946                         be_abi_call_param_stack(abi, i, load_mode, 4, 0, 0);
1947                 }
1948         }
1949
1950         be_abi_call_set_pop(abi, pop_amount);
1951
1952         /* set return registers */
1953         n = get_method_n_ress(method_type);
1954
1955         assert(n <= 2 && "more than two results not supported");
1956
1957         /* In case of 64bit returns, we will have two 32bit values */
1958         if (n == 2) {
1959                 tp   = get_method_res_type(method_type, 0);
1960                 mode = get_type_mode(tp);
1961
1962                 assert(!mode_is_float(mode) && "two FP results not supported");
1963
1964                 tp   = get_method_res_type(method_type, 1);
1965                 mode = get_type_mode(tp);
1966
1967                 assert(!mode_is_float(mode) && "mixed INT, FP results not supported");
1968
1969                 be_abi_call_res_reg(abi, 0, &ia32_gp_regs[REG_EAX]);
1970                 be_abi_call_res_reg(abi, 1, &ia32_gp_regs[REG_EDX]);
1971         }
1972         else if (n == 1) {
1973                 const arch_register_t *reg;
1974
1975                 tp   = get_method_res_type(method_type, 0);
1976                 assert(is_atomic_type(tp));
1977                 mode = get_type_mode(tp);
1978
1979                 reg = mode_is_float(mode) ? &ia32_vfp_regs[REG_VF0] : &ia32_gp_regs[REG_EAX];
1980
1981                 be_abi_call_res_reg(abi, 0, reg);
1982         }
1983 }
1984
1985 int ia32_to_appear_in_schedule(void *block_env, const ir_node *irn)
1986 {
1987         (void) block_env;
1988
1989         if(!is_ia32_irn(irn)) {
1990                 return -1;
1991         }
1992
1993         if(is_ia32_NoReg_GP(irn) || is_ia32_NoReg_VFP(irn) || is_ia32_NoReg_XMM(irn)
1994                 || is_ia32_Unknown_GP(irn) || is_ia32_Unknown_XMM(irn)
1995                 || is_ia32_Unknown_VFP(irn) || is_ia32_ChangeCW(irn)
1996                 || is_ia32_Immediate(irn))
1997                 return 0;
1998
1999         return 1;
2000 }
2001
2002 /**
2003  * Initializes the code generator interface.
2004  */
2005 static const arch_code_generator_if_t *ia32_get_code_generator_if(void *self)
2006 {
2007         (void) self;
2008         return &ia32_code_gen_if;
2009 }
2010
2011 /**
2012  * Returns the estimated execution time of an ia32 irn.
2013  */
2014 static sched_timestep_t ia32_sched_exectime(void *env, const ir_node *irn)
2015 {
2016         (void) env;
2017         return is_ia32_irn(irn) ? ia32_get_op_estimated_cost(irn) : 1;
2018 }
2019
2020 list_sched_selector_t ia32_sched_selector;
2021
2022 /**
2023  * Returns the reg_pressure scheduler with to_appear_in_schedule() overloaded
2024  */
2025 static const list_sched_selector_t *ia32_get_list_sched_selector(
2026                 const void *self, list_sched_selector_t *selector)
2027 {
2028         (void) self;
2029         memcpy(&ia32_sched_selector, selector, sizeof(ia32_sched_selector));
2030         ia32_sched_selector.exectime              = ia32_sched_exectime;
2031         ia32_sched_selector.to_appear_in_schedule = ia32_to_appear_in_schedule;
2032         return &ia32_sched_selector;
2033 }
2034
2035 static const ilp_sched_selector_t *ia32_get_ilp_sched_selector(const void *self)
2036 {
2037         (void) self;
2038         return NULL;
2039 }
2040
2041 /**
2042  * Returns the necessary byte alignment for storing a register of given class.
2043  */
2044 static int ia32_get_reg_class_alignment(const arch_register_class_t *cls)
2045 {
2046         ir_mode *mode = arch_register_class_mode(cls);
2047         int bytes     = get_mode_size_bytes(mode);
2048
2049         if (mode_is_float(mode) && bytes > 8)
2050                 return 16;
2051         return bytes;
2052 }
2053
2054 static const be_execution_unit_t ***ia32_get_allowed_execution_units(
2055                 const ir_node *irn)
2056 {
2057         static const be_execution_unit_t *_allowed_units_BRANCH[] = {
2058                 &ia32_execution_units_BRANCH[IA32_EXECUNIT_TP_BRANCH_BRANCH1],
2059                 &ia32_execution_units_BRANCH[IA32_EXECUNIT_TP_BRANCH_BRANCH2],
2060                 NULL,
2061         };
2062         static const be_execution_unit_t *_allowed_units_GP[] = {
2063                 &ia32_execution_units_GP[IA32_EXECUNIT_TP_GP_GP_EAX],
2064                 &ia32_execution_units_GP[IA32_EXECUNIT_TP_GP_GP_EBX],
2065                 &ia32_execution_units_GP[IA32_EXECUNIT_TP_GP_GP_ECX],
2066                 &ia32_execution_units_GP[IA32_EXECUNIT_TP_GP_GP_EDX],
2067                 &ia32_execution_units_GP[IA32_EXECUNIT_TP_GP_GP_ESI],
2068                 &ia32_execution_units_GP[IA32_EXECUNIT_TP_GP_GP_EDI],
2069                 &ia32_execution_units_GP[IA32_EXECUNIT_TP_GP_GP_EBP],
2070                 NULL,
2071         };
2072         static const be_execution_unit_t *_allowed_units_DUMMY[] = {
2073                 &be_machine_execution_units_DUMMY[0],
2074                 NULL,
2075         };
2076         static const be_execution_unit_t **_units_callret[] = {
2077                 _allowed_units_BRANCH,
2078                 NULL
2079         };
2080         static const be_execution_unit_t **_units_other[] = {
2081                 _allowed_units_GP,
2082                 NULL
2083         };
2084         static const be_execution_unit_t **_units_dummy[] = {
2085                 _allowed_units_DUMMY,
2086                 NULL
2087         };
2088         const be_execution_unit_t ***ret;
2089
2090         if (is_ia32_irn(irn)) {
2091                 ret = get_ia32_exec_units(irn);
2092         } else if (is_be_node(irn)) {
2093                 if (be_is_Return(irn)) {
2094                         ret = _units_callret;
2095                 } else if (be_is_Barrier(irn)) {
2096                         ret = _units_dummy;
2097                 } else {
2098                         ret = _units_other;
2099                 }
2100         }
2101         else {
2102                 ret = _units_dummy;
2103         }
2104
2105         return ret;
2106 }
2107
2108 /**
2109  * Return the abstract ia32 machine.
2110  */
2111 static const be_machine_t *ia32_get_machine(const void *self)
2112 {
2113         const ia32_isa_t *isa = self;
2114         return isa->cpu;
2115 }
2116
2117 /**
2118  * Return irp irgs in the desired order.
2119  */
2120 static ir_graph **ia32_get_irg_list(const void *self, ir_graph ***irg_list)
2121 {
2122         (void) self;
2123         (void) irg_list;
2124         return NULL;
2125 }
2126
2127 static void ia32_mark_remat(ir_node *node)
2128 {
2129         if (is_ia32_irn(node)) {
2130                 set_ia32_is_remat(node);
2131         }
2132 }
2133
2134 /**
2135  * Check for Abs or -Abs.
2136  */
2137 static int psi_is_Abs_or_Nabs(ir_node *cmp, ir_node *sel, ir_node *t, ir_node *f)
2138 {
2139         ir_node *l, *r;
2140         pn_Cmp  pnc;
2141
2142         if (cmp == NULL)
2143                 return 0;
2144
2145         /* must be <, <=, >=, > */
2146         pnc = get_Proj_proj(sel);
2147         if (pnc != pn_Cmp_Ge && pnc != pn_Cmp_Gt &&
2148                 pnc != pn_Cmp_Le && pnc != pn_Cmp_Lt)
2149                 return 0;
2150
2151         l = get_Cmp_left(cmp);
2152         r = get_Cmp_right(cmp);
2153
2154         /* must be x cmp 0 */
2155         if ((l != t && l != f) || !is_Const(r) || !is_Const_null(r))
2156                 return 0;
2157
2158         if ((!is_Minus(t) || get_Minus_op(t) != f) &&
2159                 (!is_Minus(f) || get_Minus_op(f) != t))
2160                 return 0;
2161         return 1;
2162 }
2163
2164 /**
2165  * Check for Abs only
2166  */
2167 static int psi_is_Abs(ir_node *cmp, ir_node *sel, ir_node *t, ir_node *f)
2168 {
2169         ir_node *l, *r;
2170         pn_Cmp  pnc;
2171
2172         if (cmp == NULL)
2173                 return 0;
2174
2175         /* must be <, <=, >=, > */
2176         pnc = get_Proj_proj(sel);
2177         if (pnc != pn_Cmp_Ge && pnc != pn_Cmp_Gt &&
2178                 pnc != pn_Cmp_Le && pnc != pn_Cmp_Lt)
2179                 return 0;
2180
2181         l = get_Cmp_left(cmp);
2182         r = get_Cmp_right(cmp);
2183
2184         /* must be x cmp 0 */
2185         if ((l != t && l != f) || !is_Const(r) || !is_Const_null(r))
2186                 return 0;
2187
2188         if ((!is_Minus(t) || get_Minus_op(t) != f) &&
2189                 (!is_Minus(f) || get_Minus_op(f) != t))
2190                 return 0;
2191
2192         if (pnc & pn_Cmp_Gt) {
2193                 /* x >= 0 ? -x : x is NABS */
2194                 if (is_Minus(t))
2195                         return 0;
2196         } else {
2197                 /* x < 0 ? x : -x is NABS */
2198                 if (is_Minus(f))
2199                         return 0;
2200         }
2201         return 1;
2202 }
2203
2204
2205 /**
2206  * Allows or disallows the creation of Mux nodes for the given Phi nodes.
2207  *
2208  * @param sel        A selector of a Cond.
2209  * @param phi_list   List of Phi nodes about to be converted (linked via get_Phi_next() field)
2210  * @param i          First data predecessor involved in if conversion
2211  * @param j          Second data predecessor involved in if conversion
2212  *
2213  * @return 1 if allowed, 0 otherwise
2214  */
2215 static int ia32_is_mux_allowed(ir_node *sel, ir_node *phi_list, int i, int j)
2216 {
2217         ir_node *phi;
2218         ir_node *cmp;
2219         pn_Cmp  pn;
2220         ir_node *cl, *cr;
2221
2222         /* we can't handle Muxs with 64bit compares yet */
2223         if (is_Proj(sel)) {
2224                 cmp = get_Proj_pred(sel);
2225                 if (is_Cmp(cmp)) {
2226                         ir_node *left     = get_Cmp_left(cmp);
2227                         ir_mode *cmp_mode = get_irn_mode(left);
2228                         if (!mode_is_float(cmp_mode) && get_mode_size_bits(cmp_mode) > 32) {
2229                                 /* 64bit Abs IS supported */
2230                                 for (phi = phi_list; phi; phi = get_Phi_next(phi)) {
2231                                         ir_node *t = get_Phi_pred(phi, i);
2232                                         ir_node *f = get_Phi_pred(phi, j);
2233
2234                                         if (! psi_is_Abs(cmp, sel, t, f))
2235                                                 return 0;
2236                                 }
2237                                 return 1;
2238                         }
2239                 } else {
2240                         /* we do not support nodes without Cmp yet */
2241                         return 0;
2242                 }
2243         } else {
2244                 /* we do not support nodes without Cmp yet */
2245                 return 0;
2246         }
2247
2248         pn = get_Proj_proj(sel);
2249         cl = get_Cmp_left(cmp);
2250         cr = get_Cmp_right(cmp);
2251
2252         if (ia32_cg_config.use_cmov) {
2253                 if (ia32_cg_config.use_sse2) {
2254                         /* check the Phi nodes: no 64bit and no floating point cmov */
2255                         for (phi = phi_list; phi; phi = get_Phi_next(phi)) {
2256                                 ir_mode *mode = get_irn_mode(phi);
2257
2258                                 if (mode_is_float(mode)) {
2259                                         /* check for Min, Max */
2260                                         ir_node *t = get_Phi_pred(phi, i);
2261                                         ir_node *f = get_Phi_pred(phi, j);
2262
2263                                         /* SSE2 supports Min & Max */
2264                                         if (pn == pn_Cmp_Lt || pn == pn_Cmp_Le || pn == pn_Cmp_Ge || pn == pn_Cmp_Gt) {
2265                                                 if (cl == t && cr == f) {
2266                                                         /* Mux(a <=/>= b, a, b) => MIN, MAX */
2267                                                         continue;
2268                                                 } else if (cl == f && cr == t) {
2269                                                         /* Mux(a <=/>= b, b, a) => MAX, MIN */
2270                                                         continue;
2271                                                 }
2272                                         }
2273                                         return 0;
2274                                 } else if (get_mode_size_bits(mode) > 32) {
2275                                         /* no 64bit cmov */
2276                                         return 0;
2277                                 }
2278                         }
2279                 } else {
2280                         /* check the Phi nodes: no 64bit and no floating point cmov */
2281                         for (phi = phi_list; phi; phi = get_Phi_next(phi)) {
2282                                 ir_mode *mode = get_irn_mode(phi);
2283
2284                                 if (mode_is_float(mode)) {
2285                                         ir_node *t = get_Phi_pred(phi, i);
2286                                         ir_node *f = get_Phi_pred(phi, j);
2287
2288                                         /* always support Mux(!float, C1, C2) */
2289                                         if (is_Const(t) && is_Const(f) && !mode_is_float(get_irn_mode(cl))) {
2290                                                 switch (be_transformer) {
2291                                                 case TRANSFORMER_DEFAULT:
2292                                                         /* always support Mux(!float, C1, C2) */
2293                                                         continue;
2294 #ifdef FIRM_GRGEN_BE
2295                                                 case TRANSFORMER_PBQP:
2296                                                 case TRANSFORMER_RAND:
2297                                                         /* no support for Mux(*, C1, C2) */
2298                                                         return 0;
2299 #endif
2300                                                 default:
2301                                                         panic("invalid transformer");
2302                                                 }
2303                                         }
2304                                         /* only abs or nabs supported */
2305                                         if (! psi_is_Abs_or_Nabs(cmp, sel, t, f))
2306                                                 return 0;
2307                                 } else if (get_mode_size_bits(mode) > 32)
2308                                         return 0;
2309                         }
2310                 }
2311
2312                 return 1;
2313         } else { /* No Cmov, only some special cases */
2314
2315                 /* Now some supported cases here */
2316                 for (phi = phi_list; phi; phi = get_Phi_next(phi)) {
2317                         ir_mode *mode = get_irn_mode(phi);
2318                         ir_node *t, *f;
2319
2320                         t = get_Phi_pred(phi, i);
2321                         f = get_Phi_pred(phi, j);
2322
2323                         if (mode_is_float(mode)) {
2324                                 /* always support Mux(!float, C1, C2) */
2325                                 if (is_Const(t) && is_Const(f) &&
2326                                                 !mode_is_float(get_irn_mode(cl))) {
2327                                         switch (be_transformer) {
2328                                                 case TRANSFORMER_DEFAULT:
2329                                                         /* always support Mux(!float, C1, C2) */
2330                                                         continue;
2331 #ifdef FIRM_GRGEN_BE
2332                                                 case TRANSFORMER_PBQP:
2333                                                 case TRANSFORMER_RAND:
2334                                                         /* no support for Mux(*, C1, C2) */
2335                                                         return 0;
2336 #endif
2337                                                 default:
2338                                                         panic("invalid transformer");
2339                                         }
2340                                 }
2341                                 /* only abs or nabs supported */
2342                                 if (! psi_is_Abs_or_Nabs(cmp, sel, t, f))
2343                                         return 0;
2344                         } else if (get_mode_size_bits(mode) > 32) {
2345                                 /* no 64bit yet */
2346                                 return 0;
2347                         }
2348
2349                         if (is_Const(t) && is_Const(f)) {
2350                                 if ((is_Const_null(t) && is_Const_one(f)) || (is_Const_one(t) && is_Const_null(f))) {
2351                                         /* always support Mux(x, C1, C2) */
2352                                         continue;
2353                                 }
2354                         } else if (pn == pn_Cmp_Lt || pn == pn_Cmp_Le || pn == pn_Cmp_Ge || pn == pn_Cmp_Gt) {
2355 #if 0
2356                                 if (cl == t && cr == f) {
2357                                         /* Mux(a <=/>= b, a, b) => Min, Max */
2358                                         continue;
2359                                 }
2360                                 if (cl == f && cr == t) {
2361                                         /* Mux(a <=/>= b, b, a) => Max, Min */
2362                                         continue;
2363                                 }
2364 #endif
2365                                 if ((pn & pn_Cmp_Gt) && !mode_is_signed(mode) &&
2366                                     is_Const(f) && is_Const_null(f) && is_Sub(t) &&
2367                                     get_Sub_left(t) == cl && get_Sub_right(t) == cr) {
2368                                         /* Mux(a >=u b, a - b, 0) unsigned Doz */
2369                                         continue;
2370                                 }
2371                                 if ((pn & pn_Cmp_Lt) && !mode_is_signed(mode) &&
2372                                     is_Const(t) && is_Const_null(t) && is_Sub(f) &&
2373                                     get_Sub_left(f) == cl && get_Sub_right(f) == cr) {
2374                                         /* Mux(a <=u b, 0, a - b) unsigned Doz */
2375                                         continue;
2376                                 }
2377                                 if (is_Const(cr) && is_Const_null(cr)) {
2378                                         if (cl == t && is_Minus(f) && get_Minus_op(f) == cl) {
2379                                                 /* Mux(a <=/>= 0 ? a : -a) Nabs/Abs */
2380                                                 continue;
2381                                         } else if (cl == f && is_Minus(t) && get_Minus_op(t) == cl) {
2382                                                 /* Mux(a <=/>= 0 ? -a : a) Abs/Nabs */
2383                                                 continue;
2384                                         }
2385                                 }
2386                         }
2387                         return 0;
2388                 }
2389                 /* all checks passed */
2390                 return 1;
2391         }
2392         return 0;
2393 }
2394
2395 static asm_constraint_flags_t ia32_parse_asm_constraint(const char **c)
2396 {
2397         (void) c;
2398
2399         /* we already added all our simple flags to the flags modifier list in
2400          * init, so this flag we don't know. */
2401         return ASM_CONSTRAINT_FLAG_INVALID;
2402 }
2403
2404 static int ia32_is_valid_clobber(const char *clobber)
2405 {
2406         return ia32_get_clobber_register(clobber) != NULL;
2407 }
2408
2409 /**
2410  * Create the trampoline code.
2411  */
2412 static ir_node *ia32_create_trampoline_fkt(ir_node *block, ir_node *mem, ir_node *trampoline, ir_node *env, ir_node *callee)
2413 {
2414         ir_node  *st, *p = trampoline;
2415         ir_mode *mode    = get_irn_mode(p);
2416
2417         /* mov  ecx,<env> */
2418         st  = new_r_Store(block, mem, p, new_Const_long(mode_Bu, 0xb9), 0);
2419         mem = new_r_Proj(block, st, mode_M, pn_Store_M);
2420         p   = new_r_Add(block, p, new_Const_long(mode_Iu, 1), mode);
2421         st  = new_r_Store(block, mem, p, env, 0);
2422         mem = new_r_Proj(block, st, mode_M, pn_Store_M);
2423         p   = new_r_Add(block, p, new_Const_long(mode_Iu, 4), mode);
2424         /* jmp  <callee> */
2425         st  = new_r_Store(block, mem, p, new_Const_long(mode_Bu, 0xe9), 0);
2426         mem = new_r_Proj(block, st, mode_M, pn_Store_M);
2427         p   = new_r_Add(block, p, new_Const_long(mode_Iu, 1), mode);
2428         st  = new_r_Store(block, mem, p, callee, 0);
2429         mem = new_r_Proj(block, st, mode_M, pn_Store_M);
2430         p   = new_r_Add(block, p, new_Const_long(mode_Iu, 4), mode);
2431
2432         return mem;
2433 }
2434
2435 /**
2436  * Returns the libFirm configuration parameter for this backend.
2437  */
2438 static const backend_params *ia32_get_libfirm_params(void)
2439 {
2440         static const ir_settings_if_conv_t ifconv = {
2441                 4,                    /* maxdepth, doesn't matter for Mux-conversion */
2442                 ia32_is_mux_allowed   /* allows or disallows Mux creation for given selector */
2443         };
2444         static const ir_settings_arch_dep_t ad = {
2445                 1,                   /* also use subs */
2446                 4,                   /* maximum shifts */
2447                 31,                  /* maximum shift amount */
2448                 ia32_evaluate_insn,  /* evaluate the instruction sequence */
2449
2450                 1,  /* allow Mulhs */
2451                 1,  /* allow Mulus */
2452                 32, /* Mulh allowed up to 32 bit */
2453         };
2454         static backend_params p = {
2455                 1,     /* need dword lowering */
2456                 1,     /* support inline assembly */
2457                 NULL,  /* will be set later */
2458                 ia32_create_intrinsic_fkt,
2459                 &intrinsic_env,  /* context for ia32_create_intrinsic_fkt */
2460                 NULL,  /* ifconv info will be set below */
2461                 NULL,  /* float arithmetic mode, will be set below */
2462                 12,    /* size of trampoline code */
2463                 4,     /* alignment of trampoline code */
2464                 ia32_create_trampoline_fkt,
2465                 4      /* alignment of stack parameter */
2466         };
2467
2468         ia32_setup_cg_config();
2469
2470         /* doesn't really belong here, but this is the earliest place the backend
2471          * is called... */
2472         init_asm_constraints();
2473
2474         p.dep_param    = &ad;
2475         p.if_conv_info = &ifconv;
2476         if (! ia32_cg_config.use_sse2)
2477                 p.mode_float_arithmetic = mode_E;
2478         return &p;
2479 }
2480
2481 static const lc_opt_enum_int_items_t gas_items[] = {
2482         { "elf",     GAS_FLAVOUR_ELF },
2483         { "mingw",   GAS_FLAVOUR_MINGW  },
2484         { "yasm",    GAS_FLAVOUR_YASM   },
2485         { "macho",   GAS_FLAVOUR_MACH_O },
2486         { NULL,      0 }
2487 };
2488
2489 static lc_opt_enum_int_var_t gas_var = {
2490         (int*) &be_gas_flavour, gas_items
2491 };
2492
2493 #ifdef FIRM_GRGEN_BE
2494 static const lc_opt_enum_int_items_t transformer_items[] = {
2495         { "default", TRANSFORMER_DEFAULT },
2496         { "pbqp",    TRANSFORMER_PBQP    },
2497         { "random",  TRANSFORMER_RAND    },
2498         { NULL,      0                   }
2499 };
2500
2501 static lc_opt_enum_int_var_t transformer_var = {
2502         (int*)&be_transformer, transformer_items
2503 };
2504 #endif
2505
2506 static const lc_opt_table_entry_t ia32_options[] = {
2507         LC_OPT_ENT_ENUM_INT("gasmode", "set the GAS compatibility mode", &gas_var),
2508 #ifdef FIRM_GRGEN_BE
2509         LC_OPT_ENT_ENUM_INT("transformer", "the transformer used for code selection", &transformer_var),
2510 #endif
2511         LC_OPT_ENT_INT("stackalign", "set power of two stack alignment for calls",
2512                        &ia32_isa_template.arch_env.stack_alignment),
2513         LC_OPT_LAST
2514 };
2515
2516 const arch_isa_if_t ia32_isa_if = {
2517         ia32_init,
2518         ia32_done,
2519         ia32_handle_intrinsics,
2520         ia32_get_n_reg_class,
2521         ia32_get_reg_class,
2522         ia32_get_reg_class_for_mode,
2523         ia32_get_call_abi,
2524         ia32_get_code_generator_if,
2525         ia32_get_list_sched_selector,
2526         ia32_get_ilp_sched_selector,
2527         ia32_get_reg_class_alignment,
2528         ia32_get_libfirm_params,
2529         ia32_get_allowed_execution_units,
2530         ia32_get_machine,
2531         ia32_get_irg_list,
2532         ia32_mark_remat,
2533         ia32_parse_asm_constraint,
2534         ia32_is_valid_clobber
2535 };
2536
2537 void be_init_arch_ia32(void)
2538 {
2539         lc_opt_entry_t *be_grp   = lc_opt_get_grp(firm_opt_get_root(), "be");
2540         lc_opt_entry_t *ia32_grp = lc_opt_get_grp(be_grp, "ia32");
2541
2542         lc_opt_add_table(ia32_grp, ia32_options);
2543         be_register_isa_if("ia32", &ia32_isa_if);
2544
2545         FIRM_DBG_REGISTER(dbg, "firm.be.ia32.cg");
2546
2547         ia32_init_emitter();
2548         ia32_init_finish();
2549         ia32_init_optimize();
2550         ia32_init_transform();
2551         ia32_init_x87();
2552         ia32_init_architecture();
2553 }
2554
2555 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_arch_ia32);