sparc: split128 bit float loads into 2x64bit load
[libfirm] / ir / be / bedwarf.c
index 12a86d8..4026f51 100644 (file)
@@ -63,10 +63,25 @@ static int debug_level = LEVEL_NONE;
  * here
  */
 typedef enum custom_abbrevs {
-       abbrev_void_pointer_type = 100,
+       abbrev_void_subprogram,
+       abbrev_subprogram,
+       abbrev_formal_parameter,
        abbrev_unnamed_formal_parameter,
-       abbrev_void_subroutine_type,
+       abbrev_formal_parameter_no_location,
+       abbrev_variable,
+       abbrev_compile_unit,
+       abbrev_base_type,
+       abbrev_pointer_type,
+       abbrev_void_pointer_type,
+       abbrev_array_type,
+       abbrev_subrange_type,
+       abbrev_structure_type,
+       abbrev_union_type,
+       abbrev_class_type,
+       abbrev_member,
        abbrev_bitfield_member,
+       abbrev_subroutine_type,
+       abbrev_void_subroutine_type,
 } custom_abbrevs;
 
 /**
@@ -74,7 +89,6 @@ typedef enum custom_abbrevs {
  */
 typedef struct dwarf_t {
        const ir_entity         *cur_ent;     /**< current method entity */
-       const be_stack_layout_t *layout;      /**< current stack layout */
        unsigned                 next_type_nr; /**< next type number */
        pmap                    *file_map;    /**< a map from file names to number in file list */
        const char             **file_list;
@@ -89,18 +103,19 @@ typedef struct dwarf_t {
 static dwarf_t env;
 
 static dwarf_source_language language;
-static const char           *comp_dir;
+static char                 *comp_dir;
 
 static unsigned insert_file(const char *filename)
 {
        unsigned num;
-       void    *entry = pmap_get(env.file_map, filename);
+       void    *entry = pmap_get(void, env.file_map, filename);
        if (entry != NULL) {
                return PTR_TO_INT(entry);
        }
        ARR_APP1(const char*, env.file_list, filename);
        num = (unsigned)ARR_LEN(env.file_list);
        pmap_insert(env.file_map, filename, INT_TO_PTR(num));
+
        /* TODO: quote chars in string */
        be_emit_irprintf("\t.file %u \"%s\"\n", num, filename);
        return num;
@@ -140,8 +155,25 @@ static unsigned get_uleb128_size(unsigned value)
        return size;
 }
 
+static void emit_sleb128(long value)
+{
+       be_emit_irprintf("\t.sleb128 %ld\n", value);
+       be_emit_write_line();
+}
+
+static unsigned get_sleb128_size(long value)
+{
+       unsigned size = 0;
+       do {
+               value >>= 7;
+               size += 1;
+       } while (value != 0 && value != -1);
+       return size;
+}
+
 static void emit_string(const char *string)
 {
+       /* TODO: quote special chars */
        be_emit_irprintf("\t.asciz \"%s\"\n", string);
        be_emit_write_line();
 }
@@ -201,7 +233,8 @@ static void register_attribute(dwarf_attribute attribute, dwarf_form form)
        emit_uleb128(form);
 }
 
-static void begin_abbrev(unsigned code, dwarf_tag tag, dw_children children)
+static void begin_abbrev(custom_abbrevs code, dwarf_tag tag,
+                         dw_children children)
 {
        emit_uleb128(code);
        emit_uleb128(tag);
@@ -307,11 +340,37 @@ void be_dwarf_location(dbg_info *dbgi)
        be_emit_write_line();
 }
 
+void be_dwarf_callframe_register(const arch_register_t *reg)
+{
+       if (debug_level < LEVEL_FRAMEINFO)
+               return;
+       be_emit_cstring("\t.cfi_def_cfa_register ");
+       be_emit_irprintf("%d\n", reg->dwarf_number);
+       be_emit_write_line();
+}
+
+void be_dwarf_callframe_offset(int offset)
+{
+       if (debug_level < LEVEL_FRAMEINFO)
+               return;
+       be_emit_cstring("\t.cfi_def_cfa_offset ");
+       be_emit_irprintf("%d\n", offset);
+       be_emit_write_line();
+}
+
+void be_dwarf_callframe_spilloffset(const arch_register_t *reg, int offset)
+{
+       if (debug_level < LEVEL_FRAMEINFO)
+               return;
+       be_emit_cstring("\t.cfi_offset ");
+       be_emit_irprintf("%d, %d\n", reg->dwarf_number, offset);
+       be_emit_write_line();
+}
+
 static bool is_extern_entity(const ir_entity *entity)
 {
        ir_visited_t visibility = get_entity_visibility(entity);
-       return visibility == ir_visibility_default
-           || visibility == ir_visibility_external;
+       return visibility == ir_visibility_external;
 }
 
 static void emit_entity_label(const ir_entity *entity)
@@ -337,38 +396,144 @@ static void emit_dbginfo(const dbg_info *dbgi)
        emit_uleb128(loc.column);
 }
 
