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