Partially implement mangling of enum types.
[cparser] / mangle.c
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2007-2008 Matthias Braun <matze@braunis.de>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18  * 02111-1307, USA.
19  */
20 #include <config.h>
21
22 #include <libfirm/firm.h>
23 #include <string.h>
24
25 #include "entity_t.h"
26 #include "type_t.h"
27 #include "symbol_t.h"
28 #include "mangle.h"
29 #include "diagnostic.h"
30 #include "ast2firm.h"
31 #include "lang_features.h"
32 #include "adt/error.h"
33
34 static struct obstack obst;
35
36 static void mangle_type(type_t *type);
37
38 static char get_atomic_type_mangle(atomic_type_kind_t kind)
39 {
40         switch (kind) {
41         case ATOMIC_TYPE_INVALID: break;
42         case ATOMIC_TYPE_VOID:        return 'v';
43         case ATOMIC_TYPE_BOOL:        return 'b';
44         case ATOMIC_TYPE_CHAR:        return 'c';
45         case ATOMIC_TYPE_SCHAR:       return 'a';
46         case ATOMIC_TYPE_UCHAR:       return 'h';
47         case ATOMIC_TYPE_INT:         return 'i';
48         case ATOMIC_TYPE_UINT:        return 'j';
49         case ATOMIC_TYPE_SHORT:       return 's';
50         case ATOMIC_TYPE_USHORT:      return 't';
51         case ATOMIC_TYPE_LONG:        return 'l';
52         case ATOMIC_TYPE_ULONG:       return 'm';
53         case ATOMIC_TYPE_LONGLONG:    return 'x';
54         case ATOMIC_TYPE_ULONGLONG:   return 'y';
55         case ATOMIC_TYPE_LONG_DOUBLE: return 'e';
56         case ATOMIC_TYPE_FLOAT:       return 'f';
57         case ATOMIC_TYPE_DOUBLE:      return 'd';
58         }
59         panic("invalid atomic type in mangler");
60 }
61
62 static void mangle_atomic_type(const atomic_type_t *type)
63 {
64         obstack_1grow(&obst, get_atomic_type_mangle(type->akind));
65 }
66
67 static void mangle_pointer_type(const pointer_type_t *type)
68 {
69         obstack_1grow(&obst, 'P');
70         mangle_type(type->points_to);
71 }
72
73 static void mangle_parameters(const function_type_t *type)
74 {
75         if (type->unspecified_parameters)
76                 panic("can't mangle unspecified parameter types");
77         if (type->kr_style_parameters)
78                 panic("can't mangle kr_style_parameters type");
79
80         const function_parameter_t *parameter = type->parameters;
81         if (parameter != NULL) {
82                 for ( ; parameter != NULL; parameter = parameter->next) {
83                         mangle_type(parameter->type);
84                 }
85                 if (type->variadic) {
86                         obstack_1grow(&obst, 'z');
87                 }
88         } else {
89                 obstack_1grow(&obst, 'v');
90         }
91 }
92
93 static void mangle_function_type(const function_type_t *type)
94 {
95         obstack_1grow(&obst, 'F');
96         if (type->linkage == LINKAGE_C) {
97                 obstack_1grow(&obst, 'Y');
98         }
99
100         mangle_type(type->return_type);
101         mangle_parameters(type);
102
103         obstack_1grow(&obst, 'E');
104 }
105
106 static void mangle_class_enum_type(const entity_base_t *ent)
107 {
108         const symbol_t *sym = ent->symbol;
109         if (sym != NULL) {
110                 const char *name = sym->string;
111                 obstack_printf(&obst, "%zu%s", strlen(name), name);
112         } else {
113                 /* TODO need the first typedef name here */
114                 panic("mangling of unnamed compound types not implemented yet");
115         }
116 }
117
118 static void mangle_qualifiers(type_qualifiers_t qualifiers)
119 {
120         if (qualifiers & TYPE_QUALIFIER_RESTRICT)
121                 obstack_1grow(&obst, 'r');
122         if (qualifiers & TYPE_QUALIFIER_VOLATILE)
123                 obstack_1grow(&obst, 'V');
124         if (qualifiers & TYPE_QUALIFIER_CONST)
125                 obstack_1grow(&obst, 'K');
126
127         /* handle MS extended qualifiers? */
128 }
129
130 static void mangle_type(type_t *orig_type)
131 {
132         type_t *type = skip_typeref(orig_type);
133
134         mangle_qualifiers(type->base.qualifiers);
135
136         switch (type->kind) {
137         case TYPE_ATOMIC:
138                 mangle_atomic_type(&type->atomic);
139                 return;
140         case TYPE_POINTER:
141                 mangle_pointer_type(&type->pointer);
142                 return;
143         case TYPE_FUNCTION:
144                 mangle_function_type(&type->function);
145                 return;
146         case TYPE_COMPOUND_STRUCT:
147         case TYPE_COMPOUND_UNION:
148                 mangle_class_enum_type(&type->compound.compound->base);
149                 return;
150         case TYPE_ENUM:
151                 mangle_class_enum_type(&type->enumt.enume->base);
152                 return;
153         case TYPE_INVALID:
154                 panic("invalid type encountered while mangling");
155         case TYPE_ERROR:
156                 panic("error type encountered while mangling");
157         case TYPE_BUILTIN:
158         case TYPE_TYPEDEF:
159         case TYPE_TYPEOF:
160                 panic("typeref not resolved while manging?!?");
161
162         case TYPE_BITFIELD:
163         case TYPE_COMPLEX:
164         case TYPE_IMAGINARY:
165         case TYPE_ARRAY:
166                 panic("no mangling for this type implemented yet");
167                 break;
168         }
169         panic("invalid type encountered while mangling");
170 }
171
172 static void mangle_entity(entity_t *entity)
173 {
174         obstack_1grow(&obst, '_');
175         obstack_1grow(&obst, 'Z');
176
177         /* TODO: mangle scope */
178
179         const char *name = entity->base.symbol->string;
180         obstack_printf(&obst, "%zu%s", strlen(name), name);
181
182         if (entity->kind == ENTITY_FUNCTION) {
183                 mangle_parameters(&entity->declaration.type->function);
184         }
185 }
186
187 static ident *make_id_from_obst(void)
188 {
189         size_t  size = obstack_object_size(&obst);
190         char   *str  = obstack_finish(&obst);
191         ident  *id   = new_id_from_chars(str, size);
192         obstack_free(&obst, str);
193         return id;
194 }
195
196 /**
197  * Mangles an entity linker (ld) name for win32 usage.
198  *
199  * @param ent          the entity to be mangled
200  * @param declaration  the declaration
201  */
202 ident *create_name_win32(entity_t *entity)
203 {
204         struct obstack *o = &obst;
205
206         assert(is_declaration(entity));
207
208         if (entity->declaration.modifiers & DM_DLLIMPORT) {
209                 /* add prefix for imported symbols */
210                 obstack_printf(o, "__imp_");
211         }
212
213         if (entity->kind == ENTITY_FUNCTION) {
214                 cc_kind_t cc = entity->declaration.type->function.calling_convention;
215
216                 /* calling convention prefix */
217                 switch (cc) {
218                         case CC_DEFAULT:
219                         case CC_CDECL:
220                         case CC_STDCALL:  obstack_1grow(o, '_'); break;
221                         case CC_FASTCALL: obstack_1grow(o, '@'); break;
222                         default:          panic("unhandled calling convention");
223                 }
224
225                 switch (entity->declaration.type->function.linkage) {
226                         case LINKAGE_INVALID:
227                                 break;
228
229                         case LINKAGE_C:
230                                 obstack_printf(o, "%s", entity->base.symbol->string);
231                                 break;
232
233                         case LINKAGE_CXX:
234                                 mangle_entity(entity);
235                                 break;
236                 }
237
238                 /* calling convention suffix */
239                 switch (cc) {
240                         case CC_DEFAULT:
241                         case CC_CDECL:
242                                 break;
243
244                         case CC_STDCALL:
245                         case CC_FASTCALL: {
246                                 ir_type *irtype = get_ir_type(entity->declaration.type);
247                                 size_t   size   = 0;
248                                 for (int i = get_method_n_params(irtype) - 1; i >= 0; --i) {
249                                         size += get_type_size_bytes(get_method_param_type(irtype, i));
250                                 }
251                                 obstack_printf(o, "@%zu", size);
252                                 break;
253                         }
254
255                         default:
256                                 panic("unhandled calling convention");
257                 }
258         } else {
259                 obstack_printf(o, "_%s", entity->base.symbol->string);
260         }
261
262         return make_id_from_obst();
263 }
264
265 /**
266  * Mangles an entity linker (ld) name for Linux ELF usage.
267  *
268  * @param ent          the entity to be mangled
269  * @param declaration  the declaration
270  */
271 ident *create_name_linux_elf(entity_t *entity)
272 {
273         bool needs_mangling = false;
274
275         if (entity->kind == ENTITY_FUNCTION) {
276                 switch (entity->declaration.type->function.linkage) {
277                         case LINKAGE_INVALID: break;
278                         case LINKAGE_C:       break;
279                         case LINKAGE_CXX:     needs_mangling = true; break;
280                 }
281         }
282
283         if (needs_mangling) {
284                 mangle_entity(entity);
285                 return make_id_from_obst();
286         }
287
288         return new_id_from_str(entity->base.symbol->string);
289 }
290
291 /**
292  * Mangles an entity linker (ld) name for Mach-O usage.
293  *
294  * @param ent          the entity to be mangled
295  * @param declaration  the declaration
296  */
297 ident *create_name_macho(entity_t *entity)
298 {
299         obstack_printf(&obst, "_%s", entity->base.symbol->string);
300         return make_id_from_obst();
301 }
302
303 void init_mangle(void)
304 {
305         obstack_init(&obst);
306 }
307
308 void exit_mangle(void)
309 {
310         obstack_free(&obst, NULL);
311 }