X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fmetadata%2Fmono-debug.h;h=daba9e2ee1cdf81f35105014fd1b097b0bd296e0;hb=157cb97206f627685c15410953d2767146f6e426;hp=eeb116790522363956021fe0440fa377fa273d8e;hpb=70b7a2985e1dc2755d79b26e1c116a8dcdc22039;p=mono.git diff --git a/mono/metadata/mono-debug.h b/mono/metadata/mono-debug.h index eeb11679052..daba9e2ee1c 100644 --- a/mono/metadata/mono-debug.h +++ b/mono/metadata/mono-debug.h @@ -6,10 +6,12 @@ #ifndef __MONO_DEBUG_H__ #define __MONO_DEBUG_H__ -#include +#include #include #include +MONO_BEGIN_DECLS + typedef struct _MonoSymbolTable MonoSymbolTable; typedef struct _MonoDebugDataTable MonoDebugDataTable; @@ -18,7 +20,6 @@ typedef struct _MonoSymbolFile MonoSymbolFile; typedef struct _MonoDebugHandle MonoDebugHandle; typedef struct _MonoDebugLineNumberEntry MonoDebugLineNumberEntry; -typedef struct _MonoDebugLexicalBlockEntry MonoDebugLexicalBlockEntry; typedef struct _MonoDebugVarInfo MonoDebugVarInfo; typedef struct _MonoDebugMethodJitInfo MonoDebugMethodJitInfo; @@ -27,6 +28,7 @@ typedef struct _MonoDebugMethodAddressList MonoDebugMethodAddressList; typedef struct _MonoDebugClassEntry MonoDebugClassEntry; typedef struct _MonoDebugMethodInfo MonoDebugMethodInfo; +typedef struct _MonoDebugLocalsInfo MonoDebugLocalsInfo; typedef struct _MonoDebugSourceLocation MonoDebugSourceLocation; typedef struct _MonoDebugList MonoDebugList; @@ -37,21 +39,6 @@ typedef enum { MONO_DEBUG_FORMAT_DEBUGGER } MonoDebugFormat; -typedef enum { - MONO_DEBUGGER_TYPE_KIND_UNKNOWN = 1, - MONO_DEBUGGER_TYPE_KIND_FUNDAMENTAL, - MONO_DEBUGGER_TYPE_KIND_STRING, - MONO_DEBUGGER_TYPE_KIND_SZARRAY, - MONO_DEBUGGER_TYPE_KIND_ARRAY, - MONO_DEBUGGER_TYPE_KIND_POINTER, - MONO_DEBUGGER_TYPE_KIND_ENUM, - MONO_DEBUGGER_TYPE_KIND_OBJECT, - MONO_DEBUGGER_TYPE_KIND_STRUCT, - MONO_DEBUGGER_TYPE_KIND_CLASS, - MONO_DEBUGGER_TYPE_KIND_CLASS_INFO, - MONO_DEBUGGER_TYPE_KIND_REFERENCE -} MonoDebuggerTypeKind; - /* * NOTE: * We intentionally do not use GList here since the debugger needs to know about @@ -59,19 +46,19 @@ typedef enum { */ struct _MonoDebugList { MonoDebugList *next; - gconstpointer data; + const void* data; }; struct _MonoSymbolTable { - guint64 magic; - guint32 version; - guint32 total_size; + uint64_t magic; + uint32_t version; + uint32_t total_size; /* * Corlib and metadata info. */ MonoDebugHandle *corlib; - + MonoDebugDataTable *global_data_table; MonoDebugList *data_tables; /* @@ -81,7 +68,7 @@ struct _MonoSymbolTable { }; struct _MonoDebugHandle { - guint32 index; + uint32_t index; char *image_file; MonoImage *image; MonoDebugDataTable *type_table; @@ -89,32 +76,32 @@ struct _MonoDebugHandle { }; struct _MonoDebugMethodJitInfo { - const guint8 *code_start; - guint32 code_size; - guint32 prologue_end; - guint32 epilogue_begin; - const guint8 *wrapper_addr; - guint32 num_line_numbers; + const mono_byte *code_start; + uint32_t code_size; + uint32_t prologue_end; + uint32_t epilogue_begin; + const mono_byte *wrapper_addr; + uint32_t num_line_numbers; MonoDebugLineNumberEntry *line_numbers; - guint32 num_lexical_blocks; - MonoDebugLexicalBlockEntry *lexical_blocks; - guint32 num_params; + uint32_t num_params; MonoDebugVarInfo *this_var; MonoDebugVarInfo *params; - guint32 num_locals; + uint32_t num_locals; MonoDebugVarInfo *locals; + MonoDebugVarInfo *gsharedvt_info_var; + MonoDebugVarInfo *gsharedvt_locals_var; }; struct _MonoDebugMethodAddressList { - guint32 size; - guint32 count; - guint8 data [MONO_ZERO_LEN_ARRAY]; + uint32_t size; + uint32_t count; + mono_byte data [MONO_ZERO_LEN_ARRAY]; }; struct _MonoDebugSourceLocation { - gchar *source_file; - guint32 row, column; - guint32 il_offset; + char *source_file; + uint32_t row, column; + uint32_t il_offset; }; /* @@ -134,28 +121,38 @@ struct _MonoDebugSourceLocation { /* The variable is in the two registers "offset" and "index". */ #define MONO_DEBUG_VAR_ADDRESS_MODE_TWO_REGISTERS 0x20000000 +/* The variable is dead. */ +#define MONO_DEBUG_VAR_ADDRESS_MODE_DEAD 0x30000000 + +/* Same as REGOFFSET, but do an indirection */ +#define MONO_DEBUG_VAR_ADDRESS_MODE_REGOFFSET_INDIR 0x40000000 + +/* gsharedvt local */ +#define MONO_DEBUG_VAR_ADDRESS_MODE_GSHAREDVT_LOCAL 0x50000000 + struct _MonoDebugVarInfo { - guint32 index; - guint32 offset; - guint32 size; - guint32 begin_scope; - guint32 end_scope; + uint32_t index; + uint32_t offset; + uint32_t size; + uint32_t begin_scope; + uint32_t end_scope; MonoType *type; }; -#define MONO_DEBUGGER_VERSION 60 +#define MONO_DEBUGGER_MAJOR_VERSION 81 +#define MONO_DEBUGGER_MINOR_VERSION 6 #define MONO_DEBUGGER_MAGIC 0x7aff65af4253d427ULL extern MonoSymbolTable *mono_symbol_table; extern MonoDebugFormat mono_debug_format; -extern GHashTable *mono_debug_handles; -extern gint32 mono_debug_debugger_version; +extern int32_t mono_debug_debugger_version; +extern int32_t _mono_debug_using_mono_debugger; -void mono_debug_list_add (MonoDebugList **list, gconstpointer data); -void mono_debug_list_remove (MonoDebugList **list, gconstpointer data); +void mono_debug_list_add (MonoDebugList **list, const void* data); +void mono_debug_list_remove (MonoDebugList **list, const void* data); void mono_debug_init (MonoDebugFormat format); -void mono_debug_open_image_from_memory (MonoImage *image, const guint8 *raw_contents, int size); +void mono_debug_open_image_from_memory (MonoImage *image, const mono_byte *raw_contents, int size); void mono_debug_cleanup (void); void mono_debug_close_image (MonoImage *image); @@ -163,11 +160,14 @@ void mono_debug_close_image (MonoImage *image); void mono_debug_domain_unload (MonoDomain *domain); void mono_debug_domain_create (MonoDomain *domain); -gboolean mono_debug_using_mono_debugger (void); +mono_bool mono_debug_using_mono_debugger (void); MonoDebugMethodAddress * mono_debug_add_method (MonoMethod *method, MonoDebugMethodJitInfo *jit, MonoDomain *domain); +void +mono_debug_remove_method (MonoMethod *method, MonoDomain *domain); + MonoDebugMethodInfo * mono_debug_lookup_method (MonoMethod *method); @@ -177,18 +177,31 @@ mono_debug_lookup_method_addresses (MonoMethod *method); MonoDebugMethodJitInfo* mono_debug_find_method (MonoMethod *method, MonoDomain *domain); +void +mono_debug_free_method_jit_info (MonoDebugMethodJitInfo *jit); + + +void +mono_debug_add_delegate_trampoline (void* code, int size); + +MonoDebugLocalsInfo* +mono_debug_lookup_locals (MonoMethod *method); + /* * Line number support. */ MonoDebugSourceLocation * -mono_debug_lookup_source_location (MonoMethod *method, guint32 address, MonoDomain *domain); +mono_debug_lookup_source_location (MonoMethod *method, uint32_t address, MonoDomain *domain); + +int32_t +mono_debug_il_offset_from_address (MonoMethod *method, MonoDomain *domain, uint32_t native_offset); void mono_debug_free_source_location (MonoDebugSourceLocation *location); -gchar * -mono_debug_print_stack_frame (MonoMethod *method, guint32 native_offset, MonoDomain *domain); +char * +mono_debug_print_stack_frame (MonoMethod *method, uint32_t native_offset, MonoDomain *domain); /* * Mono Debugger support functions @@ -197,9 +210,11 @@ mono_debug_print_stack_frame (MonoMethod *method, guint32 native_offset, MonoDom */ int mono_debugger_method_has_breakpoint (MonoMethod *method); -int mono_debugger_insert_breakpoint (const gchar *method_name, gboolean include_namespace); -gboolean mono_debugger_unhandled_exception (gpointer addr, gpointer stack, MonoObject *exc); -void mono_debugger_handle_exception (gpointer addr, gpointer stack, MonoObject *exc); -gboolean mono_debugger_throw_exception (gpointer addr, gpointer stack, MonoObject *exc); +int mono_debugger_insert_breakpoint (const char *method_name, mono_bool include_namespace); + +void mono_set_is_debugger_attached (mono_bool attached); +mono_bool mono_is_debugger_attached (void); + +MONO_END_DECLS #endif /* __MONO_DEBUG_H__ */