+static void emit_type_address(const ir_type *type)
+{
+       be_emit_irprintf("\t.long %sT%ld - %sinfo_begin\n",
+                        be_gas_get_private_prefix(),
+                        get_type_nr(type), be_gas_get_private_prefix());
+       be_emit_write_line();
+}
+
 static void emit_subprogram_abbrev(void)
 {
-       begin_abbrev(DW_TAG_subprogram, DW_TAG_subprogram, DW_CHILDREN_no);
+       begin_abbrev(abbrev_subprogram, DW_TAG_subprogram, DW_CHILDREN_yes);
        register_attribute(DW_AT_name,      DW_FORM_string);
        register_dbginfo_attributes();
+       register_attribute(DW_AT_type,       DW_FORM_ref4);
+       register_attribute(DW_AT_external,   DW_FORM_flag);
+       register_attribute(DW_AT_low_pc,     DW_FORM_addr);
+       register_attribute(DW_AT_high_pc,    DW_FORM_addr);
        //register_attribute(DW_AT_prototyped, DW_FORM_flag);
-       //register_attribute(DW_AT_type,       DW_FORM_ref4);
-       register_attribute(DW_AT_external,  DW_FORM_flag);
-       register_attribute(DW_AT_low_pc,    DW_FORM_addr);
-       register_attribute(DW_AT_high_pc,   DW_FORM_addr);
-       //register_attribute(DW_AT_frame_base, DW_FORM_block1);
+       if (debug_level >= LEVEL_FRAMEINFO)
+               register_attribute(DW_AT_frame_base, DW_FORM_block1);
+       end_abbrev();
+
+       begin_abbrev(abbrev_void_subprogram, DW_TAG_subprogram, DW_CHILDREN_yes);
+       register_attribute(DW_AT_name,       DW_FORM_string);
+       register_dbginfo_attributes();
+       register_attribute(DW_AT_external,   DW_FORM_flag);
+       register_attribute(DW_AT_low_pc,     DW_FORM_addr);
+       register_attribute(DW_AT_high_pc,    DW_FORM_addr);
+       //register_attribute(DW_AT_prototyped, DW_FORM_flag);
+       if (debug_level >= LEVEL_FRAMEINFO)
+               register_attribute(DW_AT_frame_base, DW_FORM_block1);
+       end_abbrev();
+
+       begin_abbrev(abbrev_formal_parameter, DW_TAG_formal_parameter,
+                    DW_CHILDREN_no);
+       register_attribute(DW_AT_name,      DW_FORM_string);
+       register_dbginfo_attributes();
+       register_attribute(DW_AT_type,      DW_FORM_ref4);
+       register_attribute(DW_AT_location,  DW_FORM_block1);
+       end_abbrev();
+
+       begin_abbrev(abbrev_formal_parameter_no_location, DW_TAG_formal_parameter,
+                    DW_CHILDREN_no);
+       register_attribute(DW_AT_name,      DW_FORM_string);
+       register_dbginfo_attributes();
+       register_attribute(DW_AT_type,      DW_FORM_ref4);
        end_abbrev();
 }
 
