4 * Dietmar Maurer (dietmar@ximian.com)
6 * (C) 2001, 2002, 2003 Ximian, Inc.
9 #ifndef _MONO_JIT_JIT_H_
10 #define _MONO_JIT_JIT_H_
12 #include <mono/metadata/appdomain.h>
16 MONO_API MONO_RT_EXTERNAL_ONLY MonoDomain
*
17 mono_jit_init (const char *file
);
19 MONO_API MONO_RT_EXTERNAL_ONLY MonoDomain
*
20 mono_jit_init_version (const char *root_domain_name
, const char *runtime_version
);
23 mono_jit_init_version_for_test_only (const char *root_domain_name
, const char *runtime_version
);
26 mono_jit_exec (MonoDomain
*domain
, MonoAssembly
*assembly
,
27 int argc
, char *argv
[]);
29 mono_jit_cleanup (MonoDomain
*domain
);
32 mono_jit_set_trace_options (const char* options
);
35 mono_set_signal_chaining (mono_bool chain_signals
);
38 mono_set_crash_chaining (mono_bool chain_signals
);
41 * This function is deprecated, use mono_jit_set_aot_mode instead.
44 mono_jit_set_aot_only (mono_bool aot_only
);
47 * Allows control over our AOT (Ahead-of-time) compilation mode.
50 /* Disables AOT mode */
52 /* Enables normal AOT mode, equivalent to mono_jit_set_aot_only (false) */
54 /* Enables hybrid AOT mode, JIT can still be used for wrappers */
56 /* Enables full AOT mode, JIT is disabled and not allowed,
57 * equivalent to mono_jit_set_aot_only (true) */
59 /* Same as full, but use only llvm compiled code */
60 MONO_AOT_MODE_LLVMONLY
,
61 /* Uses Interpreter, JIT is disabled and not allowed,
62 * equivalent to "--full-aot --interpreter" */
64 /* Same as INTERP, but use only llvm compiled code */
65 MONO_AOT_MODE_INTERP_LLVMONLY
,
66 /* Use only llvm compiled code, fall back to the interpeter */
67 MONO_AOT_MODE_LLVMONLY_INTERP
,
68 /* Sentinel value used internally by the runtime. We use a large number to avoid clashing with some internal values. */
69 MONO_AOT_MODE_LAST
= 1000,
73 mono_jit_set_aot_mode (MonoAotMode mode
);
76 * Returns whether the runtime was invoked for the purpose of AOT-compiling an
77 * assembly, i.e. no managed code will run.
80 mono_jit_aot_compiling (void);
82 /* Allow embedders to decide wherther to actually obey breakpoint instructions
83 * in specific methods (works for both break IL instructions and Debugger.Break ()
87 /* the default is to always obey the breakpoint */
88 MONO_BREAK_POLICY_ALWAYS
,
89 /* a nop is inserted instead of a breakpoint */
90 MONO_BREAK_POLICY_NEVER
,
91 /* the breakpoint is executed only if the program has ben started under
92 * the debugger (that is if a debugger was attached at the time the method
95 MONO_BREAK_POLICY_ON_DBG
98 typedef MonoBreakPolicy (*MonoBreakPolicyFunc
) (MonoMethod
*method
);
99 MONO_API
void mono_set_break_policy (MonoBreakPolicyFunc policy_callback
);
102 mono_jit_parse_options (int argc
, char * argv
[]);
104 MONO_API
char* mono_get_runtime_build_info (void);
106 MONO_API MONO_RT_EXTERNAL_ONLY
void
107 mono_set_use_llvm (mono_bool use_llvm
);
109 MONO_API MONO_RT_EXTERNAL_ONLY
void
110 mono_aot_register_module (void **aot_info
);
112 MONO_API MONO_RT_EXTERNAL_ONLY
113 MonoDomain
* mono_jit_thread_attach (MonoDomain
*domain
);