ia32_transform_sub_to_neg_add() now can handle mode_T.
[libfirm] / ir / be / ia32 / ia32_map_regs.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       Register param constraints and some other register handling tools.
23  * @author      Christian Wuerdig
24  * @version     $Id$
25  */
26 #include "config.h"
27
28 #include <stdlib.h>
29
30 #include "pmap.h"
31 #include "error.h"
32
33 #include "ia32_map_regs.h"
34 #include "ia32_new_nodes.h"
35 #include "ia32_architecture.h"
36 #include "gen_ia32_regalloc_if.h"
37 #include "bearch_ia32_t.h"
38
39 #define MAXNUM_GPREG_ARGS     3
40 #define MAXNUM_SSE_ARGS       8
41
42 /* this is the order of the assigned registers used for parameter passing */
43
44 static const arch_register_t *gpreg_param_reg_fastcall[] = {
45         &ia32_gp_regs[REG_ECX],
46         &ia32_gp_regs[REG_EDX],
47         NULL
48 };
49
50 static const arch_register_t *gpreg_param_reg_regparam[] = {
51         &ia32_gp_regs[REG_EAX],
52         &ia32_gp_regs[REG_EDX],
53         &ia32_gp_regs[REG_ECX]
54 };
55
56 static const arch_register_t *gpreg_param_reg_this[] = {
57         &ia32_gp_regs[REG_ECX],
58         NULL,
59         NULL
60 };
61
62 static const arch_register_t *fpreg_sse_param_reg_std[] = {
63         &ia32_xmm_regs[REG_XMM0],
64         &ia32_xmm_regs[REG_XMM1],
65         &ia32_xmm_regs[REG_XMM2],
66         &ia32_xmm_regs[REG_XMM3],
67         &ia32_xmm_regs[REG_XMM4],
68         &ia32_xmm_regs[REG_XMM5],
69         &ia32_xmm_regs[REG_XMM6],
70         &ia32_xmm_regs[REG_XMM7]
71 };
72
73 static const arch_register_t *fpreg_sse_param_reg_this[] = {
74         NULL,  /* in case of a "this" pointer, the first parameter must not be a float */
75 };
76
77
78 /* Mapping to store registers in firm nodes */
79
80 struct ia32_irn_reg_assoc {
81         const ir_node *irn;
82         const arch_register_t *reg;
83 };
84
85 int ia32_cmp_irn_reg_assoc(const void *a, const void *b, size_t len) {
86         const struct ia32_irn_reg_assoc *x = a;
87         const struct ia32_irn_reg_assoc *y = b;
88         (void) len;
89
90         return x->irn != y->irn;
91 }
92
93 static struct ia32_irn_reg_assoc *get_irn_reg_assoc(const ir_node *irn, set *reg_set) {
94         struct ia32_irn_reg_assoc templ;
95         unsigned int hash;
96
97         templ.irn = irn;
98         templ.reg = NULL;
99         hash      = hash_irn(irn);
100
101         return set_insert(reg_set, &templ, sizeof(templ), hash);
102 }
103
104 void ia32_set_firm_reg(ir_node *irn, const arch_register_t *reg, set *reg_set) {
105         struct ia32_irn_reg_assoc *assoc = get_irn_reg_assoc(irn, reg_set);
106         assoc->reg = reg;
107 }
108
109 const arch_register_t *ia32_get_firm_reg(const ir_node *irn, set *reg_set) {
110         struct ia32_irn_reg_assoc *assoc = get_irn_reg_assoc(irn, reg_set);
111         return assoc->reg;
112 }
113
114 void ia32_build_16bit_reg_map(pmap *reg_map) {
115         pmap_insert(reg_map, &ia32_gp_regs[REG_EAX], "ax");
116         pmap_insert(reg_map, &ia32_gp_regs[REG_EBX], "bx");
117         pmap_insert(reg_map, &ia32_gp_regs[REG_ECX], "cx");
118         pmap_insert(reg_map, &ia32_gp_regs[REG_EDX], "dx");
119         pmap_insert(reg_map, &ia32_gp_regs[REG_ESI], "si");
120         pmap_insert(reg_map, &ia32_gp_regs[REG_EDI], "di");
121         pmap_insert(reg_map, &ia32_gp_regs[REG_EBP], "bp");
122         pmap_insert(reg_map, &ia32_gp_regs[REG_ESP], "sp");
123 }
124
125 void ia32_build_8bit_reg_map(pmap *reg_map) {
126         pmap_insert(reg_map, &ia32_gp_regs[REG_EAX], "al");
127         pmap_insert(reg_map, &ia32_gp_regs[REG_EBX], "bl");
128         pmap_insert(reg_map, &ia32_gp_regs[REG_ECX], "cl");
129         pmap_insert(reg_map, &ia32_gp_regs[REG_EDX], "dl");
130 }
131
132 void ia32_build_8bit_reg_map_high(pmap *reg_map) {
133         pmap_insert(reg_map, &ia32_gp_regs[REG_EAX], "ah");
134         pmap_insert(reg_map, &ia32_gp_regs[REG_EBX], "bh");
135         pmap_insert(reg_map, &ia32_gp_regs[REG_ECX], "ch");
136         pmap_insert(reg_map, &ia32_gp_regs[REG_EDX], "dh");
137 }
138
139 const char *ia32_get_mapped_reg_name(pmap *reg_map, const arch_register_t *reg) {
140         pmap_entry *e = pmap_find(reg_map, (void *)reg);
141
142         //assert(e && "missing map init?");
143         if (! e) {
144                 printf("FIXME: ia32map_regs.c:122: returning fake register name for ia32 with 32 register\n");
145                 return reg->name;
146         }
147
148         return e->value;
149 }
150
151 /**
152  * Returns the register for parameter nr.
153  */
154 const arch_register_t *ia32_get_RegParam_reg(unsigned cc, size_t nr,
155                                              const ir_mode *mode)
156 {
157         if (! (cc & cc_reg_param))
158                 return NULL;
159
160         if (mode_is_float(mode)) {
161                 if (!ia32_cg_config.use_sse2 || (cc & cc_fpreg_param) == 0)
162                         return NULL;
163                 if (nr >= MAXNUM_SSE_ARGS)
164                         return NULL;
165
166                 if (cc & cc_this_call) {
167                         return fpreg_sse_param_reg_this[nr];
168                 }
169                 return fpreg_sse_param_reg_std[nr];
170         } else if (mode_is_int(mode) || mode_is_reference(mode)) {
171                 unsigned num_regparam;
172
173                 if (get_mode_size_bits(mode) > 32)
174                         return NULL;
175
176                 if (nr >= MAXNUM_GPREG_ARGS)
177                         return NULL;
178
179                 if (cc & cc_this_call) {
180                         return gpreg_param_reg_this[nr];
181                 }
182                 num_regparam = cc & ~cc_bits;
183                 if (num_regparam == 0) {
184                         /* default fastcall */
185                         return gpreg_param_reg_fastcall[nr];
186                 }
187                 if (nr < num_regparam)
188                         return gpreg_param_reg_regparam[nr];
189                 return NULL;
190         }
191
192         panic("unknown argument mode");
193 }