-void be_dwarf_method_begin(const ir_entity *entity)
+static void emit_type(ir_type *type);
+
+static void emit_stack_location(long offset)
+{
+       unsigned size = 1 + get_sleb128_size(offset);
+       emit_int8(size);
+       emit_int8(DW_OP_fbreg);
+       emit_sleb128(offset);
+}
+
+static void emit_function_parameters(const ir_entity *entity,
+                                     const parameter_dbg_info_t *infos)
+{
+       ir_type  *type     = get_entity_type(entity);
+       size_t    n_params = get_method_n_params(type);
+       dbg_info *dbgi     = get_entity_dbg_info(entity);
+       size_t    i;
+       for (i = 0; i < n_params; ++i) {
+               ir_type *param_type = get_method_param_type(type, i);
+
+               if (infos != NULL && infos[i].entity != NULL) {
+                       long const offset = get_entity_offset(infos[i].entity);
+                       emit_uleb128(abbrev_formal_parameter);
+                       emit_string_printf("arg%u", (unsigned)i);
+                       emit_dbginfo(dbgi);
+                       emit_type_address(param_type);
+                       emit_stack_location(offset);
+               } else {
+                       emit_uleb128(abbrev_formal_parameter_no_location);
+                       emit_string_printf("arg%u", (unsigned)i);
+                       emit_dbginfo(dbgi);
+                       emit_type_address(param_type);
+               }
+       }
+}
+
+void be_dwarf_method_before(const ir_entity *entity,
+                            const parameter_dbg_info_t *parameter_infos)
 {
        if (debug_level < LEVEL_BASIC)
                return;
+       {
+       ir_type *type     = get_entity_type(entity);
+       size_t   n_ress   = get_method_n_ress(type);
+       size_t   n_params = get_method_n_params(type);
+       size_t   i;
+
        be_gas_emit_switch_section(GAS_SECTION_DEBUG_INFO);
 
+       if (n_ress > 0) {
+               ir_type *res = get_method_res_type(type, 0);
+               emit_type(res);
+       }
+       for (i = 0; i < n_params; ++i) {
+               ir_type *param_type = get_method_param_type(type, i);
+               emit_type(param_type);
+       }
+
        emit_entity_label(entity);
-       emit_uleb128(DW_TAG_subprogram);
+       emit_uleb128(n_ress == 0 ? abbrev_void_subprogram : abbrev_subprogram);
        emit_string(get_entity_ld_name(entity));
        emit_dbginfo(get_entity_dbg_info(entity));
+       if (n_ress > 0) {
+               ir_type *res = get_method_res_type(type, 0);
+               emit_type_address(res);
+       }
        emit_int8(is_extern_entity(entity));
        emit_ref(entity);
        be_emit_irprintf("\t.long %smethod_end_%s\n", be_gas_get_private_prefix(),
                         get_entity_ld_name(entity));
+       /* frame_base prog */
+       emit_int8(1);
+       emit_int8(DW_OP_call_frame_cfa);
+
+       emit_function_parameters(entity, parameter_infos);
+       emit_int8(0);
 
        ARR_APP1(const ir_entity*, env.pubnames_list, entity);
 
        env.cur_ent = entity;
+       }
+}
+
+void be_dwarf_method_begin(void)
+{
+       if (debug_level < LEVEL_FRAMEINFO)
+               return;
+       be_emit_cstring("\t.cfi_startproc\n");
+       be_emit_write_line();
 }
 
 void be_dwarf_method_end(void)
@@ -378,13 +543,16 @@ void be_dwarf_method_end(void)
        const ir_entity *entity = env.cur_ent;
        be_emit_irprintf("%smethod_end_%s:\n", be_gas_get_private_prefix(),
                         get_entity_ld_name(entity));
-}
 
