2004-09-22 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mono / metadata / icall.c
1 /*
2  * icall.c:
3  *
4  * Authors:
5  *   Dietmar Maurer (dietmar@ximian.com)
6  *   Paolo Molaro (lupus@ximian.com)
7  *       Patrik Torstensson (patrik.torstensson@labs2.com)
8  *
9  * (C) 2001 Ximian, Inc.
10  */
11
12 #include <config.h>
13 #include <glib.h>
14 #include <stdarg.h>
15 #include <string.h>
16 #include <ctype.h>
17 #include <sys/time.h>
18 #include <unistd.h>
19 #if defined (PLATFORM_WIN32)
20 #include <stdlib.h>
21 #endif
22
23 #include <mono/metadata/object.h>
24 #include <mono/metadata/threads.h>
25 #include <mono/metadata/threads-types.h>
26 #include <mono/metadata/threadpool.h>
27 #include <mono/metadata/monitor.h>
28 #include <mono/metadata/reflection.h>
29 #include <mono/metadata/assembly.h>
30 #include <mono/metadata/tabledefs.h>
31 #include <mono/metadata/exception.h>
32 #include <mono/metadata/file-io.h>
33 #include <mono/metadata/socket-io.h>
34 #include <mono/metadata/mono-endian.h>
35 #include <mono/metadata/tokentype.h>
36 #include <mono/metadata/unicode.h>
37 #include <mono/metadata/domain-internals.h>
38 #include <mono/metadata/metadata-internals.h>
39 #include <mono/metadata/class-internals.h>
40 #include <mono/metadata/marshal.h>
41 #include <mono/metadata/gc-internal.h>
42 #include <mono/metadata/rand.h>
43 #include <mono/metadata/sysmath.h>
44 #include <mono/metadata/string-icalls.h>
45 #include <mono/metadata/mono-debug-debugger.h>
46 #include <mono/metadata/process.h>
47 #include <mono/metadata/environment.h>
48 #include <mono/metadata/profiler-private.h>
49 #include <mono/metadata/locales.h>
50 #include <mono/metadata/filewatcher.h>
51 #include <mono/metadata/char-conversions.h>
52 #include <mono/metadata/security.h>
53 #include <mono/metadata/mono-config.h>
54 #include <mono/metadata/cil-coff.h>
55 #include <mono/io-layer/io-layer.h>
56 #include <mono/utils/strtod.h>
57 #include <mono/utils/monobitset.h>
58
59 #if defined (PLATFORM_WIN32)
60 #include <windows.h>
61 #include <shlobj.h>
62 #endif
63 #include "decimal.h"
64
65 static MonoReflectionAssembly* ves_icall_System_Reflection_Assembly_GetCallingAssembly (void);
66
67
68 /*
69  * We expect a pointer to a char, not a string
70  */
71 static double
72 mono_double_ParseImpl (char *ptr)
73 {
74         gchar *endptr = NULL;
75         gdouble result = 0.0;
76
77         MONO_ARCH_SAVE_REGS;
78
79         if (*ptr)
80                 result = bsd_strtod (ptr, &endptr);
81
82         if (!*ptr || (endptr && *endptr))
83                 mono_raise_exception (mono_exception_from_name (mono_defaults.corlib,
84                                                                 "System",
85                                                                 "FormatException"));
86         
87         return result;
88 }
89
90 static void
91 ves_icall_System_Double_AssertEndianity (double *value)
92 {
93         MONO_ARCH_SAVE_REGS;
94
95         MONO_DOUBLE_ASSERT_ENDIANITY (value);
96 }
97
98 static MonoObject *
99 ves_icall_System_Array_GetValueImpl (MonoObject *this, guint32 pos)
100 {
101         MonoClass *ac;
102         MonoArray *ao;
103         gint32 esize;
104         gpointer *ea;
105
106         MONO_ARCH_SAVE_REGS;
107
108         ao = (MonoArray *)this;
109         ac = (MonoClass *)ao->obj.vtable->klass;
110
111         esize = mono_array_element_size (ac);
112         ea = (gpointer*)((char*)ao->vector + (pos * esize));
113
114         if (ac->element_class->valuetype)
115                 return mono_value_box (this->vtable->domain, ac->element_class, ea);
116         else
117                 return *ea;
118 }
119
120 static MonoObject *
121 ves_icall_System_Array_GetValue (MonoObject *this, MonoObject *idxs)
122 {
123         MonoClass *ac, *ic;
124         MonoArray *ao, *io;
125         gint32 i, pos, *ind;
126
127         MONO_ARCH_SAVE_REGS;
128
129         MONO_CHECK_ARG_NULL (idxs);
130
131         io = (MonoArray *)idxs;
132         ic = (MonoClass *)io->obj.vtable->klass;
133         
134         ao = (MonoArray *)this;
135         ac = (MonoClass *)ao->obj.vtable->klass;
136
137         g_assert (ic->rank == 1);
138         if (io->bounds != NULL || io->max_length !=  ac->rank)
139                 mono_raise_exception (mono_get_exception_argument (NULL, NULL));
140
141         ind = (guint32 *)io->vector;
142
143         if (ao->bounds == NULL) {
144                 if (*ind < 0 || *ind >= ao->max_length)
145                         mono_raise_exception (mono_get_exception_index_out_of_range ());
146
147                 return ves_icall_System_Array_GetValueImpl (this, *ind);
148         }
149         
150         for (i = 0; i < ac->rank; i++)
151                 if ((ind [i] < ao->bounds [i].lower_bound) ||
152                     (ind [i] >= ao->bounds [i].length + ao->bounds [i].lower_bound))
153                         mono_raise_exception (mono_get_exception_index_out_of_range ());
154
155         pos = ind [0] - ao->bounds [0].lower_bound;
156         for (i = 1; i < ac->rank; i++)
157                 pos = pos*ao->bounds [i].length + ind [i] - 
158                         ao->bounds [i].lower_bound;
159
160         return ves_icall_System_Array_GetValueImpl (this, pos);
161 }
162
163 static void
164 ves_icall_System_Array_SetValueImpl (MonoArray *this, MonoObject *value, guint32 pos)
165 {
166         MonoClass *ac, *vc, *ec;
167         gint32 esize, vsize;
168         gpointer *ea, *va;
169
170         guint64 u64 = 0;
171         gint64 i64 = 0;
172         gdouble r64 = 0;
173
174         MONO_ARCH_SAVE_REGS;
175
176         if (value)
177                 vc = value->vtable->klass;
178         else
179                 vc = NULL;
180
181         ac = this->obj.vtable->klass;
182         ec = ac->element_class;
183
184         esize = mono_array_element_size (ac);
185         ea = (gpointer*)((char*)this->vector + (pos * esize));
186         va = (gpointer*)((char*)value + sizeof (MonoObject));
187
188         if (!value) {
189                 memset (ea, 0,  esize);
190                 return;
191         }
192
193 #define NO_WIDENING_CONVERSION G_STMT_START{\
194         mono_raise_exception (mono_get_exception_argument ( \
195                 "value", "not a widening conversion")); \
196 }G_STMT_END
197
198 #define CHECK_WIDENING_CONVERSION(extra) G_STMT_START{\
199         if (esize < vsize + (extra)) \
200                 mono_raise_exception (mono_get_exception_argument ( \
201                         "value", "not a widening conversion")); \
202 }G_STMT_END
203
204 #define INVALID_CAST G_STMT_START{\
205         mono_raise_exception (mono_get_exception_invalid_cast ()); \
206 }G_STMT_END
207
208         /* Check element (destination) type. */
209         switch (ec->byval_arg.type) {
210         case MONO_TYPE_STRING:
211                 switch (vc->byval_arg.type) {
212                 case MONO_TYPE_STRING:
213                         break;
214                 default:
215                         INVALID_CAST;
216                 }
217                 break;
218         case MONO_TYPE_BOOLEAN:
219                 switch (vc->byval_arg.type) {
220                 case MONO_TYPE_BOOLEAN:
221                         break;
222                 case MONO_TYPE_CHAR:
223                 case MONO_TYPE_U1:
224                 case MONO_TYPE_U2:
225                 case MONO_TYPE_U4:
226                 case MONO_TYPE_U8:
227                 case MONO_TYPE_I1:
228                 case MONO_TYPE_I2:
229                 case MONO_TYPE_I4:
230                 case MONO_TYPE_I8:
231                 case MONO_TYPE_R4:
232                 case MONO_TYPE_R8:
233                         NO_WIDENING_CONVERSION;
234                 default:
235                         INVALID_CAST;
236                 }
237                 break;
238         }
239
240         if (!ec->valuetype) {
241                 if (!mono_object_isinst (value, ec))
242                         INVALID_CAST;
243                 *ea = (gpointer)value;
244                 return;
245         }
246
247         if (mono_object_isinst (value, ec)) {
248                 memcpy (ea, (char *)value + sizeof (MonoObject), esize);
249                 return;
250         }
251
252         if (!vc->valuetype)
253                 INVALID_CAST;
254
255         vsize = mono_class_instance_size (vc) - sizeof (MonoObject);
256
257 #if 0
258         g_message (G_STRLOC ": %d (%d) <= %d (%d)",
259                    ec->byval_arg.type, esize,
260                    vc->byval_arg.type, vsize);
261 #endif
262
263 #define ASSIGN_UNSIGNED(etype) G_STMT_START{\
264         switch (vc->byval_arg.type) { \
265         case MONO_TYPE_U1: \
266         case MONO_TYPE_U2: \
267         case MONO_TYPE_U4: \
268         case MONO_TYPE_U8: \
269         case MONO_TYPE_CHAR: \
270                 CHECK_WIDENING_CONVERSION(0); \
271                 *(etype *) ea = (etype) u64; \
272                 return; \
273         /* You can't assign a signed value to an unsigned array. */ \
274         case MONO_TYPE_I1: \
275         case MONO_TYPE_I2: \
276         case MONO_TYPE_I4: \
277         case MONO_TYPE_I8: \
278         /* You can't assign a floating point number to an integer array. */ \
279         case MONO_TYPE_R4: \
280         case MONO_TYPE_R8: \
281                 NO_WIDENING_CONVERSION; \
282         } \
283 }G_STMT_END
284
285 #define ASSIGN_SIGNED(etype) G_STMT_START{\
286         switch (vc->byval_arg.type) { \
287         case MONO_TYPE_I1: \
288         case MONO_TYPE_I2: \
289         case MONO_TYPE_I4: \
290         case MONO_TYPE_I8: \
291                 CHECK_WIDENING_CONVERSION(0); \
292                 *(etype *) ea = (etype) i64; \
293                 return; \
294         /* You can assign an unsigned value to a signed array if the array's */ \
295         /* element size is larger than the value size. */ \
296         case MONO_TYPE_U1: \
297         case MONO_TYPE_U2: \
298         case MONO_TYPE_U4: \
299         case MONO_TYPE_U8: \
300         case MONO_TYPE_CHAR: \
301                 CHECK_WIDENING_CONVERSION(1); \
302                 *(etype *) ea = (etype) u64; \
303                 return; \
304         /* You can't assign a floating point number to an integer array. */ \
305         case MONO_TYPE_R4: \
306         case MONO_TYPE_R8: \
307                 NO_WIDENING_CONVERSION; \
308         } \
309 }G_STMT_END
310
311 #define ASSIGN_REAL(etype) G_STMT_START{\
312         switch (vc->byval_arg.type) { \
313         case MONO_TYPE_R4: \
314         case MONO_TYPE_R8: \
315                 CHECK_WIDENING_CONVERSION(0); \
316                 *(etype *) ea = (etype) r64; \
317                 return; \
318         /* All integer values fit into a floating point array, so we don't */ \
319         /* need to CHECK_WIDENING_CONVERSION here. */ \
320         case MONO_TYPE_I1: \
321         case MONO_TYPE_I2: \
322         case MONO_TYPE_I4: \
323         case MONO_TYPE_I8: \
324                 *(etype *) ea = (etype) i64; \
325                 return; \
326         case MONO_TYPE_U1: \
327         case MONO_TYPE_U2: \
328         case MONO_TYPE_U4: \
329         case MONO_TYPE_U8: \
330         case MONO_TYPE_CHAR: \
331                 *(etype *) ea = (etype) u64; \
332                 return; \
333         } \
334 }G_STMT_END
335
336         switch (vc->byval_arg.type) {
337         case MONO_TYPE_U1:
338                 u64 = *(guint8 *) va;
339                 break;
340         case MONO_TYPE_U2:
341                 u64 = *(guint16 *) va;
342                 break;
343         case MONO_TYPE_U4:
344                 u64 = *(guint32 *) va;
345                 break;
346         case MONO_TYPE_U8:
347                 u64 = *(guint64 *) va;
348                 break;
349         case MONO_TYPE_I1:
350                 i64 = *(gint8 *) va;
351                 break;
352         case MONO_TYPE_I2:
353                 i64 = *(gint16 *) va;
354                 break;
355         case MONO_TYPE_I4:
356                 i64 = *(gint32 *) va;
357                 break;
358         case MONO_TYPE_I8:
359                 i64 = *(gint64 *) va;
360                 break;
361         case MONO_TYPE_R4:
362                 r64 = *(gfloat *) va;
363                 break;
364         case MONO_TYPE_R8:
365                 r64 = *(gdouble *) va;
366                 break;
367         case MONO_TYPE_CHAR:
368                 u64 = *(guint16 *) va;
369                 break;
370         case MONO_TYPE_BOOLEAN:
371                 /* Boolean is only compatible with itself. */
372                 switch (ec->byval_arg.type) {
373                 case MONO_TYPE_CHAR:
374                 case MONO_TYPE_U1:
375                 case MONO_TYPE_U2:
376                 case MONO_TYPE_U4:
377                 case MONO_TYPE_U8:
378                 case MONO_TYPE_I1:
379                 case MONO_TYPE_I2:
380                 case MONO_TYPE_I4:
381                 case MONO_TYPE_I8:
382                 case MONO_TYPE_R4:
383                 case MONO_TYPE_R8:
384                         NO_WIDENING_CONVERSION;
385                 default:
386                         INVALID_CAST;
387                 }
388                 break;
389         }
390
391         /* If we can't do a direct copy, let's try a widening conversion. */
392         switch (ec->byval_arg.type) {
393         case MONO_TYPE_CHAR:
394                 ASSIGN_UNSIGNED (guint16);
395         case MONO_TYPE_U1:
396                 ASSIGN_UNSIGNED (guint8);
397         case MONO_TYPE_U2:
398                 ASSIGN_UNSIGNED (guint16);
399         case MONO_TYPE_U4:
400                 ASSIGN_UNSIGNED (guint32);
401         case MONO_TYPE_U8:
402                 ASSIGN_UNSIGNED (guint64);
403         case MONO_TYPE_I1:
404                 ASSIGN_SIGNED (gint8);
405         case MONO_TYPE_I2:
406                 ASSIGN_SIGNED (gint16);
407         case MONO_TYPE_I4:
408                 ASSIGN_SIGNED (gint32);
409         case MONO_TYPE_I8:
410                 ASSIGN_SIGNED (gint64);
411         case MONO_TYPE_R4:
412                 ASSIGN_REAL (gfloat);
413         case MONO_TYPE_R8:
414                 ASSIGN_REAL (gdouble);
415         }
416
417         INVALID_CAST;
418         /* Not reached, INVALID_CAST does not return. Just to avoid a compiler warning ... */
419         return;
420
421 #undef INVALID_CAST
422 #undef NO_WIDENING_CONVERSION
423 #undef CHECK_WIDENING_CONVERSION
424 #undef ASSIGN_UNSIGNED
425 #undef ASSIGN_SIGNED
426 #undef ASSIGN_REAL
427 }
428
429 static void 
430 ves_icall_System_Array_SetValue (MonoArray *this, MonoObject *value,
431                                  MonoArray *idxs)
432 {
433         MonoClass *ac, *ic;
434         gint32 i, pos, *ind;
435
436         MONO_ARCH_SAVE_REGS;
437
438         MONO_CHECK_ARG_NULL (idxs);
439
440         ic = idxs->obj.vtable->klass;
441         ac = this->obj.vtable->klass;
442
443         g_assert (ic->rank == 1);
444         if (idxs->bounds != NULL || idxs->max_length != ac->rank)
445                 mono_raise_exception (mono_get_exception_argument (NULL, NULL));
446
447         ind = (guint32 *)idxs->vector;
448
449         if (this->bounds == NULL) {
450                 if (*ind < 0 || *ind >= this->max_length)
451                         mono_raise_exception (mono_get_exception_index_out_of_range ());
452
453                 ves_icall_System_Array_SetValueImpl (this, value, *ind);
454                 return;
455         }
456         
457         for (i = 0; i < ac->rank; i++)
458                 if ((ind [i] < this->bounds [i].lower_bound) ||
459                     (ind [i] >= this->bounds [i].length + this->bounds [i].lower_bound))
460                         mono_raise_exception (mono_get_exception_index_out_of_range ());
461
462         pos = ind [0] - this->bounds [0].lower_bound;
463         for (i = 1; i < ac->rank; i++)
464                 pos = pos * this->bounds [i].length + ind [i] - 
465                         this->bounds [i].lower_bound;
466
467         ves_icall_System_Array_SetValueImpl (this, value, pos);
468 }
469
470 static MonoArray *
471 ves_icall_System_Array_CreateInstanceImpl (MonoReflectionType *type, MonoArray *lengths, MonoArray *bounds)
472 {
473         MonoClass *aklass;
474         MonoArray *array;
475         gint32 *sizes, i;
476         gboolean bounded = FALSE;
477
478         MONO_ARCH_SAVE_REGS;
479
480         MONO_CHECK_ARG_NULL (type);
481         MONO_CHECK_ARG_NULL (lengths);
482
483         MONO_CHECK_ARG (lengths, mono_array_length (lengths) > 0);
484         if (bounds)
485                 MONO_CHECK_ARG (bounds, mono_array_length (lengths) == mono_array_length (bounds));
486
487         for (i = 0; i < mono_array_length (lengths); i++)
488                 if (mono_array_get (lengths, gint32, i) < 0)
489                         mono_raise_exception (mono_get_exception_argument_out_of_range (NULL));
490
491         if (bounds && (mono_array_length (bounds) == 1) && (mono_array_get (bounds, gint32, 0) != 0))
492                 /* vectors are not the same as one dimensional arrays with no-zero bounds */
493                 bounded = TRUE;
494         else
495                 bounded = FALSE;
496
497         aklass = mono_bounded_array_class_get (mono_class_from_mono_type (type->type), mono_array_length (lengths), bounded);
498
499         sizes = alloca (aklass->rank * sizeof(guint32) * 2);
500         for (i = 0; i < aklass->rank; ++i) {
501                 sizes [i] = mono_array_get (lengths, gint32, i);
502                 if (bounds)
503                         sizes [i + aklass->rank] = mono_array_get (bounds, gint32, i);
504                 else
505                         sizes [i + aklass->rank] = 0;
506         }
507
508         array = mono_array_new_full (mono_object_domain (type), aklass, sizes, sizes + aklass->rank);
509
510         return array;
511 }
512
513 static gint32 
514 ves_icall_System_Array_GetRank (MonoObject *this)
515 {
516         MONO_ARCH_SAVE_REGS;
517
518         return this->vtable->klass->rank;
519 }
520
521 static gint32
522 ves_icall_System_Array_GetLength (MonoArray *this, gint32 dimension)
523 {
524         gint32 rank = ((MonoObject *)this)->vtable->klass->rank;
525
526         MONO_ARCH_SAVE_REGS;
527
528         if ((dimension < 0) || (dimension >= rank))
529                 mono_raise_exception (mono_get_exception_index_out_of_range ());
530         
531         if (this->bounds == NULL)
532                 return this->max_length;
533         
534         return this->bounds [dimension].length;
535 }
536
537 static gint32
538 ves_icall_System_Array_GetLowerBound (MonoArray *this, gint32 dimension)
539 {
540         gint32 rank = ((MonoObject *)this)->vtable->klass->rank;
541
542         MONO_ARCH_SAVE_REGS;
543
544         if ((dimension < 0) || (dimension >= rank))
545                 mono_raise_exception (mono_get_exception_index_out_of_range ());
546         
547         if (this->bounds == NULL)
548                 return 0;
549         
550         return this->bounds [dimension].lower_bound;
551 }
552
553 static void
554 ves_icall_System_Array_ClearInternal (MonoArray *arr, int idx, int length)
555 {
556         int sz = mono_array_element_size (mono_object_class (arr));
557         memset (mono_array_addr_with_size (arr, idx, sz), 0, length * sz);
558 }
559
560 static gboolean
561 ves_icall_System_Array_FastCopy (MonoArray *source, int source_idx, MonoArray* dest, int dest_idx, int length)
562 {
563         int element_size;
564         void * dest_addr;
565         void * source_addr;
566         MonoClass *src_class;
567         MonoClass *dest_class;
568         int i;
569
570         MONO_ARCH_SAVE_REGS;
571
572         if (source->obj.vtable->klass->rank != dest->obj.vtable->klass->rank)
573                 return FALSE;
574
575         if (source->bounds || dest->bounds)
576                 return FALSE;
577
578         if ((dest_idx + length > mono_array_length (dest)) ||
579                 (source_idx + length > mono_array_length (source)))
580                 return FALSE;
581
582         element_size = mono_array_element_size (source->obj.vtable->klass);
583         dest_addr = mono_array_addr_with_size (dest, element_size, dest_idx);
584         source_addr = mono_array_addr_with_size (source, element_size, source_idx);
585
586         src_class = source->obj.vtable->klass->element_class;
587         dest_class = dest->obj.vtable->klass->element_class;
588
589         /*
590          * Handle common cases.
591          */
592
593         /* Case1: object[] -> valuetype[] (ArrayList::ToArray) */
594         if (src_class == mono_defaults.object_class && dest_class->valuetype) {
595                 for (i = source_idx; i < source_idx + length; ++i) {
596                         MonoObject *elem = mono_array_get (source, MonoObject*, i);
597                         if (elem && !mono_object_isinst (elem, dest_class))
598                                 return FALSE;
599                 }
600
601                 element_size = mono_array_element_size (dest->obj.vtable->klass);
602                 for (i = 0; i < length; ++i) {
603                         MonoObject *elem = mono_array_get (source, MonoObject*, source_idx + i);
604                         void *addr = mono_array_addr_with_size (dest, element_size, dest_idx + i);
605                         if (!elem)
606                                 memset (addr, 0, element_size);
607                         else
608                                 memcpy (addr, (char *)elem + sizeof (MonoObject), element_size);
609                 }
610                 return TRUE;
611         }
612
613         if (src_class != dest_class) {
614                 if (dest_class->valuetype || dest_class->enumtype || src_class->valuetype || src_class->enumtype)
615                         return FALSE;
616
617                 if (mono_class_is_subclass_of (src_class, dest_class, FALSE))
618                         ;
619                 /* Case2: object[] -> reftype[] (ArrayList::ToArray) */
620                 else if (mono_class_is_subclass_of (dest_class, src_class, FALSE))
621                         for (i = source_idx; i < source_idx + length; ++i) {
622                                 MonoObject *elem = mono_array_get (source, MonoObject*, i);
623                                 if (elem && !mono_object_isinst (elem, dest_class))
624                                         return FALSE;
625                         }
626                 else
627                         return FALSE;
628         }
629
630         memmove (dest_addr, source_addr, element_size * length);
631
632         return TRUE;
633 }
634
635 static void
636 ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray (MonoArray *array, MonoClassField *field_handle)
637 {
638         MonoClass *klass = array->obj.vtable->klass;
639         guint32 size = mono_array_element_size (klass);
640         int i;
641
642         MONO_ARCH_SAVE_REGS;
643
644         if (array->bounds == NULL)
645                 size *= array->max_length;
646         else
647                 for (i = 0; i < klass->rank; ++i) 
648                         size *= array->bounds [i].length;
649
650         memcpy (mono_array_addr (array, char, 0), field_handle->data, size);
651
652 #if G_BYTE_ORDER != G_LITTLE_ENDIAN
653 #define SWAP(n) {\
654         gint i; \
655         guint ## n tmp; \
656         guint ## n *data = (guint ## n *) mono_array_addr (array, char, 0); \
657 \
658         for (i = 0; i < size; i += n/8, data++) { \
659                 tmp = read ## n (data); \
660                 *data = tmp; \
661         } \
662 }
663
664         /* printf ("Initialize array with elements of %s type\n", klass->element_class->name); */
665
666         switch (klass->element_class->byval_arg.type) {
667         case MONO_TYPE_CHAR:
668         case MONO_TYPE_I2:
669         case MONO_TYPE_U2:
670                 SWAP (16);
671                 break;
672         case MONO_TYPE_I4:
673         case MONO_TYPE_U4:
674                 SWAP (32);
675                 break;
676         case MONO_TYPE_I8:
677         case MONO_TYPE_U8:
678                 SWAP (64);
679                 break;
680         }
681                  
682 #endif
683 }
684
685 static gint
686 ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetOffsetToStringData (void)
687 {
688         MONO_ARCH_SAVE_REGS;
689
690         return offsetof (MonoString, chars);
691 }
692
693 static MonoObject *
694 ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetObjectValue (MonoObject *obj)
695 {
696         MONO_ARCH_SAVE_REGS;
697
698         if ((obj == NULL) || (! (obj->vtable->klass->valuetype)))
699                 return obj;
700         else
701                 return mono_object_clone (obj);
702 }
703
704 static void
705 ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor (MonoType *handle)
706 {
707         MonoClass *klass;
708
709         MONO_ARCH_SAVE_REGS;
710
711         MONO_CHECK_ARG_NULL (handle);
712
713         klass = mono_class_from_mono_type (handle);
714         MONO_CHECK_ARG (handle, klass);
715
716         /* This will call the type constructor */
717         if (! (klass->flags & TYPE_ATTRIBUTE_INTERFACE))
718                 mono_runtime_class_init (mono_class_vtable (mono_domain_get (), klass));
719 }
720
721 static MonoObject *
722 ves_icall_System_Object_MemberwiseClone (MonoObject *this)
723 {
724         MONO_ARCH_SAVE_REGS;
725
726         return mono_object_clone (this);
727 }
728
729 #if HAVE_BOEHM_GC
730 #define MONO_OBJECT_ALIGNMENT_SHIFT     3
731 #else
732 #define MONO_OBJECT_ALIGNMENT_SHIFT     2
733 #endif
734
735 /*
736  * Return hashcode based on object address. This function will need to be
737  * smarter in the presence of a moving garbage collector, which will cache
738  * the address hash before relocating the object.
739  *
740  * Wang's address-based hash function:
741  *   http://www.concentric.net/~Ttwang/tech/addrhash.htm
742  */
743 static gint32
744 ves_icall_System_Object_GetHashCode (MonoObject *this)
745 {
746         register guint32 key;
747
748         MONO_ARCH_SAVE_REGS;
749
750         key = (GPOINTER_TO_UINT (this) >> MONO_OBJECT_ALIGNMENT_SHIFT) * 2654435761u;
751
752         return key & 0x7fffffff;
753 }
754
755 static gint32
756 ves_icall_System_ValueType_InternalGetHashCode (MonoObject *this, MonoArray **fields)
757 {
758         int i;
759         MonoClass *klass;
760         MonoObject **values = NULL;
761         MonoObject *o;
762         int count = 0;
763         gint32 result = 0;
764
765         MONO_ARCH_SAVE_REGS;
766
767         klass = this->vtable->klass;
768
769         if (klass->field.count == 0)
770                 return ves_icall_System_Object_GetHashCode (this);
771
772         /*
773          * Compute the starting value of the hashcode for fields of primitive
774          * types, and return the remaining fields in an array to the managed side.
775          * This way, we can avoid costly reflection operations in managed code.
776          */
777         for (i = 0; i < klass->field.count; ++i) {
778                 MonoClassField *field = &klass->fields [i];
779                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
780                         continue;
781                 if (mono_field_is_deleted (field))
782                         continue;
783                 /* FIXME: Add more types */
784                 switch (field->type->type) {
785                 case MONO_TYPE_I4:
786                         result ^= *(gint32*)((guint8*)this + field->offset);
787                         break;
788                 case MONO_TYPE_STRING: {
789                         MonoString *s;
790                         s = *(MonoString**)((guint8*)this + field->offset);
791                         if (s != NULL)
792                                 result ^= ves_icall_System_String_GetHashCode (s);
793                         break;
794                 }
795                 default:
796                         if (!values)
797                                 values = alloca (klass->field.count * sizeof (MonoObject*));
798                         o = mono_field_get_value_object (mono_object_domain (this), field, this);
799                         values [count++] = o;
800                 }
801         }
802
803         if (values) {
804                 *fields = mono_array_new (mono_domain_get (), mono_defaults.object_class, count);
805                 memcpy (mono_array_addr (*fields, MonoObject*, 0), values, count * sizeof (MonoObject*));
806         }
807         else
808                 *fields = NULL;
809         return result;
810 }
811
812 static MonoBoolean
813 ves_icall_System_ValueType_Equals (MonoObject *this, MonoObject *that, MonoArray **fields)
814 {
815         int i;
816         MonoClass *klass;
817         MonoObject **values = NULL;
818         MonoObject *o;
819         int count = 0;
820
821         MONO_ARCH_SAVE_REGS;
822
823         MONO_CHECK_ARG_NULL (that);
824
825         if (this->vtable != that->vtable)
826                 return FALSE;
827
828         klass = this->vtable->klass;
829
830         /*
831          * Do the comparison for fields of primitive type and return a result if
832          * possible. Otherwise, return the remaining fields in an array to the 
833          * managed side. This way, we can avoid costly reflection operations in 
834          * managed code.
835          */
836         *fields = NULL;
837         for (i = 0; i < klass->field.count; ++i) {
838                 MonoClassField *field = &klass->fields [i];
839                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
840                         continue;
841                 if (mono_field_is_deleted (field))
842                         continue;
843                 /* FIXME: Add more types */
844                 switch (field->type->type) {
845                 case MONO_TYPE_I4:
846                         if (*(gint32*)((guint8*)this + field->offset) != *(gint32*)((guint8*)that + field->offset))
847                                 return FALSE;
848                         break;
849                 case MONO_TYPE_STRING: {
850                         MonoString *s1, *s2;
851                         guint32 s1len, s2len;
852                         s1 = *(MonoString**)((guint8*)this + field->offset);
853                         s2 = *(MonoString**)((guint8*)that + field->offset);
854                         if (s1 == s2)
855                                 break;
856                         if ((s1 == NULL) || (s2 == NULL))
857                                 return FALSE;
858                         s1len = mono_string_length (s1);
859                         s2len = mono_string_length (s2);
860                         if (s1len != s2len)
861                                 return FALSE;
862
863                         if (memcmp (mono_string_chars (s1), mono_string_chars (s2), s1len * sizeof (gunichar2)) != 0)
864                                 return FALSE;
865                         break;
866                 }
867                 default:
868                         if (!values)
869                                 values = alloca (klass->field.count * 2 * sizeof (MonoObject*));
870                         o = mono_field_get_value_object (mono_object_domain (this), field, this);
871                         values [count++] = o;
872                         o = mono_field_get_value_object (mono_object_domain (this), field, that);
873                         values [count++] = o;
874                 }
875         }
876
877         if (values) {
878                 *fields = mono_array_new (mono_domain_get (), mono_defaults.object_class, count);
879                 memcpy (mono_array_addr (*fields, MonoObject*, 0), values, count * sizeof (MonoObject*));
880
881                 return FALSE;
882         }
883         else
884                 return TRUE;
885 }
886
887 static MonoReflectionType *
888 ves_icall_System_Object_GetType (MonoObject *obj)
889 {
890         MONO_ARCH_SAVE_REGS;
891
892         if (obj->vtable->klass != mono_defaults.transparent_proxy_class)
893                 return mono_type_get_object (mono_object_domain (obj), &obj->vtable->klass->byval_arg);
894         else
895                 return mono_type_get_object (mono_object_domain (obj), &((MonoTransparentProxy*)obj)->remote_class->proxy_class->byval_arg);
896 }
897
898 static void
899 mono_type_type_from_obj (MonoReflectionType *mtype, MonoObject *obj)
900 {
901         MONO_ARCH_SAVE_REGS;
902
903         mtype->type = &obj->vtable->klass->byval_arg;
904         g_assert (mtype->type->type);
905 }
906
907 static gint32
908 ves_icall_ModuleBuilder_getToken (MonoReflectionModuleBuilder *mb, MonoObject *obj)
909 {
910         MONO_ARCH_SAVE_REGS;
911
912         return mono_image_create_token (mb->dynamic_image, obj, TRUE);
913 }
914
915 static gint32
916 ves_icall_ModuleBuilder_getMethodToken (MonoReflectionModuleBuilder *mb,
917                                         MonoReflectionMethod *method,
918                                         MonoArray *opt_param_types)
919 {
920         MONO_ARCH_SAVE_REGS;
921
922         return mono_image_create_method_token (
923                 mb->dynamic_image, (MonoObject *) method, opt_param_types);
924 }
925
926 static gint32
927 ves_icall_ModuleBuilder_getDataChunk (MonoReflectionModuleBuilder *mb, MonoArray *buf, gint32 offset)
928 {
929         int count;
930         MonoDynamicImage *image = mb->dynamic_image;
931         char *p = mono_array_addr (buf, char, 0);
932
933         MONO_ARCH_SAVE_REGS;
934
935         mono_image_create_pefile (mb);
936
937         if (offset >= image->pefile.index)
938                 return 0;
939         count = mono_array_length (buf);
940         count = MIN (count, image->pefile.index - offset);
941         
942         memcpy (p, image->pefile.data + offset, count);
943
944         return count;
945 }
946
947 static void
948 ves_icall_ModuleBuilder_build_metadata (MonoReflectionModuleBuilder *mb)
949 {
950         MONO_ARCH_SAVE_REGS;
951
952         mono_image_build_metadata (mb);
953 }
954
955 static MonoReflectionType *
956 type_from_name (const char *str, MonoBoolean ignoreCase)
957 {
958         MonoType *type = NULL;
959         MonoAssembly *assembly;
960         MonoTypeNameParse info;
961         char *temp_str = g_strdup (str);
962         gboolean type_resolve = FALSE;
963
964         MONO_ARCH_SAVE_REGS;
965
966         /* mono_reflection_parse_type() mangles the string */
967         if (!mono_reflection_parse_type (temp_str, &info)) {
968                 g_list_free (info.modifiers);
969                 g_list_free (info.nested);
970                 g_free (temp_str);
971                 return NULL;
972         }
973
974         if (info.assembly.name) {
975                 assembly = mono_assembly_load (&info.assembly, NULL, NULL);
976         } else {
977                 MonoReflectionAssembly *refass;
978
979                 refass = ves_icall_System_Reflection_Assembly_GetCallingAssembly  ();
980                 assembly = refass->assembly;
981         }
982
983         if (assembly)
984                 type = mono_reflection_get_type (assembly->image, &info, ignoreCase, &type_resolve);
985         
986         if (!info.assembly.name && !type) /* try mscorlib */
987                 type = mono_reflection_get_type (NULL, &info, ignoreCase, &type_resolve);
988
989         g_list_free (info.modifiers);
990         g_list_free (info.nested);
991         g_free (temp_str);
992
993         if (!type) 
994                 return NULL;
995
996         return mono_type_get_object (mono_domain_get (), type);
997 }
998
999 #ifdef UNUSED
1000 MonoReflectionType *
1001 mono_type_get (const char *str)
1002 {
1003         char *copy = g_strdup (str);
1004         MonoReflectionType *type = type_from_name (copy, FALSE);
1005
1006         g_free (copy);
1007         return type;
1008 }
1009 #endif
1010
1011 static MonoReflectionType*
1012 ves_icall_type_from_name (MonoString *name,
1013                           MonoBoolean throwOnError,
1014                           MonoBoolean ignoreCase)
1015 {
1016         char *str = mono_string_to_utf8 (name);
1017         MonoReflectionType *type;
1018
1019         type = type_from_name (str, ignoreCase);
1020         g_free (str);
1021         if (type == NULL){
1022                 if (throwOnError)
1023                         mono_raise_exception (mono_get_exception_type_load (name));
1024         }
1025         
1026         return type;
1027 }
1028
1029
1030 static MonoReflectionType*
1031 ves_icall_type_from_handle (MonoType *handle)
1032 {
1033         MonoDomain *domain = mono_domain_get (); 
1034         MonoClass *klass = mono_class_from_mono_type (handle);
1035
1036         MONO_ARCH_SAVE_REGS;
1037
1038         mono_class_init (klass);
1039         return mono_type_get_object (domain, handle);
1040 }
1041
1042 static guint32
1043 ves_icall_type_Equals (MonoReflectionType *type, MonoReflectionType *c)
1044 {
1045         MONO_ARCH_SAVE_REGS;
1046
1047         if (type->type && c->type)
1048                 return mono_metadata_type_equal (type->type, c->type);
1049         g_print ("type equals\n");
1050         return 0;
1051 }
1052
1053 /* System.TypeCode */
1054 typedef enum {
1055         TYPECODE_EMPTY,
1056         TYPECODE_OBJECT,
1057         TYPECODE_DBNULL,
1058         TYPECODE_BOOLEAN,
1059         TYPECODE_CHAR,
1060         TYPECODE_SBYTE,
1061         TYPECODE_BYTE,
1062         TYPECODE_INT16,
1063         TYPECODE_UINT16,
1064         TYPECODE_INT32,
1065         TYPECODE_UINT32,
1066         TYPECODE_INT64,
1067         TYPECODE_UINT64,
1068         TYPECODE_SINGLE,
1069         TYPECODE_DOUBLE,
1070         TYPECODE_DECIMAL,
1071         TYPECODE_DATETIME,
1072         TYPECODE_STRING = 18
1073 } TypeCode;
1074
1075 static guint32
1076 ves_icall_type_GetTypeCode (MonoReflectionType *type)
1077 {
1078         int t = type->type->type;
1079
1080         MONO_ARCH_SAVE_REGS;
1081
1082 handle_enum:
1083         switch (t) {
1084         case MONO_TYPE_VOID:
1085                 return TYPECODE_OBJECT;
1086         case MONO_TYPE_BOOLEAN:
1087                 return TYPECODE_BOOLEAN;
1088         case MONO_TYPE_U1:
1089                 return TYPECODE_BYTE;
1090         case MONO_TYPE_I1:
1091                 return TYPECODE_SBYTE;
1092         case MONO_TYPE_U2:
1093                 return TYPECODE_UINT16;
1094         case MONO_TYPE_I2:
1095                 return TYPECODE_INT16;
1096         case MONO_TYPE_CHAR:
1097                 return TYPECODE_CHAR;
1098         case MONO_TYPE_PTR:
1099         case MONO_TYPE_U:
1100         case MONO_TYPE_I:
1101                 return TYPECODE_OBJECT;
1102         case MONO_TYPE_U4:
1103                 return TYPECODE_UINT32;
1104         case MONO_TYPE_I4:
1105                 return TYPECODE_INT32;
1106         case MONO_TYPE_U8:
1107                 return TYPECODE_UINT64;
1108         case MONO_TYPE_I8:
1109                 return TYPECODE_INT64;
1110         case MONO_TYPE_R4:
1111                 return TYPECODE_SINGLE;
1112         case MONO_TYPE_R8:
1113                 return TYPECODE_DOUBLE;
1114         case MONO_TYPE_VALUETYPE:
1115                 if (type->type->data.klass->enumtype) {
1116                         t = type->type->data.klass->enum_basetype->type;
1117                         goto handle_enum;
1118                 } else {
1119                         MonoClass *k =  type->type->data.klass;
1120                         if (strcmp (k->name_space, "System") == 0) {
1121                                 if (strcmp (k->name, "Decimal") == 0)
1122                                         return TYPECODE_DECIMAL;
1123                                 else if (strcmp (k->name, "DateTime") == 0)
1124                                         return TYPECODE_DATETIME;
1125                         }
1126                 }
1127                 return TYPECODE_OBJECT;
1128         case MONO_TYPE_STRING:
1129                 return TYPECODE_STRING;
1130         case MONO_TYPE_SZARRAY:
1131         case MONO_TYPE_ARRAY:
1132         case MONO_TYPE_OBJECT:
1133         case MONO_TYPE_VAR:
1134         case MONO_TYPE_MVAR:
1135                 return TYPECODE_OBJECT;
1136         case MONO_TYPE_CLASS:
1137                 {
1138                         MonoClass *k =  type->type->data.klass;
1139                         if (strcmp (k->name_space, "System") == 0) {
1140                                 if (strcmp (k->name, "DBNull") == 0)
1141                                         return TYPECODE_DBNULL;
1142                         }
1143                 }
1144                 return TYPECODE_OBJECT;
1145         case MONO_TYPE_GENERICINST:
1146                 return TYPECODE_OBJECT;
1147         default:
1148                 g_error ("type 0x%02x not handled in GetTypeCode()", t);
1149         }
1150         return 0;
1151 }
1152
1153 static guint32
1154 ves_icall_type_is_subtype_of (MonoReflectionType *type, MonoReflectionType *c, MonoBoolean check_interfaces)
1155 {
1156         MonoDomain *domain; 
1157         MonoClass *klass;
1158         MonoClass *klassc;
1159
1160         MONO_ARCH_SAVE_REGS;
1161
1162         g_assert (type != NULL);
1163         
1164         domain = ((MonoObject *)type)->vtable->domain;
1165
1166         if (!c) /* FIXME: dont know what do do here */
1167                 return 0;
1168
1169         klass = mono_class_from_mono_type (type->type);
1170         klassc = mono_class_from_mono_type (c->type);
1171
1172         return mono_class_is_subclass_of (klass, klassc, check_interfaces);
1173 }
1174
1175 static guint32
1176 ves_icall_type_is_assignable_from (MonoReflectionType *type, MonoReflectionType *c)
1177 {
1178         MonoDomain *domain; 
1179         MonoClass *klass;
1180         MonoClass *klassc;
1181
1182         MONO_ARCH_SAVE_REGS;
1183
1184         g_assert (type != NULL);
1185         
1186         domain = ((MonoObject *)type)->vtable->domain;
1187
1188         klass = mono_class_from_mono_type (type->type);
1189         klassc = mono_class_from_mono_type (c->type);
1190
1191         return mono_class_is_assignable_from (klass, klassc);
1192 }
1193
1194 static guint32
1195 ves_icall_type_IsInstanceOfType (MonoReflectionType *type, MonoObject *obj)
1196 {
1197         MonoClass *klass = mono_class_from_mono_type (type->type);
1198         return mono_object_isinst (obj, klass) != NULL;
1199 }
1200
1201 static guint32
1202 ves_icall_get_attributes (MonoReflectionType *type)
1203 {
1204         MonoClass *klass = mono_class_from_mono_type (type->type);
1205
1206         MONO_ARCH_SAVE_REGS;
1207
1208         return klass->flags;
1209 }
1210
1211 static MonoReflectionField*
1212 ves_icall_System_Reflection_FieldInfo_internal_from_handle (MonoClassField *handle)
1213 {
1214         MONO_ARCH_SAVE_REGS;
1215
1216         g_assert (handle);
1217
1218         return mono_field_get_object (mono_domain_get (), handle->parent, handle);
1219 }
1220
1221 static void
1222 ves_icall_get_method_info (MonoMethod *method, MonoMethodInfo *info)
1223 {
1224         MonoDomain *domain = mono_domain_get ();
1225
1226         MONO_ARCH_SAVE_REGS;
1227
1228         info->parent = mono_type_get_object (domain, &method->klass->byval_arg);
1229         info->ret = mono_type_get_object (domain, method->signature->ret);
1230         info->attrs = method->flags;
1231         info->implattrs = method->iflags;
1232         if (method->signature->call_convention == MONO_CALL_DEFAULT)
1233                 info->callconv = 1;
1234         else {
1235                 if (method->signature->call_convention == MONO_CALL_VARARG)
1236                         info->callconv = 2;
1237                 else
1238                         info->callconv = 0;
1239         }
1240         info->callconv |= (method->signature->hasthis << 5) | (method->signature->explicit_this << 6); 
1241 }
1242
1243 static MonoArray*
1244 ves_icall_get_parameter_info (MonoMethod *method)
1245 {
1246         MonoDomain *domain = mono_domain_get (); 
1247
1248         MONO_ARCH_SAVE_REGS;
1249
1250         return mono_param_get_objects (domain, method);
1251 }
1252
1253 static MonoReflectionType*
1254 ves_icall_MonoField_GetParentType (MonoReflectionField *field, MonoBoolean declaring)
1255 {
1256         MonoClass *parent;
1257         MONO_ARCH_SAVE_REGS;
1258
1259         parent = declaring? field->field->parent: field->klass;
1260
1261         return mono_type_get_object (mono_object_domain (field), &parent->byval_arg);
1262 }
1263
1264 static MonoObject *
1265 ves_icall_MonoField_GetValueInternal (MonoReflectionField *field, MonoObject *obj)
1266 {       
1267         MonoObject *o;
1268         MonoClassField *cf = field->field;
1269         MonoClass *klass;
1270         MonoVTable *vtable;
1271         MonoDomain *domain = mono_object_domain (field); 
1272         gchar *v;
1273         gboolean is_static = FALSE;
1274         gboolean is_ref = FALSE;
1275
1276         MONO_ARCH_SAVE_REGS;
1277
1278         mono_class_init (field->klass);
1279
1280         switch (cf->type->type) {
1281         case MONO_TYPE_STRING:
1282         case MONO_TYPE_OBJECT:
1283         case MONO_TYPE_CLASS:
1284         case MONO_TYPE_ARRAY:
1285         case MONO_TYPE_SZARRAY:
1286                 is_ref = TRUE;
1287                 break;
1288         case MONO_TYPE_U1:
1289         case MONO_TYPE_I1:
1290         case MONO_TYPE_BOOLEAN:
1291         case MONO_TYPE_U2:
1292         case MONO_TYPE_I2:
1293         case MONO_TYPE_CHAR:
1294         case MONO_TYPE_U:
1295         case MONO_TYPE_I:
1296         case MONO_TYPE_U4:
1297         case MONO_TYPE_I4:
1298         case MONO_TYPE_R4:
1299         case MONO_TYPE_U8:
1300         case MONO_TYPE_I8:
1301         case MONO_TYPE_R8:
1302         case MONO_TYPE_VALUETYPE:
1303                 is_ref = cf->type->byref;
1304                 break;
1305         default:
1306                 g_error ("type 0x%x not handled in "
1307                          "ves_icall_Monofield_GetValue", cf->type->type);
1308                 return NULL;
1309         }
1310
1311         vtable = NULL;
1312         if (cf->type->attrs & FIELD_ATTRIBUTE_STATIC) {
1313                 is_static = TRUE;
1314                 vtable = mono_class_vtable (domain, field->klass);
1315                 if (!vtable->initialized && !(cf->type->attrs & FIELD_ATTRIBUTE_LITERAL))
1316                         mono_runtime_class_init (vtable);
1317         }
1318         
1319         if (is_ref) {
1320                 if (is_static) {
1321                         mono_field_static_get_value (vtable, cf, &o);
1322                 } else {
1323                         mono_field_get_value (obj, cf, &o);
1324                 }
1325                 return o;
1326         }
1327
1328         /* boxed value type */
1329         klass = mono_class_from_mono_type (cf->type);
1330         o = mono_object_new (domain, klass);
1331         v = ((gchar *) o) + sizeof (MonoObject);
1332         if (is_static) {
1333                 mono_field_static_get_value (vtable, cf, v);
1334         } else {
1335                 mono_field_get_value (obj, cf, v);
1336         }
1337
1338         return o;
1339 }
1340
1341 static void
1342 ves_icall_FieldInfo_SetValueInternal (MonoReflectionField *field, MonoObject *obj, MonoObject *value)
1343 {
1344         MonoClassField *cf = field->field;
1345         gchar *v;
1346
1347         MONO_ARCH_SAVE_REGS;
1348
1349         v = (gchar *) value;
1350         if (!cf->type->byref) {
1351                 switch (cf->type->type) {
1352                 case MONO_TYPE_U1:
1353                 case MONO_TYPE_I1:
1354                 case MONO_TYPE_BOOLEAN:
1355                 case MONO_TYPE_U2:
1356                 case MONO_TYPE_I2:
1357                 case MONO_TYPE_CHAR:
1358                 case MONO_TYPE_U:
1359                 case MONO_TYPE_I:
1360                 case MONO_TYPE_U4:
1361                 case MONO_TYPE_I4:
1362                 case MONO_TYPE_R4:
1363                 case MONO_TYPE_U8:
1364                 case MONO_TYPE_I8:
1365                 case MONO_TYPE_R8:
1366                 case MONO_TYPE_VALUETYPE:
1367                         v += sizeof (MonoObject);
1368                         break;
1369                 case MONO_TYPE_STRING:
1370                 case MONO_TYPE_OBJECT:
1371                 case MONO_TYPE_CLASS:
1372                 case MONO_TYPE_ARRAY:
1373                 case MONO_TYPE_SZARRAY:
1374                         /* Do nothing */
1375                         break;
1376                 default:
1377                         g_error ("type 0x%x not handled in "
1378                                  "ves_icall_FieldInfo_SetValueInternal", cf->type->type);
1379                         return;
1380                 }
1381         }
1382
1383         if (cf->type->attrs & FIELD_ATTRIBUTE_STATIC) {
1384                 MonoVTable *vtable = mono_class_vtable (mono_object_domain (field), field->klass);
1385                 if (!vtable->initialized)
1386                         mono_runtime_class_init (vtable);
1387                 mono_field_static_set_value (vtable, cf, v);
1388         } else {
1389                 mono_field_set_value (obj, cf, v);
1390         }
1391 }
1392
1393 static MonoReflectionField*
1394 ves_icall_MonoField_Mono_GetGenericFieldDefinition (MonoReflectionField *field)
1395 {
1396         MONO_ARCH_SAVE_REGS;
1397
1398         if (field->field->generic_info && field->field->generic_info->reflection_info)
1399                 return field->field->generic_info->reflection_info;
1400
1401         return field;
1402 }
1403
1404 /* From MonoProperty.cs */
1405 typedef enum {
1406         PInfo_Attributes = 1,
1407         PInfo_GetMethod  = 1 << 1,
1408         PInfo_SetMethod  = 1 << 2,
1409         PInfo_ReflectedType = 1 << 3,
1410         PInfo_DeclaringType = 1 << 4,
1411         PInfo_Name = 1 << 5
1412 } PInfo;
1413
1414 static void
1415 ves_icall_get_property_info (MonoReflectionProperty *property, MonoPropertyInfo *info, PInfo req_info)
1416 {
1417         MonoDomain *domain = mono_object_domain (property); 
1418
1419         MONO_ARCH_SAVE_REGS;
1420
1421         if ((req_info & PInfo_ReflectedType) != 0)
1422                 info->parent = mono_type_get_object (domain, &property->klass->byval_arg);
1423         else if ((req_info & PInfo_DeclaringType) != 0)
1424                 info->parent = mono_type_get_object (domain, &property->property->parent->byval_arg);
1425
1426         if ((req_info & PInfo_Name) != 0)
1427                 info->name = mono_string_new (domain, property->property->name);
1428
1429         if ((req_info & PInfo_Attributes) != 0)
1430                 info->attrs = property->property->attrs;
1431
1432         if ((req_info & PInfo_GetMethod) != 0)
1433                 info->get = property->property->get ?
1434                             mono_method_get_object (domain, property->property->get, NULL): NULL;
1435         
1436         if ((req_info & PInfo_SetMethod) != 0)
1437                 info->set = property->property->set ?
1438                             mono_method_get_object (domain, property->property->set, NULL): NULL;
1439         /* 
1440          * There may be other methods defined for properties, though, it seems they are not exposed 
1441          * in the reflection API 
1442          */
1443 }
1444
1445 static void
1446 ves_icall_get_event_info (MonoReflectionEvent *event, MonoEventInfo *info)
1447 {
1448         MonoDomain *domain = mono_object_domain (event); 
1449
1450         MONO_ARCH_SAVE_REGS;
1451
1452         info->declaring_type = mono_type_get_object (domain, &event->klass->byval_arg);
1453         info->reflected_type = mono_type_get_object (domain, &event->event->parent->byval_arg);
1454
1455         info->name = mono_string_new (domain, event->event->name);
1456         info->attrs = event->event->attrs;
1457         info->add_method = event->event->add ? mono_method_get_object (domain, event->event->add, NULL): NULL;
1458         info->remove_method = event->event->remove ? mono_method_get_object (domain, event->event->remove, NULL): NULL;
1459         info->raise_method = event->event->raise ? mono_method_get_object (domain, event->event->raise, NULL): NULL;
1460 }
1461
1462 static MonoArray*
1463 ves_icall_Type_GetInterfaces (MonoReflectionType* type)
1464 {
1465         MonoDomain *domain = mono_object_domain (type); 
1466         MonoArray *intf;
1467         int ninterf, i;
1468         MonoClass *class = mono_class_from_mono_type (type->type);
1469         MonoClass *parent;
1470         MonoBitSet *slots = mono_bitset_new (class->max_interface_id + 1, 0);
1471
1472         MONO_ARCH_SAVE_REGS;
1473
1474         if (class->rank) {
1475                 /* GetInterfaces() returns an empty array in MS.NET (this may be a bug) */
1476                 mono_bitset_free (slots);
1477                 return mono_array_new (domain, mono_defaults.monotype_class, 0);
1478         }
1479
1480         ninterf = 0;
1481         for (parent = class; parent; parent = parent->parent) {
1482                 for (i = 0; i < parent->interface_count; ++i) {
1483                         if (mono_bitset_test (slots, parent->interfaces [i]->interface_id))
1484                                 continue;
1485
1486                         mono_bitset_set (slots, parent->interfaces [i]->interface_id);
1487                         ++ninterf;
1488                 }
1489         }
1490
1491         intf = mono_array_new (domain, mono_defaults.monotype_class, ninterf);
1492         ninterf = 0;
1493         for (parent = class; parent; parent = parent->parent) {
1494                 for (i = 0; i < parent->interface_count; ++i) {
1495                         if (!mono_bitset_test (slots, parent->interfaces [i]->interface_id))
1496                                 continue;
1497
1498                         mono_bitset_clear (slots, parent->interfaces [i]->interface_id);
1499                         mono_array_set (intf, gpointer, ninterf,
1500                                         mono_type_get_object (domain, &parent->interfaces [i]->byval_arg));
1501                         ++ninterf;
1502                 }
1503         }
1504
1505         mono_bitset_free (slots);
1506         return intf;
1507 }
1508
1509 static void
1510 ves_icall_Type_GetInterfaceMapData (MonoReflectionType *type, MonoReflectionType *iface, MonoArray **targets, MonoArray **methods)
1511 {
1512         MonoClass *class = mono_class_from_mono_type (type->type);
1513         MonoClass *iclass = mono_class_from_mono_type (iface->type);
1514         MonoReflectionMethod *member;
1515         int i, len, ioffset;
1516         MonoDomain *domain;
1517
1518         MONO_ARCH_SAVE_REGS;
1519
1520         /* type doesn't implement iface: the exception is thrown in managed code */
1521         if ((iclass->interface_id > class->max_interface_id) || !class->interface_offsets [iclass->interface_id])
1522                         return;
1523
1524         len = iclass->method.count;
1525         ioffset = class->interface_offsets [iclass->interface_id];
1526         domain = mono_object_domain (type);
1527         *targets = mono_array_new (domain, mono_defaults.method_info_class, len);
1528         *methods = mono_array_new (domain, mono_defaults.method_info_class, len);
1529         for (i = 0; i < len; ++i) {
1530                 member = mono_method_get_object (domain, iclass->methods [i], iclass);
1531                 mono_array_set (*methods, gpointer, i, member);
1532                 member = mono_method_get_object (domain, class->vtable [i + ioffset], class);
1533                 mono_array_set (*targets, gpointer, i, member);
1534         }
1535 }
1536
1537 static MonoReflectionType*
1538 ves_icall_MonoType_GetElementType (MonoReflectionType *type)
1539 {
1540         MonoClass *class = mono_class_from_mono_type (type->type);
1541
1542         MONO_ARCH_SAVE_REGS;
1543
1544         // GelElementType should only return a type for:
1545         // Array Pointer PassedByRef
1546         if (type->type->byref)
1547                 return mono_type_get_object (mono_object_domain (type), &class->byval_arg);
1548         if (class->enumtype && class->enum_basetype) /* types that are modifierd typebuilkders may not have enum_basetype set */
1549                 return mono_type_get_object (mono_object_domain (type), class->enum_basetype);
1550         else if (class->element_class && MONO_CLASS_IS_ARRAY (class))
1551                 return mono_type_get_object (mono_object_domain (type), &class->element_class->byval_arg);
1552         else if (class->element_class && type->type->type == MONO_TYPE_PTR)
1553                 return mono_type_get_object (mono_object_domain (type), &class->element_class->byval_arg);
1554         else
1555                 return NULL;
1556 }
1557
1558 static MonoReflectionType*
1559 ves_icall_get_type_parent (MonoReflectionType *type)
1560 {
1561         MonoClass *class = mono_class_from_mono_type (type->type);
1562
1563         MONO_ARCH_SAVE_REGS;
1564
1565         return class->parent ? mono_type_get_object (mono_object_domain (type), &class->parent->byval_arg): NULL;
1566 }
1567
1568 static MonoBoolean
1569 ves_icall_type_ispointer (MonoReflectionType *type)
1570 {
1571         MONO_ARCH_SAVE_REGS;
1572
1573         return type->type->type == MONO_TYPE_PTR;
1574 }
1575
1576 static MonoBoolean
1577 ves_icall_type_isprimitive (MonoReflectionType *type)
1578 {
1579         MONO_ARCH_SAVE_REGS;
1580
1581         return (!type->type->byref && (type->type->type >= MONO_TYPE_BOOLEAN) && (type->type->type <= MONO_TYPE_R8));
1582 }
1583
1584 static MonoBoolean
1585 ves_icall_type_isbyref (MonoReflectionType *type)
1586 {
1587         MONO_ARCH_SAVE_REGS;
1588
1589         return type->type->byref;
1590 }
1591
1592 static MonoReflectionModule*
1593 ves_icall_MonoType_get_Module (MonoReflectionType *type)
1594 {
1595         MonoClass *class = mono_class_from_mono_type (type->type);
1596
1597         MONO_ARCH_SAVE_REGS;
1598
1599         return mono_module_get_object (mono_object_domain (type), class->image);
1600 }
1601
1602 static MonoReflectionAssembly*
1603 ves_icall_MonoType_get_Assembly (MonoReflectionType *type)
1604 {
1605         MonoDomain *domain = mono_domain_get (); 
1606         MonoClass *class = mono_class_from_mono_type (type->type);
1607
1608         MONO_ARCH_SAVE_REGS;
1609
1610         return mono_assembly_get_object (domain, class->image->assembly);
1611 }
1612
1613 static MonoReflectionType*
1614 ves_icall_MonoType_get_DeclaringType (MonoReflectionType *type)
1615 {
1616         MonoDomain *domain = mono_domain_get (); 
1617         MonoClass *class = mono_class_from_mono_type (type->type);
1618
1619         MONO_ARCH_SAVE_REGS;
1620
1621         return class->nested_in ? mono_type_get_object (domain, &class->nested_in->byval_arg) : NULL;
1622 }
1623
1624 static MonoReflectionType*
1625 ves_icall_MonoType_get_UnderlyingSystemType (MonoReflectionType *type)
1626 {
1627         MonoDomain *domain = mono_domain_get (); 
1628         MonoClass *class = mono_class_from_mono_type (type->type);
1629
1630         MONO_ARCH_SAVE_REGS;
1631
1632         if (class->enumtype && class->enum_basetype) /* types that are modified typebuilders may not have enum_basetype set */
1633                 return mono_type_get_object (domain, class->enum_basetype);
1634         else if (class->element_class)
1635                 return mono_type_get_object (domain, &class->element_class->byval_arg);
1636         else
1637                 return NULL;
1638 }
1639
1640 static MonoString*
1641 ves_icall_MonoType_get_Name (MonoReflectionType *type)
1642 {
1643         MonoDomain *domain = mono_domain_get (); 
1644         MonoClass *class = mono_class_from_mono_type (type->type);
1645
1646         MONO_ARCH_SAVE_REGS;
1647
1648         return mono_string_new (domain, class->name);
1649 }
1650
1651 static MonoString*
1652 ves_icall_MonoType_get_Namespace (MonoReflectionType *type)
1653 {
1654         MonoDomain *domain = mono_domain_get (); 
1655         MonoClass *class = mono_class_from_mono_type (type->type);
1656
1657         MONO_ARCH_SAVE_REGS;
1658
1659         while (class->nested_in)
1660                 class = class->nested_in;
1661
1662         return mono_string_new (domain, class->name_space);
1663 }
1664
1665 static gint32
1666 ves_icall_MonoType_GetArrayRank (MonoReflectionType *type)
1667 {
1668         MonoClass *class = mono_class_from_mono_type (type->type);
1669
1670         MONO_ARCH_SAVE_REGS;
1671
1672         return class->rank;
1673 }
1674
1675 static MonoArray*
1676 ves_icall_MonoType_GetGenericArguments (MonoReflectionType *type)
1677 {
1678         MonoArray *res;
1679         MonoClass *klass, *pklass;
1680         int i;
1681         MONO_ARCH_SAVE_REGS;
1682
1683         klass = mono_class_from_mono_type (type->type);
1684
1685         if (type->type->byref) {
1686                 res = mono_array_new (mono_object_domain (type), mono_defaults.monotype_class, 0);
1687         } else if (klass->gen_params) {
1688                 res = mono_array_new (mono_object_domain (type), mono_defaults.monotype_class, klass->num_gen_params);
1689                 for (i = 0; i < klass->num_gen_params; ++i) {
1690                         pklass = mono_class_from_generic_parameter (&klass->gen_params [i], klass->image, FALSE);
1691                         mono_array_set (res, gpointer, i, mono_type_get_object (mono_object_domain (type), &pklass->byval_arg));
1692                 }
1693         } else if (klass->generic_inst) {
1694                 MonoGenericInst *inst = klass->generic_inst;
1695                 res = mono_array_new (mono_object_domain (type), mono_defaults.monotype_class, inst->type_argc);
1696                 for (i = 0; i < inst->type_argc; ++i) {
1697                         mono_array_set (res, gpointer, i, mono_type_get_object (mono_object_domain (type), inst->type_argv [i]));
1698                 }
1699         } else {
1700                 res = mono_array_new (mono_object_domain (type), mono_defaults.monotype_class, 0);
1701         }
1702         return res;
1703 }
1704
1705 static gboolean
1706 ves_icall_Type_get_IsGenericTypeDefinition (MonoReflectionType *type)
1707 {
1708         MonoClass *klass;
1709         MONO_ARCH_SAVE_REGS;
1710
1711         if (type->type->byref)
1712                 return FALSE;
1713         klass = mono_class_from_mono_type (type->type);
1714
1715         return klass->gen_params != NULL;
1716 }
1717
1718 static MonoReflectionType*
1719 ves_icall_Type_GetGenericTypeDefinition_impl (MonoReflectionType *type)
1720 {
1721         MonoClass *klass;
1722         MONO_ARCH_SAVE_REGS;
1723
1724         if (type->type->byref)
1725                 return NULL;
1726         klass = mono_class_from_mono_type (type->type);
1727         if (klass->gen_params) {
1728                 return type; /* check this one */
1729         }
1730         if (klass->generic_inst) {
1731                 MonoType *generic_type = klass->generic_inst->generic_type;
1732                 MonoClass *generic_class = mono_class_from_mono_type (generic_type);
1733
1734                 if (generic_class->wastypebuilder && generic_class->reflection_info)
1735                         return generic_class->reflection_info;
1736                 else
1737                         return mono_type_get_object (mono_object_domain (type), generic_type);
1738         }
1739         return NULL;
1740 }
1741
1742 static MonoReflectionType*
1743 ves_icall_Type_BindGenericParameters (MonoReflectionType *type, MonoArray *type_array)
1744 {
1745         MonoType *geninst, **types;
1746         int i, count;
1747
1748         MONO_ARCH_SAVE_REGS;
1749
1750         if (type->type->byref)
1751                 return NULL;
1752
1753         count = mono_array_length (type_array);
1754         types = g_new0 (MonoType *, count);
1755
1756         for (i = 0; i < count; i++) {
1757                 MonoReflectionType *t = mono_array_get (type_array, gpointer, i);
1758                 types [i] = t->type;
1759         }
1760
1761         geninst = mono_reflection_bind_generic_parameters (type, count, types);
1762
1763         return mono_type_get_object (mono_object_domain (type), geninst);
1764 }
1765
1766 static gboolean
1767 ves_icall_Type_get_IsGenericInstance (MonoReflectionType *type)
1768 {
1769         MonoClass *klass;
1770         MONO_ARCH_SAVE_REGS;
1771
1772         if (type->type->byref)
1773                 return FALSE;
1774         klass = mono_class_from_mono_type (type->type);
1775         return klass->generic_inst != NULL;
1776 }
1777
1778 static gint32
1779 ves_icall_Type_GetGenericParameterPosition (MonoReflectionType *type)
1780 {
1781         MONO_ARCH_SAVE_REGS;
1782
1783         if (type->type->byref)
1784                 return -1;
1785         if (type->type->type == MONO_TYPE_VAR || type->type->type == MONO_TYPE_MVAR)
1786                 return type->type->data.generic_param->num;
1787         return -1;
1788 }
1789
1790 static MonoBoolean
1791 ves_icall_MonoType_get_HasGenericArguments (MonoReflectionType *type)
1792 {
1793         MonoClass *klass;
1794         MONO_ARCH_SAVE_REGS;
1795
1796         if (type->type->byref)
1797                 return FALSE;
1798         klass = mono_class_from_mono_type (type->type);
1799         if (klass->gen_params || klass->generic_inst)
1800                 return TRUE;
1801         return FALSE;
1802 }
1803
1804 static MonoBoolean
1805 ves_icall_MonoType_get_IsGenericParameter (MonoReflectionType *type)
1806 {
1807         MONO_ARCH_SAVE_REGS;
1808
1809         if (type->type->byref)
1810                 return FALSE;
1811         if (type->type->type == MONO_TYPE_VAR || type->type->type == MONO_TYPE_MVAR)
1812                 return TRUE;
1813         return FALSE;
1814 }
1815
1816 static MonoBoolean
1817 ves_icall_TypeBuilder_get_IsGenericParameter (MonoReflectionTypeBuilder *tb)
1818 {
1819         MONO_ARCH_SAVE_REGS;
1820
1821         if (tb->type.type->byref)
1822                 return FALSE;
1823         if (tb->type.type->type == MONO_TYPE_VAR || tb->type.type->type == MONO_TYPE_MVAR)
1824                 return TRUE;
1825         return FALSE;
1826 }
1827
1828 static void
1829 ves_icall_EnumBuilder_setup_enum_type (MonoReflectionType *enumtype,
1830                                                                            MonoReflectionType *t)
1831 {
1832         enumtype->type = t->type;
1833 }
1834
1835 static MonoReflectionType*
1836 ves_icall_MonoGenericInst_GetParentType (MonoReflectionGenericInst *type)
1837 {
1838         MonoGenericInst *ginst;
1839         MonoClass *klass;
1840
1841         MONO_ARCH_SAVE_REGS;
1842
1843         ginst = type->type.type->data.generic_inst;
1844         if (!ginst || !ginst->parent || (ginst->parent->type != MONO_TYPE_GENERICINST))
1845                 return NULL;
1846
1847         klass = mono_class_from_mono_type (ginst->parent);
1848         if (!klass->generic_inst && !klass->gen_params)
1849                 return NULL;
1850
1851         return mono_type_get_object (mono_object_domain (type), ginst->parent);
1852 }
1853
1854 static MonoArray*
1855 ves_icall_MonoGenericInst_GetInterfaces (MonoReflectionGenericInst *type)
1856 {
1857         static MonoClass *System_Reflection_MonoGenericInst;
1858         MonoGenericInst *ginst;
1859         MonoDomain *domain;
1860         MonoClass *klass;
1861         MonoArray *res;
1862         int i;
1863
1864         MONO_ARCH_SAVE_REGS;
1865
1866         if (!System_Reflection_MonoGenericInst) {
1867                 System_Reflection_MonoGenericInst = mono_class_from_name (
1868                         mono_defaults.corlib, "System.Reflection", "MonoGenericInst");
1869                 g_assert (System_Reflection_MonoGenericInst);
1870         }
1871
1872         domain = mono_object_domain (type);
1873
1874         ginst = type->type.type->data.generic_inst;
1875         if (!ginst || !ginst->ifaces)
1876                 return mono_array_new (domain, System_Reflection_MonoGenericInst, 0);
1877
1878         klass = mono_class_from_mono_type (ginst->generic_type);
1879
1880         res = mono_array_new (domain, System_Reflection_MonoGenericInst, ginst->count_ifaces);
1881
1882         for (i = 0; i < ginst->count_ifaces; i++) {
1883                 MonoReflectionType *iface = mono_type_get_object (domain, ginst->ifaces [i]);
1884
1885                 mono_array_set (res, gpointer, i, iface);
1886         }
1887
1888         return res;
1889 }
1890
1891 static MonoArray*
1892 ves_icall_MonoGenericInst_GetMethods (MonoReflectionGenericInst *type,
1893                                       MonoReflectionType *reflected_type)
1894 {
1895         MonoGenericInst *ginst;
1896         MonoDynamicGenericInst *dginst;
1897         MonoDomain *domain;
1898         MonoClass *refclass;
1899         MonoArray *res;
1900         int i;
1901
1902         MONO_ARCH_SAVE_REGS;
1903
1904         ginst = type->type.type->data.generic_inst;
1905         g_assert ((dginst = ginst->dynamic_info) != NULL);
1906
1907         refclass = mono_class_from_mono_type (reflected_type->type);
1908
1909         domain = mono_object_domain (type);
1910         res = mono_array_new (domain, mono_defaults.method_info_class, dginst->count_methods);
1911
1912         for (i = 0; i < dginst->count_methods; i++)
1913                 mono_array_set (res, gpointer, i,
1914                                 mono_method_get_object (domain, dginst->methods [i], refclass));
1915
1916         return res;
1917 }
1918
1919 static MonoArray*
1920 ves_icall_MonoGenericInst_GetConstructors (MonoReflectionGenericInst *type,
1921                                            MonoReflectionType *reflected_type)
1922 {
1923         static MonoClass *System_Reflection_ConstructorInfo;
1924         MonoGenericInst *ginst;
1925         MonoDynamicGenericInst *dginst;
1926         MonoDomain *domain;
1927         MonoClass *refclass;
1928         MonoArray *res;
1929         int i;
1930
1931         MONO_ARCH_SAVE_REGS;
1932
1933         if (!System_Reflection_ConstructorInfo)
1934                 System_Reflection_ConstructorInfo = mono_class_from_name (
1935                         mono_defaults.corlib, "System.Reflection", "ConstructorInfo");
1936
1937         ginst = type->type.type->data.generic_inst;
1938         g_assert ((dginst = ginst->dynamic_info) != NULL);
1939
1940         refclass = mono_class_from_mono_type (reflected_type->type);
1941
1942         domain = mono_object_domain (type);
1943         res = mono_array_new (domain, System_Reflection_ConstructorInfo, dginst->count_ctors);
1944
1945         for (i = 0; i < dginst->count_ctors; i++)
1946                 mono_array_set (res, gpointer, i,
1947                                 mono_method_get_object (domain, dginst->ctors [i], refclass));
1948
1949         return res;
1950 }
1951
1952 static MonoArray*
1953 ves_icall_MonoGenericInst_GetFields (MonoReflectionGenericInst *type,
1954                                      MonoReflectionType *reflected_type)
1955 {
1956         MonoGenericInst *ginst;
1957         MonoDynamicGenericInst *dginst;
1958         MonoDomain *domain;
1959         MonoClass *refclass;
1960         MonoArray *res;
1961         int i;
1962
1963         MONO_ARCH_SAVE_REGS;
1964
1965         ginst = type->type.type->data.generic_inst;
1966         g_assert ((dginst = ginst->dynamic_info) != NULL);
1967
1968         refclass = mono_class_from_mono_type (reflected_type->type);
1969
1970         domain = mono_object_domain (type);
1971         res = mono_array_new (domain, mono_defaults.field_info_class, dginst->count_fields);
1972
1973         for (i = 0; i < dginst->count_fields; i++)
1974                 mono_array_set (res, gpointer, i,
1975                                 mono_field_get_object (domain, refclass, &dginst->fields [i]));
1976
1977         return res;
1978 }
1979
1980 static MonoArray*
1981 ves_icall_MonoGenericInst_GetProperties (MonoReflectionGenericInst *type,
1982                                          MonoReflectionType *reflected_type)
1983 {
1984         static MonoClass *System_Reflection_PropertyInfo;
1985         MonoGenericInst *ginst;
1986         MonoDynamicGenericInst *dginst;
1987         MonoDomain *domain;
1988         MonoClass *refclass;
1989         MonoArray *res;
1990         int i;
1991
1992         MONO_ARCH_SAVE_REGS;
1993
1994         if (!System_Reflection_PropertyInfo)
1995                 System_Reflection_PropertyInfo = mono_class_from_name (
1996                         mono_defaults.corlib, "System.Reflection", "PropertyInfo");
1997
1998         ginst = type->type.type->data.generic_inst;
1999         g_assert ((dginst = ginst->dynamic_info) != NULL);
2000
2001         refclass = mono_class_from_mono_type (reflected_type->type);
2002
2003         domain = mono_object_domain (type);
2004         res = mono_array_new (domain, System_Reflection_PropertyInfo, dginst->count_properties);
2005
2006         for (i = 0; i < dginst->count_properties; i++)
2007                 mono_array_set (res, gpointer, i,
2008                                 mono_property_get_object (domain, refclass, &dginst->properties [i]));
2009
2010         return res;
2011 }
2012
2013 static MonoArray*
2014 ves_icall_MonoGenericInst_GetEvents (MonoReflectionGenericInst *type,
2015                                      MonoReflectionType *reflected_type)
2016 {
2017         static MonoClass *System_Reflection_EventInfo;
2018         MonoGenericInst *ginst;
2019         MonoDynamicGenericInst *dginst;
2020         MonoDomain *domain;
2021         MonoClass *refclass;
2022         MonoArray *res;
2023         int i;
2024
2025         MONO_ARCH_SAVE_REGS;
2026
2027         if (!System_Reflection_EventInfo)
2028                 System_Reflection_EventInfo = mono_class_from_name (
2029                         mono_defaults.corlib, "System.Reflection", "EventInfo");
2030
2031         ginst = type->type.type->data.generic_inst;
2032         g_assert ((dginst = ginst->dynamic_info) != NULL);
2033
2034         refclass = mono_class_from_mono_type (reflected_type->type);
2035
2036         domain = mono_object_domain (type);
2037         res = mono_array_new (domain, System_Reflection_EventInfo, dginst->count_events);
2038
2039         for (i = 0; i < dginst->count_events; i++)
2040                 mono_array_set (res, gpointer, i,
2041                                 mono_event_get_object (domain, refclass, &dginst->events [i]));
2042
2043         return res;
2044 }
2045
2046 static MonoReflectionMethod *
2047 ves_icall_MonoType_get_DeclaringMethod (MonoReflectionType *type)
2048 {
2049         MonoMethod *method;
2050         MonoClass *klass;
2051
2052         MONO_ARCH_SAVE_REGS;
2053
2054         if (type->type->byref)
2055                 return FALSE;
2056
2057         method = type->type->data.generic_param->method;
2058         if (!method)
2059                 return NULL;
2060
2061         klass = mono_class_from_mono_type (type->type);
2062         return mono_method_get_object (mono_object_domain (type), method, klass);
2063 }
2064
2065 static MonoReflectionMethod *
2066 ves_icall_MonoMethod_GetGenericMethodDefinition (MonoReflectionMethod *method)
2067 {
2068         MonoMethodInflated *imethod;
2069
2070         MONO_ARCH_SAVE_REGS;
2071
2072         if (!method->method->signature->is_inflated) {
2073                 if (method->method->signature->generic_param_count)
2074                         return method;
2075
2076                 return NULL;
2077         }
2078
2079         imethod = (MonoMethodInflated *) method->method;
2080         if (imethod->context->gmethod && imethod->context->gmethod->reflection_info)
2081                 return imethod->context->gmethod->reflection_info;
2082         else
2083                 return mono_method_get_object (
2084                         mono_object_domain (method), imethod->declaring, NULL);
2085 }
2086
2087 static gboolean
2088 ves_icall_MonoMethod_get_HasGenericParameters (MonoReflectionMethod *method)
2089 {
2090         MONO_ARCH_SAVE_REGS;
2091
2092         if ((method->method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
2093             (method->method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL))
2094                 return FALSE;
2095
2096         return method->method->signature->generic_param_count != 0;
2097 }
2098
2099 static gboolean
2100 ves_icall_MonoMethod_get_Mono_IsInflatedMethod (MonoReflectionMethod *method)
2101 {
2102         MONO_ARCH_SAVE_REGS;
2103
2104         if ((method->method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
2105             (method->method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL))
2106                 return FALSE;
2107
2108         return method->method->signature->is_inflated;
2109 }
2110
2111 static gboolean
2112 ves_icall_MonoMethod_get_IsGenericMethodDefinition (MonoReflectionMethod *method)
2113 {
2114         MONO_ARCH_SAVE_REGS;
2115
2116         if ((method->method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
2117             (method->method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL))
2118                 return FALSE;
2119
2120         return method->method->signature->generic_param_count != 0;
2121 }
2122
2123 static MonoArray*
2124 ves_icall_MonoMethod_GetGenericArguments (MonoReflectionMethod *method)
2125 {
2126         MonoArray *res;
2127         MonoDomain *domain;
2128         MonoMethodNormal *mn;
2129         int count, i;
2130         MONO_ARCH_SAVE_REGS;
2131
2132         domain = mono_object_domain (method);
2133
2134         if ((method->method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
2135             (method->method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL))
2136                 return mono_array_new (domain, mono_defaults.monotype_class, 0);
2137
2138         if (method->method->signature->is_inflated) {
2139                 MonoMethodInflated *imethod = (MonoMethodInflated *) method->method;
2140                 MonoGenericMethod *gmethod = imethod->context->gmethod;
2141
2142                 if (gmethod) {
2143                         count = gmethod->mtype_argc;
2144                         res = mono_array_new (domain, mono_defaults.monotype_class, count);
2145
2146                         for (i = 0; i < count; i++) {
2147                                 MonoType *t = gmethod->mtype_argv [i];
2148                                 mono_array_set (
2149                                         res, gpointer, i, mono_type_get_object (domain, t));
2150                         }
2151
2152                         return res;
2153                 }
2154         }
2155
2156         mn = (MonoMethodNormal *) method->method;
2157         count = method->method->signature->generic_param_count;
2158         res = mono_array_new (domain, mono_defaults.monotype_class, count);
2159
2160         for (i = 0; i < count; i++) {
2161                 MonoGenericParam *param = &mn->gen_params [i];
2162                 MonoClass *pklass = mono_class_from_generic_parameter (
2163                         param, method->method->klass->image, TRUE);
2164                 mono_array_set (res, gpointer, i,
2165                                 mono_type_get_object (domain, &pklass->byval_arg));
2166         }
2167
2168         return res;
2169 }
2170
2171 static MonoObject *
2172 ves_icall_InternalInvoke (MonoReflectionMethod *method, MonoObject *this, MonoArray *params) 
2173 {
2174         /* 
2175          * Invoke from reflection is supposed to always be a virtual call (the API
2176          * is stupid), mono_runtime_invoke_*() calls the provided method, allowing
2177          * greater flexibility.
2178          */
2179         MonoMethod *m = method->method;
2180         int pcount;
2181         void *obj = this;
2182
2183         MONO_ARCH_SAVE_REGS;
2184
2185         if (this) {
2186                 if (!mono_object_isinst (this, m->klass))
2187                         mono_raise_exception (mono_exception_from_name (mono_defaults.corlib, "System.Reflection", "TargetException"));
2188                 m = mono_object_get_virtual_method (this, m);
2189                 /* must pass the pointer to the value for valuetype methods */
2190                 if (m->klass->valuetype)
2191                         obj = mono_object_unbox (this);
2192         } else if (!(m->flags & METHOD_ATTRIBUTE_STATIC) && strcmp (m->name, ".ctor") && !m->wrapper_type)
2193                 mono_raise_exception (mono_exception_from_name (mono_defaults.corlib, "System.Reflection", "TargetException"));
2194
2195         pcount = params? mono_array_length (params): 0;
2196         if (pcount != m->signature->param_count)
2197                 mono_raise_exception (mono_exception_from_name (mono_defaults.corlib, "System.Reflection", "TargetParameterCountException"));
2198
2199         if (m->klass->rank && !strcmp (m->name, ".ctor")) {
2200                 int i;
2201                 guint32 *lengths;
2202                 guint32 *lower_bounds;
2203                 pcount = mono_array_length (params);
2204                 lengths = alloca (sizeof (guint32) * pcount);
2205                 for (i = 0; i < pcount; ++i)
2206                         lengths [i] = *(gint32*) ((char*)mono_array_get (params, gpointer, i) + sizeof (MonoObject));
2207
2208                 if (m->klass->rank == pcount) {
2209                         /* Only lengths provided. */
2210                         lower_bounds = NULL;
2211                 } else {
2212                         g_assert (pcount == (m->klass->rank * 2));
2213                         /* lower bounds are first. */
2214                         lower_bounds = lengths;
2215                         lengths += m->klass->rank;
2216                 }
2217
2218                 return (MonoObject*)mono_array_new_full (mono_object_domain (params), m->klass, lengths, lower_bounds);
2219         }
2220         return mono_runtime_invoke_array (m, obj, params, NULL);
2221 }
2222
2223 static MonoObject *
2224 ves_icall_InternalExecute (MonoReflectionMethod *method, MonoObject *this, MonoArray *params, MonoArray **outArgs) 
2225 {
2226         MonoDomain *domain = mono_object_domain (method); 
2227         MonoMethod *m = method->method;
2228         MonoMethodSignature *sig = m->signature;
2229         MonoArray *out_args;
2230         MonoObject *result;
2231         int i, j, outarg_count = 0;
2232
2233         MONO_ARCH_SAVE_REGS;
2234
2235         if (m->klass == mono_defaults.object_class) {
2236
2237                 if (!strcmp (m->name, "FieldGetter")) {
2238                         MonoClass *k = this->vtable->klass;
2239                         
2240                         /* If this is a proxy, then it must be a CBO */
2241                         if (k == mono_defaults.transparent_proxy_class) {
2242                                 MonoTransparentProxy *tp = (MonoTransparentProxy*) this;
2243                                 this = tp->rp->unwrapped_server;
2244                                 g_assert (this);
2245                                 k = this->vtable->klass;
2246                         }
2247                         
2248                         MonoString *name = mono_array_get (params, MonoString *, 1);
2249                         char *str;
2250
2251                         str = mono_string_to_utf8 (name);
2252                 
2253                         do {
2254                                 for (i = 0; i < k->field.count; i++) {
2255                                         if (!strcmp (k->fields [i].name, str)) {
2256                                                 MonoClass *field_klass =  mono_class_from_mono_type (k->fields [i].type);
2257                                                 if (field_klass->valuetype)
2258                                                         result = mono_value_box (domain, field_klass,
2259                                                                                  (char *)this + k->fields [i].offset);
2260                                                 else 
2261                                                         result = *((gpointer *)((char *)this + k->fields [i].offset));
2262                                         
2263                                                 g_assert (result);
2264                                                 out_args = mono_array_new (domain, mono_defaults.object_class, 1);
2265                                                 *outArgs = out_args;
2266                                                 mono_array_set (out_args, gpointer, 0, result);
2267                                                 g_free (str);
2268                                                 return NULL;
2269                                         }
2270                                 }
2271                                 k = k->parent;
2272                         } 
2273                         while (k != NULL);
2274
2275                         g_free (str);
2276                         g_assert_not_reached ();
2277
2278                 } else if (!strcmp (m->name, "FieldSetter")) {
2279                         MonoClass *k = this->vtable->klass;
2280                         
2281                         /* If this is a proxy, then it must be a CBO */
2282                         if (k == mono_defaults.transparent_proxy_class) {
2283                                 MonoTransparentProxy *tp = (MonoTransparentProxy*) this;
2284                                 this = tp->rp->unwrapped_server;
2285                                 g_assert (this);
2286                                 k = this->vtable->klass;
2287                         }
2288                         
2289                         MonoString *name = mono_array_get (params, MonoString *, 1);
2290                         int size, align;
2291                         char *str;
2292
2293                         str = mono_string_to_utf8 (name);
2294                 
2295                         do {
2296                                 for (i = 0; i < k->field.count; i++) {
2297                                         if (!strcmp (k->fields [i].name, str)) {
2298                                                 MonoClass *field_klass =  mono_class_from_mono_type (k->fields [i].type);
2299                                                 MonoObject *val = mono_array_get (params, gpointer, 2);
2300         
2301                                                 if (field_klass->valuetype) {
2302                                                         size = mono_type_size (k->fields [i].type, &align);
2303                                                         memcpy ((char *)this + k->fields [i].offset, 
2304                                                                 ((char *)val) + sizeof (MonoObject), size);
2305                                                 } else 
2306                                                         *(MonoObject**)((char *)this + k->fields [i].offset) = val;
2307                                         
2308                                                 out_args = mono_array_new (domain, mono_defaults.object_class, 0);
2309                                                 *outArgs = out_args;
2310         
2311                                                 g_free (str);
2312                                                 return NULL;
2313                                         }
2314                                 }
2315                                 k = k->parent;
2316                         } 
2317                         while (k != NULL);
2318
2319                         g_free (str);
2320                         g_assert_not_reached ();
2321
2322                 }
2323         }
2324
2325         for (i = 0; i < mono_array_length (params); i++) {
2326                 if (sig->params [i]->byref) 
2327                         outarg_count++;
2328         }
2329
2330         out_args = mono_array_new (domain, mono_defaults.object_class, outarg_count);
2331         
2332         /* handle constructors only for objects already allocated */
2333         if (!strcmp (method->method->name, ".ctor"))
2334                 g_assert (this);
2335
2336         /* This can be called only on MBR objects, so no need to unbox for valuetypes. */
2337         g_assert (!method->method->klass->valuetype);
2338         result = mono_runtime_invoke_array (method->method, this, params, NULL);
2339
2340         for (i = 0, j = 0; i < mono_array_length (params); i++) {
2341                 if (sig->params [i]->byref) {
2342                         gpointer arg;
2343                         arg = mono_array_get (params, gpointer, i);
2344                         mono_array_set (out_args, gpointer, j, arg);
2345                         j++;
2346                 }
2347         }
2348
2349         *outArgs = out_args;
2350
2351         return result;
2352 }
2353
2354 static MonoObject *
2355 ves_icall_System_Enum_ToObject (MonoReflectionType *type, MonoObject *obj)
2356 {
2357         MonoDomain *domain; 
2358         MonoClass *enumc, *objc;
2359         gint32 s1, s2;
2360         MonoObject *res;
2361         
2362         MONO_ARCH_SAVE_REGS;
2363
2364         MONO_CHECK_ARG_NULL (type);
2365         MONO_CHECK_ARG_NULL (obj);
2366
2367         domain = mono_object_domain (type); 
2368         enumc = mono_class_from_mono_type (type->type);
2369         objc = obj->vtable->klass;
2370
2371         MONO_CHECK_ARG (obj, enumc->enumtype == TRUE);
2372         MONO_CHECK_ARG (obj, (objc->enumtype) || (objc->byval_arg.type >= MONO_TYPE_I1 &&
2373                                                   objc->byval_arg.type <= MONO_TYPE_U8));
2374         
2375         s1 = mono_class_value_size (enumc, NULL);
2376         s2 = mono_class_value_size (objc, NULL);
2377
2378         res = mono_object_new (domain, enumc);
2379
2380 #if G_BYTE_ORDER == G_LITTLE_ENDIAN
2381         memcpy ((char *)res + sizeof (MonoObject), (char *)obj + sizeof (MonoObject), MIN (s1, s2));
2382 #else
2383         memcpy ((char *)res + sizeof (MonoObject) + (s1 > s2 ? s1 - s2 : 0),
2384                 (char *)obj + sizeof (MonoObject) + (s2 > s1 ? s2 - s1 : 0),
2385                 MIN (s1, s2));
2386 #endif
2387         return res;
2388 }
2389
2390 static MonoObject *
2391 ves_icall_System_Enum_get_value (MonoObject *this)
2392 {
2393         MonoObject *res;
2394         MonoClass *enumc;
2395         gpointer dst;
2396         gpointer src;
2397         int size;
2398
2399         MONO_ARCH_SAVE_REGS;
2400
2401         if (!this)
2402                 return NULL;
2403
2404         g_assert (this->vtable->klass->enumtype);
2405         
2406         enumc = mono_class_from_mono_type (this->vtable->klass->enum_basetype);
2407         res = mono_object_new (mono_object_domain (this), enumc);
2408         dst = (char *)res + sizeof (MonoObject);
2409         src = (char *)this + sizeof (MonoObject);
2410         size = mono_class_value_size (enumc, NULL);
2411
2412         memcpy (dst, src, size);
2413
2414         return res;
2415 }
2416
2417 static void
2418 ves_icall_get_enum_info (MonoReflectionType *type, MonoEnumInfo *info)
2419 {
2420         MonoDomain *domain = mono_object_domain (type); 
2421         MonoClass *enumc = mono_class_from_mono_type (type->type);
2422         guint i, j, nvalues, crow;
2423         MonoClassField *field;
2424
2425         MONO_ARCH_SAVE_REGS;
2426
2427         info->utype = mono_type_get_object (domain, enumc->enum_basetype);
2428         nvalues = enumc->field.count - 1;
2429         info->names = mono_array_new (domain, mono_defaults.string_class, nvalues);
2430         info->values = mono_array_new (domain, enumc, nvalues);
2431         
2432         crow = -1;
2433         for (i = 0, j = 0; i < enumc->field.count; ++i) {
2434                 const char *p;
2435                 int len;
2436
2437                 field = &enumc->fields [i];
2438                 if (strcmp ("value__", field->name) == 0)
2439                         continue;
2440                 if (mono_field_is_deleted (field))
2441                         continue;
2442                 mono_array_set (info->names, gpointer, j, mono_string_new (domain, field->name));
2443
2444                 if (!field->data) {
2445                         crow = mono_metadata_get_constant_index (enumc->image, MONO_TOKEN_FIELD_DEF | (i+enumc->field.first+1), crow + 1);
2446                         field->def_type = mono_metadata_decode_row_col (&enumc->image->tables [MONO_TABLE_CONSTANT], crow-1, MONO_CONSTANT_TYPE);
2447                         crow = mono_metadata_decode_row_col (&enumc->image->tables [MONO_TABLE_CONSTANT], crow-1, MONO_CONSTANT_VALUE);
2448                         field->data = (gpointer)mono_metadata_blob_heap (enumc->image, crow);
2449                 }
2450
2451                 p = field->data;
2452                 len = mono_metadata_decode_blob_size (p, &p);
2453                 switch (enumc->enum_basetype->type) {
2454                 case MONO_TYPE_U1:
2455                 case MONO_TYPE_I1:
2456                         mono_array_set (info->values, gchar, j, *p);
2457                         break;
2458                 case MONO_TYPE_CHAR:
2459                 case MONO_TYPE_U2:
2460                 case MONO_TYPE_I2:
2461                         mono_array_set (info->values, gint16, j, read16 (p));
2462                         break;
2463                 case MONO_TYPE_U4:
2464                 case MONO_TYPE_I4:
2465                         mono_array_set (info->values, gint32, j, read32 (p));
2466                         break;
2467                 case MONO_TYPE_U8:
2468                 case MONO_TYPE_I8:
2469                         mono_array_set (info->values, gint64, j, read64 (p));
2470                         break;
2471                 default:
2472                         g_error ("Implement type 0x%02x in get_enum_info", enumc->enum_basetype->type);
2473                 }
2474                 ++j;
2475         }
2476 }
2477
2478 enum {
2479         BFLAGS_IgnoreCase = 1,
2480         BFLAGS_DeclaredOnly = 2,
2481         BFLAGS_Instance = 4,
2482         BFLAGS_Static = 8,
2483         BFLAGS_Public = 0x10,
2484         BFLAGS_NonPublic = 0x20,
2485         BFLAGS_FlattenHierarchy = 0x40,
2486         BFLAGS_InvokeMethod = 0x100,
2487         BFLAGS_CreateInstance = 0x200,
2488         BFLAGS_GetField = 0x400,
2489         BFLAGS_SetField = 0x800,
2490         BFLAGS_GetProperty = 0x1000,
2491         BFLAGS_SetProperty = 0x2000,
2492         BFLAGS_ExactBinding = 0x10000,
2493         BFLAGS_SuppressChangeType = 0x20000,
2494         BFLAGS_OptionalParamBinding = 0x40000
2495 };
2496
2497 static MonoReflectionField *
2498 ves_icall_Type_GetField (MonoReflectionType *type, MonoString *name, guint32 bflags)
2499 {
2500         MonoDomain *domain; 
2501         MonoClass *startklass, *klass;
2502         int i, match;
2503         MonoClassField *field;
2504         char *utf8_name;
2505         domain = ((MonoObject *)type)->vtable->domain;
2506         klass = startklass = mono_class_from_mono_type (type->type);
2507
2508         MONO_ARCH_SAVE_REGS;
2509
2510         if (!name)
2511                 mono_raise_exception (mono_get_exception_argument_null ("name"));
2512
2513 handle_parent:  
2514         for (i = 0; i < klass->field.count; ++i) {
2515                 match = 0;
2516                 field = &klass->fields [i];
2517                 if (mono_field_is_deleted (field))
2518                         continue;
2519                 if ((field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK) == FIELD_ATTRIBUTE_PUBLIC) {
2520                         if (bflags & BFLAGS_Public)
2521                                 match++;
2522                 } else {
2523                         if (bflags & BFLAGS_NonPublic)
2524                                 match++;
2525                 }
2526                 if (!match)
2527                         continue;
2528                 match = 0;
2529                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC) {
2530                         if (bflags & BFLAGS_Static)
2531                                 if ((bflags & BFLAGS_FlattenHierarchy) || (klass == startklass))
2532                                         match++;
2533                 } else {
2534                         if (bflags & BFLAGS_Instance)
2535                                 match++;
2536                 }
2537
2538                 if (!match)
2539                         continue;
2540                 
2541                 utf8_name = mono_string_to_utf8 (name);
2542
2543                 if (strcmp (field->name, utf8_name)) {
2544                         g_free (utf8_name);
2545                         continue;
2546                 }
2547                 g_free (utf8_name);
2548                 
2549                 return mono_field_get_object (domain, startklass, field);
2550         }
2551         if (!(bflags & BFLAGS_DeclaredOnly) && (klass = klass->parent))
2552                 goto handle_parent;
2553
2554         return NULL;
2555 }
2556
2557 static MonoArray*
2558 ves_icall_Type_GetFields_internal (MonoReflectionType *type, guint32 bflags, MonoReflectionType *reftype)
2559 {
2560         MonoDomain *domain; 
2561         GSList *l = NULL, *tmp;
2562         MonoClass *startklass, *klass, *refklass;
2563         MonoArray *res;
2564         MonoObject *member;
2565         int i, len, match;
2566         MonoClassField *field;
2567
2568         MONO_ARCH_SAVE_REGS;
2569
2570         domain = ((MonoObject *)type)->vtable->domain;
2571         klass = startklass = mono_class_from_mono_type (type->type);
2572         refklass = mono_class_from_mono_type (reftype->type);
2573
2574 handle_parent:  
2575         for (i = 0; i < klass->field.count; ++i) {
2576                 match = 0;
2577                 field = &klass->fields [i];
2578                 if (mono_field_is_deleted (field))
2579                         continue;
2580                 if ((field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK) == FIELD_ATTRIBUTE_PUBLIC) {
2581                         if (bflags & BFLAGS_Public)
2582                                 match++;
2583                 } else {
2584                         if (bflags & BFLAGS_NonPublic)
2585                                 match++;
2586                 }
2587                 if (!match)
2588                         continue;
2589                 match = 0;
2590                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC) {
2591                         if (bflags & BFLAGS_Static)
2592                                 if ((bflags & BFLAGS_FlattenHierarchy) || (klass == startklass))
2593                                         match++;
2594                 } else {
2595                         if (bflags & BFLAGS_Instance)
2596                                 match++;
2597                 }
2598
2599                 if (!match)
2600                         continue;
2601                 member = (MonoObject*)mono_field_get_object (domain, refklass, field);
2602                 l = g_slist_prepend (l, member);
2603         }
2604         if (!(bflags & BFLAGS_DeclaredOnly) && (klass = klass->parent))
2605                 goto handle_parent;
2606         len = g_slist_length (l);
2607         res = mono_array_new (domain, mono_defaults.field_info_class, len);
2608         i = 0;
2609         tmp = l = g_slist_reverse (l);
2610         for (; tmp; tmp = tmp->next, ++i)
2611                 mono_array_set (res, gpointer, i, tmp->data);
2612         g_slist_free (l);
2613         return res;
2614 }
2615
2616 static MonoArray*
2617 ves_icall_Type_GetMethodsByName (MonoReflectionType *type, MonoString *name, guint32 bflags, MonoBoolean ignore_case, MonoReflectionType *reftype)
2618 {
2619         MonoDomain *domain; 
2620         GSList *l = NULL, *tmp;
2621         MonoClass *startklass, *klass, *refklass;
2622         MonoArray *res;
2623         MonoMethod *method;
2624         MonoObject *member;
2625         int i, len, match;
2626         GHashTable *method_slots = g_hash_table_new (NULL, NULL);
2627         gchar *mname = NULL;
2628         int (*compare_func) (const char *s1, const char *s2) = NULL;
2629                 
2630         MONO_ARCH_SAVE_REGS;
2631
2632         domain = ((MonoObject *)type)->vtable->domain;
2633         klass = startklass = mono_class_from_mono_type (type->type);
2634         refklass = mono_class_from_mono_type (reftype->type);
2635         len = 0;
2636         if (name != NULL) {
2637                 mname = mono_string_to_utf8 (name);
2638                 compare_func = (ignore_case) ? g_strcasecmp : strcmp;
2639         }
2640
2641 handle_parent:
2642         for (i = 0; i < klass->method.count; ++i) {
2643                 match = 0;
2644                 method = klass->methods [i];
2645                 if (strcmp (method->name, ".ctor") == 0 || strcmp (method->name, ".cctor") == 0)
2646                         continue;
2647                 if ((method->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK) == METHOD_ATTRIBUTE_PUBLIC) {
2648                         if (bflags & BFLAGS_Public)
2649                                 match++;
2650                 } else {
2651                         if (bflags & BFLAGS_NonPublic)
2652                                 match++;
2653                 }
2654                 if (!match)
2655                         continue;
2656                 match = 0;
2657                 if (method->flags & METHOD_ATTRIBUTE_STATIC) {
2658                         if (bflags & BFLAGS_Static)
2659                                 if ((bflags & BFLAGS_FlattenHierarchy) || (klass == startklass))
2660                                         match++;
2661                 } else {
2662                         if (bflags & BFLAGS_Instance)
2663                                 match++;
2664                 }
2665
2666                 if (!match)
2667                         continue;
2668
2669                 if (name != NULL) {
2670                         if (compare_func (mname, method->name))
2671                                 continue;
2672                 }
2673                 
2674                 match = 0;
2675                 if (method->slot != -1) {
2676                         if (g_hash_table_lookup (method_slots, GUINT_TO_POINTER (method->slot)))
2677                                 continue;
2678                         g_hash_table_insert (method_slots, GUINT_TO_POINTER (method->slot), method);
2679                 }
2680                 
2681                 member = (MonoObject*)mono_method_get_object (domain, method, refklass);
2682                 
2683                 l = g_slist_prepend (l, member);
2684                 len++;
2685         }
2686         if (!(bflags & BFLAGS_DeclaredOnly) && (klass = klass->parent))
2687                 goto handle_parent;
2688
2689         g_free (mname);
2690         res = mono_array_new (domain, mono_defaults.method_info_class, len);
2691         i = 0;
2692
2693         tmp = l = g_slist_reverse (l);
2694
2695         for (; tmp; tmp = tmp->next, ++i)
2696                 mono_array_set (res, gpointer, i, tmp->data);
2697         g_slist_free (l);
2698         g_hash_table_destroy (method_slots);
2699         return res;
2700 }
2701
2702 static MonoArray*
2703 ves_icall_Type_GetConstructors_internal (MonoReflectionType *type, guint32 bflags, MonoReflectionType *reftype)
2704 {
2705         MonoDomain *domain; 
2706         GSList *l = NULL, *tmp;
2707         static MonoClass *System_Reflection_ConstructorInfo;
2708         MonoClass *startklass, *klass, *refklass;
2709         MonoArray *res;
2710         MonoMethod *method;
2711         MonoObject *member;
2712         int i, len, match;
2713
2714         MONO_ARCH_SAVE_REGS;
2715
2716         domain = ((MonoObject *)type)->vtable->domain;
2717         klass = startklass = mono_class_from_mono_type (type->type);
2718         refklass = mono_class_from_mono_type (reftype->type);
2719
2720         for (i = 0; i < klass->method.count; ++i) {
2721                 match = 0;
2722                 method = klass->methods [i];
2723                 if (strcmp (method->name, ".ctor") && strcmp (method->name, ".cctor"))
2724                         continue;
2725                 if ((method->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK) == METHOD_ATTRIBUTE_PUBLIC) {
2726                         if (bflags & BFLAGS_Public)
2727                                 match++;
2728                 } else {
2729                         if (bflags & BFLAGS_NonPublic)
2730                                 match++;
2731                 }
2732                 if (!match)
2733                         continue;
2734                 match = 0;
2735                 if (method->flags & METHOD_ATTRIBUTE_STATIC) {
2736                         if (bflags & BFLAGS_Static)
2737                                 if ((bflags & BFLAGS_FlattenHierarchy) || (klass == startklass))
2738                                         match++;
2739                 } else {
2740                         if (bflags & BFLAGS_Instance)
2741                                 match++;
2742                 }
2743
2744                 if (!match)
2745                         continue;
2746                 member = (MonoObject*)mono_method_get_object (domain, method, refklass);
2747                         
2748                 l = g_slist_prepend (l, member);
2749         }
2750         len = g_slist_length (l);
2751         if (!System_Reflection_ConstructorInfo)
2752                 System_Reflection_ConstructorInfo = mono_class_from_name (
2753                         mono_defaults.corlib, "System.Reflection", "ConstructorInfo");
2754         res = mono_array_new (domain, System_Reflection_ConstructorInfo, len);
2755         i = 0;
2756         tmp = l = g_slist_reverse (l);
2757         for (; tmp; tmp = tmp->next, ++i)
2758                 mono_array_set (res, gpointer, i, tmp->data);
2759         g_slist_free (l);
2760         return res;
2761 }
2762
2763 static MonoArray*
2764 ves_icall_Type_GetPropertiesByName (MonoReflectionType *type, MonoString *name, guint32 bflags, MonoBoolean ignore_case, MonoReflectionType *reftype)
2765 {
2766         MonoDomain *domain; 
2767         GSList *l = NULL, *tmp;
2768         static MonoClass *System_Reflection_PropertyInfo;
2769         MonoClass *startklass, *klass;
2770         MonoArray *res;
2771         MonoMethod *method;
2772         MonoProperty *prop;
2773         int i, match;
2774         int len = 0;
2775         GHashTable *method_slots = g_hash_table_new (NULL, NULL);
2776         gchar *propname = NULL;
2777         int (*compare_func) (const char *s1, const char *s2) = NULL;
2778
2779         MONO_ARCH_SAVE_REGS;
2780
2781         domain = ((MonoObject *)type)->vtable->domain;
2782         klass = startklass = mono_class_from_mono_type (type->type);
2783         if (name != NULL) {
2784                 propname = mono_string_to_utf8 (name);
2785                 compare_func = (ignore_case) ? g_strcasecmp : strcmp;
2786         }
2787
2788 handle_parent:
2789         for (i = 0; i < klass->property.count; ++i) {
2790                 prop = &klass->properties [i];
2791                 match = 0;
2792                 method = prop->get;
2793                 if (!method)
2794                         method = prop->set;
2795                 if ((method->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK) == METHOD_ATTRIBUTE_PUBLIC) {
2796                         if (bflags & BFLAGS_Public)
2797                                 match++;
2798                 } else {
2799                         if (bflags & BFLAGS_NonPublic)
2800                                 match++;
2801                 }
2802                 if (!match)
2803                         continue;
2804                 match = 0;
2805                 if (method->flags & METHOD_ATTRIBUTE_STATIC) {
2806                         if (bflags & BFLAGS_Static)
2807                                 if ((bflags & BFLAGS_FlattenHierarchy) || (klass == startklass))
2808                                         match++;
2809                 } else {
2810                         if (bflags & BFLAGS_Instance)
2811                                 match++;
2812                 }
2813
2814                 if (!match)
2815                         continue;
2816                 match = 0;
2817
2818                 if (name != NULL) {
2819                         if (compare_func (propname, prop->name))
2820                                 continue;
2821                 }
2822                 
2823                 if (prop->get && prop->get->slot != -1) {
2824                         if (g_hash_table_lookup (method_slots, GUINT_TO_POINTER (prop->get->slot)))
2825                                 continue;
2826                         g_hash_table_insert (method_slots, GUINT_TO_POINTER (prop->get->slot), prop);
2827                 }
2828                 if (prop->set && prop->set->slot != -1) {
2829                         if (g_hash_table_lookup (method_slots, GUINT_TO_POINTER (prop->set->slot)))
2830                                 continue;
2831                         g_hash_table_insert (method_slots, GUINT_TO_POINTER (prop->set->slot), prop);
2832                 }
2833
2834                 l = g_slist_prepend (l, mono_property_get_object (domain, startklass, prop));
2835                 len++;
2836         }
2837         if ((!(bflags & BFLAGS_DeclaredOnly) && (klass = klass->parent)))
2838                 goto handle_parent;
2839
2840         g_free (propname);
2841         if (!System_Reflection_PropertyInfo)
2842                 System_Reflection_PropertyInfo = mono_class_from_name (
2843                         mono_defaults.corlib, "System.Reflection", "PropertyInfo");
2844         res = mono_array_new (domain, System_Reflection_PropertyInfo, len);
2845         i = 0;
2846
2847         tmp = l = g_slist_reverse (l);
2848
2849         for (; tmp; tmp = tmp->next, ++i)
2850                 mono_array_set (res, gpointer, i, tmp->data);
2851         g_slist_free (l);
2852         g_hash_table_destroy (method_slots);
2853         return res;
2854 }
2855
2856 static MonoReflectionEvent *
2857 ves_icall_MonoType_GetEvent (MonoReflectionType *type, MonoString *name, guint32 bflags)
2858 {
2859         MonoDomain *domain;
2860         MonoClass *klass, *startklass;
2861         gint i;
2862         MonoEvent *event;
2863         MonoMethod *method;
2864         gchar *event_name;
2865
2866         MONO_ARCH_SAVE_REGS;
2867
2868         event_name = mono_string_to_utf8 (name);
2869         klass = startklass = mono_class_from_mono_type (type->type);
2870         domain = mono_object_domain (type);
2871
2872 handle_parent:  
2873         for (i = 0; i < klass->event.count; i++) {
2874                 event = &klass->events [i];
2875                 if (strcmp (event->name, event_name))
2876                         continue;
2877
2878                 method = event->add;
2879                 if (!method)
2880                         method = event->remove;
2881                 if (!method)
2882                         method = event->raise;
2883                 if (method) {
2884                         if ((method->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK) == METHOD_ATTRIBUTE_PUBLIC) {
2885                                 if (!(bflags & BFLAGS_Public))
2886                                         continue;
2887                         } else {
2888                                 if (!(bflags & BFLAGS_NonPublic))
2889                                         continue;
2890                         }
2891                 }
2892                 else
2893                         if (!(bflags & BFLAGS_NonPublic))
2894                                 continue;
2895
2896                 g_free (event_name);
2897                 return mono_event_get_object (domain, startklass, event);
2898         }
2899
2900         if (!(bflags & BFLAGS_DeclaredOnly) && (klass = klass->parent))
2901                 goto handle_parent;
2902
2903         g_free (event_name);
2904         return NULL;
2905 }
2906
2907 static MonoArray*
2908 ves_icall_Type_GetEvents_internal (MonoReflectionType *type, guint32 bflags, MonoReflectionType *reftype)
2909 {
2910         MonoDomain *domain; 
2911         GSList *l = NULL, *tmp;
2912         static MonoClass *System_Reflection_EventInfo;
2913         MonoClass *startklass, *klass;
2914         MonoArray *res;
2915         MonoMethod *method;
2916         MonoEvent *event;
2917         int i, len, match;
2918
2919         MONO_ARCH_SAVE_REGS;
2920
2921         domain = ((MonoObject *)type)->vtable->domain;
2922         klass = startklass = mono_class_from_mono_type (type->type);
2923
2924 handle_parent:  
2925         for (i = 0; i < klass->event.count; ++i) {
2926                 event = &klass->events [i];
2927                 match = 0;
2928                 method = event->add;
2929                 if (!method)
2930                         method = event->remove;
2931                 if (!method)
2932                         method = event->raise;
2933                 if (method) {
2934                         if ((method->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK) == METHOD_ATTRIBUTE_PUBLIC) {
2935                                 if (bflags & BFLAGS_Public)
2936                                         match++;
2937                         } else {
2938                                 if (bflags & BFLAGS_NonPublic)
2939                                         match++;
2940                         }
2941                 }
2942                 else
2943                         if (bflags & BFLAGS_NonPublic)
2944                                 match ++;
2945                 if (!match)
2946                         continue;
2947                 match = 0;
2948                 if (method) {
2949                         if (method->flags & METHOD_ATTRIBUTE_STATIC) {
2950                                 if (bflags & BFLAGS_Static)
2951                                         if ((bflags & BFLAGS_FlattenHierarchy) || (klass == startklass))
2952                                                 match++;
2953                         } else {
2954                                 if (bflags & BFLAGS_Instance)
2955                                         match++;
2956                         }
2957                 }
2958                 else
2959                         if (bflags & BFLAGS_Instance)
2960                                 match ++;
2961                 if (!match)
2962                         continue;
2963                 match = 0;
2964                 l = g_slist_prepend (l, mono_event_get_object (domain, klass, event));
2965         }
2966         if (!(bflags & BFLAGS_DeclaredOnly) && (klass = klass->parent))
2967                 goto handle_parent;
2968         len = g_slist_length (l);
2969         if (!System_Reflection_EventInfo)
2970                 System_Reflection_EventInfo = mono_class_from_name (
2971                         mono_defaults.corlib, "System.Reflection", "EventInfo");
2972         res = mono_array_new (domain, System_Reflection_EventInfo, len);
2973         i = 0;
2974
2975         tmp = l = g_slist_reverse (l);
2976
2977         for (; tmp; tmp = tmp->next, ++i)
2978                 mono_array_set (res, gpointer, i, tmp->data);
2979         g_slist_free (l);
2980         return res;
2981 }
2982
2983 static MonoReflectionType *
2984 ves_icall_Type_GetNestedType (MonoReflectionType *type, MonoString *name, guint32 bflags)
2985 {
2986         MonoDomain *domain; 
2987         MonoClass *startklass, *klass;
2988         MonoClass *nested;
2989         GList *tmpn;
2990         char *str;
2991         
2992         MONO_ARCH_SAVE_REGS;
2993
2994         domain = ((MonoObject *)type)->vtable->domain;
2995         klass = startklass = mono_class_from_mono_type (type->type);
2996         str = mono_string_to_utf8 (name);
2997
2998  handle_parent:
2999         for (tmpn = klass->nested_classes; tmpn; tmpn = tmpn->next) {
3000                 int match = 0;
3001                 nested = tmpn->data;
3002                 if ((nested->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK) == TYPE_ATTRIBUTE_NESTED_PUBLIC) {
3003                         if (bflags & BFLAGS_Public)
3004                                 match++;
3005                 } else {
3006                         if (bflags & BFLAGS_NonPublic)
3007                                 match++;
3008                 }
3009                 if (!match)
3010                         continue;
3011                 if (strcmp (nested->name, str) == 0){
3012                         g_free (str);
3013                         return mono_type_get_object (domain, &nested->byval_arg);
3014                 }
3015         }
3016         if (!(bflags & BFLAGS_DeclaredOnly) && (klass = klass->parent))
3017                 goto handle_parent;
3018         g_free (str);
3019         return NULL;
3020 }
3021
3022 static MonoArray*
3023 ves_icall_Type_GetNestedTypes (MonoReflectionType *type, guint32 bflags)
3024 {
3025         MonoDomain *domain; 
3026         GSList *l = NULL, *tmp;
3027         GList *tmpn;
3028         MonoClass *startklass, *klass;
3029         MonoArray *res;
3030         MonoObject *member;
3031         int i, len, match;
3032         MonoClass *nested;
3033
3034         MONO_ARCH_SAVE_REGS;
3035
3036         domain = ((MonoObject *)type)->vtable->domain;
3037         klass = startklass = mono_class_from_mono_type (type->type);
3038
3039         for (tmpn = klass->nested_classes; tmpn; tmpn = tmpn->next) {
3040                 match = 0;
3041                 nested = tmpn->data;
3042                 if ((nested->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK) == TYPE_ATTRIBUTE_NESTED_PUBLIC) {
3043                         if (bflags & BFLAGS_Public)
3044                                 match++;
3045                 } else {
3046                         if (bflags & BFLAGS_NonPublic)
3047                                 match++;
3048                 }
3049                 if (!match)
3050                         continue;
3051                 member = (MonoObject*)mono_type_get_object (domain, &nested->byval_arg);
3052                 l = g_slist_prepend (l, member);
3053         }
3054         len = g_slist_length (l);
3055         res = mono_array_new (domain, mono_defaults.monotype_class, len);
3056         i = 0;
3057         tmp = l = g_slist_reverse (l);
3058         for (; tmp; tmp = tmp->next, ++i)
3059                 mono_array_set (res, gpointer, i, tmp->data);
3060         g_slist_free (l);
3061         return res;
3062 }
3063
3064 static MonoReflectionType*
3065 ves_icall_System_Reflection_Assembly_InternalGetType (MonoReflectionAssembly *assembly, MonoReflectionModule *module, MonoString *name, MonoBoolean throwOnError, MonoBoolean ignoreCase)
3066 {
3067         gchar *str;
3068         MonoType *type = NULL;
3069         MonoTypeNameParse info;
3070         gboolean type_resolve = FALSE;
3071
3072         MONO_ARCH_SAVE_REGS;
3073
3074         str = mono_string_to_utf8 (name);
3075         /*g_print ("requested type %s in %s\n", str, assembly->assembly->aname.name);*/
3076         if (!mono_reflection_parse_type (str, &info)) {
3077                 g_free (str);
3078                 g_list_free (info.modifiers);
3079                 g_list_free (info.nested);
3080                 if (throwOnError) /* uhm: this is a parse error, though... */
3081                         mono_raise_exception (mono_get_exception_type_load (name));
3082                 /*g_print ("failed parse\n");*/
3083                 return NULL;
3084         }
3085
3086         if (module != NULL) {
3087                 if (module->image)
3088                         type = mono_reflection_get_type (module->image, &info, ignoreCase, &type_resolve);
3089                 else
3090                         type = NULL;
3091         }
3092         else
3093                 if (assembly->assembly->dynamic) {
3094                         /* Enumerate all modules */
3095                         MonoReflectionAssemblyBuilder *abuilder = (MonoReflectionAssemblyBuilder*)assembly;
3096                         int i;
3097
3098                         type = NULL;
3099                         if (abuilder->modules) {
3100                                 for (i = 0; i < mono_array_length (abuilder->modules); ++i) {
3101                                         MonoReflectionModuleBuilder *mb = mono_array_get (abuilder->modules, MonoReflectionModuleBuilder*, i);
3102                                         type = mono_reflection_get_type (&mb->dynamic_image->image, &info, ignoreCase, &type_resolve);
3103                                         if (type)
3104                                                 break;
3105                                 }
3106                         }
3107
3108                         if (!type && abuilder->loaded_modules) {
3109                                 for (i = 0; i < mono_array_length (abuilder->loaded_modules); ++i) {
3110                                         MonoReflectionModule *mod = mono_array_get (abuilder->loaded_modules, MonoReflectionModule*, i);
3111                                         type = mono_reflection_get_type (mod->image, &info, ignoreCase, &type_resolve);
3112                                         if (type)
3113                                                 break;
3114                                 }
3115                         }
3116                 }
3117                 else
3118                         type = mono_reflection_get_type (assembly->assembly->image, &info, ignoreCase, &type_resolve);
3119         g_free (str);
3120         g_list_free (info.modifiers);
3121         g_list_free (info.nested);
3122         if (!type) {
3123                 if (throwOnError)
3124                         mono_raise_exception (mono_get_exception_type_load (name));
3125                 /* g_print ("failed find\n"); */
3126                 return NULL;
3127         }
3128         /* g_print ("got it\n"); */
3129         return mono_type_get_object (mono_object_domain (assembly), type);
3130
3131 }
3132
3133 static MonoString *
3134 ves_icall_System_Reflection_Assembly_get_code_base (MonoReflectionAssembly *assembly)
3135 {
3136         MonoDomain *domain = mono_object_domain (assembly); 
3137         MonoAssembly *mass = assembly->assembly;
3138         MonoString *res;
3139         gchar *uri;
3140         gchar *absolute;
3141         
3142         MONO_ARCH_SAVE_REGS;
3143
3144         absolute = g_build_filename (mass->basedir, mass->image->module_name, NULL);
3145         uri = g_filename_to_uri (absolute, NULL, NULL);
3146         res = mono_string_new (domain, uri);
3147         g_free (uri);
3148         g_free (absolute);
3149         return res;
3150 }
3151
3152 static MonoBoolean
3153 ves_icall_System_Reflection_Assembly_get_global_assembly_cache (MonoReflectionAssembly *assembly)
3154 {
3155         MonoAssembly *mass = assembly->assembly;
3156
3157         MONO_ARCH_SAVE_REGS;
3158
3159         return mass->in_gac;
3160 }
3161
3162 static MonoReflectionAssembly*
3163 ves_icall_System_Reflection_Assembly_load_with_partial_name (MonoString *mname, MonoObject *evidence)
3164 {
3165         gchar *name;
3166         MonoAssembly *res;
3167         MonoImageOpenStatus status;
3168         
3169         MONO_ARCH_SAVE_REGS;
3170
3171         name = mono_string_to_utf8 (mname);
3172         res = mono_assembly_load_with_partial_name (name, &status);
3173
3174         g_free (name);
3175
3176         if (res == NULL)
3177                 return NULL;
3178         return mono_assembly_get_object (mono_domain_get (), res);
3179 }
3180
3181 static MonoString *
3182 ves_icall_System_Reflection_Assembly_get_location (MonoReflectionAssembly *assembly)
3183 {
3184         MonoDomain *domain = mono_object_domain (assembly); 
3185         MonoString *res;
3186
3187         MONO_ARCH_SAVE_REGS;
3188
3189         res = mono_string_new (domain, mono_image_get_filename (assembly->assembly->image));
3190
3191         return res;
3192 }
3193
3194 static MonoString *
3195 ves_icall_System_Reflection_Assembly_InternalImageRuntimeVersion (MonoReflectionAssembly *assembly)
3196 {
3197         MonoDomain *domain = mono_object_domain (assembly); 
3198
3199         MONO_ARCH_SAVE_REGS;
3200
3201         return mono_string_new (domain, assembly->assembly->image->version);
3202 }
3203
3204 static MonoReflectionMethod*
3205 ves_icall_System_Reflection_Assembly_get_EntryPoint (MonoReflectionAssembly *assembly) 
3206 {
3207         guint32 token = mono_image_get_entry_point (assembly->assembly->image);
3208
3209         MONO_ARCH_SAVE_REGS;
3210
3211         if (!token)
3212                 return NULL;
3213         return mono_method_get_object (mono_object_domain (assembly), mono_get_method (assembly->assembly->image, token, NULL), NULL);
3214 }
3215
3216 static MonoReflectionModule*
3217 ves_icall_System_Reflection_Assembly_get_ManifestModule (MonoReflectionAssembly *assembly) 
3218 {
3219         return mono_module_get_object (mono_object_domain (assembly), assembly->assembly->image);
3220 }
3221
3222 static MonoArray*
3223 ves_icall_System_Reflection_Assembly_GetManifestResourceNames (MonoReflectionAssembly *assembly) 
3224 {
3225         MonoTableInfo *table = &assembly->assembly->image->tables [MONO_TABLE_MANIFESTRESOURCE];
3226         MonoArray *result = mono_array_new (mono_object_domain (assembly), mono_defaults.string_class, table->rows);
3227         int i;
3228         const char *val;
3229
3230         MONO_ARCH_SAVE_REGS;
3231
3232         for (i = 0; i < table->rows; ++i) {
3233                 val = mono_metadata_string_heap (assembly->assembly->image, mono_metadata_decode_row_col (table, i, MONO_MANIFEST_NAME));
3234                 mono_array_set (result, gpointer, i, mono_string_new (mono_object_domain (assembly), val));
3235         }
3236         return result;
3237 }
3238
3239 static MonoArray*
3240 ves_icall_System_Reflection_Assembly_GetReferencedAssemblies (MonoReflectionAssembly *assembly) 
3241 {
3242         static MonoClass *System_Reflection_AssemblyName;
3243         MonoArray *result;
3244         MonoDomain *domain = mono_object_domain (assembly);
3245         int i, count = 0;
3246         static MonoMethod *create_culture = NULL;
3247         MonoTableInfo *t;
3248
3249         MONO_ARCH_SAVE_REGS;
3250
3251         if (!System_Reflection_AssemblyName)
3252                 System_Reflection_AssemblyName = mono_class_from_name (
3253                         mono_defaults.corlib, "System.Reflection", "AssemblyName");
3254
3255         t = &assembly->assembly->image->tables [MONO_TABLE_ASSEMBLYREF];
3256         count = t->rows;
3257
3258         result = mono_array_new (domain, System_Reflection_AssemblyName, count);
3259
3260         if (count > 0) {
3261                 MonoMethodDesc *desc = mono_method_desc_new (
3262                         "System.Globalization.CultureInfo:CreateSpecificCulture(string)", TRUE);
3263                 create_culture = mono_method_desc_search_in_image (desc, mono_defaults.corlib);
3264                 g_assert (create_culture);
3265                 mono_method_desc_free (desc);
3266         }
3267
3268         for (i = 0; i < count; i++) {
3269                 MonoAssembly *assem;
3270                 MonoReflectionAssemblyName *aname;
3271                 char *codebase, *absolute;
3272
3273                 /* FIXME: There is no need to load the assemblies themselves */
3274                 mono_assembly_load_reference (assembly->assembly->image, i);
3275
3276                 assem = assembly->assembly->image->references [i];
3277                 if (assem == (gpointer)-1) {
3278                         char *msg = g_strdup_printf ("Assembly %d referenced from assembly %s not found ", i, assembly->assembly->image->name);
3279                         MonoException *ex = mono_get_exception_file_not_found2 (msg, NULL);
3280                         g_free (msg);
3281                         mono_raise_exception (ex);
3282                 }
3283
3284                 aname = (MonoReflectionAssemblyName *) mono_object_new (
3285                         domain, System_Reflection_AssemblyName);
3286
3287                 aname->name = mono_string_new (domain, assem->aname.name);
3288
3289                 aname->major = assem->aname.major;
3290                 aname->minor = assem->aname.minor;
3291                 aname->build = assem->aname.build;
3292                 aname->revision = assem->aname.revision;
3293                 aname->revision = assem->aname.revision;
3294                 aname->hashalg = assem->aname.hash_alg;
3295                 aname->flags = assem->aname.flags;
3296
3297                 if (create_culture) {
3298                         gpointer args [1];
3299                         args [0] = mono_string_new (domain, assem->aname.culture);
3300                         aname->cultureInfo = mono_runtime_invoke (create_culture, NULL, args, NULL);
3301                 }
3302
3303                 if (assem->aname.public_key) {
3304                         guint32 pkey_len;
3305                         const char *pkey_ptr = assem->aname.public_key;
3306                         pkey_len = mono_metadata_decode_blob_size (pkey_ptr, &pkey_ptr);
3307
3308                         aname->publicKey = mono_array_new (domain, mono_defaults.byte_class, pkey_len);
3309                         memcpy (mono_array_addr (aname->publicKey, guint8, 0), pkey_ptr, pkey_len);
3310                 }
3311
3312                 /* public key token isn't copied - the class library will 
3313                    automatically generate it from the public key if required */
3314
3315                 absolute = g_build_filename (assem->basedir, assem->image->module_name, NULL);
3316                 codebase = g_filename_to_uri (absolute, NULL, NULL);
3317                 aname->codebase = mono_string_new (domain, codebase);
3318                 g_free (codebase);
3319                 g_free (absolute);
3320                 mono_array_set (result, gpointer, i, aname);
3321         }
3322         return result;
3323 }
3324
3325 typedef struct {
3326         MonoArray *res;
3327         int idx;
3328 } NameSpaceInfo;
3329
3330 static void
3331 foreach_namespace (const char* key, gconstpointer val, NameSpaceInfo *info)
3332 {
3333         MonoString *name = mono_string_new (mono_object_domain (info->res), key);
3334
3335         mono_array_set (info->res, gpointer, info->idx, name);
3336         info->idx++;
3337 }
3338
3339 static MonoArray*
3340 ves_icall_System_Reflection_Assembly_GetNamespaces (MonoReflectionAssembly *assembly) 
3341 {
3342         MonoImage *img = assembly->assembly->image;
3343         int n;
3344         MonoArray *res;
3345         NameSpaceInfo info;
3346         MonoTableInfo  *t = &img->tables [MONO_TABLE_EXPORTEDTYPE];
3347         int i;
3348
3349         MONO_ARCH_SAVE_REGS;
3350
3351         n = g_hash_table_size (img->name_cache);
3352         res = mono_array_new (mono_object_domain (assembly), mono_defaults.string_class, n);
3353         info.res = res;
3354         info.idx = 0;
3355         g_hash_table_foreach (img->name_cache, (GHFunc)foreach_namespace, &info);
3356
3357         /* Add namespaces from the EXPORTEDTYPES table as well */
3358         if (t->rows) {
3359                 MonoArray *res2;
3360                 GPtrArray *nspaces = g_ptr_array_new ();
3361                 for (i = 0; i < t->rows; ++i) {
3362                         const char *nspace = mono_metadata_string_heap (img, mono_metadata_decode_row_col (t, i, MONO_EXP_TYPE_NAMESPACE));
3363                         if (!g_hash_table_lookup (img->name_cache, nspace)) {
3364                                 g_ptr_array_add (nspaces, (char*)nspace);
3365                         }
3366                 }
3367                 if (nspaces->len > 0) {
3368                         res2 = mono_array_new (mono_object_domain (assembly), mono_defaults.string_class, n + nspaces->len);
3369                         memcpy (mono_array_addr (res2, MonoString*, 0),
3370                                         mono_array_addr (res, MonoString*, 0),
3371                                         n * sizeof (MonoString*));
3372                         for (i = 0; i < nspaces->len; ++i)
3373                                 mono_array_set (res2, MonoString*, n + i, 
3374                                                                 mono_string_new (mono_object_domain (assembly),
3375                                                                                                  g_ptr_array_index (nspaces, i)));
3376                         res = res2;
3377                 }
3378                 g_ptr_array_free (nspaces, TRUE);
3379         }
3380
3381         return res;
3382 }
3383
3384 /* move this in some file in mono/util/ */
3385 static char *
3386 g_concat_dir_and_file (const char *dir, const char *file)
3387 {
3388         g_return_val_if_fail (dir != NULL, NULL);
3389         g_return_val_if_fail (file != NULL, NULL);
3390
3391         /*
3392          * If the directory name doesn't have a / on the end, we need
3393          * to add one so we get a proper path to the file
3394          */
3395         if (dir [strlen(dir) - 1] != G_DIR_SEPARATOR)
3396                 return g_strconcat (dir, G_DIR_SEPARATOR_S, file, NULL);
3397         else
3398                 return g_strconcat (dir, file, NULL);
3399 }
3400
3401 static void *
3402 ves_icall_System_Reflection_Assembly_GetManifestResourceInternal (MonoReflectionAssembly *assembly, MonoString *name, gint32 *size, MonoReflectionModule **ref_module) 
3403 {
3404         char *n = mono_string_to_utf8 (name);
3405         MonoTableInfo *table = &assembly->assembly->image->tables [MONO_TABLE_MANIFESTRESOURCE];
3406         guint32 i;
3407         guint32 cols [MONO_MANIFEST_SIZE];
3408         guint32 impl, file_idx;
3409         const char *val;
3410         MonoImage *module;
3411
3412         MONO_ARCH_SAVE_REGS;
3413
3414         for (i = 0; i < table->rows; ++i) {
3415                 mono_metadata_decode_row (table, i, cols, MONO_MANIFEST_SIZE);
3416                 val = mono_metadata_string_heap (assembly->assembly->image, cols [MONO_MANIFEST_NAME]);
3417                 if (strcmp (val, n) == 0)
3418                         break;
3419         }
3420         g_free (n);
3421         if (i == table->rows)
3422                 return NULL;
3423         /* FIXME */
3424         impl = cols [MONO_MANIFEST_IMPLEMENTATION];
3425         if (impl) {
3426                 /*
3427                  * this code should only be called after obtaining the 
3428                  * ResourceInfo and handling the other cases.
3429                  */
3430                 g_assert ((impl & MONO_IMPLEMENTATION_MASK) == MONO_IMPLEMENTATION_FILE);
3431                 file_idx = impl >> MONO_IMPLEMENTATION_BITS;
3432
3433                 module = mono_image_load_file_for_image (assembly->assembly->image, file_idx);
3434                 if (!module)
3435                         return NULL;
3436         }
3437         else
3438                 module = assembly->assembly->image;
3439
3440         *ref_module = mono_module_get_object (mono_domain_get (), module);
3441
3442         return (void*)mono_image_get_resource (module, cols [MONO_MANIFEST_OFFSET], size);
3443 }
3444
3445 static gboolean
3446 ves_icall_System_Reflection_Assembly_GetManifestResourceInfoInternal (MonoReflectionAssembly *assembly, MonoString *name, MonoManifestResourceInfo *info)
3447 {
3448         MonoTableInfo *table = &assembly->assembly->image->tables [MONO_TABLE_MANIFESTRESOURCE];
3449         int i;
3450         guint32 cols [MONO_MANIFEST_SIZE];
3451         guint32 file_cols [MONO_FILE_SIZE];
3452         const char *val;
3453         char *n;
3454
3455         MONO_ARCH_SAVE_REGS;
3456
3457         n = mono_string_to_utf8 (name);
3458         for (i = 0; i < table->rows; ++i) {
3459                 mono_metadata_decode_row (table, i, cols, MONO_MANIFEST_SIZE);
3460                 val = mono_metadata_string_heap (assembly->assembly->image, cols [MONO_MANIFEST_NAME]);
3461                 if (strcmp (val, n) == 0)
3462                         break;
3463         }
3464         g_free (n);
3465         if (i == table->rows)
3466                 return FALSE;
3467
3468         if (!cols [MONO_MANIFEST_IMPLEMENTATION]) {
3469                 info->location = RESOURCE_LOCATION_EMBEDDED | RESOURCE_LOCATION_IN_MANIFEST;
3470         }
3471         else {
3472                 switch (cols [MONO_MANIFEST_IMPLEMENTATION] & MONO_IMPLEMENTATION_MASK) {
3473                 case MONO_IMPLEMENTATION_FILE:
3474                         i = cols [MONO_MANIFEST_IMPLEMENTATION] >> MONO_IMPLEMENTATION_BITS;
3475                         table = &assembly->assembly->image->tables [MONO_TABLE_FILE];
3476                         mono_metadata_decode_row (table, i - 1, file_cols, MONO_FILE_SIZE);
3477                         val = mono_metadata_string_heap (assembly->assembly->image, file_cols [MONO_FILE_NAME]);
3478                         info->filename = mono_string_new (mono_object_domain (assembly), val);
3479                         if (file_cols [MONO_FILE_FLAGS] && FILE_CONTAINS_NO_METADATA)
3480                                 info->location = 0;
3481                         else
3482                                 info->location = RESOURCE_LOCATION_EMBEDDED;
3483                         break;
3484
3485                 case MONO_IMPLEMENTATION_ASSEMBLYREF:
3486                         i = cols [MONO_MANIFEST_IMPLEMENTATION] >> MONO_IMPLEMENTATION_BITS;
3487                         mono_assembly_load_reference (assembly->assembly->image, i - 1);
3488                         if (assembly->assembly->image->references [i - 1] == (gpointer)-1) {
3489                                 char *msg = g_strdup_printf ("Assembly %d referenced from assembly %s not found ", i - 1, assembly->assembly->image->name);
3490                                 MonoException *ex = mono_get_exception_file_not_found2 (msg, NULL);
3491                                 g_free (msg);
3492                                 mono_raise_exception (ex);
3493                         }
3494                         info->assembly = mono_assembly_get_object (mono_domain_get (), assembly->assembly->image->references [i - 1]);
3495
3496                         /* Obtain info recursively */
3497                         ves_icall_System_Reflection_Assembly_GetManifestResourceInfoInternal (info->assembly, name, info);
3498                         info->location |= RESOURCE_LOCATION_ANOTHER_ASSEMBLY;
3499                         break;
3500
3501                 case MONO_IMPLEMENTATION_EXP_TYPE:
3502                         g_assert_not_reached ();
3503                         break;
3504                 }
3505         }
3506
3507         return TRUE;
3508 }
3509
3510 static MonoObject*
3511 ves_icall_System_Reflection_Assembly_GetFilesInternal (MonoReflectionAssembly *assembly, MonoString *name) 
3512 {
3513         MonoTableInfo *table = &assembly->assembly->image->tables [MONO_TABLE_FILE];
3514         MonoArray *result = NULL;
3515         int i;
3516         const char *val;
3517         char *n;
3518
3519         MONO_ARCH_SAVE_REGS;
3520
3521         /* check hash if needed */
3522         if (name) {
3523                 n = mono_string_to_utf8 (name);
3524                 for (i = 0; i < table->rows; ++i) {
3525                         val = mono_metadata_string_heap (assembly->assembly->image, mono_metadata_decode_row_col (table, i, MONO_FILE_NAME));
3526                         if (strcmp (val, n) == 0) {
3527                                 MonoString *fn;
3528                                 g_free (n);
3529                                 n = g_concat_dir_and_file (assembly->assembly->basedir, val);
3530                                 fn = mono_string_new (mono_object_domain (assembly), n);
3531                                 g_free (n);
3532                                 return (MonoObject*)fn;
3533                         }
3534                 }
3535                 g_free (n);
3536                 return NULL;
3537         }
3538
3539         for (i = 0; i < table->rows; ++i) {
3540                 result = mono_array_new (mono_object_domain (assembly), mono_defaults.string_class, table->rows);
3541                 val = mono_metadata_string_heap (assembly->assembly->image, mono_metadata_decode_row_col (table, i, MONO_FILE_NAME));
3542                 n = g_concat_dir_and_file (assembly->assembly->basedir, val);
3543                 mono_array_set (result, gpointer, i, mono_string_new (mono_object_domain (assembly), n));
3544                 g_free (n);
3545         }
3546         return (MonoObject*)result;
3547 }
3548
3549 static MonoArray*
3550 ves_icall_System_Reflection_Assembly_GetModulesInternal (MonoReflectionAssembly *assembly)
3551 {
3552         MonoDomain *domain = mono_domain_get();
3553         MonoArray *res;
3554         MonoClass *klass;
3555         int i, module_count = 0, file_count = 0;
3556         MonoImage **modules = assembly->assembly->image->modules;
3557         MonoTableInfo *table;
3558
3559         if (modules) {
3560                 while (modules[module_count])
3561                         ++module_count;
3562         }
3563
3564         table = &assembly->assembly->image->tables [MONO_TABLE_FILE];
3565         file_count = table->rows;
3566
3567         g_assert( assembly->assembly->image != NULL);
3568         ++module_count;
3569
3570         klass = mono_class_from_name ( mono_defaults.corlib, "System.Reflection", "Module");
3571         res = mono_array_new (domain, klass, module_count + file_count);
3572
3573         mono_array_set (res, gpointer, 0, mono_module_get_object (domain, assembly->assembly->image));
3574         for ( i = 1; i < module_count; ++i )
3575                 mono_array_set (res, gpointer, i, mono_module_get_object (domain, modules[i]));
3576
3577         for (i = 0; i < table->rows; ++i)
3578                 mono_array_set (res, gpointer, module_count + i, mono_module_file_get_object (domain, assembly->assembly->image, i));
3579
3580         return res;
3581 }
3582
3583 static MonoReflectionMethod*
3584 ves_icall_GetCurrentMethod (void) 
3585 {
3586         MonoMethod *m = mono_method_get_last_managed ();
3587
3588         MONO_ARCH_SAVE_REGS;
3589
3590         return mono_method_get_object (mono_domain_get (), m, NULL);
3591 }
3592
3593 static MonoReflectionMethod*
3594 ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternal (MonoMethod *method)
3595 {
3596         return mono_method_get_object (mono_domain_get (), method, NULL);
3597 }
3598
3599 static MonoReflectionAssembly*
3600 ves_icall_System_Reflection_Assembly_GetExecutingAssembly (void)
3601 {
3602         MonoMethod *m = mono_method_get_last_managed ();
3603
3604         MONO_ARCH_SAVE_REGS;
3605
3606         return mono_assembly_get_object (mono_domain_get (), m->klass->image->assembly);
3607 }
3608
3609
3610 static gboolean
3611 get_caller (MonoMethod *m, gint32 no, gint32 ilo, gboolean managed, gpointer data)
3612 {
3613         MonoMethod **dest = data;
3614
3615         /* skip unmanaged frames */
3616         if (!managed)
3617                 return FALSE;
3618
3619         if (m == *dest) {
3620                 *dest = NULL;
3621                 return FALSE;
3622         }
3623         if (!(*dest)) {
3624                 *dest = m;
3625                 return TRUE;
3626         }
3627         return FALSE;
3628 }
3629
3630 static MonoReflectionAssembly*
3631 ves_icall_System_Reflection_Assembly_GetEntryAssembly (void)
3632 {
3633         MonoDomain* domain = mono_domain_get ();
3634
3635         MONO_ARCH_SAVE_REGS;
3636
3637         if (!domain->entry_assembly)
3638                 domain = mono_get_root_domain ();
3639
3640         return mono_assembly_get_object (domain, domain->entry_assembly);
3641 }
3642
3643
3644 static MonoReflectionAssembly*
3645 ves_icall_System_Reflection_Assembly_GetCallingAssembly (void)
3646 {
3647         MonoMethod *m = mono_method_get_last_managed ();
3648         MonoMethod *dest = m;
3649
3650         MONO_ARCH_SAVE_REGS;
3651
3652         mono_stack_walk (get_caller, &dest);
3653         if (!dest)
3654                 dest = m;
3655         return mono_assembly_get_object (mono_domain_get (), dest->klass->image->assembly);
3656 }
3657
3658 static MonoString *
3659 ves_icall_System_MonoType_getFullName (MonoReflectionType *object, gboolean full_name)
3660 {
3661         MonoDomain *domain = mono_object_domain (object); 
3662         MonoString *res;
3663         gchar *name;
3664
3665         MONO_ARCH_SAVE_REGS;
3666
3667         if (full_name)
3668                 name = mono_type_get_full_name (object->type);
3669         else
3670                 name = mono_type_get_name (object->type);
3671         res = mono_string_new (domain, name);
3672         g_free (name);
3673
3674         return res;
3675 }
3676
3677 static void
3678 fill_reflection_assembly_name (MonoDomain *domain, MonoReflectionAssemblyName *aname, MonoAssemblyName *name, const char *absolute)
3679 {
3680         static MonoMethod *create_culture = NULL;
3681     gpointer args [1];
3682         guint32 pkey_len;
3683         const char *pkey_ptr;
3684         gchar *codebase;
3685
3686         MONO_ARCH_SAVE_REGS;
3687
3688         aname->name = mono_string_new (domain, name->name);
3689         aname->major = name->major;
3690         aname->minor = name->minor;
3691         aname->build = name->build;
3692         aname->revision = name->revision;
3693         aname->hashalg = name->hash_alg;
3694
3695         codebase = g_filename_to_uri (absolute, NULL, NULL);
3696         if (codebase) {
3697                 aname->codebase = mono_string_new (domain, codebase);
3698                 g_free (codebase);
3699         }
3700
3701         if (!create_culture) {
3702                 MonoMethodDesc *desc = mono_method_desc_new ("System.Globalization.CultureInfo:CreateSpecificCulture(string)", TRUE);
3703                 create_culture = mono_method_desc_search_in_image (desc, mono_defaults.corlib);
3704                 g_assert (create_culture);
3705                 mono_method_desc_free (desc);
3706         }
3707
3708         args [0] = mono_string_new (domain, name->culture);
3709         aname->cultureInfo = 
3710                 mono_runtime_invoke (create_culture, NULL, args, NULL);
3711
3712         if (name->public_key) {
3713                 pkey_ptr = name->public_key;
3714                 pkey_len = mono_metadata_decode_blob_size (pkey_ptr, &pkey_ptr);
3715
3716                 aname->publicKey = mono_array_new (domain, mono_defaults.byte_class, pkey_len);
3717                 memcpy (mono_array_addr (aname->publicKey, guint8, 0), pkey_ptr, pkey_len);
3718         }
3719 }
3720
3721 static void
3722 ves_icall_System_Reflection_Assembly_FillName (MonoReflectionAssembly *assembly, MonoReflectionAssemblyName *aname)
3723 {
3724         gchar *absolute;
3725
3726         MONO_ARCH_SAVE_REGS;
3727
3728         absolute = g_build_filename (assembly->assembly->basedir, assembly->assembly->image->module_name, NULL);
3729
3730         fill_reflection_assembly_name (mono_object_domain (assembly), aname, 
3731                                                                    &assembly->assembly->aname, absolute);
3732
3733         g_free (absolute);
3734 }
3735
3736 static void
3737 ves_icall_System_Reflection_Assembly_InternalGetAssemblyName (MonoString *fname, MonoReflectionAssemblyName *aname)
3738 {
3739         char *filename;
3740         MonoImageOpenStatus status = MONO_IMAGE_OK;
3741         gboolean res;
3742         MonoImage *image;
3743         MonoAssemblyName name;
3744
3745         MONO_ARCH_SAVE_REGS;
3746
3747         filename = mono_string_to_utf8 (fname);
3748
3749         image = mono_image_open (filename, &status);
3750         
3751         if (!image){
3752                 MonoException *exc;
3753
3754                 g_free (filename);
3755                 exc = mono_get_exception_file_not_found (fname);
3756                 mono_raise_exception (exc);
3757         }
3758
3759         res = mono_assembly_fill_assembly_name (image, &name);
3760         if (!res) {
3761                 mono_image_close (image);
3762                 g_free (filename);
3763                 mono_raise_exception (mono_get_exception_argument ("assemblyFile", "The file does not contain a manifest"));
3764         }
3765
3766         fill_reflection_assembly_name (mono_domain_get (), aname, &name, filename);
3767
3768         g_free (filename);
3769         mono_image_close (image);
3770 }
3771
3772 static MonoArray*
3773 mono_module_get_types (MonoDomain *domain, MonoImage *image, 
3774                                            MonoBoolean exportedOnly)
3775 {
3776         MonoArray *res;
3777         MonoClass *klass;
3778         MonoTableInfo *tdef = &image->tables [MONO_TABLE_TYPEDEF];
3779         int i, count;
3780         guint32 attrs, visibility;
3781
3782         /* we start the count from 1 because we skip the special type <Module> */
3783         if (exportedOnly) {
3784                 count = 0;
3785                 for (i = 1; i < tdef->rows; ++i) {
3786                         attrs = mono_metadata_decode_row_col (tdef, i, MONO_TYPEDEF_FLAGS);
3787                         visibility = attrs & TYPE_ATTRIBUTE_VISIBILITY_MASK;
3788                         if (visibility == TYPE_ATTRIBUTE_PUBLIC || visibility == TYPE_ATTRIBUTE_NESTED_PUBLIC)
3789                                 count++;
3790                 }
3791         } else {
3792                 count = tdef->rows - 1;
3793         }
3794         res = mono_array_new (domain, mono_defaults.monotype_class, count);
3795         count = 0;
3796         for (i = 1; i < tdef->rows; ++i) {
3797                 attrs = mono_metadata_decode_row_col (tdef, i, MONO_TYPEDEF_FLAGS);
3798                 visibility = attrs & TYPE_ATTRIBUTE_VISIBILITY_MASK;
3799                 if (!exportedOnly || (visibility == TYPE_ATTRIBUTE_PUBLIC || visibility == TYPE_ATTRIBUTE_NESTED_PUBLIC)) {
3800                         klass = mono_class_get (image, (i + 1) | MONO_TOKEN_TYPE_DEF);
3801                         mono_array_set (res, gpointer, count, mono_type_get_object (domain, &klass->byval_arg));
3802                         count++;
3803                 }
3804         }
3805         
3806         return res;
3807 }
3808
3809 static MonoArray*
3810 ves_icall_System_Reflection_Assembly_GetTypes (MonoReflectionAssembly *assembly, MonoBoolean exportedOnly)
3811 {
3812         MonoArray *res = NULL;
3813         MonoImage *image = NULL;
3814         MonoTableInfo *table = NULL;
3815         MonoDomain *domain;
3816         int i;
3817
3818         MONO_ARCH_SAVE_REGS;
3819
3820         domain = mono_object_domain (assembly);
3821
3822         if (assembly->assembly->dynamic) {
3823                 MonoReflectionAssemblyBuilder *abuilder = (MonoReflectionAssemblyBuilder*)assembly;
3824                 if (abuilder->modules)
3825                         for (i = 0; i < mono_array_length(abuilder->modules); i++) {
3826                                 MonoReflectionModuleBuilder *mb = mono_array_get (abuilder->modules, MonoReflectionModuleBuilder*, i);
3827                                 if (res == NULL)
3828                                         res = mb->types;
3829                                 else {
3830                                         MonoArray *append = mb->types;
3831                                         if (mono_array_length (append) > 0) {
3832                                                 guint32 len1, len2;
3833                                                 MonoArray *new;
3834                                                 len1 = mono_array_length (res);
3835                                                 len2 = mono_array_length (append);
3836                                                 new = mono_array_new (domain, mono_defaults.monotype_class, len1 + len2);
3837                                                 memcpy (mono_array_addr (new, MonoReflectionType*, 0),
3838                                                         mono_array_addr (res, MonoReflectionType*, 0),
3839                                                         len1 * sizeof (MonoReflectionType*));
3840                                                 memcpy (mono_array_addr (new, MonoReflectionType*, len1),
3841                                                         mono_array_addr (append, MonoReflectionType*, 0),
3842                                                         len2 * sizeof (MonoReflectionType*));
3843                                                 res = new;
3844                                         }
3845                                 }
3846                         }
3847                 if (abuilder->loaded_modules)
3848                         for (i = 0; i < mono_array_length(abuilder->loaded_modules); i++) {
3849                                 MonoReflectionModule *rm = mono_array_get (abuilder->loaded_modules, MonoReflectionModule*, i);
3850                                 if (res == NULL)
3851                                         res = mono_module_get_types (domain, rm->image, exportedOnly);
3852                                 else {
3853                                         MonoArray *append = mono_module_get_types (domain, rm->image, exportedOnly);
3854                                         if (mono_array_length (append) > 0) {
3855                                                 guint32 len1, len2;
3856                                                 MonoArray *new;
3857                                                 len1 = mono_array_length (res);
3858                                                 len2 = mono_array_length (append);
3859                                                 new = mono_array_new (domain, mono_defaults.monotype_class, len1 + len2);
3860                                                 memcpy (mono_array_addr (new, MonoReflectionType*, 0),
3861                                                         mono_array_addr (res, MonoReflectionType*, 0),
3862                                                         len1 * sizeof (MonoReflectionType*));
3863                                                 memcpy (mono_array_addr (new, MonoReflectionType*, len1),
3864                                                         mono_array_addr (append, MonoReflectionType*, 0),
3865                                                         len2 * sizeof (MonoReflectionType*));
3866                                                 res = new;
3867                                         }
3868                                 }
3869                         }
3870                 return res;
3871         }
3872         image = assembly->assembly->image;
3873         table = &image->tables [MONO_TABLE_FILE];
3874         res = mono_module_get_types (domain, image, exportedOnly);
3875
3876         /* Append data from all modules in the assembly */
3877         for (i = 0; i < table->rows; ++i) {
3878                 if (!(mono_metadata_decode_row_col (table, i, MONO_FILE_FLAGS) & FILE_CONTAINS_NO_METADATA)) {
3879                         MonoImage *loaded_image = mono_assembly_load_module (image->assembly, i + 1);
3880                         if (loaded_image) {
3881                                 MonoArray *res2 = mono_module_get_types (domain, loaded_image, exportedOnly);
3882                                 /* Append the new types to the end of the array */
3883                                 if (mono_array_length (res2) > 0) {
3884                                         guint32 len1, len2;
3885                                         MonoArray *res3;
3886
3887                                         len1 = mono_array_length (res);
3888                                         len2 = mono_array_length (res2);
3889                                         res3 = mono_array_new (domain, mono_defaults.monotype_class, len1 + len2);
3890                                         memcpy (mono_array_addr (res3, MonoReflectionType*, 0),
3891                                                         mono_array_addr (res, MonoReflectionType*, 0),
3892                                                         len1 * sizeof (MonoReflectionType*));
3893                                         memcpy (mono_array_addr (res3, MonoReflectionType*, len1),
3894                                                         mono_array_addr (res2, MonoReflectionType*, 0),
3895                                                         len2 * sizeof (MonoReflectionType*));
3896                                         res = res3;
3897                                 }
3898                         }
3899                 }
3900         }               
3901         return res;
3902 }
3903
3904 static MonoReflectionType*
3905 ves_icall_System_Reflection_Module_GetGlobalType (MonoReflectionModule *module)
3906 {
3907         MonoDomain *domain = mono_object_domain (module); 
3908         MonoClass *klass;
3909
3910         MONO_ARCH_SAVE_REGS;
3911
3912         g_assert (module->image);
3913         klass = mono_class_get (module->image, 1 | MONO_TOKEN_TYPE_DEF);
3914         return mono_type_get_object (domain, &klass->byval_arg);
3915 }
3916
3917 static void
3918 ves_icall_System_Reflection_Module_Close (MonoReflectionModule *module)
3919 {
3920         if (module->image)
3921                 mono_image_close (module->image);
3922 }
3923
3924 static MonoString*
3925 ves_icall_System_Reflection_Module_GetGuidInternal (MonoReflectionModule *module)
3926 {
3927         MonoDomain *domain = mono_object_domain (module); 
3928
3929         MONO_ARCH_SAVE_REGS;
3930
3931         g_assert (module->image);
3932         return mono_string_new (domain, module->image->guid);
3933 }
3934
3935 static void
3936 ves_icall_System_Reflection_Module_GetPEKind (MonoImage *image, gint32 *pe_kind, gint32 *machine)
3937 {
3938         if (image->dynamic) {
3939                 *pe_kind = 0x1; /* ILOnly */
3940                 *machine = 0x14c; /* I386 */
3941         }
3942         else {
3943                 *pe_kind = ((MonoCLIImageInfo*)(image->image_info))->cli_cli_header.ch_flags & 0x3;
3944                 *machine = ((MonoCLIImageInfo*)(image->image_info))->cli_header.coff.coff_machine;
3945         }
3946 }
3947
3948 static MonoArray*
3949 ves_icall_System_Reflection_Module_InternalGetTypes (MonoReflectionModule *module)
3950 {
3951         MONO_ARCH_SAVE_REGS;
3952
3953         if (!module->image)
3954                 return mono_array_new (mono_object_domain (module), mono_defaults.monotype_class, 0);
3955         else
3956                 return mono_module_get_types (mono_object_domain (module), module->image, FALSE);
3957 }
3958
3959 static gboolean
3960 mono_metadata_memberref_is_method (MonoImage *image, guint32 token)
3961 {
3962         guint32 cols [MONO_MEMBERREF_SIZE];
3963         const char *sig;
3964         mono_metadata_decode_row (&image->tables [MONO_TABLE_MEMBERREF], mono_metadata_token_index (token) - 1, cols, MONO_MEMBERREF_SIZE);
3965         sig = mono_metadata_blob_heap (image, cols [MONO_MEMBERREF_SIGNATURE]);
3966         mono_metadata_decode_blob_size (sig, &sig);
3967         return (*sig == 0x6);
3968 }
3969
3970 static MonoType*
3971 ves_icall_System_Reflection_Module_ResolveTypeToken (MonoImage *image, guint32 token, MonoResolveTokenError *error)
3972 {
3973         MonoClass *klass;
3974         int table = mono_metadata_token_table (token);
3975         int index = mono_metadata_token_index (token);
3976
3977         *error = ResolveTokenError_Other;
3978
3979         /* Validate token */
3980         if ((table != MONO_TABLE_TYPEDEF) && (table != MONO_TABLE_TYPEREF) && 
3981                 (table != MONO_TABLE_TYPESPEC)) {
3982                 *error = ResolveTokenError_BadTable;
3983                 return NULL;
3984         }
3985
3986         if (image->dynamic)
3987                 return mono_lookup_dynamic_token (image, token);
3988
3989         if ((index <= 0) || (index > image->tables [table].rows)) {
3990                 *error = ResolveTokenError_OutOfRange;
3991                 return NULL;
3992         }
3993
3994         klass = mono_class_get (image, token);
3995         if (klass)
3996                 return &klass->byval_arg;
3997         else
3998                 return NULL;
3999 }
4000
4001 static MonoMethod*
4002 ves_icall_System_Reflection_Module_ResolveMethodToken (MonoImage *image, guint32 token, MonoResolveTokenError *error)
4003 {
4004         int table = mono_metadata_token_table (token);
4005         int index = mono_metadata_token_index (token);
4006
4007         *error = ResolveTokenError_Other;
4008
4009         /* Validate token */
4010         if ((table != MONO_TABLE_METHOD) && (table != MONO_TABLE_METHODSPEC) && 
4011                 (table != MONO_TABLE_MEMBERREF)) {
4012                 *error = ResolveTokenError_BadTable;
4013                 return NULL;
4014         }
4015
4016         if (image->dynamic)
4017                 /* FIXME: validate memberref token type */
4018                 return mono_lookup_dynamic_token (image, token);
4019
4020         if ((index <= 0) || (index > image->tables [table].rows)) {
4021                 *error = ResolveTokenError_OutOfRange;
4022                 return NULL;
4023         }
4024         if ((table == MONO_TABLE_MEMBERREF) && (!mono_metadata_memberref_is_method (image, token))) {
4025                 *error = ResolveTokenError_BadTable;
4026                 return NULL;
4027         }
4028
4029         return mono_get_method (image, token, NULL);
4030 }
4031
4032 static MonoString*
4033 ves_icall_System_Reflection_Module_ResolveStringToken (MonoImage *image, guint32 token, MonoResolveTokenError *error)
4034 {
4035         int index = mono_metadata_token_index (token);
4036
4037         *error = ResolveTokenError_Other;
4038
4039         /* Validate token */
4040         if (mono_metadata_token_code (token) != MONO_TOKEN_STRING) {
4041                 *error = ResolveTokenError_BadTable;
4042                 return NULL;
4043         }
4044
4045         if (image->dynamic)
4046                 return mono_lookup_dynamic_token (image, token);
4047
4048         if ((index <= 0) || (index >= image->heap_us.size)) {
4049                 *error = ResolveTokenError_OutOfRange;
4050                 return NULL;
4051         }
4052
4053         /* FIXME: What to do if the index points into the middle of a string ? */
4054
4055         return mono_ldstr (mono_domain_get (), image, index);
4056 }
4057
4058 static MonoClassField*
4059 ves_icall_System_Reflection_Module_ResolveFieldToken (MonoImage *image, guint32 token, MonoResolveTokenError *error)
4060 {
4061         MonoClass *klass;
4062         int table = mono_metadata_token_table (token);
4063         int index = mono_metadata_token_index (token);
4064
4065         *error = ResolveTokenError_Other;
4066
4067         /* Validate token */
4068         if ((table != MONO_TABLE_FIELD) && (table != MONO_TABLE_MEMBERREF)) {
4069                 *error = ResolveTokenError_BadTable;
4070                 return NULL;
4071         }
4072
4073         if (image->dynamic)
4074                 /* FIXME: validate memberref token type */
4075                 return mono_lookup_dynamic_token (image, token);
4076
4077         if ((index <= 0) || (index > image->tables [table].rows)) {
4078                 *error = ResolveTokenError_OutOfRange;
4079                 return NULL;
4080         }
4081         if ((table == MONO_TABLE_MEMBERREF) && (mono_metadata_memberref_is_method (image, token))) {
4082                 *error = ResolveTokenError_BadTable;
4083                 return NULL;
4084         }
4085
4086         return mono_field_from_token (image, token, &klass, NULL);
4087 }
4088
4089
4090 static MonoObject*
4091 ves_icall_System_Reflection_Module_ResolveMemberToken (MonoImage *image, guint32 token, MonoResolveTokenError *error)
4092 {
4093         int table = mono_metadata_token_table (token);
4094
4095         *error = ResolveTokenError_Other;
4096
4097         switch (table) {
4098         case MONO_TABLE_TYPEDEF:
4099         case MONO_TABLE_TYPEREF:
4100         case MONO_TABLE_TYPESPEC: {
4101                 MonoType *t = ves_icall_System_Reflection_Module_ResolveTypeToken (image, token, error);
4102                 if (t)
4103                         return (MonoObject*)mono_type_get_object (mono_domain_get (), t);
4104                 else
4105                         return NULL;
4106         }
4107         case MONO_TABLE_METHOD:
4108         case MONO_TABLE_METHODSPEC: {
4109                 MonoMethod *m = ves_icall_System_Reflection_Module_ResolveMethodToken (image, token, error);
4110                 if (m)
4111                         return (MonoObject*)mono_method_get_object (mono_domain_get (), m, m->klass);
4112                 else
4113                         return NULL;
4114         }               
4115         case MONO_TABLE_FIELD: {
4116                 MonoClassField *f = ves_icall_System_Reflection_Module_ResolveFieldToken (image, token, error);
4117                 if (f)
4118                         return (MonoObject*)mono_field_get_object (mono_domain_get (), f->parent, f);
4119                 else
4120                         return NULL;
4121         }
4122         case MONO_TABLE_MEMBERREF:
4123                 if (mono_metadata_memberref_is_method (image, token)) {
4124                         MonoMethod *m = ves_icall_System_Reflection_Module_ResolveMethodToken (image, token, error);
4125                         if (m)
4126                                 return (MonoObject*)mono_method_get_object (mono_domain_get (), m, m->klass);
4127                         else
4128                                 return NULL;
4129                 }
4130                 else {
4131                         MonoClassField *f = ves_icall_System_Reflection_Module_ResolveFieldToken (image, token, error);
4132                         if (f)
4133                                 return (MonoObject*)mono_field_get_object (mono_domain_get (), f->parent, f);
4134                         else
4135                                 return NULL;
4136                 }
4137                 break;
4138
4139         default:
4140                 *error = ResolveTokenError_BadTable;
4141         }
4142
4143         return NULL;
4144 }
4145
4146 static MonoReflectionType*
4147 ves_icall_ModuleBuilder_create_modified_type (MonoReflectionTypeBuilder *tb, MonoString *smodifiers)
4148 {
4149         MonoClass *klass;
4150         int isbyref = 0, rank;
4151         char *str = mono_string_to_utf8 (smodifiers);
4152         char *p;
4153
4154         MONO_ARCH_SAVE_REGS;
4155
4156         klass = mono_class_from_mono_type (tb->type.type);
4157         p = str;
4158         /* logic taken from mono_reflection_parse_type(): keep in sync */
4159         while (*p) {
4160                 switch (*p) {
4161                 case '&':
4162                         if (isbyref) { /* only one level allowed by the spec */
4163                                 g_free (str);
4164                                 return NULL;
4165                         }
4166                         isbyref = 1;
4167                         p++;
4168                         g_free (str);
4169                         return mono_type_get_object (mono_object_domain (tb), &klass->this_arg);
4170                         break;
4171                 case '*':
4172                         klass = mono_ptr_class_get (&klass->byval_arg);
4173                         mono_class_init (klass);
4174                         p++;
4175                         break;
4176                 case '[':
4177                         rank = 1;
4178                         p++;
4179                         while (*p) {
4180                                 if (*p == ']')
4181                                         break;
4182                                 if (*p == ',')
4183                                         rank++;
4184                                 else if (*p != '*') { /* '*' means unknown lower bound */
4185                                         g_free (str);
4186                                         return NULL;
4187                                 }
4188                                 ++p;
4189                         }
4190                         if (*p != ']') {
4191                                 g_free (str);
4192                                 return NULL;
4193                         }
4194                         p++;
4195                         klass = mono_array_class_get (klass, rank);
4196                         mono_class_init (klass);
4197                         break;
4198                 default:
4199                         break;
4200                 }
4201         }
4202         g_free (str);
4203         return mono_type_get_object (mono_object_domain (tb), &klass->byval_arg);
4204 }
4205
4206 static MonoBoolean
4207 ves_icall_Type_IsArrayImpl (MonoReflectionType *t)
4208 {
4209         MonoType *type;
4210         MonoBoolean res;
4211
4212         MONO_ARCH_SAVE_REGS;
4213
4214         type = t->type;
4215         res = !type->byref && (type->type == MONO_TYPE_ARRAY || type->type == MONO_TYPE_SZARRAY);
4216
4217         return res;
4218 }
4219
4220 static MonoReflectionType *
4221 ves_icall_Type_make_array_type (MonoReflectionType *type, int rank)
4222 {
4223         MonoClass *klass, *aklass;
4224
4225         MONO_ARCH_SAVE_REGS;
4226
4227         klass = mono_class_from_mono_type (type->type);
4228         aklass = mono_array_class_get (klass, rank);
4229
4230         return mono_type_get_object (mono_object_domain (type), &aklass->byval_arg);
4231 }
4232
4233 static MonoReflectionType *
4234 ves_icall_Type_make_byref_type (MonoReflectionType *type)
4235 {
4236         MonoClass *klass;
4237
4238         MONO_ARCH_SAVE_REGS;
4239
4240         klass = mono_class_from_mono_type (type->type);
4241
4242         return mono_type_get_object (mono_object_domain (type), &klass->this_arg);
4243 }
4244
4245 static MonoObject *
4246 ves_icall_System_Delegate_CreateDelegate_internal (MonoReflectionType *type, MonoObject *target,
4247                                                    MonoReflectionMethod *info)
4248 {
4249         MonoClass *delegate_class = mono_class_from_mono_type (type->type);
4250         MonoObject *delegate;
4251         gpointer func;
4252
4253         MONO_ARCH_SAVE_REGS;
4254
4255         mono_assert (delegate_class->parent == mono_defaults.multicastdelegate_class);
4256
4257         delegate = mono_object_new (mono_object_domain (type), delegate_class);
4258
4259         func = mono_compile_method (info->method);
4260
4261         mono_delegate_ctor (delegate, target, func);
4262
4263         return delegate;
4264 }
4265
4266 static void
4267 ves_icall_System_Delegate_FreeTrampoline (MonoDelegate *this)
4268 {
4269         mono_delegate_free_ftnptr (this);
4270 }
4271
4272 /*
4273  * Magic number to convert a time which is relative to
4274  * Jan 1, 1970 into a value which is relative to Jan 1, 0001.
4275  */
4276 #define EPOCH_ADJUST    ((guint64)62135596800LL)
4277
4278 /*
4279  * Magic number to convert FILETIME base Jan 1, 1601 to DateTime - base Jan, 1, 0001
4280  */
4281 #define FILETIME_ADJUST ((guint64)504911232000000000LL)
4282
4283 /*
4284  * This returns Now in UTC
4285  */
4286 static gint64
4287 ves_icall_System_DateTime_GetNow (void)
4288 {
4289 #ifdef PLATFORM_WIN32
4290         SYSTEMTIME st;
4291         FILETIME ft;
4292         
4293         GetSystemTime (&st);
4294         SystemTimeToFileTime (&st, &ft);
4295         return (gint64) FILETIME_ADJUST + ((((gint64)ft.dwHighDateTime)<<32) | ft.dwLowDateTime);
4296 #else
4297         /* FIXME: put this in io-layer and call it GetLocalTime */
4298         struct timeval tv;
4299         gint64 res;
4300
4301         MONO_ARCH_SAVE_REGS;
4302
4303         if (gettimeofday (&tv, NULL) == 0) {
4304                 res = (((gint64)tv.tv_sec + EPOCH_ADJUST)* 1000000 + tv.tv_usec)*10;
4305                 return res;
4306         }
4307         /* fixme: raise exception */
4308         return 0;
4309 #endif
4310 }
4311
4312 #ifdef PLATFORM_WIN32
4313 /* convert a SYSTEMTIME which is of the form "last thursday in october" to a real date */
4314 static void
4315 convert_to_absolute_date(SYSTEMTIME *date)
4316 {
4317 #define IS_LEAP(y) ((y % 4) == 0 && ((y % 100) != 0 || (y % 400) == 0))
4318         static int days_in_month[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
4319         static int leap_days_in_month[] = { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
4320         /* from the calendar FAQ */
4321         int a = (14 - date->wMonth) / 12;
4322         int y = date->wYear - a;
4323         int m = date->wMonth + 12 * a - 2;
4324         int d = (1 + y + y/4 - y/100 + y/400 + (31*m)/12) % 7;
4325
4326         /* d is now the day of the week for the first of the month (0 == Sunday) */
4327
4328         int day_of_week = date->wDayOfWeek;
4329
4330         /* set day_in_month to the first day in the month which falls on day_of_week */    
4331         int day_in_month = 1 + (day_of_week - d);
4332         if (day_in_month <= 0)
4333                 day_in_month += 7;
4334
4335         /* wDay is 1 for first weekday in month, 2 for 2nd ... 5 means last - so work that out allowing for days in the month */
4336         date->wDay = day_in_month + (date->wDay - 1) * 7;
4337         if (date->wDay > (IS_LEAP(date->wYear) ? leap_days_in_month[date->wMonth - 1] : days_in_month[date->wMonth - 1]))
4338                 date->wDay -= 7;
4339 }
4340 #endif
4341
4342 #ifndef PLATFORM_WIN32
4343 /*
4344  * Return's the offset from GMT of a local time.
4345  * 
4346  *  tm is a local time
4347  *  t  is the same local time as seconds.
4348  */
4349 static int 
4350 gmt_offset(struct tm *tm, time_t t)
4351 {
4352 #if defined (HAVE_TM_GMTOFF)
4353         return tm->tm_gmtoff;
4354 #else
4355         struct tm g;
4356         time_t t2;
4357         g = *gmtime(&t);
4358         g.tm_isdst = tm->tm_isdst;
4359         t2 = mktime(&g);
4360         return (int)difftime(t, t2);
4361 #endif
4362 }
4363 #endif
4364 /*
4365  * This is heavily based on zdump.c from glibc 2.2.
4366  *
4367  *  * data[0]:  start of daylight saving time (in DateTime ticks).
4368  *  * data[1]:  end of daylight saving time (in DateTime ticks).
4369  *  * data[2]:  utcoffset (in TimeSpan ticks).
4370  *  * data[3]:  additional offset when daylight saving (in TimeSpan ticks).
4371  *  * name[0]:  name of this timezone when not daylight saving.
4372  *  * name[1]:  name of this timezone when daylight saving.
4373  *
4374  *  FIXME: This only works with "standard" Unix dates (years between 1900 and 2100) while
4375  *         the class library allows years between 1 and 9999.
4376  *
4377  *  Returns true on success and zero on failure.
4378  */
4379 static guint32
4380 ves_icall_System_CurrentTimeZone_GetTimeZoneData (guint32 year, MonoArray **data, MonoArray **names)
4381 {
4382 #ifndef PLATFORM_WIN32
4383         MonoDomain *domain = mono_domain_get ();
4384         struct tm start, tt;
4385         time_t t;
4386
4387         long int gmtoff;
4388         int is_daylight = 0, day;
4389         char tzone [64];
4390
4391         MONO_ARCH_SAVE_REGS;
4392
4393         MONO_CHECK_ARG_NULL (data);
4394         MONO_CHECK_ARG_NULL (names);
4395
4396         (*data) = mono_array_new (domain, mono_defaults.int64_class, 4);
4397         (*names) = mono_array_new (domain, mono_defaults.string_class, 2);
4398
4399         /* 
4400          * no info is better than crashing: we'll need our own tz data to make 
4401          * this work properly, anyway. The range is reduced to 1970 .. 2037 because
4402          * that is what mktime is guaranteed to support (we get into an infinite loop 
4403          * otherwise).
4404          */
4405         if ((year < 1970) || (year > 2037)) {
4406                 t = time (NULL);
4407                 tt = *localtime (&t);
4408                 strftime (tzone, sizeof (tzone), "%Z", &tt);
4409                 mono_array_set ((*names), gpointer, 0, mono_string_new (domain, tzone));
4410                 mono_array_set ((*names), gpointer, 1, mono_string_new (domain, tzone));
4411                 return 1;
4412         }
4413
4414         memset (&start, 0, sizeof (start));
4415
4416         start.tm_mday = 1;
4417         start.tm_year = year-1900;
4418
4419         t = mktime (&start);
4420         gmtoff = gmt_offset (&start, t);
4421
4422         /* For each day of the year, calculate the tm_gmtoff. */
4423         for (day = 0; day < 365; day++) {
4424
4425                 t += 3600*24;
4426                 tt = *localtime (&t);
4427
4428                 /* Daylight saving starts or ends here. */
4429                 if (gmt_offset (&tt, t) != gmtoff) {
4430                         struct tm tt1;
4431                         time_t t1;
4432
4433                         /* Try to find the exact hour when daylight saving starts/ends. */
4434                         t1 = t;
4435                         do {
4436                                 t1 -= 3600;
4437                                 tt1 = *localtime (&t1);
4438                         } while (gmt_offset (&tt1, t1) != gmtoff);
4439
4440                         /* Try to find the exact minute when daylight saving starts/ends. */
4441                         do {
4442                                 t1 += 60;
4443                                 tt1 = *localtime (&t1);
4444                         } while (gmt_offset (&tt1, t1) == gmtoff);
4445                         t1+=gmtoff;
4446                         strftime (tzone, sizeof (tzone), "%Z", &tt);
4447                         
4448                         /* Write data, if we're already in daylight saving, we're done. */
4449                         if (is_daylight) {
4450                                 mono_array_set ((*names), gpointer, 0, mono_string_new (domain, tzone));
4451                                 mono_array_set ((*data), gint64, 1, ((gint64)t1 + EPOCH_ADJUST) * 10000000L);
4452                                 return 1;
4453                         } else {
4454                                 mono_array_set ((*names), gpointer, 1, mono_string_new (domain, tzone));
4455                                 mono_array_set ((*data), gint64, 0, ((gint64)t1 + EPOCH_ADJUST) * 10000000L);
4456                                 is_daylight = 1;
4457                         }
4458
4459                         /* This is only set once when we enter daylight saving. */
4460                         mono_array_set ((*data), gint64, 2, (gint64)gmtoff * 10000000L);
4461                         mono_array_set ((*data), gint64, 3, (gint64)(gmt_offset (&tt, t) - gmtoff) * 10000000L);
4462
4463                         gmtoff = gmt_offset (&tt, t);
4464                 }
4465         }
4466
4467         if (!is_daylight) {
4468                 strftime (tzone, sizeof (tzone), "%Z", &tt);
4469                 mono_array_set ((*names), gpointer, 0, mono_string_new (domain, tzone));
4470                 mono_array_set ((*names), gpointer, 1, mono_string_new (domain, tzone));
4471                 mono_array_set ((*data), gint64, 0, 0);
4472                 mono_array_set ((*data), gint64, 1, 0);
4473                 mono_array_set ((*data), gint64, 2, (gint64) gmtoff * 10000000L);
4474                 mono_array_set ((*data), gint64, 3, 0);
4475         }
4476
4477         return 1;
4478 #else
4479         MonoDomain *domain = mono_domain_get ();
4480         TIME_ZONE_INFORMATION tz_info;
4481         FILETIME ft;
4482         int i;
4483         int err, tz_id;
4484
4485         tz_id = GetTimeZoneInformation (&tz_info);
4486         if (tz_id == TIME_ZONE_ID_INVALID)
4487                 return 0;
4488
4489         MONO_CHECK_ARG_NULL (data);
4490         MONO_CHECK_ARG_NULL (names);
4491
4492         (*data) = mono_array_new (domain, mono_defaults.int64_class, 4);
4493         (*names) = mono_array_new (domain, mono_defaults.string_class, 2);
4494
4495         for (i = 0; i < 32; ++i)
4496                 if (!tz_info.DaylightName [i])
4497                         break;
4498         mono_array_set ((*names), gpointer, 1, mono_string_new_utf16 (domain, tz_info.DaylightName, i));
4499         for (i = 0; i < 32; ++i)
4500                 if (!tz_info.StandardName [i])
4501                         break;
4502         mono_array_set ((*names), gpointer, 0, mono_string_new_utf16 (domain, tz_info.StandardName, i));
4503
4504         if ((year <= 1601) || (year > 30827)) {
4505                 /*
4506                  * According to MSDN, the MS time functions can't handle dates outside
4507                  * this interval.
4508                  */
4509                 return 1;
4510         }
4511
4512         /* even if the timezone has no daylight savings it may have Bias (e.g. GMT+13 it seems) */
4513         if (tz_id != TIME_ZONE_ID_UNKNOWN) {
4514                 tz_info.StandardDate.wYear = year;
4515                 convert_to_absolute_date(&tz_info.StandardDate);
4516                 err = SystemTimeToFileTime (&tz_info.StandardDate, &ft);
4517                 g_assert(err);
4518                 mono_array_set ((*data), gint64, 1, FILETIME_ADJUST + (((guint64)ft.dwHighDateTime<<32) | ft.dwLowDateTime));
4519                 tz_info.DaylightDate.wYear = year;
4520                 convert_to_absolute_date(&tz_info.DaylightDate);
4521                 err = SystemTimeToFileTime (&tz_info.DaylightDate, &ft);
4522                 g_assert(err);
4523                 mono_array_set ((*data), gint64, 0, FILETIME_ADJUST + (((guint64)ft.dwHighDateTime<<32) | ft.dwLowDateTime));
4524         }
4525         mono_array_set ((*data), gint64, 2, (tz_info.Bias + tz_info.StandardBias) * -600000000LL);
4526         mono_array_set ((*data), gint64, 3, (tz_info.DaylightBias - tz_info.StandardBias) * -600000000LL);
4527
4528         return 1;
4529 #endif
4530 }
4531
4532 static gpointer
4533 ves_icall_System_Object_obj_address (MonoObject *this) 
4534 {
4535         MONO_ARCH_SAVE_REGS;
4536
4537         return this;
4538 }
4539
4540 /* System.Buffer */
4541
4542 static inline gint32 
4543 mono_array_get_byte_length (MonoArray *array)
4544 {
4545         MonoClass *klass;
4546         int length;
4547         int i;
4548
4549         klass = array->obj.vtable->klass;
4550
4551         if (array->bounds == NULL)
4552                 length = array->max_length;
4553         else {
4554                 length = 1;
4555                 for (i = 0; i < klass->rank; ++ i)
4556                         length *= array->bounds [i].length;
4557         }
4558
4559         switch (klass->element_class->byval_arg.type) {
4560         case MONO_TYPE_I1:
4561         case MONO_TYPE_U1:
4562         case MONO_TYPE_BOOLEAN:
4563                 return length;
4564         case MONO_TYPE_I2:
4565         case MONO_TYPE_U2:
4566         case MONO_TYPE_CHAR:
4567                 return length << 1;
4568         case MONO_TYPE_I4:
4569         case MONO_TYPE_U4:
4570         case MONO_TYPE_R4:
4571                 return length << 2;
4572         case MONO_TYPE_I:
4573         case MONO_TYPE_U:
4574                 return length * sizeof (gpointer);
4575         case MONO_TYPE_I8:
4576         case MONO_TYPE_U8:
4577         case MONO_TYPE_R8:
4578                 return length << 3;
4579         default:
4580                 return -1;
4581         }
4582 }
4583
4584 static gint32 
4585 ves_icall_System_Buffer_ByteLengthInternal (MonoArray *array) 
4586 {
4587         MONO_ARCH_SAVE_REGS;
4588
4589         return mono_array_get_byte_length (array);
4590 }
4591
4592 static gint8 
4593 ves_icall_System_Buffer_GetByteInternal (MonoArray *array, gint32 idx) 
4594 {
4595         MONO_ARCH_SAVE_REGS;
4596
4597         return mono_array_get (array, gint8, idx);
4598 }
4599
4600 static void 
4601 ves_icall_System_Buffer_SetByteInternal (MonoArray *array, gint32 idx, gint8 value) 
4602 {
4603         MONO_ARCH_SAVE_REGS;
4604
4605         mono_array_set (array, gint8, idx, value);
4606 }
4607
4608 static MonoBoolean
4609 ves_icall_System_Buffer_BlockCopyInternal (MonoArray *src, gint32 src_offset, MonoArray *dest, gint32 dest_offset, gint32 count) 
4610 {
4611         char *src_buf, *dest_buf;
4612
4613         MONO_ARCH_SAVE_REGS;
4614
4615         /* watch out for integer overflow */
4616         if ((src_offset > mono_array_get_byte_length (src) - count) || (dest_offset > mono_array_get_byte_length (dest) - count))
4617                 return FALSE;
4618
4619         src_buf = (gint8 *)src->vector + src_offset;
4620         dest_buf = (gint8 *)dest->vector + dest_offset;
4621
4622         memcpy (dest_buf, src_buf, count);
4623
4624         return TRUE;
4625 }
4626
4627 static MonoObject *
4628 ves_icall_Remoting_RealProxy_GetTransparentProxy (MonoObject *this, MonoString *class_name)
4629 {
4630         MonoDomain *domain = mono_object_domain (this); 
4631         MonoObject *res;
4632         MonoRealProxy *rp = ((MonoRealProxy *)this);
4633         MonoTransparentProxy *tp;
4634         MonoType *type;
4635         MonoClass *klass;
4636
4637         MONO_ARCH_SAVE_REGS;
4638
4639         res = mono_object_new (domain, mono_defaults.transparent_proxy_class);
4640         tp = (MonoTransparentProxy*) res;
4641         
4642         tp->rp = rp;
4643         type = ((MonoReflectionType *)rp->class_to_proxy)->type;
4644         klass = mono_class_from_mono_type (type);
4645
4646         tp->custom_type_info = (mono_object_isinst (this, mono_defaults.iremotingtypeinfo_class) != NULL);
4647         tp->remote_class = mono_remote_class (domain, class_name, klass);
4648         res->vtable = tp->remote_class->vtable;
4649
4650         return res;
4651 }
4652
4653 static MonoReflectionType *
4654 ves_icall_Remoting_RealProxy_InternalGetProxyType (MonoTransparentProxy *tp)
4655 {
4656         return mono_type_get_object (mono_object_domain (tp), &tp->remote_class->proxy_class->byval_arg);
4657 }
4658
4659 /* System.Environment */
4660
4661 static MonoString *
4662 ves_icall_System_Environment_get_MachineName (void)
4663 {
4664 #if defined (PLATFORM_WIN32)
4665         gunichar2 *buf;
4666         guint32 len;
4667         MonoString *result;
4668
4669         len = MAX_COMPUTERNAME_LENGTH + 1;
4670         buf = g_new (gunichar2, len);
4671
4672         result = NULL;
4673         if (GetComputerName (buf, (PDWORD) &len))
4674                 result = mono_string_new_utf16 (mono_domain_get (), buf, len);
4675
4676         g_free (buf);
4677         return result;
4678 #else
4679         gchar *buf;
4680         int len;
4681         MonoString *result;
4682
4683         MONO_ARCH_SAVE_REGS;
4684
4685         len = 256;
4686         buf = g_new (gchar, len);
4687
4688         result = NULL;
4689         if (gethostname (buf, len) == 0)
4690                 result = mono_string_new (mono_domain_get (), buf);
4691         
4692         g_free (buf);
4693         return result;
4694 #endif
4695 }
4696
4697 static int
4698 ves_icall_System_Environment_get_Platform (void)
4699 {
4700         MONO_ARCH_SAVE_REGS;
4701
4702 #if defined (PLATFORM_WIN32)
4703         /* Win32NT */
4704         return 2;
4705 #else
4706         /* Unix */
4707         return 128;
4708 #endif
4709 }
4710
4711 static MonoString *
4712 ves_icall_System_Environment_get_NewLine (void)
4713 {
4714         MONO_ARCH_SAVE_REGS;
4715
4716 #if defined (PLATFORM_WIN32)
4717         return mono_string_new (mono_domain_get (), "\r\n");
4718 #else
4719         return mono_string_new (mono_domain_get (), "\n");
4720 #endif
4721 }
4722
4723 static MonoString *
4724 ves_icall_System_Environment_GetEnvironmentVariable (MonoString *name)
4725 {
4726         const gchar *value;
4727         gchar *utf8_name;
4728
4729         MONO_ARCH_SAVE_REGS;
4730
4731         if (name == NULL)
4732                 return NULL;
4733
4734         utf8_name = mono_string_to_utf8 (name); /* FIXME: this should be ascii */
4735         value = g_getenv (utf8_name);
4736         g_free (utf8_name);
4737
4738         if (value == 0)
4739                 return NULL;
4740         
4741         return mono_string_new (mono_domain_get (), value);
4742 }
4743
4744 /*
4745  * There is no standard way to get at environ.
4746  */
4747 #ifndef _MSC_VER
4748 extern
4749 #endif
4750 char **environ;
4751
4752 static MonoArray *
4753 ves_icall_System_Environment_GetEnvironmentVariableNames (void)
4754 {
4755         MonoArray *names;
4756         MonoDomain *domain;
4757         MonoString *str;
4758         gchar **e, **parts;
4759         int n;
4760
4761         MONO_ARCH_SAVE_REGS;
4762
4763         n = 0;
4764         for (e = environ; *e != 0; ++ e)
4765                 ++ n;
4766
4767         domain = mono_domain_get ();
4768         names = mono_array_new (domain, mono_defaults.string_class, n);
4769
4770         n = 0;
4771         for (e = environ; *e != 0; ++ e) {
4772                 parts = g_strsplit (*e, "=", 2);
4773                 if (*parts != 0) {
4774                         str = mono_string_new (domain, *parts);
4775                         mono_array_set (names, MonoString *, n, str);
4776                 }
4777
4778                 g_strfreev (parts);
4779
4780                 ++ n;
4781         }
4782
4783         return names;
4784 }
4785
4786 /*
4787  * Returns the number of milliseconds elapsed since the system started.
4788  */
4789 static gint32
4790 ves_icall_System_Environment_get_TickCount (void)
4791 {
4792 #if defined (PLATFORM_WIN32)
4793         return GetTickCount();
4794 #else
4795         struct timeval tv;
4796         struct timezone tz;
4797         gint32 res;
4798
4799         MONO_ARCH_SAVE_REGS;
4800
4801         res = (gint32) gettimeofday (&tv, &tz);
4802
4803         if (res != -1)
4804                 res = (gint32) ((tv.tv_sec & 0xFFFFF) * 1000 + (tv.tv_usec / 1000));
4805         return res;
4806 #endif
4807 }
4808
4809
4810 static void
4811 ves_icall_System_Environment_Exit (int result)
4812 {
4813         MONO_ARCH_SAVE_REGS;
4814
4815         mono_runtime_quit ();
4816
4817         /* we may need to do some cleanup here... */
4818         exit (result);
4819 }
4820
4821 static MonoString*
4822 ves_icall_System_Environment_GetGacPath (void)
4823 {
4824         return mono_string_new (mono_domain_get (), mono_assembly_getrootdir ());
4825 }
4826
4827 static MonoString*
4828 ves_icall_System_Environment_GetWindowsFolderPath (int folder)
4829 {
4830 #if defined (PLATFORM_WIN32)
4831         #ifndef CSIDL_FLAG_CREATE
4832                 #define CSIDL_FLAG_CREATE       0x8000
4833         #endif
4834
4835         WCHAR path [MAX_PATH];
4836         /* Create directory if no existing */
4837         if (SUCCEEDED (SHGetFolderPathW (NULL, folder | CSIDL_FLAG_CREATE, NULL, 0, path))) {
4838                 int len = 0;
4839                 while (path [len])
4840                         ++ len;
4841                 return mono_string_new_utf16 (mono_domain_get (), path, len);
4842         }
4843 #else
4844         g_warning ("ves_icall_System_Environment_GetWindowsFolderPath should only be called on Windows!");
4845 #endif
4846         return mono_string_new (mono_domain_get (), "");
4847 }
4848
4849 static MonoArray *
4850 ves_icall_System_Environment_GetLogicalDrives (void)
4851 {
4852         gunichar2 buf [128], *ptr, *dname;
4853         gchar *u8;
4854         gint initial_size = 127, size = 128;
4855         gint ndrives;
4856         MonoArray *result;
4857         MonoString *drivestr;
4858         MonoDomain *domain = mono_domain_get ();
4859
4860         MONO_ARCH_SAVE_REGS;
4861
4862         buf [0] = '\0';
4863         ptr = buf;
4864
4865         while (size > initial_size) {
4866                 size = GetLogicalDriveStrings (initial_size, ptr);
4867                 if (size > initial_size) {
4868                         if (ptr != buf)
4869                                 g_free (ptr);
4870                         ptr = g_malloc0 ((size + 1) * sizeof (gunichar2));
4871                         initial_size = size;
4872                         size++;
4873                 }
4874         }
4875
4876         /* Count strings */
4877         dname = ptr;
4878         ndrives = 0;
4879         do {
4880                 while (*dname++);
4881                 ndrives++;
4882         } while (*dname);
4883
4884         dname = ptr;
4885         result = mono_array_new (domain, mono_defaults.string_class, ndrives);
4886         ndrives = 0;
4887         do {
4888                 u8 = g_utf16_to_utf8 (dname, -1, NULL, NULL, NULL);
4889                 drivestr = mono_string_new (domain, u8);
4890                 g_free (u8);
4891                 mono_array_set (result, gpointer, ndrives++, drivestr);
4892                 while (*dname++);
4893         } while (*dname);
4894
4895         if (ptr != buf)
4896                 g_free (ptr);
4897
4898         return result;
4899 }
4900
4901 static MonoString *
4902 ves_icall_System_Environment_InternalGetHome (void)
4903 {
4904         MONO_ARCH_SAVE_REGS;
4905
4906         return mono_string_new (mono_domain_get (), g_get_home_dir ());
4907 }
4908
4909 static const char *encodings [] = {
4910         (char *) 1,
4911                 "ascii", "us_ascii", "us", "ansi_x3.4_1968",
4912                 "ansi_x3.4_1986", "cp367", "csascii", "ibm367",
4913                 "iso_ir_6", "iso646_us", "iso_646.irv:1991",
4914         (char *) 2,
4915                 "utf_7", "csunicode11utf7", "unicode_1_1_utf_7",
4916                 "unicode_2_0_utf_7", "x_unicode_1_1_utf_7",
4917                 "x_unicode_2_0_utf_7",
4918         (char *) 3,
4919                 "utf_8", "unicode_1_1_utf_8", "unicode_2_0_utf_8",
4920                 "x_unicode_1_1_utf_8", "x_unicode_2_0_utf_8",
4921         (char *) 4,
4922                 "utf_16", "UTF_16LE", "ucs_2", "unicode",
4923                 "iso_10646_ucs2",
4924         (char *) 5,
4925                 "unicodefffe", "utf_16be",
4926         (char *) 6,
4927                 "iso_8859_1",
4928         (char *) 0
4929 };
4930
4931 /*
4932  * Returns the internal codepage, if the value of "int_code_page" is
4933  * 1 at entry, and we can not compute a suitable code page number,
4934  * returns the code page as a string
4935  */
4936 static MonoString*
4937 ves_icall_System_Text_Encoding_InternalCodePage (gint32 *int_code_page) 
4938 {
4939         const char *cset;
4940         const char *p;
4941         char *c;
4942         char *codepage = NULL;
4943         int code;
4944         int want_name = *int_code_page;
4945         int i;
4946         
4947         *int_code_page = -1;
4948         MONO_ARCH_SAVE_REGS;
4949
4950         g_get_charset (&cset);
4951         c = codepage = strdup (cset);
4952         for (c = codepage; *c; c++){
4953                 if (isascii (*c) && isalpha (*c))
4954                         *c = tolower (*c);
4955                 if (*c == '-')
4956                         *c = '_';
4957         }
4958         /* g_print ("charset: %s\n", cset); */
4959         
4960         /* handle some common aliases */
4961         p = encodings [0];
4962         code = 0;
4963         for (i = 0; p != 0; ){
4964                 if ((int) p < 7){
4965                         code = (int) p;
4966                         p = encodings [++i];
4967                         continue;
4968                 }
4969                 if (strcmp (p, codepage) == 0){
4970                         *int_code_page = code;
4971                         break;
4972                 }
4973                 p = encodings [++i];
4974         }
4975         
4976         if (strstr (codepage, "utf_8") != NULL)
4977                 *int_code_page |= 0x10000000;
4978         free (codepage);
4979         
4980         if (want_name && *int_code_page == -1)
4981                 return mono_string_new (mono_domain_get (), cset);
4982         else
4983                 return NULL;
4984 }
4985
4986 static MonoBoolean
4987 ves_icall_System_Environment_get_HasShutdownStarted (void)
4988 {
4989         if (mono_runtime_is_shutting_down ())
4990                 return TRUE;
4991
4992         if (mono_domain_is_unloading (mono_domain_get ()))
4993                 return TRUE;
4994
4995         return FALSE;
4996 }
4997
4998 static void
4999 ves_icall_MonoMethodMessage_InitMessage (MonoMethodMessage *this, 
5000                                          MonoReflectionMethod *method,
5001                                          MonoArray *out_args)
5002 {
5003         MONO_ARCH_SAVE_REGS;
5004
5005         mono_message_init (mono_object_domain (this), this, method, out_args);
5006 }
5007
5008 static MonoBoolean
5009 ves_icall_IsTransparentProxy (MonoObject *proxy)
5010 {
5011         MONO_ARCH_SAVE_REGS;
5012
5013         if (!proxy)
5014                 return 0;
5015
5016         if (proxy->vtable->klass == mono_defaults.transparent_proxy_class)
5017                 return 1;
5018
5019         return 0;
5020 }
5021
5022 static void
5023 ves_icall_System_Runtime_Activation_ActivationServices_EnableProxyActivation (MonoReflectionType *type, MonoBoolean enable)
5024 {
5025         MonoClass *klass;
5026         MonoVTable* vtable;
5027
5028         MONO_ARCH_SAVE_REGS;
5029
5030         klass = mono_class_from_mono_type (type->type);
5031         vtable = mono_class_vtable (mono_domain_get (), klass);
5032
5033         if (enable) vtable->remote = 1;
5034         else vtable->remote = 0;
5035 }
5036
5037 static MonoObject *
5038 ves_icall_System_Runtime_Activation_ActivationServices_AllocateUninitializedClassInstance (MonoReflectionType *type)
5039 {
5040         MonoClass *klass;
5041         MonoDomain *domain;
5042         
5043         MONO_ARCH_SAVE_REGS;
5044
5045         domain = mono_object_domain (type);
5046         klass = mono_class_from_mono_type (type->type);
5047
5048         if (klass->rank >= 1) {
5049                 g_assert (klass->rank == 1);
5050                 return (MonoObject *) mono_array_new (domain, klass->element_class, 0);
5051         } else {
5052                 /* Bypass remoting object creation check */
5053                 return mono_object_new_alloc_specific (mono_class_vtable (domain, klass));
5054         }
5055 }
5056
5057 static MonoString *
5058 ves_icall_System_IO_get_temp_path (void)
5059 {
5060         MONO_ARCH_SAVE_REGS;
5061
5062         return mono_string_new (mono_domain_get (), g_get_tmp_dir ());
5063 }
5064
5065 static gpointer
5066 ves_icall_RuntimeMethod_GetFunctionPointer (MonoMethod *method)
5067 {
5068         MONO_ARCH_SAVE_REGS;
5069
5070         return mono_compile_method (method);
5071 }
5072
5073 static MonoString *
5074 ves_icall_System_Configuration_DefaultConfig_get_machine_config_path (void)
5075 {
5076         MonoString *mcpath;
5077         gchar *path;
5078
5079         MONO_ARCH_SAVE_REGS;
5080
5081         path = g_build_path (G_DIR_SEPARATOR_S, mono_get_config_dir (), "mono", mono_get_framework_version (), "machine.config", NULL);
5082
5083 #if defined (PLATFORM_WIN32)
5084         /* Avoid mixing '/' and '\\' */
5085         {
5086                 gint i;
5087                 for (i = strlen (path) - 1; i >= 0; i--)
5088                         if (path [i] == '/')
5089                                 path [i] = '\\';
5090         }
5091 #endif
5092         mcpath = mono_string_new (mono_domain_get (), path);
5093         g_free (path);
5094
5095         return mcpath;
5096 }
5097
5098 static MonoString *
5099 ves_icall_System_Web_Util_ICalls_get_machine_install_dir (void)
5100 {
5101         MonoString *ipath;
5102         gchar *path;
5103
5104         MONO_ARCH_SAVE_REGS;
5105
5106         path = g_path_get_dirname (mono_get_config_dir ());
5107
5108 #if defined (PLATFORM_WIN32)
5109         /* Avoid mixing '/' and '\\' */
5110         {
5111                 gint i;
5112                 for (i = strlen (path) - 1; i >= 0; i--)
5113                         if (path [i] == '/')
5114                                 path [i] = '\\';
5115         }
5116 #endif
5117         ipath = mono_string_new (mono_domain_get (), path);
5118         g_free (path);
5119
5120         return ipath;
5121 }
5122
5123 static void
5124 ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString (MonoString *message)
5125 {
5126 #if defined (PLATFORM_WIN32)
5127         static void (*output_debug) (gchar *);
5128         static gboolean tried_loading = FALSE;
5129
5130         MONO_ARCH_SAVE_REGS;
5131
5132         if (!tried_loading && output_debug == NULL) {
5133                 GModule *k32;
5134
5135                 tried_loading = TRUE;
5136                 k32 = g_module_open ("kernel32", G_MODULE_BIND_LAZY);
5137                 if (!k32) {
5138                         gchar *error = g_strdup (g_module_error ());
5139                         g_warning ("Failed to load kernel32.dll: %s\n", error);
5140                         g_free (error);
5141                         return;
5142                 }
5143
5144                 g_module_symbol (k32, "OutputDebugStringW", (gpointer *) &output_debug);
5145                 if (!output_debug) {
5146                         gchar *error = g_strdup (g_module_error ());
5147                         g_warning ("Failed to load OutputDebugStringW: %s\n", error);
5148                         g_free (error);
5149                         return;
5150                 }
5151         }
5152
5153         if (output_debug == NULL)
5154                 return;
5155         
5156         output_debug (mono_string_chars (message));
5157 #else
5158         g_warning ("WriteWindowsDebugString called and PLATFORM_WIN32 not defined!\n");
5159 #endif
5160 }
5161
5162 /* Only used for value types */
5163 static MonoObject *
5164 ves_icall_System_Activator_CreateInstanceInternal (MonoReflectionType *type)
5165 {
5166         MonoClass *klass;
5167         MonoDomain *domain;
5168         
5169         MONO_ARCH_SAVE_REGS;
5170
5171         domain = mono_object_domain (type);
5172         klass = mono_class_from_mono_type (type->type);
5173
5174         return mono_object_new (domain, klass);
5175 }
5176
5177 static MonoReflectionMethod *
5178 ves_icall_MonoMethod_get_base_definition (MonoReflectionMethod *m)
5179 {
5180         MonoClass *klass;
5181         MonoMethod *method = m->method;
5182         MonoMethod *result = NULL;
5183
5184         MONO_ARCH_SAVE_REGS;
5185
5186         if (!(method->flags & METHOD_ATTRIBUTE_VIRTUAL) ||
5187             MONO_CLASS_IS_INTERFACE (method->klass) ||
5188             method->flags & METHOD_ATTRIBUTE_NEW_SLOT)
5189                 return m;
5190
5191         if (method->klass == NULL || (klass = method->klass->parent) == NULL)
5192                 return m;
5193
5194         if (klass->generic_inst)
5195                 klass = mono_class_from_mono_type (klass->generic_inst->generic_type);
5196
5197         while (result == NULL && klass != NULL && (klass->vtable_size > method->slot))
5198         {
5199                 result = klass->vtable [method->slot];
5200                 if (result == NULL) {
5201                         /* It is an abstract method */
5202                         int i;
5203                         for (i=0; i<klass->method.count; i++) {
5204                                 if (klass->methods [i]->slot == method->slot) {
5205                                         result = klass->methods [i];
5206                                         break;
5207                                 }
5208                         }
5209                 }
5210                 klass = klass->parent;
5211         }
5212
5213         if (result == NULL)
5214                 return m;
5215
5216         return mono_method_get_object (mono_domain_get (), result, NULL);
5217 }
5218
5219 static void
5220 mono_ArgIterator_Setup (MonoArgIterator *iter, char* argsp, char* start)
5221 {
5222         MONO_ARCH_SAVE_REGS;
5223
5224         iter->sig = *(MonoMethodSignature**)argsp;
5225         
5226         g_assert (iter->sig->sentinelpos <= iter->sig->param_count);
5227         g_assert (iter->sig->call_convention == MONO_CALL_VARARG);
5228
5229         iter->next_arg = 0;
5230         /* FIXME: it's not documented what start is exactly... */
5231         if (start) {
5232                 iter->args = start;
5233         } else {
5234                 int i, align, arg_size;
5235                 iter->args = argsp + sizeof (gpointer);
5236                 for (i = 0; i < iter->sig->sentinelpos; ++i) {
5237                         arg_size = mono_type_stack_size (iter->sig->params [i], &align);
5238                         iter->args = (char*)iter->args + arg_size;
5239                 }
5240         }
5241         iter->num_args = iter->sig->param_count - iter->sig->sentinelpos;
5242
5243         /* g_print ("sig %p, param_count: %d, sent: %d\n", iter->sig, iter->sig->param_count, iter->sig->sentinelpos); */
5244 }
5245
5246 static MonoTypedRef
5247 mono_ArgIterator_IntGetNextArg (MonoArgIterator *iter)
5248 {
5249         gint i, align, arg_size;
5250         MonoTypedRef res;
5251         MONO_ARCH_SAVE_REGS;
5252
5253         i = iter->sig->sentinelpos + iter->next_arg;
5254
5255         g_assert (i < iter->sig->param_count);
5256
5257         res.type = iter->sig->params [i];
5258         res.klass = mono_class_from_mono_type (res.type);
5259         /* FIXME: endianess issue... */
5260         res.value = iter->args;
5261         arg_size = mono_type_stack_size (res.type, &align);
5262         iter->args = (char*)iter->args + arg_size;
5263         iter->next_arg++;
5264
5265         /* g_print ("returning arg %d, type 0x%02x of size %d at %p\n", i, res.type->type, arg_size, res.value); */
5266
5267         return res;
5268 }
5269
5270 static MonoTypedRef
5271 mono_ArgIterator_IntGetNextArgT (MonoArgIterator *iter, MonoType *type)
5272 {
5273         gint i, align, arg_size;
5274         MonoTypedRef res;
5275         MONO_ARCH_SAVE_REGS;
5276
5277         i = iter->sig->sentinelpos + iter->next_arg;
5278
5279         g_assert (i < iter->sig->param_count);
5280
5281         while (i < iter->sig->param_count) {
5282                 if (!mono_metadata_type_equal (type, iter->sig->params [i]))
5283                         continue;
5284                 res.type = iter->sig->params [i];
5285                 res.klass = mono_class_from_mono_type (res.type);
5286                 /* FIXME: endianess issue... */
5287                 res.value = iter->args;
5288                 arg_size = mono_type_stack_size (res.type, &align);
5289                 iter->args = (char*)iter->args + arg_size;
5290                 iter->next_arg++;
5291                 /* g_print ("returning arg %d, type 0x%02x of size %d at %p\n", i, res.type->type, arg_size, res.value); */
5292                 return res;
5293         }
5294         /* g_print ("arg type 0x%02x not found\n", res.type->type); */
5295
5296         res.type = NULL;
5297         res.value = NULL;
5298         res.klass = NULL;
5299         return res;
5300 }
5301
5302 static MonoType*
5303 mono_ArgIterator_IntGetNextArgType (MonoArgIterator *iter)
5304 {
5305         gint i;
5306         MONO_ARCH_SAVE_REGS;
5307         
5308         i = iter->sig->sentinelpos + iter->next_arg;
5309
5310         g_assert (i < iter->sig->param_count);
5311
5312         return iter->sig->params [i];
5313 }
5314
5315 static MonoObject*
5316 mono_TypedReference_ToObject (MonoTypedRef tref)
5317 {
5318         MONO_ARCH_SAVE_REGS;
5319
5320         if (MONO_TYPE_IS_REFERENCE (tref.type)) {
5321                 MonoObject** objp = tref.value;
5322                 return *objp;
5323         }
5324
5325         return mono_value_box (mono_domain_get (), tref.klass, tref.value);
5326 }
5327
5328 static void
5329 prelink_method (MonoMethod *method)
5330 {
5331         const char *exc_class, *exc_arg;
5332         if (!(method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
5333                 return;
5334         mono_lookup_pinvoke_call (method, &exc_class, &exc_arg);
5335         if (exc_class) {
5336                 mono_raise_exception( 
5337                         mono_exception_from_name_msg (mono_defaults.corlib, "System", exc_class, exc_arg ) );
5338         }
5339         /* create the wrapper, too? */
5340 }
5341
5342 static void
5343 ves_icall_System_Runtime_InteropServices_Marshal_Prelink (MonoReflectionMethod *method)
5344 {
5345         MONO_ARCH_SAVE_REGS;
5346         prelink_method (method->method);
5347 }
5348
5349 static void
5350 ves_icall_System_Runtime_InteropServices_Marshal_PrelinkAll (MonoReflectionType *type)
5351 {
5352         MonoClass *klass = mono_class_from_mono_type (type->type);
5353         int i;
5354         MONO_ARCH_SAVE_REGS;
5355
5356         mono_class_init (klass);
5357         for (i = 0; i < klass->method.count; ++i)
5358                 prelink_method (klass->methods [i]);
5359 }
5360
5361 /* These parameters are "readonly" in corlib/System/Char.cs */
5362 static void
5363 ves_icall_System_Char_GetDataTablePointers (guint8 const **category_data,
5364                                             guint8 const **numeric_data,
5365                                             gdouble const **numeric_data_values,
5366                                             guint16 const **to_lower_data_low,
5367                                             guint16 const **to_lower_data_high,
5368                                             guint16 const **to_upper_data_low,
5369                                             guint16 const **to_upper_data_high)
5370 {
5371         *category_data = CategoryData;
5372         *numeric_data = NumericData;
5373         *numeric_data_values = NumericDataValues;
5374         *to_lower_data_low = ToLowerDataLow;
5375         *to_lower_data_high = ToLowerDataHigh;
5376         *to_upper_data_low = ToUpperDataLow;
5377         *to_upper_data_high = ToUpperDataHigh;
5378 }
5379
5380 static MonoString *
5381 ves_icall_MonoDebugger_check_runtime_version (MonoString *fname)
5382 {
5383         gchar *filename, *error = NULL;
5384
5385         MONO_ARCH_SAVE_REGS;
5386
5387         filename = mono_string_to_utf8 (fname);
5388         error = mono_debugger_check_runtime_version (filename);
5389         g_free (filename);
5390
5391         if (error)
5392                 return mono_string_new (mono_domain_get (), error);
5393         else
5394                 return NULL;
5395 }
5396
5397 /* icall map */
5398 typedef struct {
5399         const char *method;
5400         gconstpointer func;
5401 } IcallEntry;
5402
5403 typedef struct {
5404         const char *klass;
5405         const IcallEntry *icalls;
5406         const int size;
5407 } IcallMap;
5408
5409 static const IcallEntry activator_icalls [] = {
5410         {"CreateInstanceInternal", ves_icall_System_Activator_CreateInstanceInternal}
5411 };
5412 static const IcallEntry appdomain_icalls [] = {
5413         {"ExecuteAssembly", ves_icall_System_AppDomain_ExecuteAssembly},
5414         {"GetAssemblies", ves_icall_System_AppDomain_GetAssemblies},
5415         {"GetData", ves_icall_System_AppDomain_GetData},
5416         {"InternalGetContext", ves_icall_System_AppDomain_InternalGetContext},
5417         {"InternalGetDefaultContext", ves_icall_System_AppDomain_InternalGetDefaultContext},
5418         {"InternalGetProcessGuid", ves_icall_System_AppDomain_InternalGetProcessGuid},
5419         {"InternalIsFinalizingForUnload", ves_icall_System_AppDomain_InternalIsFinalizingForUnload},
5420         {"InternalPopDomainRef", ves_icall_System_AppDomain_InternalPopDomainRef},
5421         {"InternalPushDomainRef", ves_icall_System_AppDomain_InternalPushDomainRef},
5422         {"InternalPushDomainRefByID", ves_icall_System_AppDomain_InternalPushDomainRefByID},
5423         {"InternalSetContext", ves_icall_System_AppDomain_InternalSetContext},
5424         {"InternalSetDomain", ves_icall_System_AppDomain_InternalSetDomain},
5425         {"InternalSetDomainByID", ves_icall_System_AppDomain_InternalSetDomainByID},
5426         {"InternalUnload", ves_icall_System_AppDomain_InternalUnload},
5427         {"LoadAssembly", ves_icall_System_AppDomain_LoadAssembly},
5428         {"LoadAssemblyRaw", ves_icall_System_AppDomain_LoadAssemblyRaw},
5429         {"SetData", ves_icall_System_AppDomain_SetData},
5430         {"createDomain", ves_icall_System_AppDomain_createDomain},
5431         {"getCurDomain", ves_icall_System_AppDomain_getCurDomain},
5432         {"getDomainByID", ves_icall_System_AppDomain_getDomainByID},
5433         {"getFriendlyName", ves_icall_System_AppDomain_getFriendlyName},
5434         {"getSetup", ves_icall_System_AppDomain_getSetup}
5435 };
5436
5437 static const IcallEntry argiterator_icalls [] = {
5438         {"IntGetNextArg()",                  mono_ArgIterator_IntGetNextArg},
5439         {"IntGetNextArg(intptr)", mono_ArgIterator_IntGetNextArgT},
5440         {"IntGetNextArgType",                mono_ArgIterator_IntGetNextArgType},
5441         {"Setup",                            mono_ArgIterator_Setup}
5442 };
5443
5444 static const IcallEntry array_icalls [] = {
5445         {"ClearInternal",    ves_icall_System_Array_ClearInternal},
5446         {"Clone",            mono_array_clone},
5447         {"CreateInstanceImpl",   ves_icall_System_Array_CreateInstanceImpl},
5448         {"FastCopy",         ves_icall_System_Array_FastCopy},
5449         {"GetLength",        ves_icall_System_Array_GetLength},
5450         {"GetLowerBound",    ves_icall_System_Array_GetLowerBound},
5451         {"GetRank",          ves_icall_System_Array_GetRank},
5452         {"GetValue",         ves_icall_System_Array_GetValue},
5453         {"GetValueImpl",     ves_icall_System_Array_GetValueImpl},
5454         {"SetValue",         ves_icall_System_Array_SetValue},
5455         {"SetValueImpl",     ves_icall_System_Array_SetValueImpl}
5456 };
5457
5458 static const IcallEntry buffer_icalls [] = {
5459         {"BlockCopyInternal", ves_icall_System_Buffer_BlockCopyInternal},
5460         {"ByteLengthInternal", ves_icall_System_Buffer_ByteLengthInternal},
5461         {"GetByteInternal", ves_icall_System_Buffer_GetByteInternal},
5462         {"SetByteInternal", ves_icall_System_Buffer_SetByteInternal}
5463 };
5464
5465 static const IcallEntry char_icalls [] = {
5466         {"GetDataTablePointers", ves_icall_System_Char_GetDataTablePointers},
5467         {"InternalToLower(char,System.Globalization.CultureInfo)", ves_icall_System_Char_InternalToLower_Comp},
5468         {"InternalToUpper(char,System.Globalization.CultureInfo)", ves_icall_System_Char_InternalToUpper_Comp}
5469 };
5470
5471 static const IcallEntry defaultconf_icalls [] = {
5472         {"get_machine_config_path", ves_icall_System_Configuration_DefaultConfig_get_machine_config_path}
5473 };
5474
5475 static const IcallEntry timezone_icalls [] = {
5476         {"GetTimeZoneData", ves_icall_System_CurrentTimeZone_GetTimeZoneData}
5477 };
5478
5479 static const IcallEntry datetime_icalls [] = {
5480         {"GetNow", ves_icall_System_DateTime_GetNow}
5481 };
5482
5483 static const IcallEntry decimal_icalls [] = {
5484         {"decimal2Int64", mono_decimal2Int64},
5485         {"decimal2UInt64", mono_decimal2UInt64},
5486         {"decimal2double", mono_decimal2double},
5487         {"decimal2string", mono_decimal2string},
5488         {"decimalCompare", mono_decimalCompare},
5489         {"decimalDiv", mono_decimalDiv},
5490         {"decimalFloorAndTrunc", mono_decimalFloorAndTrunc},
5491         {"decimalIncr", mono_decimalIncr},
5492         {"decimalIntDiv", mono_decimalIntDiv},
5493         {"decimalMult", mono_decimalMult},
5494         {"decimalRound", mono_decimalRound},
5495         {"decimalSetExponent", mono_decimalSetExponent},
5496         {"double2decimal", mono_double2decimal}, /* FIXME: wrong signature. */
5497         {"string2decimal", mono_string2decimal}
5498 };
5499
5500 static const IcallEntry delegate_icalls [] = {
5501         {"CreateDelegate_internal", ves_icall_System_Delegate_CreateDelegate_internal},
5502         {"FreeTrampoline", ves_icall_System_Delegate_FreeTrampoline}
5503 };
5504
5505 static const IcallEntry tracelist_icalls [] = {
5506         {"WriteWindowsDebugString", ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString}
5507 };
5508
5509 static const IcallEntry fileversion_icalls [] = {
5510         {"GetVersionInfo_internal(string)", ves_icall_System_Diagnostics_FileVersionInfo_GetVersionInfo_internal}
5511 };
5512
5513 static const IcallEntry process_icalls [] = {
5514         {"ExitCode_internal(intptr)", ves_icall_System_Diagnostics_Process_ExitCode_internal},
5515         {"ExitTime_internal(intptr)", ves_icall_System_Diagnostics_Process_ExitTime_internal},
5516         {"GetModules_internal()", ves_icall_System_Diagnostics_Process_GetModules_internal},
5517         {"GetPid_internal()", ves_icall_System_Diagnostics_Process_GetPid_internal},
5518         {"GetProcess_internal(int)", ves_icall_System_Diagnostics_Process_GetProcess_internal},
5519         {"GetProcesses_internal()", ves_icall_System_Diagnostics_Process_GetProcesses_internal},
5520         {"GetWorkingSet_internal(intptr,int&,int&)", ves_icall_System_Diagnostics_Process_GetWorkingSet_internal},
5521         {"Kill_internal", ves_icall_System_Diagnostics_Process_Kill_internal},
5522         {"ProcessName_internal(intptr)", ves_icall_System_Diagnostics_Process_ProcessName_internal},
5523         {"Process_free_internal(intptr)", ves_icall_System_Diagnostics_Process_Process_free_internal},
5524         {"SetWorkingSet_internal(intptr,int,int,bool)", ves_icall_System_Diagnostics_Process_SetWorkingSet_internal},
5525         {"StartTime_internal(intptr)", ves_icall_System_Diagnostics_Process_StartTime_internal},
5526         {"Start_internal(string,string,string,intptr,intptr,intptr,System.Diagnostics.Process/ProcInfo&)", ves_icall_System_Diagnostics_Process_Start_internal},
5527         {"WaitForExit_internal(intptr,int)", ves_icall_System_Diagnostics_Process_WaitForExit_internal}
5528 };
5529
5530 static const IcallEntry double_icalls [] = {
5531         {"AssertEndianity", ves_icall_System_Double_AssertEndianity},
5532         {"ParseImpl",    mono_double_ParseImpl}
5533 };
5534
5535 static const IcallEntry enum_icalls [] = {
5536         {"ToObject", ves_icall_System_Enum_ToObject},
5537         {"get_value", ves_icall_System_Enum_get_value}
5538 };
5539
5540 static const IcallEntry environment_icalls [] = {
5541         {"Exit", ves_icall_System_Environment_Exit},
5542         {"GetCommandLineArgs", mono_runtime_get_main_args},
5543         {"GetEnvironmentVariable", ves_icall_System_Environment_GetEnvironmentVariable},
5544         {"GetEnvironmentVariableNames", ves_icall_System_Environment_GetEnvironmentVariableNames},
5545         {"GetLogicalDrivesInternal", ves_icall_System_Environment_GetLogicalDrives },
5546         {"GetMachineConfigPath", ves_icall_System_Configuration_DefaultConfig_get_machine_config_path},
5547         {"GetOSVersionString", ves_icall_System_Environment_GetOSVersionString},
5548         {"GetWindowsFolderPath", ves_icall_System_Environment_GetWindowsFolderPath},
5549         {"get_ExitCode", mono_environment_exitcode_get},
5550         {"get_HasShutdownStarted", ves_icall_System_Environment_get_HasShutdownStarted},
5551         {"get_MachineName", ves_icall_System_Environment_get_MachineName},
5552         {"get_NewLine", ves_icall_System_Environment_get_NewLine},
5553         {"get_Platform", ves_icall_System_Environment_get_Platform},
5554         {"get_TickCount", ves_icall_System_Environment_get_TickCount},
5555         {"get_UserName", ves_icall_System_Environment_get_UserName},
5556         {"internalGetGacPath", ves_icall_System_Environment_GetGacPath},
5557         {"internalGetHome", ves_icall_System_Environment_InternalGetHome},
5558         {"set_ExitCode", mono_environment_exitcode_set}
5559 };
5560
5561 static const IcallEntry cultureinfo_icalls [] = {
5562         {"construct_compareinfo(object,string)", ves_icall_System_Globalization_CompareInfo_construct_compareinfo},
5563         {"construct_datetime_format", ves_icall_System_Globalization_CultureInfo_construct_datetime_format},
5564         {"construct_internal_locale(string)", ves_icall_System_Globalization_CultureInfo_construct_internal_locale},
5565         {"construct_internal_locale_from_current_locale", ves_icall_System_Globalization_CultureInfo_construct_internal_locale_from_current_locale},
5566         {"construct_internal_locale_from_lcid", ves_icall_System_Globalization_CultureInfo_construct_internal_locale_from_lcid},
5567         {"construct_internal_locale_from_name", ves_icall_System_Globalization_CultureInfo_construct_internal_locale_from_name},
5568         {"construct_internal_locale_from_specific_name", ves_icall_System_Globalization_CultureInfo_construct_internal_locale_from_specific_name},
5569         {"construct_number_format", ves_icall_System_Globalization_CultureInfo_construct_number_format},
5570         {"internal_get_cultures", ves_icall_System_Globalization_CultureInfo_internal_get_cultures},
5571         {"internal_is_lcid_neutral", ves_icall_System_Globalization_CultureInfo_internal_is_lcid_neutral}
5572 };
5573
5574 static const IcallEntry compareinfo_icalls [] = {
5575         {"assign_sortkey(object,string,System.Globalization.CompareOptions)", ves_icall_System_Globalization_CompareInfo_assign_sortkey},
5576         {"construct_compareinfo(string)", ves_icall_System_Globalization_CompareInfo_construct_compareinfo},
5577         {"free_internal_collator()", ves_icall_System_Globalization_CompareInfo_free_internal_collator},
5578         {"internal_compare(string,int,int,string,int,int,System.Globalization.CompareOptions)", ves_icall_System_Globalization_CompareInfo_internal_compare},
5579         {"internal_index(string,int,int,char,System.Globalization.CompareOptions,bool)", ves_icall_System_Globalization_CompareInfo_internal_index_char},
5580         {"internal_index(string,int,int,string,System.Globalization.CompareOptions,bool)", ves_icall_System_Globalization_CompareInfo_internal_index}
5581 };
5582
5583 static const IcallEntry gc_icalls [] = {
5584         {"GetTotalMemory", ves_icall_System_GC_GetTotalMemory},
5585         {"InternalCollect", ves_icall_System_GC_InternalCollect},
5586         {"KeepAlive", ves_icall_System_GC_KeepAlive},
5587         {"ReRegisterForFinalize", ves_icall_System_GC_ReRegisterForFinalize},
5588         {"SuppressFinalize", ves_icall_System_GC_SuppressFinalize},
5589         {"WaitForPendingFinalizers", ves_icall_System_GC_WaitForPendingFinalizers}
5590 };
5591
5592 static const IcallEntry famwatcher_icalls [] = {
5593         {"InternalFAMNextEvent", ves_icall_System_IO_FAMW_InternalFAMNextEvent}
5594 };
5595
5596 static const IcallEntry filewatcher_icalls [] = {
5597         {"InternalCloseDirectory", ves_icall_System_IO_FSW_CloseDirectory},
5598         {"InternalOpenDirectory", ves_icall_System_IO_FSW_OpenDirectory},
5599         {"InternalReadDirectoryChanges", ves_icall_System_IO_FSW_ReadDirectoryChanges},
5600         {"InternalSupportsFSW", ves_icall_System_IO_FSW_SupportsFSW}
5601 };
5602
5603 static const IcallEntry path_icalls [] = {
5604         {"get_temp_path", ves_icall_System_IO_get_temp_path}
5605 };
5606
5607 static const IcallEntry monoio_icalls [] = {
5608         {"BeginRead", ves_icall_System_IO_MonoIO_BeginRead },
5609         {"BeginWrite", ves_icall_System_IO_MonoIO_BeginWrite },
5610         {"Close(intptr,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Close},
5611         {"CopyFile(string,string,bool,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_CopyFile},
5612         {"CreateDirectory(string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_CreateDirectory},
5613         {"CreatePipe(intptr&,intptr&)", ves_icall_System_IO_MonoIO_CreatePipe},
5614         {"DeleteFile(string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_DeleteFile},
5615         {"FindClose(intptr,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_FindClose},
5616         {"FindFirstFile(string,System.IO.MonoIOStat&,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_FindFirstFile},
5617         {"FindNextFile(intptr,System.IO.MonoIOStat&,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_FindNextFile},
5618         {"Flush(intptr,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Flush},
5619         {"GetCurrentDirectory(System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_GetCurrentDirectory},
5620         {"GetFileAttributes(string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_GetFileAttributes},
5621         {"GetFileStat(string,System.IO.MonoIOStat&,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_GetFileStat},
5622         {"GetFileType(intptr,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_GetFileType},
5623         {"GetLength(intptr,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_GetLength},
5624         {"GetSupportsAsync", ves_icall_System_IO_MonoIO_GetSupportsAsync},
5625         {"GetTempPath(string&)", ves_icall_System_IO_MonoIO_GetTempPath},
5626         {"Lock(intptr,long,long,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Lock},
5627         {"MoveFile(string,string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_MoveFile},
5628         {"Open(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,bool,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Open},
5629         {"Read(intptr,byte[],int,int,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Read},
5630         {"RemoveDirectory(string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_RemoveDirectory},
5631         {"Seek(intptr,long,System.IO.SeekOrigin,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Seek},
5632         {"SetCurrentDirectory(string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_SetCurrentDirectory},
5633         {"SetFileAttributes(string,System.IO.FileAttributes,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_SetFileAttributes},
5634         {"SetFileTime(intptr,long,long,long,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_SetFileTime},
5635         {"SetLength(intptr,long,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_SetLength},
5636         {"Unlock(intptr,long,long,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Unlock},
5637         {"Write(intptr,byte[],int,int,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Write},
5638         {"get_AltDirectorySeparatorChar", ves_icall_System_IO_MonoIO_get_AltDirectorySeparatorChar},
5639         {"get_ConsoleError", ves_icall_System_IO_MonoIO_get_ConsoleError},
5640         {"get_ConsoleInput", ves_icall_System_IO_MonoIO_get_ConsoleInput},
5641         {"get_ConsoleOutput", ves_icall_System_IO_MonoIO_get_ConsoleOutput},
5642         {"get_DirectorySeparatorChar", ves_icall_System_IO_MonoIO_get_DirectorySeparatorChar},
5643         {"get_InvalidPathChars", ves_icall_System_IO_MonoIO_get_InvalidPathChars},
5644         {"get_PathSeparator", ves_icall_System_IO_MonoIO_get_PathSeparator},
5645         {"get_VolumeSeparatorChar", ves_icall_System_IO_MonoIO_get_VolumeSeparatorChar}
5646 };
5647
5648 static const IcallEntry math_icalls [] = {
5649         {"Acos", ves_icall_System_Math_Acos},
5650         {"Asin", ves_icall_System_Math_Asin},
5651         {"Atan", ves_icall_System_Math_Atan},
5652         {"Atan2", ves_icall_System_Math_Atan2},
5653         {"Cos", ves_icall_System_Math_Cos},
5654         {"Cosh", ves_icall_System_Math_Cosh},
5655         {"Exp", ves_icall_System_Math_Exp},
5656         {"Floor", ves_icall_System_Math_Floor},
5657         {"Log", ves_icall_System_Math_Log},
5658         {"Log10", ves_icall_System_Math_Log10},
5659         {"Pow", ves_icall_System_Math_Pow},
5660         {"Round", ves_icall_System_Math_Round},
5661         {"Round2", ves_icall_System_Math_Round2},
5662         {"Sin", ves_icall_System_Math_Sin},
5663         {"Sinh", ves_icall_System_Math_Sinh},
5664         {"Sqrt", ves_icall_System_Math_Sqrt},
5665         {"Tan", ves_icall_System_Math_Tan},
5666         {"Tanh", ves_icall_System_Math_Tanh}
5667 };
5668
5669 static const IcallEntry customattrs_icalls [] = {
5670         {"GetCustomAttributes", mono_reflection_get_custom_attrs}
5671 };
5672
5673 static const IcallEntry enuminfo_icalls [] = {
5674         {"get_enum_info", ves_icall_get_enum_info}
5675 };
5676
5677 static const IcallEntry fieldinfo_icalls [] = {
5678         {"internal_from_handle", ves_icall_System_Reflection_FieldInfo_internal_from_handle}
5679 };
5680
5681 static const IcallEntry memberinfo_icalls [] = {
5682         {"get_MetadataToken", mono_reflection_get_token}
5683 };
5684
5685 static const IcallEntry monotype_icalls [] = {
5686         {"GetArrayRank", ves_icall_MonoType_GetArrayRank},
5687         {"GetConstructors", ves_icall_Type_GetConstructors_internal},
5688         {"GetConstructors_internal", ves_icall_Type_GetConstructors_internal},
5689         {"GetElementType", ves_icall_MonoType_GetElementType},
5690         {"GetEvents_internal", ves_icall_Type_GetEvents_internal},
5691         {"GetField", ves_icall_Type_GetField},
5692         {"GetFields_internal", ves_icall_Type_GetFields_internal},
5693         {"GetGenericArguments", ves_icall_MonoType_GetGenericArguments},
5694         {"GetInterfaces", ves_icall_Type_GetInterfaces},
5695         {"GetMethodsByName", ves_icall_Type_GetMethodsByName},
5696         {"GetNestedType", ves_icall_Type_GetNestedType},
5697         {"GetNestedTypes", ves_icall_Type_GetNestedTypes},
5698         {"GetPropertiesByName", ves_icall_Type_GetPropertiesByName},
5699         {"InternalGetEvent", ves_icall_MonoType_GetEvent},
5700         {"IsByRefImpl", ves_icall_type_isbyref},
5701         {"IsPointerImpl", ves_icall_type_ispointer},
5702         {"IsPrimitiveImpl", ves_icall_type_isprimitive},
5703         {"getFullName", ves_icall_System_MonoType_getFullName},
5704         {"get_Assembly", ves_icall_MonoType_get_Assembly},
5705         {"get_BaseType", ves_icall_get_type_parent},
5706         {"get_DeclaringMethod", ves_icall_MonoType_get_DeclaringMethod},
5707         {"get_DeclaringType", ves_icall_MonoType_get_DeclaringType},
5708         {"get_HasGenericArguments", ves_icall_MonoType_get_HasGenericArguments},
5709         {"get_IsGenericParameter", ves_icall_MonoType_get_IsGenericParameter},
5710         {"get_Module", ves_icall_MonoType_get_Module},
5711         {"get_Name", ves_icall_MonoType_get_Name},
5712         {"get_Namespace", ves_icall_MonoType_get_Namespace},
5713         {"get_UnderlyingSystemType", ves_icall_MonoType_get_UnderlyingSystemType},
5714         {"get_attributes", ves_icall_get_attributes},
5715         {"type_from_obj", mono_type_type_from_obj}
5716 };
5717
5718 static const IcallEntry assembly_icalls [] = {
5719         {"FillName", ves_icall_System_Reflection_Assembly_FillName},
5720         {"GetCallingAssembly", ves_icall_System_Reflection_Assembly_GetCallingAssembly},
5721         {"GetEntryAssembly", ves_icall_System_Reflection_Assembly_GetEntryAssembly},
5722         {"GetExecutingAssembly", ves_icall_System_Reflection_Assembly_GetExecutingAssembly},
5723         {"GetFilesInternal", ves_icall_System_Reflection_Assembly_GetFilesInternal},
5724         {"GetManifestResourceInfoInternal", ves_icall_System_Reflection_Assembly_GetManifestResourceInfoInternal},
5725         {"GetManifestResourceInternal", ves_icall_System_Reflection_Assembly_GetManifestResourceInternal},
5726         {"GetManifestResourceNames", ves_icall_System_Reflection_Assembly_GetManifestResourceNames},
5727         {"GetModulesInternal", ves_icall_System_Reflection_Assembly_GetModulesInternal},
5728         {"GetNamespaces", ves_icall_System_Reflection_Assembly_GetNamespaces},
5729         {"GetReferencedAssemblies", ves_icall_System_Reflection_Assembly_GetReferencedAssemblies},
5730         {"GetTypes", ves_icall_System_Reflection_Assembly_GetTypes},
5731         {"InternalGetAssemblyName", ves_icall_System_Reflection_Assembly_InternalGetAssemblyName},
5732         {"InternalGetType", ves_icall_System_Reflection_Assembly_InternalGetType},
5733         {"InternalImageRuntimeVersion", ves_icall_System_Reflection_Assembly_InternalImageRuntimeVersion},
5734         {"LoadFrom", ves_icall_System_Reflection_Assembly_LoadFrom},
5735         /*
5736          * Private icalls for the Mono Debugger
5737          */
5738         {"MonoDebugger_CheckRuntimeVersion", ves_icall_MonoDebugger_check_runtime_version},
5739         {"MonoDebugger_GetLocalTypeFromSignature", ves_icall_MonoDebugger_GetLocalTypeFromSignature},
5740         {"MonoDebugger_GetMethod", ves_icall_MonoDebugger_GetMethod},
5741         {"MonoDebugger_GetMethodToken", ves_icall_MonoDebugger_GetMethodToken},
5742         {"MonoDebugger_GetType", ves_icall_MonoDebugger_GetType},
5743
5744         /* normal icalls again */
5745         {"get_EntryPoint", ves_icall_System_Reflection_Assembly_get_EntryPoint},
5746         {"get_ManifestModule", ves_icall_System_Reflection_Assembly_get_ManifestModule},
5747         {"get_MetadataToken", mono_reflection_get_token},
5748         {"get_code_base", ves_icall_System_Reflection_Assembly_get_code_base},
5749         {"get_global_assembly_cache", ves_icall_System_Reflection_Assembly_get_global_assembly_cache},
5750         {"get_location", ves_icall_System_Reflection_Assembly_get_location},
5751         {"load_with_partial_name", ves_icall_System_Reflection_Assembly_load_with_partial_name}
5752 };
5753
5754 static const IcallEntry methodbase_icalls [] = {
5755         {"GetCurrentMethod", ves_icall_GetCurrentMethod},
5756         {"GetMethodFromHandleInternal", ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternal}
5757 };
5758
5759 static const IcallEntry module_icalls [] = {
5760         {"Close", ves_icall_System_Reflection_Module_Close},
5761         {"GetGlobalType", ves_icall_System_Reflection_Module_GetGlobalType},
5762         {"GetGuidInternal", ves_icall_System_Reflection_Module_GetGuidInternal},
5763         {"GetPEKind", ves_icall_System_Reflection_Module_GetPEKind},
5764         {"InternalGetTypes", ves_icall_System_Reflection_Module_InternalGetTypes},
5765         {"ResolveFieldToken", ves_icall_System_Reflection_Module_ResolveFieldToken},
5766         {"ResolveMemberToken", ves_icall_System_Reflection_Module_ResolveMemberToken},
5767         {"ResolveMethodToken", ves_icall_System_Reflection_Module_ResolveMethodToken},
5768         {"ResolveStringToken", ves_icall_System_Reflection_Module_ResolveStringToken},
5769         {"ResolveTypeToken", ves_icall_System_Reflection_Module_ResolveTypeToken},
5770         {"get_MetadataToken", mono_reflection_get_token}
5771 };
5772
5773 static const IcallEntry monocmethod_icalls [] = {
5774         {"GetGenericMethodDefinition_impl", ves_icall_MonoMethod_GetGenericMethodDefinition},
5775         {"InternalInvoke", ves_icall_InternalInvoke},
5776         {"get_Mono_IsInflatedMethod", ves_icall_MonoMethod_get_Mono_IsInflatedMethod}
5777 };
5778
5779 static const IcallEntry monoeventinfo_icalls [] = {
5780         {"get_event_info", ves_icall_get_event_info}
5781 };
5782
5783 static const IcallEntry monofield_icalls [] = {
5784         {"GetParentType", ves_icall_MonoField_GetParentType},
5785         {"GetValueInternal", ves_icall_MonoField_GetValueInternal},
5786         {"Mono_GetGenericFieldDefinition", ves_icall_MonoField_Mono_GetGenericFieldDefinition},
5787         {"SetValueInternal", ves_icall_FieldInfo_SetValueInternal}
5788 };
5789
5790 static const IcallEntry monogenericinst_icalls [] = {
5791         {"GetConstructors_internal", ves_icall_MonoGenericInst_GetConstructors},
5792         {"GetEvents_internal", ves_icall_MonoGenericInst_GetEvents},
5793         {"GetFields_internal", ves_icall_MonoGenericInst_GetFields},
5794         {"GetInterfaces_internal", ves_icall_MonoGenericInst_GetInterfaces},
5795         {"GetMethods_internal", ves_icall_MonoGenericInst_GetMethods},
5796         {"GetParentType", ves_icall_MonoGenericInst_GetParentType},
5797         {"GetProperties_internal", ves_icall_MonoGenericInst_GetProperties},
5798         {"initialize", mono_reflection_generic_inst_initialize}
5799 };
5800
5801 static const IcallEntry generictypeparambuilder_icalls [] = {
5802         {"initialize", mono_reflection_initialize_generic_parameter}
5803 };
5804
5805 static const IcallEntry monomethod_icalls [] = {
5806         {"BindGenericParameters", mono_reflection_bind_generic_method_parameters},
5807         {"GetGenericArguments", ves_icall_MonoMethod_GetGenericArguments},
5808         {"GetGenericMethodDefinition_impl", ves_icall_MonoMethod_GetGenericMethodDefinition},
5809         {"InternalInvoke", ves_icall_InternalInvoke},
5810         {"get_HasGenericParameters", ves_icall_MonoMethod_get_HasGenericParameters},
5811         {"get_IsGenericMethodDefinition", ves_icall_MonoMethod_get_IsGenericMethodDefinition},
5812         {"get_Mono_IsInflatedMethod", ves_icall_MonoMethod_get_Mono_IsInflatedMethod},
5813         {"get_base_definition", ves_icall_MonoMethod_get_base_definition}
5814 };
5815
5816 static const IcallEntry monomethodinfo_icalls [] = {
5817         {"get_method_info", ves_icall_get_method_info},
5818         {"get_parameter_info", ves_icall_get_parameter_info}
5819 };
5820
5821 static const IcallEntry monopropertyinfo_icalls [] = {
5822         {"get_property_info", ves_icall_get_property_info}
5823 };
5824
5825 static const IcallEntry parameterinfo_icalls [] = {
5826         {"get_MetadataToken", mono_reflection_get_token}
5827 };
5828
5829 static const IcallEntry dns_icalls [] = {
5830         {"GetHostByAddr_internal(string,string&,string[]&,string[]&)", ves_icall_System_Net_Dns_GetHostByAddr_internal},
5831         {"GetHostByName_internal(string,string&,string[]&,string[]&)", ves_icall_System_Net_Dns_GetHostByName_internal},
5832         {"GetHostName_internal(string&)", ves_icall_System_Net_Dns_GetHostName_internal}
5833 };
5834
5835 static const IcallEntry socket_icalls [] = {
5836         {"Accept_internal(intptr,int&)", ves_icall_System_Net_Sockets_Socket_Accept_internal},
5837         {"AsyncReceiveInternal", ves_icall_System_Net_Sockets_Socket_AsyncReceive},
5838         {"AsyncSendInternal", ves_icall_System_Net_Sockets_Socket_AsyncSend},
5839         {"Available_internal(intptr,int&)", ves_icall_System_Net_Sockets_Socket_Available_internal},
5840         {"Bind_internal(intptr,System.Net.SocketAddress,int&)", ves_icall_System_Net_Sockets_Socket_Bind_internal},
5841         {"Blocking_internal(intptr,bool,int&)", ves_icall_System_Net_Sockets_Socket_Blocking_internal},
5842         {"Close_internal(intptr,int&)", ves_icall_System_Net_Sockets_Socket_Close_internal},
5843         {"Connect_internal(intptr,System.Net.SocketAddress,int&)", ves_icall_System_Net_Sockets_Socket_Connect_internal},
5844         {"GetSocketOption_arr_internal(intptr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,byte[]&,int&)", ves_icall_System_Net_Sockets_Socket_GetSocketOption_arr_internal},
5845         {"GetSocketOption_obj_internal(intptr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,object&,int&)", ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal},
5846         {"GetSupportsAsync", ves_icall_System_IO_MonoIO_GetSupportsAsync},
5847         {"Listen_internal(intptr,int,int&)", ves_icall_System_Net_Sockets_Socket_Listen_internal},
5848         {"LocalEndPoint_internal(intptr,int&)", ves_icall_System_Net_Sockets_Socket_LocalEndPoint_internal},
5849         {"Poll_internal", ves_icall_System_Net_Sockets_Socket_Poll_internal},
5850         {"Receive_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,int&)", ves_icall_System_Net_Sockets_Socket_Receive_internal},
5851         {"RecvFrom_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,System.Net.SocketAddress&,int&)", ves_icall_System_Net_Sockets_Socket_RecvFrom_internal},
5852         {"RemoteEndPoint_internal(intptr,int&)", ves_icall_System_Net_Sockets_Socket_RemoteEndPoint_internal},
5853         {"Select_internal(System.Net.Sockets.Socket[]&,System.Net.Sockets.Socket[]&,System.Net.Sockets.Socket[]&,int,int&)", ves_icall_System_Net_Sockets_Socket_Select_internal},
5854         {"SendTo_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,System.Net.SocketAddress,int&)", ves_icall_System_Net_Sockets_Socket_SendTo_internal},
5855         {"Send_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,int&)", ves_icall_System_Net_Sockets_Socket_Send_internal},
5856         {"SetSocketOption_internal(intptr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,object,byte[],int,int&)", ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal},
5857         {"Shutdown_internal(intptr,System.Net.Sockets.SocketShutdown,int&)", ves_icall_System_Net_Sockets_Socket_Shutdown_internal},
5858         {"Socket_internal(System.Net.Sockets.AddressFamily,System.Net.Sockets.SocketType,System.Net.Sockets.ProtocolType,int&)", ves_icall_System_Net_Sockets_Socket_Socket_internal},
5859         {"WSAIoctl(intptr,int,byte[],byte[],int&)", ves_icall_System_Net_Sockets_Socket_WSAIoctl}
5860 };
5861
5862 static const IcallEntry socketex_icalls [] = {
5863         {"WSAGetLastError_internal", ves_icall_System_Net_Sockets_SocketException_WSAGetLastError_internal}
5864 };
5865
5866 static const IcallEntry object_icalls [] = {
5867         {"GetType", ves_icall_System_Object_GetType},
5868         {"InternalGetHashCode", ves_icall_System_Object_GetHashCode},
5869         {"MemberwiseClone", ves_icall_System_Object_MemberwiseClone},
5870         {"obj_address", ves_icall_System_Object_obj_address}
5871 };
5872
5873 static const IcallEntry assemblybuilder_icalls[] = {
5874         {"InternalAddModule", mono_image_load_module},
5875         {"basic_init", mono_image_basic_init}
5876 };
5877
5878 static const IcallEntry customattrbuilder_icalls [] = {
5879         {"GetBlob", mono_reflection_get_custom_attrs_blob}
5880 };
5881
5882 static const IcallEntry dynamicmethod_icalls [] = {
5883         {"create_dynamic_method", mono_reflection_create_dynamic_method}
5884 };
5885
5886 static const IcallEntry methodbuilder_icalls [] = {
5887         {"BindGenericParameters", mono_reflection_bind_generic_method_parameters}
5888 };
5889
5890 static const IcallEntry modulebuilder_icalls [] = {
5891         {"basic_init", mono_image_module_basic_init},
5892         {"build_metadata", ves_icall_ModuleBuilder_build_metadata},
5893         {"create_modified_type", ves_icall_ModuleBuilder_create_modified_type},
5894         {"getDataChunk", ves_icall_ModuleBuilder_getDataChunk},
5895         {"getMethodToken", ves_icall_ModuleBuilder_getMethodToken},
5896         {"getToken", ves_icall_ModuleBuilder_getToken},
5897         {"getUSIndex", mono_image_insert_string}
5898 };
5899
5900 static const IcallEntry signaturehelper_icalls [] = {
5901         {"get_signature_field", mono_reflection_sighelper_get_signature_field},
5902         {"get_signature_local", mono_reflection_sighelper_get_signature_local}
5903 };
5904
5905 static const IcallEntry typebuilder_icalls [] = {
5906         {"create_internal_class", mono_reflection_create_internal_class},
5907         {"create_runtime_class", mono_reflection_create_runtime_class},
5908         {"get_IsGenericParameter", ves_icall_TypeBuilder_get_IsGenericParameter},
5909         {"get_event_info", mono_reflection_event_builder_get_event_info},
5910         {"setup_generic_class", mono_reflection_setup_generic_class},
5911         {"setup_internal_class", mono_reflection_setup_internal_class}
5912 };
5913
5914 static const IcallEntry enumbuilder_icalls [] = {
5915         {"setup_enum_type", ves_icall_EnumBuilder_setup_enum_type}
5916 };
5917
5918 static const IcallEntry runtimehelpers_icalls [] = {
5919         {"GetObjectValue", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetObjectValue},
5920          /* REMOVEME: no longer needed, just so we dont break things when not needed */
5921         {"GetOffsetToStringData", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetOffsetToStringData},
5922         {"InitializeArray", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray},
5923         {"RunClassConstructor", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor},
5924         {"get_OffsetToStringData", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetOffsetToStringData}
5925 };
5926
5927 static const IcallEntry gchandle_icalls [] = {
5928         {"FreeHandle", ves_icall_System_GCHandle_FreeHandle},
5929         {"GetAddrOfPinnedObject", ves_icall_System_GCHandle_GetAddrOfPinnedObject},
5930         {"GetTarget", ves_icall_System_GCHandle_GetTarget},
5931         {"GetTargetHandle", ves_icall_System_GCHandle_GetTargetHandle}
5932 };
5933
5934 static const IcallEntry marshal_icalls [] = {
5935         {"AllocCoTaskMem", ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem},
5936         {"AllocHGlobal", ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal},
5937         {"DestroyStructure", ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure},
5938         {"FreeCoTaskMem", ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem},
5939         {"FreeHGlobal", ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal},
5940         {"GetLastWin32Error", ves_icall_System_Runtime_InteropServices_Marshal_GetLastWin32Error},
5941         {"OffsetOf", ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf},
5942         {"Prelink", ves_icall_System_Runtime_InteropServices_Marshal_Prelink},
5943         {"PrelinkAll", ves_icall_System_Runtime_InteropServices_Marshal_PrelinkAll},
5944         {"PtrToStringAnsi(intptr)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi},
5945         {"PtrToStringAnsi(intptr,int)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len},
5946         {"PtrToStringAuto(intptr)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi},
5947         {"PtrToStringAuto(intptr,int)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len},
5948         {"PtrToStringBSTR", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringBSTR},
5949         {"PtrToStringUni(intptr)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni},
5950         {"PtrToStringUni(intptr,int)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni_len},
5951         {"PtrToStructure(intptr,System.Type)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type},
5952         {"PtrToStructure(intptr,object)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure},
5953         {"ReAllocHGlobal", mono_marshal_realloc},
5954         {"ReadByte", ves_icall_System_Runtime_InteropServices_Marshal_ReadByte},
5955         {"ReadInt16", ves_icall_System_Runtime_InteropServices_Marshal_ReadInt16},
5956         {"ReadInt32", ves_icall_System_Runtime_InteropServices_Marshal_ReadInt32},
5957         {"ReadInt64", ves_icall_System_Runtime_InteropServices_Marshal_ReadInt64},
5958         {"ReadIntPtr", ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr},
5959         {"SizeOf", ves_icall_System_Runtime_InteropServices_Marshal_SizeOf},
5960         {"StringToHGlobalAnsi", ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi},
5961         {"StringToHGlobalAuto", ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi},
5962         {"StringToHGlobalUni", ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni},
5963         {"StructureToPtr", ves_icall_System_Runtime_InteropServices_Marshal_StructureToPtr},
5964         {"UnsafeAddrOfPinnedArrayElement", ves_icall_System_Runtime_InteropServices_Marshal_UnsafeAddrOfPinnedArrayElement},
5965         {"WriteByte", ves_icall_System_Runtime_InteropServices_Marshal_WriteByte},
5966         {"WriteInt16", ves_icall_System_Runtime_InteropServices_Marshal_WriteInt16},
5967         {"WriteInt32", ves_icall_System_Runtime_InteropServices_Marshal_WriteInt32},
5968         {"WriteInt64", ves_icall_System_Runtime_InteropServices_Marshal_WriteInt64},
5969         {"WriteIntPtr", ves_icall_System_Runtime_InteropServices_Marshal_WriteIntPtr},
5970         {"copy_from_unmanaged", ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged},
5971         {"copy_to_unmanaged", ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged}
5972 };
5973
5974 static const IcallEntry activationservices_icalls [] = {
5975         {"AllocateUninitializedClassInstance", ves_icall_System_Runtime_Activation_ActivationServices_AllocateUninitializedClassInstance},
5976         {"EnableProxyActivation", ves_icall_System_Runtime_Activation_ActivationServices_EnableProxyActivation}
5977 };
5978
5979 static const IcallEntry monomethodmessage_icalls [] = {
5980         {"InitMessage", ves_icall_MonoMethodMessage_InitMessage}
5981 };
5982         
5983 static const IcallEntry realproxy_icalls [] = {
5984         {"InternalGetProxyType", ves_icall_Remoting_RealProxy_InternalGetProxyType},
5985         {"InternalGetTransparentProxy", ves_icall_Remoting_RealProxy_GetTransparentProxy}
5986 };
5987
5988 static const IcallEntry remotingservices_icalls [] = {
5989         {"InternalExecute", ves_icall_InternalExecute},
5990         {"IsTransparentProxy", ves_icall_IsTransparentProxy}
5991 };
5992
5993 static const IcallEntry rng_icalls [] = {
5994         {"RngClose", ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngClose},
5995         {"RngGetBytes", ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngGetBytes},
5996         {"RngInitialize", ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngInitialize}
5997 };
5998
5999 static const IcallEntry methodhandle_icalls [] = {
6000         {"GetFunctionPointer", ves_icall_RuntimeMethod_GetFunctionPointer}
6001 };
6002
6003 static const IcallEntry string_icalls [] = {
6004         {".ctor(char*)", ves_icall_System_String_ctor_charp},
6005         {".ctor(char*,int,int)", ves_icall_System_String_ctor_charp_int_int},
6006         {".ctor(char,int)", ves_icall_System_String_ctor_char_int},
6007         {".ctor(char[])", ves_icall_System_String_ctor_chara},
6008         {".ctor(char[],int,int)", ves_icall_System_String_ctor_chara_int_int},
6009         {".ctor(sbyte*)", ves_icall_System_String_ctor_sbytep},
6010         {".ctor(sbyte*,int,int)", ves_icall_System_String_ctor_sbytep_int_int},
6011         {".ctor(sbyte*,int,int,System.Text.Encoding)", ves_icall_System_String_ctor_encoding},
6012         {"GetHashCode", ves_icall_System_String_GetHashCode},
6013         {"InternalAllocateStr", ves_icall_System_String_InternalAllocateStr},
6014         {"InternalCharCopy", ves_icall_System_String_InternalCharCopy},
6015         {"InternalCopyTo", ves_icall_System_String_InternalCopyTo},
6016         {"InternalIndexOfAny", ves_icall_System_String_InternalIndexOfAny},
6017         {"InternalInsert", ves_icall_System_String_InternalInsert},
6018         {"InternalIntern", ves_icall_System_String_InternalIntern},
6019         {"InternalIsInterned", ves_icall_System_String_InternalIsInterned},
6020         {"InternalJoin", ves_icall_System_String_InternalJoin},
6021         {"InternalLastIndexOfAny", ves_icall_System_String_InternalLastIndexOfAny},
6022         {"InternalPad", ves_icall_System_String_InternalPad},
6023         {"InternalRemove", ves_icall_System_String_InternalRemove},
6024         {"InternalReplace(char,char)", ves_icall_System_String_InternalReplace_Char},
6025         {"InternalReplace(string,string,System.Globalization.CompareInfo)", ves_icall_System_String_InternalReplace_Str_Comp},
6026         {"InternalSplit", ves_icall_System_String_InternalSplit},
6027         {"InternalStrcpy(string,int,char[])", ves_icall_System_String_InternalStrcpy_Chars},
6028         {"InternalStrcpy(string,int,char[],int,int)", ves_icall_System_String_InternalStrcpy_CharsN},
6029         {"InternalStrcpy(string,int,string)", ves_icall_System_String_InternalStrcpy_Str},
6030         {"InternalStrcpy(string,int,string,int,int)", ves_icall_System_String_InternalStrcpy_StrN},
6031         {"InternalToLower(System.Globalization.CultureInfo)", ves_icall_System_String_InternalToLower_Comp},
6032         {"InternalToUpper(System.Globalization.CultureInfo)", ves_icall_System_String_InternalToUpper_Comp},
6033         {"InternalTrim", ves_icall_System_String_InternalTrim},
6034         {"get_Chars", ves_icall_System_String_get_Chars}
6035 };
6036
6037 static const IcallEntry encoding_icalls [] = {
6038         {"InternalCodePage", ves_icall_System_Text_Encoding_InternalCodePage}
6039 };
6040
6041 static const IcallEntry monitor_icalls [] = {
6042         {"Monitor_exit", ves_icall_System_Threading_Monitor_Monitor_exit},
6043         {"Monitor_pulse", ves_icall_System_Threading_Monitor_Monitor_pulse},
6044         {"Monitor_pulse_all", ves_icall_System_Threading_Monitor_Monitor_pulse_all},
6045         {"Monitor_test_owner", ves_icall_System_Threading_Monitor_Monitor_test_owner},
6046         {"Monitor_test_synchronised", ves_icall_System_Threading_Monitor_Monitor_test_synchronised},
6047         {"Monitor_try_enter", ves_icall_System_Threading_Monitor_Monitor_try_enter},
6048         {"Monitor_wait", ves_icall_System_Threading_Monitor_Monitor_wait}
6049 };
6050
6051 static const IcallEntry interlocked_icalls [] = {
6052         {"CompareExchange(int&,int,int)", ves_icall_System_Threading_Interlocked_CompareExchange_Int},
6053         {"CompareExchange(object&,object,object)", ves_icall_System_Threading_Interlocked_CompareExchange_Object},
6054         {"CompareExchange(single&,single,single)", ves_icall_System_Threading_Interlocked_CompareExchange_Single},
6055         {"Decrement(int&)", ves_icall_System_Threading_Interlocked_Decrement_Int},
6056         {"Decrement(long&)", ves_icall_System_Threading_Interlocked_Decrement_Long},
6057         {"Exchange(int&,int)", ves_icall_System_Threading_Interlocked_Exchange_Int},
6058         {"Exchange(object&,object)", ves_icall_System_Threading_Interlocked_Exchange_Object},
6059         {"Exchange(single&,single)", ves_icall_System_Threading_Interlocked_Exchange_Single},
6060         {"Increment(int&)", ves_icall_System_Threading_Interlocked_Increment_Int},
6061         {"Increment(long&)", ves_icall_System_Threading_Interlocked_Increment_Long}
6062 };
6063
6064 static const IcallEntry mutex_icalls [] = {
6065         {"CreateMutex_internal(bool,string,bool&)", ves_icall_System_Threading_Mutex_CreateMutex_internal},
6066         {"ReleaseMutex_internal(intptr)", ves_icall_System_Threading_Mutex_ReleaseMutex_internal}
6067 };
6068
6069 static const IcallEntry nativeevents_icalls [] = {
6070         {"CloseEvent_internal", ves_icall_System_Threading_Events_CloseEvent_internal},
6071         {"CreateEvent_internal", ves_icall_System_Threading_Events_CreateEvent_internal},
6072         {"ResetEvent_internal",  ves_icall_System_Threading_Events_ResetEvent_internal},
6073         {"SetEvent_internal",    ves_icall_System_Threading_Events_SetEvent_internal}
6074 };
6075
6076 static const IcallEntry thread_icalls [] = {
6077         {"Abort_internal(object)", ves_icall_System_Threading_Thread_Abort},
6078         {"CurrentThread_internal", mono_thread_current},
6079         {"GetDomainID", ves_icall_System_Threading_Thread_GetDomainID},
6080         {"GetName_internal", ves_icall_System_Threading_Thread_GetName_internal},
6081         {"Join_internal", ves_icall_System_Threading_Thread_Join_internal},
6082         {"ResetAbort_internal()", ves_icall_System_Threading_Thread_ResetAbort},
6083         {"Resume_internal()", ves_icall_System_Threading_Thread_Resume},
6084         {"SetName_internal", ves_icall_System_Threading_Thread_SetName_internal},
6085         {"Sleep_internal", ves_icall_System_Threading_Thread_Sleep_internal},
6086         {"SlotHash_lookup", ves_icall_System_Threading_Thread_SlotHash_lookup},
6087         {"SlotHash_store", ves_icall_System_Threading_Thread_SlotHash_store},
6088         {"Start_internal", ves_icall_System_Threading_Thread_Start_internal},
6089         {"Suspend_internal", ves_icall_System_Threading_Thread_Suspend},
6090         {"Thread_free_internal", ves_icall_System_Threading_Thread_Thread_free_internal},
6091         {"Thread_internal", ves_icall_System_Threading_Thread_Thread_internal},
6092         {"VolatileRead(byte&)", ves_icall_System_Threading_Thread_VolatileRead1},
6093         {"VolatileRead(double&)", ves_icall_System_Threading_Thread_VolatileRead8},
6094         {"VolatileRead(int&)", ves_icall_System_Threading_Thread_VolatileRead4},
6095         {"VolatileRead(int16&)", ves_icall_System_Threading_Thread_VolatileRead2},
6096         {"VolatileRead(intptr&)", ves_icall_System_Threading_Thread_VolatileReadIntPtr},
6097         {"VolatileRead(long&)", ves_icall_System_Threading_Thread_VolatileRead8},
6098         {"VolatileRead(object&)", ves_icall_System_Threading_Thread_VolatileReadIntPtr},
6099         {"VolatileRead(sbyte&)", ves_icall_System_Threading_Thread_VolatileRead1},
6100         {"VolatileRead(single&)", ves_icall_System_Threading_Thread_VolatileRead4},
6101         {"VolatileRead(uint&)", ves_icall_System_Threading_Thread_VolatileRead2},
6102         {"VolatileRead(uint16&)", ves_icall_System_Threading_Thread_VolatileRead2},
6103         {"VolatileRead(uintptr&)", ves_icall_System_Threading_Thread_VolatileReadIntPtr},
6104         {"VolatileRead(ulong&)", ves_icall_System_Threading_Thread_VolatileRead8},
6105         {"VolatileWrite(byte&,byte)", ves_icall_System_Threading_Thread_VolatileWrite1},
6106         {"VolatileWrite(double&,double)", ves_icall_System_Threading_Thread_VolatileWrite8},
6107         {"VolatileWrite(int&,int)", ves_icall_System_Threading_Thread_VolatileWrite4},
6108         {"VolatileWrite(int16&,int16)", ves_icall_System_Threading_Thread_VolatileWrite2},
6109         {"VolatileWrite(intptr&,intptr)", ves_icall_System_Threading_Thread_VolatileWriteIntPtr},
6110         {"VolatileWrite(long&,long)", ves_icall_System_Threading_Thread_VolatileWrite8},
6111         {"VolatileWrite(object&,object)", ves_icall_System_Threading_Thread_VolatileWriteIntPtr},
6112         {"VolatileWrite(sbyte&,sbyte)", ves_icall_System_Threading_Thread_VolatileWrite1},
6113         {"VolatileWrite(single&,single)", ves_icall_System_Threading_Thread_VolatileWrite4},
6114         {"VolatileWrite(uint&,uint)", ves_icall_System_Threading_Thread_VolatileWrite2},
6115         {"VolatileWrite(uint16&,uint16)", ves_icall_System_Threading_Thread_VolatileWrite2},
6116         {"VolatileWrite(uintptr&,uintptr)", ves_icall_System_Threading_Thread_VolatileWriteIntPtr},
6117         {"VolatileWrite(ulong&,ulong)", ves_icall_System_Threading_Thread_VolatileWrite8},
6118         {"current_lcid()", ves_icall_System_Threading_Thread_current_lcid}
6119 };
6120
6121 static const IcallEntry threadpool_icalls [] = {
6122         {"BindHandleInternal", ves_icall_System_Threading_ThreadPool_BindHandle},
6123         {"GetAvailableThreads", ves_icall_System_Threading_ThreadPool_GetAvailableThreads},
6124         {"GetMaxThreads", ves_icall_System_Threading_ThreadPool_GetMaxThreads},
6125         {"GetMinThreads", ves_icall_System_Threading_ThreadPool_GetMinThreads},
6126         {"SetMinThreads", ves_icall_System_Threading_ThreadPool_SetMinThreads}
6127 };
6128
6129 static const IcallEntry waithandle_icalls [] = {
6130         {"WaitAll_internal", ves_icall_System_Threading_WaitHandle_WaitAll_internal},
6131         {"WaitAny_internal", ves_icall_System_Threading_WaitHandle_WaitAny_internal},
6132         {"WaitOne_internal", ves_icall_System_Threading_WaitHandle_WaitOne_internal}
6133 };
6134
6135 static const IcallEntry type_icalls [] = {
6136         {"BindGenericParameters", ves_icall_Type_BindGenericParameters},
6137         {"Equals", ves_icall_type_Equals},
6138         {"GetGenericParameterPosition", ves_icall_Type_GetGenericParameterPosition},
6139         {"GetGenericTypeDefinition_impl", ves_icall_Type_GetGenericTypeDefinition_impl},
6140         {"GetInterfaceMapData", ves_icall_Type_GetInterfaceMapData},
6141         {"GetTypeCode", ves_icall_type_GetTypeCode},
6142         {"IsArrayImpl", ves_icall_Type_IsArrayImpl},
6143         {"IsInstanceOfType", ves_icall_type_IsInstanceOfType},
6144         {"get_IsGenericInstance", ves_icall_Type_get_IsGenericInstance},
6145         {"get_IsGenericTypeDefinition", ves_icall_Type_get_IsGenericTypeDefinition},
6146         {"internal_from_handle", ves_icall_type_from_handle},
6147         {"internal_from_name", ves_icall_type_from_name},
6148         {"make_array_type", ves_icall_Type_make_array_type},
6149         {"make_byref_type", ves_icall_Type_make_byref_type},
6150         {"type_is_assignable_from", ves_icall_type_is_assignable_from},
6151         {"type_is_subtype_of", ves_icall_type_is_subtype_of}
6152 };
6153
6154 static const IcallEntry typedref_icalls [] = {
6155         {"ToObject",    mono_TypedReference_ToObject}
6156 };
6157
6158 static const IcallEntry valuetype_icalls [] = {
6159         {"InternalEquals", ves_icall_System_ValueType_Equals},
6160         {"InternalGetHashCode", ves_icall_System_ValueType_InternalGetHashCode}
6161 };
6162
6163 static const IcallEntry web_icalls [] = {
6164         {"GetMachineConfigPath", ves_icall_System_Configuration_DefaultConfig_get_machine_config_path},
6165         {"GetMachineInstallDirectory", ves_icall_System_Web_Util_ICalls_get_machine_install_dir}
6166 };
6167
6168 static const IcallEntry identity_icalls [] = {
6169         {"GetCurrentToken", ves_icall_System_Security_Principal_WindowsIdentity_GetCurrentToken},
6170         {"GetTokenName", ves_icall_System_Security_Principal_WindowsIdentity_GetTokenName},
6171         {"GetUserToken", ves_icall_System_Security_Principal_WindowsIdentity_GetUserToken},
6172         {"_GetRoles", ves_icall_System_Security_Principal_WindowsIdentity_GetRoles}
6173 };
6174
6175 static const IcallEntry impersonation_icalls [] = {
6176         {"CloseToken", ves_icall_System_Security_Principal_WindowsImpersonationContext_CloseToken},
6177         {"DuplicateToken", ves_icall_System_Security_Principal_WindowsImpersonationContext_DuplicateToken},
6178         {"RevertToSelf", ves_icall_System_Security_Principal_WindowsImpersonationContext_RevertToSelf},
6179         {"SetCurrentToken", ves_icall_System_Security_Principal_WindowsImpersonationContext_SetCurrentToken}
6180 };
6181
6182 static const IcallEntry principal_icalls [] = {
6183         {"IsMemberOfGroupId", ves_icall_System_Security_Principal_WindowsPrincipal_IsMemberOfGroupId},
6184         {"IsMemberOfGroupName", ves_icall_System_Security_Principal_WindowsPrincipal_IsMemberOfGroupName}
6185 };
6186
6187 static const IcallEntry keypair_icalls [] = {
6188         {"_CanSecure", ves_icall_Mono_Security_Cryptography_KeyPairPersistence_CanSecure},
6189         {"_IsMachineProtected", ves_icall_Mono_Security_Cryptography_KeyPairPersistence_IsMachineProtected},
6190         {"_IsUserProtected", ves_icall_Mono_Security_Cryptography_KeyPairPersistence_IsUserProtected},
6191         {"_ProtectMachine", ves_icall_Mono_Security_Cryptography_KeyPairPersistence_ProtectMachine},
6192         {"_ProtectUser", ves_icall_Mono_Security_Cryptography_KeyPairPersistence_ProtectUser}
6193 };
6194
6195 /* proto
6196 static const IcallEntry array_icalls [] = {
6197 };
6198
6199 */
6200
6201 /* keep the entries all sorted */
6202 static const IcallMap icall_entries [] = {
6203         {"Mono.Security.Cryptography.KeyPairPersistence", keypair_icalls, G_N_ELEMENTS (keypair_icalls)},
6204         {"System.Activator", activator_icalls, G_N_ELEMENTS (activator_icalls)},
6205         {"System.AppDomain", appdomain_icalls, G_N_ELEMENTS (appdomain_icalls)},
6206         {"System.ArgIterator", argiterator_icalls, G_N_ELEMENTS (argiterator_icalls)},
6207         {"System.Array", array_icalls, G_N_ELEMENTS (array_icalls)},
6208         {"System.Buffer", buffer_icalls, G_N_ELEMENTS (buffer_icalls)},
6209         {"System.Char", char_icalls, G_N_ELEMENTS (char_icalls)},
6210         {"System.Configuration.DefaultConfig", defaultconf_icalls, G_N_ELEMENTS (defaultconf_icalls)},
6211         {"System.CurrentTimeZone", timezone_icalls, G_N_ELEMENTS (timezone_icalls)},
6212         {"System.DateTime", datetime_icalls, G_N_ELEMENTS (datetime_icalls)},
6213         {"System.Decimal", decimal_icalls, G_N_ELEMENTS (decimal_icalls)},
6214         {"System.Delegate", delegate_icalls, G_N_ELEMENTS (delegate_icalls)},
6215         {"System.Diagnostics.DefaultTraceListener", tracelist_icalls, G_N_ELEMENTS (tracelist_icalls)},
6216         {"System.Diagnostics.FileVersionInfo", fileversion_icalls, G_N_ELEMENTS (fileversion_icalls)},
6217         {"System.Diagnostics.Process", process_icalls, G_N_ELEMENTS (process_icalls)},
6218         {"System.Double", double_icalls, G_N_ELEMENTS (double_icalls)},
6219         {"System.Enum", enum_icalls, G_N_ELEMENTS (enum_icalls)},
6220         {"System.Environment", environment_icalls, G_N_ELEMENTS (environment_icalls)},
6221         {"System.GC", gc_icalls, G_N_ELEMENTS (gc_icalls)},
6222         {"System.Globalization.CompareInfo", compareinfo_icalls, G_N_ELEMENTS (compareinfo_icalls)},
6223         {"System.Globalization.CultureInfo", cultureinfo_icalls, G_N_ELEMENTS (cultureinfo_icalls)},
6224         {"System.IO.FAMWatcher", famwatcher_icalls, G_N_ELEMENTS (famwatcher_icalls)},
6225         {"System.IO.FileSystemWatcher", filewatcher_icalls, G_N_ELEMENTS (filewatcher_icalls)},
6226         {"System.IO.MonoIO", monoio_icalls, G_N_ELEMENTS (monoio_icalls)},
6227         {"System.IO.Path", path_icalls, G_N_ELEMENTS (path_icalls)},
6228         {"System.Math", math_icalls, G_N_ELEMENTS (math_icalls)},
6229         {"System.MonoCustomAttrs", customattrs_icalls, G_N_ELEMENTS (customattrs_icalls)},
6230         {"System.MonoEnumInfo", enuminfo_icalls, G_N_ELEMENTS (enuminfo_icalls)},
6231         {"System.MonoType", monotype_icalls, G_N_ELEMENTS (monotype_icalls)},
6232         {"System.Net.Dns", dns_icalls, G_N_ELEMENTS (dns_icalls)},
6233         {"System.Net.Sockets.Socket", socket_icalls, G_N_ELEMENTS (socket_icalls)},
6234         {"System.Net.Sockets.SocketException", socketex_icalls, G_N_ELEMENTS (socketex_icalls)},
6235         {"System.Object", object_icalls, G_N_ELEMENTS (object_icalls)},
6236         {"System.Reflection.Assembly", assembly_icalls, G_N_ELEMENTS (assembly_icalls)},
6237         {"System.Reflection.Emit.AssemblyBuilder", assemblybuilder_icalls, G_N_ELEMENTS (assemblybuilder_icalls)},
6238         {"System.Reflection.Emit.CustomAttributeBuilder", customattrbuilder_icalls, G_N_ELEMENTS (customattrbuilder_icalls)},
6239         {"System.Reflection.Emit.DynamicMethod", dynamicmethod_icalls, G_N_ELEMENTS (dynamicmethod_icalls)},
6240         {"System.Reflection.Emit.EnumBuilder", enumbuilder_icalls, G_N_ELEMENTS (enumbuilder_icalls)},
6241         {"System.Reflection.Emit.GenericTypeParameterBuilder", generictypeparambuilder_icalls, G_N_ELEMENTS (generictypeparambuilder_icalls)},
6242         {"System.Reflection.Emit.MethodBuilder", methodbuilder_icalls, G_N_ELEMENTS (methodbuilder_icalls)},
6243         {"System.Reflection.Emit.ModuleBuilder", modulebuilder_icalls, G_N_ELEMENTS (modulebuilder_icalls)},
6244         {"System.Reflection.Emit.SignatureHelper", signaturehelper_icalls, G_N_ELEMENTS (signaturehelper_icalls)},
6245         {"System.Reflection.Emit.TypeBuilder", typebuilder_icalls, G_N_ELEMENTS (typebuilder_icalls)},
6246         {"System.Reflection.FieldInfo", fieldinfo_icalls, G_N_ELEMENTS (fieldinfo_icalls)},
6247         {"System.Reflection.MemberInfo", memberinfo_icalls, G_N_ELEMENTS (memberinfo_icalls)},
6248         {"System.Reflection.MethodBase", methodbase_icalls, G_N_ELEMENTS (methodbase_icalls)},
6249         {"System.Reflection.Module", module_icalls, G_N_ELEMENTS (module_icalls)},
6250         {"System.Reflection.MonoCMethod", monocmethod_icalls, G_N_ELEMENTS (monocmethod_icalls)},
6251         {"System.Reflection.MonoEventInfo", monoeventinfo_icalls, G_N_ELEMENTS (monoeventinfo_icalls)},
6252         {"System.Reflection.MonoField", monofield_icalls, G_N_ELEMENTS (monofield_icalls)},
6253         {"System.Reflection.MonoGenericInst", monogenericinst_icalls, G_N_ELEMENTS (monogenericinst_icalls)},
6254         {"System.Reflection.MonoMethod", monomethod_icalls, G_N_ELEMENTS (monomethod_icalls)},
6255         {"System.Reflection.MonoMethodInfo", monomethodinfo_icalls, G_N_ELEMENTS (monomethodinfo_icalls)},
6256         {"System.Reflection.MonoPropertyInfo", monopropertyinfo_icalls, G_N_ELEMENTS (monopropertyinfo_icalls)},
6257         {"System.Reflection.ParameterInfo", parameterinfo_icalls, G_N_ELEMENTS (parameterinfo_icalls)},
6258         {"System.Runtime.CompilerServices.RuntimeHelpers", runtimehelpers_icalls, G_N_ELEMENTS (runtimehelpers_icalls)},
6259         {"System.Runtime.InteropServices.GCHandle", gchandle_icalls, G_N_ELEMENTS (gchandle_icalls)},
6260         {"System.Runtime.InteropServices.Marshal", marshal_icalls, G_N_ELEMENTS (marshal_icalls)},
6261         {"System.Runtime.Remoting.Activation.ActivationServices", activationservices_icalls, G_N_ELEMENTS (activationservices_icalls)},
6262         {"System.Runtime.Remoting.Messaging.MonoMethodMessage", monomethodmessage_icalls, G_N_ELEMENTS (monomethodmessage_icalls)},
6263         {"System.Runtime.Remoting.Proxies.RealProxy", realproxy_icalls, G_N_ELEMENTS (realproxy_icalls)},
6264         {"System.Runtime.Remoting.RemotingServices", remotingservices_icalls, G_N_ELEMENTS (remotingservices_icalls)},
6265         {"System.RuntimeMethodHandle", methodhandle_icalls, G_N_ELEMENTS (methodhandle_icalls)},
6266         {"System.Security.Cryptography.RNGCryptoServiceProvider", rng_icalls, G_N_ELEMENTS (rng_icalls)},
6267         {"System.Security.Principal.WindowsIdentity", identity_icalls, G_N_ELEMENTS (identity_icalls)},
6268         {"System.Security.Principal.WindowsImpersonationContext", impersonation_icalls, G_N_ELEMENTS (impersonation_icalls)},
6269         {"System.Security.Principal.WindowsPrincipal", principal_icalls, G_N_ELEMENTS (principal_icalls)},
6270         {"System.String", string_icalls, G_N_ELEMENTS (string_icalls)},
6271         {"System.Text.Encoding", encoding_icalls, G_N_ELEMENTS (encoding_icalls)},
6272         {"System.Threading.Interlocked", interlocked_icalls, G_N_ELEMENTS (interlocked_icalls)},
6273         {"System.Threading.Monitor", monitor_icalls, G_N_ELEMENTS (monitor_icalls)},
6274         {"System.Threading.Mutex", mutex_icalls, G_N_ELEMENTS (mutex_icalls)},
6275         {"System.Threading.NativeEventCalls", nativeevents_icalls, G_N_ELEMENTS (nativeevents_icalls)},
6276         {"System.Threading.Thread", thread_icalls, G_N_ELEMENTS (thread_icalls)},
6277         {"System.Threading.ThreadPool", threadpool_icalls, G_N_ELEMENTS (threadpool_icalls)},
6278         {"System.Threading.WaitHandle", waithandle_icalls, G_N_ELEMENTS (waithandle_icalls)},
6279         {"System.Type", type_icalls, G_N_ELEMENTS (type_icalls)},
6280         {"System.TypedReference", typedref_icalls, G_N_ELEMENTS (typedref_icalls)},
6281         {"System.ValueType", valuetype_icalls, G_N_ELEMENTS (valuetype_icalls)},
6282         {"System.Web.Util.ICalls", web_icalls, G_N_ELEMENTS (web_icalls)}
6283 };
6284
6285 static GHashTable *icall_hash = NULL;
6286 static GHashTable *jit_icall_hash_name = NULL;
6287 static GHashTable *jit_icall_hash_addr = NULL;
6288
6289 void
6290 mono_init_icall (void)
6291 {
6292         int i = 0;
6293
6294         /* check that tables are sorted: disable in release */
6295         if (TRUE) {
6296                 int j;
6297                 const IcallMap *imap;
6298                 const IcallEntry *ientry;
6299                 const char *prev_class = NULL;
6300                 const char *prev_method;
6301                 
6302                 for (i = 0; i < G_N_ELEMENTS (icall_entries); ++i) {
6303                         imap = &icall_entries [i];
6304                         prev_method = NULL;
6305                         if (prev_class && strcmp (prev_class, imap->klass) >= 0)
6306                                 g_print ("class %s should come before class %s\n", imap->klass, prev_class);
6307                         prev_class = imap->klass;
6308                         for (j = 0; j < imap->size; ++j) {
6309                                 ientry = &imap->icalls [j];
6310                                 if (prev_method && strcmp (prev_method, ientry->method) >= 0)
6311                                         g_print ("method %s should come before method %s\n", ientry->method, prev_method);
6312                                 prev_method = ientry->method;
6313                         }
6314                 }
6315         }
6316
6317         icall_hash = g_hash_table_new (g_str_hash , g_str_equal);
6318 }
6319
6320 void
6321 mono_add_internal_call (const char *name, gconstpointer method)
6322 {
6323         mono_loader_lock ();
6324
6325         g_hash_table_insert (icall_hash, g_strdup (name), (gpointer) method);
6326
6327         mono_loader_unlock ();
6328 }
6329
6330 static int
6331 compare_class_imap (const void *key, const void *elem)
6332 {
6333         const IcallMap* imap = (const IcallMap*)elem;
6334         return strcmp (key, imap->klass);
6335 }
6336
6337 static const IcallMap*
6338 find_class_icalls (const char *name)
6339 {
6340         return (const IcallMap*) bsearch (name, icall_entries, G_N_ELEMENTS (icall_entries), sizeof (IcallMap), compare_class_imap);
6341 }
6342
6343 static int
6344 compare_method_imap (const void *key, const void *elem)
6345 {
6346         const IcallEntry* ientry = (const IcallEntry*)elem;
6347         return strcmp (key, ientry->method);
6348 }
6349
6350 static void*
6351 find_method_icall (const IcallMap *imap, const char *name)
6352 {
6353         const IcallEntry *ientry = (const IcallEntry*) bsearch (name, imap->icalls, imap->size, sizeof (IcallEntry), compare_method_imap);
6354         if (ientry)
6355                 return (void*)ientry->func;
6356         return NULL;
6357 }
6358
6359 /* 
6360  * we should probably export this as an helper (handle nested types).
6361  * Returns the number of chars written in buf.
6362  */
6363 static int
6364 concat_class_name (char *buf, int bufsize, MonoClass *klass)
6365 {
6366         int nspacelen, cnamelen;
6367         nspacelen = strlen (klass->name_space);
6368         cnamelen = strlen (klass->name);
6369         if (nspacelen + cnamelen + 2 > bufsize)
6370                 return 0;
6371         if (nspacelen) {
6372                 memcpy (buf, klass->name_space, nspacelen);
6373                 buf [nspacelen ++] = '.';
6374         }
6375         memcpy (buf + nspacelen, klass->name, cnamelen);
6376         buf [nspacelen + cnamelen] = 0;
6377         return nspacelen + cnamelen;
6378 }
6379
6380 gpointer
6381 mono_lookup_internal_call (MonoMethod *method)
6382 {
6383         char *sigstart;
6384         char *tmpsig;
6385         char mname [2048];
6386         int typelen = 0, mlen, siglen;
6387         gpointer res;
6388         const IcallMap *imap;
6389
6390         g_assert (method != NULL);
6391
6392         typelen = concat_class_name (mname, sizeof (mname), method->klass);
6393         if (!typelen)
6394                 return NULL;
6395
6396         imap = find_class_icalls (mname);
6397
6398         mname [typelen] = ':';
6399         mname [typelen + 1] = ':';
6400
6401         mlen = strlen (method->name);
6402         memcpy (mname + typelen + 2, method->name, mlen);
6403         sigstart = mname + typelen + 2 + mlen;
6404         *sigstart = 0;
6405
6406         tmpsig = mono_signature_get_desc (method->signature, TRUE);
6407         siglen = strlen (tmpsig);
6408         if (typelen + mlen + siglen + 6 > sizeof (mname))
6409                 return NULL;
6410         sigstart [0] = '(';
6411         memcpy (sigstart + 1, tmpsig, siglen);
6412         sigstart [siglen + 1] = ')';
6413         sigstart [siglen + 2] = 0;
6414         g_free (tmpsig);
6415         
6416         mono_loader_lock ();
6417
6418         res = g_hash_table_lookup (icall_hash, mname);
6419         if (res) {
6420                 mono_loader_unlock ();
6421                 return res;
6422         }
6423         /* try without signature */
6424         *sigstart = 0;
6425         res = g_hash_table_lookup (icall_hash, mname);
6426         if (res) {
6427                 mono_loader_unlock ();
6428                 return res;
6429         }
6430
6431         /* it wasn't found in the static call tables */
6432         if (!imap) {
6433                 mono_loader_unlock ();
6434                 return NULL;
6435         }
6436         res = find_method_icall (imap, sigstart - mlen);
6437         if (res) {
6438                 mono_loader_unlock ();
6439                 return res;
6440         }
6441         /* try _with_ signature */
6442         *sigstart = '(';
6443         res = find_method_icall (imap, sigstart - mlen);
6444         if (res) {
6445                 mono_loader_unlock ();
6446                 return res;
6447         }
6448         
6449         g_warning ("cant resolve internal call to \"%s\" (tested without signature also)", mname);
6450         g_print ("\nYour mono runtime and class libraries are out of sync.\n");
6451         g_print ("The out of sync library is: %s\n", method->klass->image->name);
6452         g_print ("\nWhen you update one from cvs you need to update, compile and install\nthe other too.\n");
6453         g_print ("Do not report this as a bug unless you're sure you have updated correctly:\nyou probably have a broken mono install.\n");
6454         g_print ("If you see other errors or faults after this message they are probably related\n");
6455         g_print ("and you need to fix your mono install first.\n");
6456
6457         mono_loader_unlock ();
6458
6459         return NULL;
6460 }
6461
6462 static MonoType*
6463 type_from_typename (char *typename)
6464 {
6465         MonoClass *klass = NULL;        /* assignment to shut GCC warning up */
6466
6467         if (!strcmp (typename, "int"))
6468                 klass = mono_defaults.int_class;
6469         else if (!strcmp (typename, "ptr"))
6470                 klass = mono_defaults.int_class;
6471         else if (!strcmp (typename, "void"))
6472                 klass = mono_defaults.void_class;
6473         else if (!strcmp (typename, "int32"))
6474                 klass = mono_defaults.int32_class;
6475         else if (!strcmp (typename, "uint32"))
6476                 klass = mono_defaults.uint32_class;
6477         else if (!strcmp (typename, "long"))
6478                 klass = mono_defaults.int64_class;
6479         else if (!strcmp (typename, "ulong"))
6480                 klass = mono_defaults.uint64_class;
6481         else if (!strcmp (typename, "float"))
6482                 klass = mono_defaults.single_class;
6483         else if (!strcmp (typename, "double"))
6484                 klass = mono_defaults.double_class;
6485         else if (!strcmp (typename, "object"))
6486                 klass = mono_defaults.object_class;
6487         else if (!strcmp (typename, "obj"))
6488                 klass = mono_defaults.object_class;
6489         else {
6490                 g_error (typename);
6491                 g_assert_not_reached ();
6492         }
6493         return &klass->byval_arg;
6494 }
6495
6496 MonoMethodSignature*
6497 mono_create_icall_signature (const char *sigstr)
6498 {
6499         gchar **parts;
6500         int i, len;
6501         gchar **tmp;
6502         MonoMethodSignature *res;
6503
6504         mono_loader_lock ();
6505         res = g_hash_table_lookup (mono_defaults.corlib->helper_signatures, sigstr);
6506         if (res) {
6507                 mono_loader_unlock ();
6508                 return res;
6509         }
6510
6511         parts = g_strsplit (sigstr, " ", 256);
6512
6513         tmp = parts;
6514         len = 0;
6515         while (*tmp) {
6516                 len ++;
6517                 tmp ++;
6518         }
6519
6520         res = mono_metadata_signature_alloc (mono_defaults.corlib, len - 1);
6521         res->pinvoke = 1;
6522
6523 #ifdef PLATFORM_WIN32
6524         /* 
6525          * Under windows, the default pinvoke calling convention is STDCALL but
6526          * we need CDECL.
6527          */
6528         res->call_convention = MONO_CALL_C;
6529 #endif
6530
6531         res->ret = type_from_typename (parts [0]);
6532         for (i = 1; i < len; ++i) {
6533                 res->params [i - 1] = type_from_typename (parts [i]);
6534         }
6535
6536         g_strfreev (parts);
6537
6538         g_hash_table_insert (mono_defaults.corlib->helper_signatures, (gpointer)sigstr, res);
6539
6540         mono_loader_unlock ();
6541
6542         return res;
6543 }
6544
6545 MonoJitICallInfo *
6546 mono_find_jit_icall_by_name (const char *name)
6547 {
6548         MonoJitICallInfo *info;
6549         g_assert (jit_icall_hash_name);
6550
6551         mono_loader_lock ();
6552         info = g_hash_table_lookup (jit_icall_hash_name, name);
6553         mono_loader_unlock ();
6554         return info;
6555 }
6556
6557 MonoJitICallInfo *
6558 mono_find_jit_icall_by_addr (gconstpointer addr)
6559 {
6560         MonoJitICallInfo *info;
6561         g_assert (jit_icall_hash_addr);
6562
6563         mono_loader_lock ();
6564         info = g_hash_table_lookup (jit_icall_hash_addr, (gpointer)addr);
6565         mono_loader_unlock ();
6566
6567         return info;
6568 }
6569
6570 void
6571 mono_register_jit_icall_wrapper (MonoJitICallInfo *info, gconstpointer wrapper)
6572 {
6573         mono_loader_lock ();
6574         g_hash_table_insert (jit_icall_hash_addr, (gpointer)info->wrapper, info);       
6575         mono_loader_unlock ();
6576 }
6577
6578 MonoJitICallInfo *
6579 mono_register_jit_icall (gconstpointer func, const char *name, MonoMethodSignature *sig, gboolean is_save)
6580 {
6581         MonoJitICallInfo *info;
6582         
6583         g_assert (func);
6584         g_assert (name);
6585
6586         mono_loader_lock ();
6587
6588         if (!jit_icall_hash_name) {
6589                 jit_icall_hash_name = g_hash_table_new (g_str_hash, g_str_equal);
6590                 jit_icall_hash_addr = g_hash_table_new (NULL, NULL);
6591         }
6592
6593         if (g_hash_table_lookup (jit_icall_hash_name, name)) {
6594                 g_warning ("jit icall already defined \"%s\"\n", name);
6595                 g_assert_not_reached ();
6596         }
6597
6598         info = g_new (MonoJitICallInfo, 1);
6599         
6600         info->name = name;
6601         info->func = func;
6602         info->sig = sig;
6603
6604         if (is_save) {
6605                 info->wrapper = func;
6606         } else {
6607                 info->wrapper = NULL;
6608         }
6609
6610         g_hash_table_insert (jit_icall_hash_name, (gpointer)info->name, info);
6611         g_hash_table_insert (jit_icall_hash_addr, (gpointer)func, info);
6612
6613         mono_loader_unlock ();
6614         return info;
6615 }