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