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