-static void emit_type(ir_type *type);
+       if (debug_level >= LEVEL_FRAMEINFO) {
+               be_emit_cstring("\t.cfi_endproc\n");
+               be_emit_write_line();
+       }
+}
 
 static void emit_base_type_abbrev(void)
 {
-       begin_abbrev(DW_TAG_base_type, DW_TAG_base_type, DW_CHILDREN_no);
+       begin_abbrev(abbrev_base_type, DW_TAG_base_type, DW_CHILDREN_no);
        register_attribute(DW_AT_encoding,  DW_FORM_data1);
        register_attribute(DW_AT_byte_size, DW_FORM_data1);
        register_attribute(DW_AT_name,      DW_FORM_string);
@@ -397,14 +565,6 @@ static void emit_type_label(const ir_type *type)
        be_emit_write_line();
 }
 
-static void emit_type_address(const ir_type *type)
-{
-       be_emit_irprintf("\t.long %sT%ld - %sinfo_begin\n",
-                        be_gas_get_private_prefix(),
-                        get_type_nr(type), be_gas_get_private_prefix());
-       be_emit_write_line();
-}
-
 static void emit_base_type(const ir_type *type)
 {
        char buf[128];
@@ -412,7 +572,7 @@ static void emit_base_type(const ir_type *type)
        ir_print_type(buf, sizeof(buf), type);
 
        emit_type_label(type);
-       emit_uleb128(DW_TAG_base_type);
+       emit_uleb128(abbrev_base_type);
        if (mode_is_int(mode)) {
                /* bool hack */
                if (strcmp(buf, "_Bool")==0 || strcmp(buf, "bool")==0) {
@@ -433,7 +593,7 @@ static void emit_base_type(const ir_type *type)
 
 static void emit_pointer_type_abbrev(void)
 {
-       begin_abbrev(DW_TAG_pointer_type, DW_TAG_pointer_type, DW_CHILDREN_no);
+       begin_abbrev(abbrev_pointer_type, DW_TAG_pointer_type, DW_CHILDREN_no);
        register_attribute(DW_AT_type,      DW_FORM_ref4);
        register_attribute(DW_AT_byte_size, DW_FORM_data1);
        end_abbrev();
@@ -454,7 +614,7 @@ static void emit_pointer_type(const ir_type *type)
                emit_type(points_to);
 
                emit_type_label(type);
-               emit_uleb128(DW_TAG_pointer_type);
+               emit_uleb128(abbrev_pointer_type);
                emit_type_address(points_to);
        } else {
                emit_type_label(type);
@@ -465,11 +625,11 @@ static void emit_pointer_type(const ir_type *type)
 
 static void emit_array_type_abbrev(void)
 {
-       begin_abbrev(DW_TAG_array_type, DW_TAG_array_type, DW_CHILDREN_yes);
+       begin_abbrev(abbrev_array_type, DW_TAG_array_type, DW_CHILDREN_yes);
        register_attribute(DW_AT_type, DW_FORM_ref4);
        end_abbrev();
 
-       begin_abbrev(DW_TAG_subrange_type, DW_TAG_subrange_type, DW_CHILDREN_no);
+       begin_abbrev(abbrev_subrange_type, DW_TAG_subrange_type, DW_CHILDREN_no);
        register_attribute(DW_AT_upper_bound, DW_FORM_udata);
        end_abbrev();
 }
@@ -479,17 +639,17 @@ static void emit_array_type(const ir_type *type)
        ir_type *element_type = get_array_element_type(type);
 
        if (get_array_n_dimensions(type) != 1)
-               panic("dwarf: multidimensional arrays no supported yet");
+               panic("multidimensional arrays no supported yet");
 
        emit_type(element_type);
 
        emit_type_label(type);
-       emit_uleb128(DW_TAG_array_type);
+       emit_uleb128(abbrev_array_type);
        emit_type_address(element_type);
 
        if (has_array_upper_bound(type, 0)) {
                int bound = get_array_upper_bound_int(type, 0);
-               emit_uleb128(DW_TAG_subrange_type);
+               emit_uleb128(abbrev_subrange_type);
                emit_uleb128(bound);
        }
 
@@ -498,22 +658,22 @@ static void emit_array_type(const ir_type *type)
 
 static void emit_compound_type_abbrev(void)
 {
-       begin_abbrev(DW_TAG_structure_type, DW_TAG_structure_type, DW_CHILDREN_yes);
+       begin_abbrev(abbrev_structure_type, DW_TAG_structure_type, DW_CHILDREN_yes);
        register_attribute(DW_AT_byte_size,  DW_FORM_udata);
        // TODO register_dbginfo_attributes();
        end_abbrev();
 
-       begin_abbrev(DW_TAG_union_type, DW_TAG_union_type, DW_CHILDREN_yes);
+       begin_abbrev(abbrev_union_type, DW_TAG_union_type, DW_CHILDREN_yes);
        register_attribute(DW_AT_byte_size,  DW_FORM_udata);
        // TODO register_dbginfo_attributes();
        end_abbrev();
 
-       begin_abbrev(DW_TAG_class_type, DW_TAG_class_type, DW_CHILDREN_yes);
+       begin_abbrev(abbrev_class_type, DW_TAG_class_type, DW_CHILDREN_yes);
        register_attribute(DW_AT_byte_size,  DW_FORM_udata);
        // TODO register_dbginfo_attributes();
        end_abbrev();
 
-       begin_abbrev(DW_TAG_member, DW_TAG_member, DW_CHILDREN_no);
+       begin_abbrev(abbrev_member, DW_TAG_member, DW_CHILDREN_no);
        register_attribute(DW_AT_type,                 DW_FORM_ref4);
        register_attribute(DW_AT_name,                 DW_FORM_string);
        register_dbginfo_attributes();
@@ -555,12 +715,12 @@ static void emit_compound_type(const ir_type *type)
 
        emit_type_label(type);
        if (is_Struct_type(type)) {
-               emit_uleb128(DW_TAG_structure_type);
+               emit_uleb128(abbrev_structure_type);
        } else if (is_Union_type(type)) {
-               emit_uleb128(DW_TAG_union_type);
+               emit_uleb128(abbrev_union_type);
        } else {
                assert(is_Class_type(type));
-               emit_uleb128(DW_TAG_class_type);
+               emit_uleb128(abbrev_class_type);
        }
        emit_uleb128(get_type_size_bytes(type));
        for (i = 0; i < n_members; ++i) {
@@ -584,7 +744,7 @@ static void emit_compound_type(const ir_type *type)
                        emit_uleb128(bit_offset);
                        member_type = base;
                } else {
-                       emit_uleb128(DW_TAG_member);
+                       emit_uleb128(abbrev_member);
                }
 
                emit_type_address(member_type);
@@ -600,7 +760,7 @@ static void emit_compound_type(const ir_type *type)
 
 static void emit_subroutine_type_abbrev(void)
 {
-       begin_abbrev(DW_TAG_subroutine_type,
+       begin_abbrev(abbrev_subroutine_type,
                     DW_TAG_subroutine_type, DW_CHILDREN_yes);
        register_attribute(DW_AT_prototyped,   DW_FORM_flag);
        register_attribute(DW_AT_type,         DW_FORM_ref4);
@@ -632,7 +792,7 @@ static void emit_subroutine_type(const ir_type *type)
        }
 
        emit_type_label(type);
-       emit_uleb128(n_ress == 0 ? abbrev_void_subroutine_type : DW_TAG_subroutine_type);
+       emit_uleb128(n_ress == 0 ? abbrev_void_subroutine_type : abbrev_subroutine_type);
        emit_int8(1); /* prototyped */
        if (n_ress > 0) {
                /* dwarf only supports 1 return type */
@@ -650,7 +810,7 @@ static void emit_subroutine_type(const ir_type *type)
 
 static void emit_type(ir_type *type)
 {
-       if (pset_new_insert(&env.emitted_types, type))
+       if (!pset_new_insert(&env.emitted_types, type))
                return;
 
        switch (get_type_tpop_code(type)) {
@@ -662,7 +822,7 @@ static void emit_type(ir_type *type)
        case tpo_union:     emit_compound_type(type);   break;
        case tpo_method:    emit_subroutine_type(type); break;
        default:
-               panic("bedwarf: type %+F not implemented yet", type);
+               panic("type %+F not implemented yet", type);
        }
 }
 
@@ -677,7 +837,7 @@ static void emit_op_addr(const ir_entity *entity)
 
 static void emit_variable_abbrev(void)
 {
-       begin_abbrev(DW_TAG_variable, DW_TAG_variable, DW_CHILDREN_no);
+       begin_abbrev(abbrev_variable, DW_TAG_variable, DW_CHILDREN_no);
        register_attribute(DW_AT_name,      DW_FORM_string);
        register_attribute(DW_AT_type,      DW_FORM_ref4);
        register_attribute(DW_AT_external,  DW_FORM_flag);
@@ -694,13 +854,15 @@ void be_dwarf_variable(const ir_entity *entity)
                return;
        if (get_entity_ld_name(entity)[0] == '\0')
                return;
+       if (!entity_has_definition(entity))
+               return;
 
        be_gas_emit_switch_section(GAS_SECTION_DEBUG_INFO);
 
        emit_type(type);
 
        emit_entity_label(entity);
-       emit_uleb128(DW_TAG_variable);
+       emit_uleb128(abbrev_variable);
        emit_string(get_entity_ld_name(entity));
        emit_type_address(type);
        emit_int8(is_extern_entity(entity));
@@ -714,7 +876,7 @@ void be_dwarf_variable(const ir_entity *entity)
 
 static void emit_compile_unit_abbrev(void)
 {
-       begin_abbrev(DW_TAG_compile_unit, DW_TAG_compile_unit, DW_CHILDREN_yes);
+       begin_abbrev(abbrev_compile_unit, DW_TAG_compile_unit, DW_CHILDREN_yes);
        register_attribute(DW_AT_stmt_list, DW_FORM_data4);
        register_attribute(DW_AT_producer,  DW_FORM_string);
        register_attribute(DW_AT_name,      DW_FORM_string);
@@ -756,12 +918,12 @@ void be_dwarf_unit_begin(const char *filename)
        /* length of compilation unit info */
        emit_size("compile_unit_begin", "compile_unit_end");
        emit_label("compile_unit_begin");
-       emit_int16(2);   /* dwarf version */
+       emit_int16(3);   /* dwarf version */
        emit_address("abbrev_begin");
-       emit_int8(4);    /* pointer size */
+       emit_int8(4);    /* pointer size, TODO: query backend */
 
        /* compile_unit die */
-       emit_uleb128(DW_TAG_compile_unit);
+       emit_uleb128(abbrev_compile_unit);
        emit_address("line_section_begin");
        emit_string_printf("libFirm (%u.%u %s)", ir_get_version_major(),
                           ir_get_version_minor(),
@@ -771,6 +933,13 @@ void be_dwarf_unit_begin(const char *filename)
                emit_int16(language);
        if (comp_dir != NULL)
                emit_string(comp_dir);
+
+       /* tell gas to emit cfi in debug_frame
+        * TODO: if we produce exception handling code then this should be
+        *       .eh_frame (I also wonder if bad things happen if simply always
+        *       use eh_frame) */
+       be_emit_cstring("\t.cfi_sections .debug_frame\n");
+       be_emit_write_line();
 }
 
 void be_dwarf_unit_end(void)
@@ -817,7 +986,8 @@ void be_dwarf_set_source_language(dwarf_source_language new_language)
 
 void be_dwarf_set_compilation_directory(const char *new_comp_dir)
 {
-       comp_dir = new_comp_dir;
+       xfree(comp_dir);
+       comp_dir = xstrdup(new_comp_dir);
 }
 
 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_dwarf)