add assert for not getting bad out regs, and fix some bugs related to this
[libfirm] / ir / be / ia32 / ia32_emitter.c
1 /*
2  * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       This file implements the ia32 node emitter.
23  * @author      Christian Wuerdig, Matthias Braun
24  * @version     $Id$
25  */
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #include <limits.h>
31
32 #include "xmalloc.h"
33 #include "tv.h"
34 #include "iredges.h"
35 #include "debug.h"
36 #include "irgwalk.h"
37 #include "irprintf.h"
38 #include "irop_t.h"
39 #include "irargs_t.h"
40 #include "irprog_t.h"
41 #include "iredges_t.h"
42 #include "execfreq.h"
43 #include "error.h"
44 #include "raw_bitset.h"
45
46 #include "../besched_t.h"
47 #include "../benode_t.h"
48 #include "../beabi.h"
49 #include "../be_dbgout.h"
50 #include "../beemitter.h"
51 #include "../begnuas.h"
52 #include "../beirg_t.h"
53
54 #include "ia32_emitter.h"
55 #include "gen_ia32_emitter.h"
56 #include "gen_ia32_regalloc_if.h"
57 #include "ia32_nodes_attr.h"
58 #include "ia32_new_nodes.h"
59 #include "ia32_map_regs.h"
60 #include "bearch_ia32_t.h"
61
62 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
63
64 #define BLOCK_PREFIX ".L"
65
66 #define SNPRINTF_BUF_LEN 128
67
68 static const arch_env_t *arch_env;
69 static const ia32_isa_t *isa;
70 static ia32_code_gen_t  *cg;
71
72 /**
73  * Returns the register at in position pos.
74  */
75 static const arch_register_t *get_in_reg(const ir_node *irn, int pos)
76 {
77         ir_node               *op;
78         const arch_register_t *reg = NULL;
79
80         assert(get_irn_arity(irn) > pos && "Invalid IN position");
81
82         /* The out register of the operator at position pos is the
83            in register we need. */
84         op = get_irn_n(irn, pos);
85
86         reg = arch_get_irn_register(arch_env, op);
87
88         assert(reg && "no in register found");
89
90         if(reg == &ia32_gp_regs[REG_GP_NOREG])
91                 panic("trying to emit noreg for %+F input %d", irn, pos);
92
93         /* in case of unknown register: just return a valid register */
94         if (reg == &ia32_gp_regs[REG_GP_UKNWN]) {
95                 const arch_register_req_t *req;
96
97                 /* ask for the requirements */
98                 req = arch_get_register_req(arch_env, irn, pos);
99
100                 if (arch_register_req_is(req, limited)) {
101                         /* in case of limited requirements: get the first allowed register */
102                         unsigned idx = rbitset_next(req->limited, 0, 1);
103                         reg = arch_register_for_index(req->cls, idx);
104                 } else {
105                         /* otherwise get first register in class */
106                         reg = arch_register_for_index(req->cls, 0);
107                 }
108         }
109
110         return reg;
111 }
112
113 /**
114  * Returns the register at out position pos.
115  */
116 static const arch_register_t *get_out_reg(const ir_node *irn, int pos)
117 {
118         ir_node               *proj;
119         const arch_register_t *reg = NULL;
120
121         /* 1st case: irn is not of mode_T, so it has only                 */
122         /*           one OUT register -> good                             */
123         /* 2nd case: irn is of mode_T -> collect all Projs and ask the    */
124         /*           Proj with the corresponding projnum for the register */
125
126         if (get_irn_mode(irn) != mode_T) {
127                 assert(pos == 0);
128                 reg = arch_get_irn_register(arch_env, irn);
129         } else if (is_ia32_irn(irn)) {
130                 reg = get_ia32_out_reg(irn, pos);
131         } else {
132                 const ir_edge_t *edge;
133
134                 foreach_out_edge(irn, edge) {
135                         proj = get_edge_src_irn(edge);
136                         assert(is_Proj(proj) && "non-Proj from mode_T node");
137                         if (get_Proj_proj(proj) == pos) {
138                                 reg = arch_get_irn_register(arch_env, proj);
139                                 break;
140                         }
141                 }
142         }
143
144         assert(reg && "no out register found");
145         return reg;
146 }
147
148 /**
149  * Add a number to a prefix. This number will not be used a second time.
150  */
151 static char *get_unique_label(char *buf, size_t buflen, const char *prefix)
152 {
153         static unsigned long id = 0;
154         snprintf(buf, buflen, "%s%lu", prefix, ++id);
155         return buf;
156 }
157
158 /*************************************************************
159  *             _       _    __   _          _
160  *            (_)     | |  / _| | |        | |
161  *  _ __  _ __ _ _ __ | |_| |_  | |__   ___| |_ __   ___ _ __
162  * | '_ \| '__| | '_ \| __|  _| | '_ \ / _ \ | '_ \ / _ \ '__|
163  * | |_) | |  | | | | | |_| |   | | | |  __/ | |_) |  __/ |
164  * | .__/|_|  |_|_| |_|\__|_|   |_| |_|\___|_| .__/ \___|_|
165  * | |                                       | |
166  * |_|                                       |_|
167  *************************************************************/
168
169 static void emit_8bit_register(const arch_register_t *reg)
170 {
171         const char *reg_name = arch_register_get_name(reg);
172
173         be_emit_char('%');
174         be_emit_char(reg_name[1]);
175         be_emit_char('l');
176 }
177
178 static void emit_16bit_register(const arch_register_t *reg)
179 {
180         const char *reg_name = ia32_get_mapped_reg_name(isa->regs_16bit, reg);
181
182         be_emit_char('%');
183         be_emit_string(reg_name);
184 }
185
186 static void emit_register(const arch_register_t *reg, const ir_mode *mode)
187 {
188         const char *reg_name;
189
190         if(mode != NULL) {
191                 int size = get_mode_size_bits(mode);
192                 if(size == 8) {
193                         emit_8bit_register(reg);
194                         return;
195                 } else if(size == 16) {
196                         emit_16bit_register(reg);
197                         return;
198                 } else {
199                         assert(size == 32);
200                 }
201         }
202
203         reg_name = arch_register_get_name(reg);
204
205         be_emit_char('%');
206         be_emit_string(reg_name);
207 }
208
209 void ia32_emit_source_register(const ir_node *node, int pos)
210 {
211         const arch_register_t *reg      = get_in_reg(node, pos);
212
213         emit_register(reg, NULL);
214 }
215
216 static void emit_ia32_Immediate(const ir_node *node);
217
218 void ia32_emit_8bit_source_register_or_immediate(const ir_node *node, int pos)
219 {
220         const arch_register_t *reg;
221         ir_node               *in = get_irn_n(node, pos);
222         if(is_ia32_Immediate(in)) {
223                 emit_ia32_Immediate(in);
224                 return;
225         }
226
227         reg = get_in_reg(node, pos);
228         emit_8bit_register(reg);
229 }
230
231 void ia32_emit_dest_register(const ir_node *node, int pos)
232 {
233         const arch_register_t *reg  = get_out_reg(node, pos);
234
235         emit_register(reg, NULL);
236 }
237
238 void ia32_emit_8bit_dest_register(const ir_node *node, int pos)
239 {
240         const arch_register_t *reg  = get_out_reg(node, pos);
241
242         emit_register(reg, mode_Bu);
243 }
244
245 void ia32_emit_x87_register(const ir_node *node, int pos)
246 {
247         const ia32_x87_attr_t *attr = get_ia32_x87_attr_const(node);
248
249         assert(pos < 3);
250         be_emit_char('%');
251         be_emit_string(attr->x87[pos]->name);
252 }
253
254 static void ia32_emit_mode_suffix_mode(const ir_mode *mode)
255 {
256         if(mode_is_float(mode)) {
257                 switch(get_mode_size_bits(mode)) {
258                 case 32: be_emit_char('s'); return;
259                 case 64: be_emit_char('l'); return;
260                 case 80: be_emit_char('t'); return;
261                 }
262         } else {
263                 assert(mode_is_int(mode) || mode_is_reference(mode));
264                 switch(get_mode_size_bits(mode)) {
265                 case 64: be_emit_cstring("ll"); return;
266                                  /* gas docu says q is the suffix but gcc, objdump and icc use
267                                         ll apparently */
268                 case 32: be_emit_char('l'); return;
269                 case 16: be_emit_char('w'); return;
270                 case 8:  be_emit_char('b'); return;
271                 }
272         }
273         panic("Can't output mode_suffix for %+F\n", mode);
274 }
275
276 void ia32_emit_mode_suffix(const ir_node *node)
277 {
278         ir_mode *mode = get_ia32_ls_mode(node);
279         if(mode == NULL)
280                 mode = mode_Iu;
281
282         ia32_emit_mode_suffix_mode(mode);
283 }
284
285 void ia32_emit_x87_mode_suffix(const ir_node *node)
286 {
287         ir_mode *mode = get_ia32_ls_mode(node);
288         if(mode != NULL)
289                 ia32_emit_mode_suffix_mode(mode);
290 }
291
292 static
293 char get_xmm_mode_suffix(ir_mode *mode)
294 {
295         assert(mode_is_float(mode));
296         switch(get_mode_size_bits(mode)) {
297         case 32:
298                 return 's';
299         case 64:
300                 return 'd';
301         default:
302                 assert(0);
303         }
304         return '%';
305 }
306
307 void ia32_emit_xmm_mode_suffix(const ir_node *node)
308 {
309         ir_mode *mode = get_ia32_ls_mode(node);
310         assert(mode != NULL);
311         be_emit_char('s');
312         be_emit_char(get_xmm_mode_suffix(mode));
313 }
314
315 void ia32_emit_xmm_mode_suffix_s(const ir_node *node)
316 {
317         ir_mode *mode = get_ia32_ls_mode(node);
318         assert(mode != NULL);
319         be_emit_char(get_xmm_mode_suffix(mode));
320 }
321
322 void ia32_emit_extend_suffix(const ir_mode *mode)
323 {
324         if(get_mode_size_bits(mode) == 32)
325                 return;
326         if(mode_is_signed(mode)) {
327                 be_emit_char('s');
328         } else {
329                 be_emit_char('z');
330         }
331 }
332
333 static
334 void ia32_emit_function_object(const char *name)
335 {
336         switch (be_gas_flavour) {
337         case GAS_FLAVOUR_NORMAL:
338                 be_emit_cstring("\t.type\t");
339                 be_emit_string(name);
340                 be_emit_cstring(", @function\n");
341                 be_emit_write_line();
342                 break;
343         case GAS_FLAVOUR_MINGW:
344                 be_emit_cstring("\t.def\t");
345                 be_emit_string(name);
346                 be_emit_cstring(";\t.scl\t2;\t.type\t32;\t.endef\n");
347                 be_emit_write_line();
348                 break;
349         default:
350                 break;
351         }
352 }
353
354 static
355 void ia32_emit_function_size(const char *name)
356 {
357         switch (be_gas_flavour) {
358         case GAS_FLAVOUR_NORMAL:
359                 be_emit_cstring("\t.size\t");
360                 be_emit_string(name);
361                 be_emit_cstring(", .-");
362                 be_emit_string(name);
363                 be_emit_char('\n');
364                 be_emit_write_line();
365                 break;
366         default:
367                 break;
368         }
369 }
370
371
372 void ia32_emit_source_register_or_immediate(const ir_node *node, int pos)
373 {
374         ir_node *in = get_irn_n(node, pos);
375         if(is_ia32_Immediate(in)) {
376                 emit_ia32_Immediate(in);
377         } else {
378                 const ir_mode         *mode = get_ia32_ls_mode(node);
379                 const arch_register_t *reg  = get_in_reg(node, pos);
380                 emit_register(reg, mode);
381         }
382 }
383
384 /**
385  * Emits registers and/or address mode of a binary operation.
386  */
387 void ia32_emit_binop(const ir_node *node) {
388         const ir_node         *right_op  = get_irn_n(node, n_ia32_binary_right);
389         const ir_mode         *mode      = get_ia32_ls_mode(node);
390         const arch_register_t *reg_left;
391
392         switch(get_ia32_op_type(node)) {
393         case ia32_Normal:
394                 reg_left = get_in_reg(node, n_ia32_binary_left);
395                 if(is_ia32_Immediate(right_op)) {
396                         emit_ia32_Immediate(right_op);
397                         be_emit_cstring(", ");
398                         emit_register(reg_left, mode);
399                         break;
400                 } else {
401                         const arch_register_t *reg_right
402                                 = get_in_reg(node, n_ia32_binary_right);
403                         emit_register(reg_right, mode);
404                         be_emit_cstring(", ");
405                         emit_register(reg_left, mode);
406                 }
407                 break;
408         case ia32_AddrModeS:
409                 if(is_ia32_Immediate(right_op)) {
410                         emit_ia32_Immediate(right_op);
411                         be_emit_cstring(", ");
412                         ia32_emit_am(node);
413                 } else {
414                         reg_left = get_in_reg(node, n_ia32_binary_left);
415                         ia32_emit_am(node);
416                         be_emit_cstring(", ");
417                         emit_register(reg_left, mode);
418                 }
419                 break;
420         case ia32_AddrModeD:
421                 panic("DestMode can't be output by %%binop anymore");
422                 break;
423         default:
424                 assert(0 && "unsupported op type");
425         }
426 }
427
428 /**
429  * Emits registers and/or address mode of a binary operation.
430  */
431 void ia32_emit_x87_binop(const ir_node *node) {
432         switch(get_ia32_op_type(node)) {
433                 case ia32_Normal:
434                         {
435                                 const ia32_x87_attr_t *x87_attr = get_ia32_x87_attr_const(node);
436                                 const arch_register_t *in1      = x87_attr->x87[0];
437                                 const arch_register_t *in2      = x87_attr->x87[1];
438                                 const arch_register_t *out      = x87_attr->x87[2];
439                                 const arch_register_t *in;
440
441                                 in  = out ? ((out == in2) ? in1 : in2) : in2;
442                                 out = out ? out : in1;
443
444                                 be_emit_char('%');
445                                 be_emit_string(arch_register_get_name(in));
446                                 be_emit_cstring(", %");
447                                 be_emit_string(arch_register_get_name(out));
448                         }
449                         break;
450                 case ia32_AddrModeS:
451                         ia32_emit_am(node);
452                         break;
453                 case ia32_AddrModeD:
454                 default:
455                         assert(0 && "unsupported op type");
456         }
457 }
458
459 void ia32_emit_am_or_dest_register(const ir_node *node,
460                                    int pos) {
461         if(get_ia32_op_type(node) == ia32_Normal) {
462                 ia32_emit_dest_register(node, pos);
463         } else {
464                 assert(get_ia32_op_type(node) == ia32_AddrModeD);
465                 ia32_emit_am(node);
466         }
467 }
468
469 /**
470  * Emits registers and/or address mode of a unary operation.
471  */
472 void ia32_emit_unop(const ir_node *node, int pos) {
473         const ir_node *op;
474
475         switch(get_ia32_op_type(node)) {
476         case ia32_Normal:
477                 op = get_irn_n(node, pos);
478                 if (is_ia32_Immediate(op)) {
479                         emit_ia32_Immediate(op);
480                 } else {
481                         ia32_emit_source_register(node, pos);
482                 }
483                 break;
484         case ia32_AddrModeS:
485         case ia32_AddrModeD:
486                 ia32_emit_am(node);
487                 break;
488         default:
489                 assert(0 && "unsupported op type");
490         }
491 }
492
493 /**
494  * Emits address mode.
495  */
496 void ia32_emit_am(const ir_node *node) {
497         ir_entity *ent       = get_ia32_am_sc(node);
498         int        offs      = get_ia32_am_offs_int(node);
499         ir_node   *base      = get_irn_n(node, 0);
500         int        has_base  = !is_ia32_NoReg_GP(base);
501         ir_node   *index     = get_irn_n(node, 1);
502         int        has_index = !is_ia32_NoReg_GP(index);
503
504         /* just to be sure... */
505         assert(!is_ia32_use_frame(node) || get_ia32_frame_ent(node) != NULL);
506
507         /* emit offset */
508         if (ent != NULL) {
509                 ident *id;
510
511                 set_entity_backend_marked(ent, 1);
512                 id = get_entity_ld_ident(ent);
513                 if (is_ia32_am_sc_sign(node))
514                         be_emit_char('-');
515                 be_emit_ident(id);
516
517                 if(get_entity_owner(ent) == get_tls_type()) {
518                         if (get_entity_visibility(ent) == visibility_external_allocated) {
519                                 be_emit_cstring("@INDNTPOFF");
520                         } else {
521                                 be_emit_cstring("@NTPOFF");
522                         }
523                 }
524         }
525
526         if(offs != 0) {
527                 if(ent != NULL) {
528                         be_emit_irprintf("%+d", offs);
529                 } else {
530                         be_emit_irprintf("%d", offs);
531                 }
532         }
533
534         if (has_base || has_index) {
535                 be_emit_char('(');
536
537                 /* emit base */
538                 if (has_base) {
539                         const arch_register_t *reg = get_in_reg(node, n_ia32_base);
540                         emit_register(reg, NULL);
541                 }
542
543                 /* emit index + scale */
544                 if (has_index) {
545                         const arch_register_t *reg = get_in_reg(node, n_ia32_index);
546                         int scale;
547                         be_emit_char(',');
548                         emit_register(reg, NULL);
549
550                         scale = get_ia32_am_scale(node);
551                         if (scale > 0) {
552                                 be_emit_irprintf(",%d", 1 << get_ia32_am_scale(node));
553                         }
554                 }
555                 be_emit_char(')');
556         }
557
558         /* special case if nothing is set */
559         if(ent == NULL && offs == 0 && !has_base && !has_index) {
560                 be_emit_char('0');
561         }
562 }
563
564 /*************************************************
565  *                 _ _                         _
566  *                (_) |                       | |
567  *   ___ _ __ ___  _| |_    ___ ___  _ __   __| |
568  *  / _ \ '_ ` _ \| | __|  / __/ _ \| '_ \ / _` |
569  * |  __/ | | | | | | |_  | (_| (_) | | | | (_| |
570  *  \___|_| |_| |_|_|\__|  \___\___/|_| |_|\__,_|
571  *
572  *************************************************/
573
574 #undef IA32_DO_EMIT
575 #define IA32_DO_EMIT(irn) ia32_fprintf_format(F, irn, cmd_buf, cmnt_buf)
576
577 /*
578  * coding of conditions
579  */
580 struct cmp2conditon_t {
581         const char *name;
582         int         num;
583 };
584
585 /*
586  * positive conditions for signed compares
587  */
588 static const struct cmp2conditon_t cmp2condition_s[] = {
589         { NULL,              pn_Cmp_False },  /* always false */
590         { "e",               pn_Cmp_Eq },     /* == */
591         { "l",               pn_Cmp_Lt },     /* < */
592         { "le",              pn_Cmp_Le },     /* <= */
593         { "g",               pn_Cmp_Gt },     /* > */
594         { "ge",              pn_Cmp_Ge },     /* >= */
595         { "ne",              pn_Cmp_Lg },     /* != */
596         { NULL,              pn_Cmp_Leg},     /* always true */
597 };
598
599 /*
600  * positive conditions for unsigned compares
601  */
602 static const struct cmp2conditon_t cmp2condition_u[] = {
603         { NULL,              pn_Cmp_False },  /* always false */
604         { "e",               pn_Cmp_Eq },     /* == */
605         { "b",               pn_Cmp_Lt },     /* < */
606         { "be",              pn_Cmp_Le },     /* <= */
607         { "a",               pn_Cmp_Gt },     /* > */
608         { "ae",              pn_Cmp_Ge },     /* >= */
609         { "ne",              pn_Cmp_Lg },     /* != */
610         { NULL,              pn_Cmp_Leg },   /* always true  */
611 };
612
613 enum {
614         ia32_pn_Cmp_unsigned = 0x1000,
615         ia32_pn_Cmp_float    = 0x2000,
616 };
617
618 /**
619  * walks up a tree of copies/perms/spills/reloads to find the original value
620  * that is moved around
621  */
622 static ir_node *find_original_value(ir_node *node)
623 {
624         inc_irg_visited(current_ir_graph);
625         while(1) {
626                 mark_irn_visited(node);
627                 if(be_is_Copy(node)) {
628                         node = be_get_Copy_op(node);
629                 } else if(be_is_CopyKeep(node)) {
630                         node = be_get_CopyKeep_op(node);
631                 } else if(is_Proj(node)) {
632                         ir_node *pred = get_Proj_pred(node);
633                         if(be_is_Perm(pred)) {
634                                 node = get_irn_n(pred, get_Proj_proj(node));
635                         } else if(be_is_MemPerm(pred)) {
636                                 node = get_irn_n(pred, get_Proj_proj(node) + 1);
637                         } else if(is_ia32_Load(pred)) {
638                                 node = get_irn_n(pred, n_ia32_Load_mem);
639                         } else {
640                                 return node;
641                         }
642                 } else if(is_ia32_Store(node)) {
643                         node = get_irn_n(node, n_ia32_Store_val);
644                 } else if(is_Phi(node)) {
645                         int i, arity;
646                         arity = get_irn_arity(node);
647                         for(i = 0; i < arity; ++i) {
648                                 ir_node *in = get_irn_n(node, i);
649                                 if(irn_visited(in))
650                                         continue;
651                                 node = in;
652                                 break;
653                         }
654                         assert(i < arity);
655                 } else {
656                         return node;
657                 }
658         }
659 }
660
661 static int determine_final_pnc(const ir_node *node, int flags_pos,
662                                int pnc)
663 {
664         ir_node           *flags = get_irn_n(node, flags_pos);
665         const ia32_attr_t *flags_attr;
666         flags = skip_Proj(flags);
667
668         if(is_ia32_Sahf(flags)) {
669                 ir_node *cmp = get_irn_n(flags, n_ia32_Sahf_val);
670                 if(!(is_ia32_FucomFnstsw(cmp) || is_ia32_FucompFnstsw(cmp)
671                                 || is_ia32_FucomppFnstsw(cmp) || is_ia32_FtstFnstsw(cmp))) {
672                         cmp = find_original_value(cmp);
673                         assert(is_ia32_FucomFnstsw(cmp) || is_ia32_FucompFnstsw(cmp)
674                                || is_ia32_FucomppFnstsw(cmp) || is_ia32_FtstFnstsw(cmp));
675                 }
676
677                 flags_attr = get_ia32_attr_const(cmp);
678                 if(flags_attr->data.cmp_flipped)
679                         pnc = get_mirrored_pnc(pnc);
680                 pnc |= ia32_pn_Cmp_float;
681         } else if(is_ia32_Ucomi(flags) || is_ia32_Fucomi(flags)
682                         || is_ia32_Fucompi(flags)) {
683                 flags_attr = get_ia32_attr_const(flags);
684
685                 if(flags_attr->data.cmp_flipped)
686                         pnc = get_mirrored_pnc(pnc);
687                 pnc |= ia32_pn_Cmp_float;
688         } else {
689                 assert(is_ia32_Cmp(flags) || is_ia32_Test(flags)
690                                 || is_ia32_Cmp8Bit(flags) || is_ia32_Test8Bit(flags));
691                 flags_attr = get_ia32_attr_const(flags);
692
693                 if(flags_attr->data.cmp_flipped)
694                         pnc = get_mirrored_pnc(pnc);
695                 if(flags_attr->data.cmp_unsigned)
696                         pnc |= ia32_pn_Cmp_unsigned;
697         }
698
699         return pnc;
700 }
701
702 static void ia32_emit_cmp_suffix(int pnc)
703 {
704         const char        *str;
705
706         if((pnc & ia32_pn_Cmp_float) || (pnc & ia32_pn_Cmp_unsigned)) {
707                 pnc = pnc & 7;
708                 assert(cmp2condition_u[pnc].num == pnc);
709                 str = cmp2condition_u[pnc].name;
710         } else {
711                 pnc = pnc & 7;
712                 assert(cmp2condition_s[pnc].num == pnc);
713                 str = cmp2condition_s[pnc].name;
714         }
715
716         be_emit_string(str);
717 }
718
719 void ia32_emit_cmp_suffix_node(const ir_node *node,
720                                int flags_pos)
721 {
722         pn_Cmp pnc = get_ia32_pncode(node);
723
724         pnc = determine_final_pnc(node, flags_pos, pnc);
725         ia32_emit_cmp_suffix(pnc);
726 }
727
728 /**
729  * Returns the target block for a control flow node.
730  */
731 static
732 ir_node *get_cfop_target_block(const ir_node *irn) {
733         return get_irn_link(irn);
734 }
735
736 /**
737  * Emits a block label for the given block.
738  */
739 static
740 void ia32_emit_block_name(const ir_node *block)
741 {
742         if (has_Block_label(block)) {
743                 be_emit_string(be_gas_label_prefix());
744                 be_emit_irprintf("%u", (unsigned)get_Block_label(block));
745         } else {
746                 be_emit_cstring(BLOCK_PREFIX);
747                 be_emit_irprintf("%d", get_irn_node_nr(block));
748         }
749 }
750
751 /**
752  * Emits the target label for a control flow node.
753  */
754 static void ia32_emit_cfop_target(const ir_node *node)
755 {
756         ir_node *block = get_cfop_target_block(node);
757
758         ia32_emit_block_name(block);
759 }
760
761 /** Return the next block in Block schedule */
762 static ir_node *next_blk_sched(const ir_node *block)
763 {
764         return get_irn_link(block);
765 }
766
767 /**
768  * Returns the Proj with projection number proj and NOT mode_M
769  */
770 static ir_node *get_proj(const ir_node *node, long proj) {
771         const ir_edge_t *edge;
772         ir_node         *src;
773
774         assert(get_irn_mode(node) == mode_T && "expected mode_T node");
775
776         foreach_out_edge(node, edge) {
777                 src = get_edge_src_irn(edge);
778
779                 assert(is_Proj(src) && "Proj expected");
780                 if (get_irn_mode(src) == mode_M)
781                         continue;
782
783                 if (get_Proj_proj(src) == proj)
784                         return src;
785         }
786         return NULL;
787 }
788
789 /**
790  * Emits the jump sequence for a conditional jump (cmp + jmp_true + jmp_false)
791  */
792 static void emit_ia32_Jcc(const ir_node *node)
793 {
794         const ir_node *proj_true;
795         const ir_node *proj_false;
796         const ir_node *block;
797         const ir_node *next_block;
798         pn_Cmp         pnc = get_ia32_pncode(node);
799
800         pnc = determine_final_pnc(node, 0, pnc);
801
802         /* get both Projs */
803         proj_true = get_proj(node, pn_ia32_Jcc_true);
804         assert(proj_true && "Jcc without true Proj");
805
806         proj_false = get_proj(node, pn_ia32_Jcc_false);
807         assert(proj_false && "Jcc without false Proj");
808
809         block      = get_nodes_block(node);
810         next_block = next_blk_sched(block);
811
812         if (get_cfop_target_block(proj_true) == next_block) {
813                 /* exchange both proj's so the second one can be omitted */
814                 const ir_node *t = proj_true;
815
816                 proj_true  = proj_false;
817                 proj_false = t;
818                 if(pnc & ia32_pn_Cmp_float) {
819                         pnc = get_negated_pnc(pnc, mode_F);
820                 } else {
821                         pnc = get_negated_pnc(pnc, mode_Iu);
822                 }
823         }
824
825         if (pnc & ia32_pn_Cmp_float) {
826                 /* Some floating point comparisons require a test of the parity flag,
827                  * which indicates that the result is unordered */
828                 switch (pnc & 15) {
829                         case pn_Cmp_Uo:
830                                 be_emit_cstring("\tjp ");
831                                 ia32_emit_cfop_target(proj_true);
832                                 be_emit_finish_line_gas(proj_true);
833                                 break;
834
835                         case pn_Cmp_Leg:
836                                 be_emit_cstring("\tjnp ");
837                                 ia32_emit_cfop_target(proj_true);
838                                 be_emit_finish_line_gas(proj_true);
839                                 break;
840
841                         case pn_Cmp_Eq:
842                         case pn_Cmp_Lt:
843                         case pn_Cmp_Le:
844                                 be_emit_cstring("\tjp ");
845                                 ia32_emit_cfop_target(proj_false);
846                                 be_emit_finish_line_gas(proj_false);
847                                 goto emit_jcc;
848
849                         case pn_Cmp_Ug:
850                         case pn_Cmp_Uge:
851                         case pn_Cmp_Ne:
852                                 be_emit_cstring("\tjp ");
853                                 ia32_emit_cfop_target(proj_true);
854                                 be_emit_finish_line_gas(proj_true);
855                                 goto emit_jcc;
856
857                         default:
858                                 goto emit_jcc;
859                 }
860         } else {
861 emit_jcc:
862                 be_emit_cstring("\tj");
863                 ia32_emit_cmp_suffix(pnc);
864                 be_emit_char(' ');
865                 ia32_emit_cfop_target(proj_true);
866                 be_emit_finish_line_gas(proj_true);
867         }
868
869         /* the second Proj might be a fallthrough */
870         if (get_cfop_target_block(proj_false) != next_block) {
871                 be_emit_cstring("\tjmp ");
872                 ia32_emit_cfop_target(proj_false);
873                 be_emit_finish_line_gas(proj_false);
874         } else {
875                 be_emit_cstring("\t/* fallthrough to ");
876                 ia32_emit_cfop_target(proj_false);
877                 be_emit_cstring(" */");
878                 be_emit_finish_line_gas(proj_false);
879         }
880 }
881
882 static void emit_ia32_CMov(const ir_node *node)
883 {
884         const arch_register_t *out = arch_get_irn_register(arch_env, node);
885         const arch_register_t *in_true;
886         const arch_register_t *in_false;
887         pn_Cmp                 pnc = get_ia32_pncode(node);
888
889         pnc = determine_final_pnc(node, n_ia32_CMov_eflags, pnc);
890
891         in_true  = arch_get_irn_register(arch_env,
892                                          get_irn_n(node, n_ia32_CMov_val_true));
893         in_false = arch_get_irn_register(arch_env,
894                                          get_irn_n(node, n_ia32_CMov_val_false));
895
896         /* should be same constraint fullfilled? */
897         if(out == in_false) {
898                 /* yes -> nothing to do */
899         } else if(out == in_true) {
900                 const arch_register_t *tmp;
901
902                 /* swap left/right and negate pnc */
903                 pnc = get_negated_pnc(pnc, mode_Iu);
904
905                 tmp      = in_true;
906                 in_true  = in_false;
907                 in_false = tmp;
908         } else {
909                 /* we need a mov */
910                 be_emit_cstring("\tmovl ");
911                 emit_register(in_false, NULL);
912                 be_emit_cstring(", ");
913                 emit_register(out, NULL);
914                 be_emit_finish_line_gas(node);
915         }
916
917         be_emit_cstring("\tcmov");
918         ia32_emit_cmp_suffix(pnc);
919         be_emit_char(' ');
920         if(get_ia32_op_type(node) == ia32_AddrModeS) {
921                 ia32_emit_am(node);
922         } else {
923                 emit_register(in_true, get_ia32_ls_mode(node));
924         }
925         be_emit_cstring(", ");
926         emit_register(out, get_ia32_ls_mode(node));
927         be_emit_finish_line_gas(node);
928 }
929
930 /*********************************************************
931  *                 _ _       _
932  *                (_) |     (_)
933  *   ___ _ __ ___  _| |_     _ _   _ _ __ ___  _ __  ___
934  *  / _ \ '_ ` _ \| | __|   | | | | | '_ ` _ \| '_ \/ __|
935  * |  __/ | | | | | | |_    | | |_| | | | | | | |_) \__ \
936  *  \___|_| |_| |_|_|\__|   | |\__,_|_| |_| |_| .__/|___/
937  *                         _/ |               | |
938  *                        |__/                |_|
939  *********************************************************/
940
941 /* jump table entry (target and corresponding number) */
942 typedef struct _branch_t {
943         ir_node *target;
944         int      value;
945 } branch_t;
946
947 /* jump table for switch generation */
948 typedef struct _jmp_tbl_t {
949         ir_node  *defProj;         /**< default target */
950         long      min_value;       /**< smallest switch case */
951         long      max_value;       /**< largest switch case */
952         long      num_branches;    /**< number of jumps */
953         char     *label;           /**< label of the jump table */
954         branch_t *branches;        /**< jump array */
955 } jmp_tbl_t;
956
957 /**
958  * Compare two variables of type branch_t. Used to sort all switch cases
959  */
960 static
961 int ia32_cmp_branch_t(const void *a, const void *b) {
962         branch_t *b1 = (branch_t *)a;
963         branch_t *b2 = (branch_t *)b;
964
965         if (b1->value <= b2->value)
966                 return -1;
967         else
968                 return 1;
969 }
970
971 /**
972  * Emits code for a SwitchJmp (creates a jump table if
973  * possible otherwise a cmp-jmp cascade). Port from
974  * cggg ia32 backend
975  */
976 static
977 void emit_ia32_SwitchJmp(const ir_node *node) {
978         unsigned long       interval;
979         int                 last_value, i;
980         long                pnc;
981         jmp_tbl_t           tbl;
982         ir_node            *proj;
983         const ir_edge_t    *edge;
984
985         /* fill the table structure */
986         tbl.label        = xmalloc(SNPRINTF_BUF_LEN);
987         tbl.label        = get_unique_label(tbl.label, SNPRINTF_BUF_LEN, ".TBL_");
988         tbl.defProj      = NULL;
989         tbl.num_branches = get_irn_n_edges(node);
990         tbl.branches     = xcalloc(tbl.num_branches, sizeof(tbl.branches[0]));
991         tbl.min_value    = INT_MAX;
992         tbl.max_value    = INT_MIN;
993
994         i = 0;
995         /* go over all proj's and collect them */
996         foreach_out_edge(node, edge) {
997                 proj = get_edge_src_irn(edge);
998                 assert(is_Proj(proj) && "Only proj allowed at SwitchJmp");
999
1000                 pnc = get_Proj_proj(proj);
1001
1002                 /* create branch entry */
1003                 tbl.branches[i].target = proj;
1004                 tbl.branches[i].value  = pnc;
1005
1006                 tbl.min_value = pnc < tbl.min_value ? pnc : tbl.min_value;
1007                 tbl.max_value = pnc > tbl.max_value ? pnc : tbl.max_value;
1008
1009                 /* check for default proj */
1010                 if (pnc == get_ia32_pncode(node)) {
1011                         assert(tbl.defProj == NULL && "found two defProjs at SwitchJmp");
1012                         tbl.defProj = proj;
1013                 }
1014
1015                 i++;
1016         }
1017
1018         /* sort the branches by their number */
1019         qsort(tbl.branches, tbl.num_branches, sizeof(tbl.branches[0]), ia32_cmp_branch_t);
1020
1021         /* two-complement's magic make this work without overflow */
1022         interval = tbl.max_value - tbl.min_value;
1023
1024         /* emit the table */
1025         be_emit_cstring("\tcmpl $");
1026         be_emit_irprintf("%u, ", interval);
1027         ia32_emit_source_register(node, 0);
1028         be_emit_finish_line_gas(node);
1029
1030         be_emit_cstring("\tja ");
1031         ia32_emit_cfop_target(tbl.defProj);
1032         be_emit_finish_line_gas(node);
1033
1034         if (tbl.num_branches > 1) {
1035                 /* create table */
1036                 be_emit_cstring("\tjmp *");
1037                 be_emit_string(tbl.label);
1038                 be_emit_cstring("(,");
1039                 ia32_emit_source_register(node, 0);
1040                 be_emit_cstring(",4)");
1041                 be_emit_finish_line_gas(node);
1042
1043                 be_gas_emit_switch_section(GAS_SECTION_RODATA);
1044                 be_emit_cstring("\t.align 4\n");
1045                 be_emit_write_line();
1046
1047                 be_emit_string(tbl.label);
1048                 be_emit_cstring(":\n");
1049                 be_emit_write_line();
1050
1051                 be_emit_cstring(".long ");
1052                 ia32_emit_cfop_target(tbl.branches[0].target);
1053                 be_emit_finish_line_gas(NULL);
1054
1055                 last_value = tbl.branches[0].value;
1056                 for (i = 1; i < tbl.num_branches; ++i) {
1057                         while (++last_value < tbl.branches[i].value) {
1058                                 be_emit_cstring(".long ");
1059                                 ia32_emit_cfop_target(tbl.defProj);
1060                                 be_emit_finish_line_gas(NULL);
1061                         }
1062                         be_emit_cstring(".long ");
1063                         ia32_emit_cfop_target(tbl.branches[i].target);
1064                         be_emit_finish_line_gas(NULL);
1065                 }
1066                 be_gas_emit_switch_section(GAS_SECTION_TEXT);
1067         } else {
1068                 /* one jump is enough */
1069                 be_emit_cstring("\tjmp ");
1070                 ia32_emit_cfop_target(tbl.branches[0].target);
1071                 be_emit_finish_line_gas(node);
1072         }
1073
1074         if (tbl.label)
1075                 free(tbl.label);
1076         if (tbl.branches)
1077                 free(tbl.branches);
1078 }
1079
1080 /**
1081  * Emits code for a unconditional jump.
1082  */
1083 static void emit_Jmp(const ir_node *node)
1084 {
1085         ir_node *block, *next_block;
1086
1087         /* for now, the code works for scheduled and non-schedules blocks */
1088         block = get_nodes_block(node);
1089
1090         /* we have a block schedule */
1091         next_block = next_blk_sched(block);
1092         if (get_cfop_target_block(node) != next_block) {
1093                 be_emit_cstring("\tjmp ");
1094                 ia32_emit_cfop_target(node);
1095         } else {
1096                 be_emit_cstring("\t/* fallthrough to ");
1097                 ia32_emit_cfop_target(node);
1098                 be_emit_cstring(" */");
1099         }
1100         be_emit_finish_line_gas(node);
1101 }
1102
1103 static void emit_ia32_Immediate(const ir_node *node)
1104 {
1105         const ia32_immediate_attr_t *attr = get_ia32_immediate_attr_const(node);
1106
1107         be_emit_char('$');
1108         if(attr->symconst != NULL) {
1109                 ident *id = get_entity_ld_ident(attr->symconst);
1110
1111                 if(attr->attr.data.am_sc_sign)
1112                         be_emit_char('-');
1113                 be_emit_ident(id);
1114         }
1115         if(attr->symconst == NULL || attr->offset != 0) {
1116                 if(attr->symconst != NULL) {
1117                         be_emit_irprintf("%+d", attr->offset);
1118                 } else {
1119                         be_emit_irprintf("0x%X", attr->offset);
1120                 }
1121         }
1122 }
1123
1124 static const char* emit_asm_operand(const ir_node *node, const char *s)
1125 {
1126         const arch_register_t *reg;
1127         const char            *reg_name;
1128         char                   c;
1129         char                   modifier = 0;
1130         int                    num      = -1;
1131         const ia32_attr_t     *attr;
1132         int                    n_outs;
1133         int                    p;
1134
1135         assert(*s == '%');
1136         c = *(++s);
1137
1138         /* parse modifiers */
1139         switch(c) {
1140         case 0:
1141                 ir_fprintf(stderr, "Warning: asm text (%+F) ends with %\n", node);
1142                 be_emit_char('%');
1143                 return s + 1;
1144         case '%':
1145                 be_emit_char('%');
1146                 return s + 1;
1147         case 'w':
1148         case 'b':
1149         case 'h':
1150                 modifier = c;
1151                 ++s;
1152                 break;
1153         case '0':
1154         case '1':
1155         case '2':
1156         case '3':
1157         case '4':
1158         case '5':
1159         case '6':
1160         case '7':
1161         case '8':
1162         case '9':
1163                 break;
1164         default:
1165                 ir_fprintf(stderr, "Warning: asm text (%+F) contains unknown modifier "
1166                            "'%c' for asm op\n", node, c);
1167                 ++s;
1168                 break;
1169         }
1170
1171         /* parse number */
1172         sscanf(s, "%d%n", &num, &p);
1173         if(num < 0) {
1174                 ir_fprintf(stderr, "Warning: Couldn't parse assembler operand (%+F)\n",
1175                            node);
1176                 return s;
1177         } else {
1178                 s += p;
1179         }
1180
1181         /* get register */
1182         attr   = get_ia32_attr_const(node);
1183         n_outs = ARR_LEN(attr->slots);
1184         if(num < n_outs) {
1185                 reg = get_out_reg(node, num);
1186         } else {
1187                 ir_node *pred;
1188                 int      in = num - n_outs;
1189                 if(in >= get_irn_arity(node)) {
1190                         ir_fprintf(stderr, "Warning: Invalid input %d specified in asm "
1191                                    "op (%+F)\n", num, node);
1192                         return s;
1193                 }
1194                 pred = get_irn_n(node, in);
1195                 /* might be an immediate value */
1196                 if(is_ia32_Immediate(pred)) {
1197                         emit_ia32_Immediate(pred);
1198                         return s;
1199                 }
1200                 reg = get_in_reg(node, in);
1201         }
1202         if(reg == NULL) {
1203                 ir_fprintf(stderr, "Warning: no register assigned for %d asm op "
1204                            "(%+F)\n", num, node);
1205                 return s;
1206         }
1207
1208         /* emit it */
1209         be_emit_char('%');
1210         switch(modifier) {
1211         case 0:
1212                 reg_name = arch_register_get_name(reg);
1213                 break;
1214         case 'b':
1215                 reg_name = ia32_get_mapped_reg_name(isa->regs_8bit, reg);
1216                 break;
1217         case 'h':
1218                 reg_name = ia32_get_mapped_reg_name(isa->regs_8bit_high, reg);
1219                 break;
1220         case 'w':
1221                 reg_name = ia32_get_mapped_reg_name(isa->regs_16bit, reg);
1222                 break;
1223         default:
1224                 panic("Invalid asm op modifier");
1225         }
1226         be_emit_string(reg_name);
1227
1228         return s;
1229 }
1230
1231 /**
1232  * Emits code for an ASM pseudo op.
1233  */
1234 static void emit_ia32_Asm(const ir_node *node)
1235 {
1236         const void            *gen_attr = get_irn_generic_attr_const(node);
1237         const ia32_asm_attr_t *attr
1238                 = CONST_CAST_IA32_ATTR(ia32_asm_attr_t, gen_attr);
1239         ident                 *asm_text = attr->asm_text;
1240         const char            *s        = get_id_str(asm_text);
1241
1242         be_emit_cstring("# Begin ASM \t");
1243         be_emit_finish_line_gas(node);
1244
1245         if (s[0] != '\t')
1246                 be_emit_char('\t');
1247
1248         while(*s != 0) {
1249                 if(*s == '%') {
1250                         s = emit_asm_operand(node, s);
1251                         continue;
1252                 } else {
1253                         be_emit_char(*s);
1254                 }
1255                 ++s;
1256         }
1257
1258         be_emit_char('\n');
1259         be_emit_write_line();
1260
1261         be_emit_cstring("# End ASM\n");
1262         be_emit_write_line();
1263 }
1264
1265 /**********************************
1266  *   _____                  ____
1267  *  / ____|                |  _ \
1268  * | |     ___  _ __  _   _| |_) |
1269  * | |    / _ \| '_ \| | | |  _ <
1270  * | |___| (_) | |_) | |_| | |_) |
1271  *  \_____\___/| .__/ \__, |____/
1272  *             | |     __/ |
1273  *             |_|    |___/
1274  **********************************/
1275
1276 /**
1277  * Emit movsb/w instructions to make mov count divideable by 4
1278  */
1279 static void emit_CopyB_prolog(int rem) {
1280         be_emit_cstring("\tcld");
1281         be_emit_finish_line_gas(NULL);
1282
1283         switch(rem) {
1284         case 1:
1285                 be_emit_cstring("\tmovsb");
1286                 be_emit_finish_line_gas(NULL);
1287                 break;
1288         case 2:
1289                 be_emit_cstring("\tmovsw");
1290                 be_emit_finish_line_gas(NULL);
1291                 break;
1292         case 3:
1293                 be_emit_cstring("\tmovsb");
1294                 be_emit_finish_line_gas(NULL);
1295                 be_emit_cstring("\tmovsw");
1296                 be_emit_finish_line_gas(NULL);
1297                 break;
1298         }
1299 }
1300
1301 /**
1302  * Emit rep movsd instruction for memcopy.
1303  */
1304 static void emit_ia32_CopyB(const ir_node *node)
1305 {
1306         int rem = get_ia32_pncode(node);
1307
1308         emit_CopyB_prolog(rem);
1309
1310         be_emit_cstring("\trep movsd");
1311         be_emit_finish_line_gas(node);
1312 }
1313
1314 /**
1315  * Emits unrolled memcopy.
1316  */
1317 static void emit_ia32_CopyB_i(const ir_node *node)
1318 {
1319         int size = get_ia32_pncode(node);
1320
1321         emit_CopyB_prolog(size & 0x3);
1322
1323         size >>= 2;
1324         while (size--) {
1325                 be_emit_cstring("\tmovsd");
1326                 be_emit_finish_line_gas(NULL);
1327         }
1328 }
1329
1330
1331
1332 /***************************
1333  *   _____
1334  *  / ____|
1335  * | |     ___  _ ____   __
1336  * | |    / _ \| '_ \ \ / /
1337  * | |___| (_) | | | \ V /
1338  *  \_____\___/|_| |_|\_/
1339  *
1340  ***************************/
1341
1342 /**
1343  * Emit code for conversions (I, FP), (FP, I) and (FP, FP).
1344  */
1345 static void emit_ia32_Conv_with_FP(const ir_node *node)
1346 {
1347         ir_mode            *ls_mode = get_ia32_ls_mode(node);
1348         int                 ls_bits = get_mode_size_bits(ls_mode);
1349
1350         be_emit_cstring("\tcvt");
1351
1352         if(is_ia32_Conv_I2FP(node)) {
1353                 if(ls_bits == 32) {
1354                         be_emit_cstring("si2ss");
1355                 } else {
1356                         be_emit_cstring("si2sd");
1357                 }
1358         } else if(is_ia32_Conv_FP2I(node)) {
1359                 if(ls_bits == 32) {
1360                         be_emit_cstring("ss2si");
1361                 } else {
1362                         be_emit_cstring("sd2si");
1363                 }
1364         } else {
1365                 assert(is_ia32_Conv_FP2FP(node));
1366                 if(ls_bits == 32) {
1367                         be_emit_cstring("sd2ss");
1368                 } else {
1369                         be_emit_cstring("ss2sd");
1370                 }
1371         }
1372         be_emit_char(' ');
1373
1374         switch(get_ia32_op_type(node)) {
1375                 case ia32_Normal:
1376                         ia32_emit_source_register(node, n_ia32_unary_op);
1377                         break;
1378                 case ia32_AddrModeS:
1379                         ia32_emit_am(node);
1380                         break;
1381                 default:
1382                         assert(0 && "unsupported op type for Conv");
1383         }
1384         be_emit_cstring(", ");
1385         ia32_emit_dest_register(node, 0);
1386         be_emit_finish_line_gas(node);
1387 }
1388
1389 static void emit_ia32_Conv_I2FP(const ir_node *node)
1390 {
1391         emit_ia32_Conv_with_FP(node);
1392 }
1393
1394 static void emit_ia32_Conv_FP2I(const ir_node *node)
1395 {
1396         emit_ia32_Conv_with_FP(node);
1397 }
1398
1399 static void emit_ia32_Conv_FP2FP(const ir_node *node)
1400 {
1401         emit_ia32_Conv_with_FP(node);
1402 }
1403
1404 /**
1405  * Emits code for an Int conversion.
1406  */
1407 static void emit_ia32_Conv_I2I(const ir_node *node)
1408 {
1409         const char            *sign_suffix;
1410         ir_mode               *smaller_mode = get_ia32_ls_mode(node);
1411         int                    smaller_bits = get_mode_size_bits(smaller_mode);
1412         int                    signed_mode;
1413         const arch_register_t *in_reg, *out_reg;
1414
1415         assert(!mode_is_float(smaller_mode));
1416         assert(smaller_bits == 8 || smaller_bits == 16 || smaller_bits == 32);
1417
1418         signed_mode = mode_is_signed(smaller_mode);
1419         if(smaller_bits == 32) {
1420                 // this should not happen as it's no convert
1421                 assert(0);
1422                 sign_suffix = "";
1423         } else {
1424                 sign_suffix = signed_mode ? "s" : "z";
1425         }
1426
1427         out_reg = get_out_reg(node, 0);
1428
1429         switch(get_ia32_op_type(node)) {
1430                 case ia32_Normal:
1431                         in_reg  = get_in_reg(node, n_ia32_unary_op);
1432
1433                         if (in_reg  == &ia32_gp_regs[REG_EAX] &&
1434                                 out_reg == &ia32_gp_regs[REG_EAX] &&
1435                                 signed_mode &&
1436                                 smaller_bits == 16)
1437                         {
1438                                 /* argument and result are both in EAX and */
1439                                 /* signedness is ok: -> use the smaller cwtl opcode */
1440                                 be_emit_cstring("\tcwtl");
1441                         } else {
1442                                 be_emit_cstring("\tmov");
1443                                 be_emit_string(sign_suffix);
1444                                 ia32_emit_mode_suffix_mode(smaller_mode);
1445                                 be_emit_cstring("l ");
1446                                 emit_register(in_reg, smaller_mode);
1447                                 be_emit_cstring(", ");
1448                                 emit_register(out_reg, NULL);
1449                         }
1450                         break;
1451                 case ia32_AddrModeS: {
1452                         be_emit_cstring("\tmov");
1453                         be_emit_string(sign_suffix);
1454                         ia32_emit_mode_suffix_mode(smaller_mode);
1455                         be_emit_cstring("l ");
1456                         ia32_emit_am(node);
1457                         be_emit_cstring(", ");
1458                         emit_register(out_reg, NULL);
1459                         break;
1460                 }
1461                 default:
1462                         assert(0 && "unsupported op type for Conv");
1463         }
1464         be_emit_finish_line_gas(node);
1465 }
1466
1467 /**
1468  * Emits code for an 8Bit Int conversion.
1469  */
1470 static void emit_ia32_Conv_I2I8Bit(const ir_node *node)
1471 {
1472         emit_ia32_Conv_I2I(node);
1473 }
1474
1475
1476 /*******************************************
1477  *  _                          _
1478  * | |                        | |
1479  * | |__   ___ _ __   ___   __| | ___  ___
1480  * | '_ \ / _ \ '_ \ / _ \ / _` |/ _ \/ __|
1481  * | |_) |  __/ | | | (_) | (_| |  __/\__ \
1482  * |_.__/ \___|_| |_|\___/ \__,_|\___||___/
1483  *
1484  *******************************************/
1485
1486 /**
1487  * Emits a backend call
1488  */
1489 static void emit_be_Call(const ir_node *node)
1490 {
1491         ir_entity *ent = be_Call_get_entity(node);
1492
1493         be_emit_cstring("\tcall ");
1494         if (ent) {
1495                 set_entity_backend_marked(ent, 1);
1496                 be_emit_string(get_entity_ld_name(ent));
1497         } else {
1498                 const arch_register_t *reg = get_in_reg(node, be_pos_Call_ptr);
1499                 be_emit_char('*');
1500                 emit_register(reg, NULL);
1501         }
1502         be_emit_finish_line_gas(node);
1503 }
1504
1505 /**
1506  * Emits code to increase stack pointer.
1507  */
1508 static void emit_be_IncSP(const ir_node *node)
1509 {
1510         int                    offs = be_get_IncSP_offset(node);
1511         const arch_register_t *reg  = arch_get_irn_register(arch_env, node);
1512
1513         if (offs == 0)
1514                 return;
1515
1516         if (offs > 0) {
1517                 be_emit_cstring("\tsubl $");
1518                 be_emit_irprintf("%u, ", offs);
1519                 emit_register(reg, NULL);
1520         } else {
1521                 be_emit_cstring("\taddl $");
1522                 be_emit_irprintf("%u, ", -offs);
1523                 emit_register(reg, NULL);
1524         }
1525         be_emit_finish_line_gas(node);
1526 }
1527
1528 /**
1529  * Emits code for Copy/CopyKeep.
1530  */
1531 static void Copy_emitter(const ir_node *node, const ir_node *op)
1532 {
1533         const arch_register_t *in  = arch_get_irn_register(arch_env, op);
1534         const arch_register_t *out = arch_get_irn_register(arch_env, node);
1535         ir_mode               *mode;
1536
1537         if(in == out) {
1538                 return;
1539         }
1540         if(is_unknown_reg(in))
1541                 return;
1542         /* copies of vf nodes aren't real... */
1543         if(arch_register_get_class(in) == &ia32_reg_classes[CLASS_ia32_vfp])
1544                 return;
1545
1546         mode = get_irn_mode(node);
1547         if (mode == mode_E) {
1548                 be_emit_cstring("\tmovsd ");
1549                 emit_register(in, NULL);
1550                 be_emit_cstring(", ");
1551                 emit_register(out, NULL);
1552         } else {
1553                 be_emit_cstring("\tmovl ");
1554                 emit_register(in, NULL);
1555                 be_emit_cstring(", ");
1556                 emit_register(out, NULL);
1557         }
1558         be_emit_finish_line_gas(node);
1559 }
1560
1561 static void emit_be_Copy(const ir_node *node)
1562 {
1563         Copy_emitter(node, be_get_Copy_op(node));
1564 }
1565
1566 static void emit_be_CopyKeep(const ir_node *node)
1567 {
1568         Copy_emitter(node, be_get_CopyKeep_op(node));
1569 }
1570
1571 /**
1572  * Emits code for exchange.
1573  */
1574 static void emit_be_Perm(const ir_node *node)
1575 {
1576         const arch_register_t *in0, *in1;
1577         const arch_register_class_t *cls0, *cls1;
1578
1579         in0 = arch_get_irn_register(arch_env, get_irn_n(node, 0));
1580         in1 = arch_get_irn_register(arch_env, get_irn_n(node, 1));
1581
1582         cls0 = arch_register_get_class(in0);
1583         cls1 = arch_register_get_class(in1);
1584
1585         assert(cls0 == cls1 && "Register class mismatch at Perm");
1586
1587         if (cls0 == &ia32_reg_classes[CLASS_ia32_gp]) {
1588                 be_emit_cstring("\txchg ");
1589                 emit_register(in1, NULL);
1590                 be_emit_cstring(", ");
1591                 emit_register(in0, NULL);
1592                 be_emit_finish_line_gas(node);
1593         } else if (cls0 == &ia32_reg_classes[CLASS_ia32_xmm]) {
1594                 be_emit_cstring("\txorpd ");
1595                 emit_register(in1, NULL);
1596                 be_emit_cstring(", ");
1597                 emit_register(in0, NULL);
1598                 be_emit_finish_line_gas(NULL);
1599
1600                 be_emit_cstring("\txorpd ");
1601                 emit_register(in0, NULL);
1602                 be_emit_cstring(", ");
1603                 emit_register(in1, NULL);
1604                 be_emit_finish_line_gas(NULL);
1605
1606                 be_emit_cstring("\txorpd ");
1607                 emit_register(in1, NULL);
1608                 be_emit_cstring(", ");
1609                 emit_register(in0, NULL);
1610                 be_emit_finish_line_gas(node);
1611         } else if (cls0 == &ia32_reg_classes[CLASS_ia32_vfp]) {
1612                 /* is a NOP */
1613         } else if (cls0 == &ia32_reg_classes[CLASS_ia32_st]) {
1614                 /* is a NOP */
1615         } else {
1616                 panic("unexpected register class in be_Perm (%+F)\n", node);
1617         }
1618 }
1619
1620 /**
1621  * Emits code for Constant loading.
1622  */
1623 static void emit_ia32_Const(const ir_node *node)
1624 {
1625         be_emit_cstring("\tmovl ");
1626         emit_ia32_Immediate(node);
1627         be_emit_cstring(", ");
1628         ia32_emit_dest_register(node, 0);
1629
1630         be_emit_finish_line_gas(node);
1631 }
1632
1633 /**
1634  * Emits code to load the TLS base
1635  */
1636 static void emit_ia32_LdTls(const ir_node *node)
1637 {
1638         be_emit_cstring("\tmovl %gs:0, ");
1639         ia32_emit_dest_register(node, 0);
1640         be_emit_finish_line_gas(node);
1641 }
1642
1643 /* helper function for emit_ia32_Minus64Bit */
1644 static void emit_mov(const ir_node* node, const arch_register_t *src, const arch_register_t *dst)
1645 {
1646         be_emit_cstring("\tmovl ");
1647         emit_register(src, NULL);
1648         be_emit_cstring(", ");
1649         emit_register(dst, NULL);
1650         be_emit_finish_line_gas(node);
1651 }
1652
1653 /* helper function for emit_ia32_Minus64Bit */
1654 static void emit_neg(const ir_node* node, const arch_register_t *reg)
1655 {
1656         be_emit_cstring("\tnegl ");
1657         emit_register(reg, NULL);
1658         be_emit_finish_line_gas(node);
1659 }
1660
1661 /* helper function for emit_ia32_Minus64Bit */
1662 static void emit_sbb0(const ir_node* node, const arch_register_t *reg)
1663 {
1664         be_emit_cstring("\tsbbl $0, ");
1665         emit_register(reg, NULL);
1666         be_emit_finish_line_gas(node);
1667 }
1668
1669 /* helper function for emit_ia32_Minus64Bit */
1670 static void emit_sbb(const ir_node* node, const arch_register_t *src, const arch_register_t *dst)
1671 {
1672         be_emit_cstring("\tsbbl ");
1673         emit_register(src, NULL);
1674         be_emit_cstring(", ");
1675         emit_register(dst, NULL);
1676         be_emit_finish_line_gas(node);
1677 }
1678
1679 /* helper function for emit_ia32_Minus64Bit */
1680 static void emit_xchg(const ir_node* node, const arch_register_t *src, const arch_register_t *dst)
1681 {
1682         be_emit_cstring("\txchgl ");
1683         emit_register(src, NULL);
1684         be_emit_cstring(", ");
1685         emit_register(dst, NULL);
1686         be_emit_finish_line_gas(node);
1687 }
1688
1689 /* helper function for emit_ia32_Minus64Bit */
1690 static void emit_zero(const ir_node* node, const arch_register_t *reg)
1691 {
1692         be_emit_cstring("\txorl ");
1693         emit_register(reg, NULL);
1694         be_emit_cstring(", ");
1695         emit_register(reg, NULL);
1696         be_emit_finish_line_gas(node);
1697 }
1698
1699 static void emit_ia32_Minus64Bit(const ir_node *node)
1700 {
1701         const arch_register_t *in_lo  = get_in_reg(node, 0);
1702         const arch_register_t *in_hi  = get_in_reg(node, 1);
1703         const arch_register_t *out_lo = get_out_reg(node, 0);
1704         const arch_register_t *out_hi = get_out_reg(node, 1);
1705
1706         if (out_lo == in_lo) {
1707                 if (out_hi != in_hi) {
1708                         /* a -> a, b -> d */
1709                         goto zero_neg;
1710                 } else {
1711                         /* a -> a, b -> b */
1712                         goto normal_neg;
1713                 }
1714         } else if (out_lo == in_hi) {
1715                 if (out_hi == in_lo) {
1716                         /* a -> b, b -> a */
1717                         emit_xchg(node, in_lo, in_hi);
1718                         goto normal_neg;
1719                 } else {
1720                         /* a -> b, b -> d */
1721                         emit_mov(node, in_hi, out_hi);
1722                         emit_mov(node, in_lo, out_lo);
1723                         goto normal_neg;
1724                 }
1725         } else {
1726                 if (out_hi == in_lo) {
1727                         /* a -> c, b -> a */
1728                         emit_mov(node, in_lo, out_lo);
1729                         goto zero_neg;
1730                 } else if (out_hi == in_hi) {
1731                         /* a -> c, b -> b */
1732                         emit_mov(node, in_lo, out_lo);
1733                         goto normal_neg;
1734                 } else {
1735                         /* a -> c, b -> d */
1736                         emit_mov(node, in_lo, out_lo);
1737                         goto zero_neg;
1738                 }
1739         }
1740
1741 normal_neg:
1742         emit_neg( node, out_hi);
1743         emit_neg( node, out_lo);
1744         emit_sbb0(node, out_hi);
1745         return;
1746
1747 zero_neg:
1748         emit_zero(node, out_hi);
1749         emit_neg( node, out_lo);
1750         emit_sbb( node, in_hi, out_hi);
1751 }
1752
1753 static void emit_be_Return(const ir_node *node)
1754 {
1755         be_emit_cstring("\tret");
1756         be_emit_finish_line_gas(node);
1757 }
1758
1759 static void emit_Nothing(const ir_node *node)
1760 {
1761         (void) node;
1762 }
1763
1764
1765 /***********************************************************************************
1766  *                  _          __                                             _
1767  *                 (_)        / _|                                           | |
1768  *  _ __ ___   __ _ _ _ __   | |_ _ __ __ _ _ __ ___   _____      _____  _ __| | __
1769  * | '_ ` _ \ / _` | | '_ \  |  _| '__/ _` | '_ ` _ \ / _ \ \ /\ / / _ \| '__| |/ /
1770  * | | | | | | (_| | | | | | | | | | | (_| | | | | | |  __/\ V  V / (_) | |  |   <
1771  * |_| |_| |_|\__,_|_|_| |_| |_| |_|  \__,_|_| |_| |_|\___| \_/\_/ \___/|_|  |_|\_\
1772  *
1773  ***********************************************************************************/
1774
1775 /**
1776  * Enters the emitter functions for handled nodes into the generic
1777  * pointer of an opcode.
1778  */
1779 static
1780 void ia32_register_emitters(void) {
1781
1782 #define IA32_EMIT2(a,b) op_ia32_##a->ops.generic = (op_func)emit_ia32_##b
1783 #define IA32_EMIT(a)    IA32_EMIT2(a,a)
1784 #define EMIT(a)         op_##a->ops.generic = (op_func)emit_##a
1785 #define IGN(a)                  op_##a->ops.generic = (op_func)emit_Nothing
1786 #define BE_EMIT(a)      op_be_##a->ops.generic = (op_func)emit_be_##a
1787 #define BE_IGN(a)               op_be_##a->ops.generic = (op_func)emit_Nothing
1788
1789         /* first clear the generic function pointer for all ops */
1790         clear_irp_opcodes_generic_func();
1791
1792         /* register all emitter functions defined in spec */
1793         ia32_register_spec_emitters();
1794
1795         /* other ia32 emitter functions */
1796         IA32_EMIT(Asm);
1797         IA32_EMIT(CMov);
1798         IA32_EMIT(SwitchJmp);
1799         IA32_EMIT(CopyB);
1800         IA32_EMIT(CopyB_i);
1801         IA32_EMIT(Conv_I2FP);
1802         IA32_EMIT(Conv_FP2I);
1803         IA32_EMIT(Conv_FP2FP);
1804         IA32_EMIT(Conv_I2I);
1805         IA32_EMIT(Conv_I2I8Bit);
1806         IA32_EMIT(Const);
1807         IA32_EMIT(LdTls);
1808         IA32_EMIT(Minus64Bit);
1809         IA32_EMIT(Jcc);
1810
1811         /* benode emitter */
1812         BE_EMIT(Call);
1813         BE_EMIT(IncSP);
1814         BE_EMIT(Copy);
1815         BE_EMIT(CopyKeep);
1816         BE_EMIT(Perm);
1817         BE_EMIT(Return);
1818
1819         BE_IGN(RegParams);
1820         BE_IGN(Barrier);
1821         BE_IGN(Keep);
1822
1823         /* firm emitter */
1824         EMIT(Jmp);
1825         IGN(Proj);
1826         IGN(Phi);
1827         IGN(Start);
1828
1829 #undef BE_EMIT
1830 #undef EMIT
1831 #undef IGN
1832 #undef IA32_EMIT2
1833 #undef IA32_EMIT
1834 }
1835
1836 static const char *last_name = NULL;
1837 static unsigned last_line = -1;
1838 static unsigned num = -1;
1839
1840 /**
1841  * Emit the debug support for node node.
1842  */
1843 static void ia32_emit_dbg(const ir_node *node)
1844 {
1845         dbg_info *db = get_irn_dbg_info(node);
1846         unsigned lineno;
1847         const char *fname = be_retrieve_dbg_info(db, &lineno);
1848
1849         if (! cg->birg->main_env->options->stabs_debug_support)
1850                 return;
1851
1852         if (fname) {
1853                 if (last_name != fname) {
1854                         last_line = -1;
1855                         be_dbg_include_begin(cg->birg->main_env->db_handle, fname);
1856                         last_name = fname;
1857                 }
1858                 if (last_line != lineno) {
1859                         char name[64];
1860
1861                         snprintf(name, sizeof(name), ".LM%u", ++num);
1862                         last_line = lineno;
1863                         be_dbg_line(cg->birg->main_env->db_handle, lineno, name);
1864                         be_emit_string(name);
1865                         be_emit_cstring(":\n");
1866                         be_emit_write_line();
1867                 }
1868         }
1869 }
1870
1871 typedef void (*emit_func_ptr) (const ir_node *);
1872
1873 /**
1874  * Emits code for a node.
1875  */
1876 static void ia32_emit_node(const ir_node *node)
1877 {
1878         ir_op *op = get_irn_op(node);
1879
1880         DBG((dbg, LEVEL_1, "emitting code for %+F\n", node));
1881
1882         if (op->ops.generic) {
1883                 emit_func_ptr func = (emit_func_ptr) op->ops.generic;
1884                 ia32_emit_dbg(node);
1885                 (*func) (node);
1886         } else {
1887                 emit_Nothing(node);
1888                 ir_fprintf(stderr, "Error: No emit handler for node %+F (%+G, graph %+F)\n", node, node, current_ir_graph);
1889                 abort();
1890         }
1891 }
1892
1893 /**
1894  * Emits gas alignment directives
1895  */
1896 static void ia32_emit_alignment(unsigned align, unsigned skip)
1897 {
1898         be_emit_cstring("\t.p2align ");
1899         be_emit_irprintf("%u,,%u\n", align, skip);
1900         be_emit_write_line();
1901 }
1902
1903 /**
1904  * Emits gas alignment directives for Functions depended on cpu architecture.
1905  */
1906 static void ia32_emit_align_func(cpu_support cpu)
1907 {
1908         unsigned align;
1909         unsigned maximum_skip;
1910
1911         switch (cpu) {
1912                 case arch_i386:
1913                         align = 2;
1914                         break;
1915                 case arch_i486:
1916                         align = 4;
1917                         break;
1918                 case arch_k6:
1919                         align = 5;
1920                         break;
1921                 default:
1922                         align = 4;
1923         }
1924         maximum_skip = (1 << align) - 1;
1925         ia32_emit_alignment(align, maximum_skip);
1926 }
1927
1928 /**
1929  * Emits gas alignment directives for Labels depended on cpu architecture.
1930  */
1931 static void ia32_emit_align_label(cpu_support cpu)
1932 {
1933         unsigned align; unsigned maximum_skip;
1934
1935         switch (cpu) {
1936                 case arch_i386:
1937                         align = 2;
1938                         break;
1939                 case arch_i486:
1940                         align = 4;
1941                         break;
1942                 case arch_k6:
1943                         align = 5;
1944                         break;
1945                 default:
1946                         align = 4;
1947         }
1948         maximum_skip = (1 << align) - 1;
1949         ia32_emit_alignment(align, maximum_skip);
1950 }
1951
1952 /**
1953  * Test wether a block should be aligned.
1954  * For cpus in the P4/Athlon class it is usefull to align jump labels to
1955  * 16 bytes. However we should only do that if the alignment nops before the
1956  * label aren't executed more often than we have jumps to the label.
1957  */
1958 static int should_align_block(ir_node *block, ir_node *prev)
1959 {
1960         static const double DELTA = .0001;
1961         ir_exec_freq *exec_freq   = cg->birg->exec_freq;
1962         double        block_freq;
1963         double        prev_freq = 0;  /**< execfreq of the fallthrough block */
1964         double        jmp_freq  = 0;  /**< execfreq of all non-fallthrough blocks */
1965         cpu_support   cpu       = isa->opt_arch;
1966         int           i, n_cfgpreds;
1967
1968         if(exec_freq == NULL)
1969                 return 0;
1970         if(cpu == arch_i386 || cpu == arch_i486)
1971                 return 0;
1972
1973         block_freq = get_block_execfreq(exec_freq, block);
1974         if(block_freq < DELTA)
1975                 return 0;
1976
1977         n_cfgpreds = get_Block_n_cfgpreds(block);
1978         for(i = 0; i < n_cfgpreds; ++i) {
1979                 ir_node *pred      = get_Block_cfgpred_block(block, i);
1980                 double   pred_freq = get_block_execfreq(exec_freq, pred);
1981
1982                 if(pred == prev) {
1983                         prev_freq += pred_freq;
1984                 } else {
1985                         jmp_freq  += pred_freq;
1986                 }
1987         }
1988
1989         if(prev_freq < DELTA && !(jmp_freq < DELTA))
1990                 return 1;
1991
1992         jmp_freq /= prev_freq;
1993
1994         switch (cpu) {
1995                 case arch_athlon:
1996                 case arch_athlon_64:
1997                 case arch_k6:
1998                         return jmp_freq > 3;
1999                 default:
2000                         return jmp_freq > 2;
2001         }
2002 }
2003
2004 static void ia32_emit_block_header(ir_node *block, ir_node *prev)
2005 {
2006         int           n_cfgpreds;
2007         int           need_label;
2008         int           i, arity;
2009         ir_exec_freq  *exec_freq = cg->birg->exec_freq;
2010
2011         n_cfgpreds = get_Block_n_cfgpreds(block);
2012         need_label = (n_cfgpreds != 0);
2013
2014         if (should_align_block(block, prev)) {
2015                 assert(need_label);
2016                 ia32_emit_align_label(isa->opt_arch);
2017         }
2018
2019         if(need_label) {
2020                 ia32_emit_block_name(block);
2021                 be_emit_char(':');
2022
2023                 be_emit_pad_comment();
2024                 be_emit_cstring("   /* preds:");
2025
2026                 /* emit list of pred blocks in comment */
2027                 arity = get_irn_arity(block);
2028                 for (i = 0; i < arity; ++i) {
2029                         ir_node *predblock = get_Block_cfgpred_block(block, i);
2030                         be_emit_irprintf(" %d", get_irn_node_nr(predblock));
2031                 }
2032         } else {
2033                 be_emit_cstring("\t/* ");
2034                 ia32_emit_block_name(block);
2035                 be_emit_cstring(": ");
2036         }
2037         if (exec_freq != NULL) {
2038                 be_emit_irprintf(" freq: %f",
2039                                  get_block_execfreq(exec_freq, block));
2040         }
2041         be_emit_cstring(" */\n");
2042         be_emit_write_line();
2043 }
2044
2045 /**
2046  * Walks over the nodes in a block connected by scheduling edges
2047  * and emits code for each node.
2048  */
2049 static void ia32_gen_block(ir_node *block, ir_node *last_block)
2050 {
2051         const ir_node *node;
2052
2053         ia32_emit_block_header(block, last_block);
2054
2055         /* emit the contents of the block */
2056         ia32_emit_dbg(block);
2057         sched_foreach(block, node) {
2058                 ia32_emit_node(node);
2059         }
2060 }
2061
2062 /**
2063  * Emits code for function start.
2064  */
2065 static void ia32_emit_func_prolog(ir_graph *irg)
2066 {
2067         ir_entity  *irg_ent  = get_irg_entity(irg);
2068         const char *irg_name = get_entity_ld_name(irg_ent);
2069         cpu_support cpu      = isa->opt_arch;
2070         const be_irg_t *birg = cg->birg;
2071
2072         be_emit_write_line();
2073         be_gas_emit_switch_section(GAS_SECTION_TEXT);
2074         be_dbg_method_begin(birg->main_env->db_handle, irg_ent, be_abi_get_stack_layout(birg->abi));
2075         ia32_emit_align_func(cpu);
2076         if (get_entity_visibility(irg_ent) == visibility_external_visible) {
2077                 be_emit_cstring(".global ");
2078                 be_emit_string(irg_name);
2079                 be_emit_char('\n');
2080                 be_emit_write_line();
2081         }
2082         ia32_emit_function_object(irg_name);
2083         be_emit_string(irg_name);
2084         be_emit_cstring(":\n");
2085         be_emit_write_line();
2086 }
2087
2088 /**
2089  * Emits code for function end
2090  */
2091 static void ia32_emit_func_epilog(ir_graph *irg)
2092 {
2093         const char     *irg_name = get_entity_ld_name(get_irg_entity(irg));
2094         const be_irg_t *birg     = cg->birg;
2095
2096         ia32_emit_function_size(irg_name);
2097         be_dbg_method_end(birg->main_env->db_handle);
2098         be_emit_char('\n');
2099         be_emit_write_line();
2100 }
2101
2102 /**
2103  * Block-walker:
2104  * Sets labels for control flow nodes (jump target)
2105  */
2106 static void ia32_gen_labels(ir_node *block, void *data)
2107 {
2108         ir_node *pred;
2109         int n = get_Block_n_cfgpreds(block);
2110         (void) data;
2111
2112         for (n--; n >= 0; n--) {
2113                 pred = get_Block_cfgpred(block, n);
2114                 set_irn_link(pred, block);
2115         }
2116 }
2117
2118 /**
2119  * Emit an exception label if the current instruction can fail.
2120  */
2121 void ia32_emit_exc_label(const ir_node *node)
2122 {
2123         if (get_ia32_exc_label(node)) {
2124                 be_emit_irprintf(".EXL%u\n", 0);
2125                 be_emit_write_line();
2126         }
2127 }
2128
2129 /**
2130  * Main driver. Emits the code for one routine.
2131  */
2132 void ia32_gen_routine(ia32_code_gen_t *ia32_cg, ir_graph *irg)
2133 {
2134         ir_node *block;
2135         ir_node *last_block = NULL;
2136         int i, n;
2137
2138         cg       = ia32_cg;
2139         isa      = (const ia32_isa_t*) cg->arch_env->isa;
2140         arch_env = cg->arch_env;
2141
2142         ia32_register_emitters();
2143
2144         ia32_emit_func_prolog(irg);
2145         irg_block_walk_graph(irg, ia32_gen_labels, NULL, NULL);
2146
2147         n = ARR_LEN(cg->blk_sched);
2148         for (i = 0; i < n;) {
2149                 ir_node *next_bl;
2150
2151                 block   = cg->blk_sched[i];
2152                 ++i;
2153                 next_bl = i < n ? cg->blk_sched[i] : NULL;
2154
2155                 /* set here the link. the emitter expects to find the next block here */
2156                 set_irn_link(block, next_bl);
2157                 ia32_gen_block(block, last_block);
2158                 last_block = block;
2159         }
2160
2161         ia32_emit_func_epilog(irg);
2162 }
2163
2164 void ia32_init_emitter(void)
2165 {
2166         FIRM_DBG_REGISTER(dbg, "firm.be.ia32.emitter");
2167 }