2007-08-16 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / mono-debug.h
1 /*
2  * This header is only installed for use by the debugger:
3  * the structures and the API declared here are not supported.
4  */
5
6 #ifndef __MONO_DEBUG_H__
7 #define __MONO_DEBUG_H__
8
9 #include <glib.h>
10 #include <mono/metadata/image.h>
11 #include <mono/metadata/appdomain.h>
12
13 typedef struct _MonoSymbolTable                 MonoSymbolTable;
14 typedef struct _MonoDebugDataTable              MonoDebugDataTable;
15
16 typedef struct _MonoSymbolFile                  MonoSymbolFile;
17 typedef struct _MonoSymbolFilePriv              MonoSymbolFilePriv;
18
19 typedef struct _MonoDebugHandle                 MonoDebugHandle;
20 typedef struct _MonoDebugHandlePriv             MonoDebugHandlePriv;
21
22 typedef struct _MonoDebugLineNumberEntry        MonoDebugLineNumberEntry;
23 typedef struct _MonoDebugLexicalBlockEntry      MonoDebugLexicalBlockEntry;
24
25 typedef struct _MonoDebugVarInfo                MonoDebugVarInfo;
26 typedef struct _MonoDebugMethodJitInfo          MonoDebugMethodJitInfo;
27 typedef struct _MonoDebugMethodAddress          MonoDebugMethodAddress;
28 typedef struct _MonoDebugMethodAddressList      MonoDebugMethodAddressList;
29 typedef struct _MonoDebugClassEntry             MonoDebugClassEntry;
30
31 typedef struct _MonoDebugMethodInfo             MonoDebugMethodInfo;
32 typedef struct _MonoDebugSourceLocation         MonoDebugSourceLocation;
33
34 typedef enum {
35         MONO_DEBUG_FORMAT_NONE,
36         MONO_DEBUG_FORMAT_MONO,
37         MONO_DEBUG_FORMAT_DEBUGGER
38 } MonoDebugFormat;
39
40 typedef enum {
41         MONO_DEBUGGER_TYPE_KIND_UNKNOWN = 1,
42         MONO_DEBUGGER_TYPE_KIND_FUNDAMENTAL,
43         MONO_DEBUGGER_TYPE_KIND_STRING,
44         MONO_DEBUGGER_TYPE_KIND_SZARRAY,
45         MONO_DEBUGGER_TYPE_KIND_ARRAY,
46         MONO_DEBUGGER_TYPE_KIND_POINTER,
47         MONO_DEBUGGER_TYPE_KIND_ENUM,
48         MONO_DEBUGGER_TYPE_KIND_OBJECT,
49         MONO_DEBUGGER_TYPE_KIND_STRUCT,
50         MONO_DEBUGGER_TYPE_KIND_CLASS,
51         MONO_DEBUGGER_TYPE_KIND_CLASS_INFO,
52         MONO_DEBUGGER_TYPE_KIND_REFERENCE
53 } MonoDebuggerTypeKind;
54
55 struct _MonoSymbolTable {
56         guint64 magic;
57         guint32 version;
58         guint32 total_size;
59
60         /*
61          * Corlib and metadata info.
62          */
63         MonoDebugHandle *corlib;
64
65         /*
66          * The symbol files.
67          */
68         MonoDebugHandle **symbol_files;
69         guint32 num_symbol_files;
70
71         /*
72          * Data table.
73          * This is intentionally not a GPtrArray to make it more easy to
74          * read for the debugger.  The `data_tables' field contains
75          * `num_data_tables' pointers to continuous memory areas.
76          *
77          * The data table is basically a big continuous blob, but we need
78          * to split it up into pieces because we don't know the total size
79          * in advance and using g_realloc() doesn't work because that may
80          * reallocate the block to a different address.
81          */
82         guint32 num_data_tables;
83         gpointer *data_tables;
84 };
85
86 struct _MonoDebugHandle {
87         guint32 index;
88         char *image_file;
89         MonoImage *image;
90         MonoSymbolFile *symfile;
91         MonoDebugHandlePriv *_priv;
92 };
93
94 struct _MonoDebugMethodJitInfo {
95         const guint8 *code_start;
96         guint32 code_size;
97         guint32 prologue_end;
98         guint32 epilogue_begin;
99         const guint8 *wrapper_addr;
100         guint32 num_line_numbers;
101         MonoDebugLineNumberEntry *line_numbers;
102         guint32 num_lexical_blocks;
103         MonoDebugLexicalBlockEntry *lexical_blocks;
104         guint32 num_params;
105         MonoDebugVarInfo *this_var;
106         MonoDebugVarInfo *params;
107         guint32 num_locals;
108         MonoDebugVarInfo *locals;
109 };
110
111 struct _MonoDebugMethodAddressList {
112         guint32 size;
113         guint32 count;
114         guint8 data [MONO_ZERO_LEN_ARRAY];
115 };
116
117 struct _MonoDebugClassEntry {
118         guint32 size;
119         guint32 symfile_id;
120         guint8 data [MONO_ZERO_LEN_ARRAY];
121 };
122
123 struct _MonoDebugSourceLocation {
124         gchar *source_file;
125         guint32 row, column;
126         guint32 il_offset;
127 };
128
129 /*
130  * These bits of the MonoDebugLocalInfo's "index" field are flags specifying
131  * where the variable is actually stored.
132  *
133  * See relocate_variable() in debug-symfile.c for more info.
134  */
135 #define MONO_DEBUG_VAR_ADDRESS_MODE_FLAGS               0xf0000000
136
137 /* The variable is in register "index". */
138 #define MONO_DEBUG_VAR_ADDRESS_MODE_REGISTER            0
139
140 /* The variable is at offset "offset" from register "index". */
141 #define MONO_DEBUG_VAR_ADDRESS_MODE_REGOFFSET           0x10000000
142
143 /* The variable is in the two registers "offset" and "index". */
144 #define MONO_DEBUG_VAR_ADDRESS_MODE_TWO_REGISTERS       0x20000000
145
146 struct _MonoDebugVarInfo {
147         guint32 index;
148         guint32 offset;
149         guint32 size;
150         guint32 begin_scope;
151         guint32 end_scope;
152 };
153
154 #define MONO_DEBUGGER_VERSION                           59
155 #define MONO_DEBUGGER_MAGIC                             0x7aff65af4253d427ULL
156
157 extern MonoSymbolTable *mono_symbol_table;
158 extern MonoDebugDataTable *mono_debug_data_table;
159 extern MonoDebugFormat mono_debug_format;
160 extern GHashTable *mono_debug_handles;
161 extern gint32 mono_debug_debugger_version;
162
163 void mono_debug_init (MonoDebugFormat format);
164 void mono_debug_init_1 (MonoDomain *domain);
165 void mono_debug_init_2 (MonoAssembly *assembly);
166 void mono_debug_init_2_memory (MonoImage *image, const guint8 *raw_contents, int size);
167 void mono_debug_cleanup (void);
168
169 gboolean mono_debug_using_mono_debugger (void);
170
171 MonoDebugMethodAddress *
172 mono_debug_add_method (MonoMethod *method, MonoDebugMethodJitInfo *jit, MonoDomain *domain);
173
174 MonoDebugMethodInfo *
175 mono_debug_lookup_method (MonoMethod *method);
176
177 MonoDebugMethodAddressList *
178 mono_debug_lookup_method_addresses (MonoMethod *method);
179
180 MonoDebugMethodJitInfo*
181 mono_debug_find_method (MonoMethod *method, MonoDomain *domain);
182
183 /*
184  * Line number support.
185  */
186
187 MonoDebugSourceLocation *
188 mono_debug_lookup_source_location (MonoMethod *method, guint32 address, MonoDomain *domain);
189
190 void
191 mono_debug_free_source_location (MonoDebugSourceLocation *location);
192
193 gchar *
194 mono_debug_print_stack_frame (MonoMethod *method, guint32 native_offset, MonoDomain *domain);
195
196 /*
197  * Mono Debugger support functions
198  *
199  * These methods are used by the JIT while running inside the Mono Debugger.
200  */
201
202 int             mono_debugger_method_has_breakpoint       (MonoMethod *method);
203 int             mono_debugger_insert_breakpoint           (const gchar *method_name, gboolean include_namespace);
204 gboolean        mono_debugger_unhandled_exception         (gpointer addr, gpointer stack, MonoObject *exc);
205 void            mono_debugger_handle_exception            (gpointer addr, gpointer stack, MonoObject *exc);
206 gboolean        mono_debugger_throw_exception             (gpointer addr, gpointer stack, MonoObject *exc);
207
208 #endif /* __MONO_DEBUG_H__ */