don't emit +0 offsets
[libfirm] / ir / be / ia32 / ia32_emitter.c
1 /**
2  * This file implements the node emitter.
3  * @author Christian Wuerdig
4  * $Id$
5  */
6
7 #ifdef HAVE_CONFIG_H
8 #include "config.h"
9 #endif
10
11 #include <limits.h>
12
13 #include "xmalloc.h"
14 #include "tv.h"
15 #include "iredges.h"
16 #include "debug.h"
17 #include "irgwalk.h"
18 #include "irprintf.h"
19 #include "irop_t.h"
20 #include "irargs_t.h"
21 #include "irprog_t.h"
22 #include "iredges_t.h"
23 #include "execfreq.h"
24
25 #include "../besched_t.h"
26 #include "../benode_t.h"
27 #include "../beabi.h"
28 #include "../be_dbgout.h"
29
30 #include "ia32_emitter.h"
31 #include "gen_ia32_emitter.h"
32 #include "gen_ia32_regalloc_if.h"
33 #include "ia32_nodes_attr.h"
34 #include "ia32_new_nodes.h"
35 #include "ia32_map_regs.h"
36 #include "bearch_ia32_t.h"
37
38 #define BLOCK_PREFIX(x) ".L" x
39
40 #define SNPRINTF_BUF_LEN 128
41
42 /* global arch_env for lc_printf functions */
43 static const arch_env_t *arch_env = NULL;
44
45 /** by default, we generate assembler code for the Linux gas */
46 asm_flavour_t asm_flavour = ASM_LINUX_GAS;
47
48 /**
49  * Switch to a new section
50  */
51 void ia32_switch_section(FILE *F, section_t sec) {
52         static section_t curr_sec = NO_SECTION;
53         static const char *text[ASM_MAX][SECTION_MAX] = {
54                 {
55                         ".section\t.text",
56                         ".section\t.data",
57                         ".section\t.rodata",
58                         ".section\t.text",
59                         ".section\t.tbss,\"awT\",@nobits",
60                         ".section\t.ctors,\"aw\",@progbits"
61                 },
62                 {
63                         ".section\t.text",
64                         ".section\t.data",
65                         ".section .rdata,\"dr\"",
66                         ".section\t.text",
67                         ".section\t.tbss,\"awT\",@nobits",
68                         ".section\t.ctors,\"aw\",@progbits"
69                 }
70         };
71
72         if (curr_sec == sec)
73                 return;
74
75         curr_sec = sec;
76         switch (sec) {
77
78         case NO_SECTION:
79                 break;
80
81         case SECTION_TEXT:
82         case SECTION_DATA:
83         case SECTION_RODATA:
84         case SECTION_COMMON:
85         case SECTION_TLS:
86         case SECTION_CTOR:
87                 fprintf(F, "\t%s\n", text[asm_flavour][sec]);
88                 break;
89
90         default:
91                 break;
92         }
93 }
94
95 static void ia32_dump_function_object(FILE *F, const char *name)
96 {
97         switch (asm_flavour) {
98         case ASM_LINUX_GAS:
99                 fprintf(F, "\t.type\t%s, @function\n", name);
100                 break;
101         case ASM_MINGW_GAS:
102                 fprintf(F, "\t.def\t%s;\t.scl\t2;\t.type\t32;\t.endef\n", name);
103                 break;
104         default:
105                 break;
106         }
107 }
108
109 static void ia32_dump_function_size(FILE *F, const char *name)
110 {
111         switch (asm_flavour) {
112         case ASM_LINUX_GAS:
113                 fprintf(F, "\t.size\t%s, .-%s\n", name, name);
114                 break;
115         default:
116                 break;
117         }
118 }
119
120 /*************************************************************
121  *             _       _    __   _          _
122  *            (_)     | |  / _| | |        | |
123  *  _ __  _ __ _ _ __ | |_| |_  | |__   ___| |_ __   ___ _ __
124  * | '_ \| '__| | '_ \| __|  _| | '_ \ / _ \ | '_ \ / _ \ '__|
125  * | |_) | |  | | | | | |_| |   | | | |  __/ | |_) |  __/ |
126  * | .__/|_|  |_|_| |_|\__|_|   |_| |_|\___|_| .__/ \___|_|
127  * | |                                       | |
128  * |_|                                       |_|
129  *************************************************************/
130
131 static INLINE int be_is_unknown_reg(const arch_register_t *reg) {
132         return \
133                 REGS_ARE_EQUAL(reg, &ia32_gp_regs[REG_GP_UKNWN])   || \
134                 REGS_ARE_EQUAL(reg, &ia32_xmm_regs[REG_XMM_UKNWN]) || \
135                 REGS_ARE_EQUAL(reg, &ia32_vfp_regs[REG_VFP_UKNWN]);
136 }
137
138 /**
139  * returns true if a node has x87 registers
140  */
141 static INLINE int has_x87_register(const ir_node *n) {
142         return is_irn_machine_user(n, 0);
143 }
144
145 /* We always pass the ir_node which is a pointer. */
146 static int ia32_get_arg_type(const lc_arg_occ_t *occ) {
147         return lc_arg_type_ptr;
148 }
149
150
151 /**
152  * Returns the register at in position pos.
153  */
154 static const arch_register_t *get_in_reg(const ir_node *irn, int pos) {
155         ir_node                *op;
156         const arch_register_t  *reg = NULL;
157
158         assert(get_irn_arity(irn) > pos && "Invalid IN position");
159
160         /* The out register of the operator at position pos is the
161            in register we need. */
162         op = get_irn_n(irn, pos);
163
164         reg = arch_get_irn_register(arch_env, op);
165
166         assert(reg && "no in register found");
167
168         /* in case of unknown: just return a register */
169         if (REGS_ARE_EQUAL(reg, &ia32_gp_regs[REG_GP_UKNWN]))
170                 reg = &ia32_gp_regs[REG_EAX];
171         else if (REGS_ARE_EQUAL(reg, &ia32_xmm_regs[REG_XMM_UKNWN]))
172                 reg = &ia32_xmm_regs[REG_XMM0];
173         else if (REGS_ARE_EQUAL(reg, &ia32_vfp_regs[REG_VFP_UKNWN]))
174                 reg = &ia32_vfp_regs[REG_VF0];
175
176         return reg;
177 }
178
179 /**
180  * Returns the register at out position pos.
181  */
182 static const arch_register_t *get_out_reg(const ir_node *irn, int pos) {
183         ir_node                *proj;
184         const arch_register_t  *reg = NULL;
185
186         /* 1st case: irn is not of mode_T, so it has only                 */
187         /*           one OUT register -> good                             */
188         /* 2nd case: irn is of mode_T -> collect all Projs and ask the    */
189         /*           Proj with the corresponding projnum for the register */
190
191         if (get_irn_mode(irn) != mode_T) {
192                 reg = arch_get_irn_register(arch_env, irn);
193         }
194         else if (is_ia32_irn(irn)) {
195                 reg = get_ia32_out_reg(irn, pos);
196         }
197         else {
198                 const ir_edge_t *edge;
199
200                 foreach_out_edge(irn, edge) {
201                         proj = get_edge_src_irn(edge);
202                         assert(is_Proj(proj) && "non-Proj from mode_T node");
203                         if (get_Proj_proj(proj) == pos) {
204                                 reg = arch_get_irn_register(arch_env, proj);
205                                 break;
206                         }
207                 }
208         }
209
210         assert(reg && "no out register found");
211         return reg;
212 }
213
214 enum io_direction {
215   IN_REG,
216   OUT_REG
217 };
218
219 /**
220  * Returns the name of the in register at position pos.
221  */
222 static const char *get_ia32_reg_name(ir_node *irn, int pos, enum io_direction in_out) {
223         const arch_register_t *reg;
224
225         if (in_out == IN_REG) {
226                 reg = get_in_reg(irn, pos);
227
228                 if (reg->reg_class == &ia32_reg_classes[CLASS_ia32_vfp]) {
229                         /* FIXME: works for binop only */
230                         assert(2 <= pos && pos <= 3);
231                         reg = get_ia32_attr(irn)->x87[pos - 2];
232                 }
233         }
234         else {
235                 /* destination address mode nodes don't have outputs */
236                 if (is_ia32_irn(irn) && get_ia32_op_type(irn) == ia32_AddrModeD) {
237                         return "MEM";
238                 }
239
240                 reg = get_out_reg(irn, pos);
241                 if (reg->reg_class == &ia32_reg_classes[CLASS_ia32_vfp])
242                         reg = get_ia32_attr(irn)->x87[pos + 2];
243         }
244         return arch_register_get_name(reg);
245 }
246
247 /**
248  * Get the register name for a node.
249  */
250 static int ia32_get_reg_name(lc_appendable_t *app,
251     const lc_arg_occ_t *occ, const lc_arg_value_t *arg)
252 {
253         const char *buf;
254         ir_node    *irn = arg->v_ptr;
255         int         nr = occ->width - 1;
256
257         if (! irn)
258                 return lc_appendable_snadd(app, "(null)", 6);
259
260         buf = get_ia32_reg_name(irn, nr, occ->conversion == 'S' ? IN_REG : OUT_REG);
261
262         /* append the stupid % to register names */
263         lc_appendable_chadd(app, '%');
264         return lc_appendable_snadd(app, buf, strlen(buf));
265 }
266
267 /**
268  * Get the x87 register name for a node.
269  */
270 static int ia32_get_x87_name(lc_appendable_t *app,
271     const lc_arg_occ_t *occ, const lc_arg_value_t *arg)
272 {
273         const char *buf;
274         ir_node     *irn = arg->v_ptr;
275         int         nr = occ->width - 1;
276         ia32_attr_t *attr;
277
278         if (! irn)
279                 return lc_appendable_snadd(app, "(null)", 6);
280
281         attr = get_ia32_attr(irn);
282         buf = attr->x87[nr]->name;
283         lc_appendable_chadd(app, '%');
284         return lc_appendable_snadd(app, buf, strlen(buf));
285 }
286
287 /**
288  * Returns the tarval, offset or scale of an ia32 as a string.
289  */
290 static int ia32_const_to_str(lc_appendable_t *app,
291     const lc_arg_occ_t *occ, const lc_arg_value_t *arg)
292 {
293         const char *buf;
294         ir_node    *irn = arg->v_ptr;
295
296         if (! irn)
297                 return lc_arg_append(app, occ, "(null)", 6);
298
299         if (occ->conversion == 'C') {
300                 buf = get_ia32_cnst(irn);
301         }
302         else { /* 'O' */
303                 buf = get_ia32_am_offs(irn);
304         }
305
306         return buf ? lc_appendable_snadd(app, buf, strlen(buf)) : 0;
307 }
308
309 /**
310  * Determines the SSE suffix depending on the mode.
311  */
312 static int ia32_get_mode_suffix(lc_appendable_t *app,
313     const lc_arg_occ_t *occ, const lc_arg_value_t *arg)
314 {
315         ir_node *irn  = arg->v_ptr;
316         ir_mode *mode = get_irn_mode(irn);
317
318         if (mode == mode_T) {
319                 mode = get_ia32_res_mode(irn);
320                 if (! mode)
321                         mode = get_ia32_ls_mode(irn);
322         }
323
324         if (! irn)
325                 return lc_arg_append(app, occ, "(null)", 6);
326
327         if (mode_is_float(mode)) {
328                 return lc_appendable_chadd(app, get_mode_size_bits(mode) == 32 ? 's' : 'd');
329         }
330         else {
331                 return lc_appendable_chadd(app, mode_is_signed(mode) ? 's' : 'z');
332         }
333 }
334
335 /**
336  * Return the ia32 printf arg environment.
337  * We use the firm environment with some additional handlers.
338  */
339 const lc_arg_env_t *ia32_get_arg_env(void) {
340         static lc_arg_env_t *env = NULL;
341
342         static const lc_arg_handler_t ia32_reg_handler   = { ia32_get_arg_type, ia32_get_reg_name };
343         static const lc_arg_handler_t ia32_const_handler = { ia32_get_arg_type, ia32_const_to_str };
344         static const lc_arg_handler_t ia32_mode_handler  = { ia32_get_arg_type, ia32_get_mode_suffix };
345         static const lc_arg_handler_t ia32_x87_handler   = { ia32_get_arg_type, ia32_get_x87_name };
346
347         if(env == NULL) {
348                 /* extend the firm printer */
349                 env = firm_get_arg_env();
350
351                 lc_arg_register(env, "ia32:sreg", 'S', &ia32_reg_handler);
352                 lc_arg_register(env, "ia32:dreg", 'D', &ia32_reg_handler);
353                 lc_arg_register(env, "ia32:cnst", 'C', &ia32_const_handler);
354                 lc_arg_register(env, "ia32:offs", 'O', &ia32_const_handler);
355                 lc_arg_register(env, "ia32:mode", 'M', &ia32_mode_handler);
356                 lc_arg_register(env, "ia32:x87",  'X', &ia32_x87_handler);
357         }
358
359         return env;
360 }
361
362 static const char *ia32_get_reg_name_for_mode(ia32_emit_env_t *env, ir_mode *mode, const arch_register_t *reg) {
363         switch(get_mode_size_bits(mode)) {
364                 case 8:
365                         return ia32_get_mapped_reg_name(env->isa->regs_8bit, reg);
366                 case 16:
367                         return ia32_get_mapped_reg_name(env->isa->regs_16bit, reg);
368                 default:
369                         return (char *)arch_register_get_name(reg);
370         }
371 }
372
373 /**
374  * Emits registers and/or address mode of a binary operation.
375  */
376 const char *ia32_emit_binop(const ir_node *n, ia32_emit_env_t *env) {
377         static char *buf = NULL;
378
379         /* verify that this function is never called on non-AM supporting operations */
380         //assert(get_ia32_am_support(n) != ia32_am_None && "emit binop expects addressmode support");
381
382 #define PRODUCES_RESULT(n)   \
383         (!(is_ia32_St(n)      || \
384         is_ia32_Store8Bit(n)  || \
385         is_ia32_CondJmp(n)    || \
386         is_ia32_xCondJmp(n)   || \
387         is_ia32_CmpSet(n)     || \
388         is_ia32_xCmpSet(n)    || \
389         is_ia32_SwitchJmp(n)))
390
391         if (! buf) {
392                 buf = xcalloc(1, SNPRINTF_BUF_LEN);
393         }
394         else {
395                 memset(buf, 0, SNPRINTF_BUF_LEN);
396         }
397
398         switch(get_ia32_op_type(n)) {
399                 case ia32_Normal:
400                         if (is_ia32_ImmConst(n)) {
401                                 lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%3S, %s", n, get_ia32_cnst(n));
402                         }
403                         else if (is_ia32_ImmSymConst(n)) {
404                                 lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%3S, OFFSET FLAT:%s", n, get_ia32_cnst(n));
405                         }
406                         else {
407                                 const arch_register_t *in1 = get_in_reg(n, 2);
408                                 const arch_register_t *in2 = get_in_reg(n, 3);
409                                 const arch_register_t *out = PRODUCES_RESULT(n) ? get_out_reg(n, 0) : NULL;
410                                 const arch_register_t *in;
411                                 const char            *in_name;
412
413                                 in      = out ? (REGS_ARE_EQUAL(out, in2) ? in1 : in2) : in2;
414                                 out     = out ? out : in1;
415                                 in_name = arch_register_get_name(in);
416
417                                 if (is_ia32_emit_cl(n)) {
418                                         assert(REGS_ARE_EQUAL(&ia32_gp_regs[REG_ECX], in) && "shift operation needs ecx");
419                                         in_name = "cl";
420                                 }
421
422                                 snprintf(buf, SNPRINTF_BUF_LEN, "%%%s, %%%s", arch_register_get_name(out), in_name);
423                         }
424                         break;
425                 case ia32_AddrModeS:
426                         if (is_ia32_ImmConst(n) || is_ia32_ImmSymConst(n)) {
427                                 assert(! PRODUCES_RESULT(n) && "Source AM with Const must not produce result");
428                                 snprintf(buf, SNPRINTF_BUF_LEN, "%s, %s", get_ia32_cnst(n), ia32_emit_am(n, env));
429                         }
430                         else {
431                                 if (PRODUCES_RESULT(n)) {
432                                         lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%1D, %s", n, ia32_emit_am(n, env));
433                                 }
434                                 else {
435                                         lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%3S, %s", n, ia32_emit_am(n, env));
436                                 }
437                         }
438                         break;
439                 case ia32_AddrModeD:
440                         if (is_ia32_ImmConst(n) || is_ia32_ImmSymConst(n)) {
441                                 lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%s,%s%s",
442                                         ia32_emit_am(n, env),
443                                         is_ia32_ImmSymConst(n) ? " OFFSET FLAT:" : " ",  /* In case of a symconst we must add OFFSET to */
444                                         get_ia32_cnst(n));                               /* tell the assembler to store it's address.   */
445                         }
446                         else {
447                                 const arch_register_t *in1 = get_in_reg(n, get_irn_arity(n) == 5 ? 3 : 2);
448                                 ir_mode               *mode = get_ia32_res_mode(n);
449                                 const char            *in_name;
450
451                                 mode    = mode ? mode : get_ia32_ls_mode(n);
452                                 in_name = ia32_get_reg_name_for_mode(env, mode, in1);
453
454                                 if (is_ia32_emit_cl(n)) {
455                                         assert(REGS_ARE_EQUAL(&ia32_gp_regs[REG_ECX], in1) && "shift operation needs ecx");
456                                         in_name = "cl";
457                                 }
458
459                                 lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%s, %%%s", ia32_emit_am(n, env), in_name);
460                         }
461                         break;
462                 default:
463                         assert(0 && "unsupported op type");
464         }
465
466 #undef PRODUCES_RESULT
467
468         return buf;
469 }
470
471 /**
472  * Returns the xxx PTR string for a given mode
473  *
474  * @param mode      the mode
475  * @param x87_insn  if non-zero returns the string for a x87 instruction
476  *                  else for a SSE instruction
477  */
478 static const char *pointer_size(ir_mode *mode, int x87_insn)
479 {
480         if (mode) {
481                 switch (get_mode_size_bits(mode)) {
482                 case 8:  return "BYTE PTR";
483                 case 16: return "WORD PTR";
484                 case 32: return "DWORD PTR";
485                 case 64:
486                         if (x87_insn)
487                                 return "QWORD PTR";
488                         return NULL;
489                 case 80:
490                 case 96: return "XWORD PTR";
491                 default: return NULL;
492                 }
493         }
494         return NULL;
495 }
496
497 /**
498  * Emits registers and/or address mode of a binary operation.
499  */
500 const char *ia32_emit_x87_binop(const ir_node *n, ia32_emit_env_t *env) {
501         static char *buf = NULL;
502
503         /* verify that this function is never called on non-AM supporting operations */
504         //assert(get_ia32_am_support(n) != ia32_am_None && "emit binop expects addressmode support");
505
506         if (! buf) {
507                 buf = xcalloc(1, SNPRINTF_BUF_LEN);
508         }
509         else {
510                 memset(buf, 0, SNPRINTF_BUF_LEN);
511         }
512
513         switch(get_ia32_op_type(n)) {
514                 case ia32_Normal:
515                         if (is_ia32_ImmConst(n) || is_ia32_ImmSymConst(n)) {
516                                 ir_mode *mode = get_ia32_ls_mode(n);
517                                 const char *p = pointer_size(mode, 1);
518                                 lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%s %s", p, get_ia32_cnst(n));
519                         }
520                         else {
521                                 ia32_attr_t *attr = get_ia32_attr(n);
522                                 const arch_register_t *in1 = attr->x87[0];
523                                 const arch_register_t *in2 = attr->x87[1];
524                                 const arch_register_t *out = attr->x87[2];
525                                 const arch_register_t *in;
526                                 const char            *in_name;
527
528                                 in      = out ? (REGS_ARE_EQUAL(out, in2) ? in1 : in2) : in2;
529                                 out     = out ? out : in1;
530                                 in_name = arch_register_get_name(in);
531
532                                 snprintf(buf, SNPRINTF_BUF_LEN, "%%%s, %%%s", arch_register_get_name(out), in_name);
533                         }
534                         break;
535                 case ia32_AddrModeS:
536                 case ia32_AddrModeD:
537                         lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%s", ia32_emit_am(n, env));
538                         break;
539                 default:
540                         assert(0 && "unsupported op type");
541         }
542
543         return buf;
544 }
545
546 /**
547  * Emits registers and/or address mode of a unary operation.
548  */
549 const char *ia32_emit_unop(const ir_node *n, ia32_emit_env_t *env) {
550         static char *buf = NULL;
551
552         if (! buf) {
553                 buf = xcalloc(1, SNPRINTF_BUF_LEN);
554         }
555         else {
556                 memset(buf, 0, SNPRINTF_BUF_LEN);
557         }
558
559         switch(get_ia32_op_type(n)) {
560                 case ia32_Normal:
561                         if (is_ia32_ImmConst(n)) {
562                                 lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%C", n);
563                         }
564                         else if (is_ia32_ImmSymConst(n)) {
565                                 lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "OFFSET FLAT:%C", n);
566                         }
567                         else {
568                                 if (is_ia32_MulS(n) || is_ia32_Mulh(n)) {
569                                         /* MulS and Mulh implicitly multiply by EAX */
570                                         lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%4S", n);
571                                 } else if(is_ia32_Push(n)) {
572                                         lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%3S", n);
573                                 } else {
574                                         lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%1D", n);
575                                 }
576                         }
577                         break;
578                 case ia32_AddrModeD:
579                         assert(!is_ia32_Push(n));
580                         snprintf(buf, SNPRINTF_BUF_LEN, "%s", ia32_emit_am(n, env));
581                         break;
582                 case ia32_AddrModeS:
583                         /*
584                                 Mulh is emitted via emit_unop
585                                 imul [MEM]  means EDX:EAX <- EAX * [MEM]
586                         */
587                         assert((is_ia32_Mulh(n) || is_ia32_MulS(n) || is_ia32_Push(n)) && "Only MulS and Mulh can have AM source as unop");
588                         lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%s", ia32_emit_am(n, env));
589                         break;
590                 default:
591                         assert(0 && "unsupported op type");
592         }
593
594         return buf;
595 }
596
597 /**
598  * Emits address mode.
599  */
600 const char *ia32_emit_am(const ir_node *n, ia32_emit_env_t *env) {
601         ia32_am_flavour_t am_flav    = get_ia32_am_flavour(n);
602         int               had_output = 0;
603         char              *s;
604         const char        *p;
605         static struct obstack *obst  = NULL;
606         ir_mode *mode = get_ia32_ls_mode(n);
607
608         if (! is_ia32_Lea(n))
609                 assert(mode && "AM node must have ls_mode attribute set.");
610
611         if (! obst) {
612                 obst = xcalloc(1, sizeof(*obst));
613         }
614         else {
615                 obstack_free(obst, NULL);
616         }
617
618         /* obstack_free with NULL results in an uninitialized obstack */
619         obstack_init(obst);
620
621         p = pointer_size(mode, has_x87_register(n) || is_ia32_GetST0(n) || is_ia32_SetST0(n));
622         if (p)
623                 obstack_printf(obst, "%s ", p);
624
625         /* emit address mode symconst */
626         if (get_ia32_am_sc(n)) {
627                 if (is_ia32_am_sc_sign(n))
628                         obstack_printf(obst, "-");
629                 obstack_printf(obst, "%s", get_id_str(get_ia32_am_sc(n)));
630         }
631
632         if (am_flav & ia32_B) {
633                 obstack_printf(obst, "[");
634                 lc_eoprintf(ia32_get_arg_env(), obst, "%1S", n);
635                 had_output = 1;
636         }
637
638         if (am_flav & ia32_I) {
639                 if (had_output) {
640                         obstack_printf(obst, "+");
641                 }
642                 else {
643                         obstack_printf(obst, "[");
644                 }
645
646                 lc_eoprintf(ia32_get_arg_env(), obst, "%2S", n);
647
648                 if (am_flav & ia32_S) {
649                         obstack_printf(obst, "*%d", 1 << get_ia32_am_scale(n));
650                 }
651
652                 had_output = 1;
653         }
654
655         if (am_flav & ia32_O) {
656                 int offs = get_ia32_am_offs_int(n);
657
658                 if (offs != 0) {
659                         /* omit explicit + if there was no base or index */
660                         if (! had_output) {
661                                 obstack_printf(obst, "[%d", offs);
662                         } else {
663                                 obstack_printf(obst, "%+d", offs);
664                         }
665
666                         had_output = 1;
667                 }
668         }
669
670         if (had_output)
671                 obstack_printf(obst, "] ");
672
673         obstack_1grow(obst, '\0');
674         s = obstack_finish(obst);
675
676         return s;
677 }
678
679 /**
680  * emit an address
681  */
682 const char *ia32_emit_adr(const ir_node *irn, ia32_emit_env_t *env)
683 {
684         static char buf[SNPRINTF_BUF_LEN];
685         ir_mode    *mode = get_ia32_ls_mode(irn);
686         const char *adr  = get_ia32_cnst(irn);
687         const char *pref = pointer_size(mode, has_x87_register(irn));
688
689         snprintf(buf, SNPRINTF_BUF_LEN, "%s %s", pref ? pref : "", adr);
690         return buf;
691 }
692
693 /**
694  * Formated print of commands and comments.
695  */
696 static void ia32_fprintf_format(FILE *F, const ir_node *irn, char *cmd_buf, char *cmnt_buf) {
697         unsigned lineno;
698         const char *name = irn ? be_retrieve_dbg_info(get_irn_dbg_info((ir_node *)irn), &lineno) : NULL;
699
700         if (name)
701                 fprintf(F, "\t%-35s %-60s /* %s:%u */\n", cmd_buf, cmnt_buf, name, lineno);
702         else
703                 fprintf(F, "\t%-35s %-60s\n", cmd_buf, cmnt_buf);
704 }
705
706
707
708 /**
709  * Add a number to a prefix. This number will not be used a second time.
710  */
711 static char *get_unique_label(char *buf, size_t buflen, const char *prefix) {
712         static unsigned long id = 0;
713         snprintf(buf, buflen, "%s%lu", prefix, ++id);
714         return buf;
715 }
716
717
718
719 /*************************************************
720  *                 _ _                         _
721  *                (_) |                       | |
722  *   ___ _ __ ___  _| |_    ___ ___  _ __   __| |
723  *  / _ \ '_ ` _ \| | __|  / __/ _ \| '_ \ / _` |
724  * |  __/ | | | | | | |_  | (_| (_) | | | | (_| |
725  *  \___|_| |_| |_|_|\__|  \___\___/|_| |_|\__,_|
726  *
727  *************************************************/
728
729 #undef IA32_DO_EMIT
730 #define IA32_DO_EMIT(irn) ia32_fprintf_format(F, irn, cmd_buf, cmnt_buf)
731
732 /*
733  * coding of conditions
734  */
735 struct cmp2conditon_t {
736         const char *name;
737         pn_Cmp      num;
738 };
739
740 /*
741  * positive conditions for signed compares
742  */
743 static const struct cmp2conditon_t cmp2condition_s[] = {
744   { NULL,              pn_Cmp_False },  /* always false */
745   { "e",               pn_Cmp_Eq },     /* == */
746   { "l",               pn_Cmp_Lt },     /* < */
747   { "le",              pn_Cmp_Le },     /* <= */
748   { "g",               pn_Cmp_Gt },     /* > */
749   { "ge",              pn_Cmp_Ge },     /* >= */
750   { "ne",              pn_Cmp_Lg },     /* != */
751   { "ordered",         pn_Cmp_Leg },    /* Floating point: ordered */
752   { "unordered",       pn_Cmp_Uo },     /* FLoting point: unordered */
753   { "e",               pn_Cmp_Ue },     /* Floating point: unordered or == */
754   { "b",               pn_Cmp_Ul },     /* Floating point: unordered or < */
755   { "be",              pn_Cmp_Ule },    /* Floating point: unordered or <= */
756   { "a",               pn_Cmp_Ug },     /* Floating point: unordered or > */
757   { "ae",              pn_Cmp_Uge },    /* Floating point: unordered or >= */
758   { "ne",              pn_Cmp_Ne },     /* Floating point: unordered or != */
759   { NULL,              pn_Cmp_True },   /* always true */
760 };
761
762 /*
763  * positive conditions for unsigned compares
764  */
765 static const struct cmp2conditon_t cmp2condition_u[] = {
766         { NULL,              pn_Cmp_False },  /* always false */
767         { "e",               pn_Cmp_Eq },     /* == */
768         { "b",               pn_Cmp_Lt },     /* < */
769         { "be",              pn_Cmp_Le },     /* <= */
770         { "a",               pn_Cmp_Gt },     /* > */
771         { "ae",              pn_Cmp_Ge },     /* >= */
772         { "ne",              pn_Cmp_Lg },     /* != */
773         { "ordered",         pn_Cmp_Leg },    /* Floating point: ordered */
774         { "unordered",       pn_Cmp_Uo },     /* FLoting point: unordered */
775         { "e",               pn_Cmp_Ue },     /* Floating point: unordered or == */
776         { "b",               pn_Cmp_Ul },     /* Floating point: unordered or < */
777         { "be",              pn_Cmp_Ule },    /* Floating point: unordered or <= */
778         { "a",               pn_Cmp_Ug },     /* Floating point: unordered or > */
779         { "ae",              pn_Cmp_Uge },    /* Floating point: unordered or >= */
780         { "ne",              pn_Cmp_Ne },     /* Floating point: unordered or != */
781         { NULL,              pn_Cmp_True },   /* always true */
782 };
783
784 /*
785  * returns the condition code
786  */
787 static const char *get_cmp_suffix(int cmp_code, int unsigned_cmp)
788 {
789         assert(cmp2condition_s[cmp_code].num == cmp_code);
790         assert(cmp2condition_u[cmp_code].num == cmp_code);
791
792         return unsigned_cmp ? cmp2condition_u[cmp_code & 7].name : cmp2condition_s[cmp_code & 7].name;
793 }
794
795 /**
796  * Returns the target block for a control flow node.
797  */
798 static ir_node *get_cfop_target_block(const ir_node *irn) {
799         return get_irn_link(irn);
800 }
801
802 /**
803  * Returns the target label for a control flow node.
804  */
805 static char *get_cfop_target(const ir_node *irn, char *buf) {
806         ir_node *bl = get_cfop_target_block(irn);
807
808         snprintf(buf, SNPRINTF_BUF_LEN, BLOCK_PREFIX("%ld"), get_irn_node_nr(bl));
809         return buf;
810 }
811
812 /** Return the next block in Block schedule */
813 static ir_node *next_blk_sched(const ir_node *block) {
814         return get_irn_link(block);
815 }
816
817 /**
818  * Returns the Proj with projection number proj and NOT mode_M
819  */
820 static ir_node *get_proj(const ir_node *irn, long proj) {
821         const ir_edge_t *edge;
822         ir_node         *src;
823
824         assert(get_irn_mode(irn) == mode_T && "expected mode_T node");
825
826         foreach_out_edge(irn, edge) {
827                 src = get_edge_src_irn(edge);
828
829                 assert(is_Proj(src) && "Proj expected");
830                 if (get_irn_mode(src) == mode_M)
831                         continue;
832
833                 if (get_Proj_proj(src) == proj)
834                         return src;
835         }
836         return NULL;
837 }
838
839 /**
840  * Emits the jump sequence for a conditional jump (cmp + jmp_true + jmp_false)
841  */
842 static void finish_CondJmp(FILE *F, const ir_node *irn, ir_mode *mode) {
843         const ir_node *proj_true;
844         const ir_node *proj_false;
845         const ir_node *block;
846         const ir_node *next_block;
847         char buf[SNPRINTF_BUF_LEN];
848         char cmd_buf[SNPRINTF_BUF_LEN];
849         char cmnt_buf[SNPRINTF_BUF_LEN];
850         int is_unsigned;
851         int pnc;
852         int flipped = 0;
853
854         /* get both Proj's */
855         proj_true = get_proj(irn, pn_Cond_true);
856         assert(proj_true && "CondJmp without true Proj");
857
858         proj_false = get_proj(irn, pn_Cond_false);
859         assert(proj_false && "CondJmp without false Proj");
860
861         pnc = get_ia32_pncode(irn);
862
863         /* for now, the code works for scheduled and non-schedules blocks */
864         block = get_nodes_block(irn);
865
866         /* we have a block schedule */
867         next_block = next_blk_sched(block);
868
869         if (get_cfop_target_block(proj_true) == next_block) {
870                 /* exchange both proj's so the second one can be omitted */
871                 const ir_node *t = proj_true;
872                 proj_true = proj_false;
873                 proj_false = t;
874
875                 flipped = 1;
876                 pnc = get_negated_pnc(pnc, mode);
877         }
878
879         /* the first Proj must always be created */
880         is_unsigned = mode_is_float(mode) || ! mode_is_signed(mode);
881         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "j%s %s",
882                  get_cmp_suffix(pnc, is_unsigned),
883                  get_cfop_target(proj_true, buf));
884         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* %s(a, b) %s*/",
885                  get_pnc_string(pnc), flipped ? "(was flipped)" : "");
886         IA32_DO_EMIT(irn);
887
888         /* the second Proj might be a fallthrough */
889         if (get_cfop_target_block(proj_false) != next_block) {
890                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "jmp %s", get_cfop_target(proj_false, buf));
891                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* otherwise */");
892         }
893         else {
894                 cmd_buf[0] = '\0';
895                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* fallthrough %s */", get_cfop_target(proj_false, buf));
896         }
897         IA32_DO_EMIT(irn);
898 }
899
900 /**
901  * Emits code for conditional jump.
902  */
903 static void CondJmp_emitter(const ir_node *irn, ia32_emit_env_t *env) {
904         FILE *F = env->out;
905         char cmd_buf[SNPRINTF_BUF_LEN];
906         char cmnt_buf[SNPRINTF_BUF_LEN];
907
908         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "cmp %s", ia32_emit_binop(irn, env));
909         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* %+F */", irn);
910         IA32_DO_EMIT(irn);
911         finish_CondJmp(F, irn, get_ia32_res_mode(irn));
912 }
913
914 /**
915  * Emits code for conditional jump with two variables.
916  */
917 static void emit_ia32_CondJmp(const ir_node *irn, ia32_emit_env_t *env) {
918         CondJmp_emitter(irn, env);
919 }
920
921 /**
922  * Emits code for conditional test and jump.
923  */
924 static void TestJmp_emitter(const ir_node *irn, ia32_emit_env_t *env) {
925
926 #define IA32_IS_IMMOP (is_ia32_ImmConst(irn) || is_ia32_ImmSymConst(irn))
927
928         FILE       *F   = env->out;
929         const char *op1 = arch_register_get_name(get_in_reg(irn, 0));
930         const char *op2 = IA32_IS_IMMOP ? get_ia32_cnst(irn) : NULL;
931         char        cmd_buf[SNPRINTF_BUF_LEN];
932         char        cmnt_buf[SNPRINTF_BUF_LEN];
933
934         if (! op2)
935                 op2 = arch_register_get_name(get_in_reg(irn, 1));
936
937         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "test %%%s,%s%s ", op1, IA32_IS_IMMOP ? " " : " %", op2);
938         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* %+F */", irn);
939
940         IA32_DO_EMIT(irn);
941         finish_CondJmp(F, irn, get_ia32_res_mode(irn));
942
943 #undef IA32_IS_IMMOP
944 }
945
946 /**
947  * Emits code for conditional test and jump with two variables.
948  */
949 static void emit_ia32_TestJmp(const ir_node *irn, ia32_emit_env_t *env) {
950         TestJmp_emitter(irn, env);
951 }
952
953 static void emit_ia32_CJmp(const ir_node *irn, ia32_emit_env_t *env) {
954         FILE *F = env->out;
955         char cmd_buf[SNPRINTF_BUF_LEN];
956         char cmnt_buf[SNPRINTF_BUF_LEN];
957
958         snprintf(cmd_buf, SNPRINTF_BUF_LEN, " ");
959         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* %+F omitted redundant test */", irn);
960         IA32_DO_EMIT(irn);
961         finish_CondJmp(F, irn, get_ia32_res_mode(irn));
962 }
963
964 static void emit_ia32_CJmpAM(const ir_node *irn, ia32_emit_env_t *env) {
965         FILE *F = env->out;
966         char cmd_buf[SNPRINTF_BUF_LEN];
967         char cmnt_buf[SNPRINTF_BUF_LEN];
968
969         snprintf(cmd_buf, SNPRINTF_BUF_LEN, " ");
970         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* %+F omitted redundant test/cmp */", irn);
971         IA32_DO_EMIT(irn);
972         finish_CondJmp(F, irn, get_ia32_res_mode(irn));
973 }
974
975 /**
976  * Emits code for conditional SSE floating point jump with two variables.
977  */
978 static void emit_ia32_xCondJmp(ir_node *irn, ia32_emit_env_t *env) {
979         FILE *F = env->out;
980         char cmd_buf[SNPRINTF_BUF_LEN];
981         char cmnt_buf[SNPRINTF_BUF_LEN];
982
983         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "ucomis%M %s", irn, ia32_emit_binop(irn, env));
984         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* %+F */", irn);
985         IA32_DO_EMIT(irn);
986         finish_CondJmp(F, irn, mode_F);
987
988 }
989
990 /**
991  * Emits code for conditional x87 floating point jump with two variables.
992  */
993 static void emit_ia32_x87CondJmp(ir_node *irn, ia32_emit_env_t *env) {
994         FILE *F = env->out;
995         char cmd_buf[SNPRINTF_BUF_LEN];
996         char cmnt_buf[SNPRINTF_BUF_LEN];
997         ia32_attr_t *attr = get_ia32_attr(irn);
998         const char *reg = attr->x87[1]->name;
999         const char *instr = "fcom";
1000         int reverse = 0;
1001
1002         switch (get_ia32_irn_opcode(irn)) {
1003         case iro_ia32_fcomrJmp:
1004                 reverse = 1;
1005         case iro_ia32_fcomJmp:
1006         default:
1007                 instr = "fucom";
1008                 break;
1009         case iro_ia32_fcomrpJmp:
1010                 reverse = 1;
1011         case iro_ia32_fcompJmp:
1012                 instr = "fucomp";
1013                 break;
1014         case iro_ia32_fcomrppJmp:
1015                 reverse = 1;
1016         case iro_ia32_fcomppJmp:
1017                 instr = "fucompp";
1018                 reg = "";
1019                 break;
1020         }
1021
1022         if (reverse)
1023                 set_ia32_pncode(irn, (long)get_inversed_pnc(get_ia32_pncode(irn)));
1024
1025         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "%s %s%s", instr, reg[0] == '\0' ? "" : "%", reg);
1026         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* %+F */", irn);
1027         IA32_DO_EMIT(irn);
1028         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "fnstsw %%ax", irn);
1029         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* Store x87 FPU Control Word */");
1030         IA32_DO_EMIT(irn);
1031         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "sahf");
1032         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* Store ah into flags */");
1033         IA32_DO_EMIT(irn);
1034
1035         /* the compare flags must be evaluated using carry , ie unsigned */
1036         finish_CondJmp(F, irn, mode_Iu);
1037 }
1038
1039 static void CMov_emitter(ir_node *irn, ia32_emit_env_t *env) {
1040         FILE               *F       = env->out;
1041         const lc_arg_env_t *arg_env = ia32_get_arg_env();
1042         ir_mode    *mode       = get_irn_mode(get_irn_n(irn, 0));
1043         int        is_unsigned = mode_is_float(mode) || ! mode_is_signed(mode);
1044         const char *cmp_suffix = get_cmp_suffix(get_ia32_pncode(irn), is_unsigned);
1045         int is_PsiCondCMov     = is_ia32_PsiCondCMov(irn);
1046         int idx_left  = 2 - is_PsiCondCMov;
1047         int idx_right = 3 - is_PsiCondCMov;
1048
1049         char cmd_buf[SNPRINTF_BUF_LEN];
1050         char cmnt_buf[SNPRINTF_BUF_LEN];
1051         const arch_register_t *in1, *in2, *out;
1052
1053         out = arch_get_irn_register(env->arch_env, irn);
1054         in1 = arch_get_irn_register(env->arch_env, get_irn_n(irn, idx_left));
1055         in2 = arch_get_irn_register(env->arch_env, get_irn_n(irn, idx_right));
1056
1057         /* we have to emit the cmp first, because the destination register */
1058         /* could be one of the compare registers                           */
1059         if (is_ia32_CmpCMov(irn)) {
1060                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "cmp %1S, %2S", irn, irn);
1061         }
1062         else if (is_ia32_xCmpCMov(irn)) {
1063                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "ucomis%M %1S, %2S", get_irn_n(irn, 0), irn, irn);
1064         }
1065         else if (is_PsiCondCMov) {
1066                 /* omit compare because flags are already set by And/Or */
1067                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "test %1S, %1S", irn, irn);
1068         }
1069         else {
1070                 assert(0 && "unsupported CMov");
1071         }
1072         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* Psi condition */" );
1073         IA32_DO_EMIT(irn);
1074
1075         if (REGS_ARE_EQUAL(out, in2)) {
1076                 /* best case: default in == out -> do nothing */
1077         }
1078         else if (REGS_ARE_EQUAL(out, in1)) {
1079                 /* true in == out -> need complement compare and exchange true and default in */
1080                 ir_node *t = get_irn_n(irn, idx_left);
1081                 set_irn_n(irn, idx_left, get_irn_n(irn, idx_right));
1082                 set_irn_n(irn, idx_right, t);
1083
1084                 cmp_suffix  = get_cmp_suffix(get_negated_pnc(get_ia32_pncode(irn), get_irn_mode(irn)), is_unsigned);
1085
1086         }
1087         else {
1088                 /* out is different from in: need copy default -> out */
1089                 if (is_PsiCondCMov)
1090                         lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "mov %1D, %3S", irn, irn);
1091                 else
1092                         lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "mov %1D, %4S", irn, irn);
1093
1094                 lc_esnprintf(arg_env, cmnt_buf, SNPRINTF_BUF_LEN, "/* copy default -> out */" );
1095                 IA32_DO_EMIT(irn);
1096         }
1097
1098         if (is_PsiCondCMov)
1099                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "cmov%s %1D, %2S", cmp_suffix, irn, irn);
1100         else
1101                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "cmov%s %1D, %3S", cmp_suffix, irn, irn);
1102
1103         lc_esnprintf(arg_env, cmnt_buf, SNPRINTF_BUF_LEN, "/* condition is true case */" );
1104         IA32_DO_EMIT(irn);
1105 }
1106
1107 static void emit_ia32_CmpCMov(ir_node *irn, ia32_emit_env_t *env) {
1108         CMov_emitter(irn, env);
1109 }
1110
1111 static void emit_ia32_PsiCondCMov(ir_node *irn, ia32_emit_env_t *env) {
1112         CMov_emitter(irn, env);
1113 }
1114
1115 static void emit_ia32_xCmpCMov(ir_node *irn, ia32_emit_env_t *env) {
1116         CMov_emitter(irn, env);
1117 }
1118
1119 static void Set_emitter(ir_node *irn, ir_mode *mode, ia32_emit_env_t *env) {
1120         FILE               *F       = env->out;
1121         const lc_arg_env_t *arg_env = ia32_get_arg_env();
1122         int        is_unsigned = mode_is_float(mode) || ! mode_is_signed(mode);
1123         const char *cmp_suffix = get_cmp_suffix(get_ia32_pncode(irn), is_unsigned);
1124         const char *reg8bit;
1125
1126         char cmd_buf[SNPRINTF_BUF_LEN];
1127         char cmnt_buf[SNPRINTF_BUF_LEN];
1128         const arch_register_t *out;
1129
1130         out     = arch_get_irn_register(env->arch_env, irn);
1131         reg8bit = ia32_get_mapped_reg_name(env->isa->regs_8bit, out);
1132
1133         if (is_ia32_CmpSet(irn)) {
1134                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "cmp %s", ia32_emit_binop(irn, env));
1135         }
1136         else if (is_ia32_xCmpSet(irn)) {
1137                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "ucomis%M %s", get_irn_n(irn, 2), ia32_emit_binop(irn, env));
1138         }
1139         else if (is_ia32_PsiCondSet(irn)) {
1140                 /* omit compare because flags are already set by And/Or */
1141                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, " ");
1142         }
1143         else {
1144                 assert(0 && "unsupported Set");
1145         }
1146         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* calculate Psi condition */" );
1147         IA32_DO_EMIT(irn);
1148
1149         /* use mov to clear target because it doesn't affect the eflags */
1150         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "mov %%%s, 0", arch_register_get_name(out));
1151         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* clear target as set modifies only lower 8 bit */");
1152         IA32_DO_EMIT(irn);
1153
1154         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "set%s %%%s", cmp_suffix, reg8bit);
1155         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* set 1 iff true, 0 otherweise */" );
1156         IA32_DO_EMIT(irn);
1157 }
1158
1159 static void emit_ia32_CmpSet(ir_node *irn, ia32_emit_env_t *env) {
1160         Set_emitter(irn, get_irn_mode(get_irn_n(irn, 2)), env);
1161 }
1162
1163 static void emit_ia32_PsiCondSet(ir_node *irn, ia32_emit_env_t *env) {
1164         Set_emitter(irn, get_irn_mode(get_irn_n(irn, 0)), env);
1165 }
1166
1167 static void emit_ia32_xCmpSet(ir_node *irn, ia32_emit_env_t *env) {
1168         Set_emitter(irn, get_irn_mode(get_irn_n(irn, 2)), env);
1169 }
1170
1171 static void emit_ia32_xCmp(ir_node *irn, ia32_emit_env_t *env) {
1172         FILE               *F       = env->out;
1173         const lc_arg_env_t *arg_env = ia32_get_arg_env();
1174         int                sse_pnc  = -1;
1175         long               pnc      = get_ia32_pncode(irn);
1176         long               unord    = pnc & pn_Cmp_Uo;
1177         char cmd_buf[SNPRINTF_BUF_LEN];
1178         char cmnt_buf[SNPRINTF_BUF_LEN];
1179
1180         switch (pnc) {
1181                 case pn_Cmp_Leg: /* odered */
1182                         sse_pnc = 7;
1183                         break;
1184                 case pn_Cmp_Uo:  /* unordered */
1185                         sse_pnc = 3;
1186                         break;
1187                 case pn_Cmp_Ue:
1188                 case pn_Cmp_Eq:  /* == */
1189                         sse_pnc = 0;
1190                         break;
1191                 case pn_Cmp_Ul:
1192                 case pn_Cmp_Lt:  /* < */
1193                         sse_pnc = 1;
1194                         break;
1195                 case pn_Cmp_Ule:
1196                 case pn_Cmp_Le: /* <= */
1197                         sse_pnc = 2;
1198                         break;
1199                 case pn_Cmp_Ug:
1200                 case pn_Cmp_Gt:  /* > */
1201                         sse_pnc = 6;
1202                         break;
1203                 case pn_Cmp_Uge:
1204                 case pn_Cmp_Ge: /* >= */
1205                         sse_pnc = 5;
1206                         break;
1207                 case pn_Cmp_Ne:
1208                 case pn_Cmp_Lg:  /* != */
1209                         sse_pnc = 4;
1210                         break;
1211         }
1212
1213         assert(sse_pnc >= 0 && "unsupported compare");
1214
1215         if (unord && sse_pnc != 3) {
1216                 /*
1217                         We need a separate compare against unordered.
1218                         Quick and Dirty solution:
1219                         - get some memory on stack
1220                         - compare
1221                         - store result
1222                         - compare
1223                         - and result and stored result
1224                     - cleanup stack
1225                 */
1226                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "sub %%esp, 8");
1227                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* reserve some space for unordered compare result */");
1228                 IA32_DO_EMIT(NULL);
1229                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "cmpsd %s, 3", ia32_emit_binop(irn, env));
1230                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* SSE compare: unordered */");
1231                 IA32_DO_EMIT(NULL);
1232                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "movsd [%%esp], %1D", irn);
1233                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* store compare result */");
1234                 IA32_DO_EMIT(NULL);
1235         }
1236
1237         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "cmpsd %s, %d", ia32_emit_binop(irn, env), sse_pnc);
1238         lc_esnprintf(arg_env, cmnt_buf, SNPRINTF_BUF_LEN, "/* SSE compare (%+F) with result in %1D */", irn, irn);
1239         IA32_DO_EMIT(irn);
1240
1241         if (unord && sse_pnc != 3) {
1242                 lc_esnprintf(arg_env, cmd_buf, SNPRINTF_BUF_LEN, "andpd %1D, [%%esp]", irn);
1243                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* build the final result */");
1244                 IA32_DO_EMIT(NULL);
1245                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "add %%esp, 8");
1246                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* free allocated space */");
1247                 IA32_DO_EMIT(NULL);
1248         }
1249 }
1250
1251 /*********************************************************
1252  *                 _ _       _
1253  *                (_) |     (_)
1254  *   ___ _ __ ___  _| |_     _ _   _ _ __ ___  _ __  ___
1255  *  / _ \ '_ ` _ \| | __|   | | | | | '_ ` _ \| '_ \/ __|
1256  * |  __/ | | | | | | |_    | | |_| | | | | | | |_) \__ \
1257  *  \___|_| |_| |_|_|\__|   | |\__,_|_| |_| |_| .__/|___/
1258  *                         _/ |               | |
1259  *                        |__/                |_|
1260  *********************************************************/
1261
1262 /* jump table entry (target and corresponding number) */
1263 typedef struct _branch_t {
1264         ir_node *target;
1265         int      value;
1266 } branch_t;
1267
1268 /* jump table for switch generation */
1269 typedef struct _jmp_tbl_t {
1270         ir_node  *defProj;         /**< default target */
1271         int       min_value;       /**< smallest switch case */
1272         int       max_value;       /**< largest switch case */
1273         int       num_branches;    /**< number of jumps */
1274         char     *label;           /**< label of the jump table */
1275         branch_t *branches;        /**< jump array */
1276 } jmp_tbl_t;
1277
1278 /**
1279  * Compare two variables of type branch_t. Used to sort all switch cases
1280  */
1281 static int ia32_cmp_branch_t(const void *a, const void *b) {
1282         branch_t *b1 = (branch_t *)a;
1283         branch_t *b2 = (branch_t *)b;
1284
1285         if (b1->value <= b2->value)
1286                 return -1;
1287         else
1288                 return 1;
1289 }
1290
1291 /**
1292  * Emits code for a SwitchJmp (creates a jump table if
1293  * possible otherwise a cmp-jmp cascade). Port from
1294  * cggg ia32 backend
1295  */
1296 static void emit_ia32_SwitchJmp(const ir_node *irn, ia32_emit_env_t *emit_env) {
1297         unsigned long       interval;
1298         char                buf[SNPRINTF_BUF_LEN];
1299         int                 last_value, i, pn;
1300         jmp_tbl_t           tbl;
1301         ir_node            *proj;
1302         const ir_edge_t    *edge;
1303         const lc_arg_env_t *env = ia32_get_arg_env();
1304         FILE               *F   = emit_env->out;
1305         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1306
1307         /* fill the table structure */
1308         tbl.label        = xmalloc(SNPRINTF_BUF_LEN);
1309         tbl.label        = get_unique_label(tbl.label, SNPRINTF_BUF_LEN, ".TBL_");
1310         tbl.defProj      = NULL;
1311         tbl.num_branches = get_irn_n_edges(irn);
1312         tbl.branches     = xcalloc(tbl.num_branches, sizeof(tbl.branches[0]));
1313         tbl.min_value    = INT_MAX;
1314         tbl.max_value    = INT_MIN;
1315
1316         i = 0;
1317         /* go over all proj's and collect them */
1318         foreach_out_edge(irn, edge) {
1319                 proj = get_edge_src_irn(edge);
1320                 assert(is_Proj(proj) && "Only proj allowed at SwitchJmp");
1321
1322                 pn = get_Proj_proj(proj);
1323
1324                 /* create branch entry */
1325                 tbl.branches[i].target = proj;
1326                 tbl.branches[i].value  = pn;
1327
1328                 tbl.min_value = pn < tbl.min_value ? pn : tbl.min_value;
1329                 tbl.max_value = pn > tbl.max_value ? pn : tbl.max_value;
1330
1331                 /* check for default proj */
1332                 if (pn == get_ia32_pncode(irn)) {
1333                         assert(tbl.defProj == NULL && "found two defProjs at SwitchJmp");
1334                         tbl.defProj = proj;
1335                 }
1336
1337                 i++;
1338         }
1339
1340         /* sort the branches by their number */
1341         qsort(tbl.branches, tbl.num_branches, sizeof(tbl.branches[0]), ia32_cmp_branch_t);
1342
1343         /* two-complement's magic make this work without overflow */
1344         interval = tbl.max_value - tbl.min_value;
1345
1346         /* emit the table */
1347         lc_esnprintf(env, cmd_buf, SNPRINTF_BUF_LEN, "cmp %1S, %u", irn, interval);
1348         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* compare for switch */");
1349         IA32_DO_EMIT(irn);
1350
1351         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "ja %s", get_cfop_target(tbl.defProj, buf));
1352         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* default jump if out of range  */");
1353         IA32_DO_EMIT(irn);
1354
1355         if (tbl.num_branches > 1) {
1356                 /* create table */
1357
1358                 lc_esnprintf(env, cmd_buf, SNPRINTF_BUF_LEN, "jmp %s[%1S*4]", tbl.label, irn);
1359                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* get jump table entry as target */");
1360                 IA32_DO_EMIT(irn);
1361
1362                 ia32_switch_section(F, SECTION_RODATA);
1363                 fprintf(F, "\t.align 4\n");
1364
1365                 fprintf(F, "%s:\n", tbl.label);
1366
1367                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, ".long %s", get_cfop_target(tbl.branches[0].target, buf));
1368                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* case %d */",  tbl.branches[0].value);
1369                 IA32_DO_EMIT(irn);
1370
1371                 last_value = tbl.branches[0].value;
1372                 for (i = 1; i < tbl.num_branches; ++i) {
1373                         while (++last_value < tbl.branches[i].value) {
1374                                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, ".long %s", get_cfop_target(tbl.defProj, buf));
1375                                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* default case */");
1376                                 IA32_DO_EMIT(irn);
1377                         }
1378                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, ".long %s", get_cfop_target(tbl.branches[i].target, buf));
1379                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* case %d */", last_value);
1380                         IA32_DO_EMIT(irn);
1381                 }
1382                 ia32_switch_section(F, SECTION_TEXT);
1383         }
1384         else {
1385                 /* one jump is enough */
1386                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "jmp %s", get_cfop_target(tbl.branches[0].target, buf));
1387                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* only one case given */");
1388                 IA32_DO_EMIT(irn);
1389         }
1390
1391         if (tbl.label)
1392                 free(tbl.label);
1393         if (tbl.branches)
1394                 free(tbl.branches);
1395 }
1396
1397 /**
1398  * Emits code for a unconditional jump.
1399  */
1400 static void emit_Jmp(const ir_node *irn, ia32_emit_env_t *env) {
1401         ir_node *block, *next_bl;
1402         FILE *F = env->out;
1403         char buf[SNPRINTF_BUF_LEN], cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1404
1405         /* for now, the code works for scheduled and non-schedules blocks */
1406         block = get_nodes_block(irn);
1407
1408         /* we have a block schedule */
1409         next_bl = next_blk_sched(block);
1410         if (get_cfop_target_block(irn) != next_bl) {
1411                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "jmp %s", get_cfop_target(irn, buf));
1412                 lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* %+F(%+F) */", irn, get_cfop_target_block(irn));
1413         }
1414         else {
1415                 cmd_buf[0] = '\0';
1416                 lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* fallthrough %s */", get_cfop_target(irn, buf));
1417         }
1418         IA32_DO_EMIT(irn);
1419 }
1420
1421 /****************************
1422  *                  _
1423  *                 (_)
1424  *  _ __  _ __ ___  _  ___
1425  * | '_ \| '__/ _ \| |/ __|
1426  * | |_) | | | (_) | |\__ \
1427  * | .__/|_|  \___/| ||___/
1428  * | |            _/ |
1429  * |_|           |__/
1430  ****************************/
1431
1432 /**
1433  * Emits code for a proj -> node
1434  */
1435 static void emit_Proj(const ir_node *irn, ia32_emit_env_t *env) {
1436         ir_node *pred = get_Proj_pred(irn);
1437
1438         if (get_irn_op(pred) == op_Start) {
1439                 switch(get_Proj_proj(irn)) {
1440                         case pn_Start_X_initial_exec:
1441                                 emit_Jmp(irn, env);
1442                                 break;
1443                         default:
1444                                 break;
1445                 }
1446         }
1447 }
1448
1449 /**********************************
1450  *   _____                  ____
1451  *  / ____|                |  _ \
1452  * | |     ___  _ __  _   _| |_) |
1453  * | |    / _ \| '_ \| | | |  _ <
1454  * | |___| (_) | |_) | |_| | |_) |
1455  *  \_____\___/| .__/ \__, |____/
1456  *             | |     __/ |
1457  *             |_|    |___/
1458  **********************************/
1459
1460 /**
1461  * Emit movsb/w instructions to make mov count divideable by 4
1462  */
1463 static void emit_CopyB_prolog(FILE *F, const ir_node *irn, int rem) {
1464         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1465
1466         ir_fprintf(F, "\t/* memcopy prolog %+F */\n", irn);
1467
1468         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "cld");
1469         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* copy direction forward */");
1470
1471         switch(rem) {
1472                 case 1:
1473                         IA32_DO_EMIT(NULL);
1474                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "movsb");
1475                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* memcopy remainder 1 */");
1476                         break;
1477                 case 2:
1478                         IA32_DO_EMIT(NULL);
1479                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "movsw");
1480                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* memcopy remainder 2 */");
1481                         break;
1482                 case 3:
1483                         IA32_DO_EMIT(NULL);
1484                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "movsb");
1485                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* memcopy remainder 3 */");
1486                         IA32_DO_EMIT(NULL);
1487                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "movsw");
1488                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* memcopy remainder 3 */");
1489                         break;
1490         }
1491
1492         IA32_DO_EMIT(NULL);
1493 }
1494
1495 /**
1496  * Emit rep movsd instruction for memcopy.
1497  */
1498 static void emit_ia32_CopyB(const ir_node *irn, ia32_emit_env_t *emit_env) {
1499         FILE   *F  = emit_env->out;
1500         tarval *tv = get_ia32_Immop_tarval(irn);
1501         int    rem = get_tarval_long(tv);
1502         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1503
1504         emit_CopyB_prolog(F, irn, rem);
1505
1506         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "rep movsd");
1507         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* memcopy */");
1508         IA32_DO_EMIT(irn);
1509 }
1510
1511 /**
1512  * Emits unrolled memcopy.
1513  */
1514 static void emit_ia32_CopyB_i(const ir_node *irn, ia32_emit_env_t *emit_env) {
1515         tarval *tv   = get_ia32_Immop_tarval(irn);
1516         int     size = get_tarval_long(tv);
1517         FILE   *F    = emit_env->out;
1518         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1519
1520         emit_CopyB_prolog(F, irn, size & 0x3);
1521
1522         size >>= 2;
1523         while (size--) {
1524                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "movsd");
1525                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* memcopy unrolled */");
1526                 IA32_DO_EMIT(irn);
1527         }
1528 }
1529
1530
1531
1532 /***************************
1533  *   _____
1534  *  / ____|
1535  * | |     ___  _ ____   __
1536  * | |    / _ \| '_ \ \ / /
1537  * | |___| (_) | | | \ V /
1538  *  \_____\___/|_| |_|\_/
1539  *
1540  ***************************/
1541
1542 /**
1543  * Emit code for conversions (I, FP), (FP, I) and (FP, FP).
1544  */
1545 static void emit_ia32_Conv_with_FP(const ir_node *irn, ia32_emit_env_t *emit_env) {
1546         FILE               *F        = emit_env->out;
1547         const lc_arg_env_t *env      = ia32_get_arg_env();
1548         ir_mode            *src_mode = get_ia32_src_mode(irn);
1549         ir_mode            *tgt_mode = get_ia32_tgt_mode(irn);
1550         char               *from, *to, buf[64];
1551         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1552
1553         from = mode_is_float(src_mode) ? (get_mode_size_bits(src_mode) == 32 ? "ss" : "sd") : "si";
1554         to   = mode_is_float(tgt_mode) ? (get_mode_size_bits(tgt_mode) == 32 ? "ss" : "sd") : "si";
1555
1556         switch(get_ia32_op_type(irn)) {
1557                 case ia32_Normal:
1558                         lc_esnprintf(env, buf, sizeof(buf), "%1D, %3S", irn, irn);
1559                         break;
1560                 case ia32_AddrModeS:
1561                         lc_esnprintf(env, buf, sizeof(buf), "%1D, %s", irn, ia32_emit_am(irn, emit_env));
1562                         break;
1563                 default:
1564                         assert(0 && "unsupported op type for Conv");
1565         }
1566
1567         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "cvt%s2%s %s", from, to, buf);
1568         lc_esnprintf(env, cmnt_buf, SNPRINTF_BUF_LEN, "/* %+F(%+F, %+F) */", irn, src_mode, tgt_mode);
1569         IA32_DO_EMIT(irn);
1570 }
1571
1572 static void emit_ia32_Conv_I2FP(const ir_node *irn, ia32_emit_env_t *emit_env) {
1573         emit_ia32_Conv_with_FP(irn, emit_env);
1574 }
1575
1576 static void emit_ia32_Conv_FP2I(const ir_node *irn, ia32_emit_env_t *emit_env) {
1577         emit_ia32_Conv_with_FP(irn, emit_env);
1578 }
1579
1580 static void emit_ia32_Conv_FP2FP(const ir_node *irn, ia32_emit_env_t *emit_env) {
1581         emit_ia32_Conv_with_FP(irn, emit_env);
1582 }
1583
1584 /**
1585  * Emits code for an Int conversion.
1586  */
1587 static void emit_ia32_Conv_I2I(const ir_node *irn, ia32_emit_env_t *emit_env) {
1588         FILE               *F        = emit_env->out;
1589         const lc_arg_env_t *env      = ia32_get_arg_env();
1590         char               *move_cmd = "movzx";
1591         char               *conv_cmd = NULL;
1592         ir_mode            *src_mode = get_ia32_src_mode(irn);
1593         ir_mode            *tgt_mode = get_ia32_tgt_mode(irn);
1594         int n, m;
1595         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1596         const arch_register_t *in_reg, *out_reg;
1597
1598         n = get_mode_size_bits(src_mode);
1599         m = get_mode_size_bits(tgt_mode);
1600
1601         if (mode_is_signed(n < m ? src_mode : tgt_mode)) {
1602                 move_cmd = "movsx";
1603                 if (n == 8 || m == 8)
1604                         conv_cmd = "cbw";
1605                 else if (n == 16 || m == 16)
1606                         conv_cmd = "cwde";
1607                 else {
1608                         printf("%d -> %d unsupported\n", n, m);
1609                         assert(0 && "unsupported Conv_I2I");
1610                 }
1611         }
1612
1613          switch(get_ia32_op_type(irn)) {
1614                 case ia32_Normal:
1615                         in_reg  = get_in_reg(irn, 2);
1616                         out_reg = get_out_reg(irn, 0);
1617
1618                         if (REGS_ARE_EQUAL(in_reg, &ia32_gp_regs[REG_EAX]) &&
1619                                 REGS_ARE_EQUAL(out_reg, in_reg)                &&
1620                                 mode_is_signed(n < m ? src_mode : tgt_mode))
1621                         {
1622                                 /* argument and result are both in EAX and */
1623                                 /* signedness is ok: -> use converts       */
1624                                 lc_esnprintf(env, cmd_buf, SNPRINTF_BUF_LEN, "%s", conv_cmd);
1625                         }
1626                         else if (REGS_ARE_EQUAL(out_reg, in_reg) &&
1627                                 ! mode_is_signed(n < m ? src_mode : tgt_mode))
1628                         {
1629                                 /* argument and result are in the same register */
1630                                 /* and signedness is ok: -> use and with mask   */
1631                                 int mask = (1 << (n < m ? n : m)) - 1;
1632                                 lc_esnprintf(env, cmd_buf, SNPRINTF_BUF_LEN, "and %1D, 0x%x", irn, mask);
1633                         }
1634                         else {
1635                                 /* use move w/o sign extension */
1636                                 lc_esnprintf(env, cmd_buf, SNPRINTF_BUF_LEN, "%s %1D, %%%s",
1637                                         move_cmd, irn, ia32_get_reg_name_for_mode(emit_env, n < m ? src_mode : tgt_mode, in_reg));
1638                         }
1639
1640                         break;
1641                 case ia32_AddrModeS:
1642                         lc_esnprintf(env, cmd_buf, SNPRINTF_BUF_LEN, "%s %1D, %s",
1643                                 move_cmd, irn, ia32_emit_am(irn, emit_env));
1644                         break;
1645                 default:
1646                         assert(0 && "unsupported op type for Conv");
1647         }
1648
1649         lc_esnprintf(env, cmnt_buf, SNPRINTF_BUF_LEN, "/* %+F(%d Bit mode_%F -> %d Bit mode_%F) */",
1650                 irn, n, src_mode, m, tgt_mode);
1651
1652         IA32_DO_EMIT(irn);
1653 }
1654
1655 /**
1656  * Emits code for an 8Bit Int conversion.
1657  */
1658 void emit_ia32_Conv_I2I8Bit(const ir_node *irn, ia32_emit_env_t *emit_env) {
1659         emit_ia32_Conv_I2I(irn, emit_env);
1660 }
1661
1662
1663 /*******************************************
1664  *  _                          _
1665  * | |                        | |
1666  * | |__   ___ _ __   ___   __| | ___  ___
1667  * | '_ \ / _ \ '_ \ / _ \ / _` |/ _ \/ __|
1668  * | |_) |  __/ | | | (_) | (_| |  __/\__ \
1669  * |_.__/ \___|_| |_|\___/ \__,_|\___||___/
1670  *
1671  *******************************************/
1672
1673 /**
1674  * Emits a backend call
1675  */
1676 static void emit_be_Call(const ir_node *irn, ia32_emit_env_t *emit_env) {
1677         FILE *F = emit_env->out;
1678         entity *ent = be_Call_get_entity(irn);
1679         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1680
1681         if (ent) {
1682                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "call %s", get_entity_ld_name(ent));
1683         }
1684         else {
1685                 lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "call %1D", get_irn_n(irn, be_pos_Call_ptr));
1686         }
1687
1688         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* %+F (be_Call) */", irn);
1689
1690         IA32_DO_EMIT(irn);
1691 }
1692
1693 /**
1694  * Emits code to increase stack pointer.
1695  */
1696 static void emit_be_IncSP(const ir_node *irn, ia32_emit_env_t *emit_env) {
1697         FILE          *F    = emit_env->out;
1698         int offs = be_get_IncSP_offset(irn);
1699         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1700
1701         if (offs) {
1702                 if (offs > 0)
1703                         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "sub %1S, %u", irn, offs);
1704                 else
1705                         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "add %1S, %u", irn, -offs);
1706                 lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* %+F (IncSP) */", irn);
1707         }
1708         else {
1709                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, " ");
1710                 lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* omitted %+F (IncSP) with 0 */", irn);
1711         }
1712
1713         IA32_DO_EMIT(irn);
1714 }
1715
1716 /**
1717  * Emits code to set stack pointer.
1718  */
1719 static void emit_be_SetSP(const ir_node *irn, ia32_emit_env_t *emit_env) {
1720         FILE *F = emit_env->out;
1721         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1722
1723         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "mov %1D, %3S", irn, irn);
1724         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* %+F (restore SP) */", irn);
1725         IA32_DO_EMIT(irn);
1726 }
1727
1728 /**
1729  * Emits code for Copy/CopyKeep.
1730  */
1731 static void Copy_emitter(const ir_node *irn, ir_node *op, ia32_emit_env_t *emit_env) {
1732         FILE             *F    = emit_env->out;
1733         const arch_env_t *aenv = emit_env->arch_env;
1734         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1735
1736         if (REGS_ARE_EQUAL(arch_get_irn_register(aenv, irn), arch_get_irn_register(aenv, op)) ||
1737                 be_is_unknown_reg(arch_get_irn_register(aenv, op)))
1738                 return;
1739
1740         if (mode_is_float(get_irn_mode(irn)))
1741                 lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "movs%M %1D, %1S", irn, irn, irn);
1742         else
1743                 lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "mov %1D, %1S", irn, irn);
1744         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* %+F */", irn);
1745         IA32_DO_EMIT(irn);
1746 }
1747
1748 static void emit_be_Copy(const ir_node *irn, ia32_emit_env_t *emit_env) {
1749         Copy_emitter(irn, be_get_Copy_op(irn), emit_env);
1750 }
1751
1752 static void emit_be_CopyKeep(const ir_node *irn, ia32_emit_env_t *emit_env) {
1753         Copy_emitter(irn, be_get_CopyKeep_op(irn), emit_env);
1754 }
1755
1756 /**
1757  * Emits code for exchange.
1758  */
1759 static void emit_be_Perm(const ir_node *irn, ia32_emit_env_t *emit_env) {
1760         FILE *F = emit_env->out;
1761         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1762         const arch_register_t *in1, *in2;
1763         const arch_register_class_t *cls1, *cls2;
1764
1765         in1 = arch_get_irn_register(emit_env->arch_env, get_irn_n(irn, 0));
1766         in2 = arch_get_irn_register(emit_env->arch_env, get_irn_n(irn, 1));
1767
1768         cls1 = arch_register_get_class(in1);
1769         cls2 = arch_register_get_class(in2);
1770
1771         assert(cls1 == cls2 && "Register class mismatch at Perm");
1772
1773         if (cls1 == &ia32_reg_classes[CLASS_ia32_gp]) {
1774                 if(emit_env->isa->opt_arch == arch_athlon) {
1775                         // xchg commands are Vector path on athlons and therefore stall the DirectPath pipeline
1776                         // it is nearly always beneficial to use the 3 xor trick instead of an xchg
1777                         cmnt_buf[0] = 0;
1778                         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "xor %1S, %2S", irn, irn);
1779                         IA32_DO_EMIT(irn);
1780                         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "xor %2S, %1S", irn, irn);
1781                         IA32_DO_EMIT(irn);
1782                         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "xor %1S, %2S", irn, irn);
1783                 } else {
1784                         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "xchg %1S, %2S", irn, irn);
1785                 }
1786         }
1787         else if (cls1 == &ia32_reg_classes[CLASS_ia32_xmm]) {
1788                 lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN,
1789                         "pxor %1S, %2S\n\tpxor %2S, %1S\n\tpxor %1S, %2S", irn, irn, irn, irn, irn, irn);
1790         }
1791         else if (cls1 == &ia32_reg_classes[CLASS_ia32_vfp]) {
1792                 /* is a NOP */
1793                 cmd_buf[0] = '\0';
1794         }
1795         else if (cls1 == &ia32_reg_classes[CLASS_ia32_st]) {
1796                 /* is a NOP */
1797                 cmd_buf[0] = '\0';
1798         }
1799
1800         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "/* %+F(%1A, %2A) */", irn, irn, irn);
1801         IA32_DO_EMIT(irn);
1802 }
1803
1804 /**
1805  * Emits code for Constant loading.
1806  */
1807 static void emit_ia32_Const(const ir_node *n, ia32_emit_env_t *env) {
1808         FILE *F = env->out;
1809         char cmd_buf[256], cmnt_buf[256];
1810         const lc_arg_env_t *arg_env = ia32_get_arg_env();
1811         ir_mode *mode = get_irn_mode(n);
1812         tarval *tv = get_ia32_Immop_tarval(n);
1813
1814         if (get_ia32_op_type(n) == ia32_SymConst) {
1815                 lc_esnprintf(arg_env, cmd_buf, 256, "mov %1D, OFFSET FLAT:%C ", n, n);
1816                 lc_esnprintf(arg_env, cmnt_buf, 256, "/* Move address of SymConst into register */");
1817         } else {
1818                 assert(mode == get_tarval_mode(tv));
1819                 /* beware: in some rare cases mode is mode_b which has no tarval_null() */
1820                 if (tv == get_tarval_b_false() || tv == get_tarval_null(mode)) {
1821                         const char *instr = "xor";
1822                         if (env->isa->opt_arch == arch_pentium_4) {
1823                                 /* P4 prefers sub r, r, others xor r, r */
1824                                 instr = "sub";
1825                         }
1826                         lc_esnprintf(arg_env, cmd_buf, 256, "%s %1D, %1D ", instr, n, n);
1827                         lc_esnprintf(arg_env, cmnt_buf, 256, "/* optimized mov 0 to register */");
1828                 } else {
1829                         lc_esnprintf(arg_env, cmd_buf, 256, "mov %1D, %C ", n, n);
1830                         lc_esnprintf(arg_env, cmnt_buf, 256, "/* Mov Const into register */");
1831                 }
1832         }
1833         lc_efprintf(arg_env, F, "\t%-35s %-60s /* %+F (%+G) */\n", cmd_buf, cmnt_buf, n, n);
1834 }
1835
1836 /**
1837  * Emits code to increase stack pointer.
1838  */
1839 static void emit_ia32_AddSP(const ir_node *irn, ia32_emit_env_t *emit_env) {
1840         FILE *F = emit_env->out;
1841         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1842
1843         if (is_ia32_ImmConst(irn)) {
1844                 lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "sub %1D, %C", irn, irn);
1845         }
1846         else if (is_ia32_ImmSymConst(irn)) {
1847                 if (get_ia32_op_type(irn) == ia32_Normal)
1848                         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "sub %1D, OFFSET_FLAT:%C", irn, irn);
1849                 else /* source address mode */
1850                         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "sub %1D, [%s%s]", irn, get_id_str(get_ia32_am_sc(irn)), get_ia32_am_offs(irn));
1851         }
1852         else {
1853                 lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "sub %1D, %2S", irn, irn);
1854         }
1855         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* reserve space on stack */");
1856
1857         IA32_DO_EMIT(irn);
1858 }
1859
1860 /**
1861  * Emits code to increase stack pointer.
1862  */
1863 static void emit_ia32_SubSP(const ir_node *irn, ia32_emit_env_t *emit_env) {
1864         FILE *F = emit_env->out;
1865         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1866
1867         if (is_ia32_ImmConst(irn)) {
1868                 lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "add %1D, %C", irn, irn);
1869         }
1870         else if (is_ia32_ImmSymConst(irn)) {
1871                 if (get_ia32_op_type(irn) == ia32_Normal)
1872                         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "add %1D, OFFSET_FLAT:%C", irn, irn);
1873                 else /* source address mode */
1874                         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "add %1D, [%s%s]", irn, get_id_str(get_ia32_am_sc(irn)), get_ia32_am_offs(irn));
1875         }
1876         else {
1877                 lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "add %1D, %2S", irn, irn);
1878         }
1879         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* free space on stack */");
1880
1881         IA32_DO_EMIT(irn);
1882 }
1883
1884 /**
1885  * Emits code to load the TLS base
1886  */
1887 static void emit_ia32_LdTls(const ir_node *irn, ia32_emit_env_t *emit_env) {
1888         FILE *F = emit_env->out;
1889         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1890
1891         switch (asm_flavour) {
1892         case ASM_LINUX_GAS:
1893                 lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "mov %1D, DWORD PTR %%gs:0", irn);
1894                 break;
1895         case ASM_MINGW_GAS:
1896                 lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "mov %1D, DWORD PTR %%gs:0", irn);
1897                 break;
1898         default:
1899                 assert(0 && "unsupported TLS");
1900                 break;
1901         }
1902         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* get thread local storage base */");
1903
1904         IA32_DO_EMIT(irn);
1905 }
1906
1907 static void emit_be_Return(const ir_node *n, ia32_emit_env_t *env) {
1908         FILE *F = env->out;
1909         const lc_arg_env_t *arg_env = ia32_get_arg_env();
1910
1911         lc_efprintf(arg_env, F, "\t%-35s %-60s /* %+F (%+G) */\n", "ret", "/* be_Return */", n, n);
1912 }
1913
1914 static void emit_Nothing(const ir_node *n, ia32_emit_env_t *env) {
1915         FILE *F = env->out;
1916
1917         ir_fprintf(F, "\t%35s /* %+F (%+G) */\n", " ", n, n);
1918 }
1919
1920
1921 /***********************************************************************************
1922  *                  _          __                                             _
1923  *                 (_)        / _|                                           | |
1924  *  _ __ ___   __ _ _ _ __   | |_ _ __ __ _ _ __ ___   _____      _____  _ __| | __
1925  * | '_ ` _ \ / _` | | '_ \  |  _| '__/ _` | '_ ` _ \ / _ \ \ /\ / / _ \| '__| |/ /
1926  * | | | | | | (_| | | | | | | | | | | (_| | | | | | |  __/\ V  V / (_) | |  |   <
1927  * |_| |_| |_|\__,_|_|_| |_| |_| |_|  \__,_|_| |_| |_|\___| \_/\_/ \___/|_|  |_|\_\
1928  *
1929  ***********************************************************************************/
1930
1931 /**
1932  * Enters the emitter functions for handled nodes into the generic
1933  * pointer of an opcode.
1934  */
1935 static void ia32_register_emitters(void) {
1936
1937 #define IA32_EMIT2(a,b) op_ia32_##a->ops.generic = (op_func)emit_ia32_##b
1938 #define IA32_EMIT(a)    IA32_EMIT2(a,a)
1939 #define EMIT(a)         op_##a->ops.generic = (op_func)emit_##a
1940 #define IGN(a)                  op_##a->ops.generic = (op_func)emit_Nothing
1941 #define BE_EMIT(a)      op_be_##a->ops.generic = (op_func)emit_be_##a
1942 #define BE_IGN(a)               op_be_##a->ops.generic = (op_func)emit_Nothing
1943
1944         /* first clear the generic function pointer for all ops */
1945         clear_irp_opcodes_generic_func();
1946
1947         /* register all emitter functions defined in spec */
1948         ia32_register_spec_emitters();
1949
1950         /* other ia32 emitter functions */
1951         IA32_EMIT(CondJmp);
1952         IA32_EMIT(TestJmp);
1953         IA32_EMIT(CJmp);
1954         IA32_EMIT(CJmpAM);
1955         IA32_EMIT(CmpCMov);
1956         IA32_EMIT(PsiCondCMov);
1957         IA32_EMIT(CmpSet);
1958         IA32_EMIT(PsiCondSet);
1959         IA32_EMIT(SwitchJmp);
1960         IA32_EMIT(CopyB);
1961         IA32_EMIT(CopyB_i);
1962         IA32_EMIT(Conv_I2FP);
1963         IA32_EMIT(Conv_FP2I);
1964         IA32_EMIT(Conv_FP2FP);
1965         IA32_EMIT(Conv_I2I);
1966         IA32_EMIT(Conv_I2I8Bit);
1967         IA32_EMIT(Const);
1968         IA32_EMIT(AddSP);
1969         IA32_EMIT(SubSP);
1970         IA32_EMIT(LdTls);
1971         IA32_EMIT(xCmp);
1972         IA32_EMIT(xCmpSet);
1973         IA32_EMIT(xCmpCMov);
1974         IA32_EMIT(xCondJmp);
1975         IA32_EMIT2(fcomJmp, x87CondJmp);
1976         IA32_EMIT2(fcompJmp, x87CondJmp);
1977         IA32_EMIT2(fcomppJmp, x87CondJmp);
1978         IA32_EMIT2(fcomrJmp, x87CondJmp);
1979         IA32_EMIT2(fcomrpJmp, x87CondJmp);
1980         IA32_EMIT2(fcomrppJmp, x87CondJmp);
1981
1982         /* benode emitter */
1983         BE_EMIT(Call);
1984         BE_EMIT(IncSP);
1985         BE_EMIT(SetSP);
1986         BE_EMIT(Copy);
1987         BE_EMIT(CopyKeep);
1988         BE_EMIT(Perm);
1989         BE_EMIT(Return);
1990
1991         BE_IGN(RegParams);
1992         BE_IGN(Barrier);
1993         BE_IGN(Keep);
1994
1995         /* firm emitter */
1996         EMIT(Jmp);
1997         EMIT(Proj);
1998         IGN(Phi);
1999         IGN(Start);
2000
2001 #undef BE_EMIT
2002 #undef EMIT
2003 #undef IGN
2004 #undef IA32_EMIT2
2005 #undef IA32_EMIT
2006 }
2007
2008 static const char *last_name = NULL;
2009 static unsigned last_line = -1;
2010 static unsigned num = -1;
2011
2012 /**
2013  * Emit the debug support for node irn.
2014  */
2015 static void ia32_emit_dbg(const ir_node *irn, ia32_emit_env_t *env) {
2016         dbg_info *db = get_irn_dbg_info(irn);
2017         unsigned lineno;
2018         const char *fname = be_retrieve_dbg_info(db, &lineno);
2019
2020         if (fname) {
2021                 if (last_name != fname) {
2022                         last_line = -1;
2023                         be_dbg_include_begin(env->cg->birg->main_env->db_handle, fname);
2024                         last_name = fname;
2025                 }
2026                 if (last_line != lineno) {
2027                         char name[64];
2028                         FILE *F = env->out;
2029
2030                         snprintf(name, sizeof(name), ".LM%u", ++num);
2031                         last_line = lineno;
2032                         be_dbg_line(env->cg->birg->main_env->db_handle, lineno, name);
2033                         fprintf(F, "%s:\n", name);
2034                 }
2035         }
2036 }
2037
2038 /**
2039  * Emits code for a node.
2040  */
2041 static void ia32_emit_node(const ir_node *irn, void *env) {
2042         ia32_emit_env_t   *emit_env = env;
2043         ir_op             *op       = get_irn_op(irn);
2044         DEBUG_ONLY(firm_dbg_module_t *mod = emit_env->mod;)
2045
2046         DBG((mod, LEVEL_1, "emitting code for %+F\n", irn));
2047
2048         if (op->ops.generic) {
2049                 void (*emit)(const ir_node *, void *) = (void (*)(const ir_node *, void *))op->ops.generic;
2050                 ia32_emit_dbg(irn, emit_env);
2051                 (*emit)(irn, env);
2052         }
2053         else {
2054                 emit_Nothing(irn, env);
2055                 ir_fprintf(stderr, "Warning: No emit handler for node %+F (%+G)\n", irn, irn);
2056         }
2057 }
2058
2059 /**
2060  * Emits gas alignment directives
2061  */
2062 static void ia32_emit_alignment(FILE *F, unsigned align, unsigned skip) {
2063         fprintf(F, "\t.p2align %u,,%u\n", align, skip);
2064 }
2065
2066 /**
2067  * Emits gas alignment directives for Functions depended on cpu architecture.
2068  */
2069 static void ia32_emit_align_func(FILE *F, cpu_support cpu) {
2070         unsigned align;
2071         unsigned maximum_skip;
2072
2073         switch (cpu) {
2074                 case arch_i386:
2075                         align = 2;
2076                         break;
2077                 case arch_i486:
2078                         align = 4;
2079                         break;
2080                 case arch_k6:
2081                         align = 5;
2082                         break;
2083                 default:
2084                         align = 4;
2085         }
2086         maximum_skip = (1 << align) - 1;
2087         ia32_emit_alignment(F, align, maximum_skip);
2088 }
2089
2090 /**
2091  * Emits gas alignment directives for Labels depended on cpu architecture.
2092  */
2093 static void ia32_emit_align_label(FILE *F, cpu_support cpu) {
2094         unsigned align; unsigned maximum_skip;
2095
2096         switch (cpu) {
2097                 case arch_i386:
2098                         align = 2;
2099                         break;
2100                 case arch_i486:
2101                         align = 4;
2102                         break;
2103                 case arch_k6:
2104                         align = 5;
2105                         break;
2106                 default:
2107                         align = 4;
2108         }
2109         maximum_skip = (1 << align) - 1;
2110         ia32_emit_alignment(F, align, maximum_skip);
2111 }
2112
2113 static int is_first_loop_block(ir_node *block, ir_node *prev_block, ia32_emit_env_t *env) {
2114         exec_freq_t *execfreqs = env->cg->birg->execfreqs;
2115         double block_freq, prev_freq;
2116         static const double DELTA = .0001;
2117         cpu_support cpu = env->isa->opt_arch;
2118
2119         if(execfreqs == NULL)
2120                 return 0;
2121         if(cpu == arch_i386 || cpu == arch_i486)
2122                 return 0;
2123
2124         block_freq = get_block_execfreq(execfreqs, block);
2125         prev_freq = get_block_execfreq(execfreqs, prev_block);
2126
2127         if(block_freq < DELTA || prev_freq < DELTA)
2128                 return 0;
2129
2130         block_freq /= prev_freq;
2131
2132         switch (cpu) {
2133                 case arch_athlon:
2134                 case arch_athlon_64:
2135                 case arch_k6:
2136                         return block_freq > 3;
2137                 default:
2138                         break;
2139         }
2140
2141         return block_freq > 2;
2142 }
2143
2144 /**
2145  * Walks over the nodes in a block connected by scheduling edges
2146  * and emits code for each node.
2147  */
2148 static void ia32_gen_block(ir_node *block, ir_node *last_block, void *env) {
2149         ia32_emit_env_t *emit_env = env;
2150         const ir_node *irn;
2151         int need_label = block != get_irg_start_block(get_irn_irg(block));
2152         FILE *F = emit_env->out;
2153
2154         if (! is_Block(block))
2155                 return;
2156
2157         if (need_label && (emit_env->cg->opt & IA32_OPT_EXTBB)) {
2158                 /* if the extended block scheduler is used, only leader blocks need
2159                    labels. */
2160                 need_label = (block == get_extbb_leader(get_nodes_extbb(block)));
2161         }
2162
2163         if (need_label) {
2164                 char cmd_buf[SNPRINTF_BUF_LEN];
2165                 int i, arity;
2166                 int align = 1;
2167
2168                 // align the loop headers
2169                 if(!is_first_loop_block(block, last_block, emit_env)) {
2170
2171                         // align blocks where the previous block has no fallthrough
2172                         arity = get_irn_arity(block);
2173                         for(i = 0; i < arity; ++i) {
2174                                 ir_node *predblock = get_Block_cfgpred_block(block, i);
2175                                 if(predblock == last_block) {
2176                                         align = 0;
2177                                         break;
2178                                 }
2179                         }
2180                 }
2181
2182                 if(align)
2183                         ia32_emit_align_label(emit_env->out, emit_env->isa->opt_arch);
2184
2185                 ir_snprintf(cmd_buf, sizeof(cmd_buf), BLOCK_PREFIX("%d:"),
2186                             get_irn_node_nr(block));
2187                 fprintf(F, "%-43s ", cmd_buf);
2188
2189                 /* emit list of pred blocks in comment */
2190                 fprintf(F, "/* preds:");
2191
2192                 arity = get_irn_arity(block);
2193                 for(i = 0; i < arity; ++i) {
2194                         ir_node *predblock = get_Block_cfgpred_block(block, i);
2195                         fprintf(F, " %ld", get_irn_node_nr(predblock));
2196                 }
2197                 fprintf(F, " */\n");
2198         }
2199
2200         /* emit the contents of the block */
2201         ia32_emit_dbg(block, env);
2202         sched_foreach(block, irn) {
2203                 ia32_emit_node(irn, env);
2204         }
2205 }
2206
2207 /**
2208  * Emits code for function start.
2209  */
2210 static void ia32_emit_func_prolog(FILE *F, ir_graph *irg, ia32_emit_env_t *emit_env) {
2211         entity     *irg_ent  = get_irg_entity(irg);
2212         const char *irg_name = get_entity_ld_name(irg_ent);
2213         cpu_support cpu      = emit_env->isa->opt_arch;
2214         const be_irg_t *birg = emit_env->cg->birg;
2215
2216         fprintf(F, "\n");
2217         ia32_switch_section(F, SECTION_TEXT);
2218         be_dbg_method_begin(birg->main_env->db_handle, irg_ent, be_abi_get_stack_layout(birg->abi));
2219         ia32_emit_align_func(F, cpu);
2220         if (get_entity_visibility(irg_ent) == visibility_external_visible) {
2221                 fprintf(F, ".globl %s\n", irg_name);
2222         }
2223         ia32_dump_function_object(F, irg_name);
2224         fprintf(F, "%s:\n", irg_name);
2225 }
2226
2227 /**
2228  * Emits code for function end
2229  */
2230 static void ia32_emit_func_epilog(FILE *F, ir_graph *irg, ia32_emit_env_t *emit_env) {
2231         const char *irg_name = get_entity_ld_name(get_irg_entity(irg));
2232         const be_irg_t *birg = emit_env->cg->birg;
2233
2234         ia32_dump_function_size(F, irg_name);
2235         be_dbg_method_end(birg->main_env->db_handle);
2236         fprintf(F, "\n");
2237 }
2238
2239 /**
2240  * Block-walker:
2241  * Sets labels for control flow nodes (jump target)
2242  * TODO: Jump optimization
2243  */
2244 static void ia32_gen_labels(ir_node *block, void *env) {
2245         ir_node *pred;
2246         int n = get_Block_n_cfgpreds(block);
2247
2248         for (n--; n >= 0; n--) {
2249                 pred = get_Block_cfgpred(block, n);
2250                 set_irn_link(pred, block);
2251         }
2252 }
2253
2254 /**
2255  * Main driver. Emits the code for one routine.
2256  */
2257 void ia32_gen_routine(FILE *F, ir_graph *irg, const ia32_code_gen_t *cg) {
2258         ia32_emit_env_t emit_env;
2259         ir_node *block;
2260         ir_node *last_block = NULL;
2261
2262         emit_env.out      = F;
2263         emit_env.arch_env = cg->arch_env;
2264         emit_env.cg       = cg;
2265         emit_env.isa      = (ia32_isa_t *)cg->arch_env->isa;
2266         FIRM_DBG_REGISTER(emit_env.mod, "firm.be.ia32.emitter");
2267
2268         /* set the global arch_env (needed by print hooks) */
2269         arch_env = cg->arch_env;
2270
2271         ia32_register_emitters();
2272
2273         ia32_emit_func_prolog(F, irg, &emit_env);
2274         irg_block_walk_graph(irg, ia32_gen_labels, NULL, &emit_env);
2275
2276         if ((cg->opt & IA32_OPT_EXTBB) && cg->blk_sched) {
2277                 int i, n = ARR_LEN(cg->blk_sched);
2278
2279                 for (i = 0; i < n;) {
2280                         ir_node *next_bl;
2281
2282                         block   = cg->blk_sched[i];
2283                         ++i;
2284                         next_bl = i < n ? cg->blk_sched[i] : NULL;
2285
2286                         /* set here the link. the emitter expects to find the next block here */
2287                         set_irn_link(block, next_bl);
2288                         ia32_gen_block(block, last_block, &emit_env);
2289                         last_block = block;
2290                 }
2291         }
2292         else {
2293                 /* "normal" block schedule: Note the get_next_block() returns the NUMBER of the block
2294                    in the block schedule. As this number should NEVER be equal the next block,
2295                    we does not need a clear block link here. */
2296
2297                 //irg_walk_blkwise_graph(irg, NULL, ia32_gen_block, &emit_env);
2298                 // TODO
2299         }
2300
2301         ia32_emit_func_epilog(F, irg, &emit_env);
2302 }