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