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