keep it simple and stupid: cast to unsigned instead of messing around with SIZET_FMT...
[cparser] / mangle.c
index 43dfd9c..e4f1092 100644 (file)
--- a/mangle.c
+++ b/mangle.c
 #include "lang_features.h"
 #include "adt/error.h"
 
-static ident          *id_underscore;
-static ident          *id_imp;
-static symbol_t       *sym_C;
-static struct obstack  obst;
+static struct obstack obst;
 
 static void mangle_type(type_t *type);
 
@@ -73,38 +70,84 @@ static void mangle_pointer_type(const pointer_type_t *type)
        mangle_type(type->points_to);
 }
 
+static void mangle_parameters(const function_type_t *type)
+{
+       if (type->unspecified_parameters)
+               panic("can't mangle unspecified parameter types");
+       if (type->kr_style_parameters)
+               panic("can't mangle kr_style_parameters type");
+
+       const function_parameter_t *parameter = type->parameters;
+       if (parameter != NULL) {
+               for ( ; parameter != NULL; parameter = parameter->next) {
+                       mangle_type(parameter->type);
+               }
+               if (type->variadic) {
+                       obstack_1grow(&obst, 'z');
+               }
+       } else {
+               obstack_1grow(&obst, 'v');
+       }
+}
+
 static void mangle_function_type(const function_type_t *type)
 {
        obstack_1grow(&obst, 'F');
-       if (type->linkage == sym_C) {
+       if (type->linkage == LINKAGE_C) {
                obstack_1grow(&obst, 'Y');
        }
 
        mangle_type(type->return_type);
+       mangle_parameters(type);
+
+       obstack_1grow(&obst, 'E');
+}
 
-       function_parameter_t *parameter = type->parameters;
-       for ( ; parameter != NULL; parameter = parameter->next) {
-               mangle_type(parameter->type);
+static void mangle_class_enum_type(const entity_base_t *ent)
+{
+       const symbol_t *sym = ent->symbol;
+       if (sym != NULL) {
+               const char *name = sym->string;
+               obstack_printf(&obst, "%u%s", (unsigned) strlen(name), name);
+       } else {
+               /* TODO need the first typedef name here */
+               panic("mangling of unnamed class/enum types not implemented yet");
        }
-       if (type->variadic) {
-               obstack_1grow(&obst, 'z');
+}
+
+static void mangle_array_type(const array_type_t *type)
+{
+       if (type->is_vla) {
+               obstack_1grow(&obst, 'A');
+               obstack_1grow(&obst, '_');
+       } else if (type->size_constant) {
+               obstack_printf(&obst, "A%u_", (unsigned) type->size);
+       } else {
+               panic("mangling of non-constant sized array types not implemented yet");
        }
-       if (type->unspecified_parameters)
-               panic("can't mangle unspecified parameter types");
-       if (type->kr_style_parameters)
-               panic("can't mangle kr_style_parameters type");
+       mangle_type(type->element_type);
+}
 
-       obstack_1grow(&obst, 'E');
+static void mangle_complex_type(const complex_type_t *type)
+{
+       obstack_1grow(&obst, 'C');
+       obstack_1grow(&obst, get_atomic_type_mangle(type->akind));
+}
+
+static void mangle_imaginary_type(const imaginary_type_t *type)
+{
+       obstack_1grow(&obst, 'G');
+       obstack_1grow(&obst, get_atomic_type_mangle(type->akind));
 }
 
 static void mangle_qualifiers(type_qualifiers_t qualifiers)
 {
-       if (qualifiers & TYPE_QUALIFIER_CONST)
-               obstack_1grow(&obst, 'K');
-       if (qualifiers & TYPE_QUALIFIER_VOLATILE)
-               obstack_1grow(&obst, 'V');
        if (qualifiers & TYPE_QUALIFIER_RESTRICT)
                obstack_1grow(&obst, 'r');
+       if (qualifiers & TYPE_QUALIFIER_VOLATILE)
+               obstack_1grow(&obst, 'V');
+       if (qualifiers & TYPE_QUALIFIER_CONST)
+               obstack_1grow(&obst, 'K');
 
        /* handle MS extended qualifiers? */
 }
@@ -125,6 +168,22 @@ static void mangle_type(type_t *orig_type)
        case TYPE_FUNCTION:
                mangle_function_type(&type->function);
                return;
+       case TYPE_COMPOUND_STRUCT:
+       case TYPE_COMPOUND_UNION:
+               mangle_class_enum_type(&type->compound.compound->base);
+               return;
+       case TYPE_ENUM:
+               mangle_class_enum_type(&type->enumt.enume->base);
+               return;
+       case TYPE_ARRAY:
+               mangle_array_type(&type->array);
+               return;
+       case TYPE_COMPLEX:
+               mangle_complex_type(&type->complex);
+               return;
+       case TYPE_IMAGINARY:
+               mangle_imaginary_type(&type->imaginary);
+               return;
        case TYPE_INVALID:
                panic("invalid type encountered while mangling");
        case TYPE_ERROR:
@@ -135,12 +194,6 @@ static void mangle_type(type_t *orig_type)
                panic("typeref not resolved while manging?!?");
 
        case TYPE_BITFIELD:
-       case TYPE_COMPLEX:
-       case TYPE_IMAGINARY:
-       case TYPE_COMPOUND_STRUCT:
-       case TYPE_COMPOUND_UNION:
-       case TYPE_ENUM:
-       case TYPE_ARRAY:
                panic("no mangling for this type implemented yet");
                break;
        }
@@ -154,14 +207,23 @@ static void mangle_entity(entity_t *entity)
 
        /* TODO: mangle scope */
 
-       symbol_t *symbol = entity->base.symbol;
-       obstack_printf(&obst, "%u%s", strlen(symbol->string), symbol->string);
+       const char *name = entity->base.symbol->string;
+       obstack_printf(&obst, "%u%s", (unsigned) strlen(name), name);
 
        if (entity->kind == ENTITY_FUNCTION) {
-               mangle_type(entity->declaration.type);
+               mangle_parameters(&entity->declaration.type->function);
        }
 }
 
+static ident *make_id_from_obst(void)
+{
+       size_t  size = obstack_object_size(&obst);
+       char   *str  = obstack_finish(&obst);
+       ident  *id   = new_id_from_chars(str, size);
+       obstack_free(&obst, str);
+       return id;
+}
+
 /**
  * Mangles an entity linker (ld) name for win32 usage.
  *
@@ -191,10 +253,17 @@ ident *create_name_win32(entity_t *entity)
                        default:          panic("unhandled calling convention");
                }
 
-               if (c_mode & _CXX && entity->declaration.type->function.linkage == NULL) {
-                       mangle_entity(entity);
-               } else {
-                       obstack_printf(o, "%s", entity->base.symbol->string);
+               switch (entity->declaration.type->function.linkage) {
+                       case LINKAGE_INVALID:
+                               break;
+
+                       case LINKAGE_C:
+                               obstack_printf(o, "%s", entity->base.symbol->string);
+                               break;
+
+                       case LINKAGE_CXX:
+                               mangle_entity(entity);
+                               break;
                }
 
                /* calling convention suffix */
@@ -205,12 +274,12 @@ ident *create_name_win32(entity_t *entity)
 
                        case CC_STDCALL:
                        case CC_FASTCALL: {
-                               ir_type *irtype = get_ir_type(entity->declaration.type);
-                               size_t   size   = 0;
+                               ir_type  *irtype = get_ir_type(entity->declaration.type);
+                               unsigned size    = 0;
                                for (int i = get_method_n_params(irtype) - 1; i >= 0; --i) {
                                        size += get_type_size_bytes(get_method_param_type(irtype, i));
                                }
-                               obstack_printf(o, "@%zu\n", size);
+                               obstack_printf(o, "@%u", size);
                                break;
                        }
 
@@ -221,11 +290,7 @@ ident *create_name_win32(entity_t *entity)
                obstack_printf(o, "_%s", entity->base.symbol->string);
        }
 
