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