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