-       size_t  size = obstack_object_size(o);
-       char   *str  = obstack_finish(o);
-       ident  *id   = new_id_from_chars(str, size);
-       obstack_free(o, str);
-       return id;
+       return make_id_from_obst();
 }
 
 /**
@@ -238,26 +303,17 @@ ident *create_name_linux_elf(entity_t *entity)
 {
        bool needs_mangling = false;
 
-       if (entity->kind == ENTITY_FUNCTION && (c_mode & _CXX)) {
-               symbol_t *linkage = entity->declaration.type->function.linkage;
-
-               if (linkage == NULL) {
-                       needs_mangling = true;
-               } else if (linkage != sym_C) {
-                       errorf(&entity->base.source_position,
-                              "Unknown linkage type \"%Y\" found\n", linkage);
+       if (entity->kind == ENTITY_FUNCTION) {
+               switch (entity->declaration.type->function.linkage) {
+                       case LINKAGE_INVALID: break;
+                       case LINKAGE_C:       break;
+                       case LINKAGE_CXX:     needs_mangling = true; break;
                }
        }
 
        if (needs_mangling) {
                mangle_entity(entity);
-               obstack_1grow(&obst, '\0');
-               char *str = obstack_finish(&obst);
-
-               ident *id = new_id_from_str(str);
-               obstack_free(&obst, str);
-
-               return id;
+               return make_id_from_obst();
        }
 
        return new_id_from_str(entity->base.symbol->string);
@@ -271,16 +327,12 @@ ident *create_name_linux_elf(entity_t *entity)
  */
 ident *create_name_macho(entity_t *entity)
 {
-       ident *id = new_id_from_str(entity->base.symbol->string);
-       return id_mangle(id_underscore, id);
+       obstack_printf(&obst, "_%s", entity->base.symbol->string);
+       return make_id_from_obst();
 }
 
 void init_mangle(void)
 {
-       id_underscore = new_id_from_chars("_", 1);
-       id_imp        = new_id_from_chars("__imp_", 6);
-       sym_C         = symbol_table_insert("C");
-
        obstack_init(&obst);
 }