[interp] Fix interp logging (#17636)
[mono-project.git] / mono / mini / jit.h
blob9fc6a183facba7e518a4fae739faffe6ba649ef4
1 /**
2 * \file
3 * Author:
4 * Dietmar Maurer (dietmar@ximian.com)
6 * (C) 2001, 2002, 2003 Ximian, Inc.
7 */
9 #ifndef _MONO_JIT_JIT_H_
10 #define _MONO_JIT_JIT_H_
12 #include <mono/metadata/appdomain.h>
14 MONO_BEGIN_DECLS
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);
22 MONO_API MonoDomain *
23 mono_jit_init_version_for_test_only (const char *root_domain_name, const char *runtime_version);
25 MONO_API int
26 mono_jit_exec (MonoDomain *domain, MonoAssembly *assembly,
27 int argc, char *argv[]);
28 MONO_API void
29 mono_jit_cleanup (MonoDomain *domain);
31 MONO_API mono_bool
32 mono_jit_set_trace_options (const char* options);
34 MONO_API void
35 mono_set_signal_chaining (mono_bool chain_signals);
37 MONO_API void
38 mono_set_crash_chaining (mono_bool chain_signals);
40 /**
41 * This function is deprecated, use mono_jit_set_aot_mode instead.
43 MONO_API void
44 mono_jit_set_aot_only (mono_bool aot_only);
46 /**
47 * Allows control over our AOT (Ahead-of-time) compilation mode.
49 typedef enum {
50 /* Disables AOT mode */
51 MONO_AOT_MODE_NONE,
52 /* Enables normal AOT mode, equivalent to mono_jit_set_aot_only (false) */
53 MONO_AOT_MODE_NORMAL,
54 /* Enables hybrid AOT mode, JIT can still be used for wrappers */
55 MONO_AOT_MODE_HYBRID,
56 /* Enables full AOT mode, JIT is disabled and not allowed,
57 * equivalent to mono_jit_set_aot_only (true) */
58 MONO_AOT_MODE_FULL,
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" */
63 MONO_AOT_MODE_INTERP,
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,
70 } MonoAotMode;
72 MONO_API void
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.
79 MONO_API mono_bool
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 ()
84 * method calls).
86 typedef enum {
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
93 * was compiled).
95 MONO_BREAK_POLICY_ON_DBG
96 } MonoBreakPolicy;
98 typedef MonoBreakPolicy (*MonoBreakPolicyFunc) (MonoMethod *method);
99 MONO_API void mono_set_break_policy (MonoBreakPolicyFunc policy_callback);
101 MONO_API void
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);
116 MONO_END_DECLS
118 #endif