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