[amd64] Remove the callee saved registers from MonoLMF, save/restore them normally...
[mono-project.git] / mono / metadata / debug-mono-symfile.c
blob79f6cda6a54ce93fd152bd556aa1f99542327ca6
1 /*
2 * debug-mono-symfile.c:
4 * Author:
5 * Mono Project (http://www.mono-project.com)
7 * Copyright (C) 2005-2008 Novell, Inc. (http://www.novell.com)
8 * Copyright 2012 Xamarin Inc (http://www.xamarin.com)
9 */
11 #include <config.h>
12 #include <stdlib.h>
13 #include <stdio.h>
14 #include <errno.h>
15 #include <string.h>
16 #ifdef HAVE_SYS_PARAM_H
17 #include <sys/param.h>
18 #endif
19 #include <sys/stat.h>
20 #include <mono/metadata/metadata.h>
21 #include <mono/metadata/tabledefs.h>
22 #include <mono/metadata/tokentype.h>
23 #include <mono/metadata/appdomain.h>
24 #include <mono/metadata/exception.h>
25 #include <mono/metadata/debug-helpers.h>
26 #include <mono/metadata/mono-debug.h>
27 #include <mono/metadata/debug-mono-symfile.h>
28 #include <mono/metadata/mono-debug-debugger.h>
29 #include <mono/metadata/mono-endian.h>
30 #include <mono/metadata/metadata-internals.h>
31 #include <mono/metadata/class-internals.h>
32 #include <mono/utils/mono-mmap.h>
33 #include <mono/utils/bsearch.h>
35 #include <fcntl.h>
36 #ifdef HAVE_UNISTD_H
37 #include <unistd.h>
38 #endif
40 #define RANGE_TABLE_CHUNK_SIZE 256
41 #define CLASS_TABLE_CHUNK_SIZE 256
42 #define TYPE_TABLE_PTR_CHUNK_SIZE 256
43 #define TYPE_TABLE_CHUNK_SIZE 65536
45 struct _MonoSymbolFile {
46 const uint8_t *raw_contents;
47 int raw_contents_size;
48 void *raw_contents_handle;
49 int major_version;
50 int minor_version;
51 char *filename;
52 GHashTable *method_hash;
53 GHashTable *source_hash;
54 MonoSymbolFileOffsetTable *offset_table;
55 gboolean was_loaded_from_memory;
58 static void
59 free_method_info (MonoDebugMethodInfo *minfo)
61 g_free (minfo);
64 static void
65 free_source_info (MonoDebugSourceInfo *sinfo)
67 g_free (sinfo->source_file);
68 g_free (sinfo->guid);
69 g_free (sinfo->hash);
70 g_free (sinfo);
73 static int
74 load_symfile (MonoDebugHandle *handle, MonoSymbolFile *symfile, mono_bool in_the_debugger)
76 const char *ptr, *start;
77 gchar *guid;
78 uint64_t magic;
79 int minor, major;
81 ptr = start = (const char*)symfile->raw_contents;
82 if (!ptr)
83 return FALSE;
85 magic = read64(ptr);
86 ptr += sizeof(uint64_t);
87 if (magic != MONO_SYMBOL_FILE_MAGIC) {
88 if (!in_the_debugger)
89 g_warning ("Symbol file %s is not a mono symbol file", symfile->filename);
90 return FALSE;
93 major = read32(ptr);
94 ptr += sizeof(uint32_t);
95 minor = read32(ptr);
96 ptr += sizeof(uint32_t);
99 * 50.0 is the frozen version for Mono 2.0.
101 * Nobody except me (Martin) is allowed to check the minor version.
103 if (major != MONO_SYMBOL_FILE_MAJOR_VERSION) {
104 if (!in_the_debugger)
105 g_warning ("Symbol file %s has incorrect version (expected %d.%d, got %d)",
106 symfile->filename, MONO_SYMBOL_FILE_MAJOR_VERSION,
107 MONO_SYMBOL_FILE_MINOR_VERSION, major);
108 return FALSE;
111 guid = mono_guid_to_string ((const uint8_t *) ptr);
112 ptr += 16;
114 if (strcmp (handle->image->guid, guid)) {
115 if (!in_the_debugger)
116 g_warning ("Symbol file %s doesn't match image %s", symfile->filename,
117 handle->image_file);
118 if (guid)
119 g_free (guid);
120 return FALSE;
123 symfile->major_version = major;
124 symfile->minor_version = minor;
126 symfile->offset_table = (MonoSymbolFileOffsetTable *) ptr;
128 symfile->method_hash = g_hash_table_new_full (
129 NULL, NULL, NULL, (GDestroyNotify) free_method_info);
131 symfile->source_hash = g_hash_table_new_full (
132 NULL, NULL, NULL, (GDestroyNotify) free_source_info);
134 g_free (guid);
135 return TRUE;
138 MonoSymbolFile *
139 mono_debug_open_mono_symbols (MonoDebugHandle *handle, const uint8_t *raw_contents,
140 int size, gboolean in_the_debugger)
142 MonoSymbolFile *symfile;
144 mono_debugger_lock ();
145 symfile = g_new0 (MonoSymbolFile, 1);
147 if (raw_contents != NULL) {
148 unsigned char *p;
149 symfile->raw_contents_size = size;
150 symfile->raw_contents = p = g_malloc (size);
151 memcpy (p, raw_contents, size);
152 symfile->filename = g_strdup_printf ("LoadedFromMemory");
153 symfile->was_loaded_from_memory = TRUE;
154 } else {
155 MonoFileMap *f;
156 symfile->filename = g_strdup_printf ("%s.mdb", mono_image_get_filename (handle->image));
157 symfile->was_loaded_from_memory = FALSE;
158 if ((f = mono_file_map_open (symfile->filename))) {
159 symfile->raw_contents_size = mono_file_map_size (f);
160 if (symfile->raw_contents_size == 0) {
161 if (!in_the_debugger)
162 g_warning ("stat of %s failed: %s",
163 symfile->filename, g_strerror (errno));
164 } else {
165 symfile->raw_contents = mono_file_map (symfile->raw_contents_size, MONO_MMAP_READ|MONO_MMAP_PRIVATE, mono_file_map_fd (f), 0, &symfile->raw_contents_handle);
168 mono_file_map_close (f);
172 if (load_symfile (handle, symfile, in_the_debugger)) {
173 mono_debugger_unlock ();
174 return symfile;
175 } else if (!in_the_debugger) {
176 mono_debug_close_mono_symbol_file (symfile);
177 mono_debugger_unlock ();
178 return NULL;
181 mono_debugger_unlock ();
182 return symfile;
185 void
186 mono_debug_close_mono_symbol_file (MonoSymbolFile *symfile)
188 if (!symfile)
189 return;
191 mono_debugger_lock ();
192 if (symfile->method_hash)
193 g_hash_table_destroy (symfile->method_hash);
195 if (symfile->raw_contents) {
196 if (symfile->was_loaded_from_memory)
197 g_free ((gpointer)symfile->raw_contents);
198 else
199 mono_file_unmap ((gpointer) symfile->raw_contents, symfile->raw_contents_handle);
202 if (symfile->filename)
203 g_free (symfile->filename);
204 g_free (symfile);
205 mono_debugger_unlock ();
208 mono_bool
209 mono_debug_symfile_is_loaded (MonoSymbolFile *symfile)
211 return symfile && symfile->offset_table;
215 static int
216 read_leb128 (const uint8_t *ptr, const uint8_t **rptr)
218 int ret = 0;
219 int shift = 0;
220 char b;
222 do {
223 b = *ptr++;
225 ret = ret | ((b & 0x7f) << shift);
226 shift += 7;
227 } while ((b & 0x80) == 0x80);
229 if (rptr)
230 *rptr = ptr;
232 return ret;
235 static gchar *
236 read_string (const uint8_t *ptr, const uint8_t **endp)
238 gchar *s;
239 int len = read_leb128 (ptr, &ptr);
241 s = g_filename_from_utf8 ((const char *) ptr, len, NULL, NULL, NULL);
242 ptr += len;
243 if (endp)
244 *endp = ptr;
245 return s;
248 typedef struct {
249 MonoSymbolFile *symfile;
250 int line_base, line_range, max_address_incr;
251 uint8_t opcode_base;
252 uint32_t last_line, last_file, last_offset;
253 uint32_t first_file;
254 int line, file, offset;
255 gboolean is_hidden;
256 } StatementMachine;
258 static gboolean
259 check_line (StatementMachine *stm, int offset, MonoDebugSourceLocation **location)
261 gchar *source_file = NULL;
263 if (stm->offset <= offset) {
264 stm->last_offset = stm->offset;
265 stm->last_file = stm->file;
266 if (stm->line != 0xfeefee)
267 stm->last_line = stm->line;
268 return FALSE;
271 if (stm->last_file) {
272 int offset = read32(&(stm->symfile->offset_table->_source_table_offset)) +
273 (stm->last_file - 1) * sizeof (MonoSymbolFileSourceEntry);
274 MonoSymbolFileSourceEntry *se = (MonoSymbolFileSourceEntry *)
275 (stm->symfile->raw_contents + offset);
277 source_file = read_string (stm->symfile->raw_contents + read32(&(se->_data_offset)), NULL);
280 if (stm->last_line == 0) {
282 * The IL offset is less than the first IL offset which has a corresponding
283 * source line.
285 *location = NULL;
286 return TRUE;
289 *location = g_new0 (MonoDebugSourceLocation, 1);
290 (*location)->source_file = source_file;
291 (*location)->row = stm->last_line;
292 (*location)->il_offset = stm->last_offset;
293 return TRUE;
297 * mono_debug_symfile_lookup_location:
298 * @minfo: A `MonoDebugMethodInfo' which can be retrieved by
299 * mono_debug_lookup_method().
300 * @offset: IL offset within the corresponding method's CIL code.
302 * This function is similar to mono_debug_lookup_location(), but we
303 * already looked up the method and also already did the
304 * `native address -> IL offset' mapping.
306 MonoDebugSourceLocation *
307 mono_debug_symfile_lookup_location (MonoDebugMethodInfo *minfo, uint32_t offset)
309 MonoDebugSourceLocation *location = NULL;
310 MonoSymbolFile *symfile;
311 const unsigned char *ptr;
312 StatementMachine stm;
314 #define DW_LNS_copy 1
315 #define DW_LNS_advance_pc 2
316 #define DW_LNS_advance_line 3
317 #define DW_LNS_set_file 4
318 #define DW_LNS_const_add_pc 8
320 #define DW_LNE_end_sequence 1
321 #define DW_LNE_MONO_negate_is_hidden 0x40
323 #define DW_LNE_MONO__extensions_start 0x40
324 #define DW_LNE_MONO__extensions_end 0x7f
326 if ((symfile = minfo->handle->symfile) == NULL)
327 return NULL;
329 stm.line_base = read32 (&symfile->offset_table->_line_number_table_line_base);
330 stm.line_range = read32 (&symfile->offset_table->_line_number_table_line_range);
331 stm.opcode_base = (uint8_t) read32 (&symfile->offset_table->_line_number_table_opcode_base);
332 stm.max_address_incr = (255 - stm.opcode_base) / stm.line_range;
334 mono_debugger_lock ();
336 ptr = symfile->raw_contents + minfo->lnt_offset;
338 stm.symfile = symfile;
339 stm.offset = stm.last_offset = 0;
340 stm.last_file = 0;
341 stm.last_line = 0;
342 stm.first_file = 0;
343 stm.file = 1;
344 stm.line = 1;
345 stm.is_hidden = FALSE;
347 while (TRUE) {
348 uint8_t opcode = *ptr++;
350 if (opcode == 0) {
351 uint8_t size = *ptr++;
352 const unsigned char *end_ptr = ptr + size;
354 opcode = *ptr++;
356 if (opcode == DW_LNE_end_sequence) {
357 if (check_line (&stm, -1, &location))
358 goto out_success;
359 break;
360 } else if (opcode == DW_LNE_MONO_negate_is_hidden) {
361 stm.is_hidden = !stm.is_hidden;
362 } else if ((opcode >= DW_LNE_MONO__extensions_start) &&
363 (opcode <= DW_LNE_MONO__extensions_end)) {
364 ; // reserved for future extensions
365 } else {
366 g_warning ("Unknown extended opcode %x in LNT", opcode);
369 ptr = end_ptr;
370 continue;
371 } else if (opcode < stm.opcode_base) {
372 switch (opcode) {
373 case DW_LNS_copy:
374 if (check_line (&stm, offset, &location))
375 goto out_success;
376 break;
377 case DW_LNS_advance_pc:
378 stm.offset += read_leb128 (ptr, &ptr);
379 break;
380 case DW_LNS_advance_line:
381 stm.line += read_leb128 (ptr, &ptr);
382 break;
383 case DW_LNS_set_file:
384 stm.file = read_leb128 (ptr, &ptr);
385 break;
386 case DW_LNS_const_add_pc:
387 stm.offset += stm.max_address_incr;
388 break;
389 default:
390 g_warning ("Unknown standard opcode %x in LNT", opcode);
391 goto error_out;
393 } else {
394 opcode -= stm.opcode_base;
396 stm.offset += opcode / stm.line_range;
397 stm.line += stm.line_base + (opcode % stm.line_range);
399 if (check_line (&stm, offset, &location))
400 goto out_success;
404 error_out:
405 mono_debugger_unlock ();
406 return NULL;
408 out_success:
409 mono_debugger_unlock ();
410 return location;
413 static void
414 add_line (StatementMachine *stm, GPtrArray *il_offset_array, GPtrArray *line_number_array, GPtrArray *source_file_array)
416 if (stm->line > 0) {
417 g_ptr_array_add (il_offset_array, GUINT_TO_POINTER (stm->offset));
418 g_ptr_array_add (line_number_array, GUINT_TO_POINTER (stm->line));
419 g_ptr_array_add (source_file_array, GUINT_TO_POINTER (stm->file));
422 if (!stm->is_hidden && !stm->first_file)
423 stm->first_file = stm->file;
427 * mono_debug_symfile_free_location:
429 * Free a MonoDebugSourceLocation returned by
430 * mono_debug_symfile_lookup_location
432 void
433 mono_debug_symfile_free_location (MonoDebugSourceLocation *location)
435 g_free (location->source_file);
436 g_free (location);
440 * LOCKING: Assumes the debugger lock is held.
442 static MonoDebugSourceInfo*
443 get_source_info (MonoSymbolFile *symfile, int index)
445 MonoDebugSourceInfo *info;
447 info = g_hash_table_lookup (symfile->source_hash, GUINT_TO_POINTER (index));
448 if (!info) {
449 int offset = read32(&(symfile->offset_table->_source_table_offset)) +
450 (index - 1) * sizeof (MonoSymbolFileSourceEntry);
451 MonoSymbolFileSourceEntry *se = (MonoSymbolFileSourceEntry *)
452 (symfile->raw_contents + offset);
453 const uint8_t *ptr = symfile->raw_contents + read32(&(se->_data_offset));
455 info = g_new0 (MonoDebugSourceInfo, 1);
456 info->source_file = read_string (ptr, &ptr);
457 info->guid = g_malloc0 (16);
458 memcpy (info->guid, ptr, 16);
459 ptr += 16;
460 info->hash = g_malloc0 (16);
461 memcpy (info->hash, ptr, 16);
462 ptr += 16;
463 g_hash_table_insert (symfile->source_hash, GUINT_TO_POINTER (index), info);
465 return info;
468 typedef enum {
469 LNT_FLAG_HAS_COLUMN_INFO = 1 << 1,
470 LNT_FLAG_HAS_END_INFO = 1 << 2,
471 } LineNumberTableFlags;
473 static LineNumberTableFlags
474 method_get_lnt_flags (MonoDebugMethodInfo *minfo)
476 MonoSymbolFile *symfile;
477 const unsigned char *ptr;
478 guint32 flags;
480 if ((symfile = minfo->handle->symfile) == NULL)
481 return FALSE;
483 ptr = symfile->raw_contents + minfo->data_offset;
485 /* Has to read 'flags' which is preceeded by a bunch of other data */
486 /* compile_unit_index */
487 read_leb128 (ptr, &ptr);
488 /* local variable table offset */
489 read_leb128 (ptr, &ptr);
490 /* namespace id */
491 read_leb128 (ptr, &ptr);
492 /* code block table offset */
493 read_leb128 (ptr, &ptr);
494 /* scope variable table offset */
495 read_leb128 (ptr, &ptr);
496 /* real name offset */
497 read_leb128 (ptr, &ptr);
499 flags = read_leb128 (ptr, &ptr);
500 return flags;
504 * mono_debug_symfile_get_line_numbers_full:
506 * On return, SOURCE_FILE_LIST will point to a GPtrArray of MonoDebugSourceFile
507 * structures, and SOURCE_FILES will contain indexes into this array.
508 * The MonoDebugSourceFile structures are owned by this module.
510 void
511 mono_debug_symfile_get_line_numbers_full (MonoDebugMethodInfo *minfo, char **source_file, GPtrArray **source_file_list, int *n_il_offsets, int **il_offsets, int **line_numbers, int **column_numbers, int **source_files, int **end_line_numbers, int **end_column_numbers)
513 // FIXME: Unify this with mono_debug_symfile_lookup_location
514 MonoSymbolFile *symfile;
515 const unsigned char *ptr;
516 StatementMachine stm;
517 uint32_t i;
518 LineNumberTableFlags flags;
519 GPtrArray *il_offset_array, *line_number_array, *source_file_array;
520 gboolean has_column_info, has_end_info;
521 gboolean column_info_read = FALSE;
523 if (source_file_list)
524 *source_file_list = NULL;
525 if (n_il_offsets)
526 *n_il_offsets = 0;
527 if (il_offsets)
528 *il_offsets = NULL;
529 if (source_files)
530 *source_files = NULL;
531 if (source_file)
532 *source_file = NULL;
533 if (line_numbers)
534 *line_numbers = NULL;
535 if (column_numbers)
536 *column_numbers = NULL;
537 if (end_line_numbers)
538 *end_line_numbers = NULL;
539 if (end_column_numbers)
540 *end_column_numbers = NULL;
542 if ((symfile = minfo->handle->symfile) == NULL)
543 return;
545 flags = method_get_lnt_flags (minfo);
546 has_column_info = (flags & LNT_FLAG_HAS_COLUMN_INFO) > 0;
547 has_end_info = (flags & LNT_FLAG_HAS_END_INFO) > 0;
549 il_offset_array = g_ptr_array_new ();
550 line_number_array = g_ptr_array_new ();
551 source_file_array = g_ptr_array_new ();
553 stm.line_base = read32 (&symfile->offset_table->_line_number_table_line_base);
554 stm.line_range = read32 (&symfile->offset_table->_line_number_table_line_range);
555 stm.opcode_base = (uint8_t) read32 (&symfile->offset_table->_line_number_table_opcode_base);
556 stm.max_address_incr = (255 - stm.opcode_base) / stm.line_range;
558 mono_debugger_lock ();
560 ptr = symfile->raw_contents + minfo->lnt_offset;
562 stm.symfile = symfile;
563 stm.offset = stm.last_offset = 0;
564 stm.last_file = 0;
565 stm.last_line = 0;
566 stm.first_file = 0;
567 stm.file = 1;
568 stm.line = 1;
569 stm.is_hidden = FALSE;
571 while (TRUE) {
572 uint8_t opcode = *ptr++;
574 if (opcode == 0) {
575 uint8_t size = *ptr++;
576 const unsigned char *end_ptr = ptr + size;
578 opcode = *ptr++;
580 if (opcode == DW_LNE_end_sequence) {
581 if (il_offset_array->len == 0)
582 /* Empty table */
583 break;
584 break;
585 } else if (opcode == DW_LNE_MONO_negate_is_hidden) {
586 stm.is_hidden = !stm.is_hidden;
587 } else if ((opcode >= DW_LNE_MONO__extensions_start) &&
588 (opcode <= DW_LNE_MONO__extensions_end)) {
589 ; // reserved for future extensions
590 } else {
591 g_warning ("Unknown extended opcode %x in LNT", opcode);
594 ptr = end_ptr;
595 continue;
596 } else if (opcode < stm.opcode_base) {
597 switch (opcode) {
598 case DW_LNS_copy:
599 add_line (&stm, il_offset_array, line_number_array, source_file_array);
600 break;
601 case DW_LNS_advance_pc:
602 stm.offset += read_leb128 (ptr, &ptr);
603 break;
604 case DW_LNS_advance_line:
605 stm.line += read_leb128 (ptr, &ptr);
606 break;
607 case DW_LNS_set_file:
608 stm.file = read_leb128 (ptr, &ptr);
609 break;
610 case DW_LNS_const_add_pc:
611 stm.offset += stm.max_address_incr;
612 break;
613 default:
614 g_warning ("Unknown standard opcode %x in LNT", opcode);
615 g_assert_not_reached ();
617 } else {
618 opcode -= stm.opcode_base;
620 stm.offset += opcode / stm.line_range;
621 stm.line += stm.line_base + (opcode % stm.line_range);
623 add_line (&stm, il_offset_array, line_number_array, source_file_array);
627 if (!stm.file && stm.first_file)
628 stm.file = stm.first_file;
630 if (stm.file && source_file) {
631 int offset = read32(&(stm.symfile->offset_table->_source_table_offset)) +
632 (stm.file - 1) * sizeof (MonoSymbolFileSourceEntry);
633 MonoSymbolFileSourceEntry *se = (MonoSymbolFileSourceEntry *)
634 (stm.symfile->raw_contents + offset);
636 if (source_file)
637 *source_file = read_string (stm.symfile->raw_contents + read32(&(se->_data_offset)), NULL);
640 if (source_file_list) {
641 int file, last_file = 0;
643 *source_file_list = g_ptr_array_new ();
644 if (source_files)
645 *source_files = g_malloc (il_offset_array->len * sizeof (int));
647 for (i = 0; i < il_offset_array->len; ++i) {
648 file = GPOINTER_TO_UINT (g_ptr_array_index (source_file_array, i));
649 if (file && file != last_file) {
650 MonoDebugSourceInfo *info = get_source_info (symfile, file);
652 g_ptr_array_add (*source_file_list, info);
654 last_file = file;
655 if (source_files)
656 (*source_files) [i] = (*source_file_list)->len - 1;
658 if ((*source_file_list)->len == 0 && stm.file) {
659 MonoDebugSourceInfo *info = get_source_info (symfile, stm.file);
661 g_ptr_array_add (*source_file_list, info);
665 if (n_il_offsets)
666 *n_il_offsets = il_offset_array->len;
667 if (il_offsets && line_numbers) {
668 *il_offsets = g_malloc (il_offset_array->len * sizeof (int));
669 *line_numbers = g_malloc (il_offset_array->len * sizeof (int));
670 for (i = 0; i < il_offset_array->len; ++i) {
671 (*il_offsets) [i] = GPOINTER_TO_UINT (g_ptr_array_index (il_offset_array, i));
672 (*line_numbers) [i] = GPOINTER_TO_UINT (g_ptr_array_index (line_number_array, i));
676 if (column_numbers && has_column_info) {
677 column_info_read = TRUE;
678 *column_numbers = g_malloc (il_offset_array->len * sizeof (int));
679 for (i = 0; i < il_offset_array->len; ++i)
680 (*column_numbers) [i] = read_leb128 (ptr, &ptr);
683 if (has_end_info && end_line_numbers) {
684 g_assert (end_column_numbers);
685 *end_line_numbers = g_malloc (il_offset_array->len * sizeof (int));
686 *end_column_numbers = g_malloc (il_offset_array->len * sizeof (int));
687 if (has_column_info && !column_info_read) {
688 for (i = 0; i < il_offset_array->len; ++i)
689 read_leb128 (ptr, &ptr);
691 for (i = 0; i < il_offset_array->len; ++i) {
692 int end_row, end_column = -1;
694 end_row = read_leb128 (ptr, &ptr);
695 if (end_row != 0xffffff) {
696 end_row += GPOINTER_TO_UINT (g_ptr_array_index (line_number_array, i));
697 end_column = read_leb128 (ptr, &ptr);
698 (*end_line_numbers) [i] = end_row;
699 (*end_column_numbers) [i] = end_column;
704 g_ptr_array_free (il_offset_array, TRUE);
705 g_ptr_array_free (line_number_array, TRUE);
707 mono_debugger_unlock ();
708 return;
712 * mono_debug_symfile_get_line_numbers:
714 * All the output parameters can be NULL.
716 void
717 mono_debug_symfile_get_line_numbers (MonoDebugMethodInfo *minfo, char **source_file, int *n_il_offsets, int **il_offsets, int **line_numbers)
719 mono_debug_symfile_get_line_numbers_full (minfo, source_file, NULL, n_il_offsets, il_offsets, line_numbers, NULL, NULL, NULL, NULL);
722 int32_t
723 _mono_debug_address_from_il_offset (MonoDebugMethodJitInfo *jit, uint32_t il_offset)
725 int i;
727 if (!jit || !jit->line_numbers)
728 return -1;
730 for (i = jit->num_line_numbers - 1; i >= 0; i--) {
731 MonoDebugLineNumberEntry lne = jit->line_numbers [i];
733 if (lne.il_offset <= il_offset)
734 return lne.native_offset;
737 return 0;
740 static int
741 compare_method (const void *key, const void *object)
743 uint32_t token = GPOINTER_TO_UINT (key);
744 MonoSymbolFileMethodEntry *me = (MonoSymbolFileMethodEntry*)object;
746 return token - read32(&(me->_token));
749 MonoDebugMethodInfo *
750 mono_debug_symfile_lookup_method (MonoDebugHandle *handle, MonoMethod *method)
752 MonoSymbolFileMethodEntry *first_ie, *ie;
753 MonoDebugMethodInfo *minfo;
754 MonoSymbolFile *symfile = handle->symfile;
756 if (!symfile->method_hash)
757 return NULL;
759 if (handle->image != mono_class_get_image (mono_method_get_class (method)))
760 return NULL;
762 mono_debugger_lock ();
764 minfo = g_hash_table_lookup (symfile->method_hash, method);
765 if (minfo) {
766 mono_debugger_unlock ();
767 return minfo;
770 first_ie = (MonoSymbolFileMethodEntry *)
771 (symfile->raw_contents + read32(&(symfile->offset_table->_method_table_offset)));
773 ie = mono_binary_search (GUINT_TO_POINTER (mono_method_get_token (method)), first_ie,
774 read32(&(symfile->offset_table->_method_count)),
775 sizeof (MonoSymbolFileMethodEntry), compare_method);
777 if (!ie) {
778 mono_debugger_unlock ();
779 return NULL;
782 minfo = g_new0 (MonoDebugMethodInfo, 1);
783 minfo->index = (ie - first_ie) + 1;
784 minfo->method = method;
785 minfo->handle = handle;
787 minfo->data_offset = read32 (&(ie->_data_offset));
788 minfo->lnt_offset = read32 (&(ie->_line_number_table));
790 g_hash_table_insert (symfile->method_hash, method, minfo);
792 mono_debugger_unlock ();
793 return minfo;
797 * mono_debug_symfile_lookup_locals:
799 * Return information about the local variables of MINFO from the symbol file.
800 * Return NULL if no information can be found.
801 * The result should be freed using mono_debug_symfile_free_locals ().
803 MonoDebugLocalsInfo*
804 mono_debug_symfile_lookup_locals (MonoDebugMethodInfo *minfo)
806 MonoSymbolFile *symfile = minfo->handle->symfile;
807 const uint8_t *p;
808 int i, len, compile_unit_index, locals_offset, num_locals, block_index;
809 int namespace_id, code_block_table_offset;
810 MonoDebugLocalsInfo *res;
812 if (!symfile)
813 return NULL;
815 p = symfile->raw_contents + minfo->data_offset;
817 compile_unit_index = read_leb128 (p, &p);
818 locals_offset = read_leb128 (p, &p);
819 namespace_id = read_leb128 (p, &p);
820 code_block_table_offset = read_leb128 (p, &p);
822 res = g_new0 (MonoDebugLocalsInfo, 1);
824 p = symfile->raw_contents + code_block_table_offset;
825 res->num_blocks = read_leb128 (p, &p);
826 res->code_blocks = g_new0 (MonoDebugCodeBlock, res->num_blocks);
827 for (i = 0; i < res->num_blocks; ++i) {
828 res->code_blocks [i].type = read_leb128 (p, &p);
829 res->code_blocks [i].parent = read_leb128 (p, &p);
830 res->code_blocks [i].start_offset = read_leb128 (p, &p);
831 res->code_blocks [i].end_offset = read_leb128 (p, &p);
834 p = symfile->raw_contents + locals_offset;
835 num_locals = read_leb128 (p, &p);
837 res->num_locals = num_locals;
838 res->locals = g_new0 (MonoDebugLocalVar, num_locals);
840 for (i = 0; i < num_locals; ++i) {
841 res->locals [i].index = read_leb128 (p, &p);
842 len = read_leb128 (p, &p);
843 res->locals [i].name = g_malloc (len + 1);
844 memcpy (res->locals [i].name, p, len);
845 res->locals [i].name [len] = '\0';
846 p += len;
847 block_index = read_leb128 (p, &p);
848 if (block_index >= 1 && block_index <= res->num_blocks)
849 res->locals [i].block = &res->code_blocks [block_index - 1];
852 return res;
856 * mono_debug_symfile_free_locals:
858 * Free all the data allocated by mono_debug_symfile_lookup_locals ().
860 void
861 mono_debug_symfile_free_locals (MonoDebugLocalsInfo *info)
863 int i;
865 for (i = 0; i < info->num_locals; ++i)
866 g_free (info->locals [i].name);
867 g_free (info->locals);
868 g_free (info->code_blocks);
869 g_free (info);