1af808d26b6791075e4c6385750bacdbeb9c818e
[libfirm] / ir / be / ia32 / ia32_emitter.c
1 /**
2  * This file implements the node emitter.
3  *
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 "ia32_nodes_attr.h"
30 #include "ia32_new_nodes.h"
31 #include "ia32_map_regs.h"
32
33 #ifdef obstack_chunk_alloc
34 # undef obstack_chunk_alloc
35 # define obstack_chunk_alloc xmalloc
36 #else
37 # define obstack_chunk_alloc xmalloc
38 # define obstack_chunk_free free
39 #endif
40
41 #define BLOCK_PREFIX(x) ".L" ## x
42
43 extern int obstack_printf(struct obstack *obst, char *fmt, ...);
44
45 #define SNPRINTF_BUF_LEN 128
46
47 static const arch_env_t *arch_env = NULL;
48
49 /*************************************************************
50  *             _       _    __   _          _
51  *            (_)     | |  / _| | |        | |
52  *  _ __  _ __ _ _ __ | |_| |_  | |__   ___| |_ __   ___ _ __
53  * | '_ \| '__| | '_ \| __|  _| | '_ \ / _ \ | '_ \ / _ \ '__|
54  * | |_) | |  | | | | | |_| |   | | | |  __/ | |_) |  __/ |
55  * | .__/|_|  |_|_| |_|\__|_|   |_| |_|\___|_| .__/ \___|_|
56  * | |                                       | |
57  * |_|                                       |_|
58  *************************************************************/
59
60 /* We always pass the ir_node which is a pointer. */
61 static int ia32_get_arg_type(const lc_arg_occ_t *occ) {
62         return lc_arg_type_ptr;
63 }
64
65
66 /**
67  * Returns the register at in position pos.
68  */
69 static const arch_register_t *get_in_reg(const ir_node *irn, int pos) {
70         ir_node                *op;
71         const arch_register_t  *reg = NULL;
72
73         assert(get_irn_arity(irn) > pos && "Invalid IN position");
74
75         /* The out register of the operator at position pos is the
76            in register we need. */
77         op = get_irn_n(irn, pos);
78
79         reg = arch_get_irn_register(arch_env, op);
80
81         assert(reg && "no in register found");
82         return reg;
83 }
84
85 /**
86  * Returns the register at out position pos.
87  */
88 static const arch_register_t *get_out_reg(const ir_node *irn, int pos) {
89         ir_node                *proj;
90         const arch_register_t  *reg = NULL;
91
92         /* 1st case: irn is not of mode_T, so it has only                 */
93         /*           one OUT register -> good                             */
94         /* 2nd case: irn is of mode_T -> collect all Projs and ask the    */
95         /*           Proj with the corresponding projnum for the register */
96
97         if (get_irn_mode(irn) != mode_T) {
98                 reg = arch_get_irn_register(arch_env, irn);
99         }
100         else if (is_ia32_irn(irn)) {
101                 reg = get_ia32_out_reg(irn, pos);
102         }
103         else {
104                 const ir_edge_t *edge;
105
106                 foreach_out_edge(irn, edge) {
107                         proj = get_edge_src_irn(edge);
108                         assert(is_Proj(proj) && "non-Proj from mode_T node");
109                         if (get_Proj_proj(proj) == pos) {
110                                 reg = arch_get_irn_register(arch_env, proj);
111                                 break;
112                         }
113                 }
114         }
115
116         assert(reg && "no out register found");
117         return reg;
118 }
119
120 enum io_direction {
121   IN_REG,
122   OUT_REG
123 };
124
125 /**
126  * Returns the name of the in register at position pos.
127  */
128 static const char *get_ia32_reg_name(ir_node *irn, int pos, enum io_direction in_out) {
129         const arch_register_t *reg;
130
131         if (in_out == IN_REG) {
132                 reg = get_in_reg(irn, pos);
133         }
134         else {
135                 /* destination address mode nodes don't have outputs */
136                 if (is_ia32_irn(irn) && get_ia32_op_type(irn) == ia32_AddrModeD) {
137                         return "MEM";
138                 }
139
140                 reg = get_out_reg(irn, pos);
141         }
142
143         return arch_register_get_name(reg);
144 }
145
146 /**
147  * Get the register name for a node.
148  */
149 static int ia32_get_reg_name(lc_appendable_t *app,
150     const lc_arg_occ_t *occ, const lc_arg_value_t *arg)
151 {
152         const char *buf;
153         ir_node    *X  = arg->v_ptr;
154         int         nr = occ->width - 1;
155
156         if (!X)
157                 return lc_arg_append(app, occ, "(null)", 6);
158
159         buf = get_ia32_reg_name(X, nr, occ->conversion == 'S' ? IN_REG : OUT_REG);
160
161         return lc_arg_append(app, occ, buf, strlen(buf));
162 }
163
164 /**
165  * Returns the tarval, offset or scale of an ia32 as a string.
166  */
167 static int ia32_const_to_str(lc_appendable_t *app,
168     const lc_arg_occ_t *occ, const lc_arg_value_t *arg)
169 {
170         const char *buf;
171         ir_node    *X = arg->v_ptr;
172
173         if (!X)
174                 return lc_arg_append(app, occ, "(null)", 6);
175
176         if (occ->conversion == 'C') {
177                 buf = get_ia32_cnst(X);
178         }
179         else { /* 'O' */
180                 buf = get_ia32_am_offs(X);
181         }
182
183         return buf ? lc_arg_append(app, occ, buf, strlen(buf)) : 0;
184 }
185
186 /**
187  * Determines the SSE suffix depending on the mode.
188  */
189 static int ia32_get_mode_suffix(lc_appendable_t *app,
190     const lc_arg_occ_t *occ, const lc_arg_value_t *arg)
191 {
192         ir_node *X    = arg->v_ptr;
193         ir_mode *mode = get_irn_mode(X);
194
195         if (mode == mode_T) {
196                 mode = is_ia32_AddrModeS(X) || is_ia32_AddrModeD(X) ? get_ia32_ls_mode(X) : get_ia32_res_mode(X);
197         }
198
199         if (!X)
200                 return lc_arg_append(app, occ, "(null)", 6);
201
202         if (mode_is_float(mode)) {
203                 return lc_appendable_chadd(app, get_mode_size_bits(mode) == 32 ? 's' : 'd');
204         }
205         else {
206
207                 return lc_appendable_chadd(app, mode_is_signed(mode) ? 's' : 'z');
208         }
209 }
210
211 /**
212  * Return the ia32 printf arg environment.
213  * We use the firm environment with some additional handlers.
214  */
215 const lc_arg_env_t *ia32_get_arg_env(void) {
216         static lc_arg_env_t *env = NULL;
217
218         static const lc_arg_handler_t ia32_reg_handler   = { ia32_get_arg_type, ia32_get_reg_name };
219         static const lc_arg_handler_t ia32_const_handler = { ia32_get_arg_type, ia32_const_to_str };
220         static const lc_arg_handler_t ia32_mode_handler  = { ia32_get_arg_type, ia32_get_mode_suffix };
221
222         if(env == NULL) {
223                 /* extend the firm printer */
224                 env = firm_get_arg_env();
225
226                 lc_arg_register(env, "ia32:sreg", 'S', &ia32_reg_handler);
227                 lc_arg_register(env, "ia32:dreg", 'D', &ia32_reg_handler);
228                 lc_arg_register(env, "ia32:cnst", 'C', &ia32_const_handler);
229                 lc_arg_register(env, "ia32:offs", 'O', &ia32_const_handler);
230                 lc_arg_register(env, "ia32:mode", 'M', &ia32_mode_handler);
231         }
232
233         return env;
234 }
235
236 /**
237  * Emits registers and/or address mode of a binary operation.
238  */
239 char *ia32_emit_binop(const ir_node *n, ia32_emit_env_t *env) {
240         static char *buf = NULL;
241
242         /* verify that this function is never called on non-AM supporting operations */
243         //assert(get_ia32_am_support(n) != ia32_am_None && "emit binop expects addressmode support");
244
245 #define PRODUCES_RESULT(n)   \
246         (!(is_ia32_St(n)      || \
247         is_ia32_Store8Bit(n)  || \
248         is_ia32_CondJmp(n)    || \
249         is_ia32_fCondJmp(n)   || \
250         is_ia32_SwitchJmp(n)))
251
252         if (! buf) {
253                 buf = xcalloc(1, SNPRINTF_BUF_LEN);
254         }
255         else {
256                 memset(buf, 0, SNPRINTF_BUF_LEN);
257         }
258
259         switch(get_ia32_op_type(n)) {
260                 case ia32_Normal:
261                         if (get_ia32_cnst(n)) {
262                                 lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%3S, %s", n, get_ia32_cnst(n));
263                         }
264                         else {
265                                 const arch_register_t *in1 = get_in_reg(n, 2);
266                                 const arch_register_t *in2 = get_in_reg(n, 3);
267                                 const arch_register_t *out = PRODUCES_RESULT(n) ? get_out_reg(n, 0) : NULL;
268                                 const arch_register_t *in;
269
270                                 in  = out ? (REGS_ARE_EQUAL(out, in2) ? in1 : in2) : in2;
271                                 out = out ? out : in1;
272
273                                 snprintf(buf, SNPRINTF_BUF_LEN, "%s, %s", \
274                                         arch_register_get_name(out), arch_register_get_name(in));
275                         }
276                         break;
277                 case ia32_AddrModeS:
278                         lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%4S, %s", n, ia32_emit_am(n, env));
279                         break;
280                 case ia32_AddrModeD:
281                         if (get_ia32_cnst(n)) {
282                                 lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%s, %s", ia32_emit_am(n, env), get_ia32_cnst(n));
283                         }
284                         else {
285                                 const arch_register_t *in1 = get_in_reg(n, 2);
286                                 const char *reg_name;
287                                 ir_mode *mode = get_ia32_res_mode(n);
288
289                                 mode = mode ? mode : get_ia32_ls_mode(n);
290
291                                 switch(get_mode_size_bits(mode)) {
292                                         case 8:
293                                                 reg_name = ia32_get_mapped_reg_name(env->isa->regs_8bit, in1);
294                                                 break;
295                                         case 16:
296                                                 reg_name = ia32_get_mapped_reg_name(env->isa->regs_16bit, in1);
297                                                 break;
298                                         case 32:
299                                                 reg_name = arch_register_get_name(in1);
300                                                 break;
301                                         default:
302                                                 assert(0 && "unsupported mode size");
303                                                 break;
304                                 }
305
306                                 lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%s, %s", ia32_emit_am(n, env), reg_name);
307                         }
308                         break;
309                 default:
310                         assert(0 && "unsupported op type");
311         }
312
313 #undef PRODUCES_RESULT
314
315         return buf;
316 }
317
318 /**
319  * Emits registers and/or address mode of a unary operation.
320  */
321 char *ia32_emit_unop(const ir_node *n, ia32_emit_env_t *env) {
322         static char *buf = NULL;
323
324         if (! buf) {
325                 buf = xcalloc(1, SNPRINTF_BUF_LEN);
326         }
327         else {
328                 memset(buf, 0, SNPRINTF_BUF_LEN);
329         }
330
331         switch(get_ia32_op_type(n)) {
332                 case ia32_Normal:
333                         lc_esnprintf(ia32_get_arg_env(), buf, SNPRINTF_BUF_LEN, "%1D", n);
334                         break;
335                 case ia32_am_Dest:
336                         snprintf(buf, SNPRINTF_BUF_LEN, ia32_emit_am(n, env));
337                         break;
338                 default:
339                         assert(0 && "unsupported op type");
340         }
341
342         return buf;
343 }
344
345 /**
346  * Emits address mode.
347  */
348 char *ia32_emit_am(const ir_node *n, ia32_emit_env_t *env) {
349         ia32_am_flavour_t am_flav    = get_ia32_am_flavour(n);
350         int               had_output = 0;
351         char             *s;
352         int               size;
353         static struct obstack *obst  = NULL;
354         ir_mode *mode = get_ia32_ls_mode(n);
355
356         if (! is_ia32_Lea(n))
357                 assert(mode && "AM node must have ls_mode attribute set.");
358
359         if (! obst) {
360                 obst = xcalloc(1, sizeof(*obst));
361         }
362         else {
363                 obstack_free(obst, NULL);
364         }
365
366         /* obstack_free with NULL results in an uninitialized obstack */
367         obstack_init(obst);
368
369         if (mode) {
370                 switch (get_mode_size_bits(mode)) {
371                         case 8:
372                                 obstack_printf(obst, "BYTE ");
373                                 break;
374                         case 16:
375                                 obstack_printf(obst, "WORD ");
376                                 break;
377                         default:
378                                 break;
379                 }
380         }
381
382         obstack_printf(obst, "[");
383
384         if (am_flav & ia32_B) {
385                 lc_eoprintf(ia32_get_arg_env(), obst, "%1S", n);
386                 had_output = 1;
387         }
388
389         if (am_flav & ia32_I) {
390                 if (had_output) {
391                         obstack_printf(obst, "+");
392                 }
393
394                 lc_eoprintf(ia32_get_arg_env(), obst, "%2S", n);
395
396                 if (am_flav & ia32_S) {
397                         obstack_printf(obst, "*%d", 1 << get_ia32_am_scale(n));
398                 }
399
400                 had_output = 1;
401         }
402
403         if (am_flav & ia32_O) {
404                 obstack_printf(obst, get_ia32_am_offs(n));
405         }
406
407         obstack_printf(obst, "] ");
408
409         size        = obstack_object_size(obst);
410         s           = obstack_finish(obst);
411         s[size - 1] = '\0';
412
413         return s;
414 }
415
416
417
418 /**
419  * Formated print of commands and comments.
420  */
421 static void ia32_fprintf_format(FILE *F, char *cmd_buf, char *cmnt_buf) {
422         fprintf(F, "\t%-35s %-60s\n", cmd_buf, cmnt_buf);
423 }
424
425
426
427 /**
428  * Add a number to a prefix. This number will not be used a second time.
429  */
430 static char *get_unique_label(char *buf, size_t buflen, const char *prefix) {
431         static unsigned long id = 0;
432         snprintf(buf, buflen, "%s%lu", prefix, ++id);
433         return buf;
434 }
435
436
437
438 /*************************************************
439  *                 _ _                         _
440  *                (_) |                       | |
441  *   ___ _ __ ___  _| |_    ___ ___  _ __   __| |
442  *  / _ \ '_ ` _ \| | __|  / __/ _ \| '_ \ / _` |
443  * |  __/ | | | | | | |_  | (_| (_) | | | | (_| |
444  *  \___|_| |_| |_|_|\__|  \___\___/|_| |_|\__,_|
445  *
446  *************************************************/
447
448 #undef IA32_DO_EMIT
449 #define IA32_DO_EMIT ia32_fprintf_format(F, cmd_buf, cmnt_buf)
450
451 /*
452  * coding of conditions
453  */
454 struct cmp2conditon_t {
455         const char *name;
456         pn_Cmp      num;
457 };
458
459 /*
460  * positive conditions for signed compares
461  */
462 static const struct cmp2conditon_t cmp2condition_s[] = {
463   { NULL,              pn_Cmp_False },  /* always false */
464   { "e",               pn_Cmp_Eq },     /* == */
465   { "l",               pn_Cmp_Lt },     /* < */
466   { "le",              pn_Cmp_Le },     /* <= */
467   { "g",               pn_Cmp_Gt },     /* > */
468   { "ge",              pn_Cmp_Ge },     /* >= */
469   { "ne",              pn_Cmp_Lg },     /* != */
470   { "ordered",         pn_Cmp_Leg },    /* Floating point: ordered */
471   { "unordered",       pn_Cmp_Uo },     /* FLoting point: unordered */
472   { "unordered or ==", pn_Cmp_Ue },     /* Floating point: unordered or == */
473   { "unordered or <",  pn_Cmp_Ul },     /* Floating point: unordered or < */
474   { "unordered or <=", pn_Cmp_Ule },    /* Floating point: unordered or <= */
475   { "unordered or >",  pn_Cmp_Ug },     /* Floating point: unordered or > */
476   { "unordered or >=", pn_Cmp_Uge },    /* Floating point: unordered or >= */
477   { "unordered or !=", pn_Cmp_Ne },     /* Floating point: unordered or != */
478   { NULL,              pn_Cmp_True },   /* always true */
479 };
480
481 /*
482  * positive conditions for unsigned compares
483  */
484 static const struct cmp2conditon_t cmp2condition_u[] = {
485   { NULL,              pn_Cmp_False },  /* always false */
486   { "e",               pn_Cmp_Eq },     /* == */
487   { "b",               pn_Cmp_Lt },     /* < */
488   { "be",              pn_Cmp_Le },     /* <= */
489   { "a",               pn_Cmp_Gt },     /* > */
490   { "ae",              pn_Cmp_Ge },     /* >= */
491   { "ne",              pn_Cmp_Lg },     /* != */
492   { "ordered",         pn_Cmp_Leg },    /* Floating point: ordered */
493   { "unordered",       pn_Cmp_Uo },     /* FLoting point: unordered */
494   { "unordered or ==", pn_Cmp_Ue },     /* Floating point: unordered or == */
495   { "unordered or <",  pn_Cmp_Ul },     /* Floating point: unordered or < */
496   { "unordered or <=", pn_Cmp_Ule },    /* Floating point: unordered or <= */
497   { "unordered or >",  pn_Cmp_Ug },     /* Floating point: unordered or > */
498   { "unordered or >=", pn_Cmp_Uge },    /* Floating point: unordered or >= */
499   { "unordered or !=", pn_Cmp_Ne },     /* Floating point: unordered or != */
500   { NULL,              pn_Cmp_True },   /* always true */
501 };
502
503 /*
504  * returns the condition code
505  */
506 static const char *get_cmp_suffix(int cmp_code, int unsigned_cmp)
507 {
508         assert(cmp2condition_s[cmp_code].num == cmp_code);
509         assert(cmp2condition_u[cmp_code].num == cmp_code);
510
511         return unsigned_cmp ? cmp2condition_u[cmp_code & 7].name : cmp2condition_s[cmp_code & 7].name;
512 }
513
514 /**
515  * Returns the target block for a control flow node.
516  */
517 static ir_node *get_cfop_target_block(const ir_node *irn) {
518         return get_irn_link(irn);
519 }
520
521 /**
522  * Returns the target label for a control flow node.
523  */
524 static char *get_cfop_target(const ir_node *irn, char *buf) {
525         ir_node *bl = get_cfop_target_block(irn);
526
527         snprintf(buf, SNPRINTF_BUF_LEN, BLOCK_PREFIX("%ld"), get_irn_node_nr(bl));
528         return buf;
529 }
530
531 /**
532  * Emits the jump sequence for a conditional jump (cmp + jmp_true + jmp_false)
533  */
534 static void finish_CondJmp(FILE *F, const ir_node *irn, ir_mode *mode) {
535         const ir_node   *proj1, *proj2 = NULL;
536         const ir_node   *block, *next_bl = NULL;
537         const ir_edge_t *edge;
538         char buf[SNPRINTF_BUF_LEN];
539         char cmd_buf[SNPRINTF_BUF_LEN];
540         char cmnt_buf[SNPRINTF_BUF_LEN];
541
542         /* get both Proj's */
543         edge = get_irn_out_edge_first(irn);
544         proj1 = get_edge_src_irn(edge);
545         assert(is_Proj(proj1) && "CondJmp with a non-Proj");
546
547         edge = get_irn_out_edge_next(irn, edge);
548         if (edge) {
549                 proj2 = get_edge_src_irn(edge);
550                 assert(is_Proj(proj2) && "CondJmp with a non-Proj");
551   }
552
553         /* for now, the code works for scheduled and non-schedules blocks */
554         block = get_nodes_block(irn);
555         if (proj2 && sched_is_scheduled(block)) {
556                 /* we have a block schedule */
557                 next_bl = sched_next(block);
558
559                 if (get_cfop_target_block(proj1) == next_bl) {
560                         /* exchange both proj's so the second one can be omitted */
561                         const ir_node *t = proj1;
562                         proj1 = proj2;
563                         proj2 = t;
564                 }
565         }
566
567         /* the first Proj must always be created */
568         if (get_Proj_proj(proj1) == pn_Cond_true) {
569                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "j%s %s",
570                                         get_cmp_suffix(get_ia32_pncode(irn), !mode_is_signed(get_irn_mode(get_irn_n(irn, 0)))),
571                                         get_cfop_target(proj1, buf));
572                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; cmp(a, b) == TRUE");
573         }
574         else  {
575                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "j%s %s",
576                                         get_cmp_suffix(get_negated_pnc(get_ia32_pncode(irn), mode),
577                                         !mode_is_signed(get_irn_mode(get_irn_n(irn, 0)))),
578                                         get_cfop_target(proj1, buf));
579                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; cmp(a, b) == FALSE");
580         }
581         IA32_DO_EMIT;
582
583         /* the second Proj might be a fallthrough */
584         if (proj2) {
585                 if (get_cfop_target_block(proj2) != next_bl) {
586                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "jmp %s", get_cfop_target(proj2, buf));
587                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; otherwise");
588                 }
589                 else {
590                         cmd_buf[0] = '\0';
591                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; fallthrogh %s", get_cfop_target(proj2, buf));
592                 }
593                 IA32_DO_EMIT;
594         }
595 }
596
597 /**
598  * Emits code for conditional jump.
599  */
600 static void CondJmp_emitter(const ir_node *irn, ia32_emit_env_t *env) {
601         FILE *F = env->out;
602         char cmd_buf[SNPRINTF_BUF_LEN];
603         char cmnt_buf[SNPRINTF_BUF_LEN];
604
605         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "cmp %s", ia32_emit_binop(irn, env));
606         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F", irn);
607         IA32_DO_EMIT;
608         finish_CondJmp(F, irn, get_irn_mode(get_irn_n(irn, 2)));
609 }
610
611 /**
612  * Emits code for conditional jump with two variables.
613  */
614 static void emit_ia32_CondJmp(const ir_node *irn, ia32_emit_env_t *env) {
615         CondJmp_emitter(irn, env);
616 }
617
618 /**
619  * Emits code for conditional jump with immediate.
620  */
621 void emit_ia32_CondJmp_i(const ir_node *irn, ia32_emit_env_t *env) {
622         CondJmp_emitter(irn, env);
623 }
624
625 /**
626  * Emits code for conditional test and jump.
627  */
628 static void TestJmp_emitter(const ir_node *irn, ia32_emit_env_t *env) {
629         FILE *F = env->out;
630         char cmd_buf[SNPRINTF_BUF_LEN];
631         char cmnt_buf[SNPRINTF_BUF_LEN];
632         const char *op1 = arch_register_get_name(get_in_reg(irn, 0));
633   const char *op2 = get_ia32_cnst(irn);
634
635   if (! op2)
636                 op2 = arch_register_get_name(get_in_reg(irn, 1));
637
638         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "test %s, %s ", op1, op2);
639         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F", irn);
640         IA32_DO_EMIT;
641         finish_CondJmp(F, irn, get_irn_mode(get_irn_n(irn, 0)));
642 }
643
644 /**
645  * Emits code for conditional test and jump with two variables.
646  */
647 static void emit_ia32_TestJmp(const ir_node *irn, ia32_emit_env_t *env) {
648         TestJmp_emitter(irn, env);
649 }
650
651 /**
652  * Emits code for conditional test and jump with immediate.
653  */
654 static void emit_ia32_TestJmp_i(const ir_node *irn, ia32_emit_env_t *env) {
655         TestJmp_emitter(irn, env);
656 }
657
658 /*********************************************************
659  *                 _ _       _
660  *                (_) |     (_)
661  *   ___ _ __ ___  _| |_     _ _   _ _ __ ___  _ __  ___
662  *  / _ \ '_ ` _ \| | __|   | | | | | '_ ` _ \| '_ \/ __|
663  * |  __/ | | | | | | |_    | | |_| | | | | | | |_) \__ \
664  *  \___|_| |_| |_|_|\__|   | |\__,_|_| |_| |_| .__/|___/
665  *                         _/ |               | |
666  *                        |__/                |_|
667  *********************************************************/
668
669 /* jump table entry (target and corresponding number) */
670 typedef struct _branch_t {
671         ir_node *target;
672         int      value;
673 } branch_t;
674
675 /* jump table for switch generation */
676 typedef struct _jmp_tbl_t {
677         ir_node  *defProj;         /**< default target */
678         int       min_value;       /**< smallest switch case */
679         int       max_value;       /**< largest switch case */
680         int       num_branches;    /**< number of jumps */
681         char     *label;           /**< label of the jump table */
682         branch_t *branches;        /**< jump array */
683 } jmp_tbl_t;
684
685 /**
686  * Compare two variables of type branch_t. Used to sort all switch cases
687  */
688 static int ia32_cmp_branch_t(const void *a, const void *b) {
689         branch_t *b1 = (branch_t *)a;
690         branch_t *b2 = (branch_t *)b;
691
692         if (b1->value <= b2->value)
693                 return -1;
694         else
695                 return 1;
696 }
697
698 /**
699  * Emits code for a SwitchJmp (creates a jump table if
700  * possible otherwise a cmp-jmp cascade). Port from
701  * cggg ia32 backend
702  */
703 void emit_ia32_SwitchJmp(const ir_node *irn, ia32_emit_env_t *emit_env) {
704         unsigned long       interval;
705         char                buf[SNPRINTF_BUF_LEN];
706         int                 last_value, i, pn, do_jmp_tbl = 1;
707         jmp_tbl_t           tbl;
708         ir_node            *proj;
709         const ir_edge_t    *edge;
710         const lc_arg_env_t *env = ia32_get_arg_env();
711         FILE               *F   = emit_env->out;
712         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
713
714         /* fill the table structure */
715         tbl.label        = xmalloc(SNPRINTF_BUF_LEN);
716         tbl.label        = get_unique_label(tbl.label, SNPRINTF_BUF_LEN, "JMPTBL_");
717         tbl.defProj      = NULL;
718         tbl.num_branches = get_irn_n_edges(irn);
719         tbl.branches     = xcalloc(tbl.num_branches, sizeof(tbl.branches[0]));
720         tbl.min_value    = INT_MAX;
721         tbl.max_value    = INT_MIN;
722
723         i = 0;
724         /* go over all proj's and collect them */
725         foreach_out_edge(irn, edge) {
726                 proj = get_edge_src_irn(edge);
727                 assert(is_Proj(proj) && "Only proj allowed at SwitchJmp");
728
729                 pn = get_Proj_proj(proj);
730
731                 /* create branch entry */
732                 tbl.branches[i].target = proj;
733                 tbl.branches[i].value  = pn;
734
735                 tbl.min_value = pn < tbl.min_value ? pn : tbl.min_value;
736                 tbl.max_value = pn > tbl.max_value ? pn : tbl.max_value;
737
738                 /* check for default proj */
739                 if (pn == get_ia32_pncode(irn)) {
740                         assert(tbl.defProj == NULL && "found two defProjs at SwitchJmp");
741                         tbl.defProj = proj;
742                 }
743
744                 i++;
745         }
746
747         /* sort the branches by their number */
748         qsort(tbl.branches, tbl.num_branches, sizeof(tbl.branches[0]), ia32_cmp_branch_t);
749
750         /* two-complement's magic make this work without overflow */
751         interval = tbl.max_value - tbl.min_value;
752
753         /* check value interval */
754         if (interval > 16 * 1024) {
755                 do_jmp_tbl = 0;
756         }
757
758         /* check ratio of value interval to number of branches */
759         if ((float)(interval + 1) / (float)tbl.num_branches > 8.0) {
760                 do_jmp_tbl = 0;
761         }
762
763         if (do_jmp_tbl) {
764                 /* emit the table */
765                 if (tbl.min_value != 0) {
766                         lc_esnprintf(env, cmd_buf, SNPRINTF_BUF_LEN, "cmpl %lu, -%d(%1S)",
767                                 interval, tbl.min_value, irn);
768                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; first switch value is not 0");
769
770                         IA32_DO_EMIT;
771                 }
772                 else {
773                         lc_esnprintf(env, cmd_buf, SNPRINTF_BUF_LEN, "cmpl %lu, %1S", interval, irn);
774                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; compare for switch");
775
776                         IA32_DO_EMIT;
777                 }
778
779                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "ja %s", get_cfop_target(tbl.defProj, buf));
780                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; default jump if out of range ");
781                 IA32_DO_EMIT;
782
783                 if (tbl.num_branches > 1) {
784                         /* create table */
785
786                         lc_esnprintf(env, cmd_buf, SNPRINTF_BUF_LEN, "jmp [%1S*4+%s]", irn, tbl.label);
787                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; get jump table entry as target");
788                         IA32_DO_EMIT;
789
790                         fprintf(F, "\t.section\t.rodata\n");
791                         fprintf(F, "\t.align 4\n");
792
793                         fprintf(F, "%s:\n", tbl.label);
794
795                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, ".long %s", get_cfop_target(tbl.branches[0].target, buf));
796                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* case %d */\n",  tbl.branches[0].value);
797                         IA32_DO_EMIT;
798
799                         last_value = tbl.branches[0].value;
800                         for (i = 1; i < tbl.num_branches; ++i) {
801                                 while (++last_value < tbl.branches[i].value) {
802                                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, ".long %s", get_cfop_target(tbl.defProj, buf));
803                                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; default case");
804                                         IA32_DO_EMIT;
805                                 }
806                                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, ".long %s", get_cfop_target(tbl.branches[i].target, buf), last_value);
807                                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; case %d", last_value);
808                                 IA32_DO_EMIT;
809                         }
810
811                         fprintf(F, "\t.text");
812                 }
813                 else {
814                         /* one jump is enough */
815                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "jmp %s", get_cfop_target(tbl.branches[0].target, buf));
816                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; only one case given");
817                         IA32_DO_EMIT;
818                 }
819         }
820         else { // no jump table
821                 for (i = 0; i < tbl.num_branches; ++i) {
822                         lc_esnprintf(env, cmd_buf, SNPRINTF_BUF_LEN, "cmpl %d, %1S", tbl.branches[i].value, irn);
823                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; case %d", i);
824                         IA32_DO_EMIT;
825                         fprintf(F, "\tje %s\n", get_cfop_target(tbl.branches[i].target, buf));
826                 }
827
828                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "jmp %s", get_cfop_target(tbl.defProj, buf));
829                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; default case");
830                 IA32_DO_EMIT;
831         }
832
833         if (tbl.label)
834                 free(tbl.label);
835         if (tbl.branches)
836                 free(tbl.branches);
837 }
838
839 /**
840  * Emits code for a unconditional jump.
841  */
842 void emit_Jmp(const ir_node *irn, ia32_emit_env_t *env) {
843         ir_node *block, *next_bl = NULL;
844         FILE *F = env->out;
845         char buf[SNPRINTF_BUF_LEN], cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
846
847         /* for now, the code works for scheduled and non-schedules blocks */
848         block = get_nodes_block(irn);
849         if (sched_is_scheduled(block)) {
850                 /* we have a block schedule */
851                 next_bl = sched_next(block);
852         }
853
854         if (get_cfop_target_block(irn) != next_bl) {
855                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "jmp %s", get_cfop_target(irn, buf));
856                 lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F(%+F)", irn, get_cfop_target_block(irn));
857         }
858         else {
859                 cmd_buf[0] = '\0';
860                 lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; fallthrough %s", get_cfop_target(irn, buf));
861         }
862         IA32_DO_EMIT;
863 }
864
865
866
867 /****************************
868  *                  _
869  *                 (_)
870  *  _ __  _ __ ___  _  ___
871  * | '_ \| '__/ _ \| |/ __|
872  * | |_) | | | (_) | |\__ \
873  * | .__/|_|  \___/| ||___/
874  * | |            _/ |
875  * |_|           |__/
876  ****************************/
877
878 /**
879  * Emits code for a proj -> node
880  */
881 void emit_Proj(const ir_node *irn, ia32_emit_env_t *env) {
882         ir_node *pred = get_Proj_pred(irn);
883
884         if (get_irn_op(pred) == op_Start) {
885                 switch(get_Proj_proj(irn)) {
886                         case pn_Start_X_initial_exec:
887                                 emit_Jmp(irn, env);
888                                 break;
889                         default:
890                                 break;
891                 }
892         }
893 }
894
895 /**********************************
896  *   _____                  ____
897  *  / ____|                |  _ \
898  * | |     ___  _ __  _   _| |_) |
899  * | |    / _ \| '_ \| | | |  _ <
900  * | |___| (_) | |_) | |_| | |_) |
901  *  \_____\___/| .__/ \__, |____/
902  *             | |     __/ |
903  *             |_|    |___/
904  **********************************/
905
906 /**
907  * Emit movsb/w instructions to make mov count divideable by 4
908  */
909 static void emit_CopyB_prolog(FILE *F, int rem, int size) {
910         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
911
912         fprintf(F, "\t/* memcopy %d bytes*/\n", size);
913
914         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "cld");
915         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* copy direction forward*/");
916         IA32_DO_EMIT;
917
918         switch(rem) {
919                 case 1:
920                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "movsb");
921                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; memcopy remainder 1");
922                         break;
923                 case 2:
924                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "movsw");
925                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; memcopy remainder 2");
926                         break;
927                 case 3:
928                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "movsb");
929                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; memcopy remainder 3");
930                         IA32_DO_EMIT;
931                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "movsw");
932                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; memcopy remainder 3");
933                         break;
934         }
935
936         IA32_DO_EMIT;
937 }
938
939 /**
940  * Emit rep movsd instruction for memcopy.
941  */
942 void emit_ia32_CopyB(const ir_node *irn, ia32_emit_env_t *emit_env) {
943         FILE   *F    = emit_env->out;
944         tarval *tv   = get_ia32_Immop_tarval(irn);
945         int     rem  = get_tarval_long(tv);
946         int     size = get_tarval_long(get_ia32_Immop_tarval(get_irn_n(irn, 2)));
947         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
948
949         emit_CopyB_prolog(F, rem, size);
950
951         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "rep movsd");
952         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; memcopy");
953         IA32_DO_EMIT;
954 }
955
956 /**
957  * Emits unrolled memcopy.
958  */
959 void emit_ia32_CopyB_i(const ir_node *irn, ia32_emit_env_t *emit_env) {
960         tarval *tv   = get_ia32_Immop_tarval(irn);
961         int     size = get_tarval_long(tv);
962         FILE   *F    = emit_env->out;
963         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
964
965         emit_CopyB_prolog(F, size & 0x3, size);
966
967         size >>= 2;
968         while (size--) {
969                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "movsd");
970                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; memcopy unrolled");
971                 IA32_DO_EMIT;
972         }
973 }
974
975
976
977 /***************************
978  *   _____
979  *  / ____|
980  * | |     ___  _ ____   __
981  * | |    / _ \| '_ \ \ / /
982  * | |___| (_) | | | \ V /
983  *  \_____\___/|_| |_|\_/
984  *
985  ***************************/
986
987 /**
988  * Emit code for conversions (I, FP), (FP, I) and (FP, FP).
989  */
990 static void emit_ia32_Conv(const ir_node *irn, ia32_emit_env_t *emit_env) {
991         FILE               *F    = emit_env->out;
992         const lc_arg_env_t *env  = ia32_get_arg_env();
993         char               *from, *to, buf[64];
994         ir_mode *src_mode, *tgt_mode;
995         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
996
997         src_mode = is_ia32_AddrModeS(irn) ? get_ia32_ls_mode(irn) : get_irn_mode(get_irn_n(irn, 2));
998         tgt_mode = get_ia32_res_mode(irn);
999
1000         from = mode_is_float(src_mode) ? (get_mode_size_bits(src_mode) == 32 ? "ss" : "sd") : "si";
1001         to   = mode_is_float(tgt_mode) ? (get_mode_size_bits(tgt_mode) == 32 ? "ss" : "sd") : "si";
1002
1003         switch(get_ia32_op_type(irn)) {
1004                 case ia32_Normal:
1005                         lc_esnprintf(env, buf, sizeof(buf), "%1D, %3S", irn, irn);
1006                         break;
1007                 case ia32_AddrModeS:
1008                         lc_esnprintf(env, buf, sizeof(buf), "%1D, %s", irn, ia32_emit_am(irn, emit_env));
1009                         break;
1010                 default:
1011                         assert(0 && "unsupported op type for Conv");
1012         }
1013
1014         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "cvt%s2%s %s", from, to, buf);
1015         lc_esnprintf(env, cmnt_buf, SNPRINTF_BUF_LEN, "; %+F(%+F, %+F)", irn, src_mode, tgt_mode);
1016         IA32_DO_EMIT;
1017 }
1018
1019 void emit_ia32_Conv_I2FP(const ir_node *irn, ia32_emit_env_t *emit_env) {
1020         emit_ia32_Conv(irn, emit_env);
1021 }
1022
1023 void emit_ia32_Conv_FP2I(const ir_node *irn, ia32_emit_env_t *emit_env) {
1024         emit_ia32_Conv(irn, emit_env);
1025 }
1026
1027 void emit_ia32_Conv_FP2FP(const ir_node *irn, ia32_emit_env_t *emit_env) {
1028         emit_ia32_Conv(irn, emit_env);
1029 }
1030
1031
1032
1033 /*******************************************
1034  *  _                          _
1035  * | |                        | |
1036  * | |__   ___ _ __   ___   __| | ___  ___
1037  * | '_ \ / _ \ '_ \ / _ \ / _` |/ _ \/ __|
1038  * | |_) |  __/ | | | (_) | (_| |  __/\__ \
1039  * |_.__/ \___|_| |_|\___/ \__,_|\___||___/
1040  *
1041  *******************************************/
1042
1043 /**
1044  * Emits a backend call
1045  */
1046 void emit_be_Call(const ir_node *irn, ia32_emit_env_t *emit_env) {
1047         FILE *F = emit_env->out;
1048         entity *ent = be_Call_get_entity(irn);
1049         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1050
1051         if (ent) {
1052                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "call %s", get_entity_name(ent));
1053         }
1054         else {
1055                 lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "%1D", get_irn_n(irn, be_pos_Call_ptr));
1056         }
1057
1058         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F (be_Call)", irn);
1059
1060         IA32_DO_EMIT;
1061 }
1062
1063 /**
1064  * Emits code to increase stack pointer.
1065  */
1066 void emit_be_IncSP(const ir_node *irn, ia32_emit_env_t *emit_env) {
1067         FILE          *F    = emit_env->out;
1068         unsigned       offs = be_get_IncSP_offset(irn);
1069         be_stack_dir_t dir  = be_get_IncSP_direction(irn);
1070         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1071
1072         if (offs) {
1073                 lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "add %1S,%s%u", irn,
1074                         (dir == be_stack_dir_along) ? " -" : " ", offs);
1075                 lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F (IncSP)", irn);
1076         }
1077         else {
1078                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, " ");
1079                 lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; omitted %+F (IncSP) with 0", irn);
1080         }
1081
1082         IA32_DO_EMIT;
1083 }
1084
1085 /**
1086  * Emits code to set stack pointer.
1087  */
1088 void emit_be_SetSP(const ir_node *irn, ia32_emit_env_t *emit_env) {
1089         FILE *F = emit_env->out;
1090         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1091
1092         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "mov %1D, %3S", irn, irn);
1093         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F (restore SP)", irn);
1094         IA32_DO_EMIT;
1095 }
1096
1097 /**
1098  * Emits code for Copy.
1099  */
1100 void emit_be_Copy(const ir_node *irn, ia32_emit_env_t *emit_env) {
1101         FILE *F = emit_env->out;
1102         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1103
1104         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "mov %1D, %1S", irn, irn);
1105         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F", irn);
1106         IA32_DO_EMIT;
1107 }
1108
1109 /**
1110  * Emits code for exchange.
1111  */
1112 void emit_be_Perm(const ir_node *irn, ia32_emit_env_t *emit_env) {
1113         FILE *F = emit_env->out;
1114         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1115
1116         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "xchg %1S, %2S", irn, irn);
1117         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F(%1A, %2A)", irn, irn, irn);
1118         IA32_DO_EMIT;
1119 }
1120
1121 /***********************************************************************************
1122  *                  _          __                                             _
1123  *                 (_)        / _|                                           | |
1124  *  _ __ ___   __ _ _ _ __   | |_ _ __ __ _ _ __ ___   _____      _____  _ __| | __
1125  * | '_ ` _ \ / _` | | '_ \  |  _| '__/ _` | '_ ` _ \ / _ \ \ /\ / / _ \| '__| |/ /
1126  * | | | | | | (_| | | | | | | | | | | (_| | | | | | |  __/\ V  V / (_) | |  |   <
1127  * |_| |_| |_|\__,_|_|_| |_| |_| |_|  \__,_|_| |_| |_|\___| \_/\_/ \___/|_|  |_|\_\
1128  *
1129  ***********************************************************************************/
1130
1131 /**
1132  * Enters the emitter functions for handled nodes into the generic
1133  * pointer of an opcode.
1134  */
1135 static void ia32_register_emitters(void) {
1136
1137 #define IA32_EMIT(a) op_ia32_##a->ops.generic = (op_func)emit_ia32_##a
1138 #define EMIT(a)      op_##a->ops.generic = (op_func)emit_##a
1139 #define BE_EMIT(a)   op_be_##a->ops.generic = (op_func)emit_be_##a
1140
1141         /* first clear the generic function pointer for all ops */
1142         clear_irp_opcodes_generic_func();
1143
1144         /* register all emitter functions defined in spec */
1145         ia32_register_spec_emitters();
1146
1147         /* other ia32 emitter functions */
1148         IA32_EMIT(CondJmp);
1149         IA32_EMIT(TestJmp);
1150         IA32_EMIT(SwitchJmp);
1151         IA32_EMIT(CopyB);
1152         IA32_EMIT(CopyB_i);
1153         IA32_EMIT(Conv_I2FP);
1154         IA32_EMIT(Conv_FP2I);
1155         IA32_EMIT(Conv_FP2FP);
1156
1157         /* benode emitter */
1158         BE_EMIT(Call);
1159         BE_EMIT(IncSP);
1160         BE_EMIT(SetSP);
1161         BE_EMIT(Copy);
1162         BE_EMIT(Perm);
1163
1164         /* firm emitter */
1165         EMIT(Jmp);
1166         EMIT(Proj);
1167
1168 #undef IA32_EMIT
1169 #undef BE_EMIT
1170 #undef EMIT
1171 }
1172
1173 /**
1174  * Emits code for a node.
1175  */
1176 static void ia32_emit_node(const ir_node *irn, void *env) {
1177         ia32_emit_env_t        *emit_env = env;
1178         firm_dbg_module_t *mod      = emit_env->mod;
1179         FILE              *F        = emit_env->out;
1180         ir_op             *op       = get_irn_op(irn);
1181
1182         DBG((mod, LEVEL_1, "emitting code for %+F\n", irn));
1183
1184         if (op->ops.generic) {
1185                 void (*emit)(const ir_node *, void *) = (void (*)(const ir_node *, void *))op->ops.generic;
1186                 (*emit)(irn, env);
1187         }
1188         else {
1189                 ir_fprintf(F, "\t%35s ; %+F \n", " ", irn);
1190         }
1191 }
1192
1193 /**
1194  * Walks over the nodes in a block connected by scheduling edges
1195  * and emits code for each node.
1196  */
1197 static void ia32_gen_block(ir_node *block, void *env) {
1198         const ir_node *irn;
1199
1200         if (! is_Block(block))
1201                 return;
1202
1203         fprintf(((ia32_emit_env_t *)env)->out, BLOCK_PREFIX("%ld:\n"), get_irn_node_nr(block));
1204         sched_foreach(block, irn) {
1205                 ia32_emit_node(irn, env);
1206         }
1207 }
1208
1209 /**
1210  * Emits code for function start.
1211  */
1212 static void ia32_emit_func_prolog(FILE *F, ir_graph *irg) {
1213         entity     *irg_ent  = get_irg_entity(irg);
1214         const char *irg_name = get_entity_name(irg_ent);
1215
1216         fprintf(F, "\tsection .text\n");
1217         if (get_entity_visibility(irg_ent) == visibility_external_visible) {
1218                 fprintf(F, "global %s\n", irg_name);
1219         }
1220 //      fprintf(F, "\t.type\t%s, @function\n", irg_name);
1221         fprintf(F, "%s:\n", irg_name);
1222 }
1223
1224 /**
1225  * Emits code for function end
1226  */
1227 static void ia32_emit_func_epilog(FILE *F, ir_graph *irg) {
1228         const char *irg_name = get_entity_name(get_irg_entity(irg));
1229
1230         fprintf(F, "\tret\n\n");
1231         //printf(F, "\t.size\t%s, .-%s\n\n", irg_name, irg_name);
1232 }
1233
1234 /**
1235  * Sets labels for control flow nodes (jump target)
1236  * TODO: Jump optimization
1237  */
1238 static void ia32_gen_labels(ir_node *block, void *env) {
1239         ir_node *pred;
1240         int n = get_Block_n_cfgpreds(block);
1241
1242         for (n--; n >= 0; n--) {
1243                 pred = get_Block_cfgpred(block, n);
1244                 set_irn_link(pred, block);
1245         }
1246 }
1247
1248 /**
1249  * Main driver. Emits the code for one routine.
1250  */
1251 void ia32_gen_routine(FILE *F, ir_graph *irg, const ia32_code_gen_t *cg) {
1252         ia32_emit_env_t emit_env;
1253
1254         emit_env.mod      = firm_dbg_register("ir.be.codegen.ia32");
1255         emit_env.out      = F;
1256         emit_env.arch_env = cg->arch_env;
1257         emit_env.cg       = cg;
1258         emit_env.isa      = (ia32_isa_t *)cg->arch_env->isa;
1259
1260         /* set the global arch_env (needed by print hooks) */
1261         arch_env = cg->arch_env;
1262
1263         ia32_register_emitters();
1264
1265         ia32_emit_func_prolog(F, irg);
1266         irg_block_walk_graph(irg, ia32_gen_labels, NULL, &emit_env);
1267         irg_walk_blkwise_graph(irg, NULL, ia32_gen_block, &emit_env);
1268
1269         ia32_emit_func_epilog(F, irg);
1270 }