Merge pull request #4727 from BrzVlad/fix-xamarin-studio
[mono-project.git] / mono / metadata / domain-internals.h
blobbdab742092f8c75340cf6bbaf3054bcbe9582356
1 /**
2 * \file
3 * Appdomain-related internal data structures and functions.
4 * Copyright 2012 Xamarin Inc (http://www.xamarin.com)
5 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
6 */
7 #ifndef __MONO_METADATA_DOMAIN_INTERNALS_H__
8 #define __MONO_METADATA_DOMAIN_INTERNALS_H__
10 #include <mono/metadata/appdomain.h>
11 #include <mono/metadata/mempool.h>
12 #include <mono/metadata/lock-tracer.h>
13 #include <mono/utils/mono-codeman.h>
14 #include <mono/metadata/mono-hash.h>
15 #include <mono/utils/mono-compiler.h>
16 #include <mono/utils/mono-internal-hash.h>
17 #include <mono/metadata/mempool-internals.h>
20 * If this is set, the memory belonging to appdomains is not freed when a domain is
21 * unloaded, and assemblies loaded by the appdomain are not unloaded either. This
22 * allows us to use typed gc in non-default appdomains too, leading to increased
23 * performance.
24 */
25 extern gboolean mono_dont_free_domains;
27 /* This is a copy of System.AppDomainSetup */
28 typedef struct {
29 MonoObject object;
30 MonoString *application_base;
31 MonoString *application_name;
32 MonoString *cache_path;
33 MonoString *configuration_file;
34 MonoString *dynamic_base;
35 MonoString *license_file;
36 MonoString *private_bin_path;
37 MonoString *private_bin_path_probe;
38 MonoString *shadow_copy_directories;
39 MonoString *shadow_copy_files;
40 MonoBoolean publisher_policy;
41 MonoBoolean path_changed;
42 int loader_optimization;
43 MonoBoolean disallow_binding_redirects;
44 MonoBoolean disallow_code_downloads;
45 MonoObject *activation_arguments; /* it is System.Object in 1.x, ActivationArguments in 2.0 */
46 MonoObject *domain_initializer;
47 MonoObject *application_trust; /* it is System.Object in 1.x, ApplicationTrust in 2.0 */
48 MonoArray *domain_initializer_args;
49 MonoBoolean disallow_appbase_probe;
50 MonoArray *configuration_bytes;
51 MonoArray *serialized_non_primitives;
52 } MonoAppDomainSetup;
54 typedef struct _MonoJitInfoTable MonoJitInfoTable;
55 typedef struct _MonoJitInfoTableChunk MonoJitInfoTableChunk;
57 #define MONO_JIT_INFO_TABLE_CHUNK_SIZE 64
59 struct _MonoJitInfoTableChunk
61 int refcount;
62 volatile int num_elements;
63 volatile gint8 *last_code_end;
64 MonoJitInfo *next_tombstone;
65 MonoJitInfo * volatile data [MONO_JIT_INFO_TABLE_CHUNK_SIZE];
68 struct _MonoJitInfoTable
70 MonoDomain *domain;
71 int num_chunks;
72 MonoJitInfoTableChunk *chunks [MONO_ZERO_LEN_ARRAY];
75 #define MONO_SIZEOF_JIT_INFO_TABLE (sizeof (struct _MonoJitInfoTable) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
77 typedef GArray MonoAotModuleInfoTable;
79 typedef struct {
80 guint32 flags;
81 gint32 exvar_offset;
82 gpointer try_start;
83 gpointer try_end;
84 gpointer handler_start;
86 * For LLVM compiled code, this is the index of the il clause
87 * associated with this handler.
89 int clause_index;
90 uint32_t try_offset;
91 uint32_t try_len;
92 uint32_t handler_offset;
93 uint32_t handler_len;
94 union {
95 MonoClass *catch_class;
96 gpointer filter;
97 gpointer handler_end;
98 } data;
99 } MonoJitExceptionInfo;
102 * Contains information about the type arguments for generic shared methods.
104 typedef struct {
105 gboolean is_gsharedvt;
106 } MonoGenericSharingContext;
108 /* Simplified DWARF location list entry */
109 typedef struct {
110 /* Whenever the value is in a register */
111 gboolean is_reg;
113 * If is_reg is TRUE, the register which contains the value. Otherwise
114 * the base register.
116 int reg;
118 * If is_reg is FALSE, the offset of the stack location relative to 'reg'.
119 * Otherwise, 0.
121 int offset;
123 * Offsets of the PC interval where the value is in this location.
125 int from, to;
126 } MonoDwarfLocListEntry;
128 typedef struct
130 MonoGenericSharingContext *generic_sharing_context;
131 int nlocs;
132 MonoDwarfLocListEntry *locations;
133 gint32 this_offset;
134 guint8 this_reg;
135 gboolean has_this:1;
136 gboolean this_in_reg:1;
137 } MonoGenericJitInfo;
140 A try block hole is used to represent a non-contiguous part of
141 of a segment of native code protected by a given .try block.
142 Usually, a try block is defined as a contiguous segment of code.
143 But in some cases it's needed to have some parts of it to not be protected.
144 For example, given "try {} finally {}", the code in the .try block to call
145 the finally part looks like:
147 try {
149 call finally_block
150 adjust stack
151 jump outside try block
153 } finally {
157 The instructions between the call and the jump should not be under the try block since they happen
158 after the finally block executes, which means if an async exceptions happens at that point we would
159 execute the finally clause twice. So, to avoid this, we introduce a hole in the try block to signal
160 that those instructions are not protected.
162 typedef struct
164 guint32 offset;
165 guint16 clause;
166 guint16 length;
167 } MonoTryBlockHoleJitInfo;
169 typedef struct
171 guint16 num_holes;
172 MonoTryBlockHoleJitInfo holes [MONO_ZERO_LEN_ARRAY];
173 } MonoTryBlockHoleTableJitInfo;
175 typedef struct
177 guint32 stack_size;
178 guint32 epilog_size;
179 } MonoArchEHJitInfo;
181 typedef struct {
182 /* Relative to code_start */
183 int thunks_offset;
184 int thunks_size;
185 } MonoThunkJitInfo;
187 typedef struct {
188 guint8 *unw_info;
189 int unw_info_len;
190 } MonoUnwindJitInfo;
192 typedef enum {
193 JIT_INFO_NONE = 0,
194 JIT_INFO_HAS_GENERIC_JIT_INFO = (1 << 0),
195 JIT_INFO_HAS_TRY_BLOCK_HOLES = (1 << 1),
196 JIT_INFO_HAS_ARCH_EH_INFO = (1 << 2),
197 JIT_INFO_HAS_THUNK_INFO = (1 << 3),
199 * If this is set, the unwind info is stored in the structure, instead of being pointed to by the
200 * 'unwind_info' field.
202 JIT_INFO_HAS_UNWIND_INFO = (1 << 4)
203 } MonoJitInfoFlags;
205 struct _MonoJitInfo {
206 /* NOTE: These first two elements (method and
207 next_jit_code_hash) must be in the same order and at the
208 same offset as in RuntimeMethod, because of the jit_code_hash
209 internal hash table in MonoDomain. */
210 union {
211 MonoMethod *method;
212 MonoImage *image;
213 gpointer aot_info;
214 gpointer tramp_info;
215 } d;
216 union {
217 struct _MonoJitInfo *next_jit_code_hash;
218 struct _MonoJitInfo *next_tombstone;
219 } n;
220 gpointer code_start;
221 guint32 unwind_info;
222 int code_size;
223 guint32 num_clauses:15;
224 /* Whenever the code is domain neutral or 'shared' */
225 gboolean domain_neutral:1;
226 gboolean has_generic_jit_info:1;
227 gboolean has_try_block_holes:1;
228 gboolean has_arch_eh_info:1;
229 gboolean has_thunk_info:1;
230 gboolean has_unwind_info:1;
231 gboolean from_aot:1;
232 gboolean from_llvm:1;
233 gboolean dbg_attrs_inited:1;
234 gboolean dbg_hidden:1;
235 /* Whenever this jit info was loaded in async context */
236 gboolean async:1;
237 gboolean dbg_step_through:1;
238 gboolean dbg_non_user_code:1;
240 * Whenever this jit info refers to a trampoline.
241 * d.tramp_info contains additional data in this case.
243 gboolean is_trampoline:1;
245 /* FIXME: Embed this after the structure later*/
246 gpointer gc_info; /* Currently only used by SGen */
248 MonoJitExceptionInfo clauses [MONO_ZERO_LEN_ARRAY];
249 /* There is an optional MonoGenericJitInfo after the clauses */
250 /* There is an optional MonoTryBlockHoleTableJitInfo after MonoGenericJitInfo clauses*/
251 /* There is an optional MonoArchEHJitInfo after MonoTryBlockHoleTableJitInfo */
252 /* There is an optional MonoThunkJitInfo after MonoArchEHJitInfo */
255 #define MONO_SIZEOF_JIT_INFO (offsetof (struct _MonoJitInfo, clauses))
257 typedef struct {
258 gpointer *static_data; /* Used to free the static data without going through the MonoAppContext object itself. */
259 uint32_t gc_handle;
260 } ContextStaticData;
262 struct _MonoAppContext {
263 MonoObject obj;
264 gint32 domain_id;
265 gint32 context_id;
266 gpointer *static_data;
267 ContextStaticData *data;
270 /* Lock-free allocator */
271 typedef struct {
272 guint8 *mem;
273 gpointer prev;
274 int size, pos;
275 } LockFreeMempoolChunk;
277 typedef struct {
278 LockFreeMempoolChunk *current, *chunks;
279 } LockFreeMempool;
282 * We have two unloading states because the domain
283 * must remain fully functional while AppDomain::DomainUnload is
284 * processed.
285 * After that unloading began and all domain facilities are teared down
286 * such as execution of new threadpool jobs.
288 typedef enum {
289 MONO_APPDOMAIN_CREATED,
290 MONO_APPDOMAIN_UNLOADING_START,
291 MONO_APPDOMAIN_UNLOADING,
292 MONO_APPDOMAIN_UNLOADED
293 } MonoAppDomainState;
295 typedef struct _MonoThunkFreeList {
296 guint32 size;
297 int length; /* only valid for the wait list */
298 struct _MonoThunkFreeList *next;
299 } MonoThunkFreeList;
301 typedef struct _MonoJitCodeHash MonoJitCodeHash;
303 struct _MonoDomain {
305 * This lock must never be taken before the loader lock,
306 * i.e. if both are taken by the same thread, the loader lock
307 * must taken first.
309 MonoCoopMutex lock;
310 MonoMemPool *mp;
311 MonoCodeManager *code_mp;
313 * keep all the managed objects close to each other for the precise GC
314 * For the Boehm GC we additionally keep close also other GC-tracked pointers.
316 #define MONO_DOMAIN_FIRST_OBJECT setup
317 MonoAppDomainSetup *setup;
318 MonoAppDomain *domain;
319 MonoAppContext *default_context;
320 MonoException *out_of_memory_ex;
321 MonoException *null_reference_ex;
322 MonoException *stack_overflow_ex;
323 /* typeof (void) */
324 MonoObject *typeof_void;
325 /* Ephemeron Tombstone*/
326 MonoObject *ephemeron_tombstone;
327 /* new MonoType [0] */
328 MonoArray *empty_types;
329 MonoString *empty_string;
331 * The fields between FIRST_GC_TRACKED and LAST_GC_TRACKED are roots, but
332 * not object references.
334 #define MONO_DOMAIN_FIRST_GC_TRACKED env
335 MonoGHashTable *env;
336 MonoGHashTable *ldstr_table;
337 /* hashtables for Reflection handles */
338 MonoGHashTable *type_hash;
339 MonoGHashTable *refobject_hash;
340 /* maps class -> type initialization exception object */
341 MonoGHashTable *type_init_exception_hash;
342 /* maps delegate trampoline addr -> delegate object */
343 MonoGHashTable *delegate_hash_table;
344 #define MONO_DOMAIN_LAST_GC_TRACKED delegate_hash_table
345 guint32 state;
346 /* Needed by Thread:GetDomainID() */
347 gint32 domain_id;
348 gint32 shadow_serial;
349 GSList *domain_assemblies;
350 MonoAssembly *entry_assembly;
351 char *friendly_name;
352 GPtrArray *class_vtable_array;
353 /* maps remote class key -> MonoRemoteClass */
354 GHashTable *proxy_vtable_hash;
355 /* Protected by 'jit_code_hash_lock' */
356 MonoInternalHashTable jit_code_hash;
357 mono_mutex_t jit_code_hash_lock;
358 int num_jit_info_tables;
359 MonoJitInfoTable *
360 volatile jit_info_table;
362 * Contains information about AOT loaded code.
363 * Only used in the root domain.
365 MonoJitInfoTable *
366 volatile aot_modules;
367 GSList *jit_info_free_queue;
368 /* Used when loading assemblies */
369 gchar **search_path;
370 gchar *private_bin_path;
371 LockFreeMempool *lock_free_mp;
373 /* Used by remoting proxies */
374 MonoMethod *create_proxy_for_type_method;
375 MonoMethod *private_invoke_method;
376 /* Used to store offsets of thread and context static fields */
377 GHashTable *special_static_fields;
379 * This must be a GHashTable, since these objects can't be finalized
380 * if the hashtable contains a GC visible reference to them.
382 GHashTable *finalizable_objects_hash;
384 /* Protects the three hashes above */
385 mono_mutex_t finalizable_objects_hash_lock;
386 /* Used when accessing 'domain_assemblies' */
387 mono_mutex_t assemblies_lock;
389 GHashTable *method_rgctx_hash;
391 GHashTable *generic_virtual_cases;
393 /* Information maintained by the JIT engine */
394 gpointer runtime_info;
396 /* Contains the compiled runtime invoke wrapper used by finalizers */
397 gpointer finalize_runtime_invoke;
399 /* Contains the compiled runtime invoke wrapper used by async resylt creation to capture thread context*/
400 gpointer capture_context_runtime_invoke;
402 /* Contains the compiled method used by async resylt creation to capture thread context*/
403 gpointer capture_context_method;
405 /* Assembly bindings, the per-domain part */
406 GSList *assembly_bindings;
407 gboolean assembly_bindings_parsed;
409 /* Used by socket-io.c */
410 /* These are domain specific, since the assembly can be unloaded */
411 MonoImage *socket_assembly;
412 MonoClass *sockaddr_class;
413 MonoClassField *sockaddr_data_field;
414 MonoClassField *sockaddr_data_length_field;
416 /* Cache function pointers for architectures */
417 /* that require wrappers */
418 GHashTable *ftnptrs_hash;
420 /* Maps MonoMethod* to weak links to DynamicMethod objects */
421 GHashTable *method_to_dyn_method;
423 /* <ThrowUnobservedTaskExceptions /> support */
424 gboolean throw_unobserved_task_exceptions;
426 guint32 execution_context_field_offset;
429 typedef struct {
430 guint16 major, minor, build, revision;
431 } AssemblyVersionSet;
433 /* MonoRuntimeInfo: Contains information about versions supported by this runtime */
434 typedef struct {
435 const char runtime_version [12];
436 const char framework_version [4];
437 const AssemblyVersionSet version_sets [5];
438 } MonoRuntimeInfo;
440 #define mono_domain_assemblies_lock(domain) mono_locks_os_acquire(&(domain)->assemblies_lock, DomainAssembliesLock)
441 #define mono_domain_assemblies_unlock(domain) mono_locks_os_release(&(domain)->assemblies_lock, DomainAssembliesLock)
442 #define mono_domain_jit_code_hash_lock(domain) mono_locks_os_acquire(&(domain)->jit_code_hash_lock, DomainJitCodeHashLock)
443 #define mono_domain_jit_code_hash_unlock(domain) mono_locks_os_release(&(domain)->jit_code_hash_lock, DomainJitCodeHashLock)
445 typedef MonoDomain* (*MonoLoadFunc) (const char *filename, const char *runtime_version);
447 void mono_domain_lock (MonoDomain *domain) MONO_LLVM_INTERNAL;
448 void mono_domain_unlock (MonoDomain *domain) MONO_LLVM_INTERNAL;
450 void
451 mono_install_runtime_load (MonoLoadFunc func);
453 MonoDomain*
454 mono_runtime_load (const char *filename, const char *runtime_version);
456 typedef void (*MonoCreateDomainFunc) (MonoDomain *domain);
458 void
459 mono_install_create_domain_hook (MonoCreateDomainFunc func);
461 typedef void (*MonoFreeDomainFunc) (MonoDomain *domain);
463 void
464 mono_install_free_domain_hook (MonoFreeDomainFunc func);
466 void
467 mono_cleanup (void);
469 void
470 mono_close_exe_image (void);
473 mono_jit_info_size (MonoJitInfoFlags flags, int num_clauses, int num_holes);
475 void
476 mono_jit_info_init (MonoJitInfo *ji, MonoMethod *method, guint8 *code, int code_size,
477 MonoJitInfoFlags flags, int num_clauses, int num_holes);
479 MonoJitInfoTable *
480 mono_jit_info_table_new (MonoDomain *domain);
482 void
483 mono_jit_info_table_free (MonoJitInfoTable *table);
485 void
486 mono_jit_info_table_add (MonoDomain *domain, MonoJitInfo *ji);
488 void
489 mono_jit_info_table_remove (MonoDomain *domain, MonoJitInfo *ji);
491 void
492 mono_jit_info_add_aot_module (MonoImage *image, gpointer start, gpointer end);
494 MonoGenericJitInfo*
495 mono_jit_info_get_generic_jit_info (MonoJitInfo *ji);
497 MonoGenericSharingContext*
498 mono_jit_info_get_generic_sharing_context (MonoJitInfo *ji);
500 void
501 mono_jit_info_set_generic_sharing_context (MonoJitInfo *ji, MonoGenericSharingContext *gsctx);
503 char *
504 mono_make_shadow_copy (const char *filename, MonoError *error);
506 gboolean
507 mono_is_shadow_copy_enabled (MonoDomain *domain, const gchar *dir_name);
509 gpointer
510 mono_domain_alloc (MonoDomain *domain, guint size);
512 gpointer
513 mono_domain_alloc0 (MonoDomain *domain, guint size);
515 gpointer
516 mono_domain_alloc0_lock_free (MonoDomain *domain, guint size);
518 void*
519 mono_domain_code_reserve (MonoDomain *domain, int size) MONO_LLVM_INTERNAL;
521 void*
522 mono_domain_code_reserve_align (MonoDomain *domain, int size, int alignment);
524 void
525 mono_domain_code_commit (MonoDomain *domain, void *data, int size, int newsize);
527 void
528 mono_domain_code_foreach (MonoDomain *domain, MonoCodeManagerFunc func, void *user_data);
530 void
531 mono_domain_unset (void);
533 void
534 mono_domain_set_internal_with_options (MonoDomain *domain, gboolean migrate_exception);
536 MonoTryBlockHoleTableJitInfo*
537 mono_jit_info_get_try_block_hole_table_info (MonoJitInfo *ji);
539 MonoArchEHJitInfo*
540 mono_jit_info_get_arch_eh_info (MonoJitInfo *ji);
542 MonoThunkJitInfo*
543 mono_jit_info_get_thunk_info (MonoJitInfo *ji);
545 MonoUnwindJitInfo*
546 mono_jit_info_get_unwind_info (MonoJitInfo *ji);
549 * Installs a new function which is used to return a MonoJitInfo for a method inside
550 * an AOT module.
552 typedef MonoJitInfo *(*MonoJitInfoFindInAot) (MonoDomain *domain, MonoImage *image, gpointer addr);
553 void mono_install_jit_info_find_in_aot (MonoJitInfoFindInAot func);
555 void
556 mono_jit_code_hash_init (MonoInternalHashTable *jit_code_hash);
558 MonoAssembly *
559 mono_assembly_load_corlib (const MonoRuntimeInfo *runtime, MonoImageOpenStatus *status);
561 const MonoRuntimeInfo*
562 mono_get_runtime_info (void);
564 void
565 mono_runtime_set_no_exec (gboolean val);
567 gboolean
568 mono_runtime_get_no_exec (void);
570 gboolean
571 mono_assembly_name_parse (const char *name, MonoAssemblyName *aname);
573 MonoImage *mono_assembly_open_from_bundle (const char *filename,
574 MonoImageOpenStatus *status,
575 gboolean refonly);
577 MonoAssembly *
578 mono_try_assembly_resolve (MonoDomain *domain, const char *fname, MonoAssembly *requesting, gboolean refonly, MonoError *error);
580 MonoAssembly *
581 mono_domain_assembly_postload_search (MonoAssemblyName *aname, MonoAssembly *requesting, gboolean refonly);
583 MonoAssembly* mono_assembly_load_full_nosearch (MonoAssemblyName *aname,
584 const char *basedir,
585 MonoImageOpenStatus *status,
586 gboolean refonly);
588 void mono_domain_set_options_from_config (MonoDomain *domain);
590 int mono_framework_version (void);
592 void mono_reflection_cleanup_domain (MonoDomain *domain);
594 void mono_assembly_cleanup_domain_bindings (guint32 domain_id);
596 MonoJitInfo* mono_jit_info_table_find_internal (MonoDomain *domain, char *addr, gboolean try_aot, gboolean allow_trampolines);
598 void mono_enable_debug_domain_unload (gboolean enable);
600 MonoReflectionAssembly *
601 mono_domain_try_type_resolve_checked (MonoDomain *domain, char *name, MonoObject *tb, MonoError *error);
603 void
604 mono_runtime_init_checked (MonoDomain *domain, MonoThreadStartCB start_cb, MonoThreadAttachCB attach_cb, MonoError *error);
606 void
607 mono_context_init_checked (MonoDomain *domain, MonoError *error);
609 gboolean
610 mono_assembly_has_reference_assembly_attribute (MonoAssembly *assembly, MonoError *error);
612 GPtrArray*
613 mono_domain_get_assemblies (MonoDomain *domain, gboolean refonly);
615 #endif /* __MONO_METADATA_DOMAIN_INTERNALS_H__ */