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