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