2 * dwarfwriter.c: Creation of DWARF debug information
5 * Zoltan Varga (vargaz@gmail.com)
7 * (C) 2008-2009 Novell, Inc.
11 #include <mono/utils/mono-compiler.h>
13 #if !defined(DISABLE_AOT) && !defined(DISABLE_JIT)
14 #include "dwarfwriter.h"
16 #include <sys/types.h>
23 #include <mono/metadata/mono-endian.h>
24 #include <mono/metadata/debug-mono-symfile.h>
25 #include <mono/metadata/mono-debug-debugger.h>
26 #include <mono/utils/mono-compiler.h>
29 #include <mono/utils/freebsd-elf32.h>
30 #include <mono/utils/freebsd-elf64.h>
33 #include <mono/utils/freebsd-dwarf.h>
35 #define DW_AT_MIPS_linkage_name 0x2007
36 #define DW_LNE_set_prologue_end 0x0a
40 char *start_symbol
, *end_symbol
;
43 } MethodLineNumberInfo
;
45 struct _MonoDwarfWriter
48 GHashTable
*class_to_die
, *class_to_vtype_die
, *class_to_pointer_die
;
49 GHashTable
*class_to_reference_die
;
50 int fde_index
, tdie_index
, line_number_file_index
, line_number_dir_index
;
51 GHashTable
*file_to_index
, *index_to_file
, *dir_to_index
;
53 int il_file_line_index
, loclist_index
;
56 const char *temp_prefix
;
63 emit_line_number_info (MonoDwarfWriter
*w
, MonoMethod
*method
,
64 char *start_symbol
, char *end_symbol
,
65 guint8
*code
, guint32 code_size
,
66 MonoDebugMethodJitInfo
*debug_info
);
69 * mono_dwarf_writer_create:
71 * Create a DWARF writer object. WRITER is the underlying image writer this
72 * writer will emit to. IL_FILE is the file where IL code will be dumped to for
73 * methods which have no line number info. It can be NULL.
76 mono_dwarf_writer_create (MonoImageWriter
*writer
, FILE *il_file
, int il_file_start_line
, gboolean emit_line_numbers
)
78 MonoDwarfWriter
*w
= g_new0 (MonoDwarfWriter
, 1);
82 w
->il_file_line_index
= il_file_start_line
;
84 w
->emit_line
= emit_line_numbers
;
86 w
->fp
= mono_img_writer_get_fp (w
->w
);
87 w
->temp_prefix
= mono_img_writer_get_temp_label_prefix (w
->w
);
89 w
->class_to_die
= g_hash_table_new (NULL
, NULL
);
90 w
->class_to_vtype_die
= g_hash_table_new (NULL
, NULL
);
91 w
->class_to_pointer_die
= g_hash_table_new (NULL
, NULL
);
92 w
->class_to_reference_die
= g_hash_table_new (NULL
, NULL
);
93 w
->cur_file_index
= -1;
99 mono_dwarf_writer_destroy (MonoDwarfWriter
*w
)
105 mono_dwarf_writer_get_il_file_line_index (MonoDwarfWriter
*w
)
107 return w
->il_file_line_index
;
110 /* Wrappers around the image writer functions */
113 emit_section_change (MonoDwarfWriter
*w
, const char *section_name
, int subsection_index
)
115 mono_img_writer_emit_section_change (w
->w
, section_name
, subsection_index
);
119 emit_push_section (MonoDwarfWriter
*w
, const char *section_name
, int subsection
)
121 mono_img_writer_emit_push_section (w
->w
, section_name
, subsection
);
125 emit_pop_section (MonoDwarfWriter
*w
)
127 mono_img_writer_emit_pop_section (w
->w
);
131 emit_label (MonoDwarfWriter
*w
, const char *name
)
133 mono_img_writer_emit_label (w
->w
, name
);
137 emit_bytes (MonoDwarfWriter
*w
, const guint8
* buf
, int size
)
139 mono_img_writer_emit_bytes (w
->w
, buf
, size
);
143 emit_string (MonoDwarfWriter
*w
, const char *value
)
145 mono_img_writer_emit_string (w
->w
, value
);
149 emit_line (MonoDwarfWriter
*w
)
151 mono_img_writer_emit_line (w
->w
);
155 emit_alignment (MonoDwarfWriter
*w
, int size
)
157 mono_img_writer_emit_alignment (w
->w
, size
);
161 emit_pointer_unaligned (MonoDwarfWriter
*w
, const char *target
)
163 mono_img_writer_emit_pointer_unaligned (w
->w
, target
);
167 emit_pointer (MonoDwarfWriter
*w
, const char *target
)
169 mono_img_writer_emit_pointer (w
->w
, target
);
173 emit_int16 (MonoDwarfWriter
*w
, int value
)
175 mono_img_writer_emit_int16 (w
->w
, value
);
179 emit_int32 (MonoDwarfWriter
*w
, int value
)
181 mono_img_writer_emit_int32 (w
->w
, value
);
185 emit_symbol_diff (MonoDwarfWriter
*w
, const char *end
, const char* start
, int offset
)
187 mono_img_writer_emit_symbol_diff (w
->w
, end
, start
, offset
);
191 emit_byte (MonoDwarfWriter
*w
, guint8 val
)
193 mono_img_writer_emit_byte (w
->w
, val
);
197 emit_escaped_string (MonoDwarfWriter
*w
, char *value
)
201 len
= strlen (value
);
202 for (i
= 0; i
< len
; ++i
) {
204 if (!(isalnum (c
))) {
226 mono_img_writer_emit_string (w
->w
, value
);
229 static G_GNUC_UNUSED
void
230 emit_uleb128 (MonoDwarfWriter
*w
, guint32 value
)
233 guint8 b
= value
& 0x7f;
235 if (value
!= 0) /* more bytes to come */
241 static G_GNUC_UNUSED
void
242 emit_sleb128 (MonoDwarfWriter
*w
, gint64 value
)
245 gboolean negative
= (value
< 0);
252 /* the following is unnecessary if the
253 * implementation of >>= uses an arithmetic rather
254 * than logical shift for a signed left operand
258 value
|= - ((gint64
)1 <<(size
- 7));
259 /* sign bit of byte is second high order bit (0x40) */
260 if ((value
== 0 && !(byte
& 0x40)) ||
261 (value
== -1 && (byte
& 0x40)))
269 static G_GNUC_UNUSED
void
270 encode_uleb128 (guint32 value
, guint8
*buf
, guint8
**endbuf
)
275 guint8 b
= value
& 0x7f;
277 if (value
!= 0) /* more bytes to come */
285 static G_GNUC_UNUSED
void
286 encode_sleb128 (gint32 value
, guint8
*buf
, guint8
**endbuf
)
289 gboolean negative
= (value
< 0);
297 /* the following is unnecessary if the
298 * implementation of >>= uses an arithmetic rather
299 * than logical shift for a signed left operand
303 value
|= - (1 <<(size
- 7));
304 /* sign bit of byte is second high order bit (0x40) */
305 if ((value
== 0 && !(byte
& 0x40)) ||
306 (value
== -1 && (byte
& 0x40)))
317 emit_dwarf_abbrev (MonoDwarfWriter
*w
, int code
, int tag
, gboolean has_child
,
318 int *attrs
, int attrs_len
)
322 emit_uleb128 (w
, code
);
323 emit_uleb128 (w
, tag
);
324 emit_byte (w
, has_child
);
326 for (i
= 0; i
< attrs_len
; i
++)
327 emit_uleb128 (w
, attrs
[i
]);
333 emit_cie (MonoDwarfWriter
*w
)
335 emit_section_change (w
, ".debug_frame", 0);
337 emit_alignment (w
, 8);
340 emit_symbol_diff (w
, ".Lcie0_end", ".Lcie0_start", 0); /* length */
341 emit_label (w
, ".Lcie0_start");
342 emit_int32 (w
, 0xffffffff); /* CIE id */
343 emit_byte (w
, 3); /* version */
344 emit_string (w
, ""); /* augmention */
345 emit_sleb128 (w
, 1); /* code alignment factor */
346 emit_sleb128 (w
, mono_unwind_get_dwarf_data_align ()); /* data alignment factor */
347 emit_uleb128 (w
, mono_unwind_get_dwarf_pc_reg ());
349 w
->cie_program
= w
->cie_program
;
350 if (w
->cie_program
) {
352 guint8
*uw_info
= mono_unwind_ops_encode (w
->cie_program
, &uw_info_len
);
353 emit_bytes (w
, uw_info
, uw_info_len
);
357 emit_alignment (w
, sizeof (gpointer
));
358 emit_label (w
, ".Lcie0_end");
362 emit_pointer_value (MonoDwarfWriter
*w
, gpointer ptr
)
364 gssize val
= (gssize
)ptr
;
365 emit_bytes (w
, (guint8
*)&val
, sizeof (gpointer
));
369 emit_fde (MonoDwarfWriter
*w
, int fde_index
, char *start_symbol
, char *end_symbol
,
370 guint8
*code
, guint32 code_size
, GSList
*unwind_ops
, gboolean use_cie
)
378 emit_section_change (w
, ".debug_frame", 0);
380 sprintf (symbol1
, ".Lfde%d_start", fde_index
);
381 sprintf (symbol2
, ".Lfde%d_end", fde_index
);
382 emit_symbol_diff (w
, symbol2
, symbol1
, 0); /* length */
383 emit_label (w
, symbol1
);
384 emit_int32 (w
, 0); /* CIE_pointer */
386 emit_pointer (w
, start_symbol
); /* initial_location */
388 emit_symbol_diff (w
, end_symbol
, start_symbol
, 0); /* address_range */
390 g_assert (code_size
);
391 emit_int32 (w
, code_size
);
394 emit_pointer_value (w
, code
);
395 emit_int32 (w
, code_size
);
397 #if SIZEOF_VOID_P == 8
398 /* Upper 32 bits of code size */
403 if (w
->cie_program
) {
404 // FIXME: Check that the ops really begin with the CIE program */
407 for (i
= 0; i
< g_slist_length (w
->cie_program
); ++i
)
412 /* Convert the list of MonoUnwindOps to the format used by DWARF */
413 uw_info
= mono_unwind_ops_encode_full (l
, &uw_info_len
, FALSE
);
414 emit_bytes (w
, uw_info
, uw_info_len
);
417 emit_alignment (w
, sizeof (mgreg_t
));
418 emit_label (w
, symbol2
);
422 #define ABBREV_COMPILE_UNIT 1
423 #define ABBREV_SUBPROGRAM 2
424 #define ABBREV_PARAM 3
425 #define ABBREV_BASE_TYPE 4
426 #define ABBREV_STRUCT_TYPE 5
427 #define ABBREV_DATA_MEMBER 6
428 #define ABBREV_TYPEDEF 7
429 #define ABBREV_ENUM_TYPE 8
430 #define ABBREV_ENUMERATOR 9
431 #define ABBREV_NAMESPACE 10
432 #define ABBREV_VARIABLE 11
433 #define ABBREV_VARIABLE_LOCLIST 12
434 #define ABBREV_POINTER_TYPE 13
435 #define ABBREV_REFERENCE_TYPE 14
436 #define ABBREV_PARAM_LOCLIST 15
437 #define ABBREV_INHERITANCE 16
438 #define ABBREV_STRUCT_TYPE_NOCHILDREN 17
439 #define ABBREV_TRAMP_SUBPROGRAM 18
441 static int compile_unit_attr
[] = {
442 DW_AT_producer
,DW_FORM_string
,
443 DW_AT_name
,DW_FORM_string
,
444 DW_AT_comp_dir
,DW_FORM_string
,
445 DW_AT_language
,DW_FORM_data1
,
446 DW_AT_low_pc
,DW_FORM_addr
,
447 DW_AT_high_pc
,DW_FORM_addr
,
448 DW_AT_stmt_list
,DW_FORM_data4
451 static int subprogram_attr
[] = {
452 DW_AT_name
, DW_FORM_string
,
453 DW_AT_MIPS_linkage_name
, DW_FORM_string
,
454 DW_AT_decl_file
, DW_FORM_udata
,
455 DW_AT_decl_line
, DW_FORM_udata
,
457 DW_AT_description
, DW_FORM_string
,
459 DW_AT_low_pc
, DW_FORM_addr
,
460 DW_AT_high_pc
, DW_FORM_addr
,
461 DW_AT_frame_base
, DW_FORM_block1
464 static int tramp_subprogram_attr
[] = {
465 DW_AT_name
, DW_FORM_string
,
466 DW_AT_low_pc
, DW_FORM_addr
,
467 DW_AT_high_pc
, DW_FORM_addr
,
470 static int param_attr
[] = {
471 DW_AT_name
, DW_FORM_string
,
472 DW_AT_type
, DW_FORM_ref4
,
473 DW_AT_location
, DW_FORM_block1
476 static int param_loclist_attr
[] = {
477 DW_AT_name
, DW_FORM_string
,
478 DW_AT_type
, DW_FORM_ref4
,
479 DW_AT_location
, DW_FORM_data4
482 static int base_type_attr
[] = {
483 DW_AT_byte_size
, DW_FORM_data1
,
484 DW_AT_encoding
, DW_FORM_data1
,
485 DW_AT_name
, DW_FORM_string
488 static int struct_type_attr
[] = {
489 DW_AT_name
, DW_FORM_string
,
490 DW_AT_byte_size
, DW_FORM_udata
,
493 static int data_member_attr
[] = {
494 DW_AT_name
, DW_FORM_string
,
495 DW_AT_type
, DW_FORM_ref4
,
496 DW_AT_data_member_location
, DW_FORM_block1
499 static int typedef_attr
[] = {
500 DW_AT_name
, DW_FORM_string
,
501 DW_AT_type
, DW_FORM_ref4
504 static int pointer_type_attr
[] = {
505 DW_AT_type
, DW_FORM_ref4
,
508 static int reference_type_attr
[] = {
509 DW_AT_type
, DW_FORM_ref4
,
512 static int enum_type_attr
[] = {
513 DW_AT_name
, DW_FORM_string
,
514 DW_AT_byte_size
, DW_FORM_udata
,
515 DW_AT_type
, DW_FORM_ref4
,
518 static int enumerator_attr
[] = {
519 DW_AT_name
, DW_FORM_string
,
520 DW_AT_const_value
, DW_FORM_sdata
,
523 static int namespace_attr
[] = {
524 DW_AT_name
, DW_FORM_string
,
527 static int variable_attr
[] = {
528 DW_AT_name
, DW_FORM_string
,
529 DW_AT_type
, DW_FORM_ref4
,
530 DW_AT_location
, DW_FORM_block1
533 static int variable_loclist_attr
[] = {
534 DW_AT_name
, DW_FORM_string
,
535 DW_AT_type
, DW_FORM_ref4
,
536 DW_AT_location
, DW_FORM_data4
539 static int inheritance_attr
[] = {
540 DW_AT_type
, DW_FORM_ref4
,
541 DW_AT_data_member_location
, DW_FORM_block1
544 typedef struct DwarfBasicType
{
545 const char *die_name
, *name
;
551 static DwarfBasicType basic_types
[] = {
552 { ".LDIE_I1", "sbyte", MONO_TYPE_I1
, 1, DW_ATE_signed
},
553 { ".LDIE_U1", "byte", MONO_TYPE_U1
, 1, DW_ATE_unsigned
},
554 { ".LDIE_I2", "short", MONO_TYPE_I2
, 2, DW_ATE_signed
},
555 { ".LDIE_U2", "ushort", MONO_TYPE_U2
, 2, DW_ATE_unsigned
},
556 { ".LDIE_I4", "int", MONO_TYPE_I4
, 4, DW_ATE_signed
},
557 { ".LDIE_U4", "uint", MONO_TYPE_U4
, 4, DW_ATE_unsigned
},
558 { ".LDIE_I8", "long", MONO_TYPE_I8
, 8, DW_ATE_signed
},
559 { ".LDIE_U8", "ulong", MONO_TYPE_U8
, 8, DW_ATE_unsigned
},
560 { ".LDIE_I", "intptr", MONO_TYPE_I
, SIZEOF_VOID_P
, DW_ATE_signed
},
561 { ".LDIE_U", "uintptr", MONO_TYPE_U
, SIZEOF_VOID_P
, DW_ATE_unsigned
},
562 { ".LDIE_R4", "float", MONO_TYPE_R4
, 4, DW_ATE_float
},
563 { ".LDIE_R8", "double", MONO_TYPE_R8
, 8, DW_ATE_float
},
564 { ".LDIE_BOOLEAN", "boolean", MONO_TYPE_BOOLEAN
, 1, DW_ATE_boolean
},
565 { ".LDIE_CHAR", "char", MONO_TYPE_CHAR
, 2, DW_ATE_unsigned_char
},
566 { ".LDIE_STRING", "string", MONO_TYPE_STRING
, sizeof (gpointer
), DW_ATE_address
},
567 { ".LDIE_OBJECT", "object", MONO_TYPE_OBJECT
, sizeof (gpointer
), DW_ATE_address
},
568 { ".LDIE_SZARRAY", "object", MONO_TYPE_SZARRAY
, sizeof (gpointer
), DW_ATE_address
},
571 /* Constants for encoding line number special opcodes */
572 #define OPCODE_BASE 13
574 #define LINE_RANGE 14
577 get_line_number_file_name (MonoDwarfWriter
*w
, const char *name
)
581 g_assert (w
->file_to_index
);
582 index
= GPOINTER_TO_UINT (g_hash_table_lookup (w
->file_to_index
, name
));
583 g_assert (index
> 0);
588 add_line_number_file_name (MonoDwarfWriter
*w
, const char *name
,
589 gint64 last_mod_time
, gint64 file_size
)
594 if (!w
->file_to_index
) {
595 w
->file_to_index
= g_hash_table_new (g_str_hash
, g_str_equal
);
596 w
->index_to_file
= g_hash_table_new (NULL
, NULL
);
599 index
= GPOINTER_TO_UINT (g_hash_table_lookup (w
->file_to_index
, name
));
602 index
= w
->line_number_file_index
;
603 w
->line_number_file_index
++;
604 copy
= g_strdup (name
);
605 g_hash_table_insert (w
->file_to_index
, copy
, GUINT_TO_POINTER (index
+ 1));
606 g_hash_table_insert (w
->index_to_file
, GUINT_TO_POINTER (index
+ 1), copy
);
612 mono_dwarf_escape_path (const char *name
)
614 if (strchr (name
, '\\')) {
619 s
= (char *)g_malloc0 ((len
+ 1) * 2);
621 for (i
= 0; i
< len
; ++i
) {
622 if (name
[i
] == '\\') {
631 return g_strdup (name
);
635 emit_all_line_number_info (MonoDwarfWriter
*w
)
638 GHashTable
*dir_to_index
, *index_to_dir
;
642 add_line_number_file_name (w
, "<unknown>", 0, 0);
645 info_list
= g_slist_reverse (w
->line_info
);
646 for (l
= info_list
; l
; l
= l
->next
) {
647 MethodLineNumberInfo
*info
= (MethodLineNumberInfo
*)l
->data
;
648 MonoDebugMethodInfo
*minfo
;
649 GPtrArray
*source_file_list
;
652 minfo
= mono_debug_lookup_method (info
->method
);
656 mono_debug_get_seq_points (minfo
, NULL
, &source_file_list
, NULL
, NULL
, NULL
);
657 for (i
= 0; i
< source_file_list
->len
; ++i
) {
658 MonoDebugSourceInfo
*sinfo
= (MonoDebugSourceInfo
*)g_ptr_array_index (source_file_list
, i
);
659 add_line_number_file_name (w
, sinfo
->source_file
, 0, 0);
663 /* Preprocess files */
664 dir_to_index
= g_hash_table_new (g_str_hash
, g_str_equal
);
665 index_to_dir
= g_hash_table_new (NULL
, NULL
);
666 for (i
= 0; i
< w
->line_number_file_index
; ++i
) {
667 char *name
= (char *)g_hash_table_lookup (w
->index_to_file
, GUINT_TO_POINTER (i
+ 1));
671 if (g_path_is_absolute (name
)) {
672 char *dir
= g_path_get_dirname (name
);
674 dir_index
= GPOINTER_TO_UINT (g_hash_table_lookup (dir_to_index
, dir
));
675 if (dir_index
== 0) {
676 dir_index
= w
->line_number_dir_index
;
677 w
->line_number_dir_index
++;
678 copy
= g_strdup (dir
);
679 g_hash_table_insert (dir_to_index
, copy
, GUINT_TO_POINTER (dir_index
+ 1));
680 g_hash_table_insert (index_to_dir
, GUINT_TO_POINTER (dir_index
+ 1), copy
);
689 /* Line number info header */
690 emit_section_change (w
, ".debug_line", 0);
691 emit_label (w
, ".Ldebug_line_section_start");
692 emit_label (w
, ".Ldebug_line_start");
693 emit_symbol_diff (w
, ".Ldebug_line_end", ".", -4); /* length */
694 emit_int16 (w
, 0x2); /* version */
695 emit_symbol_diff (w
, ".Ldebug_line_header_end", ".", -4); /* header_length */
696 emit_byte (w
, 1); /* minimum_instruction_length */
697 emit_byte (w
, 1); /* default_is_stmt */
698 emit_byte (w
, LINE_BASE
); /* line_base */
699 emit_byte (w
, LINE_RANGE
); /* line_range */
700 emit_byte (w
, OPCODE_BASE
); /* opcode_base */
701 emit_byte (w
, 0); /* standard_opcode_lengths */
715 emit_section_change (w
, ".debug_line", 0);
716 for (i
= 0; i
< w
->line_number_dir_index
; ++i
) {
717 char *dir
= (char *)g_hash_table_lookup (index_to_dir
, GUINT_TO_POINTER (i
+ 1));
719 emit_string (w
, mono_dwarf_escape_path (dir
));
721 /* End of Includes */
725 for (i
= 0; i
< w
->line_number_file_index
; ++i
) {
726 char *name
= (char *)g_hash_table_lookup (w
->index_to_file
, GUINT_TO_POINTER (i
+ 1));
727 char *basename
= NULL
, *dir
;
730 if (g_path_is_absolute (name
)) {
731 dir
= g_path_get_dirname (name
);
733 dir_index
= GPOINTER_TO_UINT (g_hash_table_lookup (dir_to_index
, dir
));
734 basename
= g_path_get_basename (name
);
738 emit_string (w
, basename
);
740 emit_string (w
, mono_dwarf_escape_path (name
));
741 emit_uleb128 (w
, dir_index
);
749 emit_label (w
, ".Ldebug_line_header_end");
751 /* Emit line number table */
752 for (l
= info_list
; l
; l
= l
->next
) {
753 MethodLineNumberInfo
*info
= (MethodLineNumberInfo
*)l
->data
;
754 MonoDebugMethodJitInfo
*dmji
;
756 dmji
= mono_debug_find_method (info
->method
, mono_domain_get ());
759 emit_line_number_info (w
, info
->method
, info
->start_symbol
, info
->end_symbol
, info
->code
, info
->code_size
, dmji
);
760 mono_debug_free_method_jit_info (dmji
);
762 g_slist_free (info_list
);
766 emit_byte (w
, DW_LNE_end_sequence
);
768 emit_label (w
, ".Ldebug_line_end");
772 * Some assemblers like apple's do not support subsections, so we can't place
773 * .Ldebug_info_end at the end of the section using subsections. Instead, we
774 * define it every time something gets added to the .debug_info section.
775 * The apple assember seems to use the last definition.
778 emit_debug_info_end (MonoDwarfWriter
*w
)
780 /* This doesn't seem to work/required with recent iphone sdk versions */
782 if (!mono_img_writer_subsections_supported (w
->w
))
783 fprintf (w
->fp
, "\n.set %sdebug_info_end,.\n", w
->temp_prefix
);
788 mono_dwarf_writer_emit_base_info (MonoDwarfWriter
*w
, const char *cu_name
, GSList
*base_unwind_program
)
790 char *s
, *build_info
;
794 emit_section_change (w
, ".debug_line", 0);
795 emit_label (w
, ".Ldebug_line_section_start");
796 emit_label (w
, ".Ldebug_line_start");
799 w
->cie_program
= base_unwind_program
;
801 emit_section_change (w
, ".debug_abbrev", 0);
802 emit_dwarf_abbrev (w
, ABBREV_COMPILE_UNIT
, DW_TAG_compile_unit
, TRUE
,
803 compile_unit_attr
, G_N_ELEMENTS (compile_unit_attr
));
804 emit_dwarf_abbrev (w
, ABBREV_SUBPROGRAM
, DW_TAG_subprogram
, TRUE
,
805 subprogram_attr
, G_N_ELEMENTS (subprogram_attr
));
806 emit_dwarf_abbrev (w
, ABBREV_PARAM
, DW_TAG_formal_parameter
, FALSE
,
807 param_attr
, G_N_ELEMENTS (param_attr
));
808 emit_dwarf_abbrev (w
, ABBREV_PARAM_LOCLIST
, DW_TAG_formal_parameter
, FALSE
,
809 param_loclist_attr
, G_N_ELEMENTS (param_loclist_attr
));
810 emit_dwarf_abbrev (w
, ABBREV_BASE_TYPE
, DW_TAG_base_type
, FALSE
,
811 base_type_attr
, G_N_ELEMENTS (base_type_attr
));
812 emit_dwarf_abbrev (w
, ABBREV_STRUCT_TYPE
, DW_TAG_class_type
, TRUE
,
813 struct_type_attr
, G_N_ELEMENTS (struct_type_attr
));
814 emit_dwarf_abbrev (w
, ABBREV_STRUCT_TYPE_NOCHILDREN
, DW_TAG_class_type
, FALSE
,
815 struct_type_attr
, G_N_ELEMENTS (struct_type_attr
));
816 emit_dwarf_abbrev (w
, ABBREV_DATA_MEMBER
, DW_TAG_member
, FALSE
,
817 data_member_attr
, G_N_ELEMENTS (data_member_attr
));
818 emit_dwarf_abbrev (w
, ABBREV_TYPEDEF
, DW_TAG_typedef
, FALSE
,
819 typedef_attr
, G_N_ELEMENTS (typedef_attr
));
820 emit_dwarf_abbrev (w
, ABBREV_ENUM_TYPE
, DW_TAG_enumeration_type
, TRUE
,
821 enum_type_attr
, G_N_ELEMENTS (enum_type_attr
));
822 emit_dwarf_abbrev (w
, ABBREV_ENUMERATOR
, DW_TAG_enumerator
, FALSE
,
823 enumerator_attr
, G_N_ELEMENTS (enumerator_attr
));
824 emit_dwarf_abbrev (w
, ABBREV_NAMESPACE
, DW_TAG_namespace
, TRUE
,
825 namespace_attr
, G_N_ELEMENTS (namespace_attr
));
826 emit_dwarf_abbrev (w
, ABBREV_VARIABLE
, DW_TAG_variable
, FALSE
,
827 variable_attr
, G_N_ELEMENTS (variable_attr
));
828 emit_dwarf_abbrev (w
, ABBREV_VARIABLE_LOCLIST
, DW_TAG_variable
, FALSE
,
829 variable_loclist_attr
, G_N_ELEMENTS (variable_loclist_attr
));
830 emit_dwarf_abbrev (w
, ABBREV_POINTER_TYPE
, DW_TAG_pointer_type
, FALSE
,
831 pointer_type_attr
, G_N_ELEMENTS (pointer_type_attr
));
832 emit_dwarf_abbrev (w
, ABBREV_REFERENCE_TYPE
, DW_TAG_reference_type
, FALSE
,
833 reference_type_attr
, G_N_ELEMENTS (reference_type_attr
));
834 emit_dwarf_abbrev (w
, ABBREV_INHERITANCE
, DW_TAG_inheritance
, FALSE
,
835 inheritance_attr
, G_N_ELEMENTS (inheritance_attr
));
836 emit_dwarf_abbrev (w
, ABBREV_TRAMP_SUBPROGRAM
, DW_TAG_subprogram
, FALSE
,
837 tramp_subprogram_attr
, G_N_ELEMENTS (tramp_subprogram_attr
));
840 emit_section_change (w
, ".debug_info", 0);
841 emit_label (w
, ".Ldebug_info_start");
842 emit_symbol_diff (w
, ".Ldebug_info_end", ".Ldebug_info_begin", 0); /* length */
843 emit_label (w
, ".Ldebug_info_begin");
844 emit_int16 (w
, 0x2); /* DWARF version 2 */
845 emit_int32 (w
, 0); /* .debug_abbrev offset */
846 emit_byte (w
, sizeof (gpointer
)); /* address size */
848 /* Compilation unit */
849 emit_uleb128 (w
, ABBREV_COMPILE_UNIT
);
850 build_info
= mono_get_runtime_build_info ();
851 s
= g_strdup_printf ("Mono AOT Compiler %s", build_info
);
855 emit_string (w
, cu_name
);
857 emit_byte (w
, DW_LANG_C
);
858 emit_pointer_value (w
, 0);
859 emit_pointer_value (w
, 0);
860 /* offset into .debug_line section */
861 emit_symbol_diff (w
, ".Ldebug_line_start", ".Ldebug_line_section_start", 0);
864 for (i
= 0; i
< G_N_ELEMENTS (basic_types
); ++i
) {
865 emit_label (w
, basic_types
[i
].die_name
);
866 emit_uleb128 (w
, ABBREV_BASE_TYPE
);
867 emit_byte (w
, basic_types
[i
].size
);
868 emit_byte (w
, basic_types
[i
].encoding
);
869 emit_string (w
, basic_types
[i
].name
);
872 emit_debug_info_end (w
);
874 /* debug_loc section */
875 emit_section_change (w
, ".debug_loc", 0);
876 emit_label (w
, ".Ldebug_loc_start");
882 * mono_dwarf_writer_close:
884 * Finalize the emitted debugging info.
887 mono_dwarf_writer_close (MonoDwarfWriter
*w
)
889 emit_section_change (w
, ".debug_info", 0);
890 emit_byte (w
, 0); /* close COMPILE_UNIT */
891 emit_label (w
, ".Ldebug_info_end");
894 emit_all_line_number_info (w
);
897 static void emit_type (MonoDwarfWriter
*w
, MonoType
*t
);
898 static const char* get_type_die (MonoDwarfWriter
*w
, MonoType
*t
);
901 get_class_die (MonoDwarfWriter
*w
, MonoClass
*klass
, gboolean vtype
)
906 cache
= w
->class_to_vtype_die
;
908 cache
= w
->class_to_die
;
910 return (const char *)g_hash_table_lookup (cache
, klass
);
913 /* Returns the local symbol pointing to the emitted debug info */
915 emit_class_dwarf_info (MonoDwarfWriter
*w
, MonoClass
*klass
, gboolean vtype
)
917 char *die
, *pointer_die
, *reference_die
;
920 MonoClassField
*field
;
923 gboolean emit_namespace
= FALSE
, has_children
;
927 cache
= w
->class_to_vtype_die
;
929 cache
= w
->class_to_die
;
931 die
= (char *)g_hash_table_lookup (cache
, klass
);
935 if (!((klass
->byval_arg
.type
== MONO_TYPE_CLASS
) || (klass
->byval_arg
.type
== MONO_TYPE_OBJECT
) || klass
->byval_arg
.type
== MONO_TYPE_GENERICINST
|| klass
->enumtype
|| (klass
->byval_arg
.type
== MONO_TYPE_VALUETYPE
&& vtype
) ||
936 (klass
->byval_arg
.type
>= MONO_TYPE_BOOLEAN
&& klass
->byval_arg
.type
<= MONO_TYPE_R8
&& !vtype
)))
940 * FIXME: gdb can't handle namespaces in languages it doesn't know about.
943 if (klass->name_space && klass->name_space [0] != '\0')
944 emit_namespace = TRUE;
946 if (emit_namespace
) {
947 emit_uleb128 (w
, ABBREV_NAMESPACE
);
948 emit_string (w
, klass
->name_space
);
951 full_name
= g_strdup_printf ("%s%s%s", klass
->name_space
, klass
->name_space
? "." : "", klass
->name
);
953 * gdb doesn't support namespaces for non-C++ dwarf objects, so use _
954 * to separate components.
956 for (p
= full_name
; *p
; p
++)
960 die
= g_strdup_printf (".LTDIE_%d", w
->tdie_index
);
961 pointer_die
= g_strdup_printf (".LTDIE_%d_POINTER", w
->tdie_index
);
962 reference_die
= g_strdup_printf (".LTDIE_%d_REFERENCE", w
->tdie_index
);
965 g_hash_table_insert (w
->class_to_pointer_die
, klass
, pointer_die
);
966 g_hash_table_insert (w
->class_to_reference_die
, klass
, reference_die
);
967 g_hash_table_insert (cache
, klass
, die
);
969 if (klass
->enumtype
) {
970 int size
= mono_class_value_size (mono_class_from_mono_type (mono_class_enum_basetype (klass
)), NULL
);
974 emit_uleb128 (w
, ABBREV_ENUM_TYPE
);
975 emit_string (w
, full_name
);
976 emit_uleb128 (w
, size
);
977 for (k
= 0; k
< G_N_ELEMENTS (basic_types
); ++k
)
978 if (basic_types
[k
].type
== mono_class_enum_basetype (klass
)->type
)
980 g_assert (k
< G_N_ELEMENTS (basic_types
));
981 emit_symbol_diff (w
, basic_types
[k
].die_name
, ".Ldebug_info_start", 0);
983 /* Emit enum values */
985 while ((field
= mono_class_get_fields (klass
, &iter
))) {
987 MonoTypeEnum def_type
;
989 if (!(field
->type
->attrs
& FIELD_ATTRIBUTE_STATIC
))
991 if (mono_field_is_deleted (field
))
994 emit_uleb128 (w
, ABBREV_ENUMERATOR
);
995 emit_string (w
, mono_field_get_name (field
));
997 p
= mono_class_get_field_default_value (field
, &def_type
);
998 /* len = */ mono_metadata_decode_blob_size (p
, &p
);
999 switch (mono_class_enum_basetype (klass
)->type
) {
1002 case MONO_TYPE_BOOLEAN
:
1003 emit_sleb128 (w
, *p
);
1007 case MONO_TYPE_CHAR
:
1008 emit_sleb128 (w
, read16 (p
));
1012 emit_sleb128 (w
, read32 (p
));
1016 emit_sleb128 (w
, read64 (p
));
1020 #if SIZEOF_VOID_P == 8
1021 emit_sleb128 (w
, read64 (p
));
1023 emit_sleb128 (w
, read32 (p
));
1027 g_assert_not_reached ();
1031 has_children
= TRUE
;
1038 parent_die
= emit_class_dwarf_info (w
, klass
->parent
, FALSE
);
1042 /* Emit field types */
1044 while ((field
= mono_class_get_fields (klass
, &iter
))) {
1045 if (field
->type
->attrs
& FIELD_ATTRIBUTE_STATIC
)
1048 emit_type (w
, field
->type
);
1052 has_children
= parent_die
|| mono_class_get_fields (klass
, &iter
);
1054 emit_label (w
, die
);
1056 emit_uleb128 (w
, has_children
? ABBREV_STRUCT_TYPE
: ABBREV_STRUCT_TYPE_NOCHILDREN
);
1057 emit_string (w
, full_name
);
1058 emit_uleb128 (w
, klass
->instance_size
);
1061 emit_uleb128 (w
, ABBREV_INHERITANCE
);
1062 emit_symbol_diff (w
, parent_die
, ".Ldebug_info_start", 0);
1065 *p
++= DW_OP_plus_uconst
;
1066 encode_uleb128 (0, p
, &p
);
1067 emit_byte (w
, p
- buf
);
1068 emit_bytes (w
, buf
, p
- buf
);
1073 while ((field
= mono_class_get_fields (klass
, &iter
))) {
1074 if (field
->type
->attrs
& FIELD_ATTRIBUTE_STATIC
)
1077 fdie
= get_type_die (w
, field
->type
);
1079 emit_uleb128 (w
, ABBREV_DATA_MEMBER
);
1080 emit_string (w
, field
->name
);
1081 emit_symbol_diff (w
, fdie
, ".Ldebug_info_start", 0);
1084 *p
++= DW_OP_plus_uconst
;
1085 if (klass
->valuetype
&& vtype
)
1086 encode_uleb128 (field
->offset
- sizeof (MonoObject
), p
, &p
);
1088 encode_uleb128 (field
->offset
, p
, &p
);
1090 emit_byte (w
, p
- buf
);
1091 emit_bytes (w
, buf
, p
- buf
);
1098 emit_uleb128 (w
, 0x0);
1100 /* Add a typedef, so we can reference the type without a 'struct' in gdb */
1101 emit_uleb128 (w
, ABBREV_TYPEDEF
);
1102 emit_string (w
, full_name
);
1103 emit_symbol_diff (w
, die
, ".Ldebug_info_start", 0);
1105 /* Add a pointer type */
1106 emit_label (w
, pointer_die
);
1108 emit_uleb128 (w
, ABBREV_POINTER_TYPE
);
1109 emit_symbol_diff (w
, die
, ".Ldebug_info_start", 0);
1111 /* Add a reference type */
1112 emit_label (w
, reference_die
);
1114 emit_uleb128 (w
, ABBREV_REFERENCE_TYPE
);
1115 emit_symbol_diff (w
, die
, ".Ldebug_info_start", 0);
1119 if (emit_namespace
) {
1121 emit_uleb128 (w
, 0x0);
1127 static gboolean base_types_emitted
[64];
1130 get_type_die (MonoDwarfWriter
*w
, MonoType
*t
)
1132 MonoClass
*klass
= mono_class_from_mono_type (t
);
1137 if (t
->type
== MONO_TYPE_VALUETYPE
) {
1138 tdie
= (const char *)g_hash_table_lookup (w
->class_to_pointer_die
, klass
);
1141 tdie
= get_class_die (w
, klass
, FALSE
);
1142 /* Should return a pointer type to a reference */
1145 t
= &mono_defaults
.int_class
->byval_arg
;
1147 for (j
= 0; j
< G_N_ELEMENTS (basic_types
); ++j
)
1148 if (basic_types
[j
].type
== t
->type
)
1150 if (j
< G_N_ELEMENTS (basic_types
)) {
1151 tdie
= basic_types
[j
].die_name
;
1154 case MONO_TYPE_CLASS
:
1155 tdie
= (const char *)g_hash_table_lookup (w
->class_to_reference_die
, klass
);
1156 //tdie = ".LDIE_OBJECT";
1158 case MONO_TYPE_ARRAY
:
1159 tdie
= ".LDIE_OBJECT";
1161 case MONO_TYPE_VALUETYPE
:
1162 if (klass
->enumtype
)
1163 tdie
= get_class_die (w
, klass
, FALSE
);
1167 case MONO_TYPE_GENERICINST
:
1168 if (!MONO_TYPE_ISSTRUCT (t
)) {
1169 tdie
= (const char *)g_hash_table_lookup (w
->class_to_reference_die
, klass
);
1189 emit_type (MonoDwarfWriter
*w
, MonoType
*t
)
1191 MonoClass
*klass
= mono_class_from_mono_type (t
);
1196 if (t
->type
== MONO_TYPE_VALUETYPE
) {
1197 tdie
= emit_class_dwarf_info (w
, klass
, TRUE
);
1202 emit_class_dwarf_info (w
, klass
, FALSE
);
1205 t
= &mono_defaults
.int_class
->byval_arg
;
1207 for (j
= 0; j
< G_N_ELEMENTS (basic_types
); ++j
)
1208 if (basic_types
[j
].type
== t
->type
)
1210 if (j
< G_N_ELEMENTS (basic_types
)) {
1211 /* Emit a boxed version of base types */
1212 if (j
< 64 && !base_types_emitted
[j
]) {
1213 emit_class_dwarf_info (w
, klass
, FALSE
);
1214 base_types_emitted
[j
] = TRUE
;
1218 case MONO_TYPE_CLASS
:
1219 emit_class_dwarf_info (w
, klass
, FALSE
);
1221 case MONO_TYPE_ARRAY
:
1223 case MONO_TYPE_VALUETYPE
:
1224 if (klass
->enumtype
)
1225 emit_class_dwarf_info (w
, klass
, FALSE
);
1227 case MONO_TYPE_GENERICINST
:
1228 if (!MONO_TYPE_ISSTRUCT (t
))
1229 emit_class_dwarf_info (w
, klass
, FALSE
);
1240 emit_var_type (MonoDwarfWriter
*w
, MonoType
*t
)
1244 tdie
= get_type_die (w
, t
);
1246 emit_symbol_diff (w
, tdie
, ".Ldebug_info_start", 0);
1250 encode_var_location (MonoDwarfWriter
*w
, MonoInst
*ins
, guint8
*p
, guint8
**endp
)
1253 /* FIXME: This needs a location list, since the args can go from reg->stack */
1254 if (!ins
|| ins
->flags
& MONO_INST_IS_DEAD
) {
1255 /* gdb treats this as optimized out */
1256 } else if (ins
->opcode
== OP_REGVAR
) {
1257 *p
= DW_OP_reg0
+ mono_hw_reg_to_dwarf_reg (ins
->dreg
);
1259 } else if (ins
->opcode
== OP_REGOFFSET
) {
1260 *p
++= DW_OP_breg0
+ mono_hw_reg_to_dwarf_reg (ins
->inst_basereg
);
1261 encode_sleb128 (ins
->inst_offset
, p
, &p
);
1271 emit_loclist (MonoDwarfWriter
*w
, MonoInst
*ins
,
1272 guint8
*loclist_begin_addr
, guint8
*loclist_end_addr
,
1273 guint8
*expr
, guint32 expr_len
)
1277 emit_push_section (w
, ".debug_loc", 0);
1278 sprintf (label
, ".Lloclist_%d", w
->loclist_index
++ );
1279 emit_label (w
, label
);
1281 emit_pointer_value (w
, loclist_begin_addr
);
1282 emit_pointer_value (w
, loclist_end_addr
);
1283 emit_byte (w
, expr_len
% 256);
1284 emit_byte (w
, expr_len
/ 256);
1285 emit_bytes (w
, expr
, expr_len
);
1287 emit_pointer_value (w
, NULL
);
1288 emit_pointer_value (w
, NULL
);
1290 emit_pop_section (w
);
1291 emit_symbol_diff (w
, label
, ".Ldebug_loc_start", 0);
1295 * MonoDisHelper->tokener doesn't take an IP argument, and we can't add one since
1296 * it is a public header.
1298 static const guint8
*token_handler_ip
;
1301 token_handler (MonoDisHelper
*dh
, MonoMethod
*method
, guint32 token
)
1305 MonoMethod
*cmethod
;
1307 MonoClassField
*field
;
1308 gpointer data
= NULL
;
1310 if (method
->wrapper_type
)
1311 data
= mono_method_get_wrapper_data (method
, token
);
1313 switch (*token_handler_ip
) {
1317 if (method
->wrapper_type
) {
1318 klass
= (MonoClass
*)data
;
1320 klass
= mono_class_get_checked (method
->klass
->image
, token
, &error
);
1321 g_assert (mono_error_ok (&error
)); /* FIXME error handling */
1323 res
= g_strdup_printf ("<%s>", klass
->name
);
1328 if (method
->wrapper_type
) {
1329 cmethod
= (MonoMethod
*)data
;
1332 cmethod
= mono_get_method_checked (method
->klass
->image
, token
, NULL
, NULL
, &error
);
1334 g_error ("Could not load method due to %s", mono_error_get_message (&error
)); /* FIXME don't swallow the error */
1336 desc
= mono_method_full_name (cmethod
, TRUE
);
1337 res
= g_strdup_printf ("<%s>", desc
);
1341 if (method
->wrapper_type
) {
1342 desc
= mono_signature_get_desc ((MonoMethodSignature
*)data
, FALSE
);
1343 res
= g_strdup_printf ("<%s>", desc
);
1346 res
= g_strdup_printf ("<0x%08x>", token
);
1353 if (method
->wrapper_type
) {
1354 field
= (MonoClassField
*)data
;
1356 field
= mono_field_from_token_checked (method
->klass
->image
, token
, &klass
, NULL
, &error
);
1357 g_assert (mono_error_ok (&error
)); /* FIXME error handling */
1359 desc
= mono_field_full_name (field
);
1360 res
= g_strdup_printf ("<%s>", desc
);
1364 res
= g_strdup_printf ("<0x%08x>", token
);
1374 * Produce a disassembled form of the IL instruction at IP. This is an extension
1375 * of mono_disasm_code_one () which can disasm tokens, handle wrapper methods, and
1376 * CEE_MONO_ opcodes.
1379 disasm_ins (MonoMethod
*method
, const guchar
*ip
, const guint8
**endip
)
1384 MonoMethodHeader
*header
= mono_method_get_header_checked (method
, &error
);
1385 mono_error_assert_ok (&error
); /* FIXME don't swallow the error */
1387 memset (&dh
, 0, sizeof (dh
));
1389 dh
.label_format
= "IL_%04x: ";
1390 dh
.label_target
= "IL_%04x";
1391 dh
.tokener
= token_handler
;
1393 token_handler_ip
= ip
;
1394 if (*ip
== MONO_CUSTOM_PREFIX
) {
1399 case CEE_MONO_ICALL
: {
1400 MonoJitICallInfo
*info
;
1402 token
= read32 (ip
+ 2);
1403 data
= mono_method_get_wrapper_data (method
, token
);
1404 info
= mono_find_jit_icall_by_addr (data
);
1407 dis
= g_strdup_printf ("IL_%04x: mono_icall <%s>", (int)(ip
- header
->code
), info
->name
);
1411 case CEE_MONO_CLASSCONST
: {
1412 token
= read32 (ip
+ 2);
1413 data
= mono_method_get_wrapper_data (method
, token
);
1415 dis
= g_strdup_printf ("IL_%04x: mono_classconst <%s>", (int)(ip
- header
->code
), ((MonoClass
*)data
)->name
);
1420 dis
= mono_disasm_code_one (&dh
, method
, ip
, &ip
);
1423 dis
= mono_disasm_code_one (&dh
, method
, ip
, &ip
);
1425 token_handler_ip
= NULL
;
1428 mono_metadata_free_mh (header
);
1433 il_offset_from_address (MonoMethod
*method
, MonoDebugMethodJitInfo
*jit
,
1434 guint32 native_offset
)
1438 if (!jit
->line_numbers
)
1441 for (i
= jit
->num_line_numbers
- 1; i
>= 0; i
--) {
1442 MonoDebugLineNumberEntry lne
= jit
->line_numbers
[i
];
1444 if (lne
.native_offset
<= native_offset
)
1445 return lne
.il_offset
;
1451 static int max_special_addr_diff
= 0;
1454 emit_advance_op (MonoDwarfWriter
*w
, int line_diff
, int addr_diff
)
1458 /* Use a special opcode if possible */
1459 if (line_diff
- LINE_BASE
>= 0 && line_diff
- LINE_BASE
< LINE_RANGE
) {
1460 if (max_special_addr_diff
== 0)
1461 max_special_addr_diff
= (255 - OPCODE_BASE
) / LINE_RANGE
;
1463 if (addr_diff
> max_special_addr_diff
&& (addr_diff
< 2 * max_special_addr_diff
)) {
1464 emit_byte (w
, DW_LNS_const_add_pc
);
1465 addr_diff
-= max_special_addr_diff
;
1468 opcode
= (line_diff
- LINE_BASE
) + (LINE_RANGE
* addr_diff
) + OPCODE_BASE
;
1474 emit_byte (w
, opcode
);
1476 //printf ("large: %d %d %d\n", line_diff, addr_diff, max_special_addr_diff);
1477 emit_byte (w
, DW_LNS_advance_line
);
1478 emit_sleb128 (w
, line_diff
);
1479 emit_byte (w
, DW_LNS_advance_pc
);
1480 emit_sleb128 (w
, addr_diff
);
1481 emit_byte (w
, DW_LNS_copy
);
1486 compare_lne (MonoDebugLineNumberEntry
*a
, MonoDebugLineNumberEntry
*b
)
1488 if (a
->native_offset
== b
->native_offset
)
1489 return a
->il_offset
- b
->il_offset
;
1491 return a
->native_offset
- b
->native_offset
;
1495 emit_line_number_info (MonoDwarfWriter
*w
, MonoMethod
*method
,
1496 char *start_symbol
, char *end_symbol
,
1497 guint8
*code
, guint32 code_size
,
1498 MonoDebugMethodJitInfo
*debug_info
)
1501 guint32 prev_line
= 0;
1502 guint32 prev_native_offset
= 0;
1503 int i
, file_index
, il_offset
, prev_il_offset
;
1504 gboolean first
= TRUE
;
1505 MonoDebugSourceLocation
*loc
;
1506 char *prev_file_name
= NULL
;
1507 MonoMethodHeader
*header
= mono_method_get_header_checked (method
, &error
);
1508 MonoDebugMethodInfo
*minfo
;
1509 MonoDebugLineNumberEntry
*ln_array
;
1510 int *native_to_il_offset
= NULL
;
1512 mono_error_assert_ok (&error
); /* FIXME don't swallow the error */
1514 if (!w
->emit_line
) {
1515 mono_metadata_free_mh (header
);
1519 minfo
= mono_debug_lookup_method (method
);
1521 /* Compute the native->IL offset mapping */
1523 g_assert (code_size
);
1525 ln_array
= g_new0 (MonoDebugLineNumberEntry
, debug_info
->num_line_numbers
);
1526 memcpy (ln_array
, debug_info
->line_numbers
, debug_info
->num_line_numbers
* sizeof (MonoDebugLineNumberEntry
));
1528 qsort (ln_array
, debug_info
->num_line_numbers
, sizeof (MonoDebugLineNumberEntry
), (int (*)(const void *, const void *))compare_lne
);
1530 native_to_il_offset
= g_new0 (int, code_size
+ 1);
1532 for (i
= 0; i
< debug_info
->num_line_numbers
; ++i
) {
1534 MonoDebugLineNumberEntry
*lne
= &ln_array
[i
];
1537 for (j
= 0; j
< lne
->native_offset
; ++j
)
1538 native_to_il_offset
[j
] = -1;
1541 if (i
< debug_info
->num_line_numbers
- 1) {
1542 MonoDebugLineNumberEntry
*lne_next
= &ln_array
[i
+ 1];
1544 for (j
= lne
->native_offset
; j
< lne_next
->native_offset
; ++j
)
1545 native_to_il_offset
[j
] = lne
->il_offset
;
1547 for (j
= lne
->native_offset
; j
< code_size
; ++j
)
1548 native_to_il_offset
[j
] = lne
->il_offset
;
1554 prev_il_offset
= -1;
1556 w
->cur_file_index
= -1;
1557 for (i
= 0; i
< code_size
; ++i
) {
1558 int line_diff
, addr_diff
;
1563 if (!debug_info
->line_numbers
)
1566 if (native_to_il_offset
)
1567 il_offset
= native_to_il_offset
[i
];
1569 il_offset
= il_offset_from_address (method
, debug_info
, i
);
1571 il_offset = il_offset_from_address (method, debug_info, i);
1573 g_assert (il_offset == native_to_il_offset [i]);
1576 il_offset
= native_to_il_offset
[i
];
1580 if (il_offset
== prev_il_offset
)
1583 prev_il_offset
= il_offset
;
1585 loc
= mono_debug_symfile_lookup_location (minfo
, il_offset
);
1588 if (!loc
->source_file
) {
1589 mono_debug_symfile_free_location (loc
);
1593 line_diff
= (gint32
)loc
->row
- (gint32
)prev_line
;
1594 addr_diff
= i
- prev_native_offset
;
1597 emit_section_change (w
, ".debug_line", 0);
1600 emit_byte (w
, sizeof (gpointer
) + 1);
1601 emit_byte (w
, DW_LNE_set_address
);
1603 emit_pointer_unaligned (w
, start_symbol
);
1605 emit_pointer_value (w
, code
);
1609 if (loc
->row
!= prev_line
) {
1610 if (!prev_file_name
|| strcmp (loc
->source_file
, prev_file_name
) != 0) {
1611 /* Add an entry to the file table */
1612 /* FIXME: Avoid duplicates */
1613 file_index
= get_line_number_file_name (w
, loc
->source_file
) + 1;
1614 g_free (prev_file_name
);
1615 prev_file_name
= g_strdup (loc
->source_file
);
1617 if (w
->cur_file_index
!= file_index
) {
1618 emit_byte (w
, DW_LNS_set_file
);
1619 emit_uleb128 (w
, file_index
);
1620 emit_byte (w
, DW_LNS_copy
);
1621 w
->cur_file_index
= file_index
;
1626 if (loc
->row
!= prev_line
) {
1627 if (prev_native_offset
== 0)
1628 emit_byte (w
, DW_LNE_set_prologue_end
);
1630 //printf ("X: %p(+0x%x) %d %s:%d(+%d)\n", code + i, addr_diff, loc->il_offset, loc->source_file, loc->row, line_diff);
1631 emit_advance_op (w
, line_diff
, addr_diff
);
1633 prev_line
= loc
->row
;
1634 prev_native_offset
= i
;
1637 mono_debug_symfile_free_location (loc
);
1641 g_free (native_to_il_offset
);
1642 g_free (prev_file_name
);
1645 emit_byte (w
, DW_LNS_advance_pc
);
1646 emit_sleb128 (w
, code_size
- prev_native_offset
);
1647 emit_byte (w
, DW_LNS_copy
);
1651 emit_byte (w
, DW_LNE_end_sequence
);
1652 } else if (!start_symbol
) {
1653 /* No debug info, XDEBUG mode */
1655 const guint8
*ip
= header
->code
;
1656 int prev_line
, prev_native_offset
;
1660 * Emit the IL code into a temporary file and emit line number info
1661 * referencing that file.
1664 name
= mono_method_full_name (method
, TRUE
);
1665 fprintf (w
->il_file
, "// %s\n", name
);
1666 w
->il_file_line_index
++;
1669 il_to_line
= g_new0 (int, header
->code_size
);
1671 emit_section_change (w
, ".debug_line", 0);
1673 emit_byte (w
, sizeof (gpointer
) + 1);
1674 emit_byte (w
, DW_LNE_set_address
);
1675 emit_pointer_value (w
, code
);
1677 // FIXME: Optimize this
1678 while (ip
< header
->code
+ header
->code_size
) {
1679 int il_offset
= ip
- header
->code
;
1682 w
->il_file_line_index
++;
1684 dis
= disasm_ins (method
, ip
, &ip
);
1685 fprintf (w
->il_file
, "%s\n", dis
);
1688 il_to_line
[il_offset
] = w
->il_file_line_index
;
1691 /* Emit line number info */
1693 prev_native_offset
= 0;
1694 for (i
= 0; i
< debug_info
->num_line_numbers
; ++i
) {
1695 MonoDebugLineNumberEntry
*lne
= &debug_info
->line_numbers
[i
];
1698 if (lne
->il_offset
>= header
->code_size
)
1700 line
= il_to_line
[lne
->il_offset
];
1703 * This seems to happen randomly, it looks like il_offset points
1704 * into the middle of an instruction.
1708 printf ("%s\n", mono_method_full_name (method, TRUE));
1709 printf ("%d %d\n", lne->il_offset, header->code_size);
1714 if (line
- prev_line
!= 0) {
1715 emit_advance_op (w
, line
- prev_line
, (gint32
)lne
->native_offset
- prev_native_offset
);
1718 prev_native_offset
= lne
->native_offset
;
1722 emit_byte (w
, DW_LNS_advance_pc
);
1723 emit_sleb128 (w
, code_size
- prev_native_offset
);
1724 emit_byte (w
, DW_LNS_copy
);
1728 emit_byte (w
, DW_LNE_end_sequence
);
1730 fflush (w
->il_file
);
1731 g_free (il_to_line
);
1733 mono_metadata_free_mh (header
);
1736 static MonoMethodVar
*
1737 find_vmv (MonoCompile
*cfg
, MonoInst
*ins
)
1742 for (j
= 0; j
< cfg
->num_varinfo
; ++j
) {
1743 if (cfg
->varinfo
[j
] == ins
)
1747 if (j
< cfg
->num_varinfo
) {
1748 return MONO_VARINFO (cfg
, j
);
1756 mono_dwarf_writer_emit_method (MonoDwarfWriter
*w
, MonoCompile
*cfg
, MonoMethod
*method
, char *start_symbol
, char *end_symbol
, char *linkage_name
,
1757 guint8
*code
, guint32 code_size
, MonoInst
**args
, MonoInst
**locals
, GSList
*unwind_info
, MonoDebugMethodJitInfo
*debug_info
)
1761 MonoMethodSignature
*sig
;
1762 MonoMethodHeader
*header
;
1764 MonoDebugLocalsInfo
*locals_info
;
1765 MonoDebugMethodInfo
*minfo
;
1766 MonoDebugSourceLocation
*loc
= NULL
;
1771 emit_section_change (w
, ".debug_info", 0);
1773 sig
= mono_method_signature (method
);
1774 header
= mono_method_get_header_checked (method
, &error
);
1775 mono_error_assert_ok (&error
); /* FIXME don't swallow the error */
1777 /* Parameter types */
1778 for (i
= 0; i
< sig
->param_count
+ sig
->hasthis
; ++i
) {
1781 if (i
== 0 && sig
->hasthis
) {
1782 if (method
->klass
->valuetype
)
1783 t
= &method
->klass
->this_arg
;
1785 t
= &method
->klass
->byval_arg
;
1787 t
= sig
->params
[i
- sig
->hasthis
];
1792 //emit_type (w, &mono_defaults.int32_class->byval_arg);
1795 for (i
= 0; i
< header
->num_locals
; ++i
) {
1796 emit_type (w
, header
->locals
[i
]);
1799 minfo
= mono_debug_lookup_method (method
);
1801 loc
= mono_debug_symfile_lookup_location (minfo
, 0);
1804 names
= g_new0 (char *, sig
->param_count
);
1805 mono_method_get_param_names (method
, (const char **) names
);
1807 emit_uleb128 (w
, ABBREV_SUBPROGRAM
);
1809 name
= mono_method_full_name (method
, FALSE
);
1810 emit_escaped_string (w
, name
);
1811 /* DW_AT_MIPS_linkage_name */
1813 emit_string (w
, linkage_name
);
1815 emit_string (w
, "");
1816 /* DW_AT_decl_file/DW_AT_decl_line */
1818 int file_index
= add_line_number_file_name (w
, loc
->source_file
, 0, 0);
1819 emit_uleb128 (w
, file_index
+ 1);
1820 emit_uleb128 (w
, loc
->row
);
1822 mono_debug_symfile_free_location (loc
);
1825 emit_uleb128 (w
, 0);
1826 emit_uleb128 (w
, 0);
1829 emit_string (w
, name
);
1833 emit_pointer_unaligned (w
, start_symbol
);
1834 emit_pointer_unaligned (w
, end_symbol
);
1836 emit_pointer_value (w
, code
);
1837 emit_pointer_value (w
, code
+ code_size
);
1841 emit_byte (w
, DW_OP_breg6
);
1845 for (i
= 0; i
< sig
->param_count
+ sig
->hasthis
; ++i
) {
1846 MonoInst
*arg
= args
? args
[i
] : NULL
;
1849 char pname_buf
[128];
1850 MonoMethodVar
*vmv
= NULL
;
1851 gboolean need_loclist
= FALSE
;
1853 vmv
= find_vmv (cfg
, arg
);
1854 if (code
&& vmv
&& (vmv
->live_range_start
|| vmv
->live_range_end
))
1855 need_loclist
= TRUE
;
1857 if (i
== 0 && sig
->hasthis
) {
1858 if (method
->klass
->valuetype
)
1859 t
= &method
->klass
->this_arg
;
1861 t
= &method
->klass
->byval_arg
;
1864 t
= sig
->params
[i
- sig
->hasthis
];
1865 pname
= names
[i
- sig
->hasthis
];
1868 emit_uleb128 (w
, need_loclist
? ABBREV_PARAM_LOCLIST
: ABBREV_PARAM
);
1870 if (pname
[0] == '\0') {
1871 sprintf (pname_buf
, "param%d", i
- sig
->hasthis
);
1874 emit_string (w
, pname
);
1876 if (!arg
|| arg
->flags
& MONO_INST_IS_DEAD
)
1877 emit_var_type (w
, &mono_defaults
.int32_class
->byval_arg
);
1879 emit_var_type (w
, t
);
1882 encode_var_location (w
, arg
, p
, &p
);
1884 vmv
->live_range_start
= 0;
1885 if (vmv
->live_range_end
== 0)
1886 /* FIXME: Uses made in calls are not recorded */
1887 vmv
->live_range_end
= code_size
;
1888 emit_loclist (w
, arg
, code
+ vmv
->live_range_start
, code
+ vmv
->live_range_end
, buf
, p
- buf
);
1890 emit_byte (w
, p
- buf
);
1891 emit_bytes (w
, buf
, p
- buf
);
1897 locals_info
= mono_debug_lookup_locals (method
);
1899 for (i
= 0; i
< header
->num_locals
; ++i
) {
1900 MonoInst
*ins
= locals
[i
];
1901 char name_buf
[128];
1903 MonoMethodVar
*vmv
= NULL
;
1904 gboolean need_loclist
= FALSE
;
1907 /* ins->dreg no longer contains the original vreg */
1908 vmv
= find_vmv (cfg
, ins
);
1910 if (vmv
->live_range_start
) {
1911 /* This variable has a precise live range */
1912 need_loclist
= TRUE
;
1916 emit_uleb128 (w
, need_loclist
? ABBREV_VARIABLE_LOCLIST
: ABBREV_VARIABLE
);
1920 for (j
= 0; j
< locals_info
->num_locals
; ++j
)
1921 if (locals_info
->locals
[j
].index
== i
)
1923 if (j
< locals_info
->num_locals
)
1924 lname
= locals_info
->locals
[j
].name
;
1927 emit_string (w
, lname
);
1929 sprintf (name_buf
, "V_%d", i
);
1930 emit_string (w
, name_buf
);
1933 if (!ins
|| ins
->flags
& MONO_INST_IS_DEAD
)
1934 emit_var_type (w
, &mono_defaults
.int32_class
->byval_arg
);
1936 emit_var_type (w
, header
->locals
[i
]);
1939 encode_var_location (w
, ins
, p
, &p
);
1942 if (vmv
->live_range_end
== 0)
1943 /* FIXME: Uses made in calls are not recorded */
1944 vmv
->live_range_end
= code_size
;
1945 emit_loclist (w
, ins
, code
+ vmv
->live_range_start
, code
+ vmv
->live_range_end
, buf
, p
- buf
);
1947 emit_byte (w
, p
- buf
);
1948 emit_bytes (w
, buf
, p
- buf
);
1953 mono_debug_free_locals (locals_info
);
1955 /* Subprogram end */
1956 emit_uleb128 (w
, 0x0);
1960 emit_debug_info_end (w
);
1962 /* Emit unwind info */
1964 emit_fde (w
, w
->fde_index
, start_symbol
, end_symbol
, code
, code_size
, unwind_info
, TRUE
);
1968 /* Save the information needed to emit the line number info later at once */
1969 /* != could happen when using --regression */
1970 if (debug_info
&& (debug_info
->code_start
== code
)) {
1971 MethodLineNumberInfo
*info
;
1973 info
= g_new0 (MethodLineNumberInfo
, 1);
1974 info
->method
= method
;
1975 info
->start_symbol
= g_strdup (start_symbol
);
1976 info
->end_symbol
= g_strdup (end_symbol
);
1978 info
->code_size
= code_size
;
1979 w
->line_info
= g_slist_prepend (w
->line_info
, info
);
1983 mono_metadata_free_mh (header
);
1987 mono_dwarf_writer_emit_trampoline (MonoDwarfWriter
*w
, const char *tramp_name
, char *start_symbol
, char *end_symbol
, guint8
*code
, guint32 code_size
, GSList
*unwind_info
)
1989 emit_section_change (w
, ".debug_info", 0);
1992 emit_uleb128 (w
, ABBREV_TRAMP_SUBPROGRAM
);
1993 emit_string (w
, tramp_name
);
1994 emit_pointer_value (w
, code
);
1995 emit_pointer_value (w
, code
+ code_size
);
1997 /* Subprogram end */
1998 emit_uleb128 (w
, 0x0);
2000 emit_debug_info_end (w
);
2002 /* Emit unwind info */
2003 emit_fde (w
, w
->fde_index
, start_symbol
, end_symbol
, code
, code_size
, unwind_info
, FALSE
);
2007 #else /* !defined(DISABLE_AOT) && !defined(DISABLE_JIT) */
2009 MONO_EMPTY_SOURCE_FILE (dwarfwriter
);
2011 #endif /* End of: !defined(DISABLE_AOT) && !defined(DISABLE_JIT) */