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