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