2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
[mono.git] / mono / metadata / object.c
1 /*
2  * object.c: Object creation for the Mono runtime
3  *
4  * Author:
5  *   Miguel de Icaza (miguel@ximian.com)
6  *   Paolo Molaro (lupus@ximian.com)
7  *
8  * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
9  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
10  */
11 #include <config.h>
12 #ifdef HAVE_ALLOCA_H
13 #include <alloca.h>
14 #endif
15 #include <stdlib.h>
16 #include <stdio.h>
17 #include <signal.h>
18 #include <string.h>
19 #include <mono/metadata/mono-endian.h>
20 #include <mono/metadata/tabledefs.h>
21 #include <mono/metadata/tokentype.h>
22 #include <mono/metadata/loader.h>
23 #include <mono/metadata/object.h>
24 #include <mono/metadata/gc-internal.h>
25 #include <mono/metadata/exception.h>
26 #include <mono/metadata/domain-internals.h>
27 #include "mono/metadata/metadata-internals.h"
28 #include "mono/metadata/class-internals.h"
29 #include <mono/metadata/assembly.h>
30 #include <mono/metadata/threadpool.h>
31 #include <mono/metadata/marshal.h>
32 #include "mono/metadata/debug-helpers.h"
33 #include "mono/metadata/marshal.h"
34 #include <mono/metadata/threads.h>
35 #include <mono/metadata/threads-types.h>
36 #include <mono/metadata/environment.h>
37 #include "mono/metadata/profiler-private.h"
38 #include "mono/metadata/security-manager.h"
39 #include "mono/metadata/mono-debug-debugger.h"
40 #include <mono/metadata/gc-internal.h>
41 #include <mono/metadata/verify-internals.h>
42 #include <mono/utils/strenc.h>
43 #include <mono/utils/mono-counters.h>
44 #include <mono/utils/mono-error-internals.h>
45 #include "cominterop.h"
46
47 #ifdef HAVE_BOEHM_GC
48 #define NEED_TO_ZERO_PTRFREE 1
49 #define ALLOC_PTRFREE(obj,vt,size) do { (obj) = GC_MALLOC_ATOMIC ((size)); (obj)->vtable = (vt); (obj)->synchronisation = NULL;} while (0)
50 #define ALLOC_OBJECT(obj,vt,size) do { (obj) = GC_MALLOC ((size)); (obj)->vtable = (vt);} while (0)
51 #ifdef HAVE_GC_GCJ_MALLOC
52 #define GC_NO_DESCRIPTOR ((gpointer)(0 | GC_DS_LENGTH))
53 #define ALLOC_TYPED(dest,size,type) do { (dest) = GC_GCJ_MALLOC ((size),(type)); } while (0)
54 #else
55 #define GC_NO_DESCRIPTOR (NULL)
56 #define ALLOC_TYPED(dest,size,type) do { (dest) = GC_MALLOC ((size)); *(gpointer*)dest = (type);} while (0)
57 #endif
58 #else
59 #ifdef HAVE_SGEN_GC
60 #define GC_NO_DESCRIPTOR (NULL)
61 #define ALLOC_PTRFREE(obj,vt,size) do { (obj) = mono_gc_alloc_obj (vt, size);} while (0)
62 #define ALLOC_OBJECT(obj,vt,size) do { (obj) = mono_gc_alloc_obj (vt, size);} while (0)
63 #define ALLOC_TYPED(dest,size,type) do { (dest) = mono_gc_alloc_obj (type, size);} while (0)
64 #else
65 #define NEED_TO_ZERO_PTRFREE 1
66 #define GC_NO_DESCRIPTOR (NULL)
67 #define ALLOC_PTRFREE(obj,vt,size) do { (obj) = malloc ((size)); (obj)->vtable = (vt); (obj)->synchronisation = NULL;} while (0)
68 #define ALLOC_OBJECT(obj,vt,size) do { (obj) = calloc (1, (size)); (obj)->vtable = (vt);} while (0)
69 #define ALLOC_TYPED(dest,size,type) do { (dest) = calloc (1, (size)); *(gpointer*)dest = (type);} while (0)
70 #endif
71 #endif
72
73 static MonoObject* mono_object_new_ptrfree (MonoVTable *vtable);
74 static MonoObject* mono_object_new_ptrfree_box (MonoVTable *vtable);
75
76 static void
77 get_default_field_value (MonoDomain* domain, MonoClassField *field, void *value);
78
79 static MonoString*
80 mono_ldstr_metadata_sig (MonoDomain *domain, const char* sig);
81
82 #define ldstr_lock() EnterCriticalSection (&ldstr_section)
83 #define ldstr_unlock() LeaveCriticalSection (&ldstr_section)
84 static CRITICAL_SECTION ldstr_section;
85
86 static gboolean profile_allocs = TRUE;
87
88 void
89 mono_runtime_object_init (MonoObject *this)
90 {
91         MonoMethod *method = NULL;
92         MonoClass *klass = this->vtable->klass;
93
94         method = mono_class_get_method_from_name (klass, ".ctor", 0);
95         g_assert (method);
96
97         if (method->klass->valuetype)
98                 this = mono_object_unbox (this);
99         mono_runtime_invoke (method, this, NULL, NULL);
100 }
101
102 /* The pseudo algorithm for type initialization from the spec
103 Note it doesn't say anything about domains - only threads.
104
105 2. If the type is initialized you are done.
106 2.1. If the type is not yet initialized, try to take an 
107      initialization lock.  
108 2.2. If successful, record this thread as responsible for 
109      initializing the type and proceed to step 2.3.
110 2.2.1. If not, see whether this thread or any thread 
111      waiting for this thread to complete already holds the lock.
112 2.2.2. If so, return since blocking would create a deadlock.  This thread 
113      will now see an incompletely initialized state for the type, 
114      but no deadlock will arise.
115 2.2.3  If not, block until the type is initialized then return.
116 2.3 Initialize the parent type and then all interfaces implemented 
117     by this type.
118 2.4 Execute the type initialization code for this type.
119 2.5 Mark the type as initialized, release the initialization lock, 
120     awaken any threads waiting for this type to be initialized, 
121     and return.
122
123 */
124
125 typedef struct
126 {
127         guint32 initializing_tid;
128         guint32 waiting_count;
129         gboolean done;
130         CRITICAL_SECTION initialization_section;
131 } TypeInitializationLock;
132
133 /* for locking access to type_initialization_hash and blocked_thread_hash */
134 #define mono_type_initialization_lock() EnterCriticalSection (&type_initialization_section)
135 #define mono_type_initialization_unlock() LeaveCriticalSection (&type_initialization_section)
136 static CRITICAL_SECTION type_initialization_section;
137
138 /* from vtable to lock */
139 static GHashTable *type_initialization_hash;
140
141 /* from thread id to thread id being waited on */
142 static GHashTable *blocked_thread_hash;
143
144 /* Main thread */
145 static MonoThread *main_thread;
146
147 /* Functions supplied by the runtime */
148 static MonoRuntimeCallbacks callbacks;
149
150 /**
151  * mono_thread_set_main:
152  * @thread: thread to set as the main thread
153  *
154  * This function can be used to instruct the runtime to treat @thread
155  * as the main thread, ie, the thread that would normally execute the Main()
156  * method. This basically means that at the end of @thread, the runtime will
157  * wait for the existing foreground threads to quit and other such details.
158  */
159 void
160 mono_thread_set_main (MonoThread *thread)
161 {
162         main_thread = thread;
163 }
164
165 MonoThread*
166 mono_thread_get_main (void)
167 {
168         return main_thread;
169 }
170
171 void
172 mono_type_initialization_init (void)
173 {
174         InitializeCriticalSection (&type_initialization_section);
175         type_initialization_hash = g_hash_table_new (NULL, NULL);
176         blocked_thread_hash = g_hash_table_new (NULL, NULL);
177         InitializeCriticalSection (&ldstr_section);
178 }
179
180 void
181 mono_type_initialization_cleanup (void)
182 {
183 #if 0
184         /* This is causing race conditions with
185          * mono_release_type_locks
186          */
187         DeleteCriticalSection (&type_initialization_section);
188 #endif
189         DeleteCriticalSection (&ldstr_section);
190 }
191
192 /**
193  * get_type_init_exception_for_vtable:
194  *
195  *   Return the stored type initialization exception for VTABLE.
196  */
197 static MonoException*
198 get_type_init_exception_for_vtable (MonoVTable *vtable)
199 {
200         MonoDomain *domain = vtable->domain;
201         MonoClass *klass = vtable->klass;
202         MonoException *ex;
203         gchar *full_name;
204
205         g_assert (vtable->init_failed);
206
207         /* 
208          * If the initializing thread was rudely aborted, the exception is not stored
209          * in the hash.
210          */
211         ex = NULL;
212         mono_domain_lock (domain);
213         if (domain->type_init_exception_hash)
214                 ex = mono_g_hash_table_lookup (domain->type_init_exception_hash, klass);
215         mono_domain_unlock (domain);
216
217         if (!ex) {
218                 if (klass->name_space && *klass->name_space)
219                         full_name = g_strdup_printf ("%s.%s", klass->name_space, klass->name);
220                 else
221                         full_name = g_strdup (klass->name);
222                 ex = mono_get_exception_type_initialization (full_name, NULL);
223                 g_free (full_name);
224         }
225
226         return ex;
227 }
228 /*
229  * mono_runtime_class_init:
230  * @vtable: vtable that needs to be initialized
231  *
232  * This routine calls the class constructor for @vtable.
233  */
234 void
235 mono_runtime_class_init (MonoVTable *vtable)
236 {
237         mono_runtime_class_init_full (vtable, TRUE);
238 }
239
240 /*
241  * mono_runtime_class_init_full:
242  * @vtable that neeeds to be initialized
243  * @raise_exception is TRUE, exceptions are raised intead of returned 
244  * 
245  */
246 MonoException *
247 mono_runtime_class_init_full (MonoVTable *vtable, gboolean raise_exception)
248 {
249         MonoException *exc;
250         MonoException *exc_to_throw;
251         MonoMethod *method = NULL;
252         MonoClass *klass;
253         gchar *full_name;
254
255         MONO_ARCH_SAVE_REGS;
256
257         if (vtable->initialized)
258                 return NULL;
259
260         exc = NULL;
261         klass = vtable->klass;
262
263         if (!klass->image->checked_module_cctor) {
264                 mono_image_check_for_module_cctor (klass->image);
265                 if (klass->image->has_module_cctor) {
266                         MonoClass *module_klass = mono_class_get (klass->image, MONO_TOKEN_TYPE_DEF | 1);
267                         MonoVTable *module_vtable = mono_class_vtable_full (vtable->domain, module_klass, raise_exception);
268                         if (!module_vtable)
269                                 return NULL;
270                         mono_runtime_class_init (module_vtable);
271                 }
272         }
273         method = mono_class_get_cctor (klass);
274
275         if (method) {
276                 MonoDomain *domain = vtable->domain;
277                 TypeInitializationLock *lock;
278                 guint32 tid = GetCurrentThreadId();
279                 int do_initialization = 0;
280                 MonoDomain *last_domain = NULL;
281
282                 mono_type_initialization_lock ();
283                 /* double check... */
284                 if (vtable->initialized) {
285                         mono_type_initialization_unlock ();
286                         return NULL;
287                 }
288                 if (vtable->init_failed) {
289                         mono_type_initialization_unlock ();
290
291                         /* The type initialization already failed once, rethrow the same exception */
292                         if (raise_exception)
293                                 mono_raise_exception (get_type_init_exception_for_vtable (vtable));
294                         return get_type_init_exception_for_vtable (vtable);
295                 }                       
296                 lock = g_hash_table_lookup (type_initialization_hash, vtable);
297                 if (lock == NULL) {
298                         /* This thread will get to do the initialization */
299                         if (mono_domain_get () != domain) {
300                                 /* Transfer into the target domain */
301                                 last_domain = mono_domain_get ();
302                                 if (!mono_domain_set (domain, FALSE)) {
303                                         vtable->initialized = 1;
304                                         mono_type_initialization_unlock ();
305                                         if (raise_exception)
306                                                 mono_raise_exception (mono_get_exception_appdomain_unloaded ());
307                                         return mono_get_exception_appdomain_unloaded ();
308                                 }
309                         }
310                         lock = g_malloc (sizeof(TypeInitializationLock));
311                         InitializeCriticalSection (&lock->initialization_section);
312                         lock->initializing_tid = tid;
313                         lock->waiting_count = 1;
314                         lock->done = FALSE;
315                         /* grab the vtable lock while this thread still owns type_initialization_section */
316                         EnterCriticalSection (&lock->initialization_section);
317                         g_hash_table_insert (type_initialization_hash, vtable, lock);
318                         do_initialization = 1;
319                 } else {
320                         gpointer blocked;
321                         TypeInitializationLock *pending_lock;
322
323                         if (lock->initializing_tid == tid || lock->done) {
324                                 mono_type_initialization_unlock ();
325                                 return NULL;
326                         }
327                         /* see if the thread doing the initialization is already blocked on this thread */
328                         blocked = GUINT_TO_POINTER (lock->initializing_tid);
329                         while ((pending_lock = (TypeInitializationLock*) g_hash_table_lookup (blocked_thread_hash, blocked))) {
330                                 if (pending_lock->initializing_tid == tid) {
331                                         if (!pending_lock->done) {
332                                                 mono_type_initialization_unlock ();
333                                                 return NULL;
334                                         } else {
335                                                 /* the thread doing the initialization is blocked on this thread,
336                                                    but on a lock that has already been freed. It just hasn't got
337                                                    time to awake */
338                                                 break;
339                                         }
340                                 }
341                                 blocked = GUINT_TO_POINTER (pending_lock->initializing_tid);
342                         }
343                         ++lock->waiting_count;
344                         /* record the fact that we are waiting on the initializing thread */
345                         g_hash_table_insert (blocked_thread_hash, GUINT_TO_POINTER (tid), lock);
346                 }
347                 mono_type_initialization_unlock ();
348
349                 if (do_initialization) {
350                         mono_runtime_invoke (method, NULL, NULL, (MonoObject **) &exc);
351
352                         /* If the initialization failed, mark the class as unusable. */
353                         /* Avoid infinite loops */
354                         if (!(exc == NULL ||
355                                   (klass->image == mono_defaults.corlib &&              
356                                    !strcmp (klass->name_space, "System") &&
357                                    !strcmp (klass->name, "TypeInitializationException")))) {
358                                 vtable->init_failed = 1;
359
360                                 if (klass->name_space && *klass->name_space)
361                                         full_name = g_strdup_printf ("%s.%s", klass->name_space, klass->name);
362                                 else
363                                         full_name = g_strdup (klass->name);
364                                 exc_to_throw = mono_get_exception_type_initialization (full_name, exc);
365                                 g_free (full_name);
366
367                                 /* 
368                                  * Store the exception object so it could be thrown on subsequent 
369                                  * accesses.
370                                  */
371                                 mono_domain_lock (domain);
372                                 if (!domain->type_init_exception_hash)
373                                         domain->type_init_exception_hash = mono_g_hash_table_new_type (mono_aligned_addr_hash, NULL, MONO_HASH_VALUE_GC);
374                                 mono_g_hash_table_insert (domain->type_init_exception_hash, klass, exc_to_throw);
375                                 mono_domain_unlock (domain);
376                         }
377
378                         if (last_domain)
379                                 mono_domain_set (last_domain, TRUE);
380                         lock->done = TRUE;
381                         LeaveCriticalSection (&lock->initialization_section);
382                 } else {
383                         /* this just blocks until the initializing thread is done */
384                         EnterCriticalSection (&lock->initialization_section);
385                         LeaveCriticalSection (&lock->initialization_section);
386                 }
387
388                 mono_type_initialization_lock ();
389                 if (lock->initializing_tid != tid)
390                         g_hash_table_remove (blocked_thread_hash, GUINT_TO_POINTER (tid));
391                 --lock->waiting_count;
392                 if (lock->waiting_count == 0) {
393                         DeleteCriticalSection (&lock->initialization_section);
394                         g_hash_table_remove (type_initialization_hash, vtable);
395                         g_free (lock);
396                 }
397                 if (!vtable->init_failed)
398                         vtable->initialized = 1;
399                 mono_type_initialization_unlock ();
400
401                 if (vtable->init_failed) {
402                         /* Either we were the initializing thread or we waited for the initialization */
403                         if (raise_exception)
404                                 mono_raise_exception (get_type_init_exception_for_vtable (vtable));
405                         return get_type_init_exception_for_vtable (vtable);
406                 }
407         } else {
408                 vtable->initialized = 1;
409                 return NULL;
410         }
411         return NULL;
412 }
413
414 static
415 gboolean release_type_locks (gpointer key, gpointer value, gpointer user)
416 {
417         MonoVTable *vtable = (MonoVTable*)key;
418
419         TypeInitializationLock *lock = (TypeInitializationLock*) value;
420         if (lock->initializing_tid == GPOINTER_TO_UINT (user) && !lock->done) {
421                 lock->done = TRUE;
422                 /* 
423                  * Have to set this since it cannot be set by the normal code in 
424                  * mono_runtime_class_init (). In this case, the exception object is not stored,
425                  * and get_type_init_exception_for_class () needs to be aware of this.
426                  */
427                 vtable->init_failed = 1;
428                 LeaveCriticalSection (&lock->initialization_section);
429                 --lock->waiting_count;
430                 if (lock->waiting_count == 0) {
431                         DeleteCriticalSection (&lock->initialization_section);
432                         g_free (lock);
433                         return TRUE;
434                 }
435         }
436         return FALSE;
437 }
438
439 void
440 mono_release_type_locks (MonoInternalThread *thread)
441 {
442         mono_type_initialization_lock ();
443         g_hash_table_foreach_remove (type_initialization_hash, release_type_locks, (gpointer)(gsize)(thread->tid));
444         mono_type_initialization_unlock ();
445 }
446
447 static gpointer
448 default_trampoline (MonoMethod *method)
449 {
450         return method;
451 }
452
453 static gpointer
454 default_jump_trampoline (MonoDomain *domain, MonoMethod *method, gboolean add_sync_wrapper)
455 {
456         g_assert_not_reached ();
457
458         return NULL;
459 }
460
461 static gpointer
462 default_remoting_trampoline (MonoDomain *domain, MonoMethod *method, MonoRemotingTarget target)
463 {
464         g_error ("remoting not installed");
465         return NULL;
466 }
467
468 static gpointer
469 default_delegate_trampoline (MonoClass *klass)
470 {
471         g_assert_not_reached ();
472         return NULL;
473 }
474
475 static MonoTrampoline arch_create_jit_trampoline = default_trampoline;
476 static MonoJumpTrampoline arch_create_jump_trampoline = default_jump_trampoline;
477 static MonoRemotingTrampoline arch_create_remoting_trampoline = default_remoting_trampoline;
478 static MonoDelegateTrampoline arch_create_delegate_trampoline = default_delegate_trampoline;
479 static MonoImtThunkBuilder imt_thunk_builder = NULL;
480 #define ARCH_USE_IMT (imt_thunk_builder != NULL)
481 #if (MONO_IMT_SIZE > 32)
482 #error "MONO_IMT_SIZE cannot be larger than 32"
483 #endif
484
485 void
486 mono_install_callbacks (MonoRuntimeCallbacks *cbs)
487 {
488         memcpy (&callbacks, cbs, sizeof (*cbs));
489 }
490
491 MonoRuntimeCallbacks*
492 mono_get_runtime_callbacks (void)
493 {
494         return &callbacks;
495 }
496
497 void
498 mono_install_trampoline (MonoTrampoline func) 
499 {
500         arch_create_jit_trampoline = func? func: default_trampoline;
501 }
502
503 void
504 mono_install_jump_trampoline (MonoJumpTrampoline func) 
505 {
506         arch_create_jump_trampoline = func? func: default_jump_trampoline;
507 }
508
509 void
510 mono_install_remoting_trampoline (MonoRemotingTrampoline func) 
511 {
512         arch_create_remoting_trampoline = func? func: default_remoting_trampoline;
513 }
514
515 void
516 mono_install_delegate_trampoline (MonoDelegateTrampoline func) 
517 {
518         arch_create_delegate_trampoline = func? func: default_delegate_trampoline;
519 }
520
521 void
522 mono_install_imt_thunk_builder (MonoImtThunkBuilder func) {
523         imt_thunk_builder = func;
524 }
525
526 static MonoCompileFunc default_mono_compile_method = NULL;
527
528 /**
529  * mono_install_compile_method:
530  * @func: function to install
531  *
532  * This is a VM internal routine
533  */
534 void        
535 mono_install_compile_method (MonoCompileFunc func)
536 {
537         default_mono_compile_method = func;
538 }
539
540 /**
541  * mono_compile_method:
542  * @method: The method to compile.
543  *
544  * This JIT-compiles the method, and returns the pointer to the native code
545  * produced.
546  */
547 gpointer 
548 mono_compile_method (MonoMethod *method)
549 {
550         if (!default_mono_compile_method) {
551                 g_error ("compile method called on uninitialized runtime");
552                 return NULL;
553         }
554         return default_mono_compile_method (method);
555 }
556
557 gpointer
558 mono_runtime_create_jump_trampoline (MonoDomain *domain, MonoMethod *method, gboolean add_sync_wrapper)
559 {
560         return arch_create_jump_trampoline (domain, method, add_sync_wrapper);
561 }
562
563 gpointer
564 mono_runtime_create_delegate_trampoline (MonoClass *klass)
565 {
566         return arch_create_delegate_trampoline (klass);
567 }
568
569 static MonoFreeMethodFunc default_mono_free_method = NULL;
570
571 /**
572  * mono_install_free_method:
573  * @func: pointer to the MonoFreeMethodFunc used to release a method
574  *
575  * This is an internal VM routine, it is used for the engines to
576  * register a handler to release the resources associated with a method.
577  *
578  * Methods are freed when no more references to the delegate that holds
579  * them are left.
580  */
581 void
582 mono_install_free_method (MonoFreeMethodFunc func)
583 {
584         default_mono_free_method = func;
585 }
586
587 /**
588  * mono_runtime_free_method:
589  * @domain; domain where the method is hosted
590  * @method: method to release
591  *
592  * This routine is invoked to free the resources associated with
593  * a method that has been JIT compiled.  This is used to discard
594  * methods that were used only temporarily (for example, used in marshalling)
595  *
596  */
597 void
598 mono_runtime_free_method (MonoDomain *domain, MonoMethod *method)
599 {
600         if (default_mono_free_method != NULL)
601                 default_mono_free_method (domain, method);
602
603         mono_method_clear_object (domain, method);
604
605         mono_free_method (method);
606 }
607
608 /*
609  * The vtables in the root appdomain are assumed to be reachable by other 
610  * roots, and we don't use typed allocation in the other domains.
611  */
612
613 /* The sync block is no longer a GC pointer */
614 #define GC_HEADER_BITMAP (0)
615
616 #define BITMAP_EL_SIZE (sizeof (gsize) * 8)
617
618 static gsize*
619 compute_class_bitmap (MonoClass *class, gsize *bitmap, int size, int offset, int *max_set, gboolean static_fields)
620 {
621         MonoClassField *field;
622         MonoClass *p;
623         guint32 pos;
624         int max_size;
625
626         if (static_fields)
627                 max_size = mono_class_data_size (class) / sizeof (gpointer);
628         else
629                 max_size = class->instance_size / sizeof (gpointer);
630         if (max_size > size) {
631                 g_assert (offset <= 0);
632                 bitmap = g_malloc0 ((max_size + BITMAP_EL_SIZE - 1) / BITMAP_EL_SIZE * sizeof (gsize));
633                 size = max_size;
634         }
635
636         for (p = class; p != NULL; p = p->parent) {
637                 gpointer iter = NULL;
638                 while ((field = mono_class_get_fields (p, &iter))) {
639                         MonoType *type;
640
641                         if (static_fields) {
642                                 if (!(field->type->attrs & (FIELD_ATTRIBUTE_STATIC | FIELD_ATTRIBUTE_HAS_FIELD_RVA)))
643                                         continue;
644                                 if (field->type->attrs & FIELD_ATTRIBUTE_LITERAL)
645                                         continue;
646                         } else {
647                                 if (field->type->attrs & (FIELD_ATTRIBUTE_STATIC | FIELD_ATTRIBUTE_HAS_FIELD_RVA))
648                                         continue;
649                         }
650                         /* FIXME: should not happen, flag as type load error */
651                         if (field->type->byref)
652                                 break;
653
654                         if (static_fields && field->offset == -1)
655                                 /* special static */
656                                 continue;
657
658                         pos = field->offset / sizeof (gpointer);
659                         pos += offset;
660
661                         type = mono_type_get_underlying_type (field->type);
662                         switch (type->type) {
663                         case MONO_TYPE_I:
664                         case MONO_TYPE_PTR:
665                         case MONO_TYPE_FNPTR:
666                                 break;
667                         /* only UIntPtr is allowed to be GC-tracked and only in mscorlib */
668                         case MONO_TYPE_U:
669 #ifdef HAVE_SGEN_GC
670                                 break;
671 #else
672                                 if (class->image != mono_defaults.corlib)
673                                         break;
674 #endif
675                         case MONO_TYPE_STRING:
676                         case MONO_TYPE_SZARRAY:
677                         case MONO_TYPE_CLASS:
678                         case MONO_TYPE_OBJECT:
679                         case MONO_TYPE_ARRAY:
680                                 g_assert ((field->offset % sizeof(gpointer)) == 0);
681
682                                 g_assert (pos < size || pos <= max_size);
683                                 bitmap [pos / BITMAP_EL_SIZE] |= ((gsize)1) << (pos % BITMAP_EL_SIZE);
684                                 *max_set = MAX (*max_set, pos);
685                                 break;
686                         case MONO_TYPE_GENERICINST:
687                                 if (!mono_type_generic_inst_is_valuetype (type)) {
688                                         g_assert ((field->offset % sizeof(gpointer)) == 0);
689
690                                         bitmap [pos / BITMAP_EL_SIZE] |= ((gsize)1) << (pos % BITMAP_EL_SIZE);
691                                         *max_set = MAX (*max_set, pos);
692                                         break;
693                                 } else {
694                                         /* fall through */
695                                 }
696                         case MONO_TYPE_VALUETYPE: {
697                                 MonoClass *fclass = mono_class_from_mono_type (field->type);
698                                 if (fclass->has_references) {
699                                         /* remove the object header */
700                                         compute_class_bitmap (fclass, bitmap, size, pos - (sizeof (MonoObject) / sizeof (gpointer)), max_set, FALSE);
701                                 }
702                                 break;
703                         }
704                         case MONO_TYPE_I1:
705                         case MONO_TYPE_U1:
706                         case MONO_TYPE_I2:
707                         case MONO_TYPE_U2:
708                         case MONO_TYPE_I4:
709                         case MONO_TYPE_U4:
710                         case MONO_TYPE_I8:
711                         case MONO_TYPE_U8:
712                         case MONO_TYPE_R4:
713                         case MONO_TYPE_R8:
714                         case MONO_TYPE_BOOLEAN:
715                         case MONO_TYPE_CHAR:
716                                 break;
717                         default:
718                                 g_error ("compute_class_bitmap: Invalid type %x for field %s:%s\n", type->type, mono_type_get_full_name (field->parent), field->name);
719                                 break;
720                         }
721                 }
722                 if (static_fields)
723                         break;
724         }
725         return bitmap;
726 }
727
728 #if 0
729 /* 
730  * similar to the above, but sets the bits in the bitmap for any non-ref field
731  * and ignores static fields
732  */
733 static gsize*
734 compute_class_non_ref_bitmap (MonoClass *class, gsize *bitmap, int size, int offset)
735 {
736         MonoClassField *field;
737         MonoClass *p;
738         guint32 pos, pos2;
739         int max_size;
740
741         max_size = class->instance_size / sizeof (gpointer);
742         if (max_size >= size) {
743                 bitmap = g_malloc0 (sizeof (gsize) * ((max_size) + 1));
744         }
745
746         for (p = class; p != NULL; p = p->parent) {
747                 gpointer iter = NULL;
748                 while ((field = mono_class_get_fields (p, &iter))) {
749                         MonoType *type;
750
751                         if (field->type->attrs & (FIELD_ATTRIBUTE_STATIC | FIELD_ATTRIBUTE_HAS_FIELD_RVA))
752                                 continue;
753                         /* FIXME: should not happen, flag as type load error */
754                         if (field->type->byref)
755                                 break;
756
757                         pos = field->offset / sizeof (gpointer);
758                         pos += offset;
759
760                         type = mono_type_get_underlying_type (field->type);
761                         switch (type->type) {
762 #if SIZEOF_VOID_P == 8
763                         case MONO_TYPE_I:
764                         case MONO_TYPE_U:
765                         case MONO_TYPE_PTR:
766                         case MONO_TYPE_FNPTR:
767 #endif
768                         case MONO_TYPE_I8:
769                         case MONO_TYPE_U8:
770                         case MONO_TYPE_R8:
771                                 if ((((field->offset + 7) / sizeof (gpointer)) + offset) != pos) {
772                                         pos2 = ((field->offset + 7) / sizeof (gpointer)) + offset;
773                                         bitmap [pos2 / BITMAP_EL_SIZE] |= ((gsize)1) << (pos2 % BITMAP_EL_SIZE);
774                                 }
775                                 /* fall through */
776 #if SIZEOF_VOID_P == 4
777                         case MONO_TYPE_I:
778                         case MONO_TYPE_U:
779                         case MONO_TYPE_PTR:
780                         case MONO_TYPE_FNPTR:
781 #endif
782                         case MONO_TYPE_I4:
783                         case MONO_TYPE_U4:
784                         case MONO_TYPE_R4:
785                                 if ((((field->offset + 3) / sizeof (gpointer)) + offset) != pos) {
786                                         pos2 = ((field->offset + 3) / sizeof (gpointer)) + offset;
787                                         bitmap [pos2 / BITMAP_EL_SIZE] |= ((gsize)1) << (pos2 % BITMAP_EL_SIZE);
788                                 }
789                                 /* fall through */
790                         case MONO_TYPE_CHAR:
791                         case MONO_TYPE_I2:
792                         case MONO_TYPE_U2:
793                                 if ((((field->offset + 1) / sizeof (gpointer)) + offset) != pos) {
794                                         pos2 = ((field->offset + 1) / sizeof (gpointer)) + offset;
795                                         bitmap [pos2 / BITMAP_EL_SIZE] |= ((gsize)1) << (pos2 % BITMAP_EL_SIZE);
796                                 }
797                                 /* fall through */
798                         case MONO_TYPE_BOOLEAN:
799                         case MONO_TYPE_I1:
800                         case MONO_TYPE_U1:
801                                 bitmap [pos / BITMAP_EL_SIZE] |= ((gsize)1) << (pos % BITMAP_EL_SIZE);
802                                 break;
803                         case MONO_TYPE_STRING:
804                         case MONO_TYPE_SZARRAY:
805                         case MONO_TYPE_CLASS:
806                         case MONO_TYPE_OBJECT:
807                         case MONO_TYPE_ARRAY:
808                                 break;
809                         case MONO_TYPE_GENERICINST:
810                                 if (!mono_type_generic_inst_is_valuetype (type)) {
811                                         break;
812                                 } else {
813                                         /* fall through */
814                                 }
815                         case MONO_TYPE_VALUETYPE: {
816                                 MonoClass *fclass = mono_class_from_mono_type (field->type);
817                                 /* remove the object header */
818                                 compute_class_non_ref_bitmap (fclass, bitmap, size, pos - (sizeof (MonoObject) / sizeof (gpointer)));
819                                 break;
820                         }
821                         default:
822                                 g_assert_not_reached ();
823                                 break;
824                         }
825                 }
826         }
827         return bitmap;
828 }
829
830 /**
831  * mono_class_insecure_overlapping:
832  * check if a class with explicit layout has references and non-references
833  * fields overlapping.
834  *
835  * Returns: TRUE if it is insecure to load the type.
836  */
837 gboolean
838 mono_class_insecure_overlapping (MonoClass *klass)
839 {
840         int max_set = 0;
841         gsize *bitmap;
842         gsize default_bitmap [4] = {0};
843         gsize *nrbitmap;
844         gsize default_nrbitmap [4] = {0};
845         int i, insecure = FALSE;
846                 return FALSE;
847
848         bitmap = compute_class_bitmap (klass, default_bitmap, sizeof (default_bitmap) * 8, 0, &max_set, FALSE);
849         nrbitmap = compute_class_non_ref_bitmap (klass, default_nrbitmap, sizeof (default_nrbitmap) * 8, 0);
850
851         for (i = 0; i <= max_set; i += sizeof (bitmap [0]) * 8) {
852                 int idx = i % (sizeof (bitmap [0]) * 8);
853                 if (bitmap [idx] & nrbitmap [idx]) {
854                         insecure = TRUE;
855                         break;
856                 }
857         }
858         if (bitmap != default_bitmap)
859                 g_free (bitmap);
860         if (nrbitmap != default_nrbitmap)
861                 g_free (nrbitmap);
862         if (insecure) {
863                 g_print ("class %s.%s in assembly %s has overlapping references\n", klass->name_space, klass->name, klass->image->name);
864                 return FALSE;
865         }
866         return insecure;
867 }
868 #endif
869
870 MonoString*
871 mono_string_alloc (int length)
872 {
873         return mono_string_new_size (mono_domain_get (), length);
874 }
875
876 void
877 mono_class_compute_gc_descriptor (MonoClass *class)
878 {
879         int max_set = 0;
880         gsize *bitmap;
881         gsize default_bitmap [4] = {0};
882         static gboolean gcj_inited = FALSE;
883
884         if (!gcj_inited) {
885                 mono_loader_lock ();
886
887                 mono_register_jit_icall (mono_object_new_ptrfree, "mono_object_new_ptrfree", mono_create_icall_signature ("object ptr"), FALSE);
888                 mono_register_jit_icall (mono_object_new_ptrfree_box, "mono_object_new_ptrfree_box", mono_create_icall_signature ("object ptr"), FALSE);
889                 mono_register_jit_icall (mono_object_new_fast, "mono_object_new_fast", mono_create_icall_signature ("object ptr"), FALSE);
890                 mono_register_jit_icall (mono_string_alloc, "mono_string_alloc", mono_create_icall_signature ("object int"), FALSE);
891
892 #ifdef HAVE_GC_GCJ_MALLOC
893                 /* 
894                  * This is not needed unless the relevant code in mono_get_allocation_ftn () is 
895                  * turned on.
896                  */
897 #if 0
898 #ifdef GC_REDIRECT_TO_LOCAL
899                 mono_register_jit_icall (GC_local_gcj_malloc, "GC_local_gcj_malloc", mono_create_icall_signature ("object int ptr"), FALSE);
900                 mono_register_jit_icall (GC_local_gcj_fast_malloc, "GC_local_gcj_fast_malloc", mono_create_icall_signature ("object int ptr"), FALSE);
901 #endif
902                 mono_register_jit_icall (GC_gcj_malloc, "GC_gcj_malloc", mono_create_icall_signature ("object int ptr"), FALSE);
903                 mono_register_jit_icall (GC_gcj_fast_malloc, "GC_gcj_fast_malloc", mono_create_icall_signature ("object int ptr"), FALSE);
904 #endif
905
906 #endif
907                 gcj_inited = TRUE;
908                 mono_loader_unlock ();
909         }
910
911         if (!class->inited)
912                 mono_class_init (class);
913
914         if (class->gc_descr_inited)
915                 return;
916
917         class->gc_descr_inited = TRUE;
918         class->gc_descr = GC_NO_DESCRIPTOR;
919
920         bitmap = default_bitmap;
921         if (class == mono_defaults.string_class) {
922                 class->gc_descr = (gpointer)mono_gc_make_descr_for_string (bitmap, 2);
923         } else if (class->rank) {
924                 mono_class_compute_gc_descriptor (class->element_class);
925                 if (!class->element_class->valuetype) {
926                         gsize abm = 1;
927                         class->gc_descr = mono_gc_make_descr_for_array (TRUE, &abm, 1, sizeof (gpointer));
928                         /*printf ("new array descriptor: 0x%x for %s.%s\n", class->gc_descr,
929                                 class->name_space, class->name);*/
930                 } else {
931                         /* remove the object header */
932                         bitmap = compute_class_bitmap (class->element_class, default_bitmap, sizeof (default_bitmap) * 8, - (int)(sizeof (MonoObject) / sizeof (gpointer)), &max_set, FALSE);
933                         class->gc_descr = mono_gc_make_descr_for_array (TRUE, bitmap, mono_array_element_size (class) / sizeof (gpointer), mono_array_element_size (class));
934                         /*printf ("new vt array descriptor: 0x%x for %s.%s\n", class->gc_descr,
935                                 class->name_space, class->name);*/
936                         if (bitmap != default_bitmap)
937                                 g_free (bitmap);
938                 }
939         } else {
940                 /*static int count = 0;
941                 if (count++ > 58)
942                         return;*/
943                 bitmap = compute_class_bitmap (class, default_bitmap, sizeof (default_bitmap) * 8, 0, &max_set, FALSE);
944                 class->gc_descr = (gpointer)mono_gc_make_descr_for_object (bitmap, max_set + 1, class->instance_size);
945                 /*
946                 if (class->gc_descr == GC_NO_DESCRIPTOR)
947                         g_print ("disabling typed alloc (%d) for %s.%s\n", max_set, class->name_space, class->name);
948                 */
949                 /*printf ("new descriptor: %p 0x%x for %s.%s\n", class->gc_descr, bitmap [0], class->name_space, class->name);*/
950                 if (bitmap != default_bitmap)
951                         g_free (bitmap);
952         }
953 }
954
955 /**
956  * field_is_special_static:
957  * @fklass: The MonoClass to look up.
958  * @field: The MonoClassField describing the field.
959  *
960  * Returns: SPECIAL_STATIC_THREAD if the field is thread static, SPECIAL_STATIC_CONTEXT if it is context static,
961  * SPECIAL_STATIC_NONE otherwise.
962  */
963 static gint32
964 field_is_special_static (MonoClass *fklass, MonoClassField *field)
965 {
966         MonoCustomAttrInfo *ainfo;
967         int i;
968         ainfo = mono_custom_attrs_from_field (fklass, field);
969         if (!ainfo)
970                 return FALSE;
971         for (i = 0; i < ainfo->num_attrs; ++i) {
972                 MonoClass *klass = ainfo->attrs [i].ctor->klass;
973                 if (klass->image == mono_defaults.corlib) {
974                         if (strcmp (klass->name, "ThreadStaticAttribute") == 0) {
975                                 mono_custom_attrs_free (ainfo);
976                                 return SPECIAL_STATIC_THREAD;
977                         }
978                         else if (strcmp (klass->name, "ContextStaticAttribute") == 0) {
979                                 mono_custom_attrs_free (ainfo);
980                                 return SPECIAL_STATIC_CONTEXT;
981                         }
982                 }
983         }
984         mono_custom_attrs_free (ainfo);
985         return SPECIAL_STATIC_NONE;
986 }
987
988 static gpointer imt_trampoline = NULL;
989
990 void
991 mono_install_imt_trampoline (gpointer tramp_code)
992 {
993         imt_trampoline = tramp_code;
994 }
995
996 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k))))
997 #define mix(a,b,c) { \
998         a -= c;  a ^= rot(c, 4);  c += b; \
999         b -= a;  b ^= rot(a, 6);  a += c; \
1000         c -= b;  c ^= rot(b, 8);  b += a; \
1001         a -= c;  a ^= rot(c,16);  c += b; \
1002         b -= a;  b ^= rot(a,19);  a += c; \
1003         c -= b;  c ^= rot(b, 4);  b += a; \
1004 }
1005 #define final(a,b,c) { \
1006         c ^= b; c -= rot(b,14); \
1007         a ^= c; a -= rot(c,11); \
1008         b ^= a; b -= rot(a,25); \
1009         c ^= b; c -= rot(b,16); \
1010         a ^= c; a -= rot(c,4);  \
1011         b ^= a; b -= rot(a,14); \
1012         c ^= b; c -= rot(b,24); \
1013 }
1014
1015 /*
1016  * mono_method_get_imt_slot:
1017  *
1018  *   The IMT slot is embedded into AOTed code, so this must return the same value
1019  * for the same method across all executions. This means:
1020  * - pointers shouldn't be used as hash values.
1021  * - mono_metadata_str_hash () should be used for hashing strings.
1022  */
1023 guint32
1024 mono_method_get_imt_slot (MonoMethod *method)
1025 {
1026         MonoMethodSignature *sig;
1027         int hashes_count;
1028         guint32 *hashes_start, *hashes;
1029         guint32 a, b, c;
1030         int i;
1031
1032         /* This can be used to stress tests the collision code */
1033         //return 0;
1034
1035         /*
1036          * We do this to simplify generic sharing.  It will hurt
1037          * performance in cases where a class implements two different
1038          * instantiations of the same generic interface.
1039          * The code in build_imt_slots () depends on this.
1040          */
1041         if (method->is_inflated)
1042                 method = ((MonoMethodInflated*)method)->declaring;
1043
1044         sig = mono_method_signature (method);
1045         hashes_count = sig->param_count + 4;
1046         hashes_start = malloc (hashes_count * sizeof (guint32));
1047         hashes = hashes_start;
1048
1049         if (! MONO_CLASS_IS_INTERFACE (method->klass)) {
1050                 printf ("mono_method_get_imt_slot: %s.%s.%s is not an interface MonoMethod\n",
1051                                 method->klass->name_space, method->klass->name, method->name);
1052                 g_assert_not_reached ();
1053         }
1054         
1055         /* Initialize hashes */
1056         hashes [0] = mono_metadata_str_hash (method->klass->name);
1057         hashes [1] = mono_metadata_str_hash (method->klass->name_space);
1058         hashes [2] = mono_metadata_str_hash (method->name);
1059         hashes [3] = mono_metadata_type_hash (sig->ret);
1060         for (i = 0; i < sig->param_count; i++) {
1061                 hashes [4 + i] = mono_metadata_type_hash (sig->params [i]);
1062         }
1063
1064         /* Setup internal state */
1065         a = b = c = 0xdeadbeef + (((guint32)hashes_count)<<2);
1066
1067         /* Handle most of the hashes */
1068         while (hashes_count > 3) {
1069                 a += hashes [0];
1070                 b += hashes [1];
1071                 c += hashes [2];
1072                 mix (a,b,c);
1073                 hashes_count -= 3;
1074                 hashes += 3;
1075         }
1076
1077         /* Handle the last 3 hashes (all the case statements fall through) */
1078         switch (hashes_count) { 
1079         case 3 : c += hashes [2];
1080         case 2 : b += hashes [1];
1081         case 1 : a += hashes [0];
1082                 final (a,b,c);
1083         case 0: /* nothing left to add */
1084                 break;
1085         }
1086         
1087         free (hashes_start);
1088         /* Report the result */
1089         return c % MONO_IMT_SIZE;
1090 }
1091 #undef rot
1092 #undef mix
1093 #undef final
1094
1095 #define DEBUG_IMT 0
1096
1097 static void
1098 add_imt_builder_entry (MonoImtBuilderEntry **imt_builder, MonoMethod *method, guint32 *imt_collisions_bitmap, int vtable_slot, int slot_num) {
1099         guint32 imt_slot = mono_method_get_imt_slot (method);
1100         MonoImtBuilderEntry *entry;
1101
1102         if (slot_num >= 0 && imt_slot != slot_num) {
1103                 /* we build just a single imt slot and this is not it */
1104                 return;
1105         }
1106
1107         entry = g_malloc0 (sizeof (MonoImtBuilderEntry));
1108         entry->key = method;
1109         entry->value.vtable_slot = vtable_slot;
1110         entry->next = imt_builder [imt_slot];
1111         if (imt_builder [imt_slot] != NULL) {
1112                 entry->children = imt_builder [imt_slot]->children + 1;
1113                 if (entry->children == 1) {
1114                         mono_stats.imt_slots_with_collisions++;
1115                         *imt_collisions_bitmap |= (1 << imt_slot);
1116                 }
1117         } else {
1118                 entry->children = 0;
1119                 mono_stats.imt_used_slots++;
1120         }
1121         imt_builder [imt_slot] = entry;
1122 #if DEBUG_IMT
1123         {
1124         char *method_name = mono_method_full_name (method, TRUE);
1125         printf ("Added IMT slot for method (%p) %s: imt_slot = %d, vtable_slot = %d, colliding with other %d entries\n",
1126                         method, method_name, imt_slot, vtable_slot, entry->children);
1127         g_free (method_name);
1128         }
1129 #endif
1130 }
1131
1132 #if DEBUG_IMT
1133 static void
1134 print_imt_entry (const char* message, MonoImtBuilderEntry *e, int num) {
1135         if (e != NULL) {
1136                 MonoMethod *method = e->key;
1137                 printf ("  * %s [%d]: (%p) '%s.%s.%s'\n",
1138                                 message,
1139                                 num,
1140                                 method,
1141                                 method->klass->name_space,
1142                                 method->klass->name,
1143                                 method->name);
1144         } else {
1145                 printf ("  * %s: NULL\n", message);
1146         }
1147 }
1148 #endif
1149
1150 static int
1151 compare_imt_builder_entries (const void *p1, const void *p2) {
1152         MonoImtBuilderEntry *e1 = *(MonoImtBuilderEntry**) p1;
1153         MonoImtBuilderEntry *e2 = *(MonoImtBuilderEntry**) p2;
1154         
1155         return (e1->key < e2->key) ? -1 : ((e1->key > e2->key) ? 1 : 0);
1156 }
1157
1158 static int
1159 imt_emit_ir (MonoImtBuilderEntry **sorted_array, int start, int end, GPtrArray *out_array)
1160 {
1161         int count = end - start;
1162         int chunk_start = out_array->len;
1163         if (count < 4) {
1164                 int i;
1165                 for (i = start; i < end; ++i) {
1166                         MonoIMTCheckItem *item = g_new0 (MonoIMTCheckItem, 1);
1167                         item->key = sorted_array [i]->key;
1168                         item->value = sorted_array [i]->value;
1169                         item->has_target_code = sorted_array [i]->has_target_code;
1170                         item->is_equals = TRUE;
1171                         if (i < end - 1)
1172                                 item->check_target_idx = out_array->len + 1;
1173                         else
1174                                 item->check_target_idx = 0;
1175                         g_ptr_array_add (out_array, item);
1176                 }
1177         } else {
1178                 int middle = start + count / 2;
1179                 MonoIMTCheckItem *item = g_new0 (MonoIMTCheckItem, 1);
1180
1181                 item->key = sorted_array [middle]->key;
1182                 item->is_equals = FALSE;
1183                 g_ptr_array_add (out_array, item);
1184                 imt_emit_ir (sorted_array, start, middle, out_array);
1185                 item->check_target_idx = imt_emit_ir (sorted_array, middle, end, out_array);
1186         }
1187         return chunk_start;
1188 }
1189
1190 static GPtrArray*
1191 imt_sort_slot_entries (MonoImtBuilderEntry *entries) {
1192         int number_of_entries = entries->children + 1;
1193         MonoImtBuilderEntry **sorted_array = malloc (sizeof (MonoImtBuilderEntry*) * number_of_entries);
1194         GPtrArray *result = g_ptr_array_new ();
1195         MonoImtBuilderEntry *current_entry;
1196         int i;
1197         
1198         for (current_entry = entries, i = 0; current_entry != NULL; current_entry = current_entry->next, i++) {
1199                 sorted_array [i] = current_entry;
1200         }
1201         qsort (sorted_array, number_of_entries, sizeof (MonoImtBuilderEntry*), compare_imt_builder_entries);
1202
1203         /*for (i = 0; i < number_of_entries; i++) {
1204                 print_imt_entry (" sorted array:", sorted_array [i], i);
1205         }*/
1206
1207         imt_emit_ir (sorted_array, 0, number_of_entries, result);
1208
1209         free (sorted_array);
1210         return result;
1211 }
1212
1213 static gpointer
1214 initialize_imt_slot (MonoVTable *vtable, MonoDomain *domain, MonoImtBuilderEntry *imt_builder_entry, gpointer fail_tramp)
1215 {
1216         if (imt_builder_entry != NULL) {
1217                 if (imt_builder_entry->children == 0 && !fail_tramp) {
1218                         /* No collision, return the vtable slot contents */
1219                         return vtable->vtable [imt_builder_entry->value.vtable_slot];
1220                 } else {
1221                         /* Collision, build the thunk */
1222                         GPtrArray *imt_ir = imt_sort_slot_entries (imt_builder_entry);
1223                         gpointer result;
1224                         int i;
1225                         result = imt_thunk_builder (vtable, domain,
1226                                 (MonoIMTCheckItem**)imt_ir->pdata, imt_ir->len, fail_tramp);
1227                         for (i = 0; i < imt_ir->len; ++i)
1228                                 g_free (g_ptr_array_index (imt_ir, i));
1229                         g_ptr_array_free (imt_ir, TRUE);
1230                         return result;
1231                 }
1232         } else {
1233                 if (fail_tramp)
1234                         return fail_tramp;
1235                 else
1236                         /* Empty slot */
1237                         return NULL;
1238         }
1239 }
1240
1241 static MonoImtBuilderEntry*
1242 get_generic_virtual_entries (MonoDomain *domain, gpointer *vtable_slot);
1243
1244 /*
1245  * LOCKING: requires the loader and domain locks.
1246  *
1247 */
1248 static void
1249 build_imt_slots (MonoClass *klass, MonoVTable *vt, MonoDomain *domain, gpointer* imt, GSList *extra_interfaces, int slot_num)
1250 {
1251         int i;
1252         GSList *list_item;
1253         guint32 imt_collisions_bitmap = 0;
1254         MonoImtBuilderEntry **imt_builder = calloc (MONO_IMT_SIZE, sizeof (MonoImtBuilderEntry*));
1255         int method_count = 0;
1256         gboolean record_method_count_for_max_collisions = FALSE;
1257         gboolean has_generic_virtual = FALSE, has_variant_iface = FALSE;
1258
1259 #if DEBUG_IMT
1260         printf ("Building IMT for class %s.%s slot %d\n", klass->name_space, klass->name, slot_num);
1261 #endif
1262         for (i = 0; i < klass->interface_offsets_count; ++i) {
1263                 MonoClass *iface = klass->interfaces_packed [i];
1264                 int interface_offset = klass->interface_offsets_packed [i];
1265                 int method_slot_in_interface, vt_slot;
1266
1267                 if (mono_class_has_variant_generic_params (iface))
1268                         has_variant_iface = TRUE;
1269
1270                 vt_slot = interface_offset;
1271                 for (method_slot_in_interface = 0; method_slot_in_interface < iface->method.count; method_slot_in_interface++) {
1272                         MonoMethod *method;
1273
1274                         if (slot_num >= 0 && iface->is_inflated) {
1275                                 /*
1276                                  * The imt slot of the method is the same as for its declaring method,
1277                                  * see the comment in mono_method_get_imt_slot (), so we can
1278                                  * avoid inflating methods which will be discarded by 
1279                                  * add_imt_builder_entry anyway.
1280                                  */
1281                                 method = mono_class_get_method_by_index (iface->generic_class->container_class, method_slot_in_interface);
1282                                 if (mono_method_get_imt_slot (method) != slot_num) {
1283                                         vt_slot ++;
1284                                         continue;
1285                                 }
1286                         }
1287                         method = mono_class_get_method_by_index (iface, method_slot_in_interface);
1288                         if (method->is_generic) {
1289                                 has_generic_virtual = TRUE;
1290                                 vt_slot ++;
1291                                 continue;
1292                         }
1293
1294                         if (!(method->flags & METHOD_ATTRIBUTE_STATIC)) {
1295                                 add_imt_builder_entry (imt_builder, method, &imt_collisions_bitmap, vt_slot, slot_num);
1296                                 vt_slot ++;
1297                         }
1298                 }
1299         }
1300         if (extra_interfaces) {
1301                 int interface_offset = klass->vtable_size;
1302
1303                 for (list_item = extra_interfaces; list_item != NULL; list_item=list_item->next) {
1304                         MonoClass* iface = list_item->data;
1305                         int method_slot_in_interface;
1306                         for (method_slot_in_interface = 0; method_slot_in_interface < iface->method.count; method_slot_in_interface++) {
1307                                 MonoMethod *method = mono_class_get_method_by_index (iface, method_slot_in_interface);
1308                                 add_imt_builder_entry (imt_builder, method, &imt_collisions_bitmap, interface_offset + method_slot_in_interface, slot_num);
1309                         }
1310                         interface_offset += iface->method.count;
1311                 }
1312         }
1313         for (i = 0; i < MONO_IMT_SIZE; ++i) {
1314                 /* overwrite the imt slot only if we're building all the entries or if 
1315                  * we're building this specific one
1316                  */
1317                 if (slot_num < 0 || i == slot_num) {
1318                         MonoImtBuilderEntry *entries = get_generic_virtual_entries (domain, &imt [i]);
1319
1320                         if (entries) {
1321                                 if (imt_builder [i]) {
1322                                         MonoImtBuilderEntry *entry;
1323
1324                                         /* Link entries with imt_builder [i] */
1325                                         for (entry = entries; entry->next; entry = entry->next) {
1326 #if DEBUG_IMT
1327                                                 MonoMethod *method = (MonoMethod*)entry->key;
1328                                                 char *method_name = mono_method_full_name (method, TRUE);
1329                                                 printf ("Added extra entry for method (%p) %s: imt_slot = %d\n", method, method_name, i);
1330                                                 g_free (method_name);
1331 #endif
1332                                         }
1333                                         entry->next = imt_builder [i];
1334                                         entries->children += imt_builder [i]->children + 1;
1335                                 }
1336                                 imt_builder [i] = entries;
1337                         }
1338
1339                         if (has_generic_virtual || has_variant_iface) {
1340                                 /*
1341                                  * There might be collisions later when the the thunk is expanded.
1342                                  */
1343                                 imt_collisions_bitmap |= (1 << i);
1344
1345                                 /* 
1346                                  * The IMT thunk might be called with an instance of one of the 
1347                                  * generic virtual methods, so has to fallback to the IMT trampoline.
1348                                  */
1349                                 imt [i] = initialize_imt_slot (vt, domain, imt_builder [i], imt_trampoline);
1350                         } else {
1351                                 imt [i] = initialize_imt_slot (vt, domain, imt_builder [i], NULL);
1352                         }
1353 #if DEBUG_IMT
1354                         printf ("initialize_imt_slot[%d]: %p methods %d\n", i, imt [i], imt_builder [i]->children + 1);
1355 #endif
1356                 }
1357
1358                 if (imt_builder [i] != NULL) {
1359                         int methods_in_slot = imt_builder [i]->children + 1;
1360                         if (methods_in_slot > mono_stats.imt_max_collisions_in_slot) {
1361                                 mono_stats.imt_max_collisions_in_slot = methods_in_slot;
1362                                 record_method_count_for_max_collisions = TRUE;
1363                         }
1364                         method_count += methods_in_slot;
1365                 }
1366         }
1367         
1368         mono_stats.imt_number_of_methods += method_count;
1369         if (record_method_count_for_max_collisions) {
1370                 mono_stats.imt_method_count_when_max_collisions = method_count;
1371         }
1372         
1373         for (i = 0; i < MONO_IMT_SIZE; i++) {
1374                 MonoImtBuilderEntry* entry = imt_builder [i];
1375                 while (entry != NULL) {
1376                         MonoImtBuilderEntry* next = entry->next;
1377                         g_free (entry);
1378                         entry = next;
1379                 }
1380         }
1381         free (imt_builder);
1382         /* we OR the bitmap since we may build just a single imt slot at a time */
1383         vt->imt_collisions_bitmap |= imt_collisions_bitmap;
1384 }
1385
1386 static void
1387 build_imt (MonoClass *klass, MonoVTable *vt, MonoDomain *domain, gpointer* imt, GSList *extra_interfaces) {
1388         build_imt_slots (klass, vt, domain, imt, extra_interfaces, -1);
1389 }
1390
1391 /**
1392  * mono_vtable_build_imt_slot:
1393  * @vtable: virtual object table struct
1394  * @imt_slot: slot in the IMT table
1395  *
1396  * Fill the given @imt_slot in the IMT table of @vtable with
1397  * a trampoline or a thunk for the case of collisions.
1398  * This is part of the internal mono API.
1399  *
1400  * LOCKING: Take the domain lock.
1401  */
1402 void
1403 mono_vtable_build_imt_slot (MonoVTable* vtable, int imt_slot)
1404 {
1405         gpointer *imt = (gpointer*)vtable;
1406         imt -= MONO_IMT_SIZE;
1407         g_assert (imt_slot >= 0 && imt_slot < MONO_IMT_SIZE);
1408
1409         /* no support for extra interfaces: the proxy objects will need
1410          * to build the complete IMT
1411          * Update and heck needs to ahppen inside the proper domain lock, as all
1412          * the changes made to a MonoVTable.
1413          */
1414         mono_loader_lock (); /*FIXME build_imt_slots requires the loader lock.*/
1415         mono_domain_lock (vtable->domain);
1416         /* we change the slot only if it wasn't changed from the generic imt trampoline already */
1417         if (imt [imt_slot] == imt_trampoline)
1418                 build_imt_slots (vtable->klass, vtable, vtable->domain, imt, NULL, imt_slot);
1419         mono_domain_unlock (vtable->domain);
1420         mono_loader_unlock ();
1421 }
1422
1423
1424 /*
1425  * The first two free list entries both belong to the wait list: The
1426  * first entry is the pointer to the head of the list and the second
1427  * entry points to the last element.  That way appending and removing
1428  * the first element are both O(1) operations.
1429  */
1430 #ifdef MONO_SMALL_CONFIG
1431 #define NUM_FREE_LISTS          6
1432 #else
1433 #define NUM_FREE_LISTS          12
1434 #endif
1435 #define FIRST_FREE_LIST_SIZE    64
1436 #define MAX_WAIT_LENGTH         50
1437 #define THUNK_THRESHOLD         10
1438
1439 /*
1440  * LOCKING: The domain lock must be held.
1441  */
1442 static void
1443 init_thunk_free_lists (MonoDomain *domain)
1444 {
1445         if (domain->thunk_free_lists)
1446                 return;
1447         domain->thunk_free_lists = mono_domain_alloc0 (domain, sizeof (gpointer) * NUM_FREE_LISTS);
1448 }
1449
1450 static int
1451 list_index_for_size (int item_size)
1452 {
1453         int i = 2;
1454         int size = FIRST_FREE_LIST_SIZE;
1455
1456         while (item_size > size && i < NUM_FREE_LISTS - 1) {
1457                 i++;
1458                 size <<= 1;
1459         }
1460
1461         return i;
1462 }
1463
1464 /**
1465  * mono_method_alloc_generic_virtual_thunk:
1466  * @domain: a domain
1467  * @size: size in bytes
1468  *
1469  * Allocs size bytes to be used for the code of a generic virtual
1470  * thunk.  It's either allocated from the domain's code manager or
1471  * reused from a previously invalidated piece.
1472  *
1473  * LOCKING: The domain lock must be held.
1474  */
1475 gpointer
1476 mono_method_alloc_generic_virtual_thunk (MonoDomain *domain, int size)
1477 {
1478         static gboolean inited = FALSE;
1479         static int generic_virtual_thunks_size = 0;
1480
1481         guint32 *p;
1482         int i;
1483         MonoThunkFreeList **l;
1484
1485         init_thunk_free_lists (domain);
1486
1487         size += sizeof (guint32);
1488         if (size < sizeof (MonoThunkFreeList))
1489                 size = sizeof (MonoThunkFreeList);
1490
1491         i = list_index_for_size (size);
1492         for (l = &domain->thunk_free_lists [i]; *l; l = &(*l)->next) {
1493                 if ((*l)->size >= size) {
1494                         MonoThunkFreeList *item = *l;
1495                         *l = item->next;
1496                         return ((guint32*)item) + 1;
1497                 }
1498         }
1499
1500         /* no suitable item found - search lists of larger sizes */
1501         while (++i < NUM_FREE_LISTS) {
1502                 MonoThunkFreeList *item = domain->thunk_free_lists [i];
1503                 if (!item)
1504                         continue;
1505                 g_assert (item->size > size);
1506                 domain->thunk_free_lists [i] = item->next;
1507                 return ((guint32*)item) + 1;
1508         }
1509
1510         /* still nothing found - allocate it */
1511         if (!inited) {
1512                 mono_counters_register ("Generic virtual thunk bytes",
1513                                 MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &generic_virtual_thunks_size);
1514                 inited = TRUE;
1515         }
1516         generic_virtual_thunks_size += size;
1517
1518         p = mono_domain_code_reserve (domain, size);
1519         *p = size;
1520
1521         return p + 1;
1522 }
1523
1524 /*
1525  * LOCKING: The domain lock must be held.
1526  */
1527 static void
1528 invalidate_generic_virtual_thunk (MonoDomain *domain, gpointer code)
1529 {
1530         guint32 *p = code;
1531         MonoThunkFreeList *l = (MonoThunkFreeList*)(p - 1);
1532
1533         init_thunk_free_lists (domain);
1534
1535         while (domain->thunk_free_lists [0] && domain->thunk_free_lists [0]->length >= MAX_WAIT_LENGTH) {
1536                 MonoThunkFreeList *item = domain->thunk_free_lists [0];
1537                 int length = item->length;
1538                 int i;
1539
1540                 /* unlink the first item from the wait list */
1541                 domain->thunk_free_lists [0] = item->next;
1542                 domain->thunk_free_lists [0]->length = length - 1;
1543
1544                 i = list_index_for_size (item->size);
1545
1546                 /* put it in the free list */
1547                 item->next = domain->thunk_free_lists [i];
1548                 domain->thunk_free_lists [i] = item;
1549         }
1550
1551         l->next = NULL;
1552         if (domain->thunk_free_lists [1]) {
1553                 domain->thunk_free_lists [1] = domain->thunk_free_lists [1]->next = l;
1554                 domain->thunk_free_lists [0]->length++;
1555         } else {
1556                 g_assert (!domain->thunk_free_lists [0]);
1557
1558                 domain->thunk_free_lists [0] = domain->thunk_free_lists [1] = l;
1559                 domain->thunk_free_lists [0]->length = 1;
1560         }
1561 }
1562
1563 typedef struct _GenericVirtualCase {
1564         MonoMethod *method;
1565         gpointer code;
1566         int count;
1567         struct _GenericVirtualCase *next;
1568 } GenericVirtualCase;
1569
1570 /*
1571  * get_generic_virtual_entries:
1572  *
1573  *   Return IMT entries for the generic virtual method instances and
1574  *   variant interface methods for vtable slot
1575  * VTABLE_SLOT.
1576  */ 
1577 static MonoImtBuilderEntry*
1578 get_generic_virtual_entries (MonoDomain *domain, gpointer *vtable_slot)
1579 {
1580         GenericVirtualCase *list;
1581         MonoImtBuilderEntry *entries;
1582   
1583         mono_domain_lock (domain);
1584         if (!domain->generic_virtual_cases)
1585                 domain->generic_virtual_cases = g_hash_table_new (mono_aligned_addr_hash, NULL);
1586  
1587         list = g_hash_table_lookup (domain->generic_virtual_cases, vtable_slot);
1588  
1589         entries = NULL;
1590         for (; list; list = list->next) {
1591                 MonoImtBuilderEntry *entry;
1592  
1593                 if (list->count < THUNK_THRESHOLD)
1594                         continue;
1595  
1596                 entry = g_new0 (MonoImtBuilderEntry, 1);
1597                 entry->key = list->method;
1598                 entry->value.target_code = mono_get_addr_from_ftnptr (list->code);
1599                 entry->has_target_code = 1;
1600                 if (entries)
1601                         entry->children = entries->children + 1;
1602                 entry->next = entries;
1603                 entries = entry;
1604         }
1605  
1606         mono_domain_unlock (domain);
1607  
1608         /* FIXME: Leaking memory ? */
1609         return entries;
1610 }
1611
1612 /**
1613  * mono_method_add_generic_virtual_invocation:
1614  * @domain: a domain
1615  * @vtable_slot: pointer to the vtable slot
1616  * @method: the inflated generic virtual method
1617  * @code: the method's code
1618  *
1619  * Registers a call via unmanaged code to a generic virtual method
1620  * instantiation or variant interface method.  If the number of calls reaches a threshold
1621  * (THUNK_THRESHOLD), the method is added to the vtable slot's generic
1622  * virtual method thunk.
1623  */
1624 void
1625 mono_method_add_generic_virtual_invocation (MonoDomain *domain, MonoVTable *vtable,
1626                                                                                         gpointer *vtable_slot,
1627                                                                                         MonoMethod *method, gpointer code)
1628 {
1629         static gboolean inited = FALSE;
1630         static int num_added = 0;
1631
1632         GenericVirtualCase *gvc, *list;
1633         MonoImtBuilderEntry *entries;
1634         int i;
1635         GPtrArray *sorted;
1636
1637         mono_domain_lock (domain);
1638         if (!domain->generic_virtual_cases)
1639                 domain->generic_virtual_cases = g_hash_table_new (mono_aligned_addr_hash, NULL);
1640
1641         /* Check whether the case was already added */
1642         list = g_hash_table_lookup (domain->generic_virtual_cases, vtable_slot);
1643         gvc = list;
1644         while (gvc) {
1645                 if (gvc->method == method)
1646                         break;
1647                 gvc = gvc->next;
1648         }
1649
1650         /* If not found, make a new one */
1651         if (!gvc) {
1652                 gvc = mono_domain_alloc (domain, sizeof (GenericVirtualCase));
1653                 gvc->method = method;
1654                 gvc->code = code;
1655                 gvc->count = 0;
1656                 gvc->next = g_hash_table_lookup (domain->generic_virtual_cases, vtable_slot);
1657
1658                 g_hash_table_insert (domain->generic_virtual_cases, vtable_slot, gvc);
1659
1660                 if (!inited) {
1661                         mono_counters_register ("Generic virtual cases", MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &num_added);
1662                         inited = TRUE;
1663                 }
1664                 num_added++;
1665         }
1666
1667         if (++gvc->count == THUNK_THRESHOLD) {
1668                 gpointer *old_thunk = *vtable_slot;
1669                 gpointer vtable_trampoline = callbacks.get_vtable_trampoline ? callbacks.get_vtable_trampoline ((gpointer*)vtable_slot - (gpointer*)vtable) : NULL;
1670
1671                 if ((gpointer)vtable_slot < (gpointer)vtable)
1672                         /* Force the rebuild of the thunk at the next call */
1673                         *vtable_slot = imt_trampoline;
1674                 else {
1675                         entries = get_generic_virtual_entries (domain, vtable_slot);
1676
1677                         sorted = imt_sort_slot_entries (entries);
1678
1679                         *vtable_slot = imt_thunk_builder (NULL, domain, (MonoIMTCheckItem**)sorted->pdata, sorted->len,
1680                                                                                           vtable_trampoline);
1681
1682                         while (entries) {
1683                                 MonoImtBuilderEntry *next = entries->next;
1684                                 g_free (entries);
1685                                 entries = next;
1686                         }
1687
1688                         for (i = 0; i < sorted->len; ++i)
1689                                 g_free (g_ptr_array_index (sorted, i));
1690                         g_ptr_array_free (sorted, TRUE);
1691                 }
1692
1693                 if (old_thunk != vtable_trampoline && old_thunk != imt_trampoline)
1694                         invalidate_generic_virtual_thunk (domain, old_thunk);
1695         }
1696
1697         mono_domain_unlock (domain);
1698 }
1699
1700 static MonoVTable *mono_class_create_runtime_vtable (MonoDomain *domain, MonoClass *class, gboolean raise_on_error);
1701
1702 /**
1703  * mono_class_vtable:
1704  * @domain: the application domain
1705  * @class: the class to initialize
1706  *
1707  * VTables are domain specific because we create domain specific code, and 
1708  * they contain the domain specific static class data.
1709  * On failure, NULL is returned, and class->exception_type is set.
1710  */
1711 MonoVTable *
1712 mono_class_vtable (MonoDomain *domain, MonoClass *class)
1713 {
1714         return mono_class_vtable_full (domain, class, FALSE);
1715 }
1716
1717 /**
1718  * mono_class_vtable_full:
1719  * @domain: the application domain
1720  * @class: the class to initialize
1721  * @raise_on_error if an exception should be raised on failure or not
1722  *
1723  * VTables are domain specific because we create domain specific code, and 
1724  * they contain the domain specific static class data.
1725  */
1726 MonoVTable *
1727 mono_class_vtable_full (MonoDomain *domain, MonoClass *class, gboolean raise_on_error)
1728 {
1729         MonoClassRuntimeInfo *runtime_info;
1730
1731         g_assert (class);
1732
1733         if (class->exception_type) {
1734                 if (raise_on_error)
1735                         mono_raise_exception (mono_class_get_exception_for_failure (class));
1736                 return NULL;
1737         }
1738
1739         /* this check can be inlined in jitted code, too */
1740         runtime_info = class->runtime_info;
1741         if (runtime_info && runtime_info->max_domain >= domain->domain_id && runtime_info->domain_vtables [domain->domain_id])
1742                 return runtime_info->domain_vtables [domain->domain_id];
1743         return mono_class_create_runtime_vtable (domain, class, raise_on_error);
1744 }
1745
1746 /**
1747  * mono_class_try_get_vtable:
1748  * @domain: the application domain
1749  * @class: the class to initialize
1750  *
1751  * This function tries to get the associated vtable from @class if
1752  * it was already created.
1753  */
1754 MonoVTable *
1755 mono_class_try_get_vtable (MonoDomain *domain, MonoClass *class)
1756 {
1757         MonoClassRuntimeInfo *runtime_info;
1758
1759         g_assert (class);
1760
1761         runtime_info = class->runtime_info;
1762         if (runtime_info && runtime_info->max_domain >= domain->domain_id && runtime_info->domain_vtables [domain->domain_id])
1763                 return runtime_info->domain_vtables [domain->domain_id];
1764         return NULL;
1765 }
1766
1767 static MonoVTable *
1768 mono_class_create_runtime_vtable (MonoDomain *domain, MonoClass *class, gboolean raise_on_error)
1769 {
1770         MonoVTable *vt;
1771         MonoClassRuntimeInfo *runtime_info, *old_info;
1772         MonoClassField *field;
1773         char *t;
1774         int i;
1775         int imt_table_bytes = 0;
1776         guint32 vtable_size, class_size;
1777         guint32 cindex;
1778         gpointer iter;
1779         gpointer *interface_offsets;
1780
1781         mono_loader_lock (); /*FIXME mono_class_init acquires it*/
1782         mono_domain_lock (domain);
1783         runtime_info = class->runtime_info;
1784         if (runtime_info && runtime_info->max_domain >= domain->domain_id && runtime_info->domain_vtables [domain->domain_id]) {
1785                 mono_domain_unlock (domain);
1786                 mono_loader_unlock ();
1787                 return runtime_info->domain_vtables [domain->domain_id];
1788         }
1789         if (!class->inited || class->exception_type) {
1790                 if (!mono_class_init (class) || class->exception_type) {
1791                         mono_domain_unlock (domain);
1792                         mono_loader_unlock ();
1793                         if (raise_on_error)
1794                                 mono_raise_exception (mono_class_get_exception_for_failure (class));
1795                         return NULL;
1796                 }
1797         }
1798
1799         /* Array types require that their element type be valid*/
1800         if (class->byval_arg.type == MONO_TYPE_ARRAY || class->byval_arg.type == MONO_TYPE_SZARRAY) {
1801                 MonoClass *element_class = class->element_class;
1802                 if (!element_class->inited)
1803                         mono_class_init (element_class);
1804
1805                 /*mono_class_init can leave the vtable layout to be lazily done and we can't afford this here*/
1806                 if (element_class->exception_type == MONO_EXCEPTION_NONE && !element_class->vtable_size)
1807                         mono_class_setup_vtable (element_class);
1808                 
1809                 if (element_class->exception_type != MONO_EXCEPTION_NONE) {
1810                         /*Can happen if element_class only got bad after mono_class_setup_vtable*/
1811                         if (class->exception_type == MONO_EXCEPTION_NONE)
1812                                 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
1813                         mono_domain_unlock (domain);
1814                         mono_loader_unlock ();
1815                         if (raise_on_error)
1816                                 mono_raise_exception (mono_class_get_exception_for_failure (class));
1817                         return NULL;
1818                 }
1819         }
1820
1821         /* 
1822          * For some classes, mono_class_init () already computed class->vtable_size, and 
1823          * that is all that is needed because of the vtable trampolines.
1824          */
1825         if (!class->vtable_size)
1826                 mono_class_setup_vtable (class);
1827
1828         if (class->exception_type) {
1829                 mono_domain_unlock (domain);
1830                 mono_loader_unlock ();
1831                 if (raise_on_error)
1832                         mono_raise_exception (mono_class_get_exception_for_failure (class));
1833                 return NULL;
1834         }
1835
1836         if (ARCH_USE_IMT) {
1837                 vtable_size = MONO_SIZEOF_VTABLE + class->vtable_size * sizeof (gpointer);
1838                 if (class->interface_offsets_count) {
1839                         imt_table_bytes = sizeof (gpointer) * (MONO_IMT_SIZE);
1840                         vtable_size += sizeof (gpointer) * (MONO_IMT_SIZE);
1841                         mono_stats.imt_number_of_tables++;
1842                         mono_stats.imt_tables_size += (sizeof (gpointer) * MONO_IMT_SIZE);
1843                 }
1844         } else {
1845                 vtable_size = sizeof (gpointer) * (class->max_interface_id + 1) +
1846                         MONO_SIZEOF_VTABLE + class->vtable_size * sizeof (gpointer);
1847         }
1848
1849         mono_stats.used_class_count++;
1850         mono_stats.class_vtable_size += vtable_size;
1851         interface_offsets = mono_domain_alloc0 (domain, vtable_size);
1852
1853         if (ARCH_USE_IMT)
1854                 vt = (MonoVTable*) ((char*)interface_offsets + imt_table_bytes);
1855         else
1856                 vt = (MonoVTable*) (interface_offsets + class->max_interface_id + 1);
1857         vt->klass = class;
1858         vt->rank = class->rank;
1859         vt->domain = domain;
1860
1861         mono_class_compute_gc_descriptor (class);
1862                 /*
1863                  * We can't use typed allocation in the non-root domains, since the
1864                  * collector needs the GC descriptor stored in the vtable even after
1865                  * the mempool containing the vtable is destroyed when the domain is
1866                  * unloaded. An alternative might be to allocate vtables in the GC
1867                  * heap, but this does not seem to work (it leads to crashes inside
1868                  * libgc). If that approach is tried, two gc descriptors need to be
1869                  * allocated for each class: one for the root domain, and one for all
1870                  * other domains. The second descriptor should contain a bit for the
1871                  * vtable field in MonoObject, since we can no longer assume the 
1872                  * vtable is reachable by other roots after the appdomain is unloaded.
1873                  */
1874 #ifdef HAVE_BOEHM_GC
1875         if (domain != mono_get_root_domain () && !mono_dont_free_domains)
1876                 vt->gc_descr = GC_NO_DESCRIPTOR;
1877         else
1878 #endif
1879                 vt->gc_descr = class->gc_descr;
1880
1881         if ((class_size = mono_class_data_size (class))) {
1882                 if (class->has_static_refs) {
1883                         gpointer statics_gc_descr;
1884                         int max_set = 0;
1885                         gsize default_bitmap [4] = {0};
1886                         gsize *bitmap;
1887
1888                         bitmap = compute_class_bitmap (class, default_bitmap, sizeof (default_bitmap) * 8, 0, &max_set, TRUE);
1889                         /*g_print ("bitmap 0x%x for %s.%s (size: %d)\n", bitmap [0], class->name_space, class->name, class_size);*/
1890                         statics_gc_descr = mono_gc_make_descr_from_bitmap (bitmap, max_set + 1);
1891                         vt->data = mono_gc_alloc_fixed (class_size, statics_gc_descr);
1892                         mono_domain_add_class_static_data (domain, class, vt->data, NULL);
1893                         if (bitmap != default_bitmap)
1894                                 g_free (bitmap);
1895                 } else {
1896                         vt->data = mono_domain_alloc0 (domain, class_size);
1897                 }
1898                 mono_stats.class_static_data_size += class_size;
1899         }
1900
1901         cindex = -1;
1902         iter = NULL;
1903         while ((field = mono_class_get_fields (class, &iter))) {
1904                 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC))
1905                         continue;
1906                 if (mono_field_is_deleted (field))
1907                         continue;
1908                 if (!(field->type->attrs & FIELD_ATTRIBUTE_LITERAL)) {
1909                         gint32 special_static = class->no_special_static_fields ? SPECIAL_STATIC_NONE : field_is_special_static (class, field);
1910                         if (special_static != SPECIAL_STATIC_NONE) {
1911                                 guint32 size, offset;
1912                                 gint32 align;
1913                                 gsize default_bitmap [4] = {0};
1914                                 gsize *bitmap;
1915                                 int max_set = 0;
1916                                 MonoClass *fclass;
1917                                 if (mono_type_is_reference (field->type)) {
1918                                         default_bitmap [0] = 1;
1919                                         max_set = 1;
1920                                         bitmap = default_bitmap;
1921                                 } else if (mono_type_is_struct (field->type)) {
1922                                         fclass = mono_class_from_mono_type (field->type);
1923                                         bitmap = compute_class_bitmap (fclass, default_bitmap, sizeof (default_bitmap) * 8, 0, &max_set, FALSE);
1924                                 } else {
1925                                         default_bitmap [0] = 0;
1926                                         max_set = 0;
1927                                         bitmap = default_bitmap;
1928                                 }
1929                                 size = mono_type_size (field->type, &align);
1930                                 offset = mono_alloc_special_static_data (special_static, size, align, bitmap, max_set);
1931                                 if (!domain->special_static_fields)
1932                                         domain->special_static_fields = g_hash_table_new (NULL, NULL);
1933                                 g_hash_table_insert (domain->special_static_fields, field, GUINT_TO_POINTER (offset));
1934                                 if (bitmap != default_bitmap)
1935                                         g_free (bitmap);
1936                                 /* 
1937                                  * This marks the field as special static to speed up the
1938                                  * checks in mono_field_static_get/set_value ().
1939                                  */
1940                                 field->offset = -1;
1941                                 continue;
1942                         }
1943                 }
1944                 if ((field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA)) {
1945                         MonoClass *fklass = mono_class_from_mono_type (field->type);
1946                         const char *data = mono_field_get_data (field);
1947
1948                         g_assert (!(field->type->attrs & FIELD_ATTRIBUTE_HAS_DEFAULT));
1949                         t = (char*)vt->data + field->offset;
1950                         /* some fields don't really have rva, they are just zeroed (bss? bug #343083) */
1951                         if (!data)
1952                                 continue;
1953                         if (fklass->valuetype) {
1954                                 memcpy (t, data, mono_class_value_size (fklass, NULL));
1955                         } else {
1956                                 /* it's a pointer type: add check */
1957                                 g_assert ((fklass->byval_arg.type == MONO_TYPE_PTR) || (fklass->byval_arg.type == MONO_TYPE_FNPTR));
1958                                 *t = *(char *)data;
1959                         }
1960                         continue;
1961                 }               
1962         }
1963
1964         vt->max_interface_id = class->max_interface_id;
1965         vt->interface_bitmap = class->interface_bitmap;
1966         
1967         //printf ("Initializing VT for class %s (interface_offsets_count = %d)\n",
1968         //              class->name, class->interface_offsets_count);
1969         
1970         if (! ARCH_USE_IMT) {
1971                 /* initialize interface offsets */
1972                 for (i = 0; i < class->interface_offsets_count; ++i) {
1973                         int interface_id = class->interfaces_packed [i]->interface_id;
1974                         int slot = class->interface_offsets_packed [i];
1975                         interface_offsets [class->max_interface_id - interface_id] = &(vt->vtable [slot]);
1976                 }
1977         }
1978
1979         /*  class_vtable_array keeps an array of created vtables
1980          */
1981         g_ptr_array_add (domain->class_vtable_array, vt);
1982         /* class->runtime_info is protected by the loader lock, both when
1983          * it it enlarged and when it is stored info.
1984          */
1985
1986         old_info = class->runtime_info;
1987         if (old_info && old_info->max_domain >= domain->domain_id) {
1988                 /* someone already created a large enough runtime info */
1989                 mono_memory_barrier ();
1990                 old_info->domain_vtables [domain->domain_id] = vt;
1991         } else {
1992                 int new_size = domain->domain_id;
1993                 if (old_info)
1994                         new_size = MAX (new_size, old_info->max_domain);
1995                 new_size++;
1996                 /* make the new size a power of two */
1997                 i = 2;
1998                 while (new_size > i)
1999                         i <<= 1;
2000                 new_size = i;
2001                 /* this is a bounded memory retention issue: may want to 
2002                  * handle it differently when we'll have a rcu-like system.
2003                  */
2004                 runtime_info = mono_image_alloc0 (class->image, MONO_SIZEOF_CLASS_RUNTIME_INFO + new_size * sizeof (gpointer));
2005                 runtime_info->max_domain = new_size - 1;
2006                 /* copy the stuff from the older info */
2007                 if (old_info) {
2008                         memcpy (runtime_info->domain_vtables, old_info->domain_vtables, (old_info->max_domain + 1) * sizeof (gpointer));
2009                 }
2010                 runtime_info->domain_vtables [domain->domain_id] = vt;
2011                 /* keep this last*/
2012                 mono_memory_barrier ();
2013                 class->runtime_info = runtime_info;
2014         }
2015
2016         /* Initialize vtable */
2017         if (callbacks.get_vtable_trampoline) {
2018                 // This also covers the AOT case
2019                 for (i = 0; i < class->vtable_size; ++i) {
2020                         vt->vtable [i] = callbacks.get_vtable_trampoline (i);
2021                 }
2022         } else {
2023                 mono_class_setup_vtable (class);
2024
2025                 for (i = 0; i < class->vtable_size; ++i) {
2026                         MonoMethod *cm;
2027
2028                         if ((cm = class->vtable [i]))
2029                                 vt->vtable [i] = arch_create_jit_trampoline (cm);
2030                 }
2031         }
2032
2033         if (ARCH_USE_IMT && imt_table_bytes) {
2034                 /* Now that the vtable is full, we can actually fill up the IMT */
2035                 if (imt_trampoline) {
2036                         /* lazy construction of the IMT entries enabled */
2037                         for (i = 0; i < MONO_IMT_SIZE; ++i)
2038                                 interface_offsets [i] = imt_trampoline;
2039                 } else {
2040                         build_imt (class, vt, domain, interface_offsets, NULL);
2041                 }
2042         }
2043
2044         mono_domain_unlock (domain);
2045         mono_loader_unlock ();
2046
2047         /* Initialization is now complete, we can throw if the InheritanceDemand aren't satisfied */
2048         if (mono_is_security_manager_active () && (class->exception_type == MONO_EXCEPTION_SECURITY_INHERITANCEDEMAND) && raise_on_error)
2049                 mono_raise_exception (mono_class_get_exception_for_failure (class));
2050
2051         /* make sure the parent is initialized */
2052         /*FIXME shouldn't this fail the current type?*/
2053         if (class->parent)
2054                 mono_class_vtable_full (domain, class->parent, raise_on_error);
2055
2056         /*FIXME check for OOM*/
2057         vt->type = mono_type_get_object (domain, &class->byval_arg);
2058 #if HAVE_SGEN_GC
2059         if (mono_object_get_class (vt->type) != mono_defaults.monotype_class) {
2060                 static void *type_desc = NULL;
2061
2062                 if (!type_desc) {
2063                         gsize bmap = 1;
2064                         type_desc = mono_gc_make_descr_from_bitmap (&bmap, 1);
2065                 }
2066
2067                 /* This is unregistered in
2068                    unregister_vtable_reflection_type() in
2069                    domain.c. */
2070                 mono_gc_register_root ((char*)&vt->type, sizeof (gpointer), type_desc);
2071         }
2072 #endif
2073         if (class->contextbound)
2074                 vt->remote = 1;
2075         else
2076                 vt->remote = 0;
2077
2078         return vt;
2079 }
2080
2081 /**
2082  * mono_class_proxy_vtable:
2083  * @domain: the application domain
2084  * @remove_class: the remote class
2085  *
2086  * Creates a vtable for transparent proxies. It is basically
2087  * a copy of the real vtable of the class wrapped in @remote_class,
2088  * but all function pointers invoke the remoting functions, and
2089  * vtable->klass points to the transparent proxy class, and not to @class.
2090  */
2091 static MonoVTable *
2092 mono_class_proxy_vtable (MonoDomain *domain, MonoRemoteClass *remote_class, MonoRemotingTarget target_type)
2093 {
2094         MonoError error;
2095         MonoVTable *vt, *pvt;
2096         int i, j, vtsize, max_interface_id, extra_interface_vtsize = 0;
2097         MonoClass *k;
2098         GSList *extra_interfaces = NULL;
2099         MonoClass *class = remote_class->proxy_class;
2100         gpointer *interface_offsets;
2101         uint8_t *bitmap;
2102         int bsize;
2103         
2104 #ifdef COMPRESSED_INTERFACE_BITMAP
2105         int bcsize;
2106 #endif
2107
2108         vt = mono_class_vtable (domain, class);
2109         g_assert (vt); /*FIXME property handle failure*/
2110         max_interface_id = vt->max_interface_id;
2111         
2112         /* Calculate vtable space for extra interfaces */
2113         for (j = 0; j < remote_class->interface_count; j++) {
2114                 MonoClass* iclass = remote_class->interfaces[j];
2115                 GPtrArray *ifaces;
2116                 int method_count;
2117
2118                 /*FIXME test for interfaces with variant generic arguments*/
2119                 if (MONO_CLASS_IMPLEMENTS_INTERFACE (class, iclass->interface_id))
2120                         continue;       /* interface implemented by the class */
2121                 if (g_slist_find (extra_interfaces, iclass))
2122                         continue;
2123                         
2124                 extra_interfaces = g_slist_prepend (extra_interfaces, iclass);
2125                 
2126                 method_count = mono_class_num_methods (iclass);
2127         
2128                 ifaces = mono_class_get_implemented_interfaces (iclass, &error);
2129                 g_assert (mono_error_ok (&error)); /*FIXME do proper error handling*/
2130                 if (ifaces) {
2131                         for (i = 0; i < ifaces->len; ++i) {
2132                                 MonoClass *ic = g_ptr_array_index (ifaces, i);
2133                                 /*FIXME test for interfaces with variant generic arguments*/
2134                                 if (MONO_CLASS_IMPLEMENTS_INTERFACE (class, ic->interface_id))
2135                                         continue;       /* interface implemented by the class */
2136                                 if (g_slist_find (extra_interfaces, ic))
2137                                         continue;
2138                                 extra_interfaces = g_slist_prepend (extra_interfaces, ic);
2139                                 method_count += mono_class_num_methods (ic);
2140                         }
2141                         g_ptr_array_free (ifaces, TRUE);
2142                 }
2143
2144                 extra_interface_vtsize += method_count * sizeof (gpointer);
2145                 if (iclass->max_interface_id > max_interface_id) max_interface_id = iclass->max_interface_id;
2146         }
2147
2148         if (ARCH_USE_IMT) {
2149                 mono_stats.imt_number_of_tables++;
2150                 mono_stats.imt_tables_size += (sizeof (gpointer) * MONO_IMT_SIZE);
2151                 vtsize = sizeof (gpointer) * (MONO_IMT_SIZE) +
2152                         MONO_SIZEOF_VTABLE + class->vtable_size * sizeof (gpointer);
2153         } else {
2154                 vtsize = sizeof (gpointer) * (max_interface_id + 1) +
2155                         MONO_SIZEOF_VTABLE + class->vtable_size * sizeof (gpointer);
2156         }
2157
2158         mono_stats.class_vtable_size += vtsize + extra_interface_vtsize;
2159
2160         interface_offsets = mono_domain_alloc0 (domain, vtsize + extra_interface_vtsize);
2161         if (ARCH_USE_IMT)
2162                 pvt = (MonoVTable*) (interface_offsets + MONO_IMT_SIZE);
2163         else
2164                 pvt = (MonoVTable*) (interface_offsets + max_interface_id + 1);
2165         memcpy (pvt, vt, MONO_SIZEOF_VTABLE + class->vtable_size * sizeof (gpointer));
2166
2167         pvt->klass = mono_defaults.transparent_proxy_class;
2168         /* we need to keep the GC descriptor for a transparent proxy or we confuse the precise GC */
2169         pvt->gc_descr = mono_defaults.transparent_proxy_class->gc_descr;
2170
2171         /* initialize vtable */
2172         mono_class_setup_vtable (class);
2173         for (i = 0; i < class->vtable_size; ++i) {
2174                 MonoMethod *cm;
2175                     
2176                 if ((cm = class->vtable [i]))
2177                         pvt->vtable [i] = arch_create_remoting_trampoline (domain, cm, target_type);
2178                 else
2179                         pvt->vtable [i] = NULL;
2180         }
2181
2182         if (class->flags & TYPE_ATTRIBUTE_ABSTRACT) {
2183                 /* create trampolines for abstract methods */
2184                 for (k = class; k; k = k->parent) {
2185                         MonoMethod* m;
2186                         gpointer iter = NULL;
2187                         while ((m = mono_class_get_methods (k, &iter)))
2188                                 if (!pvt->vtable [m->slot])
2189                                         pvt->vtable [m->slot] = arch_create_remoting_trampoline (domain, m, target_type);
2190                 }
2191         }
2192
2193         pvt->max_interface_id = max_interface_id;
2194         bsize = sizeof (guint8) * (max_interface_id/8 + 1 );
2195 #ifdef COMPRESSED_INTERFACE_BITMAP
2196         bitmap = g_malloc0 (bsize);
2197 #else
2198         bitmap = mono_domain_alloc0 (domain, bsize);
2199 #endif
2200
2201         if (! ARCH_USE_IMT) {
2202                 /* initialize interface offsets */
2203                 for (i = 0; i < class->interface_offsets_count; ++i) {
2204                         int interface_id = class->interfaces_packed [i]->interface_id;
2205                         int slot = class->interface_offsets_packed [i];
2206                         interface_offsets [class->max_interface_id - interface_id] = &(pvt->vtable [slot]);
2207                 }
2208         }
2209         for (i = 0; i < class->interface_offsets_count; ++i) {
2210                 int interface_id = class->interfaces_packed [i]->interface_id;
2211                 bitmap [interface_id >> 3] |= (1 << (interface_id & 7));
2212         }
2213
2214         if (extra_interfaces) {
2215                 int slot = class->vtable_size;
2216                 MonoClass* interf;
2217                 gpointer iter;
2218                 MonoMethod* cm;
2219                 GSList *list_item;
2220
2221                 /* Create trampolines for the methods of the interfaces */
2222                 for (list_item = extra_interfaces; list_item != NULL; list_item=list_item->next) {
2223                         interf = list_item->data;
2224                         
2225                         if (! ARCH_USE_IMT) {
2226                                 interface_offsets [max_interface_id - interf->interface_id] = &pvt->vtable [slot];
2227                         }
2228                         bitmap [interf->interface_id >> 3] |= (1 << (interf->interface_id & 7));
2229
2230                         iter = NULL;
2231                         j = 0;
2232                         while ((cm = mono_class_get_methods (interf, &iter)))
2233                                 pvt->vtable [slot + j++] = arch_create_remoting_trampoline (domain, cm, target_type);
2234                         
2235                         slot += mono_class_num_methods (interf);
2236                 }
2237                 if (! ARCH_USE_IMT) {
2238                         g_slist_free (extra_interfaces);
2239                 }
2240         }
2241
2242         if (ARCH_USE_IMT) {
2243                 /* Now that the vtable is full, we can actually fill up the IMT */
2244                 build_imt (class, pvt, domain, interface_offsets, extra_interfaces);
2245                 if (extra_interfaces) {
2246                         g_slist_free (extra_interfaces);
2247                 }
2248         }
2249
2250 #ifdef COMPRESSED_INTERFACE_BITMAP
2251         bcsize = mono_compress_bitmap (NULL, bitmap, bsize);
2252         pvt->interface_bitmap = mono_domain_alloc0 (domain, bcsize);
2253         mono_compress_bitmap (pvt->interface_bitmap, bitmap, bsize);
2254         g_free (bitmap);
2255 #else
2256         pvt->interface_bitmap = bitmap;
2257 #endif
2258         return pvt;
2259 }
2260
2261 /**
2262  * mono_class_field_is_special_static:
2263  *
2264  *   Returns whether @field is a thread/context static field.
2265  */
2266 gboolean
2267 mono_class_field_is_special_static (MonoClassField *field)
2268 {
2269         if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC))
2270                 return FALSE;
2271         if (mono_field_is_deleted (field))
2272                 return FALSE;
2273         if (!(field->type->attrs & FIELD_ATTRIBUTE_LITERAL)) {
2274                 if (field_is_special_static (field->parent, field) != SPECIAL_STATIC_NONE)
2275                         return TRUE;
2276         }
2277         return FALSE;
2278 }
2279
2280 /**
2281  * mono_class_has_special_static_fields:
2282  * 
2283  *   Returns whenever @klass has any thread/context static fields.
2284  */
2285 gboolean
2286 mono_class_has_special_static_fields (MonoClass *klass)
2287 {
2288         MonoClassField *field;
2289         gpointer iter;
2290
2291         iter = NULL;
2292         while ((field = mono_class_get_fields (klass, &iter))) {
2293                 g_assert (field->parent == klass);
2294                 if (mono_class_field_is_special_static (field))
2295                         return TRUE;
2296         }
2297
2298         return FALSE;
2299 }
2300
2301 /**
2302  * create_remote_class_key:
2303  * Creates an array of pointers that can be used as a hash key for a remote class.
2304  * The first element of the array is the number of pointers.
2305  */
2306 static gpointer*
2307 create_remote_class_key (MonoRemoteClass *remote_class, MonoClass *extra_class)
2308 {
2309         gpointer *key;
2310         int i, j;
2311         
2312         if (remote_class == NULL) {
2313                 if (extra_class->flags & TYPE_ATTRIBUTE_INTERFACE) {
2314                         key = g_malloc (sizeof(gpointer) * 3);
2315                         key [0] = GINT_TO_POINTER (2);
2316                         key [1] = mono_defaults.marshalbyrefobject_class;
2317                         key [2] = extra_class;
2318                 } else {
2319                         key = g_malloc (sizeof(gpointer) * 2);
2320                         key [0] = GINT_TO_POINTER (1);
2321                         key [1] = extra_class;
2322                 }
2323         } else {
2324                 if (extra_class != NULL && (extra_class->flags & TYPE_ATTRIBUTE_INTERFACE)) {
2325                         key = g_malloc (sizeof(gpointer) * (remote_class->interface_count + 3));
2326                         key [0] = GINT_TO_POINTER (remote_class->interface_count + 2);
2327                         key [1] = remote_class->proxy_class;
2328
2329                         // Keep the list of interfaces sorted
2330                         for (i = 0, j = 2; i < remote_class->interface_count; i++, j++) {
2331                                 if (extra_class && remote_class->interfaces [i] > extra_class) {
2332                                         key [j++] = extra_class;
2333                                         extra_class = NULL;
2334                                 }
2335                                 key [j] = remote_class->interfaces [i];
2336                         }
2337                         if (extra_class)
2338                                 key [j] = extra_class;
2339                 } else {
2340                         // Replace the old class. The interface list is the same
2341                         key = g_malloc (sizeof(gpointer) * (remote_class->interface_count + 2));
2342                         key [0] = GINT_TO_POINTER (remote_class->interface_count + 1);
2343                         key [1] = extra_class != NULL ? extra_class : remote_class->proxy_class;
2344                         for (i = 0; i < remote_class->interface_count; i++)
2345                                 key [2 + i] = remote_class->interfaces [i];
2346                 }
2347         }
2348         
2349         return key;
2350 }
2351
2352 /**
2353  * copy_remote_class_key:
2354  *
2355  *   Make a copy of KEY in the domain and return the copy.
2356  */
2357 static gpointer*
2358 copy_remote_class_key (MonoDomain *domain, gpointer *key)
2359 {
2360         int key_size = (GPOINTER_TO_UINT (key [0]) + 1) * sizeof (gpointer);
2361         gpointer *mp_key = mono_domain_alloc (domain, key_size);
2362
2363         memcpy (mp_key, key, key_size);
2364
2365         return mp_key;
2366 }
2367
2368 /**
2369  * mono_remote_class:
2370  * @domain: the application domain
2371  * @class_name: name of the remote class
2372  *
2373  * Creates and initializes a MonoRemoteClass object for a remote type. 
2374  *
2375  * Can raise an exception on failure. 
2376  */
2377 MonoRemoteClass*
2378 mono_remote_class (MonoDomain *domain, MonoString *class_name, MonoClass *proxy_class)
2379 {
2380         MonoError error;
2381         MonoRemoteClass *rc;
2382         gpointer* key, *mp_key;
2383         char *name;
2384         
2385         key = create_remote_class_key (NULL, proxy_class);
2386         
2387         mono_domain_lock (domain);
2388         rc = g_hash_table_lookup (domain->proxy_vtable_hash, key);
2389
2390         if (rc) {
2391                 g_free (key);
2392                 mono_domain_unlock (domain);
2393                 return rc;
2394         }
2395
2396         name = mono_string_to_utf8_mp (domain->mp, class_name, &error);
2397         if (!mono_error_ok (&error)) {
2398                 g_free (key);
2399                 mono_domain_unlock (domain);
2400                 mono_error_raise_exception (&error);
2401         }
2402
2403         mp_key = copy_remote_class_key (domain, key);
2404         g_free (key);
2405         key = mp_key;
2406
2407         if (proxy_class->flags & TYPE_ATTRIBUTE_INTERFACE) {
2408                 rc = mono_domain_alloc (domain, MONO_SIZEOF_REMOTE_CLASS + sizeof(MonoClass*));
2409                 rc->interface_count = 1;
2410                 rc->interfaces [0] = proxy_class;
2411                 rc->proxy_class = mono_defaults.marshalbyrefobject_class;
2412         } else {
2413                 rc = mono_domain_alloc (domain, MONO_SIZEOF_REMOTE_CLASS);
2414                 rc->interface_count = 0;
2415                 rc->proxy_class = proxy_class;
2416         }
2417         
2418         rc->default_vtable = NULL;
2419         rc->xdomain_vtable = NULL;
2420         rc->proxy_class_name = name;
2421         mono_perfcounters->loader_bytes += mono_string_length (class_name) + 1;
2422
2423         g_hash_table_insert (domain->proxy_vtable_hash, key, rc);
2424
2425         mono_domain_unlock (domain);
2426         return rc;
2427 }
2428
2429 /**
2430  * clone_remote_class:
2431  * Creates a copy of the remote_class, adding the provided class or interface
2432  */
2433 static MonoRemoteClass*
2434 clone_remote_class (MonoDomain *domain, MonoRemoteClass* remote_class, MonoClass *extra_class)
2435 {
2436         MonoRemoteClass *rc;
2437         gpointer* key, *mp_key;
2438         
2439         key = create_remote_class_key (remote_class, extra_class);
2440         rc = g_hash_table_lookup (domain->proxy_vtable_hash, key);
2441         if (rc != NULL) {
2442                 g_free (key);
2443                 return rc;
2444         }
2445
2446         mp_key = copy_remote_class_key (domain, key);
2447         g_free (key);
2448         key = mp_key;
2449
2450         if (extra_class->flags & TYPE_ATTRIBUTE_INTERFACE) {
2451                 int i,j;
2452                 rc = mono_domain_alloc (domain, MONO_SIZEOF_REMOTE_CLASS + sizeof(MonoClass*) * (remote_class->interface_count + 1));
2453                 rc->proxy_class = remote_class->proxy_class;
2454                 rc->interface_count = remote_class->interface_count + 1;
2455                 
2456                 // Keep the list of interfaces sorted, since the hash key of
2457                 // the remote class depends on this
2458                 for (i = 0, j = 0; i < remote_class->interface_count; i++, j++) {
2459                         if (remote_class->interfaces [i] > extra_class && i == j)
2460                                 rc->interfaces [j++] = extra_class;
2461                         rc->interfaces [j] = remote_class->interfaces [i];
2462                 }
2463                 if (i == j)
2464                         rc->interfaces [j] = extra_class;
2465         } else {
2466                 // Replace the old class. The interface array is the same
2467                 rc = mono_domain_alloc (domain, MONO_SIZEOF_REMOTE_CLASS + sizeof(MonoClass*) * remote_class->interface_count);
2468                 rc->proxy_class = extra_class;
2469                 rc->interface_count = remote_class->interface_count;
2470                 if (rc->interface_count > 0)
2471                         memcpy (rc->interfaces, remote_class->interfaces, rc->interface_count * sizeof (MonoClass*));
2472         }
2473         
2474         rc->default_vtable = NULL;
2475         rc->xdomain_vtable = NULL;
2476         rc->proxy_class_name = remote_class->proxy_class_name;
2477
2478         g_hash_table_insert (domain->proxy_vtable_hash, key, rc);
2479
2480         return rc;
2481 }
2482
2483 gpointer
2484 mono_remote_class_vtable (MonoDomain *domain, MonoRemoteClass *remote_class, MonoRealProxy *rp)
2485 {
2486         mono_loader_lock (); /*FIXME mono_class_from_mono_type and mono_class_proxy_vtable take it*/
2487         mono_domain_lock (domain);
2488         if (rp->target_domain_id != -1) {
2489                 if (remote_class->xdomain_vtable == NULL)
2490                         remote_class->xdomain_vtable = mono_class_proxy_vtable (domain, remote_class, MONO_REMOTING_TARGET_APPDOMAIN);
2491                 mono_domain_unlock (domain);
2492                 mono_loader_unlock ();
2493                 return remote_class->xdomain_vtable;
2494         }
2495         if (remote_class->default_vtable == NULL) {
2496                 MonoType *type;
2497                 MonoClass *klass;
2498                 type = ((MonoReflectionType *)rp->class_to_proxy)->type;
2499                 klass = mono_class_from_mono_type (type);
2500                 if ((klass->is_com_object || (mono_defaults.com_object_class && klass == mono_defaults.com_object_class)) && !mono_class_vtable (mono_domain_get (), klass)->remote)
2501                         remote_class->default_vtable = mono_class_proxy_vtable (domain, remote_class, MONO_REMOTING_TARGET_COMINTEROP);
2502                 else
2503                         remote_class->default_vtable = mono_class_proxy_vtable (domain, remote_class, MONO_REMOTING_TARGET_UNKNOWN);
2504         }
2505         
2506         mono_domain_unlock (domain);
2507         mono_loader_unlock ();
2508         return remote_class->default_vtable;
2509 }
2510
2511 /**
2512  * mono_upgrade_remote_class:
2513  * @domain: the application domain
2514  * @tproxy: the proxy whose remote class has to be upgraded.
2515  * @klass: class to which the remote class can be casted.
2516  *
2517  * Updates the vtable of the remote class by adding the necessary method slots
2518  * and interface offsets so it can be safely casted to klass. klass can be a
2519  * class or an interface.
2520  */
2521 void
2522 mono_upgrade_remote_class (MonoDomain *domain, MonoObject *proxy_object, MonoClass *klass)
2523 {
2524         MonoTransparentProxy *tproxy;
2525         MonoRemoteClass *remote_class;
2526         gboolean redo_vtable;
2527
2528         mono_loader_lock (); /*FIXME mono_remote_class_vtable requires it.*/
2529         mono_domain_lock (domain);
2530
2531         tproxy = (MonoTransparentProxy*) proxy_object;
2532         remote_class = tproxy->remote_class;
2533         
2534         if (klass->flags & TYPE_ATTRIBUTE_INTERFACE) {
2535                 int i;
2536                 redo_vtable = TRUE;
2537                 for (i = 0; i < remote_class->interface_count && redo_vtable; i++)
2538                         if (remote_class->interfaces [i] == klass)
2539                                 redo_vtable = FALSE;
2540         }
2541         else {
2542                 redo_vtable = (remote_class->proxy_class != klass);
2543         }
2544
2545         if (redo_vtable) {
2546                 tproxy->remote_class = clone_remote_class (domain, remote_class, klass);
2547                 proxy_object->vtable = mono_remote_class_vtable (domain, tproxy->remote_class, tproxy->rp);
2548         }
2549         
2550         mono_domain_unlock (domain);
2551         mono_loader_unlock ();
2552 }
2553
2554
2555 /**
2556  * mono_object_get_virtual_method:
2557  * @obj: object to operate on.
2558  * @method: method 
2559  *
2560  * Retrieves the MonoMethod that would be called on obj if obj is passed as
2561  * the instance of a callvirt of method.
2562  */
2563 MonoMethod*
2564 mono_object_get_virtual_method (MonoObject *obj, MonoMethod *method)
2565 {
2566         MonoClass *klass;
2567         MonoMethod **vtable;
2568         gboolean is_proxy;
2569         MonoMethod *res = NULL;
2570
2571         klass = mono_object_class (obj);
2572         if (klass == mono_defaults.transparent_proxy_class) {
2573                 klass = ((MonoTransparentProxy *)obj)->remote_class->proxy_class;
2574                 is_proxy = TRUE;
2575         } else {
2576                 is_proxy = FALSE;
2577         }
2578
2579         if (!is_proxy && ((method->flags & METHOD_ATTRIBUTE_FINAL) || !(method->flags & METHOD_ATTRIBUTE_VIRTUAL)))
2580                         return method;
2581
2582         mono_class_setup_vtable (klass);
2583         vtable = klass->vtable;
2584
2585         if (method->slot == -1) {
2586                 /* method->slot might not be set for instances of generic methods */
2587                 if (method->is_inflated) {
2588                         g_assert (((MonoMethodInflated*)method)->declaring->slot != -1);
2589                         method->slot = ((MonoMethodInflated*)method)->declaring->slot; 
2590                 } else {
2591                         if (!is_proxy)
2592                                 g_assert_not_reached ();
2593                 }
2594         }
2595
2596         /* check method->slot is a valid index: perform isinstance? */
2597         if (method->slot != -1) {
2598                 if (method->klass->flags & TYPE_ATTRIBUTE_INTERFACE) {
2599                         if (!is_proxy) {
2600                                 gboolean variance_used = FALSE;
2601                                 int iface_offset = mono_class_interface_offset_with_variance (klass, method->klass, &variance_used);
2602                                 g_assert (iface_offset > 0);
2603                                 res = vtable [iface_offset + method->slot];
2604                         }
2605                 } else {
2606                         res = vtable [method->slot];
2607                 }
2608     }
2609
2610         if (is_proxy) {
2611                 /* It may be an interface, abstract class method or generic method */
2612                 if (!res || mono_method_signature (res)->generic_param_count)
2613                         res = method;
2614
2615                 /* generic methods demand invoke_with_check */
2616                 if (mono_method_signature (res)->generic_param_count)
2617                         res = mono_marshal_get_remoting_invoke_with_check (res);
2618                 else {
2619 #ifndef DISABLE_COM
2620                         if (klass == mono_defaults.com_object_class || klass->is_com_object)
2621                                 res = mono_cominterop_get_invoke (res);
2622                         else
2623 #endif
2624                                 res = mono_marshal_get_remoting_invoke (res);
2625                 }
2626         } else {
2627                 if (method->is_inflated) {
2628                         /* Have to inflate the result */
2629                         res = mono_class_inflate_generic_method (res, &((MonoMethodInflated*)method)->context);
2630                 }
2631         }
2632
2633         g_assert (res);
2634         
2635         return res;
2636 }
2637
2638 static MonoObject*
2639 dummy_mono_runtime_invoke (MonoMethod *method, void *obj, void **params, MonoObject **exc)
2640 {
2641         g_error ("runtime invoke called on uninitialized runtime");
2642         return NULL;
2643 }
2644
2645 static MonoInvokeFunc default_mono_runtime_invoke = dummy_mono_runtime_invoke;
2646
2647 /**
2648  * mono_runtime_invoke:
2649  * @method: method to invoke
2650  * @obJ: object instance
2651  * @params: arguments to the method
2652  * @exc: exception information.
2653  *
2654  * Invokes the method represented by @method on the object @obj.
2655  *
2656  * obj is the 'this' pointer, it should be NULL for static
2657  * methods, a MonoObject* for object instances and a pointer to
2658  * the value type for value types.
2659  *
2660  * The params array contains the arguments to the method with the
2661  * same convention: MonoObject* pointers for object instances and
2662  * pointers to the value type otherwise. 
2663  * 
2664  * From unmanaged code you'll usually use the
2665  * mono_runtime_invoke() variant.
2666  *
2667  * Note that this function doesn't handle virtual methods for
2668  * you, it will exec the exact method you pass: we still need to
2669  * expose a function to lookup the derived class implementation
2670  * of a virtual method (there are examples of this in the code,
2671  * though).
2672  * 
2673  * You can pass NULL as the exc argument if you don't want to
2674  * catch exceptions, otherwise, *exc will be set to the exception
2675  * thrown, if any.  if an exception is thrown, you can't use the
2676  * MonoObject* result from the function.
2677  * 
2678  * If the method returns a value type, it is boxed in an object
2679  * reference.
2680  */
2681 MonoObject*
2682 mono_runtime_invoke (MonoMethod *method, void *obj, void **params, MonoObject **exc)
2683 {
2684         MonoObject *result;
2685
2686         if (mono_runtime_get_no_exec ())
2687                 g_warning ("Invoking method '%s' when running in no-exec mode.\n", mono_method_full_name (method, TRUE));
2688
2689         if (mono_profiler_get_events () & MONO_PROFILE_METHOD_EVENTS)
2690                 mono_profiler_method_start_invoke (method);
2691
2692         result = default_mono_runtime_invoke (method, obj, params, exc);
2693
2694         if (mono_profiler_get_events () & MONO_PROFILE_METHOD_EVENTS)
2695                 mono_profiler_method_end_invoke (method);
2696
2697         return result;
2698 }
2699
2700 /**
2701  * mono_method_get_unmanaged_thunk:
2702  * @method: method to generate a thunk for.
2703  *
2704  * Returns an unmanaged->managed thunk that can be used to call
2705  * a managed method directly from C.
2706  *
2707  * The thunk's C signature closely matches the managed signature:
2708  *
2709  * C#: public bool Equals (object obj);
2710  * C:  typedef MonoBoolean (*Equals)(MonoObject*,
2711  *             MonoObject*, MonoException**);
2712  *
2713  * The 1st ("this") parameter must not be used with static methods:
2714  *
2715  * C#: public static bool ReferenceEquals (object a, object b);
2716  * C:  typedef MonoBoolean (*ReferenceEquals)(MonoObject*, MonoObject*,
2717  *             MonoException**);
2718  *
2719  * The last argument must be a non-null pointer of a MonoException* pointer.
2720  * It has "out" semantics. After invoking the thunk, *ex will be NULL if no
2721  * exception has been thrown in managed code. Otherwise it will point
2722  * to the MonoException* caught by the thunk. In this case, the result of
2723  * the thunk is undefined:
2724  *
2725  * MonoMethod *method = ... // MonoMethod* of System.Object.Equals
2726  * MonoException *ex = NULL;
2727  * Equals func = mono_method_get_unmanaged_thunk (method);
2728  * MonoBoolean res = func (thisObj, objToCompare, &ex);
2729  * if (ex) {
2730  *    // handle exception
2731  * }
2732  *
2733  * The calling convention of the thunk matches the platform's default
2734  * convention. This means that under Windows, C declarations must
2735  * contain the __stdcall attribute:
2736  *
2737  * C:  typedef MonoBoolean (__stdcall *Equals)(MonoObject*,
2738  *             MonoObject*, MonoException**);
2739  *
2740  * LIMITATIONS
2741  *
2742  * Value type arguments and return values are treated as they were objects:
2743  *
2744  * C#: public static Rectangle Intersect (Rectangle a, Rectangle b);
2745  * C:  typedef MonoObject* (*Intersect)(MonoObject*, MonoObject*, MonoException**);
2746  *
2747  * Arguments must be properly boxed upon trunk's invocation, while return
2748  * values must be unboxed.
2749  */
2750 gpointer
2751 mono_method_get_unmanaged_thunk (MonoMethod *method)
2752 {
2753         method = mono_marshal_get_thunk_invoke_wrapper (method);
2754         return mono_compile_method (method);
2755 }
2756
2757 static void
2758 set_value (MonoType *type, void *dest, void *value, int deref_pointer)
2759 {
2760         int t;
2761         if (type->byref) {
2762                 /* object fields cannot be byref, so we don't need a
2763                    wbarrier here */
2764                 gpointer *p = (gpointer*)dest;
2765                 *p = value;
2766                 return;
2767         }
2768         t = type->type;
2769 handle_enum:
2770         switch (t) {
2771         case MONO_TYPE_BOOLEAN:
2772         case MONO_TYPE_I1:
2773         case MONO_TYPE_U1: {
2774                 guint8 *p = (guint8*)dest;
2775                 *p = value ? *(guint8*)value : 0;
2776                 return;
2777         }
2778         case MONO_TYPE_I2:
2779         case MONO_TYPE_U2:
2780         case MONO_TYPE_CHAR: {
2781                 guint16 *p = (guint16*)dest;
2782                 *p = value ? *(guint16*)value : 0;
2783                 return;
2784         }
2785 #if SIZEOF_VOID_P == 4
2786         case MONO_TYPE_I:
2787         case MONO_TYPE_U:
2788 #endif
2789         case MONO_TYPE_I4:
2790         case MONO_TYPE_U4: {
2791                 gint32 *p = (gint32*)dest;
2792                 *p = value ? *(gint32*)value : 0;
2793                 return;
2794         }
2795 #if SIZEOF_VOID_P == 8
2796         case MONO_TYPE_I:
2797         case MONO_TYPE_U:
2798 #endif
2799         case MONO_TYPE_I8:
2800         case MONO_TYPE_U8: {
2801                 gint64 *p = (gint64*)dest;
2802                 *p = value ? *(gint64*)value : 0;
2803                 return;
2804         }
2805         case MONO_TYPE_R4: {
2806                 float *p = (float*)dest;
2807                 *p = value ? *(float*)value : 0;
2808                 return;
2809         }
2810         case MONO_TYPE_R8: {
2811                 double *p = (double*)dest;
2812                 *p = value ? *(double*)value : 0;
2813                 return;
2814         }
2815         case MONO_TYPE_STRING:
2816         case MONO_TYPE_SZARRAY:
2817         case MONO_TYPE_CLASS:
2818         case MONO_TYPE_OBJECT:
2819         case MONO_TYPE_ARRAY:
2820                 mono_gc_wbarrier_generic_store (dest, deref_pointer? *(gpointer*)value: value);
2821                 return;
2822         case MONO_TYPE_FNPTR:
2823         case MONO_TYPE_PTR: {
2824                 gpointer *p = (gpointer*)dest;
2825                 *p = deref_pointer? *(gpointer*)value: value;
2826                 return;
2827         }
2828         case MONO_TYPE_VALUETYPE:
2829                 /* note that 't' and 'type->type' can be different */
2830                 if (type->type == MONO_TYPE_VALUETYPE && type->data.klass->enumtype) {
2831                         t = mono_class_enum_basetype (type->data.klass)->type;
2832                         goto handle_enum;
2833                 } else {
2834                         MonoClass *class = mono_class_from_mono_type (type);
2835                         int size = mono_class_value_size (class, NULL);
2836                         if (value == NULL)
2837                                 memset (dest, 0, size);
2838                         else
2839                                 mono_gc_wbarrier_value_copy (dest, value, 1, class);
2840                 }
2841                 return;
2842         case MONO_TYPE_GENERICINST:
2843                 t = type->data.generic_class->container_class->byval_arg.type;
2844                 goto handle_enum;
2845         default:
2846                 g_warning ("got type %x", type->type);
2847                 g_assert_not_reached ();
2848         }
2849 }
2850
2851 /**
2852  * mono_field_set_value:
2853  * @obj: Instance object
2854  * @field: MonoClassField describing the field to set
2855  * @value: The value to be set
2856  *
2857  * Sets the value of the field described by @field in the object instance @obj
2858  * to the value passed in @value.   This method should only be used for instance
2859  * fields.   For static fields, use mono_field_static_set_value.
2860  *
2861  * The value must be on the native format of the field type. 
2862  */
2863 void
2864 mono_field_set_value (MonoObject *obj, MonoClassField *field, void *value)
2865 {
2866         void *dest;
2867
2868         g_return_if_fail (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC));
2869
2870         dest = (char*)obj + field->offset;
2871         set_value (field->type, dest, value, FALSE);
2872 }
2873
2874 /**
2875  * mono_field_static_set_value:
2876  * @field: MonoClassField describing the field to set
2877  * @value: The value to be set
2878  *
2879  * Sets the value of the static field described by @field
2880  * to the value passed in @value.
2881  *
2882  * The value must be on the native format of the field type. 
2883  */
2884 void
2885 mono_field_static_set_value (MonoVTable *vt, MonoClassField *field, void *value)
2886 {
2887         void *dest;
2888
2889         g_return_if_fail (field->type->attrs & FIELD_ATTRIBUTE_STATIC);
2890         /* you cant set a constant! */
2891         g_return_if_fail (!(field->type->attrs & FIELD_ATTRIBUTE_LITERAL));
2892
2893         if (field->offset == -1) {
2894                 /* Special static */
2895                 gpointer addr = g_hash_table_lookup (vt->domain->special_static_fields, field);
2896                 dest = mono_get_special_static_data (GPOINTER_TO_UINT (addr));
2897         } else {
2898                 dest = (char*)vt->data + field->offset;
2899         }
2900         set_value (field->type, dest, value, FALSE);
2901 }
2902
2903 /* Used by the debugger */
2904 void *
2905 mono_vtable_get_static_field_data (MonoVTable *vt)
2906 {
2907         return vt->data;
2908 }
2909
2910 static guint8*
2911 mono_field_get_addr (MonoObject *obj, MonoVTable *vt, MonoClassField *field)
2912 {
2913         guint8 *src;
2914
2915         if (field->type->attrs & FIELD_ATTRIBUTE_STATIC) {
2916                 if (field->offset == -1) {
2917                         /* Special static */
2918                         gpointer addr = g_hash_table_lookup (vt->domain->special_static_fields, field);
2919                         src = mono_get_special_static_data (GPOINTER_TO_UINT (addr));
2920                 } else {
2921                         src = (guint8*)vt->data + field->offset;
2922                 }
2923         } else {
2924                 src = (guint8*)obj + field->offset;
2925         }
2926
2927         return src;
2928 }
2929
2930 /**
2931  * mono_field_get_value:
2932  * @obj: Object instance
2933  * @field: MonoClassField describing the field to fetch information from
2934  * @value: pointer to the location where the value will be stored
2935  *
2936  * Use this routine to get the value of the field @field in the object
2937  * passed.
2938  *
2939  * The pointer provided by value must be of the field type, for reference
2940  * types this is a MonoObject*, for value types its the actual pointer to
2941  * the value type.
2942  *
2943  * For example:
2944  *     int i;
2945  *     mono_field_get_value (obj, int_field, &i);
2946  */
2947 void
2948 mono_field_get_value (MonoObject *obj, MonoClassField *field, void *value)
2949 {
2950         void *src;
2951
2952         g_return_if_fail (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC));
2953
2954         src = (char*)obj + field->offset;
2955         set_value (field->type, value, src, TRUE);
2956 }
2957
2958 /**
2959  * mono_field_get_value_object:
2960  * @domain: domain where the object will be created (if boxing)
2961  * @field: MonoClassField describing the field to fetch information from
2962  * @obj: The object instance for the field.
2963  *
2964  * Returns: a new MonoObject with the value from the given field.  If the
2965  * field represents a value type, the value is boxed.
2966  *
2967  */
2968 MonoObject *
2969 mono_field_get_value_object (MonoDomain *domain, MonoClassField *field, MonoObject *obj)
2970 {       
2971         MonoObject *o;
2972         MonoClass *klass;
2973         MonoVTable *vtable = NULL;
2974         gchar *v;
2975         gboolean is_static = FALSE;
2976         gboolean is_ref = FALSE;
2977
2978         switch (field->type->type) {
2979         case MONO_TYPE_STRING:
2980         case MONO_TYPE_OBJECT:
2981         case MONO_TYPE_CLASS:
2982         case MONO_TYPE_ARRAY:
2983         case MONO_TYPE_SZARRAY:
2984                 is_ref = TRUE;
2985                 break;
2986         case MONO_TYPE_U1:
2987         case MONO_TYPE_I1:
2988         case MONO_TYPE_BOOLEAN:
2989         case MONO_TYPE_U2:
2990         case MONO_TYPE_I2:
2991         case MONO_TYPE_CHAR:
2992         case MONO_TYPE_U:
2993         case MONO_TYPE_I:
2994         case MONO_TYPE_U4:
2995         case MONO_TYPE_I4:
2996         case MONO_TYPE_R4:
2997         case MONO_TYPE_U8:
2998         case MONO_TYPE_I8:
2999         case MONO_TYPE_R8:
3000         case MONO_TYPE_VALUETYPE:
3001                 is_ref = field->type->byref;
3002                 break;
3003         case MONO_TYPE_GENERICINST:
3004                 is_ref = !field->type->data.generic_class->container_class->valuetype;
3005                 break;
3006         default:
3007                 g_error ("type 0x%x not handled in "
3008                          "mono_field_get_value_object", field->type->type);
3009                 return NULL;
3010         }
3011
3012         if (field->type->attrs & FIELD_ATTRIBUTE_STATIC) {
3013                 is_static = TRUE;
3014                 vtable = mono_class_vtable (domain, field->parent);
3015                 if (!vtable) {
3016                         char *name = mono_type_get_full_name (field->parent);
3017                         g_warning ("Could not retrieve the vtable for type %s in mono_field_get_value_object", name);
3018                         g_free (name);
3019                         return NULL;
3020                 }
3021                 if (!vtable->initialized)
3022                         mono_runtime_class_init (vtable);
3023         }
3024         
3025         if (is_ref) {
3026                 if (is_static) {
3027                         mono_field_static_get_value (vtable, field, &o);
3028                 } else {
3029                         mono_field_get_value (obj, field, &o);
3030                 }
3031                 return o;
3032         }
3033
3034         /* boxed value type */
3035         klass = mono_class_from_mono_type (field->type);
3036
3037         if (mono_class_is_nullable (klass))
3038                 return mono_nullable_box (mono_field_get_addr (obj, vtable, field), klass);
3039
3040         o = mono_object_new (domain, klass);
3041         v = ((gchar *) o) + sizeof (MonoObject);
3042         if (is_static) {
3043                 mono_field_static_get_value (vtable, field, v);
3044         } else {
3045                 mono_field_get_value (obj, field, v);
3046         }
3047
3048         return o;
3049 }
3050
3051 int
3052 mono_get_constant_value_from_blob (MonoDomain* domain, MonoTypeEnum type, const char *blob, void *value)
3053 {
3054         int retval = 0;
3055         const char *p = blob;
3056         mono_metadata_decode_blob_size (p, &p);
3057
3058         switch (type) {
3059         case MONO_TYPE_BOOLEAN:
3060         case MONO_TYPE_U1:
3061         case MONO_TYPE_I1:
3062                 *(guint8 *) value = *p;
3063                 break;
3064         case MONO_TYPE_CHAR:
3065         case MONO_TYPE_U2:
3066         case MONO_TYPE_I2:
3067                 *(guint16*) value = read16 (p);
3068                 break;
3069         case MONO_TYPE_U4:
3070         case MONO_TYPE_I4:
3071                 *(guint32*) value = read32 (p);
3072                 break;
3073         case MONO_TYPE_U8:
3074         case MONO_TYPE_I8:
3075                 *(guint64*) value = read64 (p);
3076                 break;
3077         case MONO_TYPE_R4:
3078                 readr4 (p, (float*) value);
3079                 break;
3080         case MONO_TYPE_R8:
3081                 readr8 (p, (double*) value);
3082                 break;
3083         case MONO_TYPE_STRING:
3084                 *(gpointer*) value = mono_ldstr_metadata_sig (domain, blob);
3085                 break;
3086         case MONO_TYPE_CLASS:
3087                 *(gpointer*) value = NULL;
3088                 break;
3089         default:
3090                 retval = -1;
3091                 g_warning ("type 0x%02x should not be in constant table", type);
3092         }
3093         return retval;
3094 }
3095
3096 static void
3097 get_default_field_value (MonoDomain* domain, MonoClassField *field, void *value)
3098 {
3099         MonoTypeEnum def_type;
3100         const char* data;
3101         
3102         data = mono_class_get_field_default_value (field, &def_type);
3103         mono_get_constant_value_from_blob (domain, def_type, data, value);
3104 }
3105
3106 /**
3107  * mono_field_static_get_value:
3108  * @vt: vtable to the object
3109  * @field: MonoClassField describing the field to fetch information from
3110  * @value: where the value is returned
3111  *
3112  * Use this routine to get the value of the static field @field value.
3113  *
3114  * The pointer provided by value must be of the field type, for reference
3115  * types this is a MonoObject*, for value types its the actual pointer to
3116  * the value type.
3117  *
3118  * For example:
3119  *     int i;
3120  *     mono_field_static_get_value (vt, int_field, &i);
3121  */
3122 void
3123 mono_field_static_get_value (MonoVTable *vt, MonoClassField *field, void *value)
3124 {
3125         void *src;
3126
3127         g_return_if_fail (field->type->attrs & FIELD_ATTRIBUTE_STATIC);
3128         
3129         if (field->type->attrs & FIELD_ATTRIBUTE_LITERAL) {
3130                 get_default_field_value (vt->domain, field, value);
3131                 return;
3132         }
3133
3134         if (field->offset == -1) {
3135                 /* Special static */
3136                 gpointer addr = g_hash_table_lookup (vt->domain->special_static_fields, field);
3137                 src = mono_get_special_static_data (GPOINTER_TO_UINT (addr));
3138         } else {
3139                 src = (char*)vt->data + field->offset;
3140         }
3141         set_value (field->type, value, src, TRUE);
3142 }
3143
3144 /**
3145  * mono_property_set_value:
3146  * @prop: MonoProperty to set
3147  * @obj: instance object on which to act
3148  * @params: parameters to pass to the propery
3149  * @exc: optional exception
3150  *
3151  * Invokes the property's set method with the given arguments on the
3152  * object instance obj (or NULL for static properties). 
3153  * 
3154  * You can pass NULL as the exc argument if you don't want to
3155  * catch exceptions, otherwise, *exc will be set to the exception
3156  * thrown, if any.  if an exception is thrown, you can't use the
3157  * MonoObject* result from the function.
3158  */
3159 void
3160 mono_property_set_value (MonoProperty *prop, void *obj, void **params, MonoObject **exc)
3161 {
3162         default_mono_runtime_invoke (prop->set, obj, params, exc);
3163 }
3164
3165 /**
3166  * mono_property_get_value:
3167  * @prop: MonoProperty to fetch
3168  * @obj: instance object on which to act
3169  * @params: parameters to pass to the propery
3170  * @exc: optional exception
3171  *
3172  * Invokes the property's get method with the given arguments on the
3173  * object instance obj (or NULL for static properties). 
3174  * 
3175  * You can pass NULL as the exc argument if you don't want to
3176  * catch exceptions, otherwise, *exc will be set to the exception
3177  * thrown, if any.  if an exception is thrown, you can't use the
3178  * MonoObject* result from the function.
3179  *
3180  * Returns: the value from invoking the get method on the property.
3181  */
3182 MonoObject*
3183 mono_property_get_value (MonoProperty *prop, void *obj, void **params, MonoObject **exc)
3184 {
3185         return default_mono_runtime_invoke (prop->get, obj, params, exc);
3186 }
3187
3188 /*
3189  * mono_nullable_init:
3190  * @buf: The nullable structure to initialize.
3191  * @value: the value to initialize from
3192  * @klass: the type for the object
3193  *
3194  * Initialize the nullable structure pointed to by @buf from @value which
3195  * should be a boxed value type.   The size of @buf should be able to hold
3196  * as much data as the @klass->instance_size (which is the number of bytes
3197  * that will be copies).
3198  *
3199  * Since Nullables have variable structure, we can not define a C
3200  * structure for them.
3201  */
3202 void
3203 mono_nullable_init (guint8 *buf, MonoObject *value, MonoClass *klass)
3204 {
3205         MonoClass *param_class = klass->cast_class;
3206                                 
3207         g_assert (mono_class_from_mono_type (klass->fields [0].type) == param_class);
3208         g_assert (mono_class_from_mono_type (klass->fields [1].type) == mono_defaults.boolean_class);
3209
3210         *(guint8*)(buf + klass->fields [1].offset - sizeof (MonoObject)) = value ? 1 : 0;
3211         if (value) {
3212                 if (param_class->has_references)
3213                         mono_gc_wbarrier_value_copy (buf + klass->fields [0].offset - sizeof (MonoObject), mono_object_unbox (value), 1, param_class);
3214                 else
3215                         memcpy (buf + klass->fields [0].offset - sizeof (MonoObject), mono_object_unbox (value), mono_class_value_size (param_class, NULL));
3216         } else {
3217                 memset (buf + klass->fields [0].offset - sizeof (MonoObject), 0, mono_class_value_size (param_class, NULL));
3218         }
3219 }
3220
3221 /**
3222  * mono_nullable_box:
3223  * @buf: The buffer representing the data to be boxed
3224  * @klass: the type to box it as.
3225  *
3226  * Creates a boxed vtype or NULL from the Nullable structure pointed to by
3227  * @buf.
3228  */
3229 MonoObject*
3230 mono_nullable_box (guint8 *buf, MonoClass *klass)
3231 {
3232         MonoClass *param_class = klass->cast_class;
3233
3234         g_assert (mono_class_from_mono_type (klass->fields [0].type) == param_class);
3235         g_assert (mono_class_from_mono_type (klass->fields [1].type) == mono_defaults.boolean_class);
3236
3237         if (*(guint8*)(buf + klass->fields [1].offset - sizeof (MonoObject))) {
3238                 MonoObject *o = mono_object_new (mono_domain_get (), param_class);
3239                 if (param_class->has_references)
3240                         mono_gc_wbarrier_value_copy (mono_object_unbox (o), buf + klass->fields [0].offset - sizeof (MonoObject), 1, param_class);
3241                 else
3242                         memcpy (mono_object_unbox (o), buf + klass->fields [0].offset - sizeof (MonoObject), mono_class_value_size (param_class, NULL));
3243                 return o;
3244         }
3245         else
3246                 return NULL;
3247 }
3248
3249 /**
3250  * mono_get_delegate_invoke:
3251  * @klass: The delegate class
3252  *
3253  * Returns: the MonoMethod for the "Invoke" method in the delegate klass
3254  */
3255 MonoMethod *
3256 mono_get_delegate_invoke (MonoClass *klass)
3257 {
3258         MonoMethod *im;
3259
3260         /* This is called at runtime, so avoid the slower search in metadata */
3261         mono_class_setup_methods (klass);
3262         if (klass->exception_type)
3263                 return NULL;
3264         im = mono_class_get_method_from_name (klass, "Invoke", -1);
3265         g_assert (im);
3266
3267         return im;
3268 }
3269
3270 /**
3271  * mono_runtime_delegate_invoke:
3272  * @delegate: pointer to a delegate object.
3273  * @params: parameters for the delegate.
3274  * @exc: Pointer to the exception result.
3275  *
3276  * Invokes the delegate method @delegate with the parameters provided.
3277  *
3278  * You can pass NULL as the exc argument if you don't want to
3279  * catch exceptions, otherwise, *exc will be set to the exception
3280  * thrown, if any.  if an exception is thrown, you can't use the
3281  * MonoObject* result from the function.
3282  */
3283 MonoObject*
3284 mono_runtime_delegate_invoke (MonoObject *delegate, void **params, MonoObject **exc)
3285 {
3286         MonoMethod *im;
3287
3288         im = mono_get_delegate_invoke (delegate->vtable->klass);
3289         g_assert (im);
3290
3291         return mono_runtime_invoke (im, delegate, params, exc);
3292 }
3293
3294 static char **main_args = NULL;
3295 static int num_main_args;
3296
3297 /**
3298  * mono_runtime_get_main_args:
3299  *
3300  * Returns: a MonoArray with the arguments passed to the main program
3301  */
3302 MonoArray*
3303 mono_runtime_get_main_args (void)
3304 {
3305         MonoArray *res;
3306         int i;
3307         MonoDomain *domain = mono_domain_get ();
3308
3309         if (!main_args)
3310                 return NULL;
3311
3312         res = (MonoArray*)mono_array_new (domain, mono_defaults.string_class, num_main_args);
3313
3314         for (i = 0; i < num_main_args; ++i)
3315                 mono_array_setref (res, i, mono_string_new (domain, main_args [i]));
3316
3317         return res;
3318 }
3319
3320 static void
3321 fire_process_exit_event (void)
3322 {
3323         MonoClassField *field;
3324         MonoDomain *domain = mono_domain_get ();
3325         gpointer pa [2];
3326         MonoObject *delegate, *exc;
3327         
3328         field = mono_class_get_field_from_name (mono_defaults.appdomain_class, "ProcessExit");
3329         g_assert (field);
3330
3331         if (domain != mono_get_root_domain ())
3332                 return;
3333
3334         delegate = *(MonoObject **)(((char *)domain->domain) + field->offset); 
3335         if (delegate == NULL)
3336                 return;
3337
3338         pa [0] = domain;
3339         pa [1] = NULL;
3340         mono_runtime_delegate_invoke (delegate, pa, &exc);
3341 }
3342
3343 /**
3344  * mono_runtime_run_main:
3345  * @method: the method to start the application with (usually Main)
3346  * @argc: number of arguments from the command line
3347  * @argv: array of strings from the command line
3348  * @exc: excetption results
3349  *
3350  * Execute a standard Main() method (argc/argv contains the
3351  * executable name). This method also sets the command line argument value
3352  * needed by System.Environment.
3353  *
3354  * 
3355  */
3356 int
3357 mono_runtime_run_main (MonoMethod *method, int argc, char* argv[],
3358                        MonoObject **exc)
3359 {
3360         int i;
3361         MonoArray *args = NULL;
3362         MonoDomain *domain = mono_domain_get ();
3363         gchar *utf8_fullpath;
3364         int result;
3365
3366         g_assert (method != NULL);
3367         
3368         mono_thread_set_main (mono_thread_current ());
3369
3370         main_args = g_new0 (char*, argc);
3371         num_main_args = argc;
3372
3373         if (!g_path_is_absolute (argv [0])) {
3374                 gchar *basename = g_path_get_basename (argv [0]);
3375                 gchar *fullpath = g_build_filename (method->klass->image->assembly->basedir,
3376                                                     basename,
3377                                                     NULL);
3378
3379                 utf8_fullpath = mono_utf8_from_external (fullpath);
3380                 if(utf8_fullpath == NULL) {
3381                         /* Printing the arg text will cause glib to
3382                          * whinge about "Invalid UTF-8", but at least
3383                          * its relevant, and shows the problem text
3384                          * string.
3385                          */
3386                         g_print ("\nCannot determine the text encoding for the assembly location: %s\n", fullpath);
3387                         g_print ("Please add the correct encoding to MONO_EXTERNAL_ENCODINGS and try again.\n");
3388                         exit (-1);
3389                 }
3390
3391                 g_free (fullpath);
3392                 g_free (basename);
3393         } else {
3394                 utf8_fullpath = mono_utf8_from_external (argv[0]);
3395                 if(utf8_fullpath == NULL) {
3396                         g_print ("\nCannot determine the text encoding for the assembly location: %s\n", argv[0]);
3397                         g_print ("Please add the correct encoding to MONO_EXTERNAL_ENCODINGS and try again.\n");
3398                         exit (-1);
3399                 }
3400         }
3401
3402         main_args [0] = utf8_fullpath;
3403
3404         for (i = 1; i < argc; ++i) {
3405                 gchar *utf8_arg;
3406
3407                 utf8_arg=mono_utf8_from_external (argv[i]);
3408                 if(utf8_arg==NULL) {
3409                         /* Ditto the comment about Invalid UTF-8 here */
3410                         g_print ("\nCannot determine the text encoding for argument %d (%s).\n", i, argv[i]);
3411                         g_print ("Please add the correct encoding to MONO_EXTERNAL_ENCODINGS and try again.\n");
3412                         exit (-1);
3413                 }
3414
3415                 main_args [i] = utf8_arg;
3416         }
3417         argc--;
3418         argv++;
3419         if (mono_method_signature (method)->param_count) {
3420                 args = (MonoArray*)mono_array_new (domain, mono_defaults.string_class, argc);
3421                 for (i = 0; i < argc; ++i) {
3422                         /* The encodings should all work, given that
3423                          * we've checked all these args for the
3424                          * main_args array.
3425                          */
3426                         gchar *str = mono_utf8_from_external (argv [i]);
3427                         MonoString *arg = mono_string_new (domain, str);
3428                         mono_array_setref (args, i, arg);
3429                         g_free (str);
3430                 }
3431         } else {
3432                 args = (MonoArray*)mono_array_new (domain, mono_defaults.string_class, 0);
3433         }
3434         
3435         mono_assembly_set_main (method->klass->image->assembly);
3436
3437         result = mono_runtime_exec_main (method, args, exc);
3438         fire_process_exit_event ();
3439         return result;
3440 }
3441
3442 static MonoObject*
3443 serialize_object (MonoObject *obj, gboolean *failure, MonoObject **exc)
3444 {
3445         static MonoMethod *serialize_method;
3446
3447         void *params [1];
3448         MonoObject *array;
3449
3450         if (!serialize_method) {
3451                 MonoClass *klass = mono_class_from_name (mono_defaults.corlib, "System.Runtime.Remoting", "RemotingServices");
3452                 serialize_method = mono_class_get_method_from_name (klass, "SerializeCallData", -1);
3453         }
3454
3455         if (!serialize_method) {
3456                 *failure = TRUE;
3457                 return NULL;
3458         }
3459
3460         g_assert (!mono_object_class (obj)->marshalbyref);
3461
3462         params [0] = obj;
3463         *exc = NULL;
3464         array = mono_runtime_invoke (serialize_method, NULL, params, exc);
3465         if (*exc)
3466                 *failure = TRUE;
3467
3468         return array;
3469 }
3470
3471 static MonoObject*
3472 deserialize_object (MonoObject *obj, gboolean *failure, MonoObject **exc)
3473 {
3474         static MonoMethod *deserialize_method;
3475
3476         void *params [1];
3477         MonoObject *result;
3478
3479         if (!deserialize_method) {
3480                 MonoClass *klass = mono_class_from_name (mono_defaults.corlib, "System.Runtime.Remoting", "RemotingServices");
3481                 deserialize_method = mono_class_get_method_from_name (klass, "DeserializeCallData", -1);
3482         }
3483         if (!deserialize_method) {
3484                 *failure = TRUE;
3485                 return NULL;
3486         }
3487
3488         params [0] = obj;
3489         *exc = NULL;
3490         result = mono_runtime_invoke (deserialize_method, NULL, params, exc);
3491         if (*exc)
3492                 *failure = TRUE;
3493
3494         return result;
3495 }
3496
3497 static MonoObject*
3498 make_transparent_proxy (MonoObject *obj, gboolean *failure, MonoObject **exc)
3499 {
3500         static MonoMethod *get_proxy_method;
3501
3502         MonoDomain *domain = mono_domain_get ();
3503         MonoRealProxy *real_proxy;
3504         MonoReflectionType *reflection_type;
3505         MonoTransparentProxy *transparent_proxy;
3506
3507         if (!get_proxy_method)
3508                 get_proxy_method = mono_class_get_method_from_name (mono_defaults.real_proxy_class, "GetTransparentProxy", 0);
3509
3510         g_assert (obj->vtable->klass->marshalbyref);
3511
3512         real_proxy = (MonoRealProxy*) mono_object_new (domain, mono_defaults.real_proxy_class);
3513         reflection_type = mono_type_get_object (domain, &obj->vtable->klass->byval_arg);
3514
3515         MONO_OBJECT_SETREF (real_proxy, class_to_proxy, reflection_type);
3516         MONO_OBJECT_SETREF (real_proxy, unwrapped_server, obj);
3517
3518         *exc = NULL;
3519         transparent_proxy = (MonoTransparentProxy*) mono_runtime_invoke (get_proxy_method, real_proxy, NULL, exc);
3520         if (*exc)
3521                 *failure = TRUE;
3522
3523         return (MonoObject*) transparent_proxy;
3524 }
3525
3526 /**
3527  * mono_object_xdomain_representation
3528  * @obj: an object
3529  * @target_domain: a domain
3530  * @exc: pointer to a MonoObject*
3531  *
3532  * Creates a representation of obj in the domain target_domain.  This
3533  * is either a copy of obj arrived through via serialization and
3534  * deserialization or a proxy, depending on whether the object is
3535  * serializable or marshal by ref.  obj must not be in target_domain.
3536  *
3537  * If the object cannot be represented in target_domain, NULL is
3538  * returned and *exc is set to an appropriate exception.
3539  */
3540 MonoObject*
3541 mono_object_xdomain_representation (MonoObject *obj, MonoDomain *target_domain, MonoObject **exc)
3542 {
3543         MonoObject *deserialized = NULL;
3544         gboolean failure = FALSE;
3545
3546         *exc = NULL;
3547
3548         if (mono_object_class (obj)->marshalbyref) {
3549                 deserialized = make_transparent_proxy (obj, &failure, exc);
3550         } else {
3551                 MonoDomain *domain = mono_domain_get ();
3552                 MonoObject *serialized;
3553
3554                 mono_domain_set_internal_with_options (mono_object_domain (obj), FALSE);
3555                 serialized = serialize_object (obj, &failure, exc);
3556                 mono_domain_set_internal_with_options (target_domain, FALSE);
3557                 if (!failure)
3558                         deserialized = deserialize_object (serialized, &failure, exc);
3559                 if (domain != target_domain)
3560                         mono_domain_set_internal_with_options (domain, FALSE);
3561         }
3562
3563         return deserialized;
3564 }
3565
3566 /* Used in call_unhandled_exception_delegate */
3567 static MonoObject *
3568 create_unhandled_exception_eventargs (MonoObject *exc)
3569 {
3570         MonoClass *klass;
3571         gpointer args [2];
3572         MonoMethod *method = NULL;
3573         MonoBoolean is_terminating = TRUE;
3574         MonoObject *obj;
3575
3576         klass = mono_class_from_name (mono_defaults.corlib, "System", "UnhandledExceptionEventArgs");
3577         g_assert (klass);
3578
3579         mono_class_init (klass);
3580
3581         /* UnhandledExceptionEventArgs only has 1 public ctor with 2 args */
3582         method = mono_class_get_method_from_name_flags (klass, ".ctor", 2, METHOD_ATTRIBUTE_PUBLIC);
3583         g_assert (method);
3584
3585         args [0] = exc;
3586         args [1] = &is_terminating;
3587
3588         obj = mono_object_new (mono_domain_get (), klass);
3589         mono_runtime_invoke (method, obj, args, NULL);
3590
3591         return obj;
3592 }
3593
3594 /* Used in mono_unhandled_exception */
3595 static void
3596 call_unhandled_exception_delegate (MonoDomain *domain, MonoObject *delegate, MonoObject *exc) {
3597         MonoObject *e = NULL;
3598         gpointer pa [2];
3599         MonoDomain *current_domain = mono_domain_get ();
3600
3601         if (domain != current_domain)
3602                 mono_domain_set_internal_with_options (domain, FALSE);
3603
3604         g_assert (domain == mono_object_domain (domain->domain));
3605
3606         if (mono_object_domain (exc) != domain) {
3607                 MonoObject *serialization_exc;
3608
3609                 exc = mono_object_xdomain_representation (exc, domain, &serialization_exc);
3610                 if (!exc) {
3611                         if (serialization_exc) {
3612                                 MonoObject *dummy;
3613                                 exc = mono_object_xdomain_representation (serialization_exc, domain, &dummy);
3614                                 g_assert (exc);
3615                         } else {
3616                                 exc = (MonoObject*) mono_exception_from_name_msg (mono_get_corlib (),
3617                                                 "System.Runtime.Serialization", "SerializationException",
3618                                                 "Could not serialize unhandled exception.");
3619                         }
3620                 }
3621         }
3622         g_assert (mono_object_domain (exc) == domain);
3623
3624         pa [0] = domain->domain;
3625         pa [1] = create_unhandled_exception_eventargs (exc);
3626         mono_runtime_delegate_invoke (delegate, pa, &e);
3627
3628         if (domain != current_domain)
3629                 mono_domain_set_internal_with_options (current_domain, FALSE);
3630
3631         if (e) {
3632                 MonoError error;
3633                 gchar *msg = mono_string_to_utf8_checked (((MonoException *) e)->message, &error);
3634                 if (!mono_error_ok (&error)) {
3635                         g_warning ("Exception inside UnhandledException handler with invalid message (Invalid characters)\n");
3636                         mono_error_cleanup (&error);
3637                 } else {
3638                         g_warning ("exception inside UnhandledException handler: %s\n", msg);
3639                         g_free (msg);
3640                 }
3641         }
3642 }
3643
3644 static MonoRuntimeUnhandledExceptionPolicy runtime_unhandled_exception_policy = MONO_UNHANDLED_POLICY_CURRENT;
3645
3646 /**
3647  * mono_runtime_unhandled_exception_policy_set:
3648  * @policy: the new policy
3649  * 
3650  * This is a VM internal routine.
3651  *
3652  * Sets the runtime policy for handling unhandled exceptions.
3653  */
3654 void
3655 mono_runtime_unhandled_exception_policy_set (MonoRuntimeUnhandledExceptionPolicy policy) {
3656         runtime_unhandled_exception_policy = policy;
3657 }
3658
3659 /**
3660  * mono_runtime_unhandled_exception_policy_get:
3661  *
3662  * This is a VM internal routine.
3663  *
3664  * Gets the runtime policy for handling unhandled exceptions.
3665  */
3666 MonoRuntimeUnhandledExceptionPolicy
3667 mono_runtime_unhandled_exception_policy_get (void) {
3668         return runtime_unhandled_exception_policy;
3669 }
3670
3671 /**
3672  * mono_unhandled_exception:
3673  * @exc: exception thrown
3674  *
3675  * This is a VM internal routine.
3676  *
3677  * We call this function when we detect an unhandled exception
3678  * in the default domain.
3679  *
3680  * It invokes the * UnhandledException event in AppDomain or prints
3681  * a warning to the console 
3682  */
3683 void
3684 mono_unhandled_exception (MonoObject *exc)
3685 {
3686         MonoDomain *current_domain = mono_domain_get ();
3687         MonoDomain *root_domain = mono_get_root_domain ();
3688         MonoClassField *field;
3689         MonoObject *current_appdomain_delegate;
3690         MonoObject *root_appdomain_delegate;
3691
3692         field=mono_class_get_field_from_name(mono_defaults.appdomain_class, 
3693                                              "UnhandledException");
3694         g_assert (field);
3695
3696         if (exc->vtable->klass != mono_defaults.threadabortexception_class) {
3697                 gboolean abort_process = (main_thread && (mono_thread_internal_current () == main_thread->internal_thread)) ||
3698                                 (mono_runtime_unhandled_exception_policy_get () == MONO_UNHANDLED_POLICY_CURRENT);
3699                 root_appdomain_delegate = *(MonoObject **)(((char *)root_domain->domain) + field->offset);
3700                 if (current_domain != root_domain) {
3701                         current_appdomain_delegate = *(MonoObject **)(((char *)current_domain->domain) + field->offset);
3702                 } else {
3703                         current_appdomain_delegate = NULL;
3704                 }
3705
3706                 /* set exitcode only if we will abort the process */
3707                 if (abort_process)
3708                         mono_environment_exitcode_set (1);
3709                 if ((current_appdomain_delegate == NULL) && (root_appdomain_delegate == NULL)) {
3710                         mono_print_unhandled_exception (exc);
3711                 } else {
3712                         if (root_appdomain_delegate) {
3713                                 call_unhandled_exception_delegate (root_domain, root_appdomain_delegate, exc);
3714                         }
3715                         if (current_appdomain_delegate) {
3716                                 call_unhandled_exception_delegate (current_domain, current_appdomain_delegate, exc);
3717                         }
3718                 }
3719         }
3720 }
3721
3722 /*
3723  * Launch a new thread to execute a function
3724  *
3725  * main_func is called back from the thread with main_args as the
3726  * parameter.  The callback function is expected to start Main()
3727  * eventually.  This function then waits for all managed threads to
3728  * finish.
3729  * It is not necesseray anymore to execute managed code in a subthread,
3730  * so this function should not be used anymore by default: just
3731  * execute the code and then call mono_thread_manage ().
3732  */
3733 void
3734 mono_runtime_exec_managed_code (MonoDomain *domain,
3735                                 MonoMainThreadFunc main_func,
3736                                 gpointer main_args)
3737 {
3738         mono_thread_create (domain, main_func, main_args);
3739
3740         mono_thread_manage ();
3741 }
3742
3743 /*
3744  * Execute a standard Main() method (args doesn't contain the
3745  * executable name).
3746  */
3747 int
3748 mono_runtime_exec_main (MonoMethod *method, MonoArray *args, MonoObject **exc)
3749 {
3750         MonoDomain *domain;
3751         gpointer pa [1];
3752         int rval;
3753         MonoCustomAttrInfo* cinfo;
3754         gboolean has_stathread_attribute;
3755         MonoInternalThread* thread = mono_thread_internal_current ();
3756
3757         g_assert (args);
3758
3759         pa [0] = args;
3760
3761         domain = mono_object_domain (args);
3762         if (!domain->entry_assembly) {
3763                 gchar *str;
3764                 MonoAssembly *assembly;
3765
3766                 assembly = method->klass->image->assembly;
3767                 domain->entry_assembly = assembly;
3768                 /* Domains created from another domain already have application_base and configuration_file set */
3769                 if (domain->setup->application_base == NULL) {
3770                         MONO_OBJECT_SETREF (domain->setup, application_base, mono_string_new (domain, assembly->basedir));
3771                 }
3772
3773                 if (domain->setup->configuration_file == NULL) {
3774                         str = g_strconcat (assembly->image->name, ".config", NULL);
3775                         MONO_OBJECT_SETREF (domain->setup, configuration_file, mono_string_new (domain, str));
3776                         g_free (str);
3777                         mono_set_private_bin_path_from_config (domain);
3778                 }
3779         }
3780
3781         cinfo = mono_custom_attrs_from_method (method);
3782         if (cinfo) {
3783                 static MonoClass *stathread_attribute = NULL;
3784                 if (!stathread_attribute)
3785                         stathread_attribute = mono_class_from_name (mono_defaults.corlib, "System", "STAThreadAttribute");
3786                 has_stathread_attribute = mono_custom_attrs_has_attr (cinfo, stathread_attribute);
3787                 if (!cinfo->cached)
3788                         mono_custom_attrs_free (cinfo);
3789         } else {
3790                 has_stathread_attribute = FALSE;
3791         }
3792         if (has_stathread_attribute) {
3793                 thread->apartment_state = ThreadApartmentState_STA;
3794         } else {
3795                 thread->apartment_state = ThreadApartmentState_MTA;
3796         }
3797         mono_thread_init_apartment_state ();
3798
3799         mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN, 0, 0);
3800
3801         /* FIXME: check signature of method */
3802         if (mono_method_signature (method)->ret->type == MONO_TYPE_I4) {
3803                 MonoObject *res;
3804                 res = mono_runtime_invoke (method, NULL, pa, exc);
3805                 if (!exc || !*exc)
3806                         rval = *(guint32 *)((char *)res + sizeof (MonoObject));
3807                 else
3808                         rval = -1;
3809
3810                 mono_environment_exitcode_set (rval);
3811         } else {
3812                 mono_runtime_invoke (method, NULL, pa, exc);
3813                 if (!exc || !*exc)
3814                         rval = 0;
3815                 else {
3816                         /* If the return type of Main is void, only
3817                          * set the exitcode if an exception was thrown
3818                          * (we don't want to blow away an
3819                          * explicitly-set exit code)
3820                          */
3821                         rval = -1;
3822                         mono_environment_exitcode_set (rval);
3823                 }
3824         }
3825
3826         mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED, (guint64) (gsize) rval, 0);
3827
3828         return rval;
3829 }
3830
3831 /**
3832  * mono_install_runtime_invoke:
3833  * @func: Function to install
3834  *
3835  * This is a VM internal routine
3836  */
3837 void
3838 mono_install_runtime_invoke (MonoInvokeFunc func)
3839 {
3840         default_mono_runtime_invoke = func ? func: dummy_mono_runtime_invoke;
3841 }
3842
3843
3844 /**
3845  * mono_runtime_invoke_array:
3846  * @method: method to invoke
3847  * @obJ: object instance
3848  * @params: arguments to the method
3849  * @exc: exception information.
3850  *
3851  * Invokes the method represented by @method on the object @obj.
3852  *
3853  * obj is the 'this' pointer, it should be NULL for static
3854  * methods, a MonoObject* for object instances and a pointer to
3855  * the value type for value types.
3856  *
3857  * The params array contains the arguments to the method with the
3858  * same convention: MonoObject* pointers for object instances and
3859  * pointers to the value type otherwise. The _invoke_array
3860  * variant takes a C# object[] as the params argument (MonoArray
3861  * *params): in this case the value types are boxed inside the
3862  * respective reference representation.
3863  * 
3864  * From unmanaged code you'll usually use the
3865  * mono_runtime_invoke() variant.
3866  *
3867  * Note that this function doesn't handle virtual methods for
3868  * you, it will exec the exact method you pass: we still need to
3869  * expose a function to lookup the derived class implementation
3870  * of a virtual method (there are examples of this in the code,
3871  * though).
3872  * 
3873  * You can pass NULL as the exc argument if you don't want to
3874  * catch exceptions, otherwise, *exc will be set to the exception
3875  * thrown, if any.  if an exception is thrown, you can't use the
3876  * MonoObject* result from the function.
3877  * 
3878  * If the method returns a value type, it is boxed in an object
3879  * reference.
3880  */
3881 MonoObject*
3882 mono_runtime_invoke_array (MonoMethod *method, void *obj, MonoArray *params,
3883                            MonoObject **exc)
3884 {
3885         MonoMethodSignature *sig = mono_method_signature (method);
3886         gpointer *pa = NULL;
3887         MonoObject *res;
3888         int i;
3889         gboolean has_byref_nullables = FALSE;
3890
3891         if (NULL != params) {
3892                 pa = alloca (sizeof (gpointer) * mono_array_length (params));
3893                 for (i = 0; i < mono_array_length (params); i++) {
3894                         MonoType *t = sig->params [i];
3895
3896                 again:
3897                         switch (t->type) {
3898                         case MONO_TYPE_U1:
3899                         case MONO_TYPE_I1:
3900                         case MONO_TYPE_BOOLEAN:
3901                         case MONO_TYPE_U2:
3902                         case MONO_TYPE_I2:
3903                         case MONO_TYPE_CHAR:
3904                         case MONO_TYPE_U:
3905                         case MONO_TYPE_I:
3906                         case MONO_TYPE_U4:
3907                         case MONO_TYPE_I4:
3908                         case MONO_TYPE_U8:
3909                         case MONO_TYPE_I8:
3910                         case MONO_TYPE_R4:
3911                         case MONO_TYPE_R8:
3912                         case MONO_TYPE_VALUETYPE:
3913                                 if (t->type == MONO_TYPE_VALUETYPE && mono_class_is_nullable (mono_class_from_mono_type (sig->params [i]))) {
3914                                         /* The runtime invoke wrapper needs the original boxed vtype, it does handle byref values as well. */
3915                                         pa [i] = mono_array_get (params, MonoObject*, i);
3916                                         if (t->byref)
3917                                                 has_byref_nullables = TRUE;
3918                                 } else {
3919                                         /* MS seems to create the objects if a null is passed in */
3920                                         if (!mono_array_get (params, MonoObject*, i))
3921                                                 mono_array_setref (params, i, mono_object_new (mono_domain_get (), mono_class_from_mono_type (sig->params [i]))); 
3922
3923                                         if (t->byref) {
3924                                                 /*
3925                                                  * We can't pass the unboxed vtype byref to the callee, since
3926                                                  * that would mean the callee would be able to modify boxed
3927                                                  * primitive types. So we (and MS) make a copy of the boxed
3928                                                  * object, pass that to the callee, and replace the original
3929                                                  * boxed object in the arg array with the copy.
3930                                                  */
3931                                                 MonoObject *orig = mono_array_get (params, MonoObject*, i);
3932                                                 MonoObject *copy = mono_value_box (mono_domain_get (), orig->vtable->klass, mono_object_unbox (orig));
3933                                                 mono_array_setref (params, i, copy);
3934                                         }
3935                                                 
3936                                         pa [i] = mono_object_unbox (mono_array_get (params, MonoObject*, i));
3937                                 }
3938                                 break;
3939                         case MONO_TYPE_STRING:
3940                         case MONO_TYPE_OBJECT:
3941                         case MONO_TYPE_CLASS:
3942                         case MONO_TYPE_ARRAY:
3943                         case MONO_TYPE_SZARRAY:
3944                                 if (t->byref)
3945                                         pa [i] = mono_array_addr (params, MonoObject*, i);
3946                                         // FIXME: I need to check this code path
3947                                 else
3948                                         pa [i] = mono_array_get (params, MonoObject*, i);
3949                                 break;
3950                         case MONO_TYPE_GENERICINST:
3951                                 if (t->byref)
3952                                         t = &t->data.generic_class->container_class->this_arg;
3953                                 else
3954                                         t = &t->data.generic_class->container_class->byval_arg;
3955                                 goto again;
3956                         case MONO_TYPE_PTR: {
3957                                 MonoObject *arg;
3958
3959                                 /* The argument should be an IntPtr */
3960                                 arg = mono_array_get (params, MonoObject*, i);
3961                                 if (arg == NULL) {
3962                                         pa [i] = NULL;
3963                                 } else {
3964                                         g_assert (arg->vtable->klass == mono_defaults.int_class);
3965                                         pa [i] = ((MonoIntPtr*)arg)->m_value;
3966                                 }
3967                                 break;
3968                         }
3969                         default:
3970                                 g_error ("type 0x%x not handled in mono_runtime_invoke_array", sig->params [i]->type);
3971                         }
3972                 }
3973         }
3974
3975         if (!strcmp (method->name, ".ctor") && method->klass != mono_defaults.string_class) {
3976                 void *o = obj;
3977
3978                 if (mono_class_is_nullable (method->klass)) {
3979                         /* Need to create a boxed vtype instead */
3980                         g_assert (!obj);
3981
3982                         if (!params)
3983                                 return NULL;
3984                         else
3985                                 return mono_value_box (mono_domain_get (), method->klass->cast_class, pa [0]);
3986                 }
3987
3988                 if (!obj) {
3989                         obj = mono_object_new (mono_domain_get (), method->klass);
3990                         if (mono_object_class(obj) == mono_defaults.transparent_proxy_class) {
3991                                 method = mono_marshal_get_remoting_invoke (method->slot == -1 ? method : method->klass->vtable [method->slot]);
3992                         }
3993                         if (method->klass->valuetype)
3994                                 o = mono_object_unbox (obj);
3995                         else
3996                                 o = obj;
3997                 } else if (method->klass->valuetype) {
3998                         obj = mono_value_box (mono_domain_get (), method->klass, obj);
3999                 }
4000
4001                 mono_runtime_invoke (method, o, pa, exc);
4002                 return obj;
4003         } else {
4004                 if (mono_class_is_nullable (method->klass)) {
4005                         MonoObject *nullable;
4006
4007                         /* Convert the unboxed vtype into a Nullable structure */
4008                         nullable = mono_object_new (mono_domain_get (), method->klass);
4009
4010                         mono_nullable_init (mono_object_unbox (nullable), mono_value_box (mono_domain_get (), method->klass->cast_class, obj), method->klass);
4011                         obj = mono_object_unbox (nullable);
4012                 }
4013
4014                 /* obj must be already unboxed if needed */
4015                 res = mono_runtime_invoke (method, obj, pa, exc);
4016
4017                 if (sig->ret->type == MONO_TYPE_PTR) {
4018                         MonoClass *pointer_class;
4019                         static MonoMethod *box_method;
4020                         void *box_args [2];
4021                         MonoObject *box_exc;
4022
4023                         /* 
4024                          * The runtime-invoke wrapper returns a boxed IntPtr, need to 
4025                          * convert it to a Pointer object.
4026                          */
4027                         pointer_class = mono_class_from_name_cached (mono_defaults.corlib, "System.Reflection", "Pointer");
4028                         if (!box_method)
4029                                 box_method = mono_class_get_method_from_name (pointer_class, "Box", -1);
4030
4031                         g_assert (res->vtable->klass == mono_defaults.int_class);
4032                         box_args [0] = ((MonoIntPtr*)res)->m_value;
4033                         box_args [1] = mono_type_get_object (mono_domain_get (), sig->ret);
4034                         res = mono_runtime_invoke (box_method, NULL, box_args, &box_exc);
4035                         g_assert (!box_exc);
4036                 }
4037
4038                 if (has_byref_nullables) {
4039                         /* 
4040                          * The runtime invoke wrapper already converted byref nullables back,
4041                          * and stored them in pa, we just need to copy them back to the
4042                          * managed array.
4043                          */
4044                         for (i = 0; i < mono_array_length (params); i++) {
4045                                 MonoType *t = sig->params [i];
4046
4047                                 if (t->byref && t->type == MONO_TYPE_GENERICINST && mono_class_is_nullable (mono_class_from_mono_type (t)))
4048                                         mono_array_setref (params, i, pa [i]);
4049                         }
4050                 }
4051
4052                 return res;
4053         }
4054 }
4055
4056 static void
4057 arith_overflow (void)
4058 {
4059         mono_raise_exception (mono_get_exception_overflow ());
4060 }
4061
4062 /**
4063  * mono_object_allocate:
4064  * @size: number of bytes to allocate
4065  *
4066  * This is a very simplistic routine until we have our GC-aware
4067  * memory allocator. 
4068  *
4069  * Returns: an allocated object of size @size, or NULL on failure.
4070  */
4071 static inline void *
4072 mono_object_allocate (size_t size, MonoVTable *vtable)
4073 {
4074         MonoObject *o;
4075         mono_stats.new_object_count++;
4076         ALLOC_OBJECT (o, vtable, size);
4077
4078         return o;
4079 }
4080
4081 /**
4082  * mono_object_allocate_ptrfree:
4083  * @size: number of bytes to allocate
4084  *
4085  * Note that the memory allocated is not zeroed.
4086  * Returns: an allocated object of size @size, or NULL on failure.
4087  */
4088 static inline void *
4089 mono_object_allocate_ptrfree (size_t size, MonoVTable *vtable)
4090 {
4091         MonoObject *o;
4092         mono_stats.new_object_count++;
4093         ALLOC_PTRFREE (o, vtable, size);
4094         return o;
4095 }
4096
4097 static inline void *
4098 mono_object_allocate_spec (size_t size, MonoVTable *vtable)
4099 {
4100         void *o;
4101         ALLOC_TYPED (o, size, vtable);
4102         mono_stats.new_object_count++;
4103
4104         return o;
4105 }
4106
4107 /**
4108  * mono_object_new:
4109  * @klass: the class of the object that we want to create
4110  *
4111  * Returns: a newly created object whose definition is
4112  * looked up using @klass.   This will not invoke any constructors, 
4113  * so the consumer of this routine has to invoke any constructors on
4114  * its own to initialize the object.
4115  * 
4116  * It returns NULL on failure.
4117  */
4118 MonoObject *
4119 mono_object_new (MonoDomain *domain, MonoClass *klass)
4120 {
4121         MonoVTable *vtable;
4122
4123         MONO_ARCH_SAVE_REGS;
4124         vtable = mono_class_vtable (domain, klass);
4125         if (!vtable)
4126                 return NULL;
4127         return mono_object_new_specific (vtable);
4128 }
4129
4130 /**
4131  * mono_object_new_specific:
4132  * @vtable: the vtable of the object that we want to create
4133  *
4134  * Returns: A newly created object with class and domain specified
4135  * by @vtable
4136  */
4137 MonoObject *
4138 mono_object_new_specific (MonoVTable *vtable)
4139 {
4140         MonoObject *o;
4141
4142         MONO_ARCH_SAVE_REGS;
4143         
4144         /* check for is_com_object for COM Interop */
4145         if (vtable->remote || vtable->klass->is_com_object)
4146         {
4147                 gpointer pa [1];
4148                 MonoMethod *im = vtable->domain->create_proxy_for_type_method;
4149
4150                 if (im == NULL) {
4151                         MonoClass *klass = mono_class_from_name (mono_defaults.corlib, "System.Runtime.Remoting.Activation", "ActivationServices");
4152
4153                         if (!klass->inited)
4154                                 mono_class_init (klass);
4155
4156                         im = mono_class_get_method_from_name (klass, "CreateProxyForType", 1);
4157                         g_assert (im);
4158                         vtable->domain->create_proxy_for_type_method = im;
4159                 }
4160         
4161                 pa [0] = mono_type_get_object (mono_domain_get (), &vtable->klass->byval_arg);
4162
4163                 o = mono_runtime_invoke (im, NULL, pa, NULL);           
4164                 if (o != NULL) return o;
4165         }
4166
4167         return mono_object_new_alloc_specific (vtable);
4168 }
4169
4170 MonoObject *
4171 mono_object_new_alloc_specific (MonoVTable *vtable)
4172 {
4173         MonoObject *o;
4174
4175         if (!vtable->klass->has_references) {
4176                 o = mono_object_new_ptrfree (vtable);
4177         } else if (vtable->gc_descr != GC_NO_DESCRIPTOR) {
4178                 o = mono_object_allocate_spec (vtable->klass->instance_size, vtable);
4179         } else {
4180 /*              printf("OBJECT: %s.%s.\n", vtable->klass->name_space, vtable->klass->name); */
4181                 o = mono_object_allocate (vtable->klass->instance_size, vtable);
4182         }
4183         if (G_UNLIKELY (vtable->klass->has_finalize))
4184                 mono_object_register_finalizer (o);
4185         
4186         if (G_UNLIKELY (profile_allocs))
4187                 mono_profiler_allocation (o, vtable->klass);
4188         return o;
4189 }
4190
4191 MonoObject*
4192 mono_object_new_fast (MonoVTable *vtable)
4193 {
4194         MonoObject *o;
4195         ALLOC_TYPED (o, vtable->klass->instance_size, vtable);
4196         return o;
4197 }
4198
4199 static MonoObject*
4200 mono_object_new_ptrfree (MonoVTable *vtable)
4201 {
4202         MonoObject *obj;
4203         ALLOC_PTRFREE (obj, vtable, vtable->klass->instance_size);
4204 #if NEED_TO_ZERO_PTRFREE
4205         /* an inline memset is much faster for the common vcase of small objects
4206          * note we assume the allocated size is a multiple of sizeof (void*).
4207          */
4208         if (vtable->klass->instance_size < 128) {
4209                 gpointer *p, *end;
4210                 end = (gpointer*)((char*)obj + vtable->klass->instance_size);
4211                 p = (gpointer*)((char*)obj + sizeof (MonoObject));
4212                 while (p < end) {
4213                         *p = NULL;
4214                         ++p;
4215                 }
4216         } else {
4217                 memset ((char*)obj + sizeof (MonoObject), 0, vtable->klass->instance_size - sizeof (MonoObject));
4218         }
4219 #endif
4220         return obj;
4221 }
4222
4223 static MonoObject*
4224 mono_object_new_ptrfree_box (MonoVTable *vtable)
4225 {
4226         MonoObject *obj;
4227         ALLOC_PTRFREE (obj, vtable, vtable->klass->instance_size);
4228         /* the object will be boxed right away, no need to memzero it */
4229         return obj;
4230 }
4231
4232 /**
4233  * mono_class_get_allocation_ftn:
4234  * @vtable: vtable
4235  * @for_box: the object will be used for boxing
4236  * @pass_size_in_words: 
4237  *
4238  * Return the allocation function appropriate for the given class.
4239  */
4240
4241 void*
4242 mono_class_get_allocation_ftn (MonoVTable *vtable, gboolean for_box, gboolean *pass_size_in_words)
4243 {
4244         *pass_size_in_words = FALSE;
4245
4246         if (!(mono_profiler_get_events () & MONO_PROFILE_ALLOCATIONS))
4247                 profile_allocs = FALSE;
4248
4249         if (vtable->klass->has_finalize || vtable->klass->marshalbyref || (mono_profiler_get_events () & MONO_PROFILE_ALLOCATIONS))
4250                 return mono_object_new_specific;
4251
4252         if (!vtable->klass->has_references) {
4253                 //g_print ("ptrfree for %s.%s\n", vtable->klass->name_space, vtable->klass->name);
4254                 if (for_box)
4255                         return mono_object_new_ptrfree_box;
4256                 return mono_object_new_ptrfree;
4257         }
4258
4259         if (vtable->gc_descr != GC_NO_DESCRIPTOR) {
4260
4261                 return mono_object_new_fast;
4262
4263                 /* 
4264                  * FIXME: This is actually slower than mono_object_new_fast, because
4265                  * of the overhead of parameter passing.
4266                  */
4267                 /*
4268                 *pass_size_in_words = TRUE;
4269 #ifdef GC_REDIRECT_TO_LOCAL
4270                 return GC_local_gcj_fast_malloc;
4271 #else
4272                 return GC_gcj_fast_malloc;
4273 #endif
4274                 */
4275         }
4276
4277         return mono_object_new_specific;
4278 }
4279
4280 /**
4281  * mono_object_new_from_token:
4282  * @image: Context where the type_token is hosted
4283  * @token: a token of the type that we want to create
4284  *
4285  * Returns: A newly created object whose definition is
4286  * looked up using @token in the @image image
4287  */
4288 MonoObject *
4289 mono_object_new_from_token  (MonoDomain *domain, MonoImage *image, guint32 token)
4290 {
4291         MonoClass *class;
4292
4293         class = mono_class_get (image, token);
4294
4295         return mono_object_new (domain, class);
4296 }
4297
4298
4299 /**
4300  * mono_object_clone:
4301  * @obj: the object to clone
4302  *
4303  * Returns: A newly created object who is a shallow copy of @obj
4304  */
4305 MonoObject *
4306 mono_object_clone (MonoObject *obj)
4307 {
4308         MonoObject *o;
4309         int size = obj->vtable->klass->instance_size;
4310
4311         o = mono_object_allocate (size, obj->vtable);
4312
4313         if (obj->vtable->klass->has_references) {
4314                 mono_gc_wbarrier_object_copy (o, obj);
4315         } else {
4316                 int size = obj->vtable->klass->instance_size;
4317                 /* do not copy the sync state */
4318                 memcpy ((char*)o + sizeof (MonoObject), (char*)obj + sizeof (MonoObject), size - sizeof (MonoObject));
4319         }
4320         if (G_UNLIKELY (profile_allocs))
4321                 mono_profiler_allocation (o, obj->vtable->klass);
4322
4323         if (obj->vtable->klass->has_finalize)
4324                 mono_object_register_finalizer (o);
4325         return o;
4326 }
4327
4328 /**
4329  * mono_array_full_copy:
4330  * @src: source array to copy
4331  * @dest: destination array
4332  *
4333  * Copies the content of one array to another with exactly the same type and size.
4334  */
4335 void
4336 mono_array_full_copy (MonoArray *src, MonoArray *dest)
4337 {
4338         uintptr_t size;
4339         MonoClass *klass = src->obj.vtable->klass;
4340
4341         MONO_ARCH_SAVE_REGS;
4342
4343         g_assert (klass == dest->obj.vtable->klass);
4344
4345         size = mono_array_length (src);
4346         g_assert (size == mono_array_length (dest));
4347         size *= mono_array_element_size (klass);
4348 #ifdef HAVE_SGEN_GC
4349         if (klass->element_class->valuetype) {
4350                 if (klass->element_class->has_references)
4351                         mono_value_copy_array (dest, 0, mono_array_addr_with_size (src, 0, 0), mono_array_length (src));
4352                 else
4353                         memcpy (&dest->vector, &src->vector, size);
4354         } else {
4355                 mono_array_memcpy_refs (dest, 0, src, 0, mono_array_length (src));
4356         }
4357 #else
4358         memcpy (&dest->vector, &src->vector, size);
4359 #endif
4360 }
4361
4362 /**
4363  * mono_array_clone_in_domain:
4364  * @domain: the domain in which the array will be cloned into
4365  * @array: the array to clone
4366  *
4367  * This routine returns a copy of the array that is hosted on the
4368  * specified MonoDomain.
4369  */
4370 MonoArray*
4371 mono_array_clone_in_domain (MonoDomain *domain, MonoArray *array)
4372 {
4373         MonoArray *o;
4374         uintptr_t size, i;
4375         uintptr_t *sizes;
4376         MonoClass *klass = array->obj.vtable->klass;
4377
4378         MONO_ARCH_SAVE_REGS;
4379
4380         if (array->bounds == NULL) {
4381                 size = mono_array_length (array);
4382                 o = mono_array_new_full (domain, klass, &size, NULL);
4383
4384                 size *= mono_array_element_size (klass);
4385 #ifdef HAVE_SGEN_GC
4386                 if (klass->element_class->valuetype) {
4387                         if (klass->element_class->has_references)
4388                                 mono_value_copy_array (o, 0, mono_array_addr_with_size (array, 0, 0), mono_array_length (array));
4389                         else
4390                                 memcpy (&o->vector, &array->vector, size);
4391                 } else {
4392                         mono_array_memcpy_refs (o, 0, array, 0, mono_array_length (array));
4393                 }
4394 #else
4395                 memcpy (&o->vector, &array->vector, size);
4396 #endif
4397                 return o;
4398         }
4399         
4400         sizes = alloca (klass->rank * sizeof(intptr_t) * 2);
4401         size = mono_array_element_size (klass);
4402         for (i = 0; i < klass->rank; ++i) {
4403                 sizes [i] = array->bounds [i].length;
4404                 size *= array->bounds [i].length;
4405                 sizes [i + klass->rank] = array->bounds [i].lower_bound;
4406         }
4407         o = mono_array_new_full (domain, klass, sizes, (intptr_t*)sizes + klass->rank);
4408 #ifdef HAVE_SGEN_GC
4409         if (klass->element_class->valuetype) {
4410                 if (klass->element_class->has_references)
4411                         mono_value_copy_array (o, 0, mono_array_addr_with_size (array, 0, 0), mono_array_length (array));
4412                 else
4413                         memcpy (&o->vector, &array->vector, size);
4414         } else {
4415                 mono_array_memcpy_refs (o, 0, array, 0, mono_array_length (array));
4416         }
4417 #else
4418         memcpy (&o->vector, &array->vector, size);
4419 #endif
4420
4421         return o;
4422 }
4423
4424 /**
4425  * mono_array_clone:
4426  * @array: the array to clone
4427  *
4428  * Returns: A newly created array who is a shallow copy of @array
4429  */
4430 MonoArray*
4431 mono_array_clone (MonoArray *array)
4432 {
4433         return mono_array_clone_in_domain (((MonoObject *)array)->vtable->domain, array);
4434 }
4435
4436 /* helper macros to check for overflow when calculating the size of arrays */
4437 #ifdef MONO_BIG_ARRAYS
4438 #define MYGUINT64_MAX 0x0000FFFFFFFFFFFFUL
4439 #define MYGUINT_MAX MYGUINT64_MAX
4440 #define CHECK_ADD_OVERFLOW_UN(a,b) \
4441             (G_UNLIKELY ((guint64)(MYGUINT64_MAX) - (guint64)(b) < (guint64)(a)))
4442 #define CHECK_MUL_OVERFLOW_UN(a,b) \
4443             (G_UNLIKELY (((guint64)(a) > 0) && ((guint64)(b) > 0) &&    \
4444                                          ((guint64)(b) > ((MYGUINT64_MAX) / (guint64)(a)))))
4445 #else
4446 #define MYGUINT32_MAX 4294967295U
4447 #define MYGUINT_MAX MYGUINT32_MAX
4448 #define CHECK_ADD_OVERFLOW_UN(a,b) \
4449             (G_UNLIKELY ((guint32)(MYGUINT32_MAX) - (guint32)(b) < (guint32)(a)))
4450 #define CHECK_MUL_OVERFLOW_UN(a,b) \
4451             (G_UNLIKELY (((guint32)(a) > 0) && ((guint32)(b) > 0) &&                    \
4452                                          ((guint32)(b) > ((MYGUINT32_MAX) / (guint32)(a)))))
4453 #endif
4454
4455 gboolean
4456 mono_array_calc_byte_len (MonoClass *class, uintptr_t len, uintptr_t *res)
4457 {
4458         uintptr_t byte_len;
4459
4460         byte_len = mono_array_element_size (class);
4461         if (CHECK_MUL_OVERFLOW_UN (byte_len, len))
4462                 return FALSE;
4463         byte_len *= len;
4464         if (CHECK_ADD_OVERFLOW_UN (byte_len, sizeof (MonoArray)))
4465                 return FALSE;
4466         byte_len += sizeof (MonoArray);
4467
4468         *res = byte_len;
4469
4470         return TRUE;
4471 }
4472
4473 /**
4474  * mono_array_new_full:
4475  * @domain: domain where the object is created
4476  * @array_class: array class
4477  * @lengths: lengths for each dimension in the array
4478  * @lower_bounds: lower bounds for each dimension in the array (may be NULL)
4479  *
4480  * This routine creates a new array objects with the given dimensions,
4481  * lower bounds and type.
4482  */
4483 MonoArray*
4484 mono_array_new_full (MonoDomain *domain, MonoClass *array_class, uintptr_t *lengths, intptr_t *lower_bounds)
4485 {
4486         uintptr_t byte_len, len, bounds_size;
4487         MonoObject *o;
4488         MonoArray *array;
4489         MonoArrayBounds *bounds;
4490         MonoVTable *vtable;
4491         int i;
4492
4493         if (!array_class->inited)
4494                 mono_class_init (array_class);
4495
4496         len = 1;
4497
4498         /* A single dimensional array with a 0 lower bound is the same as an szarray */
4499         if (array_class->rank == 1 && ((array_class->byval_arg.type == MONO_TYPE_SZARRAY) || (lower_bounds && lower_bounds [0] == 0))) {
4500                 len = lengths [0];
4501                 if (len > MONO_ARRAY_MAX_INDEX)//MONO_ARRAY_MAX_INDEX
4502                         arith_overflow ();
4503                 bounds_size = 0;
4504         } else {
4505                 bounds_size = sizeof (MonoArrayBounds) * array_class->rank;
4506
4507                 for (i = 0; i < array_class->rank; ++i) {
4508                         if (lengths [i] > MONO_ARRAY_MAX_INDEX) //MONO_ARRAY_MAX_INDEX
4509                                 arith_overflow ();
4510                         if (CHECK_MUL_OVERFLOW_UN (len, lengths [i]))
4511                                 mono_gc_out_of_memory (MONO_ARRAY_MAX_SIZE);
4512                         len *= lengths [i];
4513                 }
4514         }
4515
4516         if (!mono_array_calc_byte_len (array_class, len, &byte_len))
4517                 mono_gc_out_of_memory (MONO_ARRAY_MAX_SIZE);
4518
4519         if (bounds_size) {
4520                 /* align */
4521                 if (CHECK_ADD_OVERFLOW_UN (byte_len, 3))
4522                         mono_gc_out_of_memory (MONO_ARRAY_MAX_SIZE);
4523                 byte_len = (byte_len + 3) & ~3;
4524                 if (CHECK_ADD_OVERFLOW_UN (byte_len, bounds_size))
4525                         mono_gc_out_of_memory (MONO_ARRAY_MAX_SIZE);
4526                 byte_len += bounds_size;
4527         }
4528         /* 
4529          * Following three lines almost taken from mono_object_new ():
4530          * they need to be kept in sync.
4531          */
4532         vtable = mono_class_vtable_full (domain, array_class, TRUE);
4533 #ifndef HAVE_SGEN_GC
4534         if (!array_class->has_references) {
4535                 o = mono_object_allocate_ptrfree (byte_len, vtable);
4536 #if NEED_TO_ZERO_PTRFREE
4537                 memset ((char*)o + sizeof (MonoObject), 0, byte_len - sizeof (MonoObject));
4538 #endif
4539         } else if (vtable->gc_descr != GC_NO_DESCRIPTOR) {
4540                 o = mono_object_allocate_spec (byte_len, vtable);
4541         }else {
4542                 o = mono_object_allocate (byte_len, vtable);
4543         }
4544
4545         array = (MonoArray*)o;
4546         array->max_length = len;
4547
4548         if (bounds_size) {
4549                 bounds = (MonoArrayBounds*)((char*)array + byte_len - bounds_size);
4550                 array->bounds = bounds;
4551         }
4552 #else
4553         if (bounds_size)
4554                 o = mono_gc_alloc_array (vtable, byte_len, len, bounds_size);
4555         else
4556                 o = mono_gc_alloc_vector (vtable, byte_len, len);
4557         array = (MonoArray*)o;
4558         mono_stats.new_object_count++;
4559
4560         bounds = array->bounds;
4561 #endif
4562
4563         if (bounds_size) {
4564                 for (i = 0; i < array_class->rank; ++i) {
4565                         bounds [i].length = lengths [i];
4566                         if (lower_bounds)
4567                                 bounds [i].lower_bound = lower_bounds [i];
4568                 }
4569         }
4570
4571         if (G_UNLIKELY (profile_allocs))
4572                 mono_profiler_allocation (o, array_class);
4573
4574         return array;
4575 }
4576
4577 /**
4578  * mono_array_new:
4579  * @domain: domain where the object is created
4580  * @eclass: element class
4581  * @n: number of array elements
4582  *
4583  * This routine creates a new szarray with @n elements of type @eclass.
4584  */
4585 MonoArray *
4586 mono_array_new (MonoDomain *domain, MonoClass *eclass, uintptr_t n)
4587 {
4588         MonoClass *ac;
4589
4590         MONO_ARCH_SAVE_REGS;
4591
4592         ac = mono_array_class_get (eclass, 1);
4593         g_assert (ac);
4594
4595         return mono_array_new_specific (mono_class_vtable_full (domain, ac, TRUE), n);
4596 }
4597
4598 /**
4599  * mono_array_new_specific:
4600  * @vtable: a vtable in the appropriate domain for an initialized class
4601  * @n: number of array elements
4602  *
4603  * This routine is a fast alternative to mono_array_new() for code which
4604  * can be sure about the domain it operates in.
4605  */
4606 MonoArray *
4607 mono_array_new_specific (MonoVTable *vtable, uintptr_t n)
4608 {
4609         MonoObject *o;
4610         MonoArray *ao;
4611         uintptr_t byte_len;
4612
4613         MONO_ARCH_SAVE_REGS;
4614
4615         if (G_UNLIKELY (n > MONO_ARRAY_MAX_INDEX)) {
4616                 arith_overflow ();
4617                 return NULL;
4618         }
4619
4620         if (!mono_array_calc_byte_len (vtable->klass, n, &byte_len)) {
4621                 mono_gc_out_of_memory (MONO_ARRAY_MAX_SIZE);
4622                 return NULL;
4623         }
4624 #ifndef HAVE_SGEN_GC
4625         if (!vtable->klass->has_references) {
4626                 o = mono_object_allocate_ptrfree (byte_len, vtable);
4627 #if NEED_TO_ZERO_PTRFREE
4628                 ((MonoArray*)o)->bounds = NULL;
4629                 memset ((char*)o + sizeof (MonoObject), 0, byte_len - sizeof (MonoObject));
4630 #endif
4631         } else if (vtable->gc_descr != GC_NO_DESCRIPTOR) {
4632                 o = mono_object_allocate_spec (byte_len, vtable);
4633         } else {
4634 /*              printf("ARRAY: %s.%s.\n", vtable->klass->name_space, vtable->klass->name); */
4635                 o = mono_object_allocate (byte_len, vtable);
4636         }
4637
4638         ao = (MonoArray *)o;
4639         ao->max_length = n;
4640 #else
4641         o = mono_gc_alloc_vector (vtable, byte_len, n);
4642         ao = (MonoArray*)o;
4643         mono_stats.new_object_count++;
4644 #endif
4645
4646         if (G_UNLIKELY (profile_allocs))
4647                 mono_profiler_allocation (o, vtable->klass);
4648
4649         return ao;
4650 }
4651
4652 /**
4653  * mono_string_new_utf16:
4654  * @text: a pointer to an utf16 string
4655  * @len: the length of the string
4656  *
4657  * Returns: A newly created string object which contains @text.
4658  */
4659 MonoString *
4660 mono_string_new_utf16 (MonoDomain *domain, const guint16 *text, gint32 len)
4661 {
4662         MonoString *s;
4663         
4664         s = mono_string_new_size (domain, len);
4665         g_assert (s != NULL);
4666
4667         memcpy (mono_string_chars (s), text, len * 2);
4668
4669         return s;
4670 }
4671
4672 /**
4673  * mono_string_new_size:
4674  * @text: a pointer to an utf16 string
4675  * @len: the length of the string
4676  *
4677  * Returns: A newly created string object of @len
4678  */
4679 MonoString *
4680 mono_string_new_size (MonoDomain *domain, gint32 len)
4681 {
4682         MonoString *s;
4683         MonoVTable *vtable;
4684         size_t size = (sizeof (MonoString) + ((len + 1) * 2));
4685
4686         /* overflow ? can't fit it, can't allocate it! */
4687         if (len > size)
4688                 mono_gc_out_of_memory (-1);
4689
4690         vtable = mono_class_vtable (domain, mono_defaults.string_class);
4691         g_assert (vtable);
4692
4693 #ifndef HAVE_SGEN_GC
4694         s = mono_object_allocate_ptrfree (size, vtable);
4695
4696         s->length = len;
4697 #else
4698         s = mono_gc_alloc_string (vtable, size, len);
4699 #endif
4700 #if NEED_TO_ZERO_PTRFREE
4701         s->chars [len] = 0;
4702 #endif
4703         if (G_UNLIKELY (profile_allocs))
4704                 mono_profiler_allocation ((MonoObject*)s, mono_defaults.string_class);
4705
4706         return s;
4707 }
4708
4709 /**
4710  * mono_string_new_len:
4711  * @text: a pointer to an utf8 string
4712  * @length: number of bytes in @text to consider
4713  *
4714  * Returns: A newly created string object which contains @text.
4715  */
4716 MonoString*
4717 mono_string_new_len (MonoDomain *domain, const char *text, guint length)
4718 {
4719         GError *error = NULL;
4720         MonoString *o = NULL;
4721         guint16 *ut;
4722         glong items_written;
4723
4724         ut = g_utf8_to_utf16 (text, length, NULL, &items_written, &error);
4725
4726         if (!error)
4727                 o = mono_string_new_utf16 (domain, ut, items_written);
4728         else 
4729                 g_error_free (error);
4730
4731         g_free (ut);
4732
4733         return o;
4734 }
4735
4736 /**
4737  * mono_string_new:
4738  * @text: a pointer to an utf8 string
4739  *
4740  * Returns: A newly created string object which contains @text.
4741  */
4742 MonoString*
4743 mono_string_new (MonoDomain *domain, const char *text)
4744 {
4745     GError *error = NULL;
4746     MonoString *o = NULL;
4747     guint16 *ut;
4748     glong items_written;
4749     int l;
4750
4751     l = strlen (text);
4752    
4753     ut = g_utf8_to_utf16 (text, l, NULL, &items_written, &error);
4754
4755     if (!error)
4756         o = mono_string_new_utf16 (domain, ut, items_written);
4757     else
4758         g_error_free (error);
4759
4760     g_free (ut);
4761 /*FIXME g_utf8_get_char, g_utf8_next_char and g_utf8_validate are not part of eglib.*/
4762 #if 0
4763         gunichar2 *str;
4764         const gchar *end;
4765         int len;
4766         MonoString *o = NULL;
4767
4768         if (!g_utf8_validate (text, -1, &end))
4769                 return NULL;
4770
4771         len = g_utf8_strlen (text, -1);
4772         o = mono_string_new_size (domain, len);
4773         str = mono_string_chars (o);
4774
4775         while (text < end) {
4776                 *str++ = g_utf8_get_char (text);
4777                 text = g_utf8_next_char (text);
4778         }
4779 #endif
4780         return o;
4781 }
4782
4783 /**
4784  * mono_string_new_wrapper:
4785  * @text: pointer to utf8 characters.
4786  *
4787  * Helper function to create a string object from @text in the current domain.
4788  */
4789 MonoString*
4790 mono_string_new_wrapper (const char *text)
4791 {
4792         MonoDomain *domain = mono_domain_get ();
4793
4794         MONO_ARCH_SAVE_REGS;
4795
4796         if (text)
4797                 return mono_string_new (domain, text);
4798
4799         return NULL;
4800 }
4801
4802 /**
4803  * mono_value_box:
4804  * @class: the class of the value
4805  * @value: a pointer to the unboxed data
4806  *
4807  * Returns: A newly created object which contains @value.
4808  */
4809 MonoObject *
4810 mono_value_box (MonoDomain *domain, MonoClass *class, gpointer value)
4811 {
4812         MonoObject *res;
4813         int size;
4814         MonoVTable *vtable;
4815
4816         g_assert (class->valuetype);
4817         if (mono_class_is_nullable (class))
4818                 return mono_nullable_box (value, class);
4819
4820         vtable = mono_class_vtable (domain, class);
4821         if (!vtable)
4822                 return NULL;
4823         size = mono_class_instance_size (class);
4824         res = mono_object_new_alloc_specific (vtable);
4825         if (G_UNLIKELY (profile_allocs))
4826                 mono_profiler_allocation (res, class);
4827
4828         size = size - sizeof (MonoObject);
4829
4830 #ifdef HAVE_SGEN_GC
4831         g_assert (size == mono_class_value_size (class, NULL));
4832         mono_gc_wbarrier_value_copy ((char *)res + sizeof (MonoObject), value, 1, class);
4833 #else
4834 #if NO_UNALIGNED_ACCESS
4835         memcpy ((char *)res + sizeof (MonoObject), value, size);
4836 #else
4837         switch (size) {
4838         case 1:
4839                 *((guint8 *) res + sizeof (MonoObject)) = *(guint8 *) value;
4840                 break;
4841         case 2:
4842                 *(guint16 *)((guint8 *) res + sizeof (MonoObject)) = *(guint16 *) value;
4843                 break;
4844         case 4:
4845                 *(guint32 *)((guint8 *) res + sizeof (MonoObject)) = *(guint32 *) value;
4846                 break;
4847         case 8:
4848                 *(guint64 *)((guint8 *) res + sizeof (MonoObject)) = *(guint64 *) value;
4849                 break;
4850         default:
4851                 memcpy ((char *)res + sizeof (MonoObject), value, size);
4852         }
4853 #endif
4854 #endif
4855         if (class->has_finalize)
4856                 mono_object_register_finalizer (res);
4857         return res;
4858 }
4859
4860 /*
4861  * mono_value_copy:
4862  * @dest: destination pointer
4863  * @src: source pointer
4864  * @klass: a valuetype class
4865  *
4866  * Copy a valuetype from @src to @dest. This function must be used
4867  * when @klass contains references fields.
4868  */
4869 void
4870 mono_value_copy (gpointer dest, gpointer src, MonoClass *klass)
4871 {
4872         mono_gc_wbarrier_value_copy (dest, src, 1, klass);
4873 }
4874
4875 /*
4876  * mono_value_copy_array:
4877  * @dest: destination array
4878  * @dest_idx: index in the @dest array
4879  * @src: source pointer
4880  * @count: number of items
4881  *
4882  * Copy @count valuetype items from @src to the array @dest at index @dest_idx. 
4883  * This function must be used when @klass contains references fields.
4884  * Overlap is handled.
4885  */
4886 void
4887 mono_value_copy_array (MonoArray *dest, int dest_idx, gpointer src, int count)
4888 {
4889         int size = mono_array_element_size (dest->obj.vtable->klass);
4890         char *d = mono_array_addr_with_size (dest, size, dest_idx);
4891         g_assert (size == mono_class_value_size (mono_object_class (dest)->element_class, NULL));
4892         mono_gc_wbarrier_value_copy (d, src, count, mono_object_class (dest)->element_class);
4893 }
4894
4895 /**
4896  * mono_object_get_domain:
4897  * @obj: object to query
4898  * 
4899  * Returns: the MonoDomain where the object is hosted
4900  */
4901 MonoDomain*
4902 mono_object_get_domain (MonoObject *obj)
4903 {
4904         return mono_object_domain (obj);
4905 }
4906
4907 /**
4908  * mono_object_get_class:
4909  * @obj: object to query
4910  * 
4911  * Returns: the MonOClass of the object.
4912  */
4913 MonoClass*
4914 mono_object_get_class (MonoObject *obj)
4915 {
4916         return mono_object_class (obj);
4917 }
4918 /**
4919  * mono_object_get_size:
4920  * @o: object to query
4921  * 
4922  * Returns: the size, in bytes, of @o
4923  */
4924 guint
4925 mono_object_get_size (MonoObject* o)
4926 {
4927         MonoClass* klass = mono_object_class (o);
4928         if (klass == mono_defaults.string_class) {
4929                 return sizeof (MonoString) + 2 * mono_string_length ((MonoString*) o) + 2;
4930         } else if (o->vtable->rank) {
4931                 MonoArray *array = (MonoArray*)o;
4932                 size_t size = sizeof (MonoArray) + mono_array_element_size (klass) * mono_array_length (array);
4933                 if (array->bounds) {
4934                         size += 3;
4935                         size &= ~3;
4936                         size += sizeof (MonoArrayBounds) * o->vtable->rank;
4937                 }
4938                 return size;
4939         } else {
4940                 return mono_class_instance_size (klass);
4941         }
4942 }
4943
4944 /**
4945  * mono_object_unbox:
4946  * @obj: object to unbox
4947  * 
4948  * Returns: a pointer to the start of the valuetype boxed in this
4949  * object.
4950  *
4951  * This method will assert if the object passed is not a valuetype.
4952  */
4953 gpointer
4954 mono_object_unbox (MonoObject *obj)
4955 {
4956         /* add assert for valuetypes? */
4957         g_assert (obj->vtable->klass->valuetype);
4958         return ((char*)obj) + sizeof (MonoObject);
4959 }
4960
4961 /**
4962  * mono_object_isinst:
4963  * @obj: an object
4964  * @klass: a pointer to a class 
4965  *
4966  * Returns: @obj if @obj is derived from @klass
4967  */
4968 MonoObject *
4969 mono_object_isinst (MonoObject *obj, MonoClass *klass)
4970 {
4971         if (!klass->inited)
4972                 mono_class_init (klass);
4973
4974         if (klass->marshalbyref || (klass->flags & TYPE_ATTRIBUTE_INTERFACE))
4975                 return mono_object_isinst_mbyref (obj, klass);
4976
4977         if (!obj)
4978                 return NULL;
4979
4980         return mono_class_is_assignable_from (klass, obj->vtable->klass) ? obj : NULL;
4981 }
4982
4983 MonoObject *
4984 mono_object_isinst_mbyref (MonoObject *obj, MonoClass *klass)
4985 {
4986         MonoVTable *vt;
4987
4988         if (!obj)
4989                 return NULL;
4990
4991         vt = obj->vtable;
4992         
4993         if (klass->flags & TYPE_ATTRIBUTE_INTERFACE) {
4994                 if (MONO_VTABLE_IMPLEMENTS_INTERFACE (vt, klass->interface_id)) {
4995                         return obj;
4996                 }
4997
4998                 /*If the above check fails we are in the slow path of possibly raising an exception. So it's ok to it this way.*/
4999                 if (mono_class_has_variant_generic_params (klass) && mono_class_is_assignable_from (klass, obj->vtable->klass))
5000                         return obj;
5001         } else {
5002                 MonoClass *oklass = vt->klass;
5003                 if ((oklass == mono_defaults.transparent_proxy_class))
5004                         oklass = ((MonoTransparentProxy *)obj)->remote_class->proxy_class;
5005         
5006                 if ((oklass->idepth >= klass->idepth) && (oklass->supertypes [klass->idepth - 1] == klass))
5007                         return obj;
5008         }
5009
5010         if (vt->klass == mono_defaults.transparent_proxy_class && ((MonoTransparentProxy *)obj)->custom_type_info) 
5011         {
5012                 MonoDomain *domain = mono_domain_get ();
5013                 MonoObject *res;
5014                 MonoObject *rp = (MonoObject *)((MonoTransparentProxy *)obj)->rp;
5015                 MonoClass *rpklass = mono_defaults.iremotingtypeinfo_class;
5016                 MonoMethod *im = NULL;
5017                 gpointer pa [2];
5018
5019                 im = mono_class_get_method_from_name (rpklass, "CanCastTo", -1);
5020                 im = mono_object_get_virtual_method (rp, im);
5021                 g_assert (im);
5022         
5023                 pa [0] = mono_type_get_object (domain, &klass->byval_arg);
5024                 pa [1] = obj;
5025
5026                 res = mono_runtime_invoke (im, rp, pa, NULL);
5027         
5028                 if (*(MonoBoolean *) mono_object_unbox(res)) {
5029                         /* Update the vtable of the remote type, so it can safely cast to this new type */
5030                         mono_upgrade_remote_class (domain, obj, klass);
5031                         return obj;
5032                 }
5033         }
5034
5035         return NULL;
5036 }
5037
5038 /**
5039  * mono_object_castclass_mbyref:
5040  * @obj: an object
5041  * @klass: a pointer to a class 
5042  *
5043  * Returns: @obj if @obj is derived from @klass, throws an exception otherwise
5044  */
5045 MonoObject *
5046 mono_object_castclass_mbyref (MonoObject *obj, MonoClass *klass)
5047 {
5048         if (!obj) return NULL;
5049         if (mono_object_isinst_mbyref (obj, klass)) return obj;
5050                 
5051         mono_raise_exception (mono_exception_from_name (mono_defaults.corlib,
5052                                                         "System",
5053                                                         "InvalidCastException"));
5054         return NULL;
5055 }
5056
5057 typedef struct {
5058         MonoDomain *orig_domain;
5059         MonoString *ins;
5060         MonoString *res;
5061 } LDStrInfo;
5062
5063 static void
5064 str_lookup (MonoDomain *domain, gpointer user_data)
5065 {
5066         LDStrInfo *info = user_data;
5067         if (info->res || domain == info->orig_domain)
5068                 return;
5069         info->res = mono_g_hash_table_lookup (domain->ldstr_table, info->ins);
5070 }
5071
5072 #ifdef HAVE_SGEN_GC
5073
5074 static MonoString*
5075 mono_string_get_pinned (MonoString *str)
5076 {
5077         int size;
5078         MonoString *news;
5079         size = sizeof (MonoString) + 2 * (mono_string_length (str) + 1);
5080         news = mono_gc_alloc_pinned_obj (((MonoObject*)str)->vtable, size);
5081         memcpy (mono_string_chars (news), mono_string_chars (str), mono_string_length (str) * 2);
5082         news->length = mono_string_length (str);
5083         return news;
5084 }
5085
5086 #else
5087 #define mono_string_get_pinned(str) (str)
5088 #endif
5089
5090 static MonoString*
5091 mono_string_is_interned_lookup (MonoString *str, int insert)
5092 {
5093         MonoGHashTable *ldstr_table;
5094         MonoString *res;
5095         MonoDomain *domain;
5096         
5097         domain = ((MonoObject *)str)->vtable->domain;
5098         ldstr_table = domain->ldstr_table;
5099         ldstr_lock ();
5100         if ((res = mono_g_hash_table_lookup (ldstr_table, str))) {
5101                 ldstr_unlock ();
5102                 return res;
5103         }
5104         if (insert) {
5105                 str = mono_string_get_pinned (str);
5106                 mono_g_hash_table_insert (ldstr_table, str, str);
5107                 ldstr_unlock ();
5108                 return str;
5109         } else {
5110                 LDStrInfo ldstr_info;
5111                 ldstr_info.orig_domain = domain;
5112                 ldstr_info.ins = str;
5113                 ldstr_info.res = NULL;
5114
5115                 mono_domain_foreach (str_lookup, &ldstr_info);
5116                 if (ldstr_info.res) {
5117                         /* 
5118                          * the string was already interned in some other domain:
5119                          * intern it in the current one as well.
5120                          */
5121                         mono_g_hash_table_insert (ldstr_table, str, str);
5122                         ldstr_unlock ();
5123                         return str;
5124                 }
5125         }
5126         ldstr_unlock ();
5127         return NULL;
5128 }
5129
5130 /**
5131  * mono_string_is_interned:
5132  * @o: String to probe
5133  *
5134  * Returns whether the string has been interned.
5135  */
5136 MonoString*
5137 mono_string_is_interned (MonoString *o)
5138 {
5139         return mono_string_is_interned_lookup (o, FALSE);
5140 }
5141
5142 /**
5143  * mono_string_intern:
5144  * @o: String to intern
5145  *
5146  * Interns the string passed.  
5147  * Returns: The interned string.
5148  */
5149 MonoString*
5150 mono_string_intern (MonoString *str)
5151 {
5152         return mono_string_is_interned_lookup (str, TRUE);
5153 }
5154
5155 /**
5156  * mono_ldstr:
5157  * @domain: the domain where the string will be used.
5158  * @image: a metadata context
5159  * @idx: index into the user string table.
5160  * 
5161  * Implementation for the ldstr opcode.
5162  * Returns: a loaded string from the @image/@idx combination.
5163  */
5164 MonoString*
5165 mono_ldstr (MonoDomain *domain, MonoImage *image, guint32 idx)
5166 {
5167         MONO_ARCH_SAVE_REGS;
5168
5169         if (image->dynamic) {
5170                 MonoString *str = mono_lookup_dynamic_token (image, MONO_TOKEN_STRING | idx, NULL);
5171                 return str;
5172         } else {
5173                 if (!mono_verifier_verify_string_signature (image, idx, NULL))
5174                         return NULL; /*FIXME we should probably be raising an exception here*/
5175                 return mono_ldstr_metadata_sig (domain, mono_metadata_user_string (image, idx));
5176         }
5177 }
5178
5179 /**
5180  * mono_ldstr_metadata_sig
5181  * @domain: the domain for the string
5182  * @sig: the signature of a metadata string
5183  *
5184  * Returns: a MonoString for a string stored in the metadata
5185  */
5186 static MonoString*
5187 mono_ldstr_metadata_sig (MonoDomain *domain, const char* sig)
5188 {
5189         const char *str = sig;
5190         MonoString *o, *interned;
5191         size_t len2;
5192
5193         len2 = mono_metadata_decode_blob_size (str, &str);
5194         len2 >>= 1;
5195
5196         o = mono_string_new_utf16 (domain, (guint16*)str, len2);
5197 #if G_BYTE_ORDER != G_LITTLE_ENDIAN
5198         {
5199                 int i;
5200                 guint16 *p2 = (guint16*)mono_string_chars (o);
5201                 for (i = 0; i < len2; ++i) {
5202                         *p2 = GUINT16_FROM_LE (*p2);
5203                         ++p2;
5204                 }
5205         }
5206 #endif
5207         ldstr_lock ();
5208         if ((interned = mono_g_hash_table_lookup (domain->ldstr_table, o))) {
5209                 ldstr_unlock ();
5210                 /* o will get garbage collected */
5211                 return interned;
5212         }
5213
5214         o = mono_string_get_pinned (o);
5215         mono_g_hash_table_insert (domain->ldstr_table, o, o);
5216         ldstr_unlock ();
5217
5218         return o;
5219 }
5220
5221 /**
5222  * mono_string_to_utf8:
5223  * @s: a System.String
5224  *
5225  * Return the UTF8 representation for @s.
5226  * the resulting buffer nedds to be freed with g_free().
5227  *
5228  * @deprecated Use mono_string_to_utf8_checked to avoid having an exception arbritraly raised.
5229  */
5230 char *
5231 mono_string_to_utf8 (MonoString *s)
5232 {
5233         MonoError error;
5234         char *result = mono_string_to_utf8_checked (s, &error);
5235         
5236         if (!mono_error_ok (&error))
5237                 mono_error_raise_exception (&error);
5238         return result;
5239 }
5240
5241 char *
5242 mono_string_to_utf8_checked (MonoString *s, MonoError *error)
5243 {
5244         long written = 0;
5245         char *as;
5246         GError *gerror = NULL;
5247
5248         mono_error_init (error);
5249
5250         if (s == NULL)
5251                 return NULL;
5252
5253         if (!s->length)
5254                 return g_strdup ("");
5255
5256         as = g_utf16_to_utf8 (mono_string_chars (s), s->length, NULL, &written, &gerror);
5257         if (gerror) {
5258                 mono_error_set_argument (error, "string", "%s", gerror->message);
5259                 g_error_free (gerror);
5260                 return NULL;
5261         }
5262         /* g_utf16_to_utf8  may not be able to complete the convertion (e.g. NULL values were found, #335488) */
5263         if (s->length > written) {
5264                 /* allocate the total length and copy the part of the string that has been converted */
5265                 char *as2 = g_malloc0 (s->length);
5266                 memcpy (as2, as, written);
5267                 g_free (as);
5268                 as = as2;
5269         }
5270
5271         return as;
5272 }
5273
5274 /**
5275  * mono_string_to_utf16:
5276  * @s: a MonoString
5277  *
5278  * Return an null-terminated array of the utf-16 chars
5279  * contained in @s. The result must be freed with g_free().
5280  * This is a temporary helper until our string implementation
5281  * is reworked to always include the null terminating char.
5282  */
5283 mono_unichar2*
5284 mono_string_to_utf16 (MonoString *s)
5285 {
5286         char *as;
5287
5288         if (s == NULL)
5289                 return NULL;
5290
5291         as = g_malloc ((s->length * 2) + 2);
5292         as [(s->length * 2)] = '\0';
5293         as [(s->length * 2) + 1] = '\0';
5294
5295         if (!s->length) {
5296                 return (gunichar2 *)(as);
5297         }
5298         
5299         memcpy (as, mono_string_chars(s), s->length * 2);
5300         return (gunichar2 *)(as);
5301 }
5302
5303 /**
5304  * mono_string_from_utf16:
5305  * @data: the UTF16 string (LPWSTR) to convert
5306  *
5307  * Converts a NULL terminated UTF16 string (LPWSTR) to a MonoString.
5308  *
5309  * Returns: a MonoString.
5310  */
5311 MonoString *
5312 mono_string_from_utf16 (gunichar2 *data)
5313 {
5314         MonoDomain *domain = mono_domain_get ();
5315         int len = 0;
5316
5317         if (!data)
5318                 return NULL;
5319
5320         while (data [len]) len++;
5321
5322         return mono_string_new_utf16 (domain, data, len);
5323 }
5324
5325
5326 static char *
5327 mono_string_to_utf8_internal (MonoMemPool *mp, MonoImage *image, MonoString *s, MonoError *error)
5328 {
5329         char *r;
5330         char *mp_s;
5331         int len;
5332
5333         r = mono_string_to_utf8_checked (s, error);
5334         if (!mono_error_ok (error))
5335                 return NULL;
5336
5337         if (!mp && !image)
5338                 return r;
5339
5340         len = strlen (r) + 1;
5341         if (mp)
5342                 mp_s = mono_mempool_alloc (mp, len);
5343         else
5344                 mp_s = mono_image_alloc (image, len);
5345
5346         memcpy (mp_s, r, len);
5347
5348         g_free (r);
5349
5350         return mp_s;
5351 }
5352
5353 /**
5354  * mono_string_to_utf8_image:
5355  * @s: a System.String
5356  *
5357  * Same as mono_string_to_utf8, but allocate the string from the image mempool.
5358  */
5359 char *
5360 mono_string_to_utf8_image (MonoImage *image, MonoString *s, MonoError *error)
5361 {
5362         return mono_string_to_utf8_internal (NULL, image, s, error);
5363 }
5364
5365 /**
5366  * mono_string_to_utf8_mp:
5367  * @s: a System.String
5368  *
5369  * Same as mono_string_to_utf8, but allocate the string from a mempool.
5370  */
5371 char *
5372 mono_string_to_utf8_mp (MonoMemPool *mp, MonoString *s, MonoError *error)
5373 {
5374         return mono_string_to_utf8_internal (mp, NULL, s, error);
5375 }
5376
5377 static void
5378 default_ex_handler (MonoException *ex)
5379 {
5380         MonoObject *o = (MonoObject*)ex;
5381         g_error ("Exception %s.%s raised in C code", o->vtable->klass->name_space, o->vtable->klass->name);
5382         exit (1);
5383 }
5384
5385 static MonoExceptionFunc ex_handler = default_ex_handler;
5386
5387 /**
5388  * mono_install_handler:
5389  * @func: exception handler
5390  *
5391  * This is an internal JIT routine used to install the handler for exceptions
5392  * being throwh.
5393  */
5394 void
5395 mono_install_handler (MonoExceptionFunc func)
5396 {
5397         ex_handler = func? func: default_ex_handler;
5398 }
5399
5400 /**
5401  * mono_raise_exception:
5402  * @ex: exception object
5403  *
5404  * Signal the runtime that the exception @ex has been raised in unmanaged code.
5405  */
5406 void
5407 mono_raise_exception (MonoException *ex) 
5408 {
5409         /*
5410          * NOTE: Do NOT annotate this function with G_GNUC_NORETURN, since
5411          * that will cause gcc to omit the function epilog, causing problems when
5412          * the JIT tries to walk the stack, since the return address on the stack
5413          * will point into the next function in the executable, not this one.
5414          */
5415
5416         if (((MonoObject*)ex)->vtable->klass == mono_defaults.threadabortexception_class) {
5417                 MonoInternalThread *thread = mono_thread_internal_current ();
5418                 g_assert (ex->object.vtable->domain == mono_domain_get ());
5419                 MONO_OBJECT_SETREF (thread, abort_exc, ex);
5420         }
5421         
5422         ex_handler (ex);
5423 }
5424
5425 /**
5426  * mono_wait_handle_new:
5427  * @domain: Domain where the object will be created
5428  * @handle: Handle for the wait handle
5429  *
5430  * Returns: A new MonoWaitHandle created in the given domain for the given handle
5431  */
5432 MonoWaitHandle *
5433 mono_wait_handle_new (MonoDomain *domain, HANDLE handle)
5434 {
5435         MonoWaitHandle *res;
5436         gpointer params [1];
5437         static MonoMethod *handle_set;
5438
5439         res = (MonoWaitHandle *)mono_object_new (domain, mono_defaults.manualresetevent_class);
5440
5441         /* Even though this method is virtual, it's safe to invoke directly, since the object type matches.  */
5442         if (!handle_set)
5443                 handle_set = mono_class_get_property_from_name (mono_defaults.manualresetevent_class, "Handle")->set;
5444
5445         params [0] = &handle;
5446         mono_runtime_invoke (handle_set, res, params, NULL);
5447
5448         return res;
5449 }
5450
5451 HANDLE
5452 mono_wait_handle_get_handle (MonoWaitHandle *handle)
5453 {
5454         static MonoClassField *f_os_handle;
5455         static MonoClassField *f_safe_handle;
5456
5457         if (!f_os_handle && !f_safe_handle) {
5458                 f_os_handle = mono_class_get_field_from_name (mono_defaults.manualresetevent_class, "os_handle");
5459                 f_safe_handle = mono_class_get_field_from_name (mono_defaults.manualresetevent_class, "safe_wait_handle");
5460         }
5461
5462         if (f_os_handle) {
5463                 HANDLE retval;
5464                 mono_field_get_value ((MonoObject*)handle, f_os_handle, &retval);
5465                 return retval;
5466         } else {
5467                 MonoSafeHandle *sh;
5468                 mono_field_get_value ((MonoObject*)handle, f_safe_handle, &sh);
5469                 return sh->handle;
5470         }
5471 }
5472
5473
5474 static MonoObject*
5475 mono_runtime_capture_context (MonoDomain *domain)
5476 {
5477         RuntimeInvokeFunction runtime_invoke;
5478
5479         if (!domain->capture_context_runtime_invoke || !domain->capture_context_method) {
5480                 MonoMethod *method = mono_get_context_capture_method ();
5481                 MonoMethod *wrapper;
5482                 if (!method)
5483                         return NULL;
5484                 wrapper = mono_marshal_get_runtime_invoke (method, FALSE);
5485                 domain->capture_context_runtime_invoke = mono_compile_method (wrapper);
5486                 domain->capture_context_method = mono_compile_method (method);
5487         }
5488
5489         runtime_invoke = domain->capture_context_runtime_invoke;
5490
5491         return runtime_invoke (NULL, NULL, NULL, domain->capture_context_method);
5492 }
5493 /**
5494  * mono_async_result_new:
5495  * @domain:domain where the object will be created.
5496  * @handle: wait handle.
5497  * @state: state to pass to AsyncResult
5498  * @data: C closure data.
5499  *
5500  * Creates a new MonoAsyncResult (AsyncResult C# class) in the given domain.
5501  * If the handle is not null, the handle is initialized to a MonOWaitHandle.
5502  *
5503  */
5504 MonoAsyncResult *
5505 mono_async_result_new (MonoDomain *domain, HANDLE handle, MonoObject *state, gpointer data, MonoObject *object_data)
5506 {
5507         MonoAsyncResult *res = (MonoAsyncResult *)mono_object_new (domain, mono_defaults.asyncresult_class);
5508         MonoObject *context = mono_runtime_capture_context (domain);
5509         /* we must capture the execution context from the original thread */
5510         if (context) {
5511                 MONO_OBJECT_SETREF (res, execution_context, context);
5512                 /* note: result may be null if the flow is suppressed */
5513         }
5514
5515         res->data = data;
5516         MONO_OBJECT_SETREF (res, object_data, object_data);
5517         MONO_OBJECT_SETREF (res, async_state, state);
5518         if (handle != NULL)
5519                 MONO_OBJECT_SETREF (res, handle, (MonoObject *) mono_wait_handle_new (domain, handle));
5520
5521         res->sync_completed = FALSE;
5522         res->completed = FALSE;
5523
5524         return res;
5525 }
5526
5527 void
5528 mono_message_init (MonoDomain *domain,
5529                    MonoMethodMessage *this, 
5530                    MonoReflectionMethod *method,
5531                    MonoArray *out_args)
5532 {
5533         static MonoClass *object_array_klass;
5534         static MonoClass *byte_array_klass;
5535         static MonoClass *string_array_klass;
5536         MonoMethodSignature *sig = mono_method_signature (method->method);
5537         MonoString *name;
5538         int i, j;
5539         char **names;
5540         guint8 arg_type;
5541
5542         if (!object_array_klass) {
5543                 MonoClass *klass;
5544
5545                 klass = mono_array_class_get (mono_defaults.object_class, 1);
5546                 g_assert (klass);
5547
5548                 mono_memory_barrier ();
5549                 object_array_klass = klass;
5550
5551                 klass = mono_array_class_get (mono_defaults.byte_class, 1);
5552                 g_assert (klass);
5553
5554                 mono_memory_barrier ();
5555                 byte_array_klass = klass;
5556
5557                 klass = mono_array_class_get (mono_defaults.string_class, 1);
5558                 g_assert (klass);
5559
5560                 mono_memory_barrier ();
5561                 string_array_klass = klass;
5562         }
5563
5564         MONO_OBJECT_SETREF (this, method, method);
5565
5566         MONO_OBJECT_SETREF (this, args, mono_array_new_specific (mono_class_vtable (domain, object_array_klass), sig->param_count));
5567         MONO_OBJECT_SETREF (this, arg_types, mono_array_new_specific (mono_class_vtable (domain, byte_array_klass), sig->param_count));
5568         this->async_result = NULL;
5569         this->call_type = CallType_Sync;
5570
5571         names = g_new (char *, sig->param_count);
5572         mono_method_get_param_names (method->method, (const char **) names);
5573         MONO_OBJECT_SETREF (this, names, mono_array_new_specific (mono_class_vtable (domain, string_array_klass), sig->param_count));
5574         
5575         for (i = 0; i < sig->param_count; i++) {
5576                 name = mono_string_new (domain, names [i]);
5577                 mono_array_setref (this->names, i, name);       
5578         }
5579
5580         g_free (names);
5581         for (i = 0, j = 0; i < sig->param_count; i++) {
5582                 if (sig->params [i]->byref) {
5583                         if (out_args) {
5584                                 MonoObject* arg = mono_array_get (out_args, gpointer, j);
5585                                 mono_array_setref (this->args, i, arg);
5586                                 j++;
5587                         }
5588                         arg_type = 2;
5589                         if (!(sig->params [i]->attrs & PARAM_ATTRIBUTE_OUT))
5590                                 arg_type |= 1;
5591                 } else {
5592                         arg_type = 1;
5593                         if (sig->params [i]->attrs & PARAM_ATTRIBUTE_OUT)
5594                                 arg_type |= 4;
5595                 }
5596                 mono_array_set (this->arg_types, guint8, i, arg_type);
5597         }
5598 }
5599
5600 /**
5601  * mono_remoting_invoke:
5602  * @real_proxy: pointer to a RealProxy object
5603  * @msg: The MonoMethodMessage to execute
5604  * @exc: used to store exceptions
5605  * @out_args: used to store output arguments
5606  *
5607  * This is used to call RealProxy::Invoke(). RealProxy::Invoke() returns an
5608  * IMessage interface and it is not trivial to extract results from there. So
5609  * we call an helper method PrivateInvoke instead of calling
5610  * RealProxy::Invoke() directly.
5611  *
5612  * Returns: the result object.
5613  */
5614 MonoObject *
5615 mono_remoting_invoke (MonoObject *real_proxy, MonoMethodMessage *msg, 
5616                       MonoObject **exc, MonoArray **out_args)
5617 {
5618         MonoMethod *im = real_proxy->vtable->domain->private_invoke_method;
5619         gpointer pa [4];
5620
5621         /*static MonoObject *(*invoke) (gpointer, gpointer, MonoObject **, MonoArray **) = NULL;*/
5622
5623         if (!im) {
5624                 im = mono_class_get_method_from_name (mono_defaults.real_proxy_class, "PrivateInvoke", 4);
5625                 g_assert (im);
5626                 real_proxy->vtable->domain->private_invoke_method = im;
5627         }
5628
5629         pa [0] = real_proxy;
5630         pa [1] = msg;
5631         pa [2] = exc;
5632         pa [3] = out_args;
5633
5634         return mono_runtime_invoke (im, NULL, pa, exc);
5635 }
5636
5637 MonoObject *
5638 mono_message_invoke (MonoObject *target, MonoMethodMessage *msg, 
5639                      MonoObject **exc, MonoArray **out_args) 
5640 {
5641         static MonoClass *object_array_klass;
5642         MonoDomain *domain; 
5643         MonoMethod *method;
5644         MonoMethodSignature *sig;
5645         MonoObject *ret;
5646         int i, j, outarg_count = 0;
5647
5648         if (target && target->vtable->klass == mono_defaults.transparent_proxy_class) {
5649
5650                 MonoTransparentProxy* tp = (MonoTransparentProxy *)target;
5651                 if (tp->remote_class->proxy_class->contextbound && tp->rp->context == (MonoObject *) mono_context_get ()) {
5652                         target = tp->rp->unwrapped_server;
5653                 } else {
5654                         return mono_remoting_invoke ((MonoObject *)tp->rp, msg, exc, out_args);
5655                 }
5656         }
5657
5658         domain = mono_domain_get (); 
5659         method = msg->method->method;
5660         sig = mono_method_signature (method);
5661
5662         for (i = 0; i < sig->param_count; i++) {
5663                 if (sig->params [i]->byref) 
5664                         outarg_count++;
5665         }
5666
5667         if (!object_array_klass) {
5668                 MonoClass *klass;
5669
5670                 klass = mono_array_class_get (mono_defaults.object_class, 1);
5671                 g_assert (klass);
5672
5673                 mono_memory_barrier ();
5674                 object_array_klass = klass;
5675         }
5676
5677         /* FIXME: GC ensure we insert a write barrier for out_args, maybe in the caller? */
5678         *out_args = mono_array_new_specific (mono_class_vtable (domain, object_array_klass), outarg_count);
5679         *exc = NULL;
5680
5681         ret = mono_runtime_invoke_array (method, method->klass->valuetype? mono_object_unbox (target): target, msg->args, exc);
5682
5683         for (i = 0, j = 0; i < sig->param_count; i++) {
5684                 if (sig->params [i]->byref) {
5685                         MonoObject* arg;
5686                         arg = mono_array_get (msg->args, gpointer, i);
5687                         mono_array_setref (*out_args, j, arg);
5688                         j++;
5689                 }
5690         }
5691
5692         return ret;
5693 }
5694
5695 /**
5696  * mono_print_unhandled_exception:
5697  * @exc: The exception
5698  *
5699  * Prints the unhandled exception.
5700  */
5701 void
5702 mono_print_unhandled_exception (MonoObject *exc)
5703 {
5704         MonoError error;
5705         char *message = (char *) "";
5706         MonoString *str; 
5707         MonoMethod *method;
5708         MonoClass *klass;
5709         gboolean free_message = FALSE;
5710
5711         if (mono_object_isinst (exc, mono_defaults.exception_class)) {
5712                 klass = exc->vtable->klass;
5713                 method = NULL;
5714                 while (klass && method == NULL) {
5715                         method = mono_class_get_method_from_name_flags (klass, "ToString", 0, METHOD_ATTRIBUTE_VIRTUAL | METHOD_ATTRIBUTE_PUBLIC);
5716                         if (method == NULL)
5717                                 klass = klass->parent;
5718                 }
5719
5720                 g_assert (method);
5721
5722                 str = (MonoString *) mono_runtime_invoke (method, exc, NULL, NULL);
5723                 if (str) {
5724                         message = mono_string_to_utf8_checked (str, &error);
5725                         if (!mono_error_ok (&error)) {
5726                                 mono_error_cleanup (&error);
5727                                 message = (char *)"";
5728                         } else {
5729                                 free_message = TRUE;
5730                         }
5731                 }
5732         }                               
5733
5734         /*
5735          * g_printerr ("\nUnhandled Exception: %s.%s: %s\n", exc->vtable->klass->name_space, 
5736          *         exc->vtable->klass->name, message);
5737          */
5738         g_printerr ("\nUnhandled Exception: %s\n", message);
5739         
5740         if (free_message)
5741                 g_free (message);
5742 }
5743
5744 /**
5745  * mono_delegate_ctor:
5746  * @this: pointer to an uninitialized delegate object
5747  * @target: target object
5748  * @addr: pointer to native code
5749  * @method: method
5750  *
5751  * Initialize a delegate and sets a specific method, not the one
5752  * associated with addr.  This is useful when sharing generic code.
5753  * In that case addr will most probably not be associated with the
5754  * correct instantiation of the method.
5755  */
5756 void
5757 mono_delegate_ctor_with_method (MonoObject *this, MonoObject *target, gpointer addr, MonoMethod *method)
5758 {
5759         MonoDelegate *delegate = (MonoDelegate *)this;
5760         MonoClass *class;
5761
5762         g_assert (this);
5763         g_assert (addr);
5764
5765         if (method)
5766                 delegate->method = method;
5767
5768         class = this->vtable->klass;
5769         mono_stats.delegate_creations++;
5770
5771         if (target && target->vtable->klass == mono_defaults.transparent_proxy_class) {
5772                 g_assert (method);
5773                 method = mono_marshal_get_remoting_invoke (method);
5774                 delegate->method_ptr = mono_compile_method (method);
5775                 MONO_OBJECT_SETREF (delegate, target, target);
5776         } else if (method && mono_method_signature (method)->hasthis && method->klass->valuetype) {
5777                 method = mono_marshal_get_unbox_wrapper (method);
5778                 delegate->method_ptr = mono_compile_method (method);
5779                 MONO_OBJECT_SETREF (delegate, target, target);
5780         } else {
5781                 delegate->method_ptr = addr;
5782                 MONO_OBJECT_SETREF (delegate, target, target);
5783         }
5784
5785         delegate->invoke_impl = arch_create_delegate_trampoline (delegate->object.vtable->klass);
5786 }
5787
5788 /**
5789  * mono_delegate_ctor:
5790  * @this: pointer to an uninitialized delegate object
5791  * @target: target object
5792  * @addr: pointer to native code
5793  *
5794  * This is used to initialize a delegate.
5795  */
5796 void
5797 mono_delegate_ctor (MonoObject *this, MonoObject *target, gpointer addr)
5798 {
5799         MonoDomain *domain = mono_domain_get ();
5800         MonoJitInfo *ji;
5801         MonoMethod *method = NULL;
5802
5803         g_assert (addr);
5804
5805         if ((ji = mono_jit_info_table_find (domain, mono_get_addr_from_ftnptr (addr)))) {
5806                 method = ji->method;
5807                 g_assert (!method->klass->generic_container);
5808         }
5809
5810         mono_delegate_ctor_with_method (this, target, addr, method);
5811 }
5812
5813 /**
5814  * mono_method_call_message_new:
5815  * @method: method to encapsulate
5816  * @params: parameters to the method
5817  * @invoke: optional, delegate invoke.
5818  * @cb: async callback delegate.
5819  * @state: state passed to the async callback.
5820  *
5821  * Translates arguments pointers into a MonoMethodMessage.
5822  */
5823 MonoMethodMessage *
5824 mono_method_call_message_new (MonoMethod *method, gpointer *params, MonoMethod *invoke, 
5825                               MonoDelegate **cb, MonoObject **state)
5826 {
5827         MonoDomain *domain = mono_domain_get ();
5828         MonoMethodSignature *sig = mono_method_signature (method);
5829         MonoMethodMessage *msg;
5830         int i, count, type;
5831
5832         msg = (MonoMethodMessage *)mono_object_new (domain, mono_defaults.mono_method_message_class); 
5833         
5834         if (invoke) {
5835                 mono_message_init (domain, msg, mono_method_get_object (domain, invoke, NULL), NULL);
5836                 count =  sig->param_count - 2;
5837         } else {
5838                 mono_message_init (domain, msg, mono_method_get_object (domain, method, NULL), NULL);
5839                 count =  sig->param_count;
5840         }
5841
5842         for (i = 0; i < count; i++) {
5843                 gpointer vpos;
5844                 MonoClass *class;
5845                 MonoObject *arg;
5846
5847                 if (sig->params [i]->byref)
5848                         vpos = *((gpointer *)params [i]);
5849                 else 
5850                         vpos = params [i];
5851
5852                 type = sig->params [i]->type;
5853                 class = mono_class_from_mono_type (sig->params [i]);
5854
5855                 if (class->valuetype)
5856                         arg = mono_value_box (domain, class, vpos);
5857                 else 
5858                         arg = *((MonoObject **)vpos);
5859                       
5860                 mono_array_setref (msg->args, i, arg);
5861         }
5862
5863         if (cb != NULL && state != NULL) {
5864                 *cb = *((MonoDelegate **)params [i]);
5865                 i++;
5866                 *state = *((MonoObject **)params [i]);
5867         }
5868
5869         return msg;
5870 }
5871
5872 /**
5873  * mono_method_return_message_restore:
5874  *
5875  * Restore results from message based processing back to arguments pointers
5876  */
5877 void
5878 mono_method_return_message_restore (MonoMethod *method, gpointer *params, MonoArray *out_args)
5879 {
5880         MonoMethodSignature *sig = mono_method_signature (method);
5881         int i, j, type, size, out_len;
5882         
5883         if (out_args == NULL)
5884                 return;
5885         out_len = mono_array_length (out_args);
5886         if (out_len == 0)
5887                 return;
5888
5889         for (i = 0, j = 0; i < sig->param_count; i++) {
5890                 MonoType *pt = sig->params [i];
5891
5892                 if (pt->byref) {
5893                         char *arg;
5894                         if (j >= out_len)
5895                                 mono_raise_exception (mono_get_exception_execution_engine ("The proxy call returned an incorrect number of output arguments"));
5896
5897                         arg = mono_array_get (out_args, gpointer, j);
5898                         type = pt->type;
5899
5900                         g_assert (type != MONO_TYPE_VOID);
5901
5902                         if (MONO_TYPE_IS_REFERENCE (pt)) {
5903                                 mono_gc_wbarrier_generic_store (*((MonoObject ***)params [i]), (MonoObject *)arg);
5904                         } else {
5905                                 if (arg) {
5906                                         MonoClass *class = ((MonoObject*)arg)->vtable->klass;
5907                                         size = mono_class_value_size (class, NULL);
5908                                         if (class->has_references)
5909                                                 mono_gc_wbarrier_value_copy (*((gpointer *)params [i]), arg + sizeof (MonoObject), 1, class);
5910                                         else
5911                                                 memcpy (*((gpointer *)params [i]), arg + sizeof (MonoObject), size);
5912                                 } else {
5913                                         size = mono_class_value_size (mono_class_from_mono_type (pt), NULL);
5914                                         memset (*((gpointer *)params [i]), 0, size);
5915                                 }
5916                         }
5917
5918                         j++;
5919                 }
5920         }
5921 }
5922
5923 /**
5924  * mono_load_remote_field:
5925  * @this: pointer to an object
5926  * @klass: klass of the object containing @field
5927  * @field: the field to load
5928  * @res: a storage to store the result
5929  *
5930  * This method is called by the runtime on attempts to load fields of
5931  * transparent proxy objects. @this points to such TP, @klass is the class of
5932  * the object containing @field. @res is a storage location which can be
5933  * used to store the result.
5934  *
5935  * Returns: an address pointing to the value of field.
5936  */
5937 gpointer
5938 mono_load_remote_field (MonoObject *this, MonoClass *klass, MonoClassField *field, gpointer *res)
5939 {
5940         static MonoMethod *getter = NULL;
5941         MonoDomain *domain = mono_domain_get ();
5942         MonoTransparentProxy *tp = (MonoTransparentProxy *) this;
5943         MonoClass *field_class;
5944         MonoMethodMessage *msg;
5945         MonoArray *out_args;
5946         MonoObject *exc;
5947         char* full_name;
5948
5949         g_assert (this->vtable->klass == mono_defaults.transparent_proxy_class);
5950         g_assert (res != NULL);
5951
5952         if (tp->remote_class->proxy_class->contextbound && tp->rp->context == (MonoObject *) mono_context_get ()) {
5953                 mono_field_get_value (tp->rp->unwrapped_server, field, res);
5954                 return res;
5955         }
5956         
5957         if (!getter) {
5958                 getter = mono_class_get_method_from_name (mono_defaults.object_class, "FieldGetter", -1);
5959                 g_assert (getter);
5960         }
5961         
5962         field_class = mono_class_from_mono_type (field->type);
5963
5964         msg = (MonoMethodMessage *)mono_object_new (domain, mono_defaults.mono_method_message_class);
5965         out_args = mono_array_new (domain, mono_defaults.object_class, 1);
5966         mono_message_init (domain, msg, mono_method_get_object (domain, getter, NULL), out_args);
5967
5968         full_name = mono_type_get_full_name (klass);
5969         mono_array_setref (msg->args, 0, mono_string_new (domain, full_name));
5970         mono_array_setref (msg->args, 1, mono_string_new (domain, mono_field_get_name (field)));
5971         g_free (full_name);
5972
5973         mono_remoting_invoke ((MonoObject *)(tp->rp), msg, &exc, &out_args);
5974
5975         if (exc) mono_raise_exception ((MonoException *)exc);
5976
5977         if (mono_array_length (out_args) == 0)
5978                 return NULL;
5979
5980         *res = mono_array_get (out_args, MonoObject *, 0); /* FIXME: GC write abrrier for res */
5981
5982         if (field_class->valuetype) {
5983                 return ((char *)*res) + sizeof (MonoObject);
5984         } else
5985                 return res;
5986 }
5987
5988 /**
5989  * mono_load_remote_field_new:
5990  * @this: 
5991  * @klass: 
5992  * @field:
5993  *
5994  * Missing documentation.
5995  */
5996 MonoObject *
5997 mono_load_remote_field_new (MonoObject *this, MonoClass *klass, MonoClassField *field)
5998 {
5999         static MonoMethod *getter = NULL;
6000         MonoDomain *domain = mono_domain_get ();
6001         MonoTransparentProxy *tp = (MonoTransparentProxy *) this;
6002         MonoClass *field_class;
6003         MonoMethodMessage *msg;
6004         MonoArray *out_args;
6005         MonoObject *exc, *res;
6006         char* full_name;
6007
6008         g_assert (this->vtable->klass == mono_defaults.transparent_proxy_class);
6009
6010         field_class = mono_class_from_mono_type (field->type);
6011
6012         if (tp->remote_class->proxy_class->contextbound && tp->rp->context == (MonoObject *) mono_context_get ()) {
6013                 gpointer val;
6014                 if (field_class->valuetype) {
6015                         res = mono_object_new (domain, field_class);
6016                         val = ((gchar *) res) + sizeof (MonoObject);
6017                 } else {
6018                         val = &res;
6019                 }
6020                 mono_field_get_value (tp->rp->unwrapped_server, field, val);
6021                 return res;
6022         }
6023
6024         if (!getter) {
6025                 getter = mono_class_get_method_from_name (mono_defaults.object_class, "FieldGetter", -1);
6026                 g_assert (getter);
6027         }
6028         
6029         msg = (MonoMethodMessage *)mono_object_new (domain, mono_defaults.mono_method_message_class);
6030         out_args = mono_array_new (domain, mono_defaults.object_class, 1);
6031
6032         mono_message_init (domain, msg, mono_method_get_object (domain, getter, NULL), out_args);
6033
6034         full_name = mono_type_get_full_name (klass);
6035         mono_array_setref (msg->args, 0, mono_string_new (domain, full_name));
6036         mono_array_setref (msg->args, 1, mono_string_new (domain, mono_field_get_name (field)));
6037         g_free (full_name);
6038
6039         mono_remoting_invoke ((MonoObject *)(tp->rp), msg, &exc, &out_args);
6040
6041         if (exc) mono_raise_exception ((MonoException *)exc);
6042
6043         if (mono_array_length (out_args) == 0)
6044                 res = NULL;
6045         else
6046                 res = mono_array_get (out_args, MonoObject *, 0);
6047
6048         return res;
6049 }
6050
6051 /**
6052  * mono_store_remote_field:
6053  * @this: pointer to an object
6054  * @klass: klass of the object containing @field
6055  * @field: the field to load
6056  * @val: the value/object to store
6057  *
6058  * This method is called by the runtime on attempts to store fields of
6059  * transparent proxy objects. @this points to such TP, @klass is the class of
6060  * the object containing @field. @val is the new value to store in @field.
6061  */
6062 void
6063 mono_store_remote_field (MonoObject *this, MonoClass *klass, MonoClassField *field, gpointer val)
6064 {
6065         static MonoMethod *setter = NULL;
6066         MonoDomain *domain = mono_domain_get ();
6067         MonoTransparentProxy *tp = (MonoTransparentProxy *) this;
6068         MonoClass *field_class;
6069         MonoMethodMessage *msg;
6070         MonoArray *out_args;
6071         MonoObject *exc;
6072         MonoObject *arg;
6073         char* full_name;
6074
6075         g_assert (this->vtable->klass == mono_defaults.transparent_proxy_class);
6076
6077         field_class = mono_class_from_mono_type (field->type);
6078
6079         if (tp->remote_class->proxy_class->contextbound && tp->rp->context == (MonoObject *) mono_context_get ()) {
6080                 if (field_class->valuetype) mono_field_set_value (tp->rp->unwrapped_server, field, val);
6081                 else mono_field_set_value (tp->rp->unwrapped_server, field, *((MonoObject **)val));
6082                 return;
6083         }
6084
6085         if (!setter) {
6086                 setter = mono_class_get_method_from_name (mono_defaults.object_class, "FieldSetter", -1);
6087                 g_assert (setter);
6088         }
6089
6090         if (field_class->valuetype)
6091                 arg = mono_value_box (domain, field_class, val);
6092         else 
6093                 arg = *((MonoObject **)val);
6094                 
6095
6096         msg = (MonoMethodMessage *)mono_object_new (domain, mono_defaults.mono_method_message_class);
6097         mono_message_init (domain, msg, mono_method_get_object (domain, setter, NULL), NULL);
6098
6099         full_name = mono_type_get_full_name (klass);
6100         mono_array_setref (msg->args, 0, mono_string_new (domain, full_name));
6101         mono_array_setref (msg->args, 1, mono_string_new (domain, mono_field_get_name (field)));
6102         mono_array_setref (msg->args, 2, arg);
6103         g_free (full_name);
6104
6105         mono_remoting_invoke ((MonoObject *)(tp->rp), msg, &exc, &out_args);
6106
6107         if (exc) mono_raise_exception ((MonoException *)exc);
6108 }
6109
6110 /**
6111  * mono_store_remote_field_new:
6112  * @this:
6113  * @klass:
6114  * @field:
6115  * @arg:
6116  *
6117  * Missing documentation
6118  */
6119 void
6120 mono_store_remote_field_new (MonoObject *this, MonoClass *klass, MonoClassField *field, MonoObject *arg)
6121 {
6122         static MonoMethod *setter = NULL;
6123         MonoDomain *domain = mono_domain_get ();
6124         MonoTransparentProxy *tp = (MonoTransparentProxy *) this;
6125         MonoClass *field_class;
6126         MonoMethodMessage *msg;
6127         MonoArray *out_args;
6128         MonoObject *exc;
6129         char* full_name;
6130
6131         g_assert (this->vtable->klass == mono_defaults.transparent_proxy_class);
6132
6133         field_class = mono_class_from_mono_type (field->type);
6134
6135         if (tp->remote_class->proxy_class->contextbound && tp->rp->context == (MonoObject *) mono_context_get ()) {
6136                 if (field_class->valuetype) mono_field_set_value (tp->rp->unwrapped_server, field, ((gchar *) arg) + sizeof (MonoObject));
6137                 else mono_field_set_value (tp->rp->unwrapped_server, field, arg);
6138                 return;
6139         }
6140
6141         if (!setter) {
6142                 setter = mono_class_get_method_from_name (mono_defaults.object_class, "FieldSetter", -1);
6143                 g_assert (setter);
6144         }
6145
6146         msg = (MonoMethodMessage *)mono_object_new (domain, mono_defaults.mono_method_message_class);
6147         mono_message_init (domain, msg, mono_method_get_object (domain, setter, NULL), NULL);
6148
6149         full_name = mono_type_get_full_name (klass);
6150         mono_array_setref (msg->args, 0, mono_string_new (domain, full_name));
6151         mono_array_setref (msg->args, 1, mono_string_new (domain, mono_field_get_name (field)));
6152         mono_array_setref (msg->args, 2, arg);
6153         g_free (full_name);
6154
6155         mono_remoting_invoke ((MonoObject *)(tp->rp), msg, &exc, &out_args);
6156
6157         if (exc) mono_raise_exception ((MonoException *)exc);
6158 }
6159
6160 /*
6161  * mono_create_ftnptr:
6162  *
6163  *   Given a function address, create a function descriptor for it.
6164  * This is only needed on some platforms.
6165  */
6166 gpointer
6167 mono_create_ftnptr (MonoDomain *domain, gpointer addr)
6168 {
6169         return callbacks.create_ftnptr (domain, addr);
6170 }
6171
6172 /*
6173  * mono_get_addr_from_ftnptr:
6174  *
6175  *   Given a pointer to a function descriptor, return the function address.
6176  * This is only needed on some platforms.
6177  */
6178 gpointer
6179 mono_get_addr_from_ftnptr (gpointer descr)
6180 {
6181         return callbacks.get_addr_from_ftnptr (descr);
6182 }       
6183
6184 /**
6185  * mono_string_chars:
6186  * @s: a MonoString
6187  *
6188  * Returns a pointer to the UCS16 characters stored in the MonoString
6189  */
6190 gunichar2 *
6191 mono_string_chars (MonoString *s)
6192 {
6193         return s->chars;
6194 }
6195
6196 /**
6197  * mono_string_length:
6198  * @s: MonoString
6199  *
6200  * Returns the lenght in characters of the string
6201  */
6202 int
6203 mono_string_length (MonoString *s)
6204 {
6205         return s->length;
6206 }
6207
6208 /**
6209  * mono_array_length:
6210  * @array: a MonoArray*
6211  *
6212  * Returns the total number of elements in the array. This works for
6213  * both vectors and multidimensional arrays.
6214  */
6215 uintptr_t
6216 mono_array_length (MonoArray *array)
6217 {
6218         return array->max_length;
6219 }
6220
6221 /**
6222  * mono_array_addr_with_size:
6223  * @array: a MonoArray*
6224  * @size: size of the array elements
6225  * @idx: index into the array
6226  *
6227  * Returns the address of the @idx element in the array.
6228  */
6229 char*
6230 mono_array_addr_with_size (MonoArray *array, int size, uintptr_t idx)
6231 {
6232         return ((char*)(array)->vector) + size * idx;
6233 }
6234