give Bad nodes a mode
[libfirm] / ir / be / ia32 / bearch_ia32.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 is the main ia32 firm backend driver.
23  * @author      Christian Wuerdig
24  * @version     $Id$
25  */
26 #include "config.h"
27
28 #include "lc_opts.h"
29 #include "lc_opts_enum.h"
30
31 #include <math.h>
32
33 #include "irarch.h"
34 #include "irgwalk.h"
35 #include "irprog.h"
36 #include "irprintf.h"
37 #include "iredges_t.h"
38 #include "ircons.h"
39 #include "irflag.h"
40 #include "irgmod.h"
41 #include "irgopt.h"
42 #include "irbitset.h"
43 #include "irgopt.h"
44 #include "irdump.h"
45 #include "pdeq.h"
46 #include "pset.h"
47 #include "debug.h"
48 #include "error.h"
49 #include "xmalloc.h"
50 #include "irtools.h"
51 #include "iroptimize.h"
52 #include "instrument.h"
53 #include "iropt_t.h"
54
55 #include "../beabi.h"
56 #include "../beirg.h"
57 #include "../benode.h"
58 #include "../belower.h"
59 #include "../besched.h"
60 #include "be.h"
61 #include "../be_t.h"
62 #include "../beirgmod.h"
63 #include "../be_dbgout.h"
64 #include "../beblocksched.h"
65 #include "../bemachine.h"
66 #include "../bespillslots.h"
67 #include "../bemodule.h"
68 #include "../begnuas.h"
69 #include "../bestate.h"
70 #include "../beflags.h"
71 #include "../betranshlp.h"
72 #include "../belistsched.h"
73 #include "../beabihelper.h"
74
75 #include "bearch_ia32_t.h"
76
77 #include "ia32_new_nodes.h"
78 #include "gen_ia32_regalloc_if.h"
79 #include "gen_ia32_machine.h"
80 #include "ia32_common_transform.h"
81 #include "ia32_transform.h"
82 #include "ia32_emitter.h"
83 #include "ia32_optimize.h"
84 #include "ia32_x87.h"
85 #include "ia32_dbg_stat.h"
86 #include "ia32_finish.h"
87 #include "ia32_fpu.h"
88 #include "ia32_architecture.h"
89
90 #ifdef FIRM_GRGEN_BE
91 #include "ia32_pbqp_transform.h"
92
93 transformer_t be_transformer = TRANSFORMER_DEFAULT;
94 #endif
95
96 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
97
98 ir_mode         *ia32_mode_fpcw       = NULL;
99
100 /** The current omit-fp state */
101 static ir_type *omit_fp_between_type   = NULL;
102 static ir_type *between_type           = NULL;
103 static ir_entity *old_bp_ent           = NULL;
104 static ir_entity *ret_addr_ent         = NULL;
105 static ir_entity *omit_fp_ret_addr_ent = NULL;
106
107 /**
108  * The environment for the intrinsic mapping.
109  */
110 static ia32_intrinsic_env_t intrinsic_env = {
111         NULL,    /* the isa */
112         NULL,    /* the irg, these entities belong to */
113         NULL,    /* entity for __divdi3 library call */
114         NULL,    /* entity for __moddi3 library call */
115         NULL,    /* entity for __udivdi3 library call */
116         NULL,    /* entity for __umoddi3 library call */
117 };
118
119
120 typedef ir_node *(*create_const_node_func) (dbg_info *dbg, ir_node *block);
121
122 /**
123  * Used to create per-graph unique pseudo nodes.
124  */
125 static inline ir_node *create_const(ir_graph *irg, ir_node **place,
126                                     create_const_node_func func,
127                                     const arch_register_t* reg)
128 {
129         ir_node *block, *res;
130
131         if (*place != NULL)
132                 return *place;
133
134         block = get_irg_start_block(irg);
135         res = func(NULL, block);
136         arch_set_irn_register(res, reg);
137         *place = res;
138
139         return res;
140 }
141
142 /* Creates the unique per irg GP NoReg node. */
143 ir_node *ia32_new_NoReg_gp(ir_graph *irg)
144 {
145         ia32_irg_data_t *irg_data = ia32_get_irg_data(irg);
146         return create_const(irg, &irg_data->noreg_gp, new_bd_ia32_NoReg_GP,
147                             &ia32_registers[REG_GP_NOREG]);
148 }
149
150 ir_node *ia32_new_NoReg_vfp(ir_graph *irg)
151 {
152         ia32_irg_data_t *irg_data = ia32_get_irg_data(irg);
153         return create_const(irg, &irg_data->noreg_vfp, new_bd_ia32_NoReg_VFP,
154                             &ia32_registers[REG_VFP_NOREG]);
155 }
156
157 ir_node *ia32_new_NoReg_xmm(ir_graph *irg)
158 {
159         ia32_irg_data_t *irg_data = ia32_get_irg_data(irg);
160         return create_const(irg, &irg_data->noreg_xmm, new_bd_ia32_NoReg_XMM,
161                             &ia32_registers[REG_XMM_NOREG]);
162 }
163
164 ir_node *ia32_new_Fpu_truncate(ir_graph *irg)
165 {
166         ia32_irg_data_t *irg_data = ia32_get_irg_data(irg);
167         return create_const(irg, &irg_data->fpu_trunc_mode, new_bd_ia32_ChangeCW,
168                         &ia32_registers[REG_FPCW]);
169 }
170
171
172 /**
173  * Returns the admissible noreg register node for input register pos of node irn.
174  */
175 static ir_node *ia32_get_admissible_noreg(ir_node *irn, int pos)
176 {
177         ir_graph                  *irg = get_irn_irg(irn);
178         const arch_register_req_t *req = arch_get_register_req(irn, pos);
179
180         assert(req != NULL && "Missing register requirements");
181         if (req->cls == &ia32_reg_classes[CLASS_ia32_gp])
182                 return ia32_new_NoReg_gp(irg);
183
184         if (ia32_cg_config.use_sse2) {
185                 return ia32_new_NoReg_xmm(irg);
186         } else {
187                 return ia32_new_NoReg_vfp(irg);
188         }
189 }
190
191 static arch_irn_class_t ia32_classify(const ir_node *irn)
192 {
193         arch_irn_class_t classification = arch_irn_class_none;
194
195         assert(is_ia32_irn(irn));
196
197         if (is_ia32_is_reload(irn))
198                 classification |= arch_irn_class_reload;
199
200         if (is_ia32_is_spill(irn))
201                 classification |= arch_irn_class_spill;
202
203         if (is_ia32_is_remat(irn))
204                 classification |= arch_irn_class_remat;
205
206         return classification;
207 }
208
209 /**
210  * The IA32 ABI callback object.
211  */
212 typedef struct {
213         be_abi_call_flags_bits_t flags;  /**< The call flags. */
214         ir_graph *irg;                   /**< The associated graph. */
215 } ia32_abi_env_t;
216
217 static ir_entity *ia32_get_frame_entity(const ir_node *irn)
218 {
219         return is_ia32_irn(irn) ? get_ia32_frame_ent(irn) : NULL;
220 }
221
222 static void ia32_set_frame_entity(ir_node *node, ir_entity *entity)
223 {
224         if (is_be_node(node))
225                 be_node_set_frame_entity(node, entity);
226         else
227                 set_ia32_frame_ent(node, entity);
228 }
229
230 static void ia32_set_frame_offset(ir_node *irn, int bias)
231 {
232         if (get_ia32_frame_ent(irn) == NULL)
233                 return;
234
235         if (is_ia32_Pop(irn) || is_ia32_PopMem(irn)) {
236                 ir_graph          *irg     = get_irn_irg(irn);
237                 be_stack_layout_t *layout  = be_get_irg_stack_layout(irg);
238                 if (layout->sp_relative) {
239                         /* Pop nodes modify the stack pointer before calculating the
240                          * destination address, so fix this here
241                          */
242                         bias -= 4;
243                 }
244         }
245         add_ia32_am_offs_int(irn, bias);
246 }
247
248 static int ia32_get_sp_bias(const ir_node *node)
249 {
250         if (is_ia32_Call(node))
251                 return -(int)get_ia32_call_attr_const(node)->pop;
252
253         if (is_ia32_Push(node))
254                 return 4;
255
256         if (is_ia32_Pop(node) || is_ia32_PopMem(node))
257                 return -4;
258
259         if (is_ia32_Leave(node) || is_ia32_CopyEbpEsp(node)) {
260                 return SP_BIAS_RESET;
261         }
262
263         return 0;
264 }
265
266 /**
267  * Build the between type and entities if not already build.
268  */
269 static void ia32_build_between_type(void)
270 {
271 #define IDENT(s) new_id_from_chars(s, sizeof(s)-1)
272         if (! between_type) {
273                 ir_type *old_bp_type   = new_type_primitive(mode_Iu);
274                 ir_type *ret_addr_type = new_type_primitive(mode_Iu);
275
276                 between_type           = new_type_struct(IDENT("ia32_between_type"));
277                 old_bp_ent             = new_entity(between_type, IDENT("old_bp"), old_bp_type);
278                 ret_addr_ent           = new_entity(between_type, IDENT("ret_addr"), ret_addr_type);
279
280                 set_entity_offset(old_bp_ent, 0);
281                 set_entity_offset(ret_addr_ent, get_type_size_bytes(old_bp_type));
282                 set_type_size_bytes(between_type, get_type_size_bytes(old_bp_type) + get_type_size_bytes(ret_addr_type));
283                 set_type_state(between_type, layout_fixed);
284
285                 omit_fp_between_type = new_type_struct(IDENT("ia32_between_type_omit_fp"));
286                 omit_fp_ret_addr_ent = new_entity(omit_fp_between_type, IDENT("ret_addr"), ret_addr_type);
287
288                 set_entity_offset(omit_fp_ret_addr_ent, 0);
289                 set_type_size_bytes(omit_fp_between_type, get_type_size_bytes(ret_addr_type));
290                 set_type_state(omit_fp_between_type, layout_fixed);
291         }
292 #undef IDENT
293 }
294
295 /**
296  * Produces the type which sits between the stack args and the locals on the stack.
297  * it will contain the return address and space to store the old base pointer.
298  * @return The Firm type modeling the ABI between type.
299  */
300 static ir_type *ia32_abi_get_between_type(ir_graph *irg)
301 {
302         const be_stack_layout_t *layout = be_get_irg_stack_layout(irg);
303         ia32_build_between_type();
304         return layout->sp_relative ? omit_fp_between_type : between_type;
305 }
306
307 /**
308  * Return the stack entity that contains the return address.
309  */
310 ir_entity *ia32_get_return_address_entity(ir_graph *irg)
311 {
312         const be_stack_layout_t *layout = be_get_irg_stack_layout(irg);
313         ia32_build_between_type();
314         return layout->sp_relative ? omit_fp_ret_addr_ent : ret_addr_ent;
315 }
316
317 /**
318  * Return the stack entity that contains the frame address.
319  */
320 ir_entity *ia32_get_frame_address_entity(ir_graph *irg)
321 {
322         const be_stack_layout_t *layout = be_get_irg_stack_layout(irg);
323         ia32_build_between_type();
324         return layout->sp_relative ? NULL : old_bp_ent;
325 }
326
327 /**
328  * Get the estimated cycle count for @p irn.
329  *
330  * @param self The this pointer.
331  * @param irn  The node.
332  *
333  * @return     The estimated cycle count for this operation
334  */
335 static int ia32_get_op_estimated_cost(const ir_node *irn)
336 {
337         int            cost;
338         ia32_op_type_t op_tp;
339
340         if (is_Proj(irn))
341                 return 0;
342         if (!is_ia32_irn(irn))
343                 return 0;
344
345         assert(is_ia32_irn(irn));
346
347         cost  = get_ia32_latency(irn);
348         op_tp = get_ia32_op_type(irn);
349
350         if (is_ia32_CopyB(irn)) {
351                 cost = 250;
352         }
353         else if (is_ia32_CopyB_i(irn)) {
354                 int size = get_ia32_copyb_size(irn);
355                 cost     = 20 + (int)ceil((4/3) * size);
356         }
357         /* in case of address mode operations add additional cycles */
358         else if (op_tp == ia32_AddrModeD || op_tp == ia32_AddrModeS) {
359                 /*
360                         In case of stack access and access to fixed addresses add 5 cycles
361                         (we assume they are in cache), other memory operations cost 20
362                         cycles.
363                 */
364                 if (is_ia32_use_frame(irn) || (
365                     is_ia32_NoReg_GP(get_irn_n(irn, n_ia32_base)) &&
366                     is_ia32_NoReg_GP(get_irn_n(irn, n_ia32_index))
367                     )) {
368                         cost += 5;
369                 } else {
370                         cost += 20;
371                 }
372         }
373
374         return cost;
375 }
376
377 /**
378  * Returns the inverse operation if @p irn, recalculating the argument at position @p i.
379  *
380  * @param irn       The original operation
381  * @param i         Index of the argument we want the inverse operation to yield
382  * @param inverse   struct to be filled with the resulting inverse op
383  * @param obstack   The obstack to use for allocation of the returned nodes array
384  * @return          The inverse operation or NULL if operation invertible
385  */
386 static arch_inverse_t *ia32_get_inverse(const ir_node *irn, int i, arch_inverse_t *inverse, struct obstack *obst)
387 {
388         (void) irn;
389         (void) i;
390         (void) inverse;
391         (void) obst;
392         return NULL;
393
394 #if 0
395         ir_mode  *mode;
396         ir_mode  *irn_mode;
397         ir_node  *block, *noreg, *nomem;
398         dbg_info *dbg;
399
400         /* we cannot invert non-ia32 irns */
401         if (! is_ia32_irn(irn))
402                 return NULL;
403
404         /* operand must always be a real operand (not base, index or mem) */
405         if (i != n_ia32_binary_left && i != n_ia32_binary_right)
406                 return NULL;
407
408         /* we don't invert address mode operations */
409         if (get_ia32_op_type(irn) != ia32_Normal)
410                 return NULL;
411
412         /* TODO: adjust for new immediates... */
413         ir_fprintf(stderr, "TODO: fix get_inverse for new immediates (%+F)\n",
414                    irn);
415         return NULL;
416
417         block    = get_nodes_block(irn);
418         mode     = get_irn_mode(irn);
419         irn_mode = get_irn_mode(irn);
420         noreg    = get_irn_n(irn, 0);
421         nomem    = get_irg_no_mem(irg);
422         dbg      = get_irn_dbg_info(irn);
423
424         /* initialize structure */
425         inverse->nodes = obstack_alloc(obst, 2 * sizeof(inverse->nodes[0]));
426         inverse->costs = 0;
427         inverse->n     = 1;
428
429         switch (get_ia32_irn_opcode(irn)) {
430                 case iro_ia32_Add:
431                         if (get_ia32_immop_type(irn) == ia32_ImmConst) {
432                                 /* we have an add with a const here */
433                                 /* invers == add with negated const */
434                                 inverse->nodes[0] = new_bd_ia32_Add(dbg, block, noreg, noreg, nomem, get_irn_n(irn, i), noreg);
435                                 inverse->costs   += 1;
436                                 copy_ia32_Immop_attr(inverse->nodes[0], (ir_node *)irn);
437                                 set_ia32_Immop_tarval(inverse->nodes[0], tarval_neg(get_ia32_Immop_tarval(irn)));
438                                 set_ia32_commutative(inverse->nodes[0]);
439                         }
440                         else if (get_ia32_immop_type(irn) == ia32_ImmSymConst) {
441                                 /* we have an add with a symconst here */
442                                 /* invers == sub with const */
443                                 inverse->nodes[0] = new_bd_ia32_Sub(dbg, block, noreg, noreg, nomem, get_irn_n(irn, i), noreg);
444                                 inverse->costs   += 2;
445                                 copy_ia32_Immop_attr(inverse->nodes[0], (ir_node *)irn);
446                         }
447                         else {
448                                 /* normal add: inverse == sub */
449                                 inverse->nodes[0] = new_bd_ia32_Sub(dbg, block, noreg, noreg, nomem, (ir_node*) irn, get_irn_n(irn, i ^ 1));
450                                 inverse->costs   += 2;
451                         }
452                         break;
453                 case iro_ia32_Sub:
454                         if (get_ia32_immop_type(irn) != ia32_ImmNone) {
455                                 /* we have a sub with a const/symconst here */
456                                 /* invers == add with this const */
457                                 inverse->nodes[0] = new_bd_ia32_Add(dbg, block, noreg, noreg, nomem, get_irn_n(irn, i), noreg);
458                                 inverse->costs   += (get_ia32_immop_type(irn) == ia32_ImmSymConst) ? 5 : 1;
459                                 copy_ia32_Immop_attr(inverse->nodes[0], (ir_node *)irn);
460                         }
461                         else {
462                                 /* normal sub */
463                                 if (i == n_ia32_binary_left) {
464                                         inverse->nodes[0] = new_bd_ia32_Add(dbg, block, noreg, noreg, nomem, (ir_node*) irn, get_irn_n(irn, 3));
465                                 }
466                                 else {
467                                         inverse->nodes[0] = new_bd_ia32_Sub(dbg, block, noreg, noreg, nomem, get_irn_n(irn, n_ia32_binary_left), (ir_node*) irn);
468                                 }
469                                 inverse->costs += 1;
470                         }
471                         break;
472                 case iro_ia32_Xor:
473                         if (get_ia32_immop_type(irn) != ia32_ImmNone) {
474                                 /* xor with const: inverse = xor */
475                                 inverse->nodes[0] = new_bd_ia32_Xor(dbg, block, noreg, noreg, nomem, get_irn_n(irn, i), noreg);
476                                 inverse->costs   += (get_ia32_immop_type(irn) == ia32_ImmSymConst) ? 5 : 1;
477                                 copy_ia32_Immop_attr(inverse->nodes[0], (ir_node *)irn);
478                         }
479                         else {
480                                 /* normal xor */
481                                 inverse->nodes[0] = new_bd_ia32_Xor(dbg, block, noreg, noreg, nomem, (ir_node *) irn, get_irn_n(irn, i));
482                                 inverse->costs   += 1;
483                         }
484                         break;
485                 case iro_ia32_Not: {
486                         inverse->nodes[0] = new_bd_ia32_Not(dbg, block, (ir_node*) irn);
487                         inverse->costs   += 1;
488                         break;
489                 }
490                 case iro_ia32_Neg: {
491                         inverse->nodes[0] = new_bd_ia32_Neg(dbg, block, (ir_node*) irn);
492                         inverse->costs   += 1;
493                         break;
494                 }
495                 default:
496                         /* inverse operation not supported */
497                         return NULL;
498         }
499
500         return inverse;
501 #endif
502 }
503
504 static ir_mode *get_spill_mode_mode(const ir_mode *mode)
505 {
506         if (mode_is_float(mode))
507                 return mode_D;
508
509         return mode_Iu;
510 }
511
512 /**
513  * Get the mode that should be used for spilling value node
514  */
515 static ir_mode *get_spill_mode(const ir_node *node)
516 {
517         ir_mode *mode = get_irn_mode(node);
518         return get_spill_mode_mode(mode);
519 }
520
521 /**
522  * Checks whether an addressmode reload for a node with mode mode is compatible
523  * with a spillslot of mode spill_mode
524  */
525 static int ia32_is_spillmode_compatible(const ir_mode *mode, const ir_mode *spillmode)
526 {
527         return !mode_is_float(mode) || mode == spillmode;
528 }
529
530 /**
531  * Check if irn can load its operand at position i from memory (source addressmode).
532  * @param irn    The irn to be checked
533  * @param i      The operands position
534  * @return Non-Zero if operand can be loaded
535  */
536 static int ia32_possible_memory_operand(const ir_node *irn, unsigned int i)
537 {
538         ir_node       *op        = get_irn_n(irn, i);
539         const ir_mode *mode      = get_irn_mode(op);
540         const ir_mode *spillmode = get_spill_mode(op);
541
542         if (!is_ia32_irn(irn)                              ||  /* must be an ia32 irn */
543             get_ia32_op_type(irn) != ia32_Normal           ||  /* must not already be a addressmode irn */
544             !ia32_is_spillmode_compatible(mode, spillmode) ||
545             is_ia32_use_frame(irn))                            /* must not already use frame */
546                 return 0;
547
548         switch (get_ia32_am_support(irn)) {
549                 case ia32_am_none:
550                         return 0;
551
552                 case ia32_am_unary:
553                         if (i != n_ia32_unary_op)
554                                 return 0;
555                         break;
556
557                 case ia32_am_binary:
558                         switch (i) {
559                                 case n_ia32_binary_left: {
560                                         const arch_register_req_t *req;
561                                         if (!is_ia32_commutative(irn))
562                                                 return 0;
563
564                                         /* we can't swap left/right for limited registers
565                                          * (As this (currently) breaks constraint handling copies)
566                                          */
567                                         req = arch_get_in_register_req(irn, n_ia32_binary_left);
568                                         if (req->type & arch_register_req_type_limited)
569                                                 return 0;
570                                         break;
571                                 }
572
573                                 case n_ia32_binary_right:
574                                         break;
575
576                                 default:
577                                         return 0;
578                         }
579                         break;
580
581                 default:
582                         panic("Unknown AM type");
583         }
584
585         /* HACK: must not already use "real" memory.
586          * This can happen for Call and Div */
587         if (!is_NoMem(get_irn_n(irn, n_ia32_mem)))
588                 return 0;
589
590         return 1;
591 }
592
593 static void ia32_perform_memory_operand(ir_node *irn, ir_node *spill,
594                                         unsigned int i)
595 {
596         ir_mode *load_mode;
597         ir_mode *dest_op_mode;
598
599         assert(ia32_possible_memory_operand(irn, i) && "Cannot perform memory operand change");
600
601         set_ia32_op_type(irn, ia32_AddrModeS);
602
603         load_mode    = get_irn_mode(get_irn_n(irn, i));
604         dest_op_mode = get_ia32_ls_mode(irn);
605         if (get_mode_size_bits(load_mode) <= get_mode_size_bits(dest_op_mode)) {
606                 set_ia32_ls_mode(irn, load_mode);
607         }
608         set_ia32_use_frame(irn);
609         set_ia32_need_stackent(irn);
610
611         if (i == n_ia32_binary_left                    &&
612             get_ia32_am_support(irn) == ia32_am_binary &&
613             /* immediates are only allowed on the right side */
614             !is_ia32_Immediate(get_irn_n(irn, n_ia32_binary_right))) {
615                 ia32_swap_left_right(irn);
616                 i = n_ia32_binary_right;
617         }
618
619         assert(is_NoMem(get_irn_n(irn, n_ia32_mem)));
620
621         set_irn_n(irn, n_ia32_base, get_irg_frame(get_irn_irg(irn)));
622         set_irn_n(irn, n_ia32_mem,  spill);
623         set_irn_n(irn, i,           ia32_get_admissible_noreg(irn, i));
624         set_ia32_is_reload(irn);
625 }
626
627 static const be_abi_callbacks_t ia32_abi_callbacks = {
628         ia32_abi_get_between_type,
629 };
630
631 /* register allocator interface */
632 static const arch_irn_ops_t ia32_irn_ops = {
633         ia32_classify,
634         ia32_get_frame_entity,
635         ia32_set_frame_offset,
636         ia32_get_sp_bias,
637         ia32_get_inverse,
638         ia32_get_op_estimated_cost,
639         ia32_possible_memory_operand,
640         ia32_perform_memory_operand,
641 };
642
643 static ir_entity *mcount = NULL;
644 static int gprof = 0;
645
646 static void ia32_before_abi(ir_graph *irg)
647 {
648         if (gprof) {
649                 if (mcount == NULL) {
650                         ir_type *tp = new_type_method(0, 0);
651                         ident   *id = new_id_from_str("mcount");
652                         mcount = new_entity(get_glob_type(), id, tp);
653                         /* FIXME: enter the right ld_ident here */
654                         set_entity_ld_ident(mcount, get_entity_ident(mcount));
655                         set_entity_visibility(mcount, ir_visibility_external);
656                 }
657                 instrument_initcall(irg, mcount);
658         }
659 }
660
661 /**
662  * Transforms the standard firm graph into
663  * an ia32 firm graph
664  */
665 static void ia32_prepare_graph(ir_graph *irg)
666 {
667         ia32_irg_data_t *irg_data = ia32_get_irg_data(irg);
668
669 #ifdef FIRM_GRGEN_BE
670         switch (be_transformer) {
671         case TRANSFORMER_DEFAULT:
672                 /* transform remaining nodes into assembler instructions */
673                 ia32_transform_graph(irg);
674                 break;
675
676         case TRANSFORMER_PBQP:
677         case TRANSFORMER_RAND:
678                 /* transform nodes into assembler instructions by PBQP magic */
679                 ia32_transform_graph_by_pbqp(irg);
680                 break;
681
682         default:
683                 panic("invalid transformer");
684         }
685 #else
686         ia32_transform_graph(irg);
687 #endif
688
689         /* do local optimizations (mainly CSE) */
690         optimize_graph_df(irg);
691
692         if (irg_data->dump)
693                 dump_ir_graph(irg, "transformed");
694
695         /* optimize address mode */
696         ia32_optimize_graph(irg);
697
698         /* do code placement, to optimize the position of constants */
699         place_code(irg);
700
701         if (irg_data->dump)
702                 dump_ir_graph(irg, "place");
703 }
704
705 ir_node *ia32_turn_back_am(ir_node *node)
706 {
707         dbg_info *dbgi  = get_irn_dbg_info(node);
708         ir_graph *irg   = get_irn_irg(node);
709         ir_node  *block = get_nodes_block(node);
710         ir_node  *base  = get_irn_n(node, n_ia32_base);
711         ir_node  *index = get_irn_n(node, n_ia32_index);
712         ir_node  *mem   = get_irn_n(node, n_ia32_mem);
713         ir_node  *noreg;
714
715         ir_node  *load     = new_bd_ia32_Load(dbgi, block, base, index, mem);
716         ir_node  *load_res = new_rd_Proj(dbgi, load, mode_Iu, pn_ia32_Load_res);
717
718         ia32_copy_am_attrs(load, node);
719         if (is_ia32_is_reload(node))
720                 set_ia32_is_reload(load);
721         set_irn_n(node, n_ia32_mem, get_irg_no_mem(irg));
722
723         switch (get_ia32_am_support(node)) {
724                 case ia32_am_unary:
725                         set_irn_n(node, n_ia32_unary_op, load_res);
726                         break;
727
728                 case ia32_am_binary:
729                         if (is_ia32_Immediate(get_irn_n(node, n_ia32_binary_right))) {
730                                 set_irn_n(node, n_ia32_binary_left, load_res);
731                         } else {
732                                 set_irn_n(node, n_ia32_binary_right, load_res);
733                         }
734                         break;
735
736                 default:
737                         panic("Unknown AM type");
738         }
739         noreg = ia32_new_NoReg_gp(current_ir_graph);
740         set_irn_n(node, n_ia32_base,  noreg);
741         set_irn_n(node, n_ia32_index, noreg);
742         set_ia32_am_offs_int(node, 0);
743         set_ia32_am_sc(node, NULL);
744         set_ia32_am_scale(node, 0);
745         clear_ia32_am_sc_sign(node);
746
747         /* rewire mem-proj */
748         if (get_irn_mode(node) == mode_T) {
749                 const ir_edge_t *edge;
750                 foreach_out_edge(node, edge) {
751                         ir_node *out = get_edge_src_irn(edge);
752                         if (get_irn_mode(out) == mode_M) {
753                                 set_Proj_pred(out, load);
754                                 set_Proj_proj(out, pn_ia32_Load_M);
755                                 break;
756                         }
757                 }
758         }
759
760         set_ia32_op_type(node, ia32_Normal);
761         if (sched_is_scheduled(node))
762                 sched_add_before(node, load);
763
764         return load_res;
765 }
766
767 static ir_node *flags_remat(ir_node *node, ir_node *after)
768 {
769         /* we should turn back source address mode when rematerializing nodes */
770         ia32_op_type_t type;
771         ir_node        *block;
772         ir_node        *copy;
773
774         if (is_Block(after)) {
775                 block = after;
776         } else {
777                 block = get_nodes_block(after);
778         }
779
780         type = get_ia32_op_type(node);
781         switch (type) {
782                 case ia32_AddrModeS:
783                         ia32_turn_back_am(node);
784                         break;
785
786                 case ia32_AddrModeD:
787                         /* TODO implement this later... */
788                         panic("found DestAM with flag user %+F this should not happen", node);
789                         break;
790
791                 default: assert(type == ia32_Normal); break;
792         }
793
794         copy = exact_copy(node);
795         set_nodes_block(copy, block);
796         sched_add_after(after, copy);
797
798         return copy;
799 }
800
801 /**
802  * Called before the register allocator.
803  */
804 static void ia32_before_ra(ir_graph *irg)
805 {
806         /* setup fpu rounding modes */
807         ia32_setup_fpu_mode(irg);
808
809         /* fixup flags */
810         be_sched_fix_flags(irg, &ia32_reg_classes[CLASS_ia32_flags],
811                            &flags_remat, NULL);
812
813         be_add_missing_keeps(irg);
814 }
815
816
817 /**
818  * Transforms a be_Reload into a ia32 Load.
819  */
820 static void transform_to_Load(ir_node *node)
821 {
822         ir_graph *irg        = get_irn_irg(node);
823         dbg_info *dbg        = get_irn_dbg_info(node);
824         ir_node *block       = get_nodes_block(node);
825         ir_entity *ent       = be_get_frame_entity(node);
826         ir_mode *mode        = get_irn_mode(node);
827         ir_mode *spillmode   = get_spill_mode(node);
828         ir_node *noreg       = ia32_new_NoReg_gp(irg);
829         ir_node *sched_point = NULL;
830         ir_node *ptr         = get_irg_frame(irg);
831         ir_node *mem         = get_irn_n(node, n_be_Reload_mem);
832         ir_node *new_op, *proj;
833         const arch_register_t *reg;
834
835         if (sched_is_scheduled(node)) {
836                 sched_point = sched_prev(node);
837         }
838
839         if (mode_is_float(spillmode)) {
840                 if (ia32_cg_config.use_sse2)
841                         new_op = new_bd_ia32_xLoad(dbg, block, ptr, noreg, mem, spillmode);
842                 else
843                         new_op = new_bd_ia32_vfld(dbg, block, ptr, noreg, mem, spillmode);
844         }
845         else if (get_mode_size_bits(spillmode) == 128) {
846                 /* Reload 128 bit SSE registers */
847                 new_op = new_bd_ia32_xxLoad(dbg, block, ptr, noreg, mem);
848         }
849         else
850                 new_op = new_bd_ia32_Load(dbg, block, ptr, noreg, mem);
851
852         set_ia32_op_type(new_op, ia32_AddrModeS);
853         set_ia32_ls_mode(new_op, spillmode);
854         set_ia32_frame_ent(new_op, ent);
855         set_ia32_use_frame(new_op);
856         set_ia32_is_reload(new_op);
857
858         DBG_OPT_RELOAD2LD(node, new_op);
859
860         proj = new_rd_Proj(dbg, new_op, mode, pn_ia32_Load_res);
861
862         if (sched_point) {
863                 sched_add_after(sched_point, new_op);
864                 sched_remove(node);
865         }
866
867         /* copy the register from the old node to the new Load */
868         reg = arch_get_irn_register(node);
869         arch_set_irn_register(proj, reg);
870
871         SET_IA32_ORIG_NODE(new_op, node);
872
873         exchange(node, proj);
874 }
875
876 /**
877  * Transforms a be_Spill node into a ia32 Store.
878  */
879 static void transform_to_Store(ir_node *node)
880 {
881         ir_graph *irg  = get_irn_irg(node);
882         dbg_info *dbg  = get_irn_dbg_info(node);
883         ir_node *block = get_nodes_block(node);
884         ir_entity *ent = be_get_frame_entity(node);
885         const ir_node *spillval = get_irn_n(node, n_be_Spill_val);
886         ir_mode *mode  = get_spill_mode(spillval);
887         ir_node *noreg = ia32_new_NoReg_gp(irg);
888         ir_node *nomem = get_irg_no_mem(irg);
889         ir_node *ptr   = get_irg_frame(irg);
890         ir_node *val   = get_irn_n(node, n_be_Spill_val);
891         ir_node *store;
892         ir_node *sched_point = NULL;
893
894         if (sched_is_scheduled(node)) {
895                 sched_point = sched_prev(node);
896         }
897
898         if (mode_is_float(mode)) {
899                 if (ia32_cg_config.use_sse2)
900                         store = new_bd_ia32_xStore(dbg, block, ptr, noreg, nomem, val);
901                 else
902                         store = new_bd_ia32_vfst(dbg, block, ptr, noreg, nomem, val, mode);
903         } else if (get_mode_size_bits(mode) == 128) {
904                 /* Spill 128 bit SSE registers */
905                 store = new_bd_ia32_xxStore(dbg, block, ptr, noreg, nomem, val);
906         } else if (get_mode_size_bits(mode) == 8) {
907                 store = new_bd_ia32_Store8Bit(dbg, block, ptr, noreg, nomem, val);
908         } else {
909                 store = new_bd_ia32_Store(dbg, block, ptr, noreg, nomem, val);
910         }
911
912         set_ia32_op_type(store, ia32_AddrModeD);
913         set_ia32_ls_mode(store, mode);
914         set_ia32_frame_ent(store, ent);
915         set_ia32_use_frame(store);
916         set_ia32_is_spill(store);
917         SET_IA32_ORIG_NODE(store, node);
918         DBG_OPT_SPILL2ST(node, store);
919
920         if (sched_point) {
921                 sched_add_after(sched_point, store);
922                 sched_remove(node);
923         }
924
925         exchange(node, store);
926 }
927
928 static ir_node *create_push(ir_node *node, ir_node *schedpoint, ir_node *sp, ir_node *mem, ir_entity *ent)
929 {
930         dbg_info *dbg = get_irn_dbg_info(node);
931         ir_node *block = get_nodes_block(node);
932         ir_graph *irg = get_irn_irg(node);
933         ir_node *noreg = ia32_new_NoReg_gp(irg);
934         ir_node *frame = get_irg_frame(irg);
935
936         ir_node *push = new_bd_ia32_Push(dbg, block, frame, noreg, mem, noreg, sp);
937
938         set_ia32_frame_ent(push, ent);
939         set_ia32_use_frame(push);
940         set_ia32_op_type(push, ia32_AddrModeS);
941         set_ia32_ls_mode(push, mode_Is);
942         set_ia32_is_spill(push);
943
944         sched_add_before(schedpoint, push);
945         return push;
946 }
947
948 static ir_node *create_pop(ir_node *node, ir_node *schedpoint, ir_node *sp, ir_entity *ent)
949 {
950         dbg_info *dbg   = get_irn_dbg_info(node);
951         ir_node  *block = get_nodes_block(node);
952         ir_graph *irg   = get_irn_irg(node);
953         ir_node  *noreg = ia32_new_NoReg_gp(irg);
954         ir_node  *frame = get_irg_frame(irg);
955
956         ir_node *pop = new_bd_ia32_PopMem(dbg, block, frame, noreg,
957                                           get_irg_no_mem(irg), sp);
958
959         set_ia32_frame_ent(pop, ent);
960         set_ia32_use_frame(pop);
961         set_ia32_op_type(pop, ia32_AddrModeD);
962         set_ia32_ls_mode(pop, mode_Is);
963         set_ia32_is_reload(pop);
964
965         sched_add_before(schedpoint, pop);
966
967         return pop;
968 }
969
970 static ir_node* create_spproj(ir_node *node, ir_node *pred, int pos)
971 {
972         dbg_info *dbg = get_irn_dbg_info(node);
973         ir_mode *spmode = mode_Iu;
974         const arch_register_t *spreg = &ia32_registers[REG_ESP];
975         ir_node *sp;
976
977         sp = new_rd_Proj(dbg, pred, spmode, pos);
978         arch_set_irn_register(sp, spreg);
979
980         return sp;
981 }
982
983 /**
984  * Transform MemPerm, currently we do this the ugly way and produce
985  * push/pop into/from memory cascades. This is possible without using
986  * any registers.
987  */
988 static void transform_MemPerm(ir_node *node)
989 {
990         ir_node         *block = get_nodes_block(node);
991         ir_graph        *irg   = get_irn_irg(node);
992         ir_node         *sp    = be_get_initial_reg_value(irg, &ia32_registers[REG_ESP]);
993         int              arity = be_get_MemPerm_entity_arity(node);
994         ir_node        **pops  = ALLOCAN(ir_node*, arity);
995         ir_node         *in[1];
996         ir_node         *keep;
997         int              i;
998         const ir_edge_t *edge;
999         const ir_edge_t *next;
1000
1001         /* create Pushs */
1002         for (i = 0; i < arity; ++i) {
1003                 ir_entity *inent = be_get_MemPerm_in_entity(node, i);
1004                 ir_entity *outent = be_get_MemPerm_out_entity(node, i);
1005                 ir_type *enttype = get_entity_type(inent);
1006                 unsigned entsize = get_type_size_bytes(enttype);
1007                 unsigned entsize2 = get_type_size_bytes(get_entity_type(outent));
1008                 ir_node *mem = get_irn_n(node, i + 1);
1009                 ir_node *push;
1010
1011                 /* work around cases where entities have different sizes */
1012                 if (entsize2 < entsize)
1013                         entsize = entsize2;
1014                 assert( (entsize == 4 || entsize == 8) && "spillslot on x86 should be 32 or 64 bit");
1015
1016                 push = create_push(node, node, sp, mem, inent);
1017                 sp = create_spproj(node, push, pn_ia32_Push_stack);
1018                 if (entsize == 8) {
1019                         /* add another push after the first one */
1020                         push = create_push(node, node, sp, mem, inent);
1021                         add_ia32_am_offs_int(push, 4);
1022                         sp = create_spproj(node, push, pn_ia32_Push_stack);
1023                 }
1024
1025                 set_irn_n(node, i, new_r_Bad(irg, mode_X));
1026         }
1027
1028         /* create pops */
1029         for (i = arity - 1; i >= 0; --i) {
1030                 ir_entity *inent = be_get_MemPerm_in_entity(node, i);
1031                 ir_entity *outent = be_get_MemPerm_out_entity(node, i);
1032                 ir_type *enttype = get_entity_type(outent);
1033                 unsigned entsize = get_type_size_bytes(enttype);
1034                 unsigned entsize2 = get_type_size_bytes(get_entity_type(inent));
1035                 ir_node *pop;
1036
1037                 /* work around cases where entities have different sizes */
1038                 if (entsize2 < entsize)
1039                         entsize = entsize2;
1040                 assert( (entsize == 4 || entsize == 8) && "spillslot on x86 should be 32 or 64 bit");
1041
1042                 pop = create_pop(node, node, sp, outent);
1043                 sp = create_spproj(node, pop, pn_ia32_Pop_stack);
1044                 if (entsize == 8) {
1045                         add_ia32_am_offs_int(pop, 4);
1046
1047                         /* add another pop after the first one */
1048                         pop = create_pop(node, node, sp, outent);
1049                         sp = create_spproj(node, pop, pn_ia32_Pop_stack);
1050                 }
1051
1052                 pops[i] = pop;
1053         }
1054
1055         in[0] = sp;
1056         keep  = be_new_Keep(block, 1, in);
1057         sched_add_before(node, keep);
1058
1059         /* exchange memprojs */
1060         foreach_out_edge_safe(node, edge, next) {
1061                 ir_node *proj = get_edge_src_irn(edge);
1062                 int p = get_Proj_proj(proj);
1063
1064                 assert(p < arity);
1065
1066                 set_Proj_pred(proj, pops[p]);
1067                 set_Proj_proj(proj, pn_ia32_Pop_M);
1068         }
1069
1070         /* remove memperm */
1071         sched_remove(node);
1072         kill_node(node);
1073 }
1074
1075 /**
1076  * Block-Walker: Calls the transform functions Spill and Reload.
1077  */
1078 static void ia32_after_ra_walker(ir_node *block, void *env)
1079 {
1080         ir_node *node, *prev;
1081         (void) env;
1082
1083         /* beware: the schedule is changed here */
1084         for (node = sched_last(block); !sched_is_begin(node); node = prev) {
1085                 prev = sched_prev(node);
1086
1087                 if (be_is_Reload(node)) {
1088                         transform_to_Load(node);
1089                 } else if (be_is_Spill(node)) {
1090                         transform_to_Store(node);
1091                 } else if (be_is_MemPerm(node)) {
1092                         transform_MemPerm(node);
1093                 }
1094         }
1095 }
1096
1097 /**
1098  * Collects nodes that need frame entities assigned.
1099  */
1100 static void ia32_collect_frame_entity_nodes(ir_node *node, void *data)
1101 {
1102         be_fec_env_t  *env = (be_fec_env_t*)data;
1103         const ir_mode *mode;
1104         int            align;
1105
1106         if (be_is_Reload(node) && be_get_frame_entity(node) == NULL) {
1107                 mode  = get_spill_mode_mode(get_irn_mode(node));
1108                 align = get_mode_size_bytes(mode);
1109         } else if (is_ia32_irn(node)         &&
1110                         get_ia32_frame_ent(node) == NULL &&
1111                         is_ia32_use_frame(node)) {
1112                 if (is_ia32_need_stackent(node))
1113                         goto need_stackent;
1114
1115                 switch (get_ia32_irn_opcode(node)) {
1116 need_stackent:
1117                         case iro_ia32_Load: {
1118                                 const ia32_attr_t *attr = get_ia32_attr_const(node);
1119
1120                                 if (attr->data.need_32bit_stackent) {
1121                                         mode = mode_Is;
1122                                 } else if (attr->data.need_64bit_stackent) {
1123                                         mode = mode_Ls;
1124                                 } else {
1125                                         mode = get_ia32_ls_mode(node);
1126                                         if (is_ia32_is_reload(node))
1127                                                 mode = get_spill_mode_mode(mode);
1128                                 }
1129                                 align = get_mode_size_bytes(mode);
1130                                 break;
1131                         }
1132
1133                         case iro_ia32_vfild:
1134                         case iro_ia32_vfld:
1135                         case iro_ia32_xLoad: {
1136                                 mode  = get_ia32_ls_mode(node);
1137                                 align = 4;
1138                                 break;
1139                         }
1140
1141                         case iro_ia32_FldCW: {
1142                                 /* although 2 byte would be enough 4 byte performs best */
1143                                 mode  = mode_Iu;
1144                                 align = 4;
1145                                 break;
1146                         }
1147
1148                         default:
1149 #ifndef NDEBUG
1150                                 panic("unexpected frame user while collection frame entity nodes");
1151
1152                         case iro_ia32_FnstCW:
1153                         case iro_ia32_Store8Bit:
1154                         case iro_ia32_Store:
1155                         case iro_ia32_fst:
1156                         case iro_ia32_fstp:
1157                         case iro_ia32_vfist:
1158                         case iro_ia32_vfisttp:
1159                         case iro_ia32_vfst:
1160                         case iro_ia32_xStore:
1161                         case iro_ia32_xStoreSimple:
1162 #endif
1163                                 return;
1164                 }
1165         } else {
1166                 return;
1167         }
1168         be_node_needs_frame_entity(env, node, mode, align);
1169 }
1170
1171 static int determine_ebp_input(ir_node *ret)
1172 {
1173         const arch_register_t *bp = &ia32_registers[REG_EBP];
1174         int   arity               = get_irn_arity(ret);
1175         int   i;
1176
1177         for (i = 0; i < arity; ++i) {
1178                 ir_node *input = get_irn_n(ret, i);
1179                 if (arch_get_irn_register(input) == bp)
1180                         return i;
1181         }
1182         panic("no ebp input found at %+F", ret);
1183 }
1184
1185 static void introduce_epilog(ir_node *ret)
1186 {
1187         const arch_register_t *sp         = &ia32_registers[REG_ESP];
1188         const arch_register_t *bp         = &ia32_registers[REG_EBP];
1189         ir_graph              *irg        = get_irn_irg(ret);
1190         ir_type               *frame_type = get_irg_frame_type(irg);
1191         unsigned               frame_size = get_type_size_bytes(frame_type);
1192         be_stack_layout_t     *layout     = be_get_irg_stack_layout(irg);
1193         ir_node               *block      = get_nodes_block(ret);
1194         ir_node               *first_sp   = get_irn_n(ret, n_be_Return_sp);
1195         ir_node               *curr_sp    = first_sp;
1196         ir_mode               *mode_gp    = mode_Iu;
1197
1198         if (!layout->sp_relative) {
1199                 int      n_ebp   = determine_ebp_input(ret);
1200                 ir_node *curr_bp = get_irn_n(ret, n_ebp);
1201                 if (ia32_cg_config.use_leave) {
1202                         ir_node *leave = new_bd_ia32_Leave(NULL, block, curr_bp);
1203                         curr_bp        = new_r_Proj(leave, mode_gp, pn_ia32_Leave_frame);
1204                         curr_sp        = new_r_Proj(leave, mode_gp, pn_ia32_Leave_stack);
1205                         arch_set_irn_register(curr_bp, bp);
1206                         arch_set_irn_register(curr_sp, sp);
1207                         sched_add_before(ret, leave);
1208                 } else {
1209                         ir_node *pop;
1210                         ir_node *curr_mem = get_irn_n(ret, n_be_Return_mem);
1211                         /* copy ebp to esp */
1212                         curr_sp = new_bd_ia32_CopyEbpEsp(NULL, block, curr_bp);
1213                         arch_set_irn_register(curr_sp, sp);
1214                         sched_add_before(ret, curr_sp);
1215
1216                         /* pop ebp */
1217                         pop      = new_bd_ia32_PopEbp(NULL, block, curr_mem, curr_sp);
1218                         curr_bp  = new_r_Proj(pop, mode_gp, pn_ia32_PopEbp_res);
1219                         curr_sp  = new_r_Proj(pop, mode_gp, pn_ia32_PopEbp_stack);
1220                         curr_mem = new_r_Proj(pop, mode_M, pn_ia32_Pop_M);
1221                         arch_set_irn_register(curr_bp, bp);
1222                         arch_set_irn_register(curr_sp, sp);
1223                         sched_add_before(ret, pop);
1224
1225                         set_irn_n(ret, n_be_Return_mem, curr_mem);
1226                 }
1227                 set_irn_n(ret, n_ebp, curr_bp);
1228         } else {
1229                 ir_node *incsp = be_new_IncSP(sp, block, curr_sp, -(int)frame_size, 0);
1230                 sched_add_before(ret, incsp);
1231                 curr_sp = incsp;
1232         }
1233         set_irn_n(ret, n_be_Return_sp, curr_sp);
1234
1235         /* keep verifier happy... */
1236         if (get_irn_n_edges(first_sp) == 0 && is_Proj(first_sp)) {
1237                 kill_node(first_sp);
1238         }
1239 }
1240
1241 /**
1242  * put the Prolog code at the beginning, epilog code before each return
1243  */
1244 static void introduce_prolog_epilog(ir_graph *irg)
1245 {
1246         const arch_register_t *sp         = &ia32_registers[REG_ESP];
1247         const arch_register_t *bp         = &ia32_registers[REG_EBP];
1248         ir_node               *start      = get_irg_start(irg);
1249         ir_node               *block      = get_nodes_block(start);
1250         ir_type               *frame_type = get_irg_frame_type(irg);
1251         unsigned               frame_size = get_type_size_bytes(frame_type);
1252         be_stack_layout_t     *layout     = be_get_irg_stack_layout(irg);
1253         ir_node               *initial_sp = be_get_initial_reg_value(irg, sp);
1254         ir_node               *curr_sp    = initial_sp;
1255         ir_mode               *mode_gp    = mode_Iu;
1256
1257         if (!layout->sp_relative) {
1258                 /* push ebp */
1259                 ir_node *mem        = get_irg_initial_mem(irg);
1260                 ir_node *noreg      = ia32_new_NoReg_gp(irg);
1261                 ir_node *initial_bp = be_get_initial_reg_value(irg, bp);
1262                 ir_node *curr_bp    = initial_bp;
1263                 ir_node *push       = new_bd_ia32_Push(NULL, block, noreg, noreg, mem, curr_bp, curr_sp);
1264                 ir_node *incsp;
1265
1266                 curr_sp = new_r_Proj(push, mode_gp, pn_ia32_Push_stack);
1267                 mem     = new_r_Proj(push, mode_M, pn_ia32_Push_M);
1268                 arch_set_irn_register(curr_sp, sp);
1269                 sched_add_after(start, push);
1270
1271                 /* move esp to ebp */
1272                 curr_bp = be_new_Copy(bp->reg_class, block, curr_sp);
1273                 sched_add_after(push, curr_bp);
1274                 be_set_constr_single_reg_out(curr_bp, 0, bp, arch_register_req_type_ignore);
1275                 curr_sp = be_new_CopyKeep_single(sp->reg_class, block, curr_sp, curr_bp, mode_gp);
1276                 sched_add_after(curr_bp, curr_sp);
1277                 be_set_constr_single_reg_out(curr_sp, 0, sp, arch_register_req_type_produces_sp);
1278                 edges_reroute(initial_bp, curr_bp);
1279                 set_irn_n(push, n_ia32_Push_val, initial_bp);
1280
1281                 incsp = be_new_IncSP(sp, block, curr_sp, frame_size, 0);
1282                 edges_reroute(initial_sp, incsp);
1283                 set_irn_n(push, n_ia32_Push_stack, initial_sp);
1284                 sched_add_after(curr_sp, incsp);
1285
1286                 layout->initial_bias = -4;
1287         } else {
1288                 ir_node *incsp = be_new_IncSP(sp, block, curr_sp, frame_size, 0);
1289                 edges_reroute(initial_sp, incsp);
1290                 be_set_IncSP_pred(incsp, curr_sp);
1291                 sched_add_after(start, incsp);
1292         }
1293
1294         /* introduce epilog for every return node */
1295         {
1296                 ir_node *end_block = get_irg_end_block(irg);
1297                 int      arity     = get_irn_arity(end_block);
1298                 int      i;
1299
1300                 for (i = 0; i < arity; ++i) {
1301                         ir_node *ret = get_irn_n(end_block, i);
1302                         assert(be_is_Return(ret));
1303                         introduce_epilog(ret);
1304                 }
1305         }
1306 }
1307
1308 /**
1309  * We transform Spill and Reload here. This needs to be done before
1310  * stack biasing otherwise we would miss the corrected offset for these nodes.
1311  */
1312 static void ia32_after_ra(ir_graph *irg)
1313 {
1314         be_stack_layout_t *stack_layout = be_get_irg_stack_layout(irg);
1315         bool               at_begin     = stack_layout->sp_relative ? true : false;
1316         be_fec_env_t      *fec_env      = be_new_frame_entity_coalescer(irg);
1317
1318         /* create and coalesce frame entities */
1319         irg_walk_graph(irg, NULL, ia32_collect_frame_entity_nodes, fec_env);
1320         be_assign_entities(fec_env, ia32_set_frame_entity, at_begin);
1321         be_free_frame_entity_coalescer(fec_env);
1322
1323         irg_block_walk_graph(irg, NULL, ia32_after_ra_walker, NULL);
1324
1325         introduce_prolog_epilog(irg);
1326 }
1327
1328 /**
1329  * Last touchups for the graph before emit: x87 simulation to replace the
1330  * virtual with real x87 instructions, creating a block schedule and peephole
1331  * optimisations.
1332  */
1333 static void ia32_finish(ir_graph *irg)
1334 {
1335         ia32_irg_data_t *irg_data = ia32_get_irg_data(irg);
1336
1337         ia32_finish_irg(irg);
1338
1339         /* we might have to rewrite x87 virtual registers */
1340         if (irg_data->do_x87_sim) {
1341                 ia32_x87_simulate_graph(irg);
1342         }
1343
1344         /* do peephole optimisations */
1345         ia32_peephole_optimization(irg);
1346
1347         /* create block schedule, this also removes empty blocks which might
1348          * produce critical edges */
1349         irg_data->blk_sched = be_create_block_schedule(irg);
1350 }
1351
1352 /**
1353  * Emits the code, closes the output file and frees
1354  * the code generator interface.
1355  */
1356 static void ia32_emit(ir_graph *irg)
1357 {
1358         if (ia32_cg_config.emit_machcode) {
1359                 ia32_gen_binary_routine(irg);
1360         } else {
1361                 ia32_gen_routine(irg);
1362         }
1363 }
1364
1365 /**
1366  * Returns the node representing the PIC base.
1367  */
1368 static ir_node *ia32_get_pic_base(ir_graph *irg)
1369 {
1370         ia32_irg_data_t *irg_data = ia32_get_irg_data(irg);
1371         ir_node         *block;
1372         ir_node         *get_eip = irg_data->get_eip;
1373         if (get_eip != NULL)
1374                 return get_eip;
1375
1376         block             = get_irg_start_block(irg);
1377         get_eip           = new_bd_ia32_GetEIP(NULL, block);
1378         irg_data->get_eip = get_eip;
1379
1380         return get_eip;
1381 }
1382
1383 /**
1384  * Initializes a IA32 code generator.
1385  */
1386 static void ia32_init_graph(ir_graph *irg)
1387 {
1388         struct obstack  *obst     = be_get_be_obst(irg);
1389         ia32_irg_data_t *irg_data = OALLOCZ(obst, ia32_irg_data_t);
1390
1391         irg_data->dump = (be_get_irg_options(irg)->dump_flags & DUMP_BE) ? 1 : 0;
1392
1393         if (gprof) {
1394                 /* Linux gprof implementation needs base pointer */
1395                 be_get_irg_options(irg)->omit_fp = 0;
1396         }
1397
1398         be_birg_from_irg(irg)->isa_link = irg_data;
1399 }
1400
1401
1402 /**
1403  * Set output modes for GCC
1404  */
1405 static const tarval_mode_info mo_integer = {
1406         TVO_HEX,
1407         "0x",
1408         NULL,
1409 };
1410
1411 /*
1412  * set the tarval output mode of all integer modes to decimal
1413  */
1414 static void set_tarval_output_modes(void)
1415 {
1416         size_t i;
1417
1418         for (i = get_irp_n_modes(); i > 0;) {
1419                 ir_mode *mode = get_irp_mode(--i);
1420
1421                 if (mode_is_int(mode))
1422                         set_tarval_mode_output_option(mode, &mo_integer);
1423         }
1424 }
1425
1426 extern const arch_isa_if_t ia32_isa_if;
1427
1428 /**
1429  * The template that generates a new ISA object.
1430  * Note that this template can be changed by command line
1431  * arguments.
1432  */
1433 static ia32_isa_t ia32_isa_template = {
1434         {
1435                 &ia32_isa_if,            /* isa interface implementation */
1436                 N_IA32_REGISTERS,
1437                 ia32_registers,
1438                 N_IA32_CLASSES,
1439                 ia32_reg_classes,
1440                 &ia32_registers[REG_ESP],  /* stack pointer register */
1441                 &ia32_registers[REG_EBP],  /* base pointer register */
1442                 &ia32_reg_classes[CLASS_ia32_gp],  /* static link pointer register class */
1443                 2,                       /* power of two stack alignment, 2^2 == 4 */
1444                 NULL,                    /* main environment */
1445                 7,                       /* costs for a spill instruction */
1446                 5,                       /* costs for a reload instruction */
1447                 false,                   /* no custom abi handling */
1448         },
1449         NULL,                    /* types */
1450         NULL,                    /* tv_ents */
1451         NULL,                    /* abstract machine */
1452 };
1453
1454 static void init_asm_constraints(void)
1455 {
1456         be_init_default_asm_constraint_flags();
1457
1458         asm_constraint_flags['a'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1459         asm_constraint_flags['b'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1460         asm_constraint_flags['c'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1461         asm_constraint_flags['d'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1462         asm_constraint_flags['D'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1463         asm_constraint_flags['S'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1464         asm_constraint_flags['Q'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1465         asm_constraint_flags['q'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1466         asm_constraint_flags['A'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1467         asm_constraint_flags['l'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1468         asm_constraint_flags['R'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1469         asm_constraint_flags['r'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1470         asm_constraint_flags['p'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1471         asm_constraint_flags['f'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1472         asm_constraint_flags['t'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1473         asm_constraint_flags['u'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1474         asm_constraint_flags['Y'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1475         asm_constraint_flags['X'] = ASM_CONSTRAINT_FLAG_SUPPORTS_REGISTER;
1476         asm_constraint_flags['n'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
1477         asm_constraint_flags['g'] = ASM_CONSTRAINT_FLAG_SUPPORTS_IMMEDIATE;
1478
1479         /* no support for autodecrement/autoincrement */
1480         asm_constraint_flags['<'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1481         asm_constraint_flags['>'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1482         /* no float consts */
1483         asm_constraint_flags['E'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1484         asm_constraint_flags['F'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1485         /* makes no sense on x86 */
1486         asm_constraint_flags['s'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1487         /* no support for sse consts yet */
1488         asm_constraint_flags['C'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1489         /* no support for x87 consts yet */
1490         asm_constraint_flags['G'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1491         /* no support for mmx registers yet */
1492         asm_constraint_flags['y'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1493         /* not available in 32bit mode */
1494         asm_constraint_flags['Z'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1495         asm_constraint_flags['e'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1496
1497         /* no code yet to determine register class needed... */
1498         asm_constraint_flags['X'] = ASM_CONSTRAINT_FLAG_NO_SUPPORT;
1499 }
1500
1501 /**
1502  * Initializes the backend ISA.
1503  */
1504 static arch_env_t *ia32_init(FILE *file_handle)
1505 {
1506         ia32_isa_t *isa = XMALLOC(ia32_isa_t);
1507
1508         set_tarval_output_modes();
1509
1510         memcpy(isa, &ia32_isa_template, sizeof(*isa));
1511
1512         if (ia32_mode_fpcw == NULL) {
1513                 ia32_mode_fpcw = new_ir_mode("Fpcw", irms_int_number, 16, 0, irma_none, 0);
1514         }
1515
1516         ia32_register_init();
1517         ia32_create_opcodes(&ia32_irn_ops);
1518
1519         be_emit_init(file_handle);
1520         isa->types          = pmap_create();
1521         isa->tv_ent         = pmap_create();
1522         isa->cpu            = ia32_init_machine_description();
1523
1524         /* enter the ISA object into the intrinsic environment */
1525         intrinsic_env.isa = isa;
1526
1527         return &isa->base;
1528 }
1529
1530
1531
1532 /**
1533  * Closes the output file and frees the ISA structure.
1534  */
1535 static void ia32_done(void *self)
1536 {
1537         ia32_isa_t *isa = (ia32_isa_t*)self;
1538
1539         /* emit now all global declarations */
1540         be_gas_emit_decls(isa->base.main_env);
1541
1542         pmap_destroy(isa->tv_ent);
1543         pmap_destroy(isa->types);
1544
1545         be_emit_exit();
1546
1547         free(self);
1548 }
1549
1550
1551 /**
1552  * Get the register class which shall be used to store a value of a given mode.
1553  * @param self The this pointer.
1554  * @param mode The mode in question.
1555  * @return A register class which can hold values of the given mode.
1556  */
1557 static const arch_register_class_t *ia32_get_reg_class_for_mode(const ir_mode *mode)
1558 {
1559         if (mode_is_float(mode)) {
1560                 return ia32_cg_config.use_sse2 ? &ia32_reg_classes[CLASS_ia32_xmm] : &ia32_reg_classes[CLASS_ia32_vfp];
1561         }
1562         else
1563                 return &ia32_reg_classes[CLASS_ia32_gp];
1564 }
1565
1566 /**
1567  * Returns the register for parameter nr.
1568  */
1569 static const arch_register_t *ia32_get_RegParam_reg(unsigned cc, unsigned nr,
1570                                                     const ir_mode *mode)
1571 {
1572         static const arch_register_t *gpreg_param_reg_fastcall[] = {
1573                 &ia32_registers[REG_ECX],
1574                 &ia32_registers[REG_EDX],
1575                 NULL
1576         };
1577         static const unsigned MAXNUM_GPREG_ARGS = 3;
1578
1579         static const arch_register_t *gpreg_param_reg_regparam[] = {
1580                 &ia32_registers[REG_EAX],
1581                 &ia32_registers[REG_EDX],
1582                 &ia32_registers[REG_ECX]
1583         };
1584
1585         static const arch_register_t *gpreg_param_reg_this[] = {
1586                 &ia32_registers[REG_ECX],
1587                 NULL,
1588                 NULL
1589         };
1590
1591         static const arch_register_t *fpreg_sse_param_reg_std[] = {
1592                 &ia32_registers[REG_XMM0],
1593                 &ia32_registers[REG_XMM1],
1594                 &ia32_registers[REG_XMM2],
1595                 &ia32_registers[REG_XMM3],
1596                 &ia32_registers[REG_XMM4],
1597                 &ia32_registers[REG_XMM5],
1598                 &ia32_registers[REG_XMM6],
1599                 &ia32_registers[REG_XMM7]
1600         };
1601
1602         static const arch_register_t *fpreg_sse_param_reg_this[] = {
1603                 NULL,  /* in case of a "this" pointer, the first parameter must not be a float */
1604         };
1605         static const unsigned MAXNUM_SSE_ARGS = 8;
1606
1607         if ((cc & cc_this_call) && nr == 0)
1608                 return gpreg_param_reg_this[0];
1609
1610         if (! (cc & cc_reg_param))
1611                 return NULL;
1612
1613         if (mode_is_float(mode)) {
1614                 if (!ia32_cg_config.use_sse2 || (cc & cc_fpreg_param) == 0)
1615                         return NULL;
1616                 if (nr >= MAXNUM_SSE_ARGS)
1617                         return NULL;
1618
1619                 if (cc & cc_this_call) {
1620                         return fpreg_sse_param_reg_this[nr];
1621                 }
1622                 return fpreg_sse_param_reg_std[nr];
1623         } else if (mode_is_int(mode) || mode_is_reference(mode)) {
1624                 unsigned num_regparam;
1625
1626                 if (get_mode_size_bits(mode) > 32)
1627                         return NULL;
1628
1629                 if (nr >= MAXNUM_GPREG_ARGS)
1630                         return NULL;
1631
1632                 if (cc & cc_this_call) {
1633                         return gpreg_param_reg_this[nr];
1634                 }
1635                 num_regparam = cc & ~cc_bits;
1636                 if (num_regparam == 0) {
1637                         /* default fastcall */
1638                         return gpreg_param_reg_fastcall[nr];
1639                 }
1640                 if (nr < num_regparam)
1641                         return gpreg_param_reg_regparam[nr];
1642                 return NULL;
1643         }
1644
1645         panic("unknown argument mode");
1646 }
1647
1648 /**
1649  * Get the ABI restrictions for procedure calls.
1650  * @param self        The this pointer.
1651  * @param method_type The type of the method (procedure) in question.
1652  * @param abi         The abi object to be modified
1653  */
1654 static void ia32_get_call_abi(const void *self, ir_type *method_type,
1655                               be_abi_call_t *abi)
1656 {
1657         ir_type  *tp;
1658         ir_mode  *mode;
1659         unsigned  cc;
1660         int       n, i, regnum;
1661         int                 pop_amount = 0;
1662         be_abi_call_flags_t call_flags = be_abi_call_get_flags(abi);
1663
1664         (void) self;
1665
1666         /* set abi flags for calls */
1667         call_flags.bits.left_to_right         = 0;  /* always last arg first on stack */
1668         call_flags.bits.store_args_sequential = 0;
1669         /* call_flags.bits.try_omit_fp                 not changed: can handle both settings */
1670         call_flags.bits.fp_free               = 0;  /* the frame pointer is fixed in IA32 */
1671         call_flags.bits.call_has_imm          = 0;  /* No call immediate, we handle this by ourselves */
1672
1673         /* set parameter passing style */
1674         be_abi_call_set_flags(abi, call_flags, &ia32_abi_callbacks);
1675
1676         cc = get_method_calling_convention(method_type);
1677         if (get_method_variadicity(method_type) == variadicity_variadic) {
1678                 /* pass all parameters of a variadic function on the stack */
1679                 cc = cc_cdecl_set | (cc & cc_this_call);
1680         } else {
1681                 if (get_method_additional_properties(method_type) & mtp_property_private &&
1682                     ia32_cg_config.optimize_cc) {
1683                         /* set the fast calling conventions (allowing up to 3) */
1684                         cc = SET_FASTCALL(cc) | 3;
1685                 }
1686         }
1687
1688         /* we have to pop the shadow parameter ourself for compound calls */
1689         if ( (get_method_calling_convention(method_type) & cc_compound_ret)
1690                         && !(cc & cc_reg_param)) {
1691                 pop_amount += get_mode_size_bytes(mode_P_data);
1692         }
1693
1694         n = get_method_n_params(method_type);
1695         for (i = regnum = 0; i < n; i++) {
1696                 ir_mode               *mode;
1697                 const arch_register_t *reg = NULL;
1698
1699                 tp   = get_method_param_type(method_type, i);
1700                 mode = get_type_mode(tp);
1701                 if (mode != NULL) {
1702                         reg  = ia32_get_RegParam_reg(cc, regnum, mode);
1703                 }
1704                 if (reg != NULL) {
1705                         be_abi_call_param_reg(abi, i, reg, ABI_CONTEXT_BOTH);
1706                         ++regnum;
1707                 } else {
1708                         /* Micro optimisation: if the mode is shorter than 4 bytes, load 4 bytes.
1709                          * movl has a shorter opcode than mov[sz][bw]l */
1710                         ir_mode *load_mode = mode;
1711
1712                         if (mode != NULL) {
1713                                 unsigned size = get_mode_size_bytes(mode);
1714
1715                                 if (cc & cc_callee_clear_stk) {
1716                                         pop_amount += (size + 3U) & ~3U;
1717                                 }
1718
1719                                 if (size < 4) load_mode = mode_Iu;
1720                         }
1721
1722                         be_abi_call_param_stack(abi, i, load_mode, 4, 0, 0, ABI_CONTEXT_BOTH);
1723                 }
1724         }
1725
1726         be_abi_call_set_pop(abi, pop_amount);
1727
1728         /* set return registers */
1729         n = get_method_n_ress(method_type);
1730
1731         assert(n <= 2 && "more than two results not supported");
1732
1733         /* In case of 64bit returns, we will have two 32bit values */
1734         if (n == 2) {
1735                 tp   = get_method_res_type(method_type, 0);
1736                 mode = get_type_mode(tp);
1737
1738                 assert(!mode_is_float(mode) && "two FP results not supported");
1739
1740                 tp   = get_method_res_type(method_type, 1);
1741                 mode = get_type_mode(tp);
1742
1743                 assert(!mode_is_float(mode) && "mixed INT, FP results not supported");
1744
1745                 be_abi_call_res_reg(abi, 0, &ia32_registers[REG_EAX], ABI_CONTEXT_BOTH);
1746                 be_abi_call_res_reg(abi, 1, &ia32_registers[REG_EDX], ABI_CONTEXT_BOTH);
1747         }
1748         else if (n == 1) {
1749                 const arch_register_t *reg;
1750
1751                 tp   = get_method_res_type(method_type, 0);
1752                 assert(is_atomic_type(tp));
1753                 mode = get_type_mode(tp);
1754
1755                 reg = mode_is_float(mode) ? &ia32_registers[REG_VF0] : &ia32_registers[REG_EAX];
1756
1757                 be_abi_call_res_reg(abi, 0, reg, ABI_CONTEXT_BOTH);
1758         }
1759 }
1760
1761 /**
1762  * Returns the necessary byte alignment for storing a register of given class.
1763  */
1764 static int ia32_get_reg_class_alignment(const arch_register_class_t *cls)
1765 {
1766         ir_mode *mode = arch_register_class_mode(cls);
1767         int bytes     = get_mode_size_bytes(mode);
1768
1769         if (mode_is_float(mode) && bytes > 8)
1770                 return 16;
1771         return bytes;
1772 }
1773
1774 /**
1775  * Return irp irgs in the desired order.
1776  */
1777 static ir_graph **ia32_get_irg_list(const void *self, ir_graph ***irg_list)
1778 {
1779         (void) self;
1780         (void) irg_list;
1781         return NULL;
1782 }
1783
1784 static void ia32_mark_remat(ir_node *node)
1785 {
1786         if (is_ia32_irn(node)) {
1787                 set_ia32_is_remat(node);
1788         }
1789 }
1790
1791 /**
1792  * Check if Mux(sel, mux_true, mux_false) would represent a Max or Min operation
1793  */
1794 static bool mux_is_float_min_max(ir_node *sel, ir_node *mux_true,
1795                                  ir_node *mux_false)
1796 {
1797         ir_node    *cmp_l;
1798         ir_node    *cmp_r;
1799         ir_relation relation;
1800
1801         if (!is_Cmp(sel))
1802                 return false;
1803
1804         cmp_l = get_Cmp_left(sel);
1805         cmp_r = get_Cmp_right(sel);
1806         if (!mode_is_float(get_irn_mode(cmp_l)))
1807                 return false;
1808
1809         /* check for min/max. They're defined as (C-Semantik):
1810          *  min(a, b) = a < b ? a : b
1811          *  or min(a, b) = a <= b ? a : b
1812          *  max(a, b) = a > b ? a : b
1813          *  or max(a, b) = a >= b ? a : b
1814          * (Note we only handle float min/max here)
1815          */
1816         relation = get_Cmp_relation(sel);
1817         switch (relation) {
1818         case ir_relation_greater_equal:
1819         case ir_relation_greater:
1820                 /* this is a max */
1821                 if (cmp_l == mux_true && cmp_r == mux_false)
1822                         return true;
1823                 break;
1824         case ir_relation_less_equal:
1825         case ir_relation_less:
1826                 /* this is a min */
1827                 if (cmp_l == mux_true && cmp_r == mux_false)
1828                         return true;
1829                 break;
1830         case ir_relation_unordered_greater_equal:
1831         case ir_relation_unordered_greater:
1832                 /* this is a min */
1833                 if (cmp_l == mux_false && cmp_r == mux_true)
1834                         return true;
1835                 break;
1836         case ir_relation_unordered_less_equal:
1837         case ir_relation_unordered_less:
1838                 /* this is a max */
1839                 if (cmp_l == mux_false && cmp_r == mux_true)
1840                         return true;
1841                 break;
1842
1843         default:
1844                 break;
1845         }
1846
1847         return false;
1848 }
1849
1850 static bool mux_is_set(ir_node *sel, ir_node *mux_true, ir_node *mux_false)
1851 {
1852         ir_mode *mode = get_irn_mode(mux_true);
1853         (void) sel;
1854
1855         if (!mode_is_int(mode) && !mode_is_reference(mode)
1856                         && mode != mode_b)
1857                 return false;
1858
1859         if (is_Const(mux_true) && is_Const(mux_false)) {
1860                 /* we can create a set plus up two 3 instructions for any combination
1861                  * of constants */
1862                 return true;
1863         }
1864
1865         return false;
1866 }
1867
1868 static bool mux_is_float_const_const(ir_node *sel, ir_node *mux_true,
1869                                      ir_node *mux_false)
1870 {
1871         (void) sel;
1872
1873         if (!mode_is_float(get_irn_mode(mux_true)))
1874                 return false;
1875
1876         return is_Const(mux_true) && is_Const(mux_false);
1877 }
1878
1879 static bool mux_is_doz(ir_node *sel, ir_node *mux_true, ir_node *mux_false)
1880 {
1881         ir_node    *cmp_left;
1882         ir_node    *cmp_right;
1883         ir_node    *sub_left;
1884         ir_node    *sub_right;
1885         ir_mode    *mode;
1886         ir_relation relation;
1887
1888         if (!is_Cmp(sel))
1889                 return false;
1890
1891         mode = get_irn_mode(mux_true);
1892         if (mode_is_signed(mode) || mode_is_float(mode))
1893                 return false;
1894
1895         relation  = get_Cmp_relation(sel);
1896         cmp_left  = get_Cmp_left(sel);
1897         cmp_right = get_Cmp_right(sel);
1898
1899         /* "move" zero constant to false input */
1900         if (is_Const(mux_true) && is_Const_null(mux_true)) {
1901                 ir_node *tmp = mux_false;
1902                 mux_false = mux_true;
1903                 mux_true  = tmp;
1904                 relation = get_negated_relation(relation);
1905         }
1906         if (!is_Const(mux_false) || !is_Const_null(mux_false))
1907                 return false;
1908         if (!is_Sub(mux_true))
1909                 return false;
1910         sub_left  = get_Sub_left(mux_true);
1911         sub_right = get_Sub_right(mux_true);
1912
1913         /* Mux(a >=u b, 0, a-b) */
1914         if ((relation & ir_relation_greater)
1915                         && sub_left == cmp_left && sub_right == cmp_right)
1916                 return true;
1917         /* Mux(a <=u b, 0, b-a) */
1918         if ((relation & ir_relation_less)
1919                         && sub_left == cmp_right && sub_right == cmp_left)
1920                 return true;
1921
1922         return false;
1923 }
1924
1925 static int ia32_is_mux_allowed(ir_node *sel, ir_node *mux_false,
1926                                ir_node *mux_true)
1927 {
1928         ir_mode *mode;
1929
1930         /* we can handle Set for all modes and compares */
1931         if (mux_is_set(sel, mux_true, mux_false))
1932                 return true;
1933         /* SSE has own min/max operations */
1934         if (ia32_cg_config.use_sse2
1935                         && mux_is_float_min_max(sel, mux_true, mux_false))
1936                 return true;
1937         /* we can handle Mux(?, Const[f], Const[f]) */
1938         if (mux_is_float_const_const(sel, mux_true, mux_false)) {
1939 #ifdef FIRM_GRGEN_BE
1940                 /* well, some code selectors can't handle it */
1941                 if (be_transformer != TRANSFORMER_PBQP
1942                                 || be_transformer != TRANSFORMER_RAND)
1943                         return true;
1944 #else
1945                 return true;
1946 #endif
1947         }
1948
1949         /* no support for 64bit inputs to cmov */
1950         mode = get_irn_mode(mux_true);
1951         if (get_mode_size_bits(mode) > 32)
1952                 return false;
1953         /* we can handle Abs for all modes and compares (except 64bit) */
1954         if (be_mux_is_abs(sel, mux_true, mux_false) != 0)
1955                 return true;
1956         /* we can't handle MuxF yet */
1957         if (mode_is_float(mode))
1958                 return false;
1959
1960         if (mux_is_doz(sel, mux_true, mux_false))
1961                 return true;
1962
1963         /* Check Cmp before the node */
1964         if (is_Cmp(sel)) {
1965                 ir_mode *cmp_mode = get_irn_mode(get_Cmp_left(sel));
1966
1967                 /* we can't handle 64bit compares */
1968                 if (get_mode_size_bits(cmp_mode) > 32)
1969                         return false;
1970
1971                 /* we can't handle float compares */
1972                 if (mode_is_float(cmp_mode))
1973                         return false;
1974         }
1975
1976         /* did we disable cmov generation? */
1977         if (!ia32_cg_config.use_cmov)
1978                 return false;
1979
1980         /* we can use a cmov */
1981         return true;
1982 }
1983
1984 static asm_constraint_flags_t ia32_parse_asm_constraint(const char **c)
1985 {
1986         (void) c;
1987
1988         /* we already added all our simple flags to the flags modifier list in
1989          * init, so this flag we don't know. */
1990         return ASM_CONSTRAINT_FLAG_INVALID;
1991 }
1992
1993 static int ia32_is_valid_clobber(const char *clobber)
1994 {
1995         return ia32_get_clobber_register(clobber) != NULL;
1996 }
1997
1998 static ir_node *ia32_create_set(ir_node *cond)
1999 {
2000         /* ia32-set function produces 8-bit results which have to be converted */
2001         ir_node *set   = ir_create_mux_set(cond, mode_Bu);
2002         ir_node *block = get_nodes_block(set);
2003         return new_r_Conv(block, set, mode_Iu);
2004 }
2005
2006 static void ia32_lower_for_target(void)
2007 {
2008         size_t i, n_irgs = get_irp_n_irgs();
2009         lower_mode_b_config_t lower_mode_b_config = {
2010                 mode_Iu,  /* lowered mode */
2011                 ia32_create_set,
2012                 0,        /* don't lower direct compares */
2013         };
2014         lower_params_t params = {
2015                 4,                                     /* def_ptr_alignment */
2016                 LF_COMPOUND_RETURN | LF_RETURN_HIDDEN, /* flags */
2017                 ADD_HIDDEN_ALWAYS_IN_FRONT,            /* hidden_params */
2018                 NULL,                                  /* find pointer type */
2019                 NULL,                                  /* ret_compound_in_regs */
2020         };
2021
2022         /* perform doubleword lowering */
2023         lwrdw_param_t lower_dw_params = {
2024                 1,  /* little endian */
2025                 64, /* doubleword size */
2026                 ia32_create_intrinsic_fkt,
2027                 &intrinsic_env,
2028         };
2029
2030         /* lower compound param handling */
2031         lower_calls_with_compounds(&params);
2032
2033         lower_dw_ops(&lower_dw_params);
2034
2035         for (i = 0; i < n_irgs; ++i) {
2036                 ir_graph *irg = get_irp_irg(i);
2037                 /* lower for mode_b stuff */
2038                 ir_lower_mode_b(irg, &lower_mode_b_config);
2039                 /* break up switches with wide ranges */
2040                 lower_switch(irg, 256, true);
2041         }
2042 }
2043
2044 /**
2045  * Create the trampoline code.
2046  */
2047 static ir_node *ia32_create_trampoline_fkt(ir_node *block, ir_node *mem, ir_node *trampoline, ir_node *env, ir_node *callee)
2048 {
2049         ir_graph *irg  = get_irn_irg(block);
2050         ir_node  *p    = trampoline;
2051         ir_mode  *mode = get_irn_mode(p);
2052         ir_node  *st;
2053
2054         /* mov  ecx,<env> */
2055         st  = new_r_Store(block, mem, p, new_r_Const_long(irg, mode_Bu, 0xb9), cons_none);
2056         mem = new_r_Proj(st, mode_M, pn_Store_M);
2057         p   = new_r_Add(block, p, new_r_Const_long(irg, mode_Iu, 1), mode);
2058         st  = new_r_Store(block, mem, p, env, cons_none);
2059         mem = new_r_Proj(st, mode_M, pn_Store_M);
2060         p   = new_r_Add(block, p, new_r_Const_long(irg, mode_Iu, 4), mode);
2061         /* jmp  <callee> */
2062         st  = new_r_Store(block, mem, p, new_r_Const_long(irg, mode_Bu, 0xe9), cons_none);
2063         mem = new_r_Proj(st, mode_M, pn_Store_M);
2064         p   = new_r_Add(block, p, new_r_Const_long(irg, mode_Iu, 1), mode);
2065         st  = new_r_Store(block, mem, p, callee, cons_none);
2066         mem = new_r_Proj(st, mode_M, pn_Store_M);
2067         p   = new_r_Add(block, p, new_r_Const_long(irg, mode_Iu, 4), mode);
2068
2069         return mem;
2070 }
2071
2072 /**
2073  * Returns the libFirm configuration parameter for this backend.
2074  */
2075 static const backend_params *ia32_get_libfirm_params(void)
2076 {
2077         static const ir_settings_arch_dep_t ad = {
2078                 1,                   /* also use subs */
2079                 4,                   /* maximum shifts */
2080                 63,                  /* maximum shift amount */
2081                 ia32_evaluate_insn,  /* evaluate the instruction sequence */
2082
2083                 1,  /* allow Mulhs */
2084                 1,  /* allow Mulus */
2085                 32, /* Mulh allowed up to 32 bit */
2086         };
2087         static backend_params p = {
2088                 1,     /* support inline assembly */
2089                 1,     /* support Rotl nodes */
2090                 0,     /* little endian */
2091                 NULL,  /* will be set later */
2092                 ia32_is_mux_allowed,
2093                 NULL,  /* float arithmetic mode, will be set below */
2094                 12,    /* size of trampoline code */
2095                 4,     /* alignment of trampoline code */
2096                 ia32_create_trampoline_fkt,
2097                 4      /* alignment of stack parameter */
2098         };
2099
2100         ia32_setup_cg_config();
2101
2102         /* doesn't really belong here, but this is the earliest place the backend
2103          * is called... */
2104         init_asm_constraints();
2105
2106         p.dep_param    = &ad;
2107         if (! ia32_cg_config.use_sse2)
2108                 p.mode_float_arithmetic = mode_E;
2109         return &p;
2110 }
2111
2112 static const lc_opt_enum_int_items_t gas_items[] = {
2113         { "elf",   OBJECT_FILE_FORMAT_ELF    },
2114         { "mingw", OBJECT_FILE_FORMAT_COFF   },
2115         { "macho", OBJECT_FILE_FORMAT_MACH_O },
2116         { NULL,    0 }
2117 };
2118
2119 static lc_opt_enum_int_var_t gas_var = {
2120         (int*) &be_gas_object_file_format, gas_items
2121 };
2122
2123 #ifdef FIRM_GRGEN_BE
2124 static const lc_opt_enum_int_items_t transformer_items[] = {
2125         { "default", TRANSFORMER_DEFAULT },
2126         { "pbqp",    TRANSFORMER_PBQP    },
2127         { "random",  TRANSFORMER_RAND    },
2128         { NULL,      0                   }
2129 };
2130
2131 static lc_opt_enum_int_var_t transformer_var = {
2132         (int*)&be_transformer, transformer_items
2133 };
2134 #endif
2135
2136 static const lc_opt_table_entry_t ia32_options[] = {
2137         LC_OPT_ENT_ENUM_INT("gasmode", "set the GAS compatibility mode", &gas_var),
2138 #ifdef FIRM_GRGEN_BE
2139         LC_OPT_ENT_ENUM_INT("transformer", "the transformer used for code selection", &transformer_var),
2140 #endif
2141         LC_OPT_ENT_INT ("stackalign", "set power of two stack alignment for calls",
2142                         &ia32_isa_template.base.stack_alignment),
2143         LC_OPT_ENT_BOOL("gprof",      "create gprof profiling code",                                    &gprof),
2144         LC_OPT_LAST
2145 };
2146
2147 const arch_isa_if_t ia32_isa_if = {
2148         ia32_init,
2149         ia32_lower_for_target,
2150         ia32_done,
2151         ia32_handle_intrinsics,
2152         ia32_get_reg_class_for_mode,
2153         ia32_get_call_abi,
2154         ia32_get_reg_class_alignment,
2155         ia32_get_libfirm_params,
2156         ia32_get_irg_list,
2157         ia32_mark_remat,
2158         ia32_parse_asm_constraint,
2159         ia32_is_valid_clobber,
2160
2161         ia32_init_graph,
2162         ia32_get_pic_base,   /* return node used as base in pic code addresses */
2163         ia32_before_abi,     /* before abi introduce hook */
2164         ia32_prepare_graph,
2165         ia32_before_ra,      /* before register allocation hook */
2166         ia32_after_ra,       /* after register allocation hook */
2167         ia32_finish,         /* called before codegen */
2168         ia32_emit,           /* emit && done */
2169 };
2170
2171 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_arch_ia32)
2172 void be_init_arch_ia32(void)
2173 {
2174         lc_opt_entry_t *be_grp   = lc_opt_get_grp(firm_opt_get_root(), "be");
2175         lc_opt_entry_t *ia32_grp = lc_opt_get_grp(be_grp, "ia32");
2176
2177         lc_opt_add_table(ia32_grp, ia32_options);
2178         be_register_isa_if("ia32", &ia32_isa_if);
2179
2180         FIRM_DBG_REGISTER(dbg, "firm.be.ia32.cg");
2181
2182         ia32_init_emitter();
2183         ia32_init_finish();
2184         ia32_init_optimize();
2185         ia32_init_transform();
2186         ia32_init_x87();
2187         ia32_init_architecture();
2188 }