Mono Debugger Interface
These are methods that are invoked by the debugger at
runtime.
mono_debugger_insert_breakpoint
Syntax
mono_debugger_insert_breakpoint
mono_debugger_method_has_breakpoint
Syntax
mono_debugger_method_has_breakpoint
Debugging Symbols
mono_debug_open_mono_symbols
Syntax
mono_debug_open_mono_symbols
mono_debug_symfile_free_location
Syntax
mono_debug_symfile_free_location
mono_debug_symfile_is_loaded
Syntax
mono_debug_symfile_is_loaded
mono_debug_symfile_lookup_locals
Syntax
mono_debug_symfile_lookup_locals
mono_debug_symfile_lookup_location
Syntax
MonoDebugSourceLocation*
mono_debug_symfile_lookup_location (MonoDebugMethodInfo *minfo, uint32_t offset)
Parameters
minfo | A `MonoDebugMethodInfo' which can be retrieved by |
Description
mono_debug_lookup_method().
offset: IL offset within the corresponding method's CIL code.
This function is similar to mono_debug_lookup_location(), but we
already looked up the method and also already did the
`native address -> IL offset' mapping.
mono_debug_symfile_lookup_method
Syntax
mono_debug_symfile_lookup_method
Internal Debugging
mono_debug_add_delegate_trampoline
Syntax
mono_debug_add_delegate_trampoline
mono_debug_close_image
Syntax
mono_debug_close_image
mono_debug_domain_create
Syntax
mono_debug_domain_create
mono_debug_domain_unload
Syntax
mono_debug_domain_unload
mono_debug_enabled
Syntax
mono_bool
mono_debug_enabled (void)
Description
Returns true is debug information is enabled. This doesn't relate if a debugger is present or not.
mono_debug_free_method_jit_info
Syntax
mono_debug_free_method_jit_info
mono_debug_free_source_location
Syntax
void
mono_debug_free_source_location (MonoDebugSourceLocation *location)
Parameters
location | A `MonoDebugSourceLocation'. |
Description
mono_debug_lookup_locals
Syntax
mono_debug_lookup_locals
mono_debug_lookup_method
Syntax
MonoDebugMethodInfo*
mono_debug_lookup_method (MonoMethod *method)
Description
Lookup symbol file information for the method
method. The returned
`MonoDebugMethodInfo' is a private structure, but it can be passed to
mono_debug_symfile_lookup_location().
mono_debug_lookup_method_addresses
Syntax
mono_debug_lookup_method_addresses
mono_debug_lookup_source_location
Syntax
MonoDebugSourceLocation*
mono_debug_lookup_source_location (MonoMethod *method, guint32 address, MonoDomain *domain)
Parameters
address | Native offset within the method's machine code. |
Description
Lookup the source code corresponding to the machine instruction located at
native offset
address within
method.
The returned `MonoDebugSourceLocation' contains both file / line number
information and the corresponding IL offset. It must be freed by
mono_debug_free_source_location().
mono_debug_open_image_from_memory
Syntax
mono_debug_open_image_from_memory
mono_debug_print_stack_frame
Syntax
gchar*
mono_debug_print_stack_frame (MonoMethod *method, guint32 native_offset, MonoDomain *domain)
Parameters
native_offset | Native offset within the method's machine code. |
Description
Conventient wrapper around mono_debug_lookup_source_location() which can be
used if you only want to use the location to print a stack frame.
mono_debug_remove_method
Syntax
mono_debug_remove_method
mono_debug_il_offset_from_address
Syntax
gint32
mono_debug_il_offset_from_address (MonoMethod *method, MonoDomain *domain, guint32 native_offset)
Description
Compute the IL offset corresponding to NATIVE_OFFSET inside the native
code of METHOD in DOMAIN.
mono_debug_add_method
Syntax
mono_debug_add_method
mono_debug_close_mono_symbol_file
Syntax
mono_debug_close_mono_symbol_file