2010-02-10 Geoff Norton <gnorton@novell.com>
[mono.git] / mono / mini / debug-mini.h
1 #ifndef __DEBUG_MINI_H__
2 #define __DEBUG_MINI_H__
3
4 #include <mono/metadata/class-internals.h>
5 #include <mono/metadata/mono-debug-debugger.h>
6
7 #include "mini.h"
8
9 typedef struct _MonoDebuggerThreadInfo MonoDebuggerThreadInfo;
10 extern MonoDebuggerThreadInfo *mono_debugger_thread_table;
11
12 void
13 mono_debugger_thread_created (gsize tid, MonoThread *thread, MonoJitTlsData *jit_tls, gpointer func);
14
15 void
16 mono_debugger_thread_cleanup (MonoJitTlsData *jit_tls);
17
18 void
19 mono_debugger_extended_notification (MonoDebuggerEvent event, guint64 data, guint64 arg);
20
21 void
22 mono_debugger_trampoline_compiled (const guint8 *trampoline, MonoMethod *method, const guint8 *code);
23
24 void
25 mono_debugger_call_exception_handler (gpointer addr, gpointer stack, MonoObject *exc);
26
27 gboolean
28 mono_debugger_handle_exception (MonoContext *ctx, MonoObject *obj);
29
30 MonoObject *
31 mono_debugger_runtime_invoke (MonoMethod *method, void *obj, void **params, MonoObject **exc);
32
33 /*
34  * Internal exception API.
35  */
36
37 typedef enum {
38         MONO_DEBUGGER_EXCEPTION_ACTION_NONE             = 0,
39         MONO_DEBUGGER_EXCEPTION_ACTION_STOP             = 1,
40         MONO_DEBUGGER_EXCEPTION_ACTION_STOP_UNHANDLED   = 2
41 } MonoDebuggerExceptionAction;
42
43 MonoDebuggerExceptionAction
44 _mono_debugger_throw_exception (gpointer addr, gpointer stack, MonoObject *exc);
45
46 gboolean
47 _mono_debugger_unhandled_exception (gpointer addr, gpointer stack, MonoObject *exc);
48
49 /*
50  * This is the old breakpoint interface.
51  * It isn't used by the debugger anymore, but still when using the `--break' command
52  * line argument.
53  */
54
55 int             mono_debugger_insert_breakpoint_full      (MonoMethodDesc *desc);
56 int             mono_debugger_remove_breakpoint           (int breakpoint_id);
57 void            mono_debugger_breakpoint_callback         (MonoMethod *method, guint32 idx);
58
59 #endif