ee5843571275b84a4d83533e4b074ef087e6b074
[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("# Begin ASM \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                         continue;
1342                 } else {
1343                         be_emit_char(*s);
1344                 }
1345                 ++s;
1346         }
1347
1348         be_emit_char('\n');
1349         be_emit_write_line();
1350
1351         be_emit_cstring("# End ASM\n");
1352         be_emit_write_line();
1353 }
1354
1355 /**********************************
1356  *   _____                  ____
1357  *  / ____|                |  _ \
1358  * | |     ___  _ __  _   _| |_) |
1359  * | |    / _ \| '_ \| | | |  _ <
1360  * | |___| (_) | |_) | |_| | |_) |
1361  *  \_____\___/| .__/ \__, |____/
1362  *             | |     __/ |
1363  *             |_|    |___/
1364  **********************************/
1365
1366 /**
1367  * Emit movsb/w instructions to make mov count divideable by 4
1368  */
1369 static void emit_CopyB_prolog(unsigned size) {
1370         be_emit_cstring("\tcld");
1371         be_emit_finish_line_gas(NULL);
1372
1373         switch (size) {
1374         case 1:
1375                 be_emit_cstring("\tmovsb");
1376                 be_emit_finish_line_gas(NULL);
1377                 break;
1378         case 2:
1379                 be_emit_cstring("\tmovsw");
1380                 be_emit_finish_line_gas(NULL);
1381                 break;
1382         case 3:
1383                 be_emit_cstring("\tmovsb");
1384                 be_emit_finish_line_gas(NULL);
1385                 be_emit_cstring("\tmovsw");
1386                 be_emit_finish_line_gas(NULL);
1387                 break;
1388         }
1389 }
1390
1391 /**
1392  * Emit rep movsd instruction for memcopy.
1393  */
1394 static void emit_ia32_CopyB(const ir_node *node)
1395 {
1396         unsigned size = get_ia32_copyb_size(node);
1397
1398         emit_CopyB_prolog(size);
1399
1400         be_emit_cstring("\trep movsd");
1401         be_emit_finish_line_gas(node);
1402 }
1403
1404 /**
1405  * Emits unrolled memcopy.
1406  */
1407 static void emit_ia32_CopyB_i(const ir_node *node)
1408 {
1409         unsigned size = get_ia32_copyb_size(node);
1410
1411         emit_CopyB_prolog(size & 0x3);
1412
1413         size >>= 2;
1414         while (size--) {
1415                 be_emit_cstring("\tmovsd");
1416                 be_emit_finish_line_gas(NULL);
1417         }
1418 }
1419
1420
1421
1422 /***************************
1423  *   _____
1424  *  / ____|
1425  * | |     ___  _ ____   __
1426  * | |    / _ \| '_ \ \ / /
1427  * | |___| (_) | | | \ V /
1428  *  \_____\___/|_| |_|\_/
1429  *
1430  ***************************/
1431
1432 /**
1433  * Emit code for conversions (I, FP), (FP, I) and (FP, FP).
1434  */
1435 static void emit_ia32_Conv_with_FP(const ir_node *node)
1436 {
1437         ir_mode            *ls_mode = get_ia32_ls_mode(node);
1438         int                 ls_bits = get_mode_size_bits(ls_mode);
1439
1440         be_emit_cstring("\tcvt");
1441
1442         if(is_ia32_Conv_I2FP(node)) {
1443                 if(ls_bits == 32) {
1444                         be_emit_cstring("si2ss");
1445                 } else {
1446                         be_emit_cstring("si2sd");
1447                 }
1448         } else if(is_ia32_Conv_FP2I(node)) {
1449                 if(ls_bits == 32) {
1450                         be_emit_cstring("ss2si");
1451                 } else {
1452                         be_emit_cstring("sd2si");
1453                 }
1454         } else {
1455                 assert(is_ia32_Conv_FP2FP(node));
1456                 if(ls_bits == 32) {
1457                         be_emit_cstring("sd2ss");
1458                 } else {
1459                         be_emit_cstring("ss2sd");
1460                 }
1461         }
1462         be_emit_char(' ');
1463
1464         switch(get_ia32_op_type(node)) {
1465                 case ia32_Normal:
1466                         ia32_emit_source_register(node, n_ia32_unary_op);
1467                         break;
1468                 case ia32_AddrModeS:
1469                         ia32_emit_am(node);
1470                         break;
1471                 default:
1472                         assert(0 && "unsupported op type for Conv");
1473         }
1474         be_emit_cstring(", ");
1475         ia32_emit_dest_register(node, 0);
1476         be_emit_finish_line_gas(node);
1477 }
1478
1479 static void emit_ia32_Conv_I2FP(const ir_node *node)
1480 {
1481         emit_ia32_Conv_with_FP(node);
1482 }
1483
1484 static void emit_ia32_Conv_FP2I(const ir_node *node)
1485 {
1486         emit_ia32_Conv_with_FP(node);
1487 }
1488
1489 static void emit_ia32_Conv_FP2FP(const ir_node *node)
1490 {
1491         emit_ia32_Conv_with_FP(node);
1492 }
1493
1494 /**
1495  * Emits code for an Int conversion.
1496  */
1497 static void emit_ia32_Conv_I2I(const ir_node *node)
1498 {
1499         const char            *sign_suffix;
1500         ir_mode               *smaller_mode = get_ia32_ls_mode(node);
1501         int                    smaller_bits = get_mode_size_bits(smaller_mode);
1502         int                    signed_mode;
1503         const arch_register_t *in_reg, *out_reg;
1504
1505         assert(!mode_is_float(smaller_mode));
1506         assert(smaller_bits == 8 || smaller_bits == 16);
1507
1508         signed_mode = mode_is_signed(smaller_mode);
1509         sign_suffix = signed_mode ? "s" : "z";
1510
1511         out_reg = get_out_reg(node, 0);
1512
1513         switch(get_ia32_op_type(node)) {
1514                 case ia32_Normal:
1515                         in_reg  = get_in_reg(node, n_ia32_unary_op);
1516
1517                         if (in_reg  == &ia32_gp_regs[REG_EAX] &&
1518                                 out_reg == &ia32_gp_regs[REG_EAX] &&
1519                                 signed_mode &&
1520                                 smaller_bits == 16)
1521                         {
1522                                 /* argument and result are both in EAX and */
1523                                 /* signedness is ok: -> use the smaller cwtl opcode */
1524                                 be_emit_cstring("\tcwtl");
1525                         } else {
1526                                 be_emit_cstring("\tmov");
1527                                 be_emit_string(sign_suffix);
1528                                 ia32_emit_mode_suffix_mode(smaller_mode);
1529                                 be_emit_cstring("l ");
1530                                 emit_register(in_reg, smaller_mode);
1531                                 be_emit_cstring(", ");
1532                                 emit_register(out_reg, NULL);
1533                         }
1534                         break;
1535                 case ia32_AddrModeS: {
1536                         be_emit_cstring("\tmov");
1537                         be_emit_string(sign_suffix);
1538                         ia32_emit_mode_suffix_mode(smaller_mode);
1539                         be_emit_cstring("l ");
1540                         ia32_emit_am(node);
1541                         be_emit_cstring(", ");
1542                         emit_register(out_reg, NULL);
1543                         break;
1544                 }
1545                 default:
1546                         panic("unsupported op type for Conv");
1547         }
1548         be_emit_finish_line_gas(node);
1549 }
1550
1551
1552 /*******************************************
1553  *  _                          _
1554  * | |                        | |
1555  * | |__   ___ _ __   ___   __| | ___  ___
1556  * | '_ \ / _ \ '_ \ / _ \ / _` |/ _ \/ __|
1557  * | |_) |  __/ | | | (_) | (_| |  __/\__ \
1558  * |_.__/ \___|_| |_|\___/ \__,_|\___||___/
1559  *
1560  *******************************************/
1561
1562 /**
1563  * Emits a backend call
1564  */
1565 static void emit_be_Call(const ir_node *node)
1566 {
1567         ir_entity *ent = be_Call_get_entity(node);
1568
1569         be_emit_cstring("\tcall ");
1570         if (ent) {
1571                 ia32_emit_entity(ent, 1);
1572         } else {
1573                 const arch_register_t *reg = get_in_reg(node, be_pos_Call_ptr);
1574                 be_emit_char('*');
1575                 emit_register(reg, NULL);
1576         }
1577         be_emit_finish_line_gas(node);
1578 }
1579
1580 /**
1581  * Emits code to increase stack pointer.
1582  */
1583 static void emit_be_IncSP(const ir_node *node)
1584 {
1585         int                    offs = be_get_IncSP_offset(node);
1586         const arch_register_t *reg  = arch_get_irn_register(arch_env, node);
1587
1588         if (offs == 0)
1589                 return;
1590
1591         if (offs > 0) {
1592                 be_emit_cstring("\tsubl $");
1593                 be_emit_irprintf("%u, ", offs);
1594                 emit_register(reg, NULL);
1595         } else {
1596                 be_emit_cstring("\taddl $");
1597                 be_emit_irprintf("%u, ", -offs);
1598                 emit_register(reg, NULL);
1599         }
1600         be_emit_finish_line_gas(node);
1601 }
1602
1603 /**
1604  * Emits code for Copy/CopyKeep.
1605  */
1606 static void Copy_emitter(const ir_node *node, const ir_node *op)
1607 {
1608         const arch_register_t *in  = arch_get_irn_register(arch_env, op);
1609         const arch_register_t *out = arch_get_irn_register(arch_env, node);
1610         ir_mode               *mode;
1611
1612         if(in == out) {
1613                 return;
1614         }
1615         if(is_unknown_reg(in))
1616                 return;
1617         /* copies of vf nodes aren't real... */
1618         if(arch_register_get_class(in) == &ia32_reg_classes[CLASS_ia32_vfp])
1619                 return;
1620
1621         mode = get_irn_mode(node);
1622         if (mode == mode_E) {
1623                 be_emit_cstring("\tmovsd ");
1624                 emit_register(in, NULL);
1625                 be_emit_cstring(", ");
1626                 emit_register(out, NULL);
1627         } else {
1628                 be_emit_cstring("\tmovl ");
1629                 emit_register(in, NULL);
1630                 be_emit_cstring(", ");
1631                 emit_register(out, NULL);
1632         }
1633         be_emit_finish_line_gas(node);
1634 }
1635
1636 static void emit_be_Copy(const ir_node *node)
1637 {
1638         Copy_emitter(node, be_get_Copy_op(node));
1639 }
1640
1641 static void emit_be_CopyKeep(const ir_node *node)
1642 {
1643         Copy_emitter(node, be_get_CopyKeep_op(node));
1644 }
1645
1646 /**
1647  * Emits code for exchange.
1648  */
1649 static void emit_be_Perm(const ir_node *node)
1650 {
1651         const arch_register_t *in0, *in1;
1652         const arch_register_class_t *cls0, *cls1;
1653
1654         in0 = arch_get_irn_register(arch_env, get_irn_n(node, 0));
1655         in1 = arch_get_irn_register(arch_env, get_irn_n(node, 1));
1656
1657         cls0 = arch_register_get_class(in0);
1658         cls1 = arch_register_get_class(in1);
1659
1660         assert(cls0 == cls1 && "Register class mismatch at Perm");
1661
1662         if (cls0 == &ia32_reg_classes[CLASS_ia32_gp]) {
1663                 be_emit_cstring("\txchg ");
1664                 emit_register(in1, NULL);
1665                 be_emit_cstring(", ");
1666                 emit_register(in0, NULL);
1667                 be_emit_finish_line_gas(node);
1668         } else if (cls0 == &ia32_reg_classes[CLASS_ia32_xmm]) {
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(NULL);
1674
1675                 be_emit_cstring("\txorpd ");
1676                 emit_register(in0, NULL);
1677                 be_emit_cstring(", ");
1678                 emit_register(in1, NULL);
1679                 be_emit_finish_line_gas(NULL);
1680
1681                 be_emit_cstring("\txorpd ");
1682                 emit_register(in1, NULL);
1683                 be_emit_cstring(", ");
1684                 emit_register(in0, NULL);
1685                 be_emit_finish_line_gas(node);
1686         } else if (cls0 == &ia32_reg_classes[CLASS_ia32_vfp]) {
1687                 /* is a NOP */
1688         } else if (cls0 == &ia32_reg_classes[CLASS_ia32_st]) {
1689                 /* is a NOP */
1690         } else {
1691                 panic("unexpected register class in be_Perm (%+F)\n", node);
1692         }
1693 }
1694
1695 /**
1696  * Emits code for Constant loading.
1697  */
1698 static void emit_ia32_Const(const ir_node *node)
1699 {
1700         be_emit_cstring("\tmovl ");
1701         emit_ia32_Immediate(node);
1702         be_emit_cstring(", ");
1703         ia32_emit_dest_register(node, 0);
1704
1705         be_emit_finish_line_gas(node);
1706 }
1707
1708 /**
1709  * Emits code to load the TLS base
1710  */
1711 static void emit_ia32_LdTls(const ir_node *node)
1712 {
1713         be_emit_cstring("\tmovl %gs:0, ");
1714         ia32_emit_dest_register(node, 0);
1715         be_emit_finish_line_gas(node);
1716 }
1717
1718 /* helper function for emit_ia32_Minus64Bit */
1719 static void emit_mov(const ir_node* node, const arch_register_t *src, const arch_register_t *dst)
1720 {
1721         be_emit_cstring("\tmovl ");
1722         emit_register(src, NULL);
1723         be_emit_cstring(", ");
1724         emit_register(dst, NULL);
1725         be_emit_finish_line_gas(node);
1726 }
1727
1728 /* helper function for emit_ia32_Minus64Bit */
1729 static void emit_neg(const ir_node* node, const arch_register_t *reg)
1730 {
1731         be_emit_cstring("\tnegl ");
1732         emit_register(reg, NULL);
1733         be_emit_finish_line_gas(node);
1734 }
1735
1736 /* helper function for emit_ia32_Minus64Bit */
1737 static void emit_sbb0(const ir_node* node, const arch_register_t *reg)
1738 {
1739         be_emit_cstring("\tsbbl $0, ");
1740         emit_register(reg, NULL);
1741         be_emit_finish_line_gas(node);
1742 }
1743
1744 /* helper function for emit_ia32_Minus64Bit */
1745 static void emit_sbb(const ir_node* node, const arch_register_t *src, const arch_register_t *dst)
1746 {
1747         be_emit_cstring("\tsbbl ");
1748         emit_register(src, NULL);
1749         be_emit_cstring(", ");
1750         emit_register(dst, NULL);
1751         be_emit_finish_line_gas(node);
1752 }
1753
1754 /* helper function for emit_ia32_Minus64Bit */
1755 static void emit_xchg(const ir_node* node, const arch_register_t *src, const arch_register_t *dst)
1756 {
1757         be_emit_cstring("\txchgl ");
1758         emit_register(src, NULL);
1759         be_emit_cstring(", ");
1760         emit_register(dst, NULL);
1761         be_emit_finish_line_gas(node);
1762 }
1763
1764 /* helper function for emit_ia32_Minus64Bit */
1765 static void emit_zero(const ir_node* node, const arch_register_t *reg)
1766 {
1767         be_emit_cstring("\txorl ");
1768         emit_register(reg, NULL);
1769         be_emit_cstring(", ");
1770         emit_register(reg, NULL);
1771         be_emit_finish_line_gas(node);
1772 }
1773
1774 static void emit_ia32_Minus64Bit(const ir_node *node)
1775 {
1776         const arch_register_t *in_lo  = get_in_reg(node, 0);
1777         const arch_register_t *in_hi  = get_in_reg(node, 1);
1778         const arch_register_t *out_lo = get_out_reg(node, 0);
1779         const arch_register_t *out_hi = get_out_reg(node, 1);
1780
1781         if (out_lo == in_lo) {
1782                 if (out_hi != in_hi) {
1783                         /* a -> a, b -> d */
1784                         goto zero_neg;
1785                 } else {
1786                         /* a -> a, b -> b */
1787                         goto normal_neg;
1788                 }
1789         } else if (out_lo == in_hi) {
1790                 if (out_hi == in_lo) {
1791                         /* a -> b, b -> a */
1792                         emit_xchg(node, in_lo, in_hi);
1793                         goto normal_neg;
1794                 } else {
1795                         /* a -> b, b -> d */
1796                         emit_mov(node, in_hi, out_hi);
1797                         emit_mov(node, in_lo, out_lo);
1798                         goto normal_neg;
1799                 }
1800         } else {
1801                 if (out_hi == in_lo) {
1802                         /* a -> c, b -> a */
1803                         emit_mov(node, in_lo, out_lo);
1804                         goto zero_neg;
1805                 } else if (out_hi == in_hi) {
1806                         /* a -> c, b -> b */
1807                         emit_mov(node, in_lo, out_lo);
1808                         goto normal_neg;
1809                 } else {
1810                         /* a -> c, b -> d */
1811                         emit_mov(node, in_lo, out_lo);
1812                         goto zero_neg;
1813                 }
1814         }
1815
1816 normal_neg:
1817         emit_neg( node, out_hi);
1818         emit_neg( node, out_lo);
1819         emit_sbb0(node, out_hi);
1820         return;
1821
1822 zero_neg:
1823         emit_zero(node, out_hi);
1824         emit_neg( node, out_lo);
1825         emit_sbb( node, in_hi, out_hi);
1826 }
1827
1828 static void emit_ia32_GetEIP(const ir_node *node)
1829 {
1830         be_emit_cstring("\tcall ");
1831         be_emit_string(pic_base_label);
1832         be_emit_finish_line_gas(node);
1833
1834         be_emit_string(pic_base_label);
1835         be_emit_cstring(":\n");
1836         be_emit_write_line();
1837
1838         be_emit_cstring("\tpopl ");
1839         ia32_emit_dest_register(node, 0);
1840         be_emit_char('\n');
1841         be_emit_write_line();
1842 }
1843
1844 static void emit_be_Return(const ir_node *node)
1845 {
1846         unsigned pop;
1847         be_emit_cstring("\tret");
1848
1849         pop = be_Return_get_pop(node);
1850         if (pop > 0) {
1851                 be_emit_irprintf(" $%d", pop);
1852         } else if (be_Return_get_emit_pop(node)) {
1853                 ir_node *block = get_nodes_block(node);
1854                 if (block_needs_label(block)) {
1855                         be_emit_cstring(" $0");
1856                 }
1857         }
1858         be_emit_finish_line_gas(node);
1859 }
1860
1861 static void emit_Nothing(const ir_node *node)
1862 {
1863         (void) node;
1864 }
1865
1866
1867 /***********************************************************************************
1868  *                  _          __                                             _
1869  *                 (_)        / _|                                           | |
1870  *  _ __ ___   __ _ _ _ __   | |_ _ __ __ _ _ __ ___   _____      _____  _ __| | __
1871  * | '_ ` _ \ / _` | | '_ \  |  _| '__/ _` | '_ ` _ \ / _ \ \ /\ / / _ \| '__| |/ /
1872  * | | | | | | (_| | | | | | | | | | | (_| | | | | | |  __/\ V  V / (_) | |  |   <
1873  * |_| |_| |_|\__,_|_|_| |_| |_| |_|  \__,_|_| |_| |_|\___| \_/\_/ \___/|_|  |_|\_\
1874  *
1875  ***********************************************************************************/
1876
1877 /**
1878  * Enters the emitter functions for handled nodes into the generic
1879  * pointer of an opcode.
1880  */
1881 static void ia32_register_emitters(void) {
1882
1883 #define IA32_EMIT2(a,b) op_ia32_##a->ops.generic = (op_func)emit_ia32_##b
1884 #define IA32_EMIT(a)    IA32_EMIT2(a,a)
1885 #define EMIT(a)         op_##a->ops.generic = (op_func)emit_##a
1886 #define IGN(a)                  op_##a->ops.generic = (op_func)emit_Nothing
1887 #define BE_EMIT(a)      op_be_##a->ops.generic = (op_func)emit_be_##a
1888 #define BE_IGN(a)               op_be_##a->ops.generic = (op_func)emit_Nothing
1889
1890         /* first clear the generic function pointer for all ops */
1891         clear_irp_opcodes_generic_func();
1892
1893         /* register all emitter functions defined in spec */
1894         ia32_register_spec_emitters();
1895
1896         /* other ia32 emitter functions */
1897         IA32_EMIT(Asm);
1898         IA32_EMIT(CMov);
1899         IA32_EMIT(IMul);
1900         IA32_EMIT(SwitchJmp);
1901         IA32_EMIT(CopyB);
1902         IA32_EMIT(CopyB_i);
1903         IA32_EMIT(Conv_I2FP);
1904         IA32_EMIT(Conv_FP2I);
1905         IA32_EMIT(Conv_FP2FP);
1906         IA32_EMIT(Conv_I2I);
1907         IA32_EMIT2(Conv_I2I8Bit, Conv_I2I);
1908         IA32_EMIT(Const);
1909         IA32_EMIT(LdTls);
1910         IA32_EMIT(Minus64Bit);
1911         IA32_EMIT(Jcc);
1912         IA32_EMIT(GetEIP);
1913
1914         /* benode emitter */
1915         BE_EMIT(Call);
1916         BE_EMIT(IncSP);
1917         BE_EMIT(Copy);
1918         BE_EMIT(CopyKeep);
1919         BE_EMIT(Perm);
1920         BE_EMIT(Return);
1921
1922         BE_IGN(RegParams);
1923         BE_IGN(Barrier);
1924         BE_IGN(Keep);
1925
1926         /* firm emitter */
1927         EMIT(Jmp);
1928         IGN(Proj);
1929         IGN(Phi);
1930         IGN(Start);
1931
1932 #undef BE_EMIT
1933 #undef EMIT
1934 #undef IGN
1935 #undef IA32_EMIT2
1936 #undef IA32_EMIT
1937 }
1938
1939 typedef void (*emit_func_ptr) (const ir_node *);
1940
1941 /**
1942  * Emits code for a node.
1943  */
1944 static void ia32_emit_node(ir_node *node)
1945 {
1946         ir_op *op = get_irn_op(node);
1947
1948         DBG((dbg, LEVEL_1, "emitting code for %+F\n", node));
1949
1950         if (is_ia32_irn(node) && get_ia32_exc_label(node)) {
1951                 /* emit the exception label of this instruction */
1952                 ia32_assign_exc_label(node);
1953         }
1954         if (op->ops.generic) {
1955                 emit_func_ptr func = (emit_func_ptr) op->ops.generic;
1956
1957                 be_dbg_set_dbg_info(get_irn_dbg_info(node));
1958
1959                 (*func) (node);
1960         } else {
1961                 emit_Nothing(node);
1962                 ir_fprintf(stderr, "Error: No emit handler for node %+F (%+G, graph %+F)\n", node, node, current_ir_graph);
1963                 abort();
1964         }
1965 }
1966
1967 /**
1968  * Emits gas alignment directives
1969  */
1970 static void ia32_emit_alignment(unsigned align, unsigned skip)
1971 {
1972         be_emit_cstring("\t.p2align ");
1973         be_emit_irprintf("%u,,%u\n", align, skip);
1974         be_emit_write_line();
1975 }
1976
1977 /**
1978  * Emits gas alignment directives for Labels depended on cpu architecture.
1979  */
1980 static void ia32_emit_align_label(void)
1981 {
1982         unsigned align        = ia32_cg_config.label_alignment;
1983         unsigned maximum_skip = ia32_cg_config.label_alignment_max_skip;
1984         ia32_emit_alignment(align, maximum_skip);
1985 }
1986
1987 /**
1988  * Test whether a block should be aligned.
1989  * For cpus in the P4/Athlon class it is useful to align jump labels to
1990  * 16 bytes. However we should only do that if the alignment nops before the
1991  * label aren't executed more often than we have jumps to the label.
1992  */
1993 static int should_align_block(const ir_node *block)
1994 {
1995         static const double DELTA = .0001;
1996         ir_exec_freq *exec_freq   = cg->birg->exec_freq;
1997         ir_node      *prev        = get_prev_block_sched(block);
1998         double        block_freq;
1999         double        prev_freq = 0;  /**< execfreq of the fallthrough block */
2000         double        jmp_freq  = 0;  /**< execfreq of all non-fallthrough blocks */
2001         int           i, n_cfgpreds;
2002
2003         if(exec_freq == NULL)
2004                 return 0;
2005         if(ia32_cg_config.label_alignment_factor <= 0)
2006                 return 0;
2007
2008         block_freq = get_block_execfreq(exec_freq, block);
2009         if(block_freq < DELTA)
2010                 return 0;
2011
2012         n_cfgpreds = get_Block_n_cfgpreds(block);
2013         for(i = 0; i < n_cfgpreds; ++i) {
2014                 const ir_node *pred      = get_Block_cfgpred_block(block, i);
2015                 double         pred_freq = get_block_execfreq(exec_freq, pred);
2016
2017                 if(pred == prev) {
2018                         prev_freq += pred_freq;
2019                 } else {
2020                         jmp_freq  += pred_freq;
2021                 }
2022         }
2023
2024         if(prev_freq < DELTA && !(jmp_freq < DELTA))
2025                 return 1;
2026
2027         jmp_freq /= prev_freq;
2028
2029         return jmp_freq > ia32_cg_config.label_alignment_factor;
2030 }
2031
2032 /**
2033  * Emit the block header for a block.
2034  *
2035  * @param block       the block
2036  * @param prev_block  the previous block
2037  */
2038 static void ia32_emit_block_header(ir_node *block)
2039 {
2040         ir_graph     *irg = current_ir_graph;
2041         int           need_label = block_needs_label(block);
2042         int           i, arity;
2043         ir_exec_freq *exec_freq = cg->birg->exec_freq;
2044
2045         if (block == get_irg_end_block(irg) || block == get_irg_start_block(irg))
2046                 return;
2047
2048         if (ia32_cg_config.label_alignment > 0) {
2049                 /* align the current block if:
2050                  * a) if should be aligned due to its execution frequency
2051                  * b) there is no fall-through here
2052                  */
2053                 if (should_align_block(block)) {
2054                         ia32_emit_align_label();
2055                 } else {
2056                         /* if the predecessor block has no fall-through,
2057                            we can always align the label. */
2058                         int i;
2059                         int has_fallthrough = 0;
2060
2061                         for (i = get_Block_n_cfgpreds(block) - 1; i >= 0; --i) {
2062                                 ir_node *cfg_pred = get_Block_cfgpred(block, i);
2063                                 if (can_be_fallthrough(cfg_pred)) {
2064                                         has_fallthrough = 1;
2065                                         break;
2066                                 }
2067                         }
2068
2069                         if (!has_fallthrough)
2070                                 ia32_emit_align_label();
2071                 }
2072         }
2073
2074         if (need_label || has_Block_label(block)) {
2075                 ia32_emit_block_name(block);
2076                 be_emit_char(':');
2077
2078                 be_emit_pad_comment();
2079                 be_emit_cstring("   /* ");
2080         } else {
2081                 be_emit_cstring("\t/* ");
2082                 ia32_emit_block_name(block);
2083                 be_emit_cstring(": ");
2084         }
2085
2086         be_emit_cstring("preds:");
2087
2088         /* emit list of pred blocks in comment */
2089         arity = get_irn_arity(block);
2090         for (i = 0; i < arity; ++i) {
2091                 ir_node *predblock = get_Block_cfgpred_block(block, i);
2092                 be_emit_irprintf(" %d", get_irn_node_nr(predblock));
2093         }
2094         if (exec_freq != NULL) {
2095                 be_emit_irprintf(" freq: %f",
2096                                  get_block_execfreq(exec_freq, block));
2097         }
2098         be_emit_cstring(" */\n");
2099         be_emit_write_line();
2100 }
2101
2102 /**
2103  * Walks over the nodes in a block connected by scheduling edges
2104  * and emits code for each node.
2105  */
2106 static void ia32_gen_block(ir_node *block)
2107 {
2108         ir_node *node;
2109
2110         ia32_emit_block_header(block);
2111
2112         /* emit the contents of the block */
2113         be_dbg_set_dbg_info(get_irn_dbg_info(block));
2114         sched_foreach(block, node) {
2115                 ia32_emit_node(node);
2116         }
2117 }
2118
2119 typedef struct exc_entry {
2120         ir_node *exc_instr;  /** The instruction that can issue an exception. */
2121         ir_node *block;      /** The block to call then. */
2122 } exc_entry;
2123
2124 /**
2125  * Block-walker:
2126  * Sets labels for control flow nodes (jump target).
2127  * Links control predecessors to there destination blocks.
2128  */
2129 static void ia32_gen_labels(ir_node *block, void *data)
2130 {
2131         exc_entry **exc_list = data;
2132         ir_node *pred;
2133         int     n;
2134
2135         for (n = get_Block_n_cfgpreds(block) - 1; n >= 0; --n) {
2136                 pred = get_Block_cfgpred(block, n);
2137                 set_irn_link(pred, block);
2138
2139                 pred = skip_Proj(pred);
2140                 if (is_ia32_irn(pred) && get_ia32_exc_label(pred)) {
2141                         exc_entry e;
2142
2143                         e.exc_instr = pred;
2144                         e.block     = block;
2145                         ARR_APP1(exc_entry, *exc_list, e);
2146                         set_irn_link(pred, block);
2147                 }
2148         }
2149 }
2150
2151 /**
2152  * Assign and emit an exception label if the current instruction can fail.
2153  */
2154 void ia32_assign_exc_label(ir_node *node)
2155 {
2156         if (get_ia32_exc_label(node)) {
2157                 /* assign a new ID to the instruction */
2158                 set_ia32_exc_label_id(node, ++exc_label_id);
2159                 /* print it */
2160                 ia32_emit_exc_label(node);
2161                 be_emit_char(':');
2162                 be_emit_pad_comment();
2163                 be_emit_cstring("/* exception to Block ");
2164                 ia32_emit_cfop_target(node);
2165                 be_emit_cstring(" */\n");
2166                 be_emit_write_line();
2167         }
2168 }
2169
2170 /**
2171  * Compare two exception_entries.
2172  */
2173 static int cmp_exc_entry(const void *a, const void *b) {
2174         const exc_entry *ea = a;
2175         const exc_entry *eb = b;
2176
2177         if (get_ia32_exc_label_id(ea->exc_instr) < get_ia32_exc_label_id(eb->exc_instr))
2178                 return -1;
2179         return +1;
2180 }
2181
2182 /**
2183  * Main driver. Emits the code for one routine.
2184  */
2185 void ia32_gen_routine(ia32_code_gen_t *ia32_cg, ir_graph *irg)
2186 {
2187         ir_entity *entity     = get_irg_entity(irg);
2188         exc_entry *exc_list   = NEW_ARR_F(exc_entry, 0);
2189         int i, n;
2190
2191         cg       = ia32_cg;
2192         isa      = (const ia32_isa_t*) cg->arch_env;
2193         arch_env = cg->arch_env;
2194         do_pic   = cg->birg->main_env->options->pic;
2195
2196         ia32_register_emitters();
2197
2198         get_unique_label(pic_base_label, sizeof(pic_base_label), ".PIC_BASE");
2199
2200         be_dbg_method_begin(entity, be_abi_get_stack_layout(cg->birg->abi));
2201         be_gas_emit_function_prolog(entity, ia32_cg_config.function_alignment);
2202
2203         /* we use links to point to target blocks */
2204         set_using_irn_link(irg);
2205         irg_block_walk_graph(irg, ia32_gen_labels, NULL, &exc_list);
2206
2207         /* initialize next block links */
2208         n = ARR_LEN(cg->blk_sched);
2209         for (i = 0; i < n; ++i) {
2210                 ir_node *block = cg->blk_sched[i];
2211                 ir_node *prev  = i > 0 ? cg->blk_sched[i-1] : NULL;
2212
2213                 set_irn_link(block, prev);
2214         }
2215
2216         for (i = 0; i < n; ++i) {
2217                 ir_node *block = cg->blk_sched[i];
2218
2219                 ia32_gen_block(block);
2220         }
2221
2222         be_gas_emit_function_epilog(entity);
2223         be_dbg_method_end();
2224         be_emit_char('\n');
2225         be_emit_write_line();
2226
2227         clear_using_irn_link(irg);
2228
2229         /* Sort the exception table using the exception label id's.
2230            Those are ascending with ascending addresses. */
2231         qsort(exc_list, ARR_LEN(exc_list), sizeof(exc_list[0]), cmp_exc_entry);
2232         {
2233                 int i;
2234
2235                 for (i = 0; i < ARR_LEN(exc_list); ++i) {
2236                         be_emit_cstring("\t.long ");
2237                         ia32_emit_exc_label(exc_list[i].exc_instr);
2238                         be_emit_char('\n');
2239                         be_emit_cstring("\t.long ");
2240                         ia32_emit_block_name(exc_list[i].block);
2241                         be_emit_char('\n');
2242                 }
2243         }
2244         DEL_ARR_F(exc_list);
2245 }
2246
2247 void ia32_init_emitter(void)
2248 {
2249         FIRM_DBG_REGISTER(dbg, "firm.be.ia32.emitter");
2250 }