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