Handle TestJmp with Immediate
[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.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 label for a control flow node.
516  */
517 static char *get_cfop_target(const ir_node *irn, char *buf) {
518         ir_node *bl = get_irn_link(irn);
519
520         snprintf(buf, SNPRINTF_BUF_LEN, BLOCK_PREFIX("%ld"), get_irn_node_nr(bl));
521         return buf;
522 }
523
524 /**
525  * Emits the jump sequence for a conditional jump (cmp + jmp_true + jmp_false)
526  */
527 static void finish_CondJmp(FILE *F, const ir_node *irn) {
528         const ir_node   *proj;
529         const ir_edge_t *edge;
530         char buf[SNPRINTF_BUF_LEN];
531         char cmd_buf[SNPRINTF_BUF_LEN];
532         char cmnt_buf[SNPRINTF_BUF_LEN];
533
534         edge = get_irn_out_edge_first(irn);
535         proj = get_edge_src_irn(edge);
536         assert(is_Proj(proj) && "CondJmp with a non-Proj");
537
538         if (get_Proj_proj(proj) == pn_Cmp_True) {
539                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "j%s %s",
540                                         get_cmp_suffix(get_ia32_pncode(irn), !mode_is_signed(get_irn_mode(get_irn_n(irn, 0)))),
541                                         get_cfop_target(proj, buf));
542                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; cmp(a, b) == TRUE");
543         }
544         else  {
545                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "jn%s %s",
546                                         get_cmp_suffix(get_ia32_pncode(irn), !mode_is_signed(get_irn_mode(get_irn_n(irn, 0)))),
547                                         get_cfop_target(proj, buf));
548                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; cmp(a, b) == FALSE");
549         }
550
551         IA32_DO_EMIT;
552
553         edge = get_irn_out_edge_next(irn, edge);
554         if (edge) {
555                 proj = get_edge_src_irn(edge);
556                 assert(is_Proj(proj) && "CondJmp with a non-Proj");
557                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "jmp %s", get_cfop_target(proj, buf));
558                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; otherwise");
559
560                 IA32_DO_EMIT;
561         }
562 }
563
564 /**
565  * Emits code for conditional jump.
566  */
567 static void CondJmp_emitter(const ir_node *irn, ia32_emit_env_t *env) {
568         FILE *F = env->out;
569         char cmd_buf[SNPRINTF_BUF_LEN];
570         char cmnt_buf[SNPRINTF_BUF_LEN];
571
572         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "cmp %s", ia32_emit_binop(irn, env));
573         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F", irn);
574         IA32_DO_EMIT;
575         finish_CondJmp(F, irn);
576 }
577
578 /**
579  * Emits code for conditional jump with two variables.
580  */
581 static void emit_ia32_CondJmp(const ir_node *irn, ia32_emit_env_t *env) {
582         CondJmp_emitter(irn, env);
583 }
584
585 /**
586  * Emits code for conditional jump with immediate.
587  */
588 void emit_ia32_CondJmp_i(const ir_node *irn, ia32_emit_env_t *env) {
589         CondJmp_emitter(irn, env);
590 }
591
592 /**
593  * Emits code for conditional test and jump.
594  */
595 static void TestJmp_emitter(const ir_node *irn, ia32_emit_env_t *env) {
596         FILE *F = env->out;
597         char cmd_buf[SNPRINTF_BUF_LEN];
598         char cmnt_buf[SNPRINTF_BUF_LEN];
599         const char *op1 = arch_register_get_name(get_in_reg(irn, 0));
600   const char *op2 = get_ia32_cnst(irn);
601
602   if (! op2)
603                 op2 = arch_register_get_name(get_in_reg(irn, 1));
604
605         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "test %s, %s ", op1, op2);
606         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F", irn);
607         IA32_DO_EMIT;
608         finish_CondJmp(F, irn);
609 }
610
611 /**
612  * Emits code for conditional test and jump with two variables.
613  */
614 static void emit_ia32_TestJmp(const ir_node *irn, ia32_emit_env_t *env) {
615         TestJmp_emitter(irn, env);
616 }
617
618 /**
619  * Emits code for conditional test and jump with immediate.
620  */
621 static void emit_ia32_TestJmp_i(const ir_node *irn, ia32_emit_env_t *env) {
622         TestJmp_emitter(irn, env);
623 }
624
625 /*********************************************************
626  *                 _ _       _
627  *                (_) |     (_)
628  *   ___ _ __ ___  _| |_     _ _   _ _ __ ___  _ __  ___
629  *  / _ \ '_ ` _ \| | __|   | | | | | '_ ` _ \| '_ \/ __|
630  * |  __/ | | | | | | |_    | | |_| | | | | | | |_) \__ \
631  *  \___|_| |_| |_|_|\__|   | |\__,_|_| |_| |_| .__/|___/
632  *                         _/ |               | |
633  *                        |__/                |_|
634  *********************************************************/
635
636 /* jump table entry (target and corresponding number) */
637 typedef struct _branch_t {
638         ir_node *target;
639         int      value;
640 } branch_t;
641
642 /* jump table for switch generation */
643 typedef struct _jmp_tbl_t {
644         ir_node  *defProj;         /**< default target */
645         int       min_value;       /**< smallest switch case */
646         int       max_value;       /**< largest switch case */
647         int       num_branches;    /**< number of jumps */
648         char     *label;           /**< label of the jump table */
649         branch_t *branches;        /**< jump array */
650 } jmp_tbl_t;
651
652 /**
653  * Compare two variables of type branch_t. Used to sort all switch cases
654  */
655 static int ia32_cmp_branch_t(const void *a, const void *b) {
656         branch_t *b1 = (branch_t *)a;
657         branch_t *b2 = (branch_t *)b;
658
659         if (b1->value <= b2->value)
660                 return -1;
661         else
662                 return 1;
663 }
664
665 /**
666  * Emits code for a SwitchJmp (creates a jump table if
667  * possible otherwise a cmp-jmp cascade). Port from
668  * cggg ia32 backend
669  */
670 void emit_ia32_SwitchJmp(const ir_node *irn, ia32_emit_env_t *emit_env) {
671         unsigned long       interval;
672         char                buf[SNPRINTF_BUF_LEN];
673         int                 last_value, i, pn, do_jmp_tbl = 1;
674         jmp_tbl_t           tbl;
675         ir_node            *proj;
676         const ir_edge_t    *edge;
677         const lc_arg_env_t *env = ia32_get_arg_env();
678         FILE               *F   = emit_env->out;
679         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
680
681         /* fill the table structure */
682         tbl.label        = xmalloc(SNPRINTF_BUF_LEN);
683         tbl.label        = get_unique_label(tbl.label, SNPRINTF_BUF_LEN, "JMPTBL_");
684         tbl.defProj      = NULL;
685         tbl.num_branches = get_irn_n_edges(irn);
686         tbl.branches     = xcalloc(tbl.num_branches, sizeof(tbl.branches[0]));
687         tbl.min_value    = INT_MAX;
688         tbl.max_value    = INT_MIN;
689
690         i = 0;
691         /* go over all proj's and collect them */
692         foreach_out_edge(irn, edge) {
693                 proj = get_edge_src_irn(edge);
694                 assert(is_Proj(proj) && "Only proj allowed at SwitchJmp");
695
696                 pn = get_Proj_proj(proj);
697
698                 /* create branch entry */
699                 tbl.branches[i].target = proj;
700                 tbl.branches[i].value  = pn;
701
702                 tbl.min_value = pn < tbl.min_value ? pn : tbl.min_value;
703                 tbl.max_value = pn > tbl.max_value ? pn : tbl.max_value;
704
705                 /* check for default proj */
706                 if (pn == get_ia32_pncode(irn)) {
707                         assert(tbl.defProj == NULL && "found two defProjs at SwitchJmp");
708                         tbl.defProj = proj;
709                 }
710
711                 i++;
712         }
713
714         /* sort the branches by their number */
715         qsort(tbl.branches, tbl.num_branches, sizeof(tbl.branches[0]), ia32_cmp_branch_t);
716
717         /* two-complement's magic make this work without overflow */
718         interval = tbl.max_value - tbl.min_value;
719
720         /* check value interval */
721         if (interval > 16 * 1024) {
722                 do_jmp_tbl = 0;
723         }
724
725         /* check ratio of value interval to number of branches */
726         if ((float)(interval + 1) / (float)tbl.num_branches > 8.0) {
727                 do_jmp_tbl = 0;
728         }
729
730         if (do_jmp_tbl) {
731                 /* emit the table */
732                 if (tbl.min_value != 0) {
733                         lc_esnprintf(env, cmd_buf, SNPRINTF_BUF_LEN, "cmpl %lu, -%d(%1S)",
734                                 interval, tbl.min_value, irn);
735                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; first switch value is not 0");
736
737                         IA32_DO_EMIT;
738                 }
739                 else {
740                         lc_esnprintf(env, cmd_buf, SNPRINTF_BUF_LEN, "cmpl %lu, %1S", interval, irn);
741                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; compare for switch");
742
743                         IA32_DO_EMIT;
744                 }
745
746                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "ja %s", get_cfop_target(tbl.defProj, buf));
747                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; default jump if out of range ");
748                 IA32_DO_EMIT;
749
750                 if (tbl.num_branches > 1) {
751                         /* create table */
752
753                         lc_esnprintf(env, cmd_buf, SNPRINTF_BUF_LEN, "jmp [%1S*4+%s]", irn, tbl.label);
754                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; get jump table entry as target");
755                         IA32_DO_EMIT;
756
757                         fprintf(F, "\t.section\t.rodata\n");
758                         fprintf(F, "\t.align 4\n");
759
760                         fprintf(F, "%s:\n", tbl.label);
761
762                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, ".long %s", get_cfop_target(tbl.branches[0].target, buf));
763                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* case %d */\n",  tbl.branches[0].value);
764                         IA32_DO_EMIT;
765
766                         last_value = tbl.branches[0].value;
767                         for (i = 1; i < tbl.num_branches; ++i) {
768                                 while (++last_value < tbl.branches[i].value) {
769                                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, ".long %s", get_cfop_target(tbl.defProj, buf));
770                                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; default case");
771                                         IA32_DO_EMIT;
772                                 }
773                                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, ".long %s", get_cfop_target(tbl.branches[i].target, buf), last_value);
774                                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; case %d", last_value);
775                                 IA32_DO_EMIT;
776                         }
777
778                         fprintf(F, "\t.text");
779                 }
780                 else {
781                         /* one jump is enough */
782                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "jmp %s", get_cfop_target(tbl.branches[0].target, buf));
783                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; only one case given");
784                         IA32_DO_EMIT;
785                 }
786         }
787         else { // no jump table
788                 for (i = 0; i < tbl.num_branches; ++i) {
789                         lc_esnprintf(env, cmd_buf, SNPRINTF_BUF_LEN, "cmpl %d, %1S", tbl.branches[i].value, irn);
790                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; case %d", i);
791                         IA32_DO_EMIT;
792                         fprintf(F, "\tje %s\n", get_cfop_target(tbl.branches[i].target, buf));
793                 }
794
795                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "jmp %s", get_cfop_target(tbl.defProj, buf));
796                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; default case");
797                 IA32_DO_EMIT;
798         }
799
800         if (tbl.label)
801                 free(tbl.label);
802         if (tbl.branches)
803                 free(tbl.branches);
804 }
805
806 /**
807  * Emits code for a unconditional jump.
808  */
809 void emit_Jmp(const ir_node *irn, ia32_emit_env_t *env) {
810         FILE *F = env->out;
811         char buf[SNPRINTF_BUF_LEN], cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
812
813         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "jmp %s", get_cfop_target(irn, buf), get_irn_link(irn));
814         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F(%+F)", irn, get_irn_link(irn));
815         IA32_DO_EMIT;
816 }
817
818
819
820 /****************************
821  *                  _
822  *                 (_)
823  *  _ __  _ __ ___  _  ___
824  * | '_ \| '__/ _ \| |/ __|
825  * | |_) | | | (_) | |\__ \
826  * | .__/|_|  \___/| ||___/
827  * | |            _/ |
828  * |_|           |__/
829  ****************************/
830
831 /**
832  * Emits code for a proj -> node
833  */
834 void emit_Proj(const ir_node *irn, ia32_emit_env_t *env) {
835         ir_node *pred = get_Proj_pred(irn);
836
837         if (get_irn_op(pred) == op_Start) {
838                 switch(get_Proj_proj(irn)) {
839                         case pn_Start_X_initial_exec:
840                                 emit_Jmp(irn, env);
841                                 break;
842                         default:
843                                 break;
844                 }
845         }
846 }
847
848 /**********************************
849  *   _____                  ____
850  *  / ____|                |  _ \
851  * | |     ___  _ __  _   _| |_) |
852  * | |    / _ \| '_ \| | | |  _ <
853  * | |___| (_) | |_) | |_| | |_) |
854  *  \_____\___/| .__/ \__, |____/
855  *             | |     __/ |
856  *             |_|    |___/
857  **********************************/
858
859 /**
860  * Emit movsb/w instructions to make mov count divideable by 4
861  */
862 static void emit_CopyB_prolog(FILE *F, int rem, int size) {
863         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
864
865         fprintf(F, "\t/* memcopy %d bytes*/\n", size);
866
867         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "cld");
868         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "/* copy direction forward*/");
869         IA32_DO_EMIT;
870
871         switch(rem) {
872                 case 1:
873                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "movsb");
874                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; memcopy remainder 1");
875                         break;
876                 case 2:
877                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "movsw");
878                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; memcopy remainder 2");
879                         break;
880                 case 3:
881                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "movsb");
882                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; memcopy remainder 3");
883                         IA32_DO_EMIT;
884                         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "movsw");
885                         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; memcopy remainder 3");
886                         break;
887         }
888
889         IA32_DO_EMIT;
890 }
891
892 /**
893  * Emit rep movsd instruction for memcopy.
894  */
895 void emit_ia32_CopyB(const ir_node *irn, ia32_emit_env_t *emit_env) {
896         FILE   *F    = emit_env->out;
897         tarval *tv   = get_ia32_Immop_tarval(irn);
898         int     rem  = get_tarval_long(tv);
899         int     size = get_tarval_long(get_ia32_Immop_tarval(get_irn_n(irn, 2)));
900         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
901
902         emit_CopyB_prolog(F, rem, size);
903
904         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "rep movsd");
905         snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; memcopy");
906         IA32_DO_EMIT;
907 }
908
909 /**
910  * Emits unrolled memcopy.
911  */
912 void emit_ia32_CopyB_i(const ir_node *irn, ia32_emit_env_t *emit_env) {
913         tarval *tv   = get_ia32_Immop_tarval(irn);
914         int     size = get_tarval_long(tv);
915         FILE   *F    = emit_env->out;
916         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
917
918         emit_CopyB_prolog(F, size & 0x3, size);
919
920         size >>= 2;
921         while (size--) {
922                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "movsd");
923                 snprintf(cmnt_buf, SNPRINTF_BUF_LEN, "; memcopy unrolled");
924                 IA32_DO_EMIT;
925         }
926 }
927
928
929
930 /***************************
931  *   _____
932  *  / ____|
933  * | |     ___  _ ____   __
934  * | |    / _ \| '_ \ \ / /
935  * | |___| (_) | | | \ V /
936  *  \_____\___/|_| |_|\_/
937  *
938  ***************************/
939
940 /**
941  * Emit code for conversions (I, FP), (FP, I) and (FP, FP).
942  */
943 static void emit_ia32_Conv(const ir_node *irn, ia32_emit_env_t *emit_env) {
944         FILE               *F    = emit_env->out;
945         const lc_arg_env_t *env  = ia32_get_arg_env();
946         char               *from, *to, buf[64];
947         ir_mode *src_mode, *tgt_mode;
948         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
949
950         src_mode = is_ia32_AddrModeS(irn) ? get_ia32_ls_mode(irn) : get_irn_mode(get_irn_n(irn, 2));
951         tgt_mode = get_ia32_res_mode(irn);
952
953         from = mode_is_float(src_mode) ? (get_mode_size_bits(src_mode) == 32 ? "ss" : "sd") : "si";
954         to   = mode_is_float(tgt_mode) ? (get_mode_size_bits(tgt_mode) == 32 ? "ss" : "sd") : "si";
955
956         switch(get_ia32_op_type(irn)) {
957                 case ia32_Normal:
958                         lc_esnprintf(env, buf, sizeof(buf), "%1D, %3S", irn, irn);
959                         break;
960                 case ia32_AddrModeS:
961                         lc_esnprintf(env, buf, sizeof(buf), "%1D, %s", irn, ia32_emit_am(irn, emit_env));
962                         break;
963                 default:
964                         assert(0 && "unsupported op type for Conv");
965         }
966
967         snprintf(cmd_buf, SNPRINTF_BUF_LEN, "cvt%s2%s %s", from, to, buf);
968         lc_esnprintf(env, cmnt_buf, SNPRINTF_BUF_LEN, "; %+F(%+F, %+F)", irn, src_mode, tgt_mode);
969         IA32_DO_EMIT;
970 }
971
972 void emit_ia32_Conv_I2FP(const ir_node *irn, ia32_emit_env_t *emit_env) {
973         emit_ia32_Conv(irn, emit_env);
974 }
975
976 void emit_ia32_Conv_FP2I(const ir_node *irn, ia32_emit_env_t *emit_env) {
977         emit_ia32_Conv(irn, emit_env);
978 }
979
980 void emit_ia32_Conv_FP2FP(const ir_node *irn, ia32_emit_env_t *emit_env) {
981         emit_ia32_Conv(irn, emit_env);
982 }
983
984
985
986 /*******************************************
987  *  _                          _
988  * | |                        | |
989  * | |__   ___ _ __   ___   __| | ___  ___
990  * | '_ \ / _ \ '_ \ / _ \ / _` |/ _ \/ __|
991  * | |_) |  __/ | | | (_) | (_| |  __/\__ \
992  * |_.__/ \___|_| |_|\___/ \__,_|\___||___/
993  *
994  *******************************************/
995
996 /**
997  * Emits a backend call
998  */
999 void emit_be_Call(const ir_node *irn, ia32_emit_env_t *emit_env) {
1000         FILE *F = emit_env->out;
1001         entity *ent = be_Call_get_entity(irn);
1002         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1003
1004         if (ent) {
1005                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, "call %s", get_entity_name(ent));
1006         }
1007         else {
1008                 lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "%1D", get_irn_n(irn, be_pos_Call_ptr));
1009         }
1010
1011         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F (be_Call)", irn);
1012
1013         IA32_DO_EMIT;
1014 }
1015
1016 /**
1017  * Emits code to increase stack pointer.
1018  */
1019 void emit_be_IncSP(const ir_node *irn, ia32_emit_env_t *emit_env) {
1020         FILE          *F    = emit_env->out;
1021         unsigned       offs = be_get_IncSP_offset(irn);
1022         be_stack_dir_t dir  = be_get_IncSP_direction(irn);
1023         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1024
1025         if (offs) {
1026                 lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "add %1S,%s%u", irn,
1027                         (dir == be_stack_dir_along) ? " -" : " ", offs);
1028                 lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F (IncSP)", irn);
1029         }
1030         else {
1031                 snprintf(cmd_buf, SNPRINTF_BUF_LEN, " ");
1032                 lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; omitted %+F (IncSP) with 0", irn);
1033         }
1034
1035         IA32_DO_EMIT;
1036 }
1037
1038 /**
1039  * Emits code to set stack pointer.
1040  */
1041 void emit_be_SetSP(const ir_node *irn, ia32_emit_env_t *emit_env) {
1042         FILE *F = emit_env->out;
1043         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1044
1045         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "mov %1D, %3S", irn, irn);
1046         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F (restore SP)", irn);
1047         IA32_DO_EMIT;
1048 }
1049
1050 /**
1051  * Emits code for Copy.
1052  */
1053 void emit_be_Copy(const ir_node *irn, ia32_emit_env_t *emit_env) {
1054         FILE *F = emit_env->out;
1055         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1056
1057         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "mov %1D, %1S", irn, irn);
1058         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F", irn);
1059         IA32_DO_EMIT;
1060 }
1061
1062 /**
1063  * Emits code for exchange.
1064  */
1065 void emit_be_Perm(const ir_node *irn, ia32_emit_env_t *emit_env) {
1066         FILE *F = emit_env->out;
1067         char cmd_buf[SNPRINTF_BUF_LEN], cmnt_buf[SNPRINTF_BUF_LEN];
1068
1069         lc_esnprintf(ia32_get_arg_env(), cmd_buf, SNPRINTF_BUF_LEN, "xchg %1S, %2S", irn, irn);
1070         lc_esnprintf(ia32_get_arg_env(), cmnt_buf, SNPRINTF_BUF_LEN, "; %+F(%1A, %2A)", irn, irn, irn);
1071         IA32_DO_EMIT;
1072 }
1073
1074 /***********************************************************************************
1075  *                  _          __                                             _
1076  *                 (_)        / _|                                           | |
1077  *  _ __ ___   __ _ _ _ __   | |_ _ __ __ _ _ __ ___   _____      _____  _ __| | __
1078  * | '_ ` _ \ / _` | | '_ \  |  _| '__/ _` | '_ ` _ \ / _ \ \ /\ / / _ \| '__| |/ /
1079  * | | | | | | (_| | | | | | | | | | | (_| | | | | | |  __/\ V  V / (_) | |  |   <
1080  * |_| |_| |_|\__,_|_|_| |_| |_| |_|  \__,_|_| |_| |_|\___| \_/\_/ \___/|_|  |_|\_\
1081  *
1082  ***********************************************************************************/
1083
1084 /**
1085  * Enters the emitter functions for handled nodes into the generic
1086  * pointer of an opcode.
1087  */
1088 static void ia32_register_emitters(void) {
1089
1090 #define IA32_EMIT(a) op_ia32_##a->ops.generic = (op_func)emit_ia32_##a
1091 #define EMIT(a)      op_##a->ops.generic = (op_func)emit_##a
1092 #define BE_EMIT(a)   op_be_##a->ops.generic = (op_func)emit_be_##a
1093
1094         /* first clear the generic function pointer for all ops */
1095         clear_irp_opcodes_generic_func();
1096
1097         /* register all emitter functions defined in spec */
1098         ia32_register_spec_emitters();
1099
1100         /* other ia32 emitter functions */
1101         IA32_EMIT(CondJmp);
1102         IA32_EMIT(TestJmp);
1103         IA32_EMIT(SwitchJmp);
1104         IA32_EMIT(CopyB);
1105         IA32_EMIT(CopyB_i);
1106         IA32_EMIT(Conv_I2FP);
1107         IA32_EMIT(Conv_FP2I);
1108         IA32_EMIT(Conv_FP2FP);
1109
1110         /* benode emitter */
1111         BE_EMIT(Call);
1112         BE_EMIT(IncSP);
1113         BE_EMIT(SetSP);
1114         BE_EMIT(Copy);
1115         BE_EMIT(Perm);
1116
1117         /* firm emitter */
1118         EMIT(Jmp);
1119         EMIT(Proj);
1120
1121 #undef IA32_EMIT
1122 #undef BE_EMIT
1123 #undef EMIT
1124 }
1125
1126 /**
1127  * Emits code for a node.
1128  */
1129 static void ia32_emit_node(const ir_node *irn, void *env) {
1130         ia32_emit_env_t        *emit_env = env;
1131         firm_dbg_module_t *mod      = emit_env->mod;
1132         FILE              *F        = emit_env->out;
1133         ir_op             *op       = get_irn_op(irn);
1134
1135         DBG((mod, LEVEL_1, "emitting code for %+F\n", irn));
1136
1137         if (op->ops.generic) {
1138                 void (*emit)(const ir_node *, void *) = (void (*)(const ir_node *, void *))op->ops.generic;
1139                 (*emit)(irn, env);
1140         }
1141         else {
1142                 ir_fprintf(F, "\t%35s ; %+F \n", " ", irn);
1143         }
1144 }
1145
1146 /**
1147  * Walks over the nodes in a block connected by scheduling edges
1148  * and emits code for each node.
1149  */
1150 static void ia32_gen_block(ir_node *block, void *env) {
1151         const ir_node *irn;
1152
1153         if (! is_Block(block))
1154                 return;
1155
1156         fprintf(((ia32_emit_env_t *)env)->out, BLOCK_PREFIX("%ld:\n"), get_irn_node_nr(block));
1157         sched_foreach(block, irn) {
1158                 ia32_emit_node(irn, env);
1159         }
1160 }
1161
1162
1163 /**
1164  * Emits code for function start.
1165  */
1166 static void ia32_emit_func_prolog(FILE *F, ir_graph *irg) {
1167         entity     *irg_ent  = get_irg_entity(irg);
1168         const char *irg_name = get_entity_name(irg_ent);
1169
1170         fprintf(F, "\tsection .text\n");
1171         if (get_entity_visibility(irg_ent) == visibility_external_visible) {
1172                 fprintf(F, "global %s\n", irg_name);
1173         }
1174 //      fprintf(F, "\t.type\t%s, @function\n", irg_name);
1175         fprintf(F, "%s:\n", irg_name);
1176 }
1177
1178 /**
1179  * Emits code for function end
1180  */
1181 static void ia32_emit_func_epilog(FILE *F, ir_graph *irg) {
1182         const char *irg_name = get_entity_name(get_irg_entity(irg));
1183
1184         fprintf(F, "\tret\n\n");
1185         //printf(F, "\t.size\t%s, .-%s\n\n", irg_name, irg_name);
1186 }
1187
1188 /**
1189  * Sets labels for control flow nodes (jump target)
1190  * TODO: Jump optimization
1191  */
1192 static void ia32_gen_labels(ir_node *block, void *env) {
1193         ir_node *pred;
1194         int n = get_Block_n_cfgpreds(block);
1195
1196         for (n--; n >= 0; n--) {
1197                 pred = get_Block_cfgpred(block, n);
1198                 set_irn_link(pred, block);
1199         }
1200 }
1201
1202 /**
1203  * Main driver. Emits the code for one routine.
1204  */
1205 void ia32_gen_routine(FILE *F, ir_graph *irg, const ia32_code_gen_t *cg) {
1206         ia32_emit_env_t emit_env;
1207
1208         emit_env.mod      = firm_dbg_register("ir.be.codegen.ia32");
1209         emit_env.out      = F;
1210         emit_env.arch_env = cg->arch_env;
1211         emit_env.cg       = cg;
1212         emit_env.isa      = (ia32_isa_t *)cg->arch_env->isa;
1213
1214         /* set the global arch_env (needed by print hooks) */
1215         arch_env = cg->arch_env;
1216
1217         ia32_register_emitters();
1218
1219         ia32_emit_func_prolog(F, irg);
1220         irg_block_walk_graph(irg, ia32_gen_labels, NULL, &emit_env);
1221         irg_walk_blkwise_graph(irg, NULL, ia32_gen_block, &emit_env);
1222         ia32_emit_func_epilog(F, irg);
1223 }