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