reorganize backend headers (kill some _t variants in favor of a be_types.h)
[libfirm] / ir / be / ia32 / bearch_ia32.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       This is the main ia32 firm backend driver.
23  * @author      Christian Wuerdig
24  * @version     $Id$
25  */
26 #include "config.h"
27
28 #include "lc_opts.h"
29 #include "lc_opts_enum.h"
30
31 #include <math.h>
32
33 #include "pseudo_irg.h"
34 #include "irarch.h"
35 #include "irgwalk.h"
36 #include "irprog.h"
37 #include "irprintf.h"
38 #include "iredges_t.h"
39 #include "ircons.h"
40 #include "irflag.h"
41 #include "irgmod.h"
42 #include "irgopt.h"
43 #include "irbitset.h"
44 #include "irgopt.h"
45 #include "pdeq.h"
46 #include "pset.h"
47 #include "debug.h"
48 #include "error.h"
49 #include "xmalloc.h"
50 #include "irtools.h"
51 #include "iroptimize.h"
52 #include "instrument.h"
53
54 #include "../beabi.h"
55 #include "../beirg.h"
56 #include "../benode_t.h"
57 #include "../belower.h"
58 #include "../besched.h"
59 #include "be.h"
60 #include "../be_t.h"
61 #include "../beirgmod.h"
62 #include "../be_dbgout.h"
63 #include "../beblocksched.h"
64 #include "../bemachine.h"
65 #include "../beilpsched.h"
66 #include "../bespillslots.h"
67 #include "../bemodule.h"
68 #include "../begnuas.h"
69 #include "../bestate.h"
70 #include "../beflags.h"
71 #include "../betranshlp.h"
72 #include "../belistsched.h"
73
74 #include "bearch_ia32_t.h"
75
76 #include "ia32_new_nodes.h"
77 #include "gen_ia32_regalloc_if.h"
78 #include "gen_ia32_machine.h"
79 #include "ia32_common_transform.h"
80 #include "ia32_transform.h"
81 #include "ia32_emitter.h"
82 #include "ia32_map_regs.h"
83 #include "ia32_optimize.h"
84 #include "ia32_x87.h"
85 #include "ia32_dbg_stat.h"
86 #include "ia32_finish.h"
87 #include "ia32_util.h"
88 #include "ia32_fpu.h"
89 #include "ia32_architecture.h"
90
91 #ifdef FIRM_GRGEN_BE
92 #include "ia32_pbqp_transform.h"
93
94 transformer_t be_transformer = TRANSFORMER_DEFAULT;
95 #endif
96
97 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
98
99 /* TODO: ugly */
100 static set *cur_reg_set = NULL;
101
102 ir_mode         *mode_fpcw       = NULL;
103 ia32_code_gen_t *ia32_current_cg = NULL;
104
105 /** The current omit-fp state */
106 static unsigned ia32_curr_fp_ommitted  = 0;
107 static ir_type *omit_fp_between_type   = NULL;
108 static ir_type *between_type           = NULL;
109 static ir_entity *old_bp_ent           = NULL;
110 static ir_entity *ret_addr_ent         = NULL;
111 static ir_entity *omit_fp_ret_addr_ent = NULL;
112
113 /**
114  * The environment for the intrinsic mapping.
115  */
116 static ia32_intrinsic_env_t intrinsic_env = {
117         NULL,    /* the isa */
118         NULL,    /* the irg, these entities belong to */
119         NULL,    /* entity for __divdi3 library call */
120         NULL,    /* entity for __moddi3 library call */
121         NULL,    /* entity for __udivdi3 library call */
122         NULL,    /* entity for __umoddi3 library call */
123 };
124
125
126 typedef ir_node *(*create_const_node_func) (dbg_info *dbg, ir_node *block);
127
128 /**
129  * Used to create per-graph unique pseudo nodes.
130  */
131 static inline ir_node *create_const(ia32_code_gen_t *cg, ir_node **place,
132                                     create_const_node_func func,
133                                     const arch_register_t* reg)
134 {
135         ir_node *block, *res;
136
137         if(*place != NULL)
138                 return *place;
139
140         block = get_irg_start_block(cg->irg);
141         res = func(NULL, block);
142         arch_set_irn_register(res, reg);
143         *place = res;
144
145         return res;
146 }
147
148 /* Creates the unique per irg GP NoReg node. */
149 ir_node *ia32_new_NoReg_gp(ia32_code_gen_t *cg) {
150         return create_const(cg, &cg->noreg_gp, new_bd_ia32_NoReg_GP,
151                             &ia32_gp_regs[REG_GP_NOREG]);
152 }
153
154 ir_node *ia32_new_NoReg_vfp(ia32_code_gen_t *cg) {
155         return create_const(cg, &cg->noreg_vfp, new_bd_ia32_NoReg_VFP,
156                             &ia32_vfp_regs[REG_VFP_NOREG]);
157 }
158
159 ir_node *ia32_new_NoReg_xmm(ia32_code_gen_t *cg) {
160         return create_const(cg, &cg->noreg_xmm, new_bd_ia32_NoReg_XMM,
161                             &ia32_xmm_regs[REG_XMM_NOREG]);
162 }
163
164 ir_node *ia32_new_Unknown_gp(ia32_code_gen_t *cg) {
165         return create_const(cg, &cg->unknown_gp, new_bd_ia32_Unknown_GP,
166                             &ia32_gp_regs[REG_GP_UKNWN]);
167 }
168
169 ir_node *ia32_new_Unknown_vfp(ia32_code_gen_t *cg) {
170         return create_const(cg, &cg->unknown_vfp, new_bd_ia32_Unknown_VFP,
171                             &ia32_vfp_regs[REG_VFP_UKNWN]);
172 }
173
174 ir_node *ia32_new_Unknown_xmm(ia32_code_gen_t *cg) {
175         return create_const(cg, &cg->unknown_xmm, new_bd_ia32_Unknown_XMM,
176                             &ia32_xmm_regs[REG_XMM_UKNWN]);
177 }
178
179 ir_node *ia32_new_Fpu_truncate(ia32_code_gen_t *cg) {
180         return create_const(cg, &cg->fpu_trunc_mode, new_bd_ia32_ChangeCW,
181                         &ia32_fp_cw_regs[REG_FPCW]);
182 }
183
184
185 /**
186  * Returns the admissible noreg register node for input register pos of node irn.
187  */
188 static ir_node *ia32_get_admissible_noreg(ia32_code_gen_t *cg, ir_node *irn, int pos)
189 {
190         const arch_register_req_t *req = arch_get_register_req(irn, pos);
191
192         assert(req != NULL && "Missing register requirements");
193         if (req->cls == &ia32_reg_classes[CLASS_ia32_gp])
194                 return ia32_new_NoReg_gp(cg);
195
196         if (ia32_cg_config.use_sse2) {
197                 return ia32_new_NoReg_xmm(cg);
198         } else {
199                 return ia32_new_NoReg_vfp(cg);
200         }
201 }
202
203 /**************************************************
204  *                         _ _              _  __
205  *                        | | |            (_)/ _|
206  *  _ __ ___  __ _    __ _| | | ___   ___   _| |_
207  * | '__/ _ \/ _` |  / _` | | |/ _ \ / __| | |  _|
208  * | | |  __/ (_| | | (_| | | | (_) | (__  | | |
209  * |_|  \___|\__, |  \__,_|_|_|\___/ \___| |_|_|
210  *            __/ |
211  *           |___/
212  **************************************************/
213
214 /**
215  * Return register requirements for an ia32 node.
216  * If the node returns a tuple (mode_T) then the proj's
217  * will be asked for this information.
218  */
219 static const arch_register_req_t *ia32_get_irn_reg_req(const ir_node *node,
220                                                                                                            int pos)
221 {
222         ir_mode *mode = get_irn_mode(node);
223         long    node_pos;
224
225         if (mode == mode_X || is_Block(node)) {
226                 return arch_no_register_req;
227         }
228
229         if (mode == mode_T && pos < 0) {
230                 return arch_no_register_req;
231         }
232
233         node_pos = pos == -1 ? 0 : pos;
234         if (is_Proj(node)) {
235                 if (mode == mode_M || pos >= 0) {
236                         return arch_no_register_req;
237                 }
238
239                 node_pos = (pos == -1) ? get_Proj_proj(node) : pos;
240                 node     = skip_Proj_const(node);
241         }
242
243         if (is_ia32_irn(node)) {
244                 const arch_register_req_t *req;
245                 if (pos >= 0)
246                         req = get_ia32_in_req(node, pos);
247                 else
248                         req = get_ia32_out_req(node, node_pos);
249
250                 assert(req != NULL);
251
252                 return req;
253         }
254
255         /* unknowns should be transformed already */
256         return arch_no_register_req;
257 }
258
259 static arch_irn_class_t ia32_classify(const ir_node *irn) {
260         arch_irn_class_t classification = 0;
261
262         irn = skip_Proj_const(irn);
263
264         if (is_cfop(irn))
265                 classification |= arch_irn_class_branch;
266
267         if (! is_ia32_irn(irn))
268                 return classification;
269
270         if (is_ia32_is_reload(irn))
271                 classification |= arch_irn_class_reload;
272
273         if (is_ia32_is_spill(irn))
274                 classification |= arch_irn_class_spill;
275
276         if (is_ia32_is_remat(irn))
277                 classification |= arch_irn_class_remat;
278
279         return classification;
280 }
281
282 /**
283  * The IA32 ABI callback object.
284  */
285 typedef struct {
286         be_abi_call_flags_bits_t flags;  /**< The call flags. */
287         const arch_env_t *aenv;          /**< The architecture environment. */
288         ir_graph *irg;                   /**< The associated graph. */
289 } ia32_abi_env_t;
290
291 static ir_entity *ia32_get_frame_entity(const ir_node *irn) {
292         return is_ia32_irn(irn) ? get_ia32_frame_ent(irn) : NULL;
293 }
294
295 static void ia32_set_frame_entity(ir_node *irn, ir_entity *ent) {
296         set_ia32_frame_ent(irn, ent);
297 }
298
299 static void ia32_set_frame_offset(ir_node *irn, int bias)
300 {
301         if (get_ia32_frame_ent(irn) == NULL)
302                 return;
303
304         if (is_ia32_Pop(irn) || is_ia32_PopMem(irn)) {
305                 ia32_code_gen_t *cg = ia32_current_cg;
306                 int omit_fp = be_abi_omit_fp(cg->birg->abi);
307                 if (omit_fp) {
308                         /* Pop nodes modify the stack pointer before calculating the
309                          * destination address, so fix this here
310                          */
311                         bias -= 4;
312                 }
313         }
314         add_ia32_am_offs_int(irn, bias);
315 }
316
317 static int ia32_get_sp_bias(const ir_node *node)
318 {
319         if (is_ia32_Call(node))
320                 return -(int)get_ia32_call_attr_const(node)->pop;
321
322         if (is_ia32_Push(node))
323                 return 4;
324
325         if (is_ia32_Pop(node) || is_ia32_PopMem(node))
326                 return -4;
327
328         return 0;
329 }
330
331 /**
332  * Generate the routine prologue.
333  *
334  * @param self       The callback object.
335  * @param mem        A pointer to the mem node. Update this if you define new memory.
336  * @param reg_map    A map mapping all callee_save/ignore/parameter registers to their defining nodes.
337  * @param stack_bias Points to the current stack bias, can be modified if needed.
338  *
339  * @return           The register which shall be used as a stack frame base.
340  *
341  * All nodes which define registers in @p reg_map must keep @p reg_map current.
342  */
343 static const arch_register_t *ia32_abi_prologue(void *self, ir_node **mem, pmap *reg_map, int *stack_bias)
344 {
345         ia32_abi_env_t   *env      = self;
346         ia32_code_gen_t  *cg       = ia32_current_cg;
347         const arch_env_t *arch_env = env->aenv;
348
349         ia32_curr_fp_ommitted = env->flags.try_omit_fp;
350         if (! env->flags.try_omit_fp) {
351                 ir_node  *bl      = get_irg_start_block(env->irg);
352                 ir_node  *curr_sp = be_abi_reg_map_get(reg_map, arch_env->sp);
353                 ir_node  *curr_bp = be_abi_reg_map_get(reg_map, arch_env->bp);
354                 ir_node  *noreg   = ia32_new_NoReg_gp(cg);
355                 ir_node  *push;
356
357                 /* mark bp register as ignore */
358                 be_set_constr_single_reg_out(get_Proj_pred(curr_bp),
359                                 get_Proj_proj(curr_bp), arch_env->bp, arch_register_req_type_ignore);
360
361                 /* push ebp */
362                 push    = new_bd_ia32_Push(NULL, bl, noreg, noreg, *mem, curr_bp, curr_sp);
363                 curr_sp = new_r_Proj(bl, push, get_irn_mode(curr_sp), pn_ia32_Push_stack);
364                 *mem    = new_r_Proj(bl, push, mode_M, pn_ia32_Push_M);
365
366                 /* the push must have SP out register */
367                 arch_set_irn_register(curr_sp, arch_env->sp);
368
369                 /* this modifies the stack bias, because we pushed 32bit */
370                 *stack_bias -= 4;
371
372                 /* move esp to ebp */
373                 curr_bp = be_new_Copy(arch_env->bp->reg_class, bl, curr_sp);
374                 be_set_constr_single_reg_out(curr_bp, 0, arch_env->bp,
375                                              arch_register_req_type_ignore);
376
377                 /* beware: the copy must be done before any other sp use */
378                 curr_sp = be_new_CopyKeep_single(arch_env->sp->reg_class, bl, curr_sp, curr_bp, get_irn_mode(curr_sp));
379                 be_set_constr_single_reg_out(curr_sp, 0, arch_env->sp,
380                                                      arch_register_req_type_produces_sp);
381
382                 be_abi_reg_map_set(reg_map, arch_env->sp, curr_sp);
383                 be_abi_reg_map_set(reg_map, arch_env->bp, curr_bp);
384
385                 return arch_env->bp;
386         }
387
388         return arch_env->sp;
389 }
390
391 /**
392  * Generate the routine epilogue.
393  * @param self    The callback object.
394  * @param bl      The block for the epilog
395  * @param mem     A pointer to the mem node. Update this if you define new memory.
396  * @param reg_map A map mapping all callee_save/ignore/parameter registers to their defining nodes.
397  * @return        The register which shall be used as a stack frame base.
398  *
399  * All nodes which define registers in @p reg_map must keep @p reg_map current.
400  */
401 static void ia32_abi_epilogue(void *self, ir_node *bl, ir_node **mem, pmap *reg_map)
402 {
403         ia32_abi_env_t   *env      = self;
404         const arch_env_t *arch_env = env->aenv;
405         ir_node          *curr_sp  = be_abi_reg_map_get(reg_map, arch_env->sp);
406         ir_node          *curr_bp  = be_abi_reg_map_get(reg_map, arch_env->bp);
407
408         if (env->flags.try_omit_fp) {
409                 /* simply remove the stack frame here */
410                 curr_sp = be_new_IncSP(arch_env->sp, bl, curr_sp, BE_STACK_FRAME_SIZE_SHRINK, 0);
411         } else {
412                 ir_mode *mode_bp = arch_env->bp->reg_class->mode;
413
414                 if (ia32_cg_config.use_leave) {
415                         ir_node *leave;
416
417                         /* leave */
418                         leave   = new_bd_ia32_Leave(NULL, bl, curr_bp);
419                         curr_bp = new_r_Proj(bl, leave, mode_bp, pn_ia32_Leave_frame);
420                         curr_sp = new_r_Proj(bl, leave, get_irn_mode(curr_sp), pn_ia32_Leave_stack);
421                 } else {
422                         ir_node *pop;
423
424                         /* the old SP is not needed anymore (kill the proj) */
425                         assert(is_Proj(curr_sp));
426                         kill_node(curr_sp);
427
428                         /* copy ebp to esp */
429                         curr_sp = be_new_Copy(&ia32_reg_classes[CLASS_ia32_gp], bl, curr_bp);
430                         arch_set_irn_register(curr_sp, arch_env->sp);
431                         be_set_constr_single_reg_out(curr_sp, 0, arch_env->sp,
432                                                          arch_register_req_type_ignore);
433
434                         /* pop ebp */
435                         pop     = new_bd_ia32_PopEbp(NULL, bl, *mem, curr_sp);
436                         curr_bp = new_r_Proj(bl, pop, mode_bp, pn_ia32_Pop_res);
437                         curr_sp = new_r_Proj(bl, pop, get_irn_mode(curr_sp), pn_ia32_Pop_stack);
438
439                         *mem = new_r_Proj(bl, pop, mode_M, pn_ia32_Pop_M);
440                 }
441                 arch_set_irn_register(curr_sp, arch_env->sp);
442                 arch_set_irn_register(curr_bp, arch_env->bp);
443         }
444
445         be_abi_reg_map_set(reg_map, arch_env->sp, curr_sp);
446         be_abi_reg_map_set(reg_map, arch_env->bp, curr_bp);
447 }
448
449 /**
450  * Initialize the callback object.
451  * @param call The call object.
452  * @param aenv The architecture environment.
453  * @param irg  The graph with the method.
454  * @return     Some pointer. This pointer is passed to all other callback functions as self object.
455  */
456 static void *ia32_abi_init(const be_abi_call_t *call, const arch_env_t *aenv, ir_graph *irg)
457 {
458         ia32_abi_env_t      *env = XMALLOC(ia32_abi_env_t);
459         be_abi_call_flags_t  fl  = be_abi_call_get_flags(call);
460         env->flags = fl.bits;
461         env->irg   = irg;
462         env->aenv  = aenv;
463         return env;
464 }
465
466 /**
467  * Destroy the callback object.
468  * @param self The callback object.
469  */
470 static void ia32_abi_done(void *self) {
471         free(self);
472 }
473
474 /**
475  * Build the between type and entities if not already build.
476  */
477 static void ia32_build_between_type(void) {
478 #define IDENT(s) new_id_from_chars(s, sizeof(s)-1)
479         if (! between_type) {
480                 ir_type *old_bp_type   = new_type_primitive(IDENT("bp"), mode_Iu);
481                 ir_type *ret_addr_type = new_type_primitive(IDENT("return_addr"), mode_Iu);
482
483                 between_type           = new_type_struct(IDENT("ia32_between_type"));
484                 old_bp_ent             = new_entity(between_type, IDENT("old_bp"), old_bp_type);
485                 ret_addr_ent           = new_entity(between_type, IDENT("ret_addr"), ret_addr_type);
486
487                 set_entity_offset(old_bp_ent, 0);
488                 set_entity_offset(ret_addr_ent, get_type_size_bytes(old_bp_type));
489                 set_type_size_bytes(between_type, get_type_size_bytes(old_bp_type) + get_type_size_bytes(ret_addr_type));
490                 set_type_state(between_type, layout_fixed);
491
492                 omit_fp_between_type = new_type_struct(IDENT("ia32_between_type_omit_fp"));
493                 omit_fp_ret_addr_ent = new_entity(omit_fp_between_type, IDENT("ret_addr"), ret_addr_type);
494
495                 set_entity_offset(omit_fp_ret_addr_ent, 0);
496                 set_type_size_bytes(omit_fp_between_type, get_type_size_bytes(ret_addr_type));
497                 set_type_state(omit_fp_between_type, layout_fixed);
498         }
499 #undef IDENT
500 }
501
502 /**
503  * Produces the type which sits between the stack args and the locals on the stack.
504  * it will contain the return address and space to store the old base pointer.
505  * @return The Firm type modeling the ABI between type.
506  */
507 static ir_type *ia32_abi_get_between_type(void *self)
508 {
509         ia32_abi_env_t *env = self;
510
511         ia32_build_between_type();
512         return env->flags.try_omit_fp ? omit_fp_between_type : between_type;
513 }
514
515 /**
516  * Return the stack entity that contains the return address.
517  */
518 ir_entity *ia32_get_return_address_entity(void) {
519         ia32_build_between_type();
520         return ia32_curr_fp_ommitted ? omit_fp_ret_addr_ent : ret_addr_ent;
521 }
522
523 /**
524  * Return the stack entity that contains the frame address.
525  */
526 ir_entity *ia32_get_frame_address_entity(void) {
527         ia32_build_between_type();
528         return ia32_curr_fp_ommitted ? NULL : old_bp_ent;
529 }
530
531 /**
532  * Get the estimated cycle count for @p irn.
533  *
534  * @param self The this pointer.
535  * @param irn  The node.
536  *
537  * @return     The estimated cycle count for this operation
538  */
539 static int ia32_get_op_estimated_cost(const ir_node *irn)
540 {
541         int            cost;
542         ia32_op_type_t op_tp;
543
544         if (is_Proj(irn))
545                 return 0;
546         if (!is_ia32_irn(irn))
547                 return 0;
548
549         assert(is_ia32_irn(irn));
550
551         cost  = get_ia32_latency(irn);
552         op_tp = get_ia32_op_type(irn);
553
554         if (is_ia32_CopyB(irn)) {
555                 cost = 250;
556         }
557         else if (is_ia32_CopyB_i(irn)) {
558                 int size = get_ia32_copyb_size(irn);
559                 cost     = 20 + (int)ceil((4/3) * size);
560         }
561         /* in case of address mode operations add additional cycles */
562         else if (op_tp == ia32_AddrModeD || op_tp == ia32_AddrModeS) {
563                 /*
564                         In case of stack access and access to fixed addresses add 5 cycles
565                         (we assume they are in cache), other memory operations cost 20
566                         cycles.
567                 */
568                 if (is_ia32_use_frame(irn) || (
569                         is_ia32_NoReg_GP(get_irn_n(irn, n_ia32_base)) &&
570                         is_ia32_NoReg_GP(get_irn_n(irn, n_ia32_index))
571                     )) {
572                         cost += 5;
573                 } else {
574                         cost += 20;
575                 }
576         }
577
578         return cost;
579 }
580
581 /**
582  * Returns the inverse operation if @p irn, recalculating the argument at position @p i.
583  *
584  * @param irn       The original operation
585  * @param i         Index of the argument we want the inverse operation to yield
586  * @param inverse   struct to be filled with the resulting inverse op
587  * @param obstack   The obstack to use for allocation of the returned nodes array
588  * @return          The inverse operation or NULL if operation invertible
589  */
590 static arch_inverse_t *ia32_get_inverse(const ir_node *irn, int i, arch_inverse_t *inverse, struct obstack *obst) {
591         ir_mode  *mode;
592         ir_mode  *irn_mode;
593         ir_node  *block, *noreg, *nomem;
594         dbg_info *dbg;
595
596         /* we cannot invert non-ia32 irns */
597         if (! is_ia32_irn(irn))
598                 return NULL;
599
600         /* operand must always be a real operand (not base, index or mem) */
601         if (i != n_ia32_binary_left && i != n_ia32_binary_right)
602                 return NULL;
603
604         /* we don't invert address mode operations */
605         if (get_ia32_op_type(irn) != ia32_Normal)
606                 return NULL;
607
608         /* TODO: adjust for new immediates... */
609         ir_fprintf(stderr, "TODO: fix get_inverse for new immediates (%+F)\n",
610                    irn);
611         return NULL;
612
613         block    = get_nodes_block(irn);
614         mode     = get_irn_mode(irn);
615         irn_mode = get_irn_mode(irn);
616         noreg    = get_irn_n(irn, 0);
617         nomem    = new_NoMem();
618         dbg      = get_irn_dbg_info(irn);
619
620         /* initialize structure */
621         inverse->nodes = obstack_alloc(obst, 2 * sizeof(inverse->nodes[0]));
622         inverse->costs = 0;
623         inverse->n     = 1;
624
625         switch (get_ia32_irn_opcode(irn)) {
626                 case iro_ia32_Add:
627 #if 0
628                         if (get_ia32_immop_type(irn) == ia32_ImmConst) {
629                                 /* we have an add with a const here */
630                                 /* invers == add with negated const */
631                                 inverse->nodes[0] = new_bd_ia32_Add(dbg, block, noreg, noreg, nomem, get_irn_n(irn, i), noreg);
632                                 inverse->costs   += 1;
633                                 copy_ia32_Immop_attr(inverse->nodes[0], (ir_node *)irn);
634                                 set_ia32_Immop_tarval(inverse->nodes[0], tarval_neg(get_ia32_Immop_tarval(irn)));
635                                 set_ia32_commutative(inverse->nodes[0]);
636                         }
637                         else if (get_ia32_immop_type(irn) == ia32_ImmSymConst) {
638                                 /* we have an add with a symconst here */
639                                 /* invers == sub with const */
640                                 inverse->nodes[0] = new_bd_ia32_Sub(dbg, block, noreg, noreg, nomem, get_irn_n(irn, i), noreg);
641                                 inverse->costs   += 2;
642                                 copy_ia32_Immop_attr(inverse->nodes[0], (ir_node *)irn);
643                         }
644                         else {
645                                 /* normal add: inverse == sub */
646                                 inverse->nodes[0] = new_bd_ia32_Sub(dbg, block, noreg, noreg, nomem, (ir_node*) irn, get_irn_n(irn, i ^ 1));
647                                 inverse->costs   += 2;
648                         }
649 #endif
650                         break;
651                 case iro_ia32_Sub:
652 #if 0
653                         if (get_ia32_immop_type(irn) != ia32_ImmNone) {
654                                 /* we have a sub with a const/symconst here */
655                                 /* invers == add with this const */
656                                 inverse->nodes[0] = new_bd_ia32_Add(dbg, block, noreg, noreg, nomem, get_irn_n(irn, i), noreg);
657                                 inverse->costs   += (get_ia32_immop_type(irn) == ia32_ImmSymConst) ? 5 : 1;
658                                 copy_ia32_Immop_attr(inverse->nodes[0], (ir_node *)irn);
659                         }
660                         else {
661                                 /* normal sub */
662                                 if (i == n_ia32_binary_left) {
663                                         inverse->nodes[0] = new_bd_ia32_Add(dbg, block, noreg, noreg, nomem, (ir_node*) irn, get_irn_n(irn, 3));
664                                 }
665                                 else {
666                                         inverse->nodes[0] = new_bd_ia32_Sub(dbg, block, noreg, noreg, nomem, get_irn_n(irn, n_ia32_binary_left), (ir_node*) irn);
667                                 }
668                                 inverse->costs += 1;
669                         }
670 #endif
671                         break;
672                 case iro_ia32_Xor:
673 #if 0
674                         if (get_ia32_immop_type(irn) != ia32_ImmNone) {
675                                 /* xor with const: inverse = xor */
676                                 inverse->nodes[0] = new_bd_ia32_Xor(dbg, block, noreg, noreg, nomem, get_irn_n(irn, i), noreg);
677                                 inverse->costs   += (get_ia32_immop_type(irn) == ia32_ImmSymConst) ? 5 : 1;
678                                 copy_ia32_Immop_attr(inverse->nodes[0], (ir_node *)irn);
679                         }
680                         else {
681                                 /* normal xor */
682                                 inverse->nodes[0] = new_bd_ia32_Xor(dbg, block, noreg, noreg, nomem, (ir_node *) irn, get_irn_n(irn, i));
683                                 inverse->costs   += 1;
684                         }
685 #endif
686                         break;
687                 case iro_ia32_Not: {
688                         inverse->nodes[0] = new_bd_ia32_Not(dbg, block, (ir_node*) irn);
689                         inverse->costs   += 1;
690                         break;
691                 }
692                 case iro_ia32_Neg: {
693                         inverse->nodes[0] = new_bd_ia32_Neg(dbg, block, (ir_node*) irn);
694                         inverse->costs   += 1;
695                         break;
696                 }
697                 default:
698                         /* inverse operation not supported */
699                         return NULL;
700         }
701
702         return inverse;
703 }
704
705 static ir_mode *get_spill_mode_mode(const ir_mode *mode)
706 {
707         if(mode_is_float(mode))
708                 return mode_D;
709
710         return mode_Iu;
711 }
712
713 /**
714  * Get the mode that should be used for spilling value node
715  */
716 static ir_mode *get_spill_mode(const ir_node *node)
717 {
718         ir_mode *mode = get_irn_mode(node);
719         return get_spill_mode_mode(mode);
720 }
721
722 /**
723  * Checks whether an addressmode reload for a node with mode mode is compatible
724  * with a spillslot of mode spill_mode
725  */
726 static int ia32_is_spillmode_compatible(const ir_mode *mode, const ir_mode *spillmode)
727 {
728         return !mode_is_float(mode) || mode == spillmode;
729 }
730
731 /**
732  * Check if irn can load its operand at position i from memory (source addressmode).
733  * @param irn    The irn to be checked
734  * @param i      The operands position
735  * @return Non-Zero if operand can be loaded
736  */
737 static int ia32_possible_memory_operand(const ir_node *irn, unsigned int i)
738 {
739         ir_node       *op        = get_irn_n(irn, i);
740         const ir_mode *mode      = get_irn_mode(op);
741         const ir_mode *spillmode = get_spill_mode(op);
742
743         if (!is_ia32_irn(irn)                              ||  /* must be an ia32 irn */
744             get_ia32_op_type(irn) != ia32_Normal           ||  /* must not already be a addressmode irn */
745             !ia32_is_spillmode_compatible(mode, spillmode) ||
746             is_ia32_use_frame(irn))                            /* must not already use frame */
747                 return 0;
748
749         switch (get_ia32_am_support(irn)) {
750                 case ia32_am_none:
751                         return 0;
752
753                 case ia32_am_unary:
754                         if (i != n_ia32_unary_op)
755                                 return 0;
756                         break;
757
758                 case ia32_am_binary:
759                         switch (i) {
760                                 case n_ia32_binary_left: {
761                                         const arch_register_req_t *req;
762                                         if (!is_ia32_commutative(irn))
763                                                 return 0;
764
765                                         /* we can't swap left/right for limited registers
766                                          * (As this (currently) breaks constraint handling copies)
767                                          */
768                                         req = get_ia32_in_req(irn, n_ia32_binary_left);
769                                         if (req->type & arch_register_req_type_limited)
770                                                 return 0;
771                                         break;
772                                 }
773
774                                 case n_ia32_binary_right:
775                                         break;
776
777                                 default:
778                                         return 0;
779                         }
780                         break;
781
782                 default:
783                         panic("Unknown AM type");
784         }
785
786         /* HACK: must not already use "real" memory.
787          * This can happen for Call and Div */
788         if (!is_NoMem(get_irn_n(irn, n_ia32_mem)))
789                 return 0;
790
791         return 1;
792 }
793
794 static void ia32_perform_memory_operand(ir_node *irn, ir_node *spill,
795                                         unsigned int i)
796 {
797         ir_mode *load_mode;
798         ir_mode *dest_op_mode;
799
800         assert(ia32_possible_memory_operand(irn, i) && "Cannot perform memory operand change");
801
802         set_ia32_op_type(irn, ia32_AddrModeS);
803
804         load_mode    = get_irn_mode(get_irn_n(irn, i));
805         dest_op_mode = get_ia32_ls_mode(irn);
806         if (get_mode_size_bits(load_mode) <= get_mode_size_bits(dest_op_mode)) {
807                 set_ia32_ls_mode(irn, load_mode);
808         }
809         set_ia32_use_frame(irn);
810         set_ia32_need_stackent(irn);
811
812         if (i == n_ia32_binary_left                    &&
813             get_ia32_am_support(irn) == ia32_am_binary &&
814             /* immediates are only allowed on the right side */
815             !is_ia32_Immediate(get_irn_n(irn, n_ia32_binary_right))) {
816                 ia32_swap_left_right(irn);
817                 i = n_ia32_binary_right;
818         }
819
820         assert(is_NoMem(get_irn_n(irn, n_ia32_mem)));
821
822         set_irn_n(irn, n_ia32_base, get_irg_frame(get_irn_irg(irn)));
823         set_irn_n(irn, n_ia32_mem,  spill);
824         set_irn_n(irn, i,           ia32_get_admissible_noreg(ia32_current_cg, irn, i));
825         set_ia32_is_reload(irn);
826 }
827
828 static const be_abi_callbacks_t ia32_abi_callbacks = {
829         ia32_abi_init,
830         ia32_abi_done,
831         ia32_abi_get_between_type,
832         ia32_abi_prologue,
833         ia32_abi_epilogue
834 };
835
836 /* fill register allocator interface */
837
838 static const arch_irn_ops_t ia32_irn_ops = {
839         ia32_get_irn_reg_req,
840         ia32_classify,
841         ia32_get_frame_entity,
842         ia32_set_frame_entity,
843         ia32_set_frame_offset,
844         ia32_get_sp_bias,
845         ia32_get_inverse,
846         ia32_get_op_estimated_cost,
847         ia32_possible_memory_operand,
848         ia32_perform_memory_operand,
849 };
850
851 /**************************************************
852  *                _                         _  __
853  *               | |                       (_)/ _|
854  *   ___ ___   __| | ___  __ _  ___ _ __    _| |_
855  *  / __/ _ \ / _` |/ _ \/ _` |/ _ \ '_ \  | |  _|
856  * | (_| (_) | (_| |  __/ (_| |  __/ | | | | | |
857  *  \___\___/ \__,_|\___|\__, |\___|_| |_| |_|_|
858  *                        __/ |
859  *                       |___/
860  **************************************************/
861
862 static ir_entity *mcount = NULL;
863
864 #define ID(s) new_id_from_chars(s, sizeof(s) - 1)
865
866 static void ia32_before_abi(void *self) {
867         lower_mode_b_config_t lower_mode_b_config = {
868                 mode_Iu,  /* lowered mode */
869                 mode_Bu,  /* preferred mode for set */
870                 0,        /* don't lower direct compares */
871         };
872         ia32_code_gen_t *cg = self;
873
874         ir_lower_mode_b(cg->irg, &lower_mode_b_config);
875         if (cg->dump)
876                 be_dump(cg->irg, "-lower_modeb", dump_ir_block_graph_sched);
877         if (cg->gprof) {
878                 if (mcount == NULL) {
879                         ir_type *tp = new_type_method(ID("FKT.mcount"), 0, 0);
880                         mcount = new_entity(get_glob_type(), ID("mcount"), tp);
881                         /* FIXME: enter the right ld_ident here */
882                         set_entity_ld_ident(mcount, get_entity_ident(mcount));
883                         set_entity_visibility(mcount, visibility_external_allocated);
884                 }
885                 instrument_initcall(cg->irg, mcount);
886         }
887 }
888
889 /**
890  * Transforms the standard firm graph into
891  * an ia32 firm graph
892  */
893 static void ia32_prepare_graph(void *self)
894 {
895         ia32_code_gen_t *cg  = self;
896         ir_graph        *irg = cg->irg;
897
898         /* do local optimizations */
899         optimize_graph_df(irg);
900
901         /* we have to do cfopt+remove_critical_edges as we can't have Bad-blocks
902          * or critical edges in the backend */
903         optimize_cf(irg);
904         remove_critical_cf_edges(irg);
905
906         /* TODO: we often have dead code reachable through out-edges here. So for
907          * now we rebuild edges (as we need correct user count for code selection)
908          */
909 #if 1
910         edges_deactivate(cg->irg);
911         edges_activate(cg->irg);
912 #endif
913
914         if (cg->dump)
915                 be_dump(cg->irg, "-pre_transform", dump_ir_block_graph_sched);
916
917         switch (be_transformer) {
918         case TRANSFORMER_DEFAULT:
919                 /* transform remaining nodes into assembler instructions */
920                 ia32_transform_graph(cg);
921                 break;
922
923 #ifdef FIRM_GRGEN_BE
924         case TRANSFORMER_PBQP:
925         case TRANSFORMER_RAND:
926                 /* transform nodes into assembler instructions by PBQP magic */
927                 ia32_transform_graph_by_pbqp(cg);
928                 break;
929 #endif
930
931         default:
932                 panic("invalid transformer");
933         }
934
935         /* do local optimizations (mainly CSE) */
936         optimize_graph_df(cg->irg);
937
938         if (cg->dump)
939                 be_dump(cg->irg, "-transformed", dump_ir_block_graph_sched);
940
941         /* optimize address mode */
942         ia32_optimize_graph(cg);
943
944         /* do code placement, to optimize the position of constants */
945         place_code(cg->irg);
946
947         if (cg->dump)
948                 be_dump(cg->irg, "-place", dump_ir_block_graph_sched);
949 }
950
951 ir_node *turn_back_am(ir_node *node)
952 {
953         dbg_info *dbgi  = get_irn_dbg_info(node);
954         ir_node  *block = get_nodes_block(node);
955         ir_node  *base  = get_irn_n(node, n_ia32_base);
956         ir_node  *index = get_irn_n(node, n_ia32_index);
957         ir_node  *mem   = get_irn_n(node, n_ia32_mem);
958         ir_node  *noreg;
959
960         ir_node  *load     = new_bd_ia32_Load(dbgi, block, base, index, mem);
961         ir_node  *load_res = new_rd_Proj(dbgi, block, load, mode_Iu, pn_ia32_Load_res);
962
963         ia32_copy_am_attrs(load, node);
964         if (is_ia32_is_reload(node))
965                 set_ia32_is_reload(load);
966         set_irn_n(node, n_ia32_mem, new_NoMem());
967
968         switch (get_ia32_am_support(node)) {
969                 case ia32_am_unary:
970                         set_irn_n(node, n_ia32_unary_op, load_res);
971                         break;
972
973                 case ia32_am_binary:
974                         if (is_ia32_Immediate(get_irn_n(node, n_ia32_binary_right))) {
975                                 set_irn_n(node, n_ia32_binary_left, load_res);
976                         } else {
977                                 set_irn_n(node, n_ia32_binary_right, load_res);
978                         }
979                         break;
980
981                 default:
982                         panic("Unknown AM type");
983         }
984         noreg = ia32_new_NoReg_gp(ia32_current_cg);
985         set_irn_n(node, n_ia32_base,  noreg);
986         set_irn_n(node, n_ia32_index, noreg);
987         set_ia32_am_offs_int(node, 0);
988         set_ia32_am_sc(node, NULL);
989         set_ia32_am_scale(node, 0);
990         clear_ia32_am_sc_sign(node);
991
992         /* rewire mem-proj */
993         if (get_irn_mode(node) == mode_T) {
994                 const ir_edge_t *edge;
995                 foreach_out_edge(node, edge) {
996                         ir_node *out = get_edge_src_irn(edge);
997                         if (get_irn_mode(out) == mode_M) {
998                                 set_Proj_pred(out, load);
999                                 set_Proj_proj(out, pn_ia32_Load_M);
1000                                 break;
1001                         }
1002                 }
1003         }
1004
1005         set_ia32_op_type(node, ia32_Normal);
1006         if (sched_is_scheduled(node))
1007                 sched_add_before(node, load);
1008
1009         return load_res;
1010 }
1011
1012 static ir_node *flags_remat(ir_node *node, ir_node *after)
1013 {
1014         /* we should turn back source address mode when rematerializing nodes */
1015         ia32_op_type_t type;
1016         ir_node        *block;
1017         ir_node        *copy;
1018
1019         if (is_Block(after)) {
1020                 block = after;
1021         } else {
1022                 block = get_nodes_block(after);
1023         }
1024
1025         type = get_ia32_op_type(node);
1026         switch (type) {
1027                 case ia32_AddrModeS:
1028                         turn_back_am(node);
1029                         break;
1030
1031                 case ia32_AddrModeD:
1032                         /* TODO implement this later... */
1033                         panic("found DestAM with flag user %+F this should not happen", node);
1034                         break;
1035
1036                 default: assert(type == ia32_Normal); break;
1037         }
1038
1039         copy = exact_copy(node);
1040         set_nodes_block(copy, block);
1041         sched_add_after(after, copy);
1042
1043         return copy;
1044 }
1045
1046 /**
1047  * Called before the register allocator.
1048  */
1049 static void ia32_before_ra(void *self) {
1050         ia32_code_gen_t *cg = self;
1051
1052         /* setup fpu rounding modes */
1053         ia32_setup_fpu_mode(cg);
1054
1055         /* fixup flags */
1056         be_sched_fix_flags(cg->birg, &ia32_reg_classes[CLASS_ia32_flags],
1057                            &flags_remat);
1058
1059         ia32_add_missing_keeps(cg);
1060 }
1061
1062
1063 /**
1064  * Transforms a be_Reload into a ia32 Load.
1065  */
1066 static void transform_to_Load(ia32_code_gen_t *cg, ir_node *node) {
1067         ir_graph *irg        = get_irn_irg(node);
1068         dbg_info *dbg        = get_irn_dbg_info(node);
1069         ir_node *block       = get_nodes_block(node);
1070         ir_entity *ent       = be_get_frame_entity(node);
1071         ir_mode *mode        = get_irn_mode(node);
1072         ir_mode *spillmode   = get_spill_mode(node);
1073         ir_node *noreg       = ia32_new_NoReg_gp(cg);
1074         ir_node *sched_point = NULL;
1075         ir_node *ptr         = get_irg_frame(irg);
1076         ir_node *mem         = get_irn_n(node, be_pos_Reload_mem);
1077         ir_node *new_op, *proj;
1078         const arch_register_t *reg;
1079
1080         if (sched_is_scheduled(node)) {
1081                 sched_point = sched_prev(node);
1082         }
1083
1084         if (mode_is_float(spillmode)) {
1085                 if (ia32_cg_config.use_sse2)
1086                         new_op = new_bd_ia32_xLoad(dbg, block, ptr, noreg, mem, spillmode);
1087                 else
1088                         new_op = new_bd_ia32_vfld(dbg, block, ptr, noreg, mem, spillmode);
1089         }
1090         else if (get_mode_size_bits(spillmode) == 128) {
1091                 /* Reload 128 bit SSE registers */
1092                 new_op = new_bd_ia32_xxLoad(dbg, block, ptr, noreg, mem);
1093         }
1094         else
1095                 new_op = new_bd_ia32_Load(dbg, block, ptr, noreg, mem);
1096
1097         set_ia32_op_type(new_op, ia32_AddrModeS);
1098         set_ia32_ls_mode(new_op, spillmode);
1099         set_ia32_frame_ent(new_op, ent);
1100         set_ia32_use_frame(new_op);
1101         set_ia32_is_reload(new_op);
1102
1103         DBG_OPT_RELOAD2LD(node, new_op);
1104
1105         proj = new_rd_Proj(dbg, block, new_op, mode, pn_ia32_Load_res);
1106
1107         if (sched_point) {
1108                 sched_add_after(sched_point, new_op);
1109                 sched_remove(node);
1110         }
1111
1112         /* copy the register from the old node to the new Load */
1113         reg = arch_get_irn_register(node);
1114         arch_set_irn_register(proj, reg);
1115
1116         SET_IA32_ORIG_NODE(new_op, node);
1117
1118         exchange(node, proj);
1119 }
1120
1121 /**
1122  * Transforms a be_Spill node into a ia32 Store.
1123  */
1124 static void transform_to_Store(ia32_code_gen_t *cg, ir_node *node) {
1125         ir_graph *irg  = get_irn_irg(node);
1126         dbg_info *dbg  = get_irn_dbg_info(node);
1127         ir_node *block = get_nodes_block(node);
1128         ir_entity *ent = be_get_frame_entity(node);
1129         const ir_node *spillval = get_irn_n(node, be_pos_Spill_val);
1130         ir_mode *mode  = get_spill_mode(spillval);
1131         ir_node *noreg = ia32_new_NoReg_gp(cg);
1132         ir_node *nomem = new_NoMem();
1133         ir_node *ptr   = get_irg_frame(irg);
1134         ir_node *val   = get_irn_n(node, be_pos_Spill_val);
1135         ir_node *store;
1136         ir_node *sched_point = NULL;
1137
1138         if (sched_is_scheduled(node)) {
1139                 sched_point = sched_prev(node);
1140         }
1141
1142         /* No need to spill unknown values... */
1143         if(is_ia32_Unknown_GP(val) ||
1144                 is_ia32_Unknown_VFP(val) ||
1145                 is_ia32_Unknown_XMM(val)) {
1146                 store = nomem;
1147                 if(sched_point)
1148                         sched_remove(node);
1149
1150                 exchange(node, store);
1151                 return;
1152         }
1153
1154         if (mode_is_float(mode)) {
1155                 if (ia32_cg_config.use_sse2)
1156                         store = new_bd_ia32_xStore(dbg, block, ptr, noreg, nomem, val);
1157                 else
1158                         store = new_bd_ia32_vfst(dbg, block, ptr, noreg, nomem, val, mode);
1159         } else if (get_mode_size_bits(mode) == 128) {
1160                 /* Spill 128 bit SSE registers */
1161                 store = new_bd_ia32_xxStore(dbg, block, ptr, noreg, nomem, val);
1162         } else if (get_mode_size_bits(mode) == 8) {
1163                 store = new_bd_ia32_Store8Bit(dbg, block, ptr, noreg, nomem, val);
1164         } else {
1165                 store = new_bd_ia32_Store(dbg, block, ptr, noreg, nomem, val);
1166         }
1167
1168         set_ia32_op_type(store, ia32_AddrModeD);
1169         set_ia32_ls_mode(store, mode);
1170         set_ia32_frame_ent(store, ent);
1171         set_ia32_use_frame(store);
1172         set_ia32_is_spill(store);
1173         SET_IA32_ORIG_NODE(store, node);
1174         DBG_OPT_SPILL2ST(node, store);
1175
1176         if (sched_point) {
1177                 sched_add_after(sched_point, store);
1178                 sched_remove(node);
1179         }
1180
1181         exchange(node, store);
1182 }
1183
1184 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) {
1185         dbg_info *dbg = get_irn_dbg_info(node);
1186         ir_node *block = get_nodes_block(node);
1187         ir_node *noreg = ia32_new_NoReg_gp(cg);
1188         ir_graph *irg = get_irn_irg(node);
1189         ir_node *frame = get_irg_frame(irg);
1190
1191         ir_node *push = new_bd_ia32_Push(dbg, block, frame, noreg, mem, noreg, sp);
1192
1193         set_ia32_frame_ent(push, ent);
1194         set_ia32_use_frame(push);
1195         set_ia32_op_type(push, ia32_AddrModeS);
1196         set_ia32_ls_mode(push, mode_Is);
1197         set_ia32_is_spill(push);
1198
1199         sched_add_before(schedpoint, push);
1200         return push;
1201 }
1202
1203 static ir_node *create_pop(ia32_code_gen_t *cg, ir_node *node, ir_node *schedpoint, ir_node *sp, ir_entity *ent) {
1204         dbg_info *dbg = get_irn_dbg_info(node);
1205         ir_node *block = get_nodes_block(node);
1206         ir_node *noreg = ia32_new_NoReg_gp(cg);
1207         ir_graph *irg  = get_irn_irg(node);
1208         ir_node *frame = get_irg_frame(irg);
1209
1210         ir_node *pop = new_bd_ia32_PopMem(dbg, block, frame, noreg, new_NoMem(), sp);
1211
1212         set_ia32_frame_ent(pop, ent);
1213         set_ia32_use_frame(pop);
1214         set_ia32_op_type(pop, ia32_AddrModeD);
1215         set_ia32_ls_mode(pop, mode_Is);
1216         set_ia32_is_reload(pop);
1217
1218         sched_add_before(schedpoint, pop);
1219
1220         return pop;
1221 }
1222
1223 static ir_node* create_spproj(ir_node *node, ir_node *pred, int pos)
1224 {
1225         dbg_info *dbg = get_irn_dbg_info(node);
1226         ir_node *block = get_nodes_block(node);
1227         ir_mode *spmode = mode_Iu;
1228         const arch_register_t *spreg = &ia32_gp_regs[REG_ESP];
1229         ir_node *sp;
1230
1231         sp = new_rd_Proj(dbg, block, pred, spmode, pos);
1232         arch_set_irn_register(sp, spreg);
1233
1234         return sp;
1235 }
1236
1237 /**
1238  * Transform MemPerm, currently we do this the ugly way and produce
1239  * push/pop into/from memory cascades. This is possible without using
1240  * any registers.
1241  */
1242 static void transform_MemPerm(ia32_code_gen_t *cg, ir_node *node)
1243 {
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);