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