Merge pull request #524 from pruiz/mvc-allowhtml-fix
[mono.git] / mono / metadata / domain-internals.h
1 /*
2  * Appdomain-related internal data structures and functions.
3  * Copyright 2012 Xamarin Inc (http://www.xamarin.com)
4  */
5 #ifndef __MONO_METADATA_DOMAIN_INTERNALS_H__
6 #define __MONO_METADATA_DOMAIN_INTERNALS_H__
7
8 #include <mono/metadata/appdomain.h>
9 #include <mono/metadata/mempool.h>
10 #include <mono/metadata/lock-tracer.h>
11 #include <mono/utils/mono-codeman.h>
12 #include <mono/metadata/mono-hash.h>
13 #include <mono/utils/mono-compiler.h>
14 #include <mono/utils/mono-internal-hash.h>
15 #include <mono/io-layer/io-layer.h>
16 #include <mono/metadata/mempool-internals.h>
17
18 extern CRITICAL_SECTION mono_delegate_section;
19 extern CRITICAL_SECTION mono_strtod_mutex;
20
21 /*
22  * If this is set, the memory belonging to appdomains is not freed when a domain is
23  * unloaded, and assemblies loaded by the appdomain are not unloaded either. This
24  * allows us to use typed gc in non-default appdomains too, leading to increased
25  * performance.
26  */ 
27 extern gboolean mono_dont_free_domains;
28
29 /* This is a copy of System.AppDomainSetup */
30 typedef struct {
31         MonoObject object;
32         MonoString *application_base;
33         MonoString *application_name;
34         MonoString *cache_path;
35         MonoString *configuration_file;
36         MonoString *dynamic_base;
37         MonoString *license_file;
38         MonoString *private_bin_path;
39         MonoString *private_bin_path_probe;
40         MonoString *shadow_copy_directories;
41         MonoString *shadow_copy_files;
42         MonoBoolean publisher_policy;
43         MonoBoolean path_changed;
44         int loader_optimization;
45         MonoBoolean disallow_binding_redirects;
46         MonoBoolean disallow_code_downloads;
47         MonoObject *activation_arguments; /* it is System.Object in 1.x, ActivationArguments in 2.0 */
48         MonoObject *domain_initializer;
49         MonoObject *application_trust; /* it is System.Object in 1.x, ApplicationTrust in 2.0 */
50         MonoArray *domain_initializer_args;
51         MonoBoolean disallow_appbase_probe;
52         MonoArray *configuration_bytes;
53         MonoArray *serialized_non_primitives;
54 } MonoAppDomainSetup;
55
56 typedef struct _MonoJitInfoTable MonoJitInfoTable;
57 typedef struct _MonoJitInfoTableChunk MonoJitInfoTableChunk;
58
59 #define MONO_JIT_INFO_TABLE_CHUNK_SIZE          64
60
61 struct _MonoJitInfoTableChunk
62 {
63         int                    refcount;
64         volatile int           num_elements;
65         volatile gint8        *last_code_end;
66         MonoJitInfo * volatile data [MONO_JIT_INFO_TABLE_CHUNK_SIZE];
67 };
68
69 struct _MonoJitInfoTable
70 {
71         MonoDomain             *domain;
72         int                     num_chunks;
73         MonoJitInfoTableChunk  *chunks [MONO_ZERO_LEN_ARRAY];
74 };
75
76 #define MONO_SIZEOF_JIT_INFO_TABLE (sizeof (struct _MonoJitInfoTable) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
77
78 typedef GArray MonoAotModuleInfoTable;
79
80 typedef struct {
81         guint32  flags;
82         gint32   exvar_offset;
83         gpointer try_start;
84         gpointer try_end;
85         gpointer handler_start;
86         union {
87                 MonoClass *catch_class;
88                 gpointer filter;
89                 gpointer handler_end;
90         } data;
91 } MonoJitExceptionInfo;
92
93 /*
94  * Contains information about the type arguments for generic shared methods.
95  */
96 typedef struct {
97         /*
98          * If not NULL, determines whenever the class type arguments of the gshared method are references or vtypes.
99          * The array length is equal to class_inst->type_argv.
100          */
101         gboolean *var_is_vt;
102         /* Same for method type parameters */
103         gboolean *mvar_is_vt;
104 } MonoGenericSharingContext;
105
106 /* Simplified DWARF location list entry */
107 typedef struct {
108         /* Whenever the value is in a register */
109         gboolean is_reg;
110         /*
111          * If is_reg is TRUE, the register which contains the value. Otherwise
112          * the base register.
113          */
114         int reg;
115         /*
116          * If is_reg is FALSE, the offset of the stack location relative to 'reg'.
117          * Otherwise, 0.
118          */
119         int offset;
120         /*
121          * Offsets of the PC interval where the value is in this location.
122          */
123         int from, to;
124 } MonoDwarfLocListEntry;
125
126 typedef struct
127 {
128         MonoGenericSharingContext *generic_sharing_context;
129         int nlocs;
130         MonoDwarfLocListEntry *locations;
131         gint32 this_offset;
132         guint8 this_reg;
133         gboolean has_this:1;
134         gboolean this_in_reg:1;
135 } MonoGenericJitInfo;
136
137 /*
138 A try block hole is used to represent a non-contiguous part of
139 of a segment of native code protected by a given .try block.
140 Usually, a try block is defined as a contiguous segment of code.
141 But in some cases it's needed to have some parts of it to not be protected.
142 For example, given "try {} finally {}", the code in the .try block to call
143 the finally part looks like:
144
145 try {
146     ...
147         call finally_block
148         adjust stack
149         jump outside try block
150         ...
151 } finally {
152         ...
153 }
154
155 The instructions between the call and the jump should not be under the try block since they happen
156 after the finally block executes, which means if an async exceptions happens at that point we would
157 execute the finally clause twice. So, to avoid this, we introduce a hole in the try block to signal
158 that those instructions are not protected.
159 */
160 typedef struct
161 {
162         guint32 offset;
163         guint16 clause;
164         guint16 length;
165 } MonoTryBlockHoleJitInfo;
166
167 typedef struct
168 {
169         guint16 num_holes;
170         MonoTryBlockHoleJitInfo holes [MONO_ZERO_LEN_ARRAY];
171 } MonoTryBlockHoleTableJitInfo;
172
173 typedef struct
174 {
175         guint32 stack_size;
176 } MonoArchEHJitInfo;
177
178 typedef struct {
179         gboolean    cas_inited:1;
180         gboolean    cas_class_assert:1;
181         gboolean    cas_class_deny:1;
182         gboolean    cas_class_permitonly:1;
183         gboolean    cas_method_assert:1;
184         gboolean    cas_method_deny:1;
185         gboolean    cas_method_permitonly:1;
186 } MonoMethodCasInfo;
187
188 struct _MonoJitInfo {
189         /* NOTE: These first two elements (method and
190            next_jit_code_hash) must be in the same order and at the
191            same offset as in RuntimeMethod, because of the jit_code_hash
192            internal hash table in MonoDomain. */
193         MonoMethod *method;
194         struct _MonoJitInfo *next_jit_code_hash;
195         gpointer    code_start;
196         /* This might contain an id for the unwind info instead of a register mask */
197         guint32     used_regs;
198         int         code_size;
199         guint32     num_clauses:15;
200         /* Whenever the code is domain neutral or 'shared' */
201         gboolean    domain_neutral:1;
202         gboolean    has_cas_info:1;
203         gboolean    has_generic_jit_info:1;
204         gboolean    has_try_block_holes:1;
205         gboolean    has_arch_eh_info:1;
206         gboolean    from_aot:1;
207         gboolean    from_llvm:1;
208         gboolean    dbg_hidden_inited:1;
209         gboolean    dbg_hidden:1;
210
211         /* FIXME: Embed this after the structure later*/
212         gpointer    gc_info; /* Currently only used by SGen */
213         
214         MonoJitExceptionInfo clauses [MONO_ZERO_LEN_ARRAY];
215         /* There is an optional MonoGenericJitInfo after the clauses */
216         /* There is an optional MonoTryBlockHoleTableJitInfo after MonoGenericJitInfo clauses*/
217         /* There is an optional MonoArchEHJitInfo after MonoTryBlockHoleTableJitInfo */
218 };
219
220 #define MONO_SIZEOF_JIT_INFO (offsetof (struct _MonoJitInfo, clauses))
221
222 struct _MonoAppContext {
223         MonoObject obj;
224         gint32 domain_id;
225         gint32 context_id;
226         gpointer *static_data;
227 };
228
229 /*
230  * We have two unloading states because the domain
231  * must remain fully functional while AppDomain::DomainUnload is
232  * processed.
233  * After that unloading began and all domain facilities are teared down
234  * such as execution of new threadpool jobs.  
235  */
236 typedef enum {
237         MONO_APPDOMAIN_CREATED,
238         MONO_APPDOMAIN_UNLOADING_START,
239         MONO_APPDOMAIN_UNLOADING,
240         MONO_APPDOMAIN_UNLOADED
241 } MonoAppDomainState;
242
243 typedef struct _MonoThunkFreeList {
244         guint32 size;
245         int length;             /* only valid for the wait list */
246         struct _MonoThunkFreeList *next;
247 } MonoThunkFreeList;
248
249 typedef struct _MonoJitCodeHash MonoJitCodeHash;
250
251 typedef struct _MonoTlsDataRecord MonoTlsDataRecord;
252 struct _MonoTlsDataRecord {
253         MonoTlsDataRecord *next;
254         guint32 tls_offset;
255         guint32 size;
256 };
257
258 struct _MonoDomain {
259         /*
260          * This lock must never be taken before the loader lock,
261          * i.e. if both are taken by the same thread, the loader lock
262          * must taken first.
263          */
264         CRITICAL_SECTION    lock;
265         MonoMemPool        *mp;
266         MonoCodeManager    *code_mp;
267         /*
268          * keep all the managed objects close to each other for the precise GC
269          * For the Boehm GC we additionally keep close also other GC-tracked pointers.
270          */
271 #define MONO_DOMAIN_FIRST_OBJECT setup
272         MonoAppDomainSetup *setup;
273         MonoAppDomain      *domain;
274         MonoAppContext     *default_context;
275         MonoException      *out_of_memory_ex;
276         MonoException      *null_reference_ex;
277         MonoException      *stack_overflow_ex;
278         /* typeof (void) */
279         MonoObject         *typeof_void;
280         /* Ephemeron Tombstone*/
281         MonoObject         *ephemeron_tombstone;
282         /* new MonoType [0] */
283         MonoArray          *empty_types;
284         /* 
285          * The fields between FIRST_GC_TRACKED and LAST_GC_TRACKED are roots, but
286          * not object references.
287          */
288 #define MONO_DOMAIN_FIRST_GC_TRACKED env
289         MonoGHashTable     *env;
290         MonoGHashTable     *ldstr_table;
291         /* hashtables for Reflection handles */
292         MonoGHashTable     *type_hash;
293         MonoGHashTable     *refobject_hash;
294         /* a GC-tracked array to keep references to the static fields of types */
295         gpointer           *static_data_array;
296         /* maps class -> type initialization exception object */
297         MonoGHashTable    *type_init_exception_hash;
298         /* maps delegate trampoline addr -> delegate object */
299         MonoGHashTable     *delegate_hash_table;
300 #define MONO_DOMAIN_LAST_GC_TRACKED delegate_hash_table
301         guint32            state;
302         /* Needed by Thread:GetDomainID() */
303         gint32             domain_id;
304         gint32             shadow_serial;
305         unsigned char      inet_family_hint; // used in socket-io.c as a cache
306         GSList             *domain_assemblies;
307         MonoAssembly       *entry_assembly;
308         char               *friendly_name;
309         GPtrArray          *class_vtable_array;
310         /* maps remote class key -> MonoRemoteClass */
311         GHashTable         *proxy_vtable_hash;
312         /* Protected by 'jit_code_hash_lock' */
313         MonoInternalHashTable jit_code_hash;
314         CRITICAL_SECTION    jit_code_hash_lock;
315         int                 num_jit_info_tables;
316         MonoJitInfoTable * 
317           volatile          jit_info_table;
318         GSList             *jit_info_free_queue;
319         /* Used when loading assemblies */
320         gchar **search_path;
321         gchar *private_bin_path;
322         
323         /* Used by remoting proxies */
324         MonoMethod         *create_proxy_for_type_method;
325         MonoMethod         *private_invoke_method;
326         /* Used to store offsets of thread and context static fields */
327         GHashTable         *special_static_fields;
328         MonoTlsDataRecord  *tlsrec_list;
329         /* 
330          * This must be a GHashTable, since these objects can't be finalized
331          * if the hashtable contains a GC visible reference to them.
332          */
333         GHashTable         *finalizable_objects_hash;
334
335         /* Protects the three hashes above */
336         CRITICAL_SECTION   finalizable_objects_hash_lock;
337         /* Used when accessing 'domain_assemblies' */
338         CRITICAL_SECTION    assemblies_lock;
339
340         GHashTable         *method_rgctx_hash;
341
342         GHashTable         *generic_virtual_cases;
343         MonoThunkFreeList **thunk_free_lists;
344
345         GHashTable     *generic_virtual_thunks;
346
347         /* Information maintained by the JIT engine */
348         gpointer runtime_info;
349
350         /*thread pool jobs, used to coordinate shutdown.*/
351         volatile int                    threadpool_jobs;
352         HANDLE                          cleanup_semaphore;
353         
354         /* Contains the compiled runtime invoke wrapper used by finalizers */
355         gpointer            finalize_runtime_invoke;
356
357         /* Contains the compiled runtime invoke wrapper used by async resylt creation to capture thread context*/
358         gpointer            capture_context_runtime_invoke;
359
360         /* Contains the compiled method used by async resylt creation to capture thread context*/
361         gpointer            capture_context_method;
362
363         /* Assembly bindings, the per-domain part */
364         GSList *assembly_bindings;
365         gboolean assembly_bindings_parsed;
366
367         /* Used by socket-io.c */
368         /* These are domain specific, since the assembly can be unloaded */
369         MonoImage *socket_assembly;
370         MonoClass *sockaddr_class;
371         MonoClassField *sockaddr_data_field;
372
373         /* Used by threadpool.c */
374         MonoImage *system_image;
375         MonoClass *corlib_asyncresult_class;
376         MonoClass *socket_class;
377         MonoClass *ad_unloaded_ex_class;
378         MonoClass *process_class;
379
380         /* Cache function pointers for architectures  */
381         /* that require wrappers */
382         GHashTable *ftnptrs_hash;
383
384         guint32 execution_context_field_offset;
385 };
386
387 typedef struct  {
388         guint16 major, minor, build, revision;
389 } AssemblyVersionSet;
390
391 /* MonoRuntimeInfo: Contains information about versions supported by this runtime */
392 typedef struct  {
393         const char runtime_version [12];
394         const char framework_version [4];
395         const AssemblyVersionSet version_sets [4];
396 } MonoRuntimeInfo;
397
398 #define mono_domain_lock(domain) mono_locks_acquire(&(domain)->lock, DomainLock)
399 #define mono_domain_unlock(domain) mono_locks_release(&(domain)->lock, DomainLock)
400 #define mono_domain_assemblies_lock(domain) mono_locks_acquire(&(domain)->assemblies_lock, DomainAssembliesLock)
401 #define mono_domain_assemblies_unlock(domain) mono_locks_release(&(domain)->assemblies_lock, DomainAssembliesLock)
402 #define mono_domain_jit_code_hash_lock(domain) mono_locks_acquire(&(domain)->jit_code_hash_lock, DomainJitCodeHashLock)
403 #define mono_domain_jit_code_hash_unlock(domain) mono_locks_release(&(domain)->jit_code_hash_lock, DomainJitCodeHashLock)
404
405 typedef MonoDomain* (*MonoLoadFunc) (const char *filename, const char *runtime_version);
406
407 void
408 mono_install_runtime_load  (MonoLoadFunc func) MONO_INTERNAL;
409
410 MonoDomain*
411 mono_runtime_load (const char *filename, const char *runtime_version) MONO_INTERNAL;
412
413 typedef void (*MonoCreateDomainFunc) (MonoDomain *domain);
414
415 void
416 mono_install_create_domain_hook (MonoCreateDomainFunc func) MONO_INTERNAL;
417
418 typedef void (*MonoFreeDomainFunc) (MonoDomain *domain);
419
420 void
421 mono_install_free_domain_hook (MonoFreeDomainFunc func) MONO_INTERNAL;
422
423 void 
424 mono_init_com_types (void) MONO_INTERNAL;
425
426 void 
427 mono_cleanup (void) MONO_INTERNAL;
428
429 void
430 mono_close_exe_image (void) MONO_INTERNAL;
431
432 void
433 mono_jit_info_table_add    (MonoDomain *domain, MonoJitInfo *ji) MONO_INTERNAL;
434
435 void
436 mono_jit_info_table_remove (MonoDomain *domain, MonoJitInfo *ji) MONO_INTERNAL;
437
438 void
439 mono_jit_info_add_aot_module (MonoImage *image, gpointer start, gpointer end) MONO_INTERNAL;
440
441 MonoGenericJitInfo*
442 mono_jit_info_get_generic_jit_info (MonoJitInfo *ji) MONO_INTERNAL;
443
444 MonoGenericSharingContext*
445 mono_jit_info_get_generic_sharing_context (MonoJitInfo *ji) MONO_INTERNAL;
446
447 void
448 mono_jit_info_set_generic_sharing_context (MonoJitInfo *ji, MonoGenericSharingContext *gsctx) MONO_INTERNAL;
449
450 MonoJitInfo*
451 mono_domain_lookup_shared_generic (MonoDomain *domain, MonoMethod *method) MONO_INTERNAL;
452
453 char *
454 mono_make_shadow_copy (const char *filename) MONO_INTERNAL;
455
456 gboolean
457 mono_is_shadow_copy_enabled (MonoDomain *domain, const gchar *dir_name) MONO_INTERNAL;
458
459 gpointer
460 mono_domain_alloc  (MonoDomain *domain, guint size) MONO_INTERNAL;
461
462 gpointer
463 mono_domain_alloc0 (MonoDomain *domain, guint size) MONO_INTERNAL;
464
465 void*
466 mono_domain_code_reserve (MonoDomain *domain, int size) MONO_LLVM_INTERNAL;
467
468 void*
469 mono_domain_code_reserve_align (MonoDomain *domain, int size, int alignment) MONO_INTERNAL;
470
471 void
472 mono_domain_code_commit (MonoDomain *domain, void *data, int size, int newsize) MONO_INTERNAL;
473
474 void *
475 nacl_domain_get_code_dest (MonoDomain *domain, void *data) MONO_INTERNAL;
476
477 void 
478 nacl_domain_code_validate (MonoDomain *domain, guint8 **buf_base, int buf_size, guint8 **code_end) MONO_INTERNAL;
479
480 void
481 mono_domain_code_foreach (MonoDomain *domain, MonoCodeManagerFunc func, void *user_data) MONO_INTERNAL;
482
483 void
484 mono_domain_unset (void) MONO_INTERNAL;
485
486 void
487 mono_domain_set_internal_with_options (MonoDomain *domain, gboolean migrate_exception) MONO_INTERNAL;
488
489 MonoTryBlockHoleTableJitInfo*
490 mono_jit_info_get_try_block_hole_table_info (MonoJitInfo *ji) MONO_INTERNAL;
491
492 MonoArchEHJitInfo*
493 mono_jit_info_get_arch_eh_info (MonoJitInfo *ji) MONO_INTERNAL;
494
495 MonoMethodCasInfo*
496 mono_jit_info_get_cas_info (MonoJitInfo *ji) MONO_INTERNAL;
497
498 /* 
499  * Installs a new function which is used to return a MonoJitInfo for a method inside
500  * an AOT module.
501  */
502 typedef MonoJitInfo *(*MonoJitInfoFindInAot)         (MonoDomain *domain, MonoImage *image, gpointer addr);
503 void          mono_install_jit_info_find_in_aot (MonoJitInfoFindInAot func) MONO_INTERNAL;
504
505 void
506 mono_jit_code_hash_init (MonoInternalHashTable *jit_code_hash) MONO_INTERNAL;
507
508 MonoAppDomain *
509 ves_icall_System_AppDomain_getCurDomain            (void) MONO_INTERNAL;
510
511 MonoAppDomain *
512 ves_icall_System_AppDomain_getRootDomain           (void) MONO_INTERNAL;
513
514 MonoAppDomain *
515 ves_icall_System_AppDomain_createDomain            (MonoString         *friendly_name,
516                                                     MonoAppDomainSetup *setup) MONO_INTERNAL;
517
518 MonoObject *
519 ves_icall_System_AppDomain_GetData                 (MonoAppDomain *ad, 
520                                                     MonoString    *name) MONO_INTERNAL;
521
522 MonoReflectionAssembly *
523 ves_icall_System_AppDomain_LoadAssemblyRaw         (MonoAppDomain *ad,
524                                                     MonoArray *raw_assembly, 
525                                                     MonoArray *raw_symbol_store,
526                                                     MonoObject *evidence,
527                                                     MonoBoolean refonly) MONO_INTERNAL;
528
529 void
530 ves_icall_System_AppDomain_SetData                 (MonoAppDomain *ad, 
531                                                     MonoString    *name, 
532                                                     MonoObject    *data) MONO_INTERNAL;
533
534 MonoAppDomainSetup *
535 ves_icall_System_AppDomain_getSetup                (MonoAppDomain *ad) MONO_INTERNAL;
536
537 MonoString *
538 ves_icall_System_AppDomain_getFriendlyName         (MonoAppDomain *ad) MONO_INTERNAL;
539
540 MonoArray *
541 ves_icall_System_AppDomain_GetAssemblies           (MonoAppDomain *ad,
542                                                     MonoBoolean refonly) MONO_INTERNAL;
543
544 MonoReflectionAssembly *
545 ves_icall_System_Reflection_Assembly_LoadFrom      (MonoString *fname,
546                                                     MonoBoolean refonly) MONO_INTERNAL;
547
548 MonoReflectionAssembly *
549 ves_icall_System_AppDomain_LoadAssembly            (MonoAppDomain *ad, 
550                                                     MonoString *assRef,
551                                                     MonoObject    *evidence,
552                                                     MonoBoolean refonly) MONO_INTERNAL;
553
554 gboolean
555 ves_icall_System_AppDomain_InternalIsFinalizingForUnload (gint32 domain_id) MONO_INTERNAL;
556
557 void
558 ves_icall_System_AppDomain_InternalUnload          (gint32 domain_id) MONO_INTERNAL;
559
560 gint32
561 ves_icall_System_AppDomain_ExecuteAssembly         (MonoAppDomain *ad, 
562                                                                                                         MonoReflectionAssembly *refass,
563                                                                                                         MonoArray     *args) MONO_INTERNAL;
564
565 MonoAppDomain * 
566 ves_icall_System_AppDomain_InternalSetDomain       (MonoAppDomain *ad) MONO_INTERNAL;
567
568 MonoAppDomain * 
569 ves_icall_System_AppDomain_InternalSetDomainByID   (gint32 domainid) MONO_INTERNAL;
570
571 void
572 ves_icall_System_AppDomain_InternalPushDomainRef (MonoAppDomain *ad) MONO_INTERNAL;
573
574 void
575 ves_icall_System_AppDomain_InternalPushDomainRefByID (gint32 domain_id) MONO_INTERNAL;
576
577 void
578 ves_icall_System_AppDomain_InternalPopDomainRef (void) MONO_INTERNAL;
579
580 MonoAppContext * 
581 ves_icall_System_AppDomain_InternalGetContext      (void) MONO_INTERNAL;
582
583 MonoAppContext * 
584 ves_icall_System_AppDomain_InternalGetDefaultContext      (void) MONO_INTERNAL;
585
586 MonoAppContext * 
587 ves_icall_System_AppDomain_InternalSetContext      (MonoAppContext *mc) MONO_INTERNAL;
588
589 gint32 
590 ves_icall_System_AppDomain_GetIDFromDomain (MonoAppDomain * ad) MONO_INTERNAL;
591
592 MonoString *
593 ves_icall_System_AppDomain_InternalGetProcessGuid (MonoString* newguid) MONO_INTERNAL;
594
595 MonoAssembly *
596 mono_assembly_load_corlib (const MonoRuntimeInfo *runtime, MonoImageOpenStatus *status) MONO_INTERNAL;
597
598 const MonoRuntimeInfo*
599 mono_get_runtime_info (void) MONO_INTERNAL;
600
601 void
602 mono_runtime_set_no_exec (gboolean val) MONO_INTERNAL;
603
604 gboolean
605 mono_runtime_get_no_exec (void) MONO_INTERNAL;
606
607 gboolean
608 mono_assembly_name_parse (const char *name, MonoAssemblyName *aname) MONO_INTERNAL;
609
610 MonoImage *mono_assembly_open_from_bundle (const char *filename,
611                                            MonoImageOpenStatus *status,
612                                            gboolean refonly) MONO_INTERNAL;
613
614 void
615 mono_domain_add_class_static_data (MonoDomain *domain, MonoClass *klass, gpointer data, guint32 *bitmap);
616
617 MonoReflectionAssembly *
618 mono_try_assembly_resolve (MonoDomain *domain, MonoString *fname, gboolean refonly) MONO_INTERNAL;
619
620 MonoAssembly* mono_assembly_load_full_nosearch (MonoAssemblyName *aname, 
621                                                 const char       *basedir, 
622                                                 MonoImageOpenStatus *status,
623                                                 gboolean refonly) MONO_INTERNAL;
624
625 void mono_set_private_bin_path_from_config (MonoDomain *domain) MONO_INTERNAL;
626
627 int mono_framework_version (void) MONO_INTERNAL;
628
629 void mono_reflection_cleanup_domain (MonoDomain *domain) MONO_INTERNAL;
630
631 void mono_assembly_cleanup_domain_bindings (guint32 domain_id) MONO_INTERNAL;;
632
633 #endif /* __MONO_METADATA_DOMAIN_INTERNALS_H__ */