Merge pull request #4418 from kumpera/fix_gclass_recording_on_failure
[mono.git] / mono / metadata / domain.c
1 /*
2  * domain.c: MonoDomain functions
3  *
4  * Author:
5  *      Dietmar Maurer (dietmar@ximian.com)
6  *      Patrik Torstensson
7  *
8  * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
9  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
10  * Copyright 2011-2012 Xamarin, Inc (http://www.xamarin.com)
11  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
12  */
13
14 #include <config.h>
15 #include <glib.h>
16 #include <string.h>
17 #include <sys/stat.h>
18
19 #include <mono/metadata/gc-internals.h>
20
21 #include <mono/utils/atomic.h>
22 #include <mono/utils/mono-compiler.h>
23 #include <mono/utils/mono-logger-internals.h>
24 #include <mono/utils/mono-membar.h>
25 #include <mono/utils/mono-counters.h>
26 #include <mono/utils/hazard-pointer.h>
27 #include <mono/utils/mono-tls.h>
28 #include <mono/utils/mono-mmap.h>
29 #include <mono/utils/mono-threads.h>
30 #include <mono/metadata/object.h>
31 #include <mono/metadata/object-internals.h>
32 #include <mono/metadata/domain-internals.h>
33 #include <mono/metadata/class-internals.h>
34 #include <mono/metadata/assembly.h>
35 #include <mono/metadata/exception.h>
36 #include <mono/metadata/metadata-internals.h>
37 #include <mono/metadata/appdomain.h>
38 #include <mono/metadata/mono-debug-debugger.h>
39 #include <mono/metadata/mono-config.h>
40 #include <mono/metadata/threads-types.h>
41 #include <mono/metadata/runtime.h>
42 #include <mono/metadata/w32mutex.h>
43 #include <mono/metadata/w32semaphore.h>
44 #include <mono/metadata/w32event.h>
45 #include <mono/metadata/w32process.h>
46 #include <mono/metadata/w32file.h>
47 #include <metadata/threads.h>
48 #include <metadata/profiler-private.h>
49 #include <mono/metadata/coree.h>
50
51 //#define DEBUG_DOMAIN_UNLOAD 1
52
53 #define GET_APPDOMAIN() ((MonoDomain*)mono_tls_get_domain ())
54 #define SET_APPDOMAIN(x) do { \
55         MonoThreadInfo *info; \
56         mono_tls_set_domain (x); \
57         info = mono_thread_info_current (); \
58         if (info) \
59                 mono_thread_info_tls_set (info, TLS_KEY_DOMAIN, (x));   \
60 } while (FALSE)
61
62 #define GET_APPCONTEXT() (mono_thread_internal_current ()->current_appcontext)
63 #define SET_APPCONTEXT(x) MONO_OBJECT_SETREF (mono_thread_internal_current (), current_appcontext, (x))
64
65 static guint16 appdomain_list_size = 0;
66 static guint16 appdomain_next = 0;
67 static MonoDomain **appdomains_list = NULL;
68 static MonoImage *exe_image;
69 static gboolean debug_domain_unload;
70
71 gboolean mono_dont_free_domains;
72
73 #define mono_appdomains_lock() mono_coop_mutex_lock (&appdomains_mutex)
74 #define mono_appdomains_unlock() mono_coop_mutex_unlock (&appdomains_mutex)
75 static MonoCoopMutex appdomains_mutex;
76
77 static MonoDomain *mono_root_domain = NULL;
78
79 /* some statistics */
80 static int max_domain_code_size = 0;
81 static int max_domain_code_alloc = 0;
82 static int total_domain_code_alloc = 0;
83
84 /* AppConfigInfo: Information about runtime versions supported by an 
85  * aplication.
86  */
87 typedef struct {
88         GSList *supported_runtimes;
89         char *required_runtime;
90         int configuration_count;
91         int startup_count;
92 } AppConfigInfo;
93
94 static const MonoRuntimeInfo *current_runtime = NULL;
95
96 /* This is the list of runtime versions supported by this JIT.
97  */
98 static const MonoRuntimeInfo supported_runtimes[] = {
99         {"v4.0.30319","4.5", { {4,0,0,0}, {10,0,0,0}, {4,0,0,0}, {4,0,0,0} } },
100         {"mobile",    "2.1", { {2,0,5,0}, {10,0,0,0}, {2,0,5,0}, {2,0,5,0} } },
101         {"moonlight", "2.1", { {2,0,5,0}, { 9,0,0,0}, {3,5,0,0}, {3,0,0,0} } },
102 };
103
104
105 /* The stable runtime version */
106 #define DEFAULT_RUNTIME_VERSION "v4.0.30319"
107
108 /* Callbacks installed by the JIT */
109 static MonoCreateDomainFunc create_domain_hook;
110 static MonoFreeDomainFunc free_domain_hook;
111
112 /* AOT cache configuration */
113 static MonoAotCacheConfig aot_cache_config;
114
115 static void
116 get_runtimes_from_exe (const char *exe_file, MonoImage **exe_image, const MonoRuntimeInfo** runtimes);
117
118 static const MonoRuntimeInfo*
119 get_runtime_by_version (const char *version);
120
121 #define ALIGN_TO(val,align) ((((guint64)val) + ((align) - 1)) & ~((align) - 1))
122 #define ALIGN_PTR_TO(ptr,align) (gpointer)((((gssize)(ptr)) + (align - 1)) & (~(align - 1)))
123
124 static LockFreeMempool*
125 lock_free_mempool_new (void)
126 {
127         return g_new0 (LockFreeMempool, 1);
128 }
129
130 static void
131 lock_free_mempool_free (LockFreeMempool *mp)
132 {
133         LockFreeMempoolChunk *chunk, *next;
134
135         chunk = mp->chunks;
136         while (chunk) {
137                 next = (LockFreeMempoolChunk *)chunk->prev;
138                 mono_vfree (chunk, mono_pagesize (), MONO_MEM_ACCOUNT_DOMAIN);
139                 chunk = next;
140         }
141         g_free (mp);
142 }
143
144 /*
145  * This is async safe
146  */
147 static LockFreeMempoolChunk*
148 lock_free_mempool_chunk_new (LockFreeMempool *mp, int len)
149 {
150         LockFreeMempoolChunk *chunk, *prev;
151         int size;
152
153         size = mono_pagesize ();
154         while (size - sizeof (LockFreeMempoolChunk) < len)
155                 size += mono_pagesize ();
156         chunk = (LockFreeMempoolChunk *)mono_valloc (0, size, MONO_MMAP_READ|MONO_MMAP_WRITE, MONO_MEM_ACCOUNT_DOMAIN);
157         g_assert (chunk);
158         chunk->mem = (guint8 *)ALIGN_PTR_TO ((char*)chunk + sizeof (LockFreeMempoolChunk), 16);
159         chunk->size = ((char*)chunk + size) - (char*)chunk->mem;
160         chunk->pos = 0;
161
162         /* Add to list of chunks lock-free */
163         while (TRUE) {
164                 prev = mp->chunks;
165                 if (InterlockedCompareExchangePointer ((volatile gpointer*)&mp->chunks, chunk, prev) == prev)
166                         break;
167         }
168         chunk->prev = prev;
169
170         return chunk;
171 }
172
173 /*
174  * This is async safe
175  */
176 static gpointer
177 lock_free_mempool_alloc0 (LockFreeMempool *mp, guint size)
178 {
179         LockFreeMempoolChunk *chunk;
180         gpointer res;
181         int oldpos;
182
183         // FIXME: Free the allocator
184
185         size = ALIGN_TO (size, 8);
186         chunk = mp->current;
187         if (!chunk) {
188                 chunk = lock_free_mempool_chunk_new (mp, size);
189                 mono_memory_barrier ();
190                 /* Publish */
191                 mp->current = chunk;
192         }
193
194         /* The code below is lock-free, 'chunk' is shared state */
195         oldpos = InterlockedExchangeAdd (&chunk->pos, size);
196         if (oldpos + size > chunk->size) {
197                 chunk = lock_free_mempool_chunk_new (mp, size);
198                 g_assert (chunk->pos + size <= chunk->size);
199                 res = chunk->mem;
200                 chunk->pos += size;
201                 mono_memory_barrier ();
202                 mp->current = chunk;
203         } else {
204                 res = (char*)chunk->mem + oldpos;
205         }
206
207         return res;
208 }
209
210 void
211 mono_install_create_domain_hook (MonoCreateDomainFunc func)
212 {
213         create_domain_hook = func;
214 }
215
216 void
217 mono_install_free_domain_hook (MonoFreeDomainFunc func)
218 {
219         free_domain_hook = func;
220 }
221
222 /**
223  * mono_string_equal:
224  * @s1: First string to compare
225  * @s2: Second string to compare
226  *
227  * Compares two `MonoString*` instances ordinally for equality.
228  *
229  * Returns FALSE if the strings differ.
230  */
231 gboolean
232 mono_string_equal (MonoString *s1, MonoString *s2)
233 {
234         int l1 = mono_string_length (s1);
235         int l2 = mono_string_length (s2);
236
237         if (s1 == s2)
238                 return TRUE;
239         if (l1 != l2)
240                 return FALSE;
241
242         return memcmp (mono_string_chars (s1), mono_string_chars (s2), l1 * 2) == 0; 
243 }
244
245 /**
246  * mono_string_hash:
247  * @s: the string to hash
248  *
249  * Compute the hash for a `MonoString*`
250  * Returns the hash for the string.
251  */
252 guint
253 mono_string_hash (MonoString *s)
254 {
255         const guint16 *p = mono_string_chars (s);
256         int i, len = mono_string_length (s);
257         guint h = 0;
258
259         for (i = 0; i < len; i++) {
260                 h = (h << 5) - h + *p;
261                 p++;
262         }
263
264         return h;       
265 }
266
267 static gboolean
268 mono_ptrarray_equal (gpointer *s1, gpointer *s2)
269 {
270         int len = GPOINTER_TO_INT (s1 [0]);
271         if (len != GPOINTER_TO_INT (s2 [0]))
272                 return FALSE;
273
274         return memcmp (s1 + 1, s2 + 1, len * sizeof(gpointer)) == 0; 
275 }
276
277 static guint
278 mono_ptrarray_hash (gpointer *s)
279 {
280         int i;
281         int len = GPOINTER_TO_INT (s [0]);
282         guint hash = 0;
283         
284         for (i = 1; i < len; i++)
285                 hash += GPOINTER_TO_UINT (s [i]);
286
287         return hash;    
288 }
289
290 /*
291  * Allocate an id for domain and set domain->domain_id.
292  * LOCKING: must be called while holding appdomains_mutex.
293  * We try to assign low numbers to the domain, so it can be used
294  * as an index in data tables to lookup domain-specific info
295  * with minimal memory overhead. We also try not to reuse the
296  * same id too quickly (to help debugging).
297  */
298 static int
299 domain_id_alloc (MonoDomain *domain)
300 {
301         int id = -1, i;
302         if (!appdomains_list) {
303                 appdomain_list_size = 2;
304                 appdomains_list = (MonoDomain **)mono_gc_alloc_fixed (appdomain_list_size * sizeof (void*), MONO_GC_DESCRIPTOR_NULL, MONO_ROOT_SOURCE_DOMAIN, "domains list");
305         }
306         for (i = appdomain_next; i < appdomain_list_size; ++i) {
307                 if (!appdomains_list [i]) {
308                         id = i;
309                         break;
310                 }
311         }
312         if (id == -1) {
313                 for (i = 0; i < appdomain_next; ++i) {
314                         if (!appdomains_list [i]) {
315                                 id = i;
316                                 break;
317                         }
318                 }
319         }
320         if (id == -1) {
321                 MonoDomain **new_list;
322                 int new_size = appdomain_list_size * 2;
323                 if (new_size >= (1 << 16))
324                         g_assert_not_reached ();
325                 id = appdomain_list_size;
326                 new_list = (MonoDomain **)mono_gc_alloc_fixed (new_size * sizeof (void*), MONO_GC_DESCRIPTOR_NULL, MONO_ROOT_SOURCE_DOMAIN, "domains list");
327                 memcpy (new_list, appdomains_list, appdomain_list_size * sizeof (void*));
328                 mono_gc_free_fixed (appdomains_list);
329                 appdomains_list = new_list;
330                 appdomain_list_size = new_size;
331         }
332         domain->domain_id = id;
333         appdomains_list [id] = domain;
334         appdomain_next++;
335         if (appdomain_next > appdomain_list_size)
336                 appdomain_next = 0;
337         return id;
338 }
339
340 static gsize domain_gc_bitmap [sizeof(MonoDomain)/4/32 + 1];
341 static MonoGCDescriptor domain_gc_desc = MONO_GC_DESCRIPTOR_NULL;
342 static guint32 domain_shadow_serial = 0L;
343
344 /**
345  * mono_domain_create:
346  *
347  * Creates a new application domain, the unmanaged representation
348  * of the actual domain.   Usually you will want to create the
349  *
350  * Application domains provide an isolation facilty for assemblies.   You
351  * can load assemblies and execute code in them that will not be visible
352  * to other application domains.   This is a runtime-based virtualization
353  * technology.
354  *
355  * It is possible to unload domains, which unloads the assemblies and
356  * data that was allocated in that domain.
357  *
358  * When a domain is created a mempool is allocated for domain-specific
359  * structures, along a dedicated code manager to hold code that is
360  * associated with the domain.
361  *
362  * Returns: New initialized MonoDomain, with no configuration or assemblies
363  * loaded into it.
364  */
365 MonoDomain *
366 mono_domain_create (void)
367 {
368         MonoDomain *domain;
369         guint32 shadow_serial;
370   
371         mono_appdomains_lock ();
372         shadow_serial = domain_shadow_serial++;
373   
374         if (!domain_gc_desc) {
375                 unsigned int i, bit = 0;
376                 for (i = G_STRUCT_OFFSET (MonoDomain, MONO_DOMAIN_FIRST_OBJECT); i < G_STRUCT_OFFSET (MonoDomain, MONO_DOMAIN_FIRST_GC_TRACKED); i += sizeof (gpointer)) {
377                         bit = i / sizeof (gpointer);
378                         domain_gc_bitmap [bit / 32] |= (gsize) 1 << (bit % 32);
379                 }
380                 domain_gc_desc = mono_gc_make_descr_from_bitmap ((gsize*)domain_gc_bitmap, bit + 1);
381         }
382         mono_appdomains_unlock ();
383
384 #ifdef HAVE_BOEHM_GC
385         domain = (MonoDomain *)mono_gc_alloc_fixed (sizeof (MonoDomain), MONO_GC_DESCRIPTOR_NULL, MONO_ROOT_SOURCE_DOMAIN, "domain object");
386 #else
387         domain = (MonoDomain *)mono_gc_alloc_fixed (sizeof (MonoDomain), domain_gc_desc, MONO_ROOT_SOURCE_DOMAIN, "domain object");
388         mono_gc_register_root ((char*)&(domain->MONO_DOMAIN_FIRST_GC_TRACKED), G_STRUCT_OFFSET (MonoDomain, MONO_DOMAIN_LAST_GC_TRACKED) - G_STRUCT_OFFSET (MonoDomain, MONO_DOMAIN_FIRST_GC_TRACKED), MONO_GC_DESCRIPTOR_NULL, MONO_ROOT_SOURCE_DOMAIN, "misc domain fields");
389 #endif
390         domain->shadow_serial = shadow_serial;
391         domain->domain = NULL;
392         domain->setup = NULL;
393         domain->friendly_name = NULL;
394         domain->search_path = NULL;
395
396         mono_profiler_appdomain_event (domain, MONO_PROFILE_START_LOAD);
397
398         domain->mp = mono_mempool_new ();
399         domain->code_mp = mono_code_manager_new ();
400         domain->lock_free_mp = lock_free_mempool_new ();
401         domain->env = mono_g_hash_table_new_type ((GHashFunc)mono_string_hash, (GCompareFunc)mono_string_equal, MONO_HASH_KEY_VALUE_GC, MONO_ROOT_SOURCE_DOMAIN, "domain environment variables table");
402         domain->domain_assemblies = NULL;
403         domain->assembly_bindings = NULL;
404         domain->assembly_bindings_parsed = FALSE;
405         domain->class_vtable_array = g_ptr_array_new ();
406         domain->proxy_vtable_hash = g_hash_table_new ((GHashFunc)mono_ptrarray_hash, (GCompareFunc)mono_ptrarray_equal);
407         domain->static_data_array = NULL;
408         mono_jit_code_hash_init (&domain->jit_code_hash);
409         domain->ldstr_table = mono_g_hash_table_new_type ((GHashFunc)mono_string_hash, (GCompareFunc)mono_string_equal, MONO_HASH_KEY_VALUE_GC, MONO_ROOT_SOURCE_DOMAIN, "domain string constants table");
410         domain->num_jit_info_tables = 1;
411         domain->jit_info_table = mono_jit_info_table_new (domain);
412         domain->jit_info_free_queue = NULL;
413         domain->finalizable_objects_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
414         domain->ftnptrs_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
415
416         mono_coop_mutex_init_recursive (&domain->lock);
417
418         mono_os_mutex_init_recursive (&domain->assemblies_lock);
419         mono_os_mutex_init_recursive (&domain->jit_code_hash_lock);
420         mono_os_mutex_init_recursive (&domain->finalizable_objects_hash_lock);
421
422         domain->method_rgctx_hash = NULL;
423
424         mono_appdomains_lock ();
425         domain_id_alloc (domain);
426         mono_appdomains_unlock ();
427
428 #ifndef DISABLE_PERFCOUNTERS
429         mono_perfcounters->loader_appdomains++;
430         mono_perfcounters->loader_total_appdomains++;
431 #endif
432
433         mono_debug_domain_create (domain);
434
435         if (create_domain_hook)
436                 create_domain_hook (domain);
437
438         mono_profiler_appdomain_loaded (domain, MONO_PROFILE_OK);
439         
440         return domain;
441 }
442
443 /**
444  * mono_init_internal:
445  * 
446  * Creates the initial application domain and initializes the mono_defaults
447  * structure.
448  * This function is guaranteed to not run any IL code.
449  * If exe_filename is not NULL, the method will determine the required runtime
450  * from the exe configuration file or the version PE field.
451  * If runtime_version is not NULL, that runtime version will be used.
452  * Either exe_filename or runtime_version must be provided.
453  *
454  * Returns: the initial domain.
455  */
456 static MonoDomain *
457 mono_init_internal (const char *filename, const char *exe_filename, const char *runtime_version)
458 {
459         static MonoDomain *domain = NULL;
460         MonoAssembly *ass = NULL;
461         MonoImageOpenStatus status = MONO_IMAGE_OK;
462         const MonoRuntimeInfo* runtimes [G_N_ELEMENTS (supported_runtimes) + 1] = { NULL };
463         int n, dummy;
464
465 #ifdef DEBUG_DOMAIN_UNLOAD
466         debug_domain_unload = TRUE;
467 #endif
468
469         if (domain)
470                 g_assert_not_reached ();
471
472 #if defined(HOST_WIN32) && G_HAVE_API_SUPPORT(HAVE_CLASSIC_WINAPI_SUPPORT)
473         /* Avoid system error message boxes. */
474         SetErrorMode (SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX);
475 #endif
476
477 #ifndef HOST_WIN32
478         mono_w32handle_init ();
479         mono_w32handle_namespace_init ();
480 #endif
481
482         mono_w32mutex_init ();
483         mono_w32semaphore_init ();
484         mono_w32event_init ();
485         mono_w32process_init ();
486         mono_w32file_init ();
487
488 #ifndef DISABLE_PERFCOUNTERS
489         mono_perfcounters_init ();
490 #endif
491         mono_counters_init ();
492
493         mono_counters_register ("Max native code in a domain", MONO_COUNTER_INT|MONO_COUNTER_JIT, &max_domain_code_size);
494         mono_counters_register ("Max code space allocated in a domain", MONO_COUNTER_INT|MONO_COUNTER_JIT, &max_domain_code_alloc);
495         mono_counters_register ("Total code space allocated", MONO_COUNTER_INT|MONO_COUNTER_JIT, &total_domain_code_alloc);
496
497         mono_counters_register ("Max HashTable Chain Length", MONO_COUNTER_INT|MONO_COUNTER_METADATA, &mono_g_hash_table_max_chain_length);
498
499         mono_gc_base_init ();
500         mono_thread_info_attach (&dummy);
501
502         mono_coop_mutex_init_recursive (&appdomains_mutex);
503
504         mono_metadata_init ();
505         mono_images_init ();
506         mono_assemblies_init ();
507         mono_classes_init ();
508         mono_loader_init ();
509         mono_reflection_init ();
510         mono_runtime_init_tls ();
511
512         domain = mono_domain_create ();
513         mono_root_domain = domain;
514
515         SET_APPDOMAIN (domain);
516         
517         /* Get a list of runtimes supported by the exe */
518         if (exe_filename != NULL) {
519                 /*
520                  * This function will load the exe file as a MonoImage. We need to close it, but
521                  * that would mean it would be reloaded later. So instead, we save it to
522                  * exe_image, and close it during shutdown.
523                  */
524                 get_runtimes_from_exe (exe_filename, &exe_image, runtimes);
525 #ifdef HOST_WIN32
526                 if (!exe_image) {
527                         exe_image = mono_assembly_open_from_bundle (exe_filename, NULL, FALSE);
528                         if (!exe_image)
529                                 exe_image = mono_image_open (exe_filename, NULL);
530                 }
531                 mono_fixup_exe_image (exe_image);
532 #endif
533         } else if (runtime_version != NULL) {
534                 runtimes [0] = get_runtime_by_version (runtime_version);
535                 runtimes [1] = NULL;
536         }
537
538         if (runtimes [0] == NULL) {
539                 const MonoRuntimeInfo *default_runtime = get_runtime_by_version (DEFAULT_RUNTIME_VERSION);
540                 runtimes [0] = default_runtime;
541                 runtimes [1] = NULL;
542                 g_print ("WARNING: The runtime version supported by this application is unavailable.\n");
543                 g_print ("Using default runtime: %s\n", default_runtime->runtime_version); 
544         }
545
546         /* The selected runtime will be the first one for which there is a mscrolib.dll */
547         for (n = 0; runtimes [n] != NULL && ass == NULL; n++) {
548                 current_runtime = runtimes [n];
549                 ass = mono_assembly_load_corlib (current_runtime, &status);
550                 if (status != MONO_IMAGE_OK && status != MONO_IMAGE_ERROR_ERRNO)
551                         break;
552
553         }
554         
555         if ((status != MONO_IMAGE_OK) || (ass == NULL)) {
556                 switch (status){
557                 case MONO_IMAGE_ERROR_ERRNO: {
558                         char *corlib_file = g_build_filename (mono_assembly_getrootdir (), "mono", current_runtime->framework_version, "mscorlib.dll", NULL);
559                         g_print ("The assembly mscorlib.dll was not found or could not be loaded.\n");
560                         g_print ("It should have been installed in the `%s' directory.\n", corlib_file);
561                         g_free (corlib_file);
562                         break;
563                 }
564                 case MONO_IMAGE_IMAGE_INVALID:
565                         g_print ("The file %s/mscorlib.dll is an invalid CIL image\n",
566                                  mono_assembly_getrootdir ());
567                         break;
568                 case MONO_IMAGE_MISSING_ASSEMBLYREF:
569                         g_print ("Missing assembly reference in %s/mscorlib.dll\n",
570                                  mono_assembly_getrootdir ());
571                         break;
572                 case MONO_IMAGE_OK:
573                         /* to suppress compiler warning */
574                         break;
575                 }
576                 
577                 exit (1);
578         }
579         mono_defaults.corlib = mono_assembly_get_image (ass);
580
581         mono_defaults.object_class = mono_class_load_from_name (
582                 mono_defaults.corlib, "System", "Object");
583
584         mono_defaults.void_class = mono_class_load_from_name (
585                 mono_defaults.corlib, "System", "Void");
586
587         mono_defaults.boolean_class = mono_class_load_from_name (
588                 mono_defaults.corlib, "System", "Boolean");
589
590         mono_defaults.byte_class = mono_class_load_from_name (
591                 mono_defaults.corlib, "System", "Byte");
592
593         mono_defaults.sbyte_class = mono_class_load_from_name (
594                 mono_defaults.corlib, "System", "SByte");
595
596         mono_defaults.int16_class = mono_class_load_from_name (
597                 mono_defaults.corlib, "System", "Int16");
598
599         mono_defaults.uint16_class = mono_class_load_from_name (
600                 mono_defaults.corlib, "System", "UInt16");
601
602         mono_defaults.int32_class = mono_class_load_from_name (
603                 mono_defaults.corlib, "System", "Int32");
604
605         mono_defaults.uint32_class = mono_class_load_from_name (
606                 mono_defaults.corlib, "System", "UInt32");
607
608         mono_defaults.uint_class = mono_class_load_from_name (
609                 mono_defaults.corlib, "System", "UIntPtr");
610
611         mono_defaults.int_class = mono_class_load_from_name (
612                 mono_defaults.corlib, "System", "IntPtr");
613
614         mono_defaults.int64_class = mono_class_load_from_name (
615                 mono_defaults.corlib, "System", "Int64");
616
617         mono_defaults.uint64_class = mono_class_load_from_name (
618                 mono_defaults.corlib, "System", "UInt64");
619
620         mono_defaults.single_class = mono_class_load_from_name (
621                 mono_defaults.corlib, "System", "Single");
622
623         mono_defaults.double_class = mono_class_load_from_name (
624                 mono_defaults.corlib, "System", "Double");
625
626         mono_defaults.char_class = mono_class_load_from_name (
627                 mono_defaults.corlib, "System", "Char");
628
629         mono_defaults.string_class = mono_class_load_from_name (
630                 mono_defaults.corlib, "System", "String");
631
632         mono_defaults.enum_class = mono_class_load_from_name (
633                 mono_defaults.corlib, "System", "Enum");
634
635         mono_defaults.array_class = mono_class_load_from_name (
636                 mono_defaults.corlib, "System", "Array");
637
638         mono_defaults.delegate_class = mono_class_load_from_name (
639                 mono_defaults.corlib, "System", "Delegate");
640
641         mono_defaults.multicastdelegate_class = mono_class_load_from_name (
642                 mono_defaults.corlib, "System", "MulticastDelegate");
643
644         mono_defaults.asyncresult_class = mono_class_load_from_name (
645                 mono_defaults.corlib, "System.Runtime.Remoting.Messaging", 
646                 "AsyncResult");
647
648         mono_defaults.manualresetevent_class = mono_class_load_from_name (
649                 mono_defaults.corlib, "System.Threading", "ManualResetEvent");
650
651         mono_defaults.typehandle_class = mono_class_load_from_name (
652                 mono_defaults.corlib, "System", "RuntimeTypeHandle");
653
654         mono_defaults.methodhandle_class = mono_class_load_from_name (
655                 mono_defaults.corlib, "System", "RuntimeMethodHandle");
656
657         mono_defaults.fieldhandle_class = mono_class_load_from_name (
658                 mono_defaults.corlib, "System", "RuntimeFieldHandle");
659
660         mono_defaults.systemtype_class = mono_class_load_from_name (
661                 mono_defaults.corlib, "System", "Type");
662
663         mono_defaults.runtimetype_class = mono_class_load_from_name (
664                 mono_defaults.corlib, "System", "RuntimeType");
665
666         mono_defaults.exception_class = mono_class_load_from_name (
667                 mono_defaults.corlib, "System", "Exception");
668
669         mono_defaults.threadabortexception_class = mono_class_load_from_name (
670                 mono_defaults.corlib, "System.Threading", "ThreadAbortException");
671
672         mono_defaults.thread_class = mono_class_load_from_name (
673                 mono_defaults.corlib, "System.Threading", "Thread");
674
675         mono_defaults.internal_thread_class = mono_class_load_from_name (
676                 mono_defaults.corlib, "System.Threading", "InternalThread");
677
678         mono_defaults.appdomain_class = mono_class_load_from_name (
679                 mono_defaults.corlib, "System", "AppDomain");
680
681 #ifndef DISABLE_REMOTING
682         mono_defaults.transparent_proxy_class = mono_class_load_from_name (
683                 mono_defaults.corlib, "System.Runtime.Remoting.Proxies", "TransparentProxy");
684
685         mono_defaults.real_proxy_class = mono_class_load_from_name (
686                 mono_defaults.corlib, "System.Runtime.Remoting.Proxies", "RealProxy");
687
688         mono_defaults.marshalbyrefobject_class =  mono_class_load_from_name (
689                 mono_defaults.corlib, "System", "MarshalByRefObject");
690
691         mono_defaults.iremotingtypeinfo_class = mono_class_load_from_name (
692                 mono_defaults.corlib, "System.Runtime.Remoting", "IRemotingTypeInfo");
693
694 #endif
695
696         mono_defaults.mono_method_message_class = mono_class_load_from_name (
697                 mono_defaults.corlib, "System.Runtime.Remoting.Messaging", "MonoMethodMessage");
698
699         mono_defaults.field_info_class = mono_class_load_from_name (
700                 mono_defaults.corlib, "System.Reflection", "FieldInfo");
701
702         mono_defaults.method_info_class = mono_class_load_from_name (
703                 mono_defaults.corlib, "System.Reflection", "MethodInfo");
704
705         mono_defaults.stringbuilder_class = mono_class_load_from_name (
706                 mono_defaults.corlib, "System.Text", "StringBuilder");
707
708         mono_defaults.math_class = mono_class_load_from_name (
709                 mono_defaults.corlib, "System", "Math");
710
711         mono_defaults.stack_frame_class = mono_class_load_from_name (
712                 mono_defaults.corlib, "System.Diagnostics", "StackFrame");
713
714         mono_defaults.stack_trace_class = mono_class_load_from_name (
715                 mono_defaults.corlib, "System.Diagnostics", "StackTrace");
716
717         mono_defaults.marshal_class = mono_class_load_from_name (
718                 mono_defaults.corlib, "System.Runtime.InteropServices", "Marshal");
719
720         mono_defaults.typed_reference_class = mono_class_load_from_name (
721                 mono_defaults.corlib, "System", "TypedReference");
722
723         mono_defaults.argumenthandle_class = mono_class_load_from_name (
724                 mono_defaults.corlib, "System", "RuntimeArgumentHandle");
725
726         mono_defaults.monitor_class = mono_class_load_from_name (
727                 mono_defaults.corlib, "System.Threading", "Monitor");
728         /*
729         Not using GENERATE_TRY_GET_CLASS_WITH_CACHE_DECL as this type is heavily checked by sgen when computing finalization.
730         */
731         mono_defaults.critical_finalizer_object = mono_class_try_load_from_name (mono_defaults.corlib,
732                         "System.Runtime.ConstrainedExecution", "CriticalFinalizerObject");
733
734         mono_assembly_load_friends (ass);
735
736         mono_defaults.handleref_class = mono_class_try_load_from_name (
737                 mono_defaults.corlib, "System.Runtime.InteropServices", "HandleRef");
738
739         mono_defaults.attribute_class = mono_class_load_from_name (
740                 mono_defaults.corlib, "System", "Attribute");
741
742         mono_defaults.customattribute_data_class = mono_class_load_from_name (
743                 mono_defaults.corlib, "System.Reflection", "CustomAttributeData");
744
745         mono_class_init (mono_defaults.array_class);
746         mono_defaults.generic_nullable_class = mono_class_load_from_name (
747                 mono_defaults.corlib, "System", "Nullable`1");
748         mono_defaults.generic_ilist_class = mono_class_load_from_name (
749                 mono_defaults.corlib, "System.Collections.Generic", "IList`1");
750         mono_defaults.generic_ireadonlylist_class = mono_class_load_from_name (
751                 mono_defaults.corlib, "System.Collections.Generic", "IReadOnlyList`1");
752
753         mono_defaults.threadpool_wait_callback_class = mono_class_load_from_name (
754                 mono_defaults.corlib, "System.Threading", "_ThreadPoolWaitCallback");
755
756         mono_defaults.threadpool_perform_wait_callback_method = mono_class_get_method_from_name (
757                 mono_defaults.threadpool_wait_callback_class, "PerformWaitCallback", 0);
758
759         domain->friendly_name = g_path_get_basename (filename);
760
761         mono_profiler_appdomain_name (domain, domain->friendly_name);
762
763         return domain;
764 }
765
766 /**
767  * mono_init:
768  * 
769  * Creates the initial application domain and initializes the mono_defaults
770  * structure.
771  *
772  * This function is guaranteed to not run any IL code.
773  * The runtime is initialized using the default runtime version.
774  *
775  * Returns: the initial domain.
776  */
777 MonoDomain *
778 mono_init (const char *domain_name)
779 {
780         return mono_init_internal (domain_name, NULL, DEFAULT_RUNTIME_VERSION);
781 }
782
783 /**
784  * mono_init_from_assembly:
785  * @domain_name: name to give to the initial domain
786  * @filename: filename to load on startup
787  *
788  * Used by the runtime, users should use mono_jit_init instead.
789  *
790  * Creates the initial application domain and initializes the mono_defaults
791  * structure.
792  * This function is guaranteed to not run any IL code.
793  * The runtime is initialized using the runtime version required by the
794  * provided executable. The version is determined by looking at the exe 
795  * configuration file and the version PE field)
796  *
797  * Returns: the initial domain.
798  */
799 MonoDomain *
800 mono_init_from_assembly (const char *domain_name, const char *filename)
801 {
802         return mono_init_internal (domain_name, filename, NULL);
803 }
804
805 /**
806  * mono_init_version:
807  * 
808  * Used by the runtime, users should use mono_jit_init instead.
809  * 
810  * Creates the initial application domain and initializes the mono_defaults
811  * structure.
812  *
813  * This function is guaranteed to not run any IL code.
814  * The runtime is initialized using the provided rutime version.
815  *
816  * Returns: the initial domain.
817  */
818 MonoDomain *
819 mono_init_version (const char *domain_name, const char *version)
820 {
821         return mono_init_internal (domain_name, NULL, version);
822 }
823
824 /**
825  * mono_cleanup:
826  *
827  * Cleans up all metadata modules. 
828  */
829 void
830 mono_cleanup (void)
831 {
832         mono_close_exe_image ();
833
834         mono_defaults.corlib = NULL;
835
836         mono_config_cleanup ();
837         mono_loader_cleanup ();
838         mono_classes_cleanup ();
839         mono_assemblies_cleanup ();
840         mono_debug_cleanup ();
841         mono_images_cleanup ();
842         mono_metadata_cleanup ();
843
844         mono_coop_mutex_destroy (&appdomains_mutex);
845
846         mono_w32process_cleanup ();
847         mono_w32file_cleanup ();
848 }
849
850 void
851 mono_close_exe_image (void)
852 {
853         if (exe_image)
854                 mono_image_close (exe_image);
855 }
856
857 /**
858  * mono_get_root_domain:
859  *
860  * The root AppDomain is the initial domain created by the runtime when it is
861  * initialized.  Programs execute on this AppDomain, but can create new ones
862  * later.   Currently there is no unmanaged API to create new AppDomains, this
863  * must be done from managed code.
864  *
865  * Returns: the root appdomain, to obtain the current domain, use mono_domain_get ()
866  */
867 MonoDomain*
868 mono_get_root_domain (void)
869 {
870         return mono_root_domain;
871 }
872
873 /**
874  * mono_domain_get:
875  *
876  * This method returns the value of the current MonoDomain that this thread
877  * and code are running under.   To obtain the root domain use
878  * mono_get_root_domain() API.
879  *
880  * Returns: the current domain
881  */
882 MonoDomain *
883 mono_domain_get ()
884 {
885         return GET_APPDOMAIN ();
886 }
887
888 void
889 mono_domain_unset (void)
890 {
891         SET_APPDOMAIN (NULL);
892 }
893
894 void
895 mono_domain_set_internal_with_options (MonoDomain *domain, gboolean migrate_exception)
896 {
897         MonoInternalThread *thread;
898
899         if (mono_domain_get () == domain)
900                 return;
901
902         SET_APPDOMAIN (domain);
903         SET_APPCONTEXT (domain->default_context);
904
905         if (migrate_exception) {
906                 thread = mono_thread_internal_current ();
907                 if (!thread->abort_exc)
908                         return;
909
910                 g_assert (thread->abort_exc->object.vtable->domain != domain);
911                 MONO_OBJECT_SETREF (thread, abort_exc, mono_get_exception_thread_abort ());
912                 g_assert (thread->abort_exc->object.vtable->domain == domain);
913         }
914 }
915
916 /**
917  * mono_domain_set_internal:
918  * @domain: the new domain
919  *
920  * Sets the current domain to @domain.
921  */
922 void
923 mono_domain_set_internal (MonoDomain *domain)
924 {
925         mono_domain_set_internal_with_options (domain, TRUE);
926 }
927
928 /**
929  * mono_domain_foreach:
930  * @func: function to invoke with the domain data
931  * @user_data: user-defined pointer that is passed to the supplied @func fo reach domain
932  *
933  * Use this method to safely iterate over all the loaded application
934  * domains in the current runtime.   The provided @func is invoked with a
935  * pointer to the MonoDomain and is given the value of the @user_data
936  * parameter which can be used to pass state to your called routine.
937  */
938 void
939 mono_domain_foreach (MonoDomainFunc func, gpointer user_data)
940 {
941         int i, size;
942         MonoDomain **copy;
943
944         /*
945          * Create a copy of the data to avoid calling the user callback
946          * inside the lock because that could lead to deadlocks.
947          * We can do this because this function is not perf. critical.
948          */
949         mono_appdomains_lock ();
950         size = appdomain_list_size;
951         copy = (MonoDomain **)mono_gc_alloc_fixed (appdomain_list_size * sizeof (void*), MONO_GC_DESCRIPTOR_NULL, MONO_ROOT_SOURCE_DOMAIN, "temporary domains list");
952         memcpy (copy, appdomains_list, appdomain_list_size * sizeof (void*));
953         mono_appdomains_unlock ();
954
955         for (i = 0; i < size; ++i) {
956                 if (copy [i])
957                         func (copy [i], user_data);
958         }
959
960         mono_gc_free_fixed (copy);
961 }
962
963 /**
964  * mono_domain_assembly_open:
965  * @domain: the application domain
966  * @name: file name of the assembly
967  *
968  * fixme: maybe we should integrate this with mono_assembly_open ??
969  */
970 MonoAssembly *
971 mono_domain_assembly_open (MonoDomain *domain, const char *name)
972 {
973         MonoDomain *current;
974         MonoAssembly *ass;
975         GSList *tmp;
976
977         mono_domain_assemblies_lock (domain);
978         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
979                 ass = (MonoAssembly *)tmp->data;
980                 if (strcmp (name, ass->aname.name) == 0) {
981                         mono_domain_assemblies_unlock (domain);
982                         return ass;
983                 }
984         }
985         mono_domain_assemblies_unlock (domain);
986
987         if (domain != mono_domain_get ()) {
988                 current = mono_domain_get ();
989
990                 mono_domain_set (domain, FALSE);
991                 ass = mono_assembly_open (name, NULL);
992                 mono_domain_set (current, FALSE);
993         } else {
994                 ass = mono_assembly_open (name, NULL);
995         }
996
997         return ass;
998 }
999
1000 static void
1001 unregister_vtable_reflection_type (MonoVTable *vtable)
1002 {
1003         MonoObject *type = (MonoObject *)vtable->type;
1004
1005         if (type->vtable->klass != mono_defaults.runtimetype_class)
1006                 MONO_GC_UNREGISTER_ROOT_IF_MOVING (vtable->type);
1007 }
1008
1009 /**
1010  * mono_domain_free:
1011  * @domain: the domain to release
1012  * @force: if true, it allows the root domain to be released (used at shutdown only).
1013  *
1014  * This releases the resources associated with the specific domain.
1015  * This is a low-level function that is invoked by the AppDomain infrastructure
1016  * when necessary.
1017  */
1018 void
1019 mono_domain_free (MonoDomain *domain, gboolean force)
1020 {
1021         int code_size, code_alloc;
1022         GSList *tmp;
1023         gpointer *p;
1024
1025         if ((domain == mono_root_domain) && !force) {
1026                 g_warning ("cant unload root domain");
1027                 return;
1028         }
1029
1030         if (mono_dont_free_domains)
1031                 return;
1032
1033         mono_profiler_appdomain_event (domain, MONO_PROFILE_START_UNLOAD);
1034
1035         mono_debug_domain_unload (domain);
1036
1037         mono_appdomains_lock ();
1038         appdomains_list [domain->domain_id] = NULL;
1039         mono_appdomains_unlock ();
1040
1041         /* must do this early as it accesses fields and types */
1042         if (domain->special_static_fields) {
1043                 mono_alloc_special_static_data_free (domain->special_static_fields);
1044                 g_hash_table_destroy (domain->special_static_fields);
1045                 domain->special_static_fields = NULL;
1046         }
1047
1048         /*
1049          * We must destroy all these hash tables here because they
1050          * contain references to managed objects belonging to the
1051          * domain.  Once we let the GC clear the domain there must be
1052          * no more such references, or we'll crash if a collection
1053          * occurs.
1054          */
1055         mono_g_hash_table_destroy (domain->ldstr_table);
1056         domain->ldstr_table = NULL;
1057
1058         mono_g_hash_table_destroy (domain->env);
1059         domain->env = NULL;
1060
1061         mono_reflection_cleanup_domain (domain);
1062
1063         /* This must be done before type_hash is freed */
1064         if (domain->class_vtable_array) {
1065                 int i;
1066                 for (i = 0; i < domain->class_vtable_array->len; ++i)
1067                         unregister_vtable_reflection_type ((MonoVTable *)g_ptr_array_index (domain->class_vtable_array, i));
1068         }
1069
1070         if (domain->type_hash) {
1071                 mono_g_hash_table_destroy (domain->type_hash);
1072                 domain->type_hash = NULL;
1073         }
1074         if (domain->type_init_exception_hash) {
1075                 mono_g_hash_table_destroy (domain->type_init_exception_hash);
1076                 domain->type_init_exception_hash = NULL;
1077         }
1078
1079         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
1080                 MonoAssembly *ass = (MonoAssembly *)tmp->data;
1081                 mono_assembly_release_gc_roots (ass);
1082         }
1083
1084         /* Have to zero out reference fields since they will be invalidated by the clear_domain () call below */
1085         for (p = (gpointer*)&domain->MONO_DOMAIN_FIRST_OBJECT; p < (gpointer*)&domain->MONO_DOMAIN_FIRST_GC_TRACKED; ++p)
1086                 *p = NULL;
1087
1088         /* This needs to be done before closing assemblies */
1089         mono_gc_clear_domain (domain);
1090
1091         /* Close dynamic assemblies first, since they have no ref count */
1092         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
1093                 MonoAssembly *ass = (MonoAssembly *)tmp->data;
1094                 if (!ass->image || !image_is_dynamic (ass->image))
1095                         continue;
1096                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Unloading domain %s[%p], assembly %s[%p], ref_count=%d", domain->friendly_name, domain, ass->aname.name, ass, ass->ref_count);
1097                 if (!mono_assembly_close_except_image_pools (ass))
1098                         tmp->data = NULL;
1099         }
1100
1101         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
1102                 MonoAssembly *ass = (MonoAssembly *)tmp->data;
1103                 if (!ass)
1104                         continue;
1105                 if (!ass->image || image_is_dynamic (ass->image))
1106                         continue;
1107                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Unloading domain %s[%p], assembly %s[%p], ref_count=%d", domain->friendly_name, domain, ass->aname.name, ass, ass->ref_count);
1108                 if (!mono_assembly_close_except_image_pools (ass))
1109                         tmp->data = NULL;
1110         }
1111
1112         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
1113                 MonoAssembly *ass = (MonoAssembly *)tmp->data;
1114                 if (ass)
1115                         mono_assembly_close_finish (ass);
1116         }
1117         g_slist_free (domain->domain_assemblies);
1118         domain->domain_assemblies = NULL;
1119
1120         /* 
1121          * Send this after the assemblies have been unloaded and the domain is still in a 
1122          * usable state.
1123          */
1124         mono_profiler_appdomain_event (domain, MONO_PROFILE_END_UNLOAD);
1125
1126         if (free_domain_hook)
1127                 free_domain_hook (domain);
1128
1129         /* FIXME: free delegate_hash_table when it's used */
1130         if (domain->search_path) {
1131                 g_strfreev (domain->search_path);
1132                 domain->search_path = NULL;
1133         }
1134         domain->create_proxy_for_type_method = NULL;
1135         domain->private_invoke_method = NULL;
1136         domain->default_context = NULL;
1137         domain->out_of_memory_ex = NULL;
1138         domain->null_reference_ex = NULL;
1139         domain->stack_overflow_ex = NULL;
1140         domain->ephemeron_tombstone = NULL;
1141         domain->entry_assembly = NULL;
1142
1143         g_free (domain->friendly_name);
1144         domain->friendly_name = NULL;
1145         g_ptr_array_free (domain->class_vtable_array, TRUE);
1146         domain->class_vtable_array = NULL;
1147         g_hash_table_destroy (domain->proxy_vtable_hash);
1148         domain->proxy_vtable_hash = NULL;
1149         if (domain->static_data_array) {
1150                 mono_gc_free_fixed (domain->static_data_array);
1151                 domain->static_data_array = NULL;
1152         }
1153         mono_internal_hash_table_destroy (&domain->jit_code_hash);
1154
1155         /*
1156          * There might still be jit info tables of this domain which
1157          * are not freed.  Since the domain cannot be in use anymore,
1158          * this will free them.
1159          */
1160         mono_thread_hazardous_try_free_all ();
1161         if (domain->aot_modules)
1162                 mono_jit_info_table_free (domain->aot_modules);
1163         g_assert (domain->num_jit_info_tables == 1);
1164         mono_jit_info_table_free (domain->jit_info_table);
1165         domain->jit_info_table = NULL;
1166         g_assert (!domain->jit_info_free_queue);
1167
1168         /* collect statistics */
1169         code_alloc = mono_code_manager_size (domain->code_mp, &code_size);
1170         total_domain_code_alloc += code_alloc;
1171         max_domain_code_alloc = MAX (max_domain_code_alloc, code_alloc);
1172         max_domain_code_size = MAX (max_domain_code_size, code_size);
1173
1174         if (debug_domain_unload) {
1175                 mono_mempool_invalidate (domain->mp);
1176                 mono_code_manager_invalidate (domain->code_mp);
1177         } else {
1178 #ifndef DISABLE_PERFCOUNTERS
1179                 mono_perfcounters->loader_bytes -= mono_mempool_get_allocated (domain->mp);
1180 #endif
1181                 mono_mempool_destroy (domain->mp);
1182                 domain->mp = NULL;
1183                 mono_code_manager_destroy (domain->code_mp);
1184                 domain->code_mp = NULL;
1185         }
1186         lock_free_mempool_free (domain->lock_free_mp);
1187         domain->lock_free_mp = NULL;
1188
1189         g_hash_table_destroy (domain->finalizable_objects_hash);
1190         domain->finalizable_objects_hash = NULL;
1191         if (domain->method_rgctx_hash) {
1192                 g_hash_table_destroy (domain->method_rgctx_hash);
1193                 domain->method_rgctx_hash = NULL;
1194         }
1195         if (domain->generic_virtual_cases) {
1196                 g_hash_table_destroy (domain->generic_virtual_cases);
1197                 domain->generic_virtual_cases = NULL;
1198         }
1199         if (domain->ftnptrs_hash) {
1200                 g_hash_table_destroy (domain->ftnptrs_hash);
1201                 domain->ftnptrs_hash = NULL;
1202         }
1203         if (domain->method_to_dyn_method) {
1204                 g_hash_table_destroy (domain->method_to_dyn_method);
1205                 domain->method_to_dyn_method = NULL;
1206         }
1207
1208         mono_os_mutex_destroy (&domain->finalizable_objects_hash_lock);
1209         mono_os_mutex_destroy (&domain->assemblies_lock);
1210         mono_os_mutex_destroy (&domain->jit_code_hash_lock);
1211
1212         mono_coop_mutex_destroy (&domain->lock);
1213
1214         domain->setup = NULL;
1215
1216         mono_gc_deregister_root ((char*)&(domain->MONO_DOMAIN_FIRST_GC_TRACKED));
1217
1218         /* FIXME: anything else required ? */
1219
1220         mono_gc_free_fixed (domain);
1221
1222 #ifndef DISABLE_PERFCOUNTERS
1223         mono_perfcounters->loader_appdomains--;
1224 #endif
1225
1226         if (domain == mono_root_domain)
1227                 mono_root_domain = NULL;
1228 }
1229
1230 /**
1231  * mono_domain_get_by_id:
1232  * @domainid: the ID
1233  *
1234  * Returns: the domain for a specific domain id.
1235  */
1236 MonoDomain * 
1237 mono_domain_get_by_id (gint32 domainid) 
1238 {
1239         MonoDomain * domain;
1240
1241         mono_appdomains_lock ();
1242         if (domainid < appdomain_list_size)
1243                 domain = appdomains_list [domainid];
1244         else
1245                 domain = NULL;
1246         mono_appdomains_unlock ();
1247
1248         return domain;
1249 }
1250
1251 /*
1252  * mono_domain_get_id:
1253  *
1254  * A domain ID is guaranteed to be unique for as long as the domain
1255  * using it is alive. It may be reused later once the domain has been
1256  * unloaded.
1257  *
1258  * Returns: The unique ID for @domain.
1259  */
1260 gint32
1261 mono_domain_get_id (MonoDomain *domain)
1262 {
1263         return domain->domain_id;
1264 }
1265
1266 /*
1267  * mono_domain_get_friendly_name:
1268  *
1269  * The returned string's lifetime is the same as @domain's. Consider
1270  * copying it if you need to store it somewhere.
1271  *
1272  * Returns: The friendly name of @domain. Can be NULL if not yet set.
1273  */
1274 const char *
1275 mono_domain_get_friendly_name (MonoDomain *domain)
1276 {
1277         return domain->friendly_name;
1278 }
1279
1280 /*
1281  * mono_domain_alloc:
1282  *
1283  * LOCKING: Acquires the domain lock.
1284  */
1285 gpointer
1286 mono_domain_alloc (MonoDomain *domain, guint size)
1287 {
1288         gpointer res;
1289
1290         mono_domain_lock (domain);
1291 #ifndef DISABLE_PERFCOUNTERS
1292         mono_perfcounters->loader_bytes += size;
1293 #endif
1294         res = mono_mempool_alloc (domain->mp, size);
1295         mono_domain_unlock (domain);
1296
1297         return res;
1298 }
1299
1300 /*
1301  * mono_domain_alloc0:
1302  *
1303  * LOCKING: Acquires the domain lock.
1304  */
1305 gpointer
1306 mono_domain_alloc0 (MonoDomain *domain, guint size)
1307 {
1308         gpointer res;
1309
1310         mono_domain_lock (domain);
1311 #ifndef DISABLE_PERFCOUNTERS
1312         mono_perfcounters->loader_bytes += size;
1313 #endif
1314         res = mono_mempool_alloc0 (domain->mp, size);
1315         mono_domain_unlock (domain);
1316
1317         return res;
1318 }
1319
1320 gpointer
1321 mono_domain_alloc0_lock_free (MonoDomain *domain, guint size)
1322 {
1323         return lock_free_mempool_alloc0 (domain->lock_free_mp, size);
1324 }
1325
1326 /*
1327  * mono_domain_code_reserve:
1328  *
1329  * LOCKING: Acquires the domain lock.
1330  */
1331 void*
1332 mono_domain_code_reserve (MonoDomain *domain, int size)
1333 {
1334         gpointer res;
1335
1336         mono_domain_lock (domain);
1337         res = mono_code_manager_reserve (domain->code_mp, size);
1338         mono_domain_unlock (domain);
1339
1340         return res;
1341 }
1342
1343 /*
1344  * mono_domain_code_reserve_align:
1345  *
1346  * LOCKING: Acquires the domain lock.
1347  */
1348 void*
1349 mono_domain_code_reserve_align (MonoDomain *domain, int size, int alignment)
1350 {
1351         gpointer res;
1352
1353         mono_domain_lock (domain);
1354         res = mono_code_manager_reserve_align (domain->code_mp, size, alignment);
1355         mono_domain_unlock (domain);
1356
1357         return res;
1358 }
1359
1360 /*
1361  * mono_domain_code_commit:
1362  *
1363  * LOCKING: Acquires the domain lock.
1364  */
1365 void
1366 mono_domain_code_commit (MonoDomain *domain, void *data, int size, int newsize)
1367 {
1368         mono_domain_lock (domain);
1369         mono_code_manager_commit (domain->code_mp, data, size, newsize);
1370         mono_domain_unlock (domain);
1371 }
1372
1373 /*
1374  * mono_domain_code_foreach:
1375  * Iterate over the code thunks of the code manager of @domain.
1376  * 
1377  * The @func callback MUST not take any locks. If it really needs to, it must respect
1378  * the locking rules of the runtime: http://www.mono-project.com/Mono:Runtime:Documentation:ThreadSafety 
1379  * LOCKING: Acquires the domain lock.
1380  */
1381
1382 void
1383 mono_domain_code_foreach (MonoDomain *domain, MonoCodeManagerFunc func, void *user_data)
1384 {
1385         mono_domain_lock (domain);
1386         mono_code_manager_foreach (domain->code_mp, func, user_data);
1387         mono_domain_unlock (domain);
1388 }
1389
1390
1391 void 
1392 mono_context_set (MonoAppContext * new_context)
1393 {
1394         SET_APPCONTEXT (new_context);
1395 }
1396
1397 /**
1398  * mono_context_get:
1399  *
1400  * Returns: the current Mono Application Context.
1401  */
1402 MonoAppContext * 
1403 mono_context_get (void)
1404 {
1405         return GET_APPCONTEXT ();
1406 }
1407
1408 /**
1409  * mono_context_get_id:
1410  * @context: the context to operate on.
1411  *
1412  * Context IDs are guaranteed to be unique for the duration of a Mono
1413  * process; they are never reused.
1414  *
1415  * Returns: The unique ID for @context.
1416  */
1417 gint32
1418 mono_context_get_id (MonoAppContext *context)
1419 {
1420         return context->context_id;
1421 }
1422
1423 /**
1424  * mono_context_get_domain_id:
1425  * @context: the context to operate on.
1426  *
1427  * Returns: The ID of the domain that @context was created in.
1428  */
1429 gint32
1430 mono_context_get_domain_id (MonoAppContext *context)
1431 {
1432         return context->domain_id;
1433 }
1434
1435 /* LOCKING: the caller holds the lock for this domain */
1436 void
1437 mono_domain_add_class_static_data (MonoDomain *domain, MonoClass *klass, gpointer data, guint32 *bitmap)
1438 {
1439         /* Note [Domain Static Data Array]:
1440          *
1441          * Entry 0 in the array is the index of the next free slot.
1442          * Entry 1 is the total size of the array.
1443          */
1444         int next;
1445         if (domain->static_data_array) {
1446                 int size = GPOINTER_TO_INT (domain->static_data_array [1]);
1447                 next = GPOINTER_TO_INT (domain->static_data_array [0]);
1448                 if (next >= size) {
1449                         /* 'data' is allocated by alloc_fixed */
1450                         gpointer *new_array = (gpointer *)mono_gc_alloc_fixed (sizeof (gpointer) * (size * 2), MONO_GC_ROOT_DESCR_FOR_FIXED (size * 2), MONO_ROOT_SOURCE_DOMAIN, "static field list");
1451                         mono_gc_memmove_aligned (new_array, domain->static_data_array, sizeof (gpointer) * size);
1452                         size *= 2;
1453                         new_array [1] = GINT_TO_POINTER (size);
1454                         mono_gc_free_fixed (domain->static_data_array);
1455                         domain->static_data_array = new_array;
1456                 }
1457         } else {
1458                 int size = 32;
1459                 gpointer *new_array = (gpointer *)mono_gc_alloc_fixed (sizeof (gpointer) * size, MONO_GC_ROOT_DESCR_FOR_FIXED (size), MONO_ROOT_SOURCE_DOMAIN, "static field list");
1460                 next = 2;
1461                 new_array [0] = GINT_TO_POINTER (next);
1462                 new_array [1] = GINT_TO_POINTER (size);
1463                 domain->static_data_array = new_array;
1464         }
1465         domain->static_data_array [next++] = data;
1466         domain->static_data_array [0] = GINT_TO_POINTER (next);
1467 }
1468
1469 /**
1470  * mono_get_corlib:
1471  *
1472  * Use this function to get the `MonoImage*` for the mscorlib.dll assembly
1473  *
1474  * Returns: The MonoImage for mscorlib.dll
1475  */
1476 MonoImage*
1477 mono_get_corlib (void)
1478 {
1479         return mono_defaults.corlib;
1480 }
1481
1482 /**
1483  * mono_get_object_class:
1484  *
1485  * Use this function to get the `MonoClass*` that the runtime is using for `System.Object`.
1486  *
1487  * Returns: The `MonoClass*` for the `System.Object` type.
1488  */
1489 MonoClass*
1490 mono_get_object_class (void)
1491 {
1492         return mono_defaults.object_class;
1493 }
1494
1495 /**
1496  * mono_get_byte_class:
1497  *
1498  * Use this function to get the `MonoClass*` that the runtime is using for `System.Byte`.
1499  *
1500  * Returns: The `MonoClass*` for the `System.Byte` type.
1501  */
1502 MonoClass*
1503 mono_get_byte_class (void)
1504 {
1505         return mono_defaults.byte_class;
1506 }
1507
1508 /**
1509  * mono_get_void_class:
1510  *
1511  * Use this function to get the `MonoClass*` that the runtime is using for `System.Void`.
1512  *
1513  * Returns: The `MonoClass*` for the `System.Void` type.
1514  */
1515 MonoClass*
1516 mono_get_void_class (void)
1517 {
1518         return mono_defaults.void_class;
1519 }
1520
1521 /**
1522  * mono_get_boolean_class:
1523  *
1524  * Use this function to get the `MonoClass*` that the runtime is using for `System.Boolean`.
1525  *
1526  * Returns: The `MonoClass*` for the `System.Boolean` type.
1527  */
1528 MonoClass*
1529 mono_get_boolean_class (void)
1530 {
1531         return mono_defaults.boolean_class;
1532 }
1533
1534 /**
1535  * mono_get_sbyte_class:
1536  *
1537  * Use this function to get the `MonoClass*` that the runtime is using for `System.SByte`.
1538  *
1539  * Returns: The `MonoClass*` for the `System.SByte` type.
1540  */
1541 MonoClass*
1542 mono_get_sbyte_class (void)
1543 {
1544         return mono_defaults.sbyte_class;
1545 }
1546
1547 /**
1548  * mono_get_int16_class:
1549  *
1550  * Use this function to get the `MonoClass*` that the runtime is using for `System.Int16`.
1551  *
1552  * Returns: The `MonoClass*` for the `System.Int16` type.
1553  */
1554 MonoClass*
1555 mono_get_int16_class (void)
1556 {
1557         return mono_defaults.int16_class;
1558 }
1559
1560 /**
1561  * mono_get_uint16_class:
1562  *
1563  * Use this function to get the `MonoClass*` that the runtime is using for `System.UInt16`.
1564  *
1565  * Returns: The `MonoClass*` for the `System.UInt16` type.
1566  */
1567 MonoClass*
1568 mono_get_uint16_class (void)
1569 {
1570         return mono_defaults.uint16_class;
1571 }
1572
1573 /**
1574  * mono_get_int32_class:
1575  *
1576  * Use this function to get the `MonoClass*` that the runtime is using for `System.Int32`.
1577  *
1578  * Returns: The `MonoClass*` for the `System.Int32` type.
1579  */
1580 MonoClass*
1581 mono_get_int32_class (void)
1582 {
1583         return mono_defaults.int32_class;
1584 }
1585
1586 /**
1587  * mono_get_uint32_class:
1588  *
1589  * Use this function to get the `MonoClass*` that the runtime is using for `System.UInt32`.
1590  *
1591  * Returns: The `MonoClass*` for the `System.UInt32` type.
1592  */
1593 MonoClass*
1594 mono_get_uint32_class (void)
1595 {
1596         return mono_defaults.uint32_class;
1597 }
1598
1599 /**
1600  * mono_get_intptr_class:
1601  *
1602  * Use this function to get the `MonoClass*` that the runtime is using for `System.IntPtr`.
1603  *
1604  * Returns: The `MonoClass*` for the `System.IntPtr` type.
1605  */
1606 MonoClass*
1607 mono_get_intptr_class (void)
1608 {
1609         return mono_defaults.int_class;
1610 }
1611
1612 /**
1613  * mono_get_uintptr_class:
1614  *
1615  * Use this function to get the `MonoClass*` that the runtime is using for `System.UIntPtr`.
1616  *
1617  * Returns: The `MonoClass*` for the `System.UIntPtr` type.
1618  */
1619 MonoClass*
1620 mono_get_uintptr_class (void)
1621 {
1622         return mono_defaults.uint_class;
1623 }
1624
1625 /**
1626  * mono_get_int64_class:
1627  *
1628  * Use this function to get the `MonoClass*` that the runtime is using for `System.Int64`.
1629  *
1630  * Returns: The `MonoClass*` for the `System.Int64` type.
1631  */
1632 MonoClass*
1633 mono_get_int64_class (void)
1634 {
1635         return mono_defaults.int64_class;
1636 }
1637
1638 /**
1639  * mono_get_uint64_class:
1640  *
1641  * Use this function to get the `MonoClass*` that the runtime is using for `System.UInt64`.
1642  *
1643  * Returns: The `MonoClass*` for the `System.UInt64` type.
1644  */
1645 MonoClass*
1646 mono_get_uint64_class (void)
1647 {
1648         return mono_defaults.uint64_class;
1649 }
1650
1651 /**
1652  * mono_get_single_class:
1653  *
1654  * Use this function to get the `MonoClass*` that the runtime is using for `System.Single` (32-bit floating points).
1655  *
1656  * Returns: The `MonoClass*` for the `System.Single` type.
1657  */
1658 MonoClass*
1659 mono_get_single_class (void)
1660 {
1661         return mono_defaults.single_class;
1662 }
1663
1664 /**
1665  * mono_get_double_class:
1666  *
1667  * Use this function to get the `MonoClass*` that the runtime is using for `System.Double` (64-bit floating points).
1668  *
1669  * Returns: The `MonoClass*` for the `System.Double` type.
1670  */
1671 MonoClass*
1672 mono_get_double_class (void)
1673 {
1674         return mono_defaults.double_class;
1675 }
1676
1677 /**
1678  * mono_get_char_class:
1679  *
1680  * Use this function to get the `MonoClass*` that the runtime is using for `System.Char`.
1681  *
1682  * Returns: The `MonoClass*` for the `System.Char` type.
1683  */
1684 MonoClass*
1685 mono_get_char_class (void)
1686 {
1687         return mono_defaults.char_class;
1688 }
1689
1690 /**
1691  * mono_get_string_class:
1692  *
1693  * Use this function to get the `MonoClass*` that the runtime is using for `System.String`.
1694  *
1695  * Returns: The `MonoClass*` for the `System.String` type.
1696  */
1697 MonoClass*
1698 mono_get_string_class (void)
1699 {
1700         return mono_defaults.string_class;
1701 }
1702
1703 /**
1704  * mono_get_enum_class:
1705  *
1706  * Use this function to get the `MonoClass*` that the runtime is using for `System.Enum`.
1707  *
1708  * Returns: The `MonoClass*` for the `System.Enum` type.
1709  */
1710 MonoClass*
1711 mono_get_enum_class (void)
1712 {
1713         return mono_defaults.enum_class;
1714 }
1715
1716 /**
1717  * mono_get_array_class:
1718  *
1719  * Use this function to get the `MonoClass*` that the runtime is using for `System.Array`.
1720  *
1721  * Returns: The `MonoClass*` for the `System.Array` type.
1722  */
1723 MonoClass*
1724 mono_get_array_class (void)
1725 {
1726         return mono_defaults.array_class;
1727 }
1728
1729 /**
1730  * mono_get_thread_class:
1731  *
1732  * Use this function to get the `MonoClass*` that the runtime is using for `System.Threading.Thread`.
1733  *
1734  * Returns: The `MonoClass*` for the `System.Threading.Thread` type.
1735  */
1736 MonoClass*
1737 mono_get_thread_class (void)
1738 {
1739         return mono_defaults.thread_class;
1740 }
1741
1742 /**
1743  * mono_get_exception_class:
1744  *
1745  * Use this function to get the `MonoClass*` that the runtime is using for `System.Exception`.
1746  *
1747  * Returns: The `MonoClass*` for the `` type.
1748  */
1749 MonoClass*
1750 mono_get_exception_class (void)
1751 {
1752         return mono_defaults.exception_class;
1753 }
1754
1755
1756 static char* get_attribute_value (const gchar **attribute_names, 
1757                                         const gchar **attribute_values, 
1758                                         const char *att_name)
1759 {
1760         int n;
1761         for (n=0; attribute_names[n] != NULL; n++) {
1762                 if (strcmp (attribute_names[n], att_name) == 0)
1763                         return g_strdup (attribute_values[n]);
1764         }
1765         return NULL;
1766 }
1767
1768 static void start_element (GMarkupParseContext *context, 
1769                            const gchar         *element_name,
1770                            const gchar        **attribute_names,
1771                            const gchar        **attribute_values,
1772                            gpointer             user_data,
1773                            GError             **error)
1774 {
1775         AppConfigInfo* app_config = (AppConfigInfo*) user_data;
1776         
1777         if (strcmp (element_name, "configuration") == 0) {
1778                 app_config->configuration_count++;
1779                 return;
1780         }
1781         if (strcmp (element_name, "startup") == 0) {
1782                 app_config->startup_count++;
1783                 return;
1784         }
1785         
1786         if (app_config->configuration_count != 1 || app_config->startup_count != 1)
1787                 return;
1788         
1789         if (strcmp (element_name, "requiredRuntime") == 0) {
1790                 app_config->required_runtime = get_attribute_value (attribute_names, attribute_values, "version");
1791         } else if (strcmp (element_name, "supportedRuntime") == 0) {
1792                 char *version = get_attribute_value (attribute_names, attribute_values, "version");
1793                 app_config->supported_runtimes = g_slist_append (app_config->supported_runtimes, version);
1794         }
1795 }
1796
1797 static void end_element   (GMarkupParseContext *context,
1798                            const gchar         *element_name,
1799                            gpointer             user_data,
1800                            GError             **error)
1801 {
1802         AppConfigInfo* app_config = (AppConfigInfo*) user_data;
1803         
1804         if (strcmp (element_name, "configuration") == 0) {
1805                 app_config->configuration_count--;
1806         } else if (strcmp (element_name, "startup") == 0) {
1807                 app_config->startup_count--;
1808         }
1809 }
1810
1811 static const GMarkupParser 
1812 mono_parser = {
1813         start_element,
1814         end_element,
1815         NULL,
1816         NULL,
1817         NULL
1818 };
1819
1820 static AppConfigInfo *
1821 app_config_parse (const char *exe_filename)
1822 {
1823         AppConfigInfo *app_config;
1824         GMarkupParseContext *context;
1825         char *text;
1826         gsize len;
1827         const char *bundled_config;
1828         char *config_filename;
1829
1830         bundled_config = mono_config_string_for_assembly_file (exe_filename);
1831
1832         if (bundled_config) {
1833                 text = g_strdup (bundled_config);
1834                 len = strlen (text);
1835         } else {
1836                 config_filename = g_strconcat (exe_filename, ".config", NULL);
1837
1838                 if (!g_file_get_contents (config_filename, &text, &len, NULL)) {
1839                         g_free (config_filename);
1840                         return NULL;
1841                 }
1842                 g_free (config_filename);
1843         }
1844
1845         app_config = g_new0 (AppConfigInfo, 1);
1846
1847         context = g_markup_parse_context_new (&mono_parser, (GMarkupParseFlags)0, app_config, NULL);
1848         if (g_markup_parse_context_parse (context, text, len, NULL)) {
1849                 g_markup_parse_context_end_parse (context, NULL);
1850         }
1851         g_markup_parse_context_free (context);
1852         g_free (text);
1853         return app_config;
1854 }
1855
1856 static void 
1857 app_config_free (AppConfigInfo* app_config)
1858 {
1859         char *rt;
1860         GSList *list = app_config->supported_runtimes;
1861         while (list != NULL) {
1862                 rt = (char*)list->data;
1863                 g_free (rt);
1864                 list = g_slist_next (list);
1865         }
1866         g_slist_free (app_config->supported_runtimes);
1867         g_free (app_config->required_runtime);
1868         g_free (app_config);
1869 }
1870
1871
1872 static const MonoRuntimeInfo*
1873 get_runtime_by_version (const char *version)
1874 {
1875         int n;
1876         int max = G_N_ELEMENTS (supported_runtimes);
1877         int vlen;
1878
1879         if (!version)
1880                 return NULL;
1881
1882         for (n=0; n<max; n++) {
1883                 if (strcmp (version, supported_runtimes[n].runtime_version) == 0)
1884                         return &supported_runtimes[n];
1885         }
1886         
1887         vlen = strlen (version);
1888         if (vlen >= 4 && version [1] - '0' >= 4) {
1889                 for (n=0; n<max; n++) {
1890                         if (strncmp (version, supported_runtimes[n].runtime_version, 4) == 0)
1891                                 return &supported_runtimes[n];
1892                 }
1893         }
1894         
1895         return NULL;
1896 }
1897
1898 static void
1899 get_runtimes_from_exe (const char *exe_file, MonoImage **exe_image, const MonoRuntimeInfo** runtimes)
1900 {
1901         AppConfigInfo* app_config;
1902         char *version;
1903         const MonoRuntimeInfo* runtime = NULL;
1904         MonoImage *image = NULL;
1905         
1906         app_config = app_config_parse (exe_file);
1907         
1908         if (app_config != NULL) {
1909                 /* Check supportedRuntime elements, if none is supported, fail.
1910                  * If there are no such elements, look for a requiredRuntime element.
1911                  */
1912                 if (app_config->supported_runtimes != NULL) {
1913                         int n = 0;
1914                         GSList *list = app_config->supported_runtimes;
1915                         while (list != NULL) {
1916                                 version = (char*) list->data;
1917                                 runtime = get_runtime_by_version (version);
1918                                 if (runtime != NULL)
1919                                         runtimes [n++] = runtime;
1920                                 list = g_slist_next (list);
1921                         }
1922                         runtimes [n] = NULL;
1923                         app_config_free (app_config);
1924                         return;
1925                 }
1926                 
1927                 /* Check the requiredRuntime element. This is for 1.0 apps only. */
1928                 if (app_config->required_runtime != NULL) {
1929                         runtimes [0] = get_runtime_by_version (app_config->required_runtime);
1930                         runtimes [1] = NULL;
1931                         app_config_free (app_config);
1932                         return;
1933                 }
1934                 app_config_free (app_config);
1935         }
1936         
1937         /* Look for a runtime with the exact version */
1938         image = mono_assembly_open_from_bundle (exe_file, NULL, FALSE);
1939
1940         if (image == NULL)
1941                 image = mono_image_open (exe_file, NULL);
1942
1943         if (image == NULL) {
1944                 /* The image is wrong or the file was not found. In this case return
1945                  * a default runtime and leave to the initialization method the work of
1946                  * reporting the error.
1947                  */
1948                 runtimes [0] = get_runtime_by_version (DEFAULT_RUNTIME_VERSION);
1949                 runtimes [1] = NULL;
1950                 return;
1951         }
1952
1953         *exe_image = image;
1954
1955         runtimes [0] = get_runtime_by_version (image->version);
1956         runtimes [1] = NULL;
1957 }
1958
1959
1960 /**
1961  * mono_get_runtime_info:
1962  *
1963  * Returns: the version of the current runtime instance.
1964  */
1965 const MonoRuntimeInfo*
1966 mono_get_runtime_info (void)
1967 {
1968         return current_runtime;
1969 }
1970
1971 /**
1972  * mono_framework_version:
1973  *
1974  * Return the major version of the framework curently executing.
1975  */
1976 int
1977 mono_framework_version (void)
1978 {
1979         return current_runtime->framework_version [0] - '0';
1980 }
1981
1982 void
1983 mono_enable_debug_domain_unload (gboolean enable)
1984 {
1985         debug_domain_unload = enable;
1986 }
1987
1988 MonoAotCacheConfig *
1989 mono_get_aot_cache_config (void)
1990 {
1991         return &aot_cache_config;
1992 }
1993
1994 void
1995 mono_domain_lock (MonoDomain *domain)
1996 {
1997         mono_locks_coop_acquire (&domain->lock, DomainLock);
1998 }
1999
2000 void
2001 mono_domain_unlock (MonoDomain *domain)
2002 {
2003         mono_locks_coop_release (&domain->lock, DomainLock);
2004 }
2005
2006 GPtrArray*
2007 mono_domain_get_assemblies (MonoDomain *domain, gboolean refonly)
2008 {
2009         GSList *tmp;
2010         GPtrArray *assemblies;
2011         MonoAssembly *ass;
2012
2013         assemblies = g_ptr_array_new ();
2014         mono_domain_assemblies_lock (domain);
2015         for (tmp = domain->domain_assemblies; tmp; tmp = tmp->next) {
2016                 ass = (MonoAssembly *)tmp->data;
2017                 if (refonly != ass->ref_only)
2018                         continue;
2019                 if (ass->corlib_internal)
2020                         continue;
2021                 g_ptr_array_add (assemblies, ass);
2022         }
2023         mono_domain_assemblies_unlock (domain);
2024         return assemblies;
2025 }