Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@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 <sys/time.h>
17 #include <unistd.h>
18 #if defined (PLATFORM_WIN32)
19 #include <stdlib.h>
20 #endif
21
22 #include <mono/metadata/object.h>
23 #include <mono/metadata/threads.h>
24 #include <mono/metadata/reflection.h>
25 #include <mono/metadata/assembly.h>
26 #include <mono/metadata/tabledefs.h>
27 #include <mono/metadata/exception.h>
28 #include <mono/metadata/file-io.h>
29 #include <mono/metadata/socket-io.h>
30 #include <mono/metadata/mono-endian.h>
31 #include <mono/metadata/tokentype.h>
32 #include <mono/metadata/unicode.h>
33 #include <mono/metadata/appdomain.h>
34 #include <mono/metadata/marshal.h>
35 #include <mono/metadata/gc.h>
36 #include <mono/metadata/rand.h>
37 #include <mono/metadata/sysmath.h>
38 #include <mono/metadata/string-icalls.h>
39 #include <mono/metadata/process.h>
40 #include <mono/io-layer/io-layer.h>
41 #include <mono/utils/strtod.h>
42
43 #if defined (PLATFORM_WIN32)
44 #include <windows.h>
45 #endif
46 #include "decimal.h"
47
48 static MonoString *
49 mono_double_ToStringImpl (double value)
50 {
51         /* FIXME: Handle formats, etc. */
52         MonoString *s;
53         gchar *retVal;
54         retVal = g_strdup_printf ("%.15g", value);
55         s = mono_string_new (mono_domain_get (), retVal);
56         g_free (retVal);
57         return s;
58 }
59
60 /*
61  * We expect a pointer to a char, not a string
62  */
63 static double
64 mono_double_ParseImpl (char *ptr)
65 {
66         return bsd_strtod (ptr, NULL);
67 }
68
69 static MonoString *
70 mono_float_ToStringImpl (float value)
71 {
72         return mono_double_ToStringImpl (value);
73 }
74
75 static MonoObject *
76 ves_icall_System_Array_GetValueImpl (MonoObject *this, guint32 pos)
77 {
78         MonoClass *ac;
79         MonoArray *ao;
80         gint32 esize;
81         gpointer *ea;
82
83         ao = (MonoArray *)this;
84         ac = (MonoClass *)ao->obj.vtable->klass;
85
86         esize = mono_array_element_size (ac);
87         ea = (gpointer*)((char*)ao->vector + (pos * esize));
88
89         if (ac->element_class->valuetype)
90                 return mono_value_box (this->vtable->domain, ac->element_class, ea);
91         else
92                 return *ea;
93 }
94
95 static MonoObject *
96 ves_icall_System_Array_GetValue (MonoObject *this, MonoObject *idxs)
97 {
98         MonoClass *ac, *ic;
99         MonoArray *ao, *io;
100         gint32 i, pos, *ind;
101
102         MONO_CHECK_ARG_NULL (idxs);
103
104         io = (MonoArray *)idxs;
105         ic = (MonoClass *)io->obj.vtable->klass;
106         
107         ao = (MonoArray *)this;
108         ac = (MonoClass *)ao->obj.vtable->klass;
109
110         g_assert (ic->rank == 1);
111         if (io->bounds != NULL || io->max_length !=  ac->rank)
112                 mono_raise_exception (mono_get_exception_argument (NULL, NULL));
113
114         ind = (guint32 *)io->vector;
115
116         if (ao->bounds == NULL) {
117                 if (*ind < 0 || *ind >= ao->max_length)
118                         mono_raise_exception (mono_get_exception_index_out_of_range ());
119
120                 return ves_icall_System_Array_GetValueImpl (this, *ind);
121         }
122         
123         for (i = 0; i < ac->rank; i++)
124                 if ((ind [i] < ao->bounds [i].lower_bound) ||
125                     (ind [i] >= ao->bounds [i].length + ao->bounds [i].lower_bound))
126                         mono_raise_exception (mono_get_exception_index_out_of_range ());
127
128         pos = ind [0] - ao->bounds [0].lower_bound;
129         for (i = 1; i < ac->rank; i++)
130                 pos = pos*ao->bounds [i].length + ind [i] - 
131                         ao->bounds [i].lower_bound;
132
133         return ves_icall_System_Array_GetValueImpl (this, pos);
134 }
135
136 static void
137 ves_icall_System_Array_SetValueImpl (MonoArray *this, MonoObject *value, guint32 pos)
138 {
139         MonoClass *ac, *vc, *ec;
140         gint32 esize, vsize;
141         gpointer *ea, *va;
142
143         guint64 u64;
144         gint64 i64;
145         gdouble r64;
146
147         if (value)
148                 vc = value->vtable->klass;
149         else
150                 vc = NULL;
151
152         ac = this->obj.vtable->klass;
153         ec = ac->element_class;
154
155         esize = mono_array_element_size (ac);
156         ea = (gpointer*)((char*)this->vector + (pos * esize));
157         va = (gpointer*)((char*)value + sizeof (MonoObject));
158
159         if (!value) {
160                 memset (ea, 0,  esize);
161                 return;
162         }
163
164 #define NO_WIDENING_CONVERSION G_STMT_START{\
165         mono_raise_exception (mono_get_exception_argument ( \
166                 "value", "not a widening conversion")); \
167 }G_STMT_END
168
169 #define CHECK_WIDENING_CONVERSION(extra) G_STMT_START{\
170         if (esize < vsize + (extra)) \
171                 mono_raise_exception (mono_get_exception_argument ( \
172                         "value", "not a widening conversion")); \
173 }G_STMT_END
174
175 #define INVALID_CAST G_STMT_START{\
176         mono_raise_exception (mono_get_exception_invalid_cast ()); \
177 }G_STMT_END
178
179         /* Check element (destination) type. */
180         switch (ec->byval_arg.type) {
181         case MONO_TYPE_STRING:
182                 switch (vc->byval_arg.type) {
183                 case MONO_TYPE_STRING:
184                         break;
185                 default:
186                         INVALID_CAST;
187                 }
188                 break;
189         case MONO_TYPE_BOOLEAN:
190                 switch (vc->byval_arg.type) {
191                 case MONO_TYPE_BOOLEAN:
192                         break;
193                 case MONO_TYPE_CHAR:
194                 case MONO_TYPE_U1:
195                 case MONO_TYPE_U2:
196                 case MONO_TYPE_U4:
197                 case MONO_TYPE_U8:
198                 case MONO_TYPE_I1:
199                 case MONO_TYPE_I2:
200                 case MONO_TYPE_I4:
201                 case MONO_TYPE_I8:
202                 case MONO_TYPE_R4:
203                 case MONO_TYPE_R8:
204                         NO_WIDENING_CONVERSION;
205                 default:
206                         INVALID_CAST;
207                 }
208                 break;
209         }
210
211         if (!ec->valuetype) {
212                 *ea = (gpointer)value;
213                 return;
214         }
215
216         if (mono_object_isinst (value, ec)) {
217                 memcpy (ea, (char *)value + sizeof (MonoObject), esize);
218                 return;
219         }
220
221         if (!vc->valuetype)
222                 INVALID_CAST;
223
224         vsize = mono_class_instance_size (vc) - sizeof (MonoObject);
225
226 #if 0
227         g_message (G_STRLOC ": %d (%d) <= %d (%d)",
228                    ec->byval_arg.type, esize,
229                    vc->byval_arg.type, vsize);
230 #endif
231
232 #define ASSIGN_UNSIGNED(etype) G_STMT_START{\
233         switch (vc->byval_arg.type) { \
234         case MONO_TYPE_U1: \
235         case MONO_TYPE_U2: \
236         case MONO_TYPE_U4: \
237         case MONO_TYPE_U8: \
238         case MONO_TYPE_CHAR: \
239                 CHECK_WIDENING_CONVERSION(0); \
240                 *(etype *) ea = (etype) u64; \
241                 return; \
242         /* You can't assign a signed value to an unsigned array. */ \
243         case MONO_TYPE_I1: \
244         case MONO_TYPE_I2: \
245         case MONO_TYPE_I4: \
246         case MONO_TYPE_I8: \
247         /* You can't assign a floating point number to an integer array. */ \
248         case MONO_TYPE_R4: \
249         case MONO_TYPE_R8: \
250                 NO_WIDENING_CONVERSION; \
251         } \
252 }G_STMT_END
253
254 #define ASSIGN_SIGNED(etype) G_STMT_START{\
255         switch (vc->byval_arg.type) { \
256         case MONO_TYPE_I1: \
257         case MONO_TYPE_I2: \
258         case MONO_TYPE_I4: \
259         case MONO_TYPE_I8: \
260                 CHECK_WIDENING_CONVERSION(0); \
261                 *(etype *) ea = (etype) i64; \
262                 return; \
263         /* You can assign an unsigned value to a signed array if the array's */ \
264         /* element size is larger than the value size. */ \
265         case MONO_TYPE_U1: \
266         case MONO_TYPE_U2: \
267         case MONO_TYPE_U4: \
268         case MONO_TYPE_U8: \
269         case MONO_TYPE_CHAR: \
270                 CHECK_WIDENING_CONVERSION(1); \
271                 *(etype *) ea = (etype) u64; \
272                 return; \
273         /* You can't assign a floating point number to an integer array. */ \
274         case MONO_TYPE_R4: \
275         case MONO_TYPE_R8: \
276                 NO_WIDENING_CONVERSION; \
277         } \
278 }G_STMT_END
279
280 #define ASSIGN_REAL(etype) G_STMT_START{\
281         switch (vc->byval_arg.type) { \
282         case MONO_TYPE_R4: \
283         case MONO_TYPE_R8: \
284                 CHECK_WIDENING_CONVERSION(0); \
285                 *(etype *) ea = (etype) r64; \
286                 return; \
287         /* All integer values fit into a floating point array, so we don't */ \
288         /* need to CHECK_WIDENING_CONVERSION here. */ \
289         case MONO_TYPE_I1: \
290         case MONO_TYPE_I2: \
291         case MONO_TYPE_I4: \
292         case MONO_TYPE_I8: \
293                 *(etype *) ea = (etype) i64; \
294                 return; \
295         case MONO_TYPE_U1: \
296         case MONO_TYPE_U2: \
297         case MONO_TYPE_U4: \
298         case MONO_TYPE_U8: \
299         case MONO_TYPE_CHAR: \
300                 *(etype *) ea = (etype) u64; \
301                 return; \
302         } \
303 }G_STMT_END
304
305         switch (vc->byval_arg.type) {
306         case MONO_TYPE_U1:
307                 u64 = *(guint8 *) va;
308                 break;
309         case MONO_TYPE_U2:
310                 u64 = *(guint16 *) va;
311                 break;
312         case MONO_TYPE_U4:
313                 u64 = *(guint32 *) va;
314                 break;
315         case MONO_TYPE_U8:
316                 u64 = *(guint64 *) va;
317                 break;
318         case MONO_TYPE_I1:
319                 i64 = *(gint8 *) va;
320                 break;
321         case MONO_TYPE_I2:
322                 i64 = *(gint16 *) va;
323                 break;
324         case MONO_TYPE_I4:
325                 i64 = *(gint32 *) va;
326                 break;
327         case MONO_TYPE_I8:
328                 i64 = *(gint64 *) va;
329                 break;
330         case MONO_TYPE_R4:
331                 r64 = *(gfloat *) va;
332                 break;
333         case MONO_TYPE_R8:
334                 r64 = *(gdouble *) va;
335                 break;
336         case MONO_TYPE_CHAR:
337                 u64 = *(guint16 *) va;
338                 break;
339         case MONO_TYPE_BOOLEAN:
340                 /* Boolean is only compatible with itself. */
341                 switch (ec->byval_arg.type) {
342                 case MONO_TYPE_CHAR:
343                 case MONO_TYPE_U1:
344                 case MONO_TYPE_U2:
345                 case MONO_TYPE_U4:
346                 case MONO_TYPE_U8:
347                 case MONO_TYPE_I1:
348                 case MONO_TYPE_I2:
349                 case MONO_TYPE_I4:
350                 case MONO_TYPE_I8:
351                 case MONO_TYPE_R4:
352                 case MONO_TYPE_R8:
353                         NO_WIDENING_CONVERSION;
354                 default:
355                         INVALID_CAST;
356                 }
357                 break;
358         }
359
360         /* If we can't do a direct copy, let's try a widening conversion. */
361         switch (ec->byval_arg.type) {
362         case MONO_TYPE_CHAR:
363                 ASSIGN_UNSIGNED (guint16);
364         case MONO_TYPE_U1:
365                 ASSIGN_UNSIGNED (guint8);
366         case MONO_TYPE_U2:
367                 ASSIGN_UNSIGNED (guint16);
368         case MONO_TYPE_U4:
369                 ASSIGN_UNSIGNED (guint32);
370         case MONO_TYPE_U8:
371                 ASSIGN_UNSIGNED (guint64);
372         case MONO_TYPE_I1:
373                 ASSIGN_SIGNED (gint8);
374         case MONO_TYPE_I2:
375                 ASSIGN_SIGNED (gint16);
376         case MONO_TYPE_I4:
377                 ASSIGN_SIGNED (gint32);
378         case MONO_TYPE_I8:
379                 ASSIGN_SIGNED (gint64);
380         case MONO_TYPE_R4:
381                 ASSIGN_REAL (gfloat);
382         case MONO_TYPE_R8:
383                 ASSIGN_REAL (gdouble);
384         }
385
386         INVALID_CAST;
387         /* Not reached, INVALID_CAST does not return. Just to avoid a compiler warning ... */
388         return;
389
390 #undef INVALID_CAST
391 #undef NO_WIDENING_CONVERSION
392 #undef CHECK_WIDENING_CONVERSION
393 #undef ASSIGN_UNSIGNED
394 #undef ASSIGN_SIGNED
395 #undef ASSIGN_REAL
396 }
397
398 static void 
399 ves_icall_System_Array_SetValue (MonoArray *this, MonoObject *value,
400                                  MonoArray *idxs)
401 {
402         MonoClass *ac, *ic;
403         gint32 i, pos, *ind;
404
405         MONO_CHECK_ARG_NULL (idxs);
406
407         ic = idxs->obj.vtable->klass;
408         ac = this->obj.vtable->klass;
409
410         g_assert (ic->rank == 1);
411         if (idxs->bounds != NULL || idxs->max_length != ac->rank)
412                 mono_raise_exception (mono_get_exception_argument (NULL, NULL));
413
414         ind = (guint32 *)idxs->vector;
415
416         if (this->bounds == NULL) {
417                 if (*ind < 0 || *ind >= this->max_length)
418                         mono_raise_exception (mono_get_exception_index_out_of_range ());
419
420                 ves_icall_System_Array_SetValueImpl (this, value, *ind);
421                 return;
422         }
423         
424         for (i = 0; i < ac->rank; i++)
425                 if ((ind [i] < this->bounds [i].lower_bound) ||
426                     (ind [i] >= this->bounds [i].length + this->bounds [i].lower_bound))
427                         mono_raise_exception (mono_get_exception_index_out_of_range ());
428
429         pos = ind [0] - this->bounds [0].lower_bound;
430         for (i = 1; i < ac->rank; i++)
431                 pos = pos * this->bounds [i].length + ind [i] - 
432                         this->bounds [i].lower_bound;
433
434         ves_icall_System_Array_SetValueImpl (this, value, pos);
435 }
436
437 static MonoArray *
438 ves_icall_System_Array_CreateInstanceImpl (MonoReflectionType *type, MonoArray *lengths, MonoArray *bounds)
439 {
440         MonoClass *aklass;
441         MonoArray *array;
442         gint32 *sizes, i;
443
444         MONO_CHECK_ARG_NULL (type);
445         MONO_CHECK_ARG_NULL (lengths);
446
447         MONO_CHECK_ARG (lengths, mono_array_length (lengths) > 0);
448         if (bounds)
449                 MONO_CHECK_ARG (bounds, mono_array_length (lengths) == mono_array_length (bounds));
450
451         for (i = 0; i < mono_array_length (lengths); i++)
452                 if (mono_array_get (lengths, gint32, i) < 0)
453                         mono_raise_exception (mono_get_exception_argument_out_of_range (NULL));
454
455         aklass = mono_array_class_get (type->type, mono_array_length (lengths));
456
457         sizes = alloca (aklass->rank * sizeof(guint32) * 2);
458         for (i = 0; i < aklass->rank; ++i) {
459                 sizes [i] = mono_array_get (lengths, gint32, i);
460                 if (bounds)
461                         sizes [i + aklass->rank] = mono_array_get (bounds, gint32, i);
462                 else
463                         sizes [i + aklass->rank] = 0;
464         }
465
466         array = mono_array_new_full (mono_domain_get (), aklass, sizes, sizes + aklass->rank);
467
468         return array;
469 }
470
471 static gint32 
472 ves_icall_System_Array_GetRank (MonoObject *this)
473 {
474         return this->vtable->klass->rank;
475 }
476
477 static gint32
478 ves_icall_System_Array_GetLength (MonoArray *this, gint32 dimension)
479 {
480         gint32 rank = ((MonoObject *)this)->vtable->klass->rank;
481         if ((dimension < 0) || (dimension >= rank))
482                 mono_raise_exception (mono_get_exception_index_out_of_range ());
483         
484         if (this->bounds == NULL)
485                 return this->max_length;
486         
487         return this->bounds [dimension].length;
488 }
489
490 static gint32
491 ves_icall_System_Array_GetLowerBound (MonoArray *this, gint32 dimension)
492 {
493         gint32 rank = ((MonoObject *)this)->vtable->klass->rank;
494         if ((dimension < 0) || (dimension >= rank))
495                 mono_raise_exception (mono_get_exception_index_out_of_range ());
496         
497         if (this->bounds == NULL)
498                 return 0;
499         
500         return this->bounds [dimension].lower_bound;
501 }
502
503 static void
504 ves_icall_System_Array_FastCopy (MonoArray *source, int source_idx, MonoArray* dest, int dest_idx, int length)
505 {
506         int element_size = mono_array_element_size (source->obj.vtable->klass);
507         void * dest_addr = mono_array_addr_with_size (dest, element_size, dest_idx);
508         void * source_addr = mono_array_addr_with_size (source, element_size, source_idx);
509
510         g_assert (dest_idx + length <= mono_array_length (dest));
511         g_assert (source_idx + length <= mono_array_length (source));
512         memmove (dest_addr, source_addr, element_size * length);
513 }
514
515 static void
516 ves_icall_InitializeArray (MonoArray *array, MonoClassField *field_handle)
517 {
518         MonoClass *klass = array->obj.vtable->klass;
519         guint32 size = mono_array_element_size (klass);
520         int i;
521
522         if (array->bounds == NULL)
523                 size *= array->max_length;
524         else
525                 for (i = 0; i < klass->rank; ++i) 
526                         size *= array->bounds [i].length;
527
528         memcpy (mono_array_addr (array, char, 0), field_handle->data, size);
529
530 #if G_BYTE_ORDER != G_LITTLE_ENDIAN
531 #define SWAP(n) {\
532         gint i; \
533         guint ## n tmp; \
534         guint ## n *data = (guint ## n *) mono_array_addr (array, char, 0); \
535 \
536         for (i = 0; i < size; i += n/8, data++) { \
537                 tmp = read ## n (data); \
538                 *data = tmp; \
539         } \
540 }
541
542         /* printf ("Initialize array with elements of %s type\n", klass->element_class->name); */
543
544         switch (klass->element_class->byval_arg.type) {
545         case MONO_TYPE_CHAR:
546         case MONO_TYPE_I2:
547         case MONO_TYPE_U2:
548                 SWAP (16);
549                 break;
550         case MONO_TYPE_I4:
551         case MONO_TYPE_U4:
552                 SWAP (32);
553                 break;
554         case MONO_TYPE_I8:
555         case MONO_TYPE_U8:
556                 SWAP (64);
557                 break;
558         }
559                  
560 #endif
561 }
562
563 static MonoObject *
564 ves_icall_System_Object_MemberwiseClone (MonoObject *this)
565 {
566         return mono_object_clone (this);
567 }
568
569 #if HAVE_BOEHM_GC
570 #define MONO_OBJECT_ALIGNMENT_SHIFT     3
571 #else
572 #define MONO_OBJECT_ALIGNMENT_SHIFT     2
573 #endif
574
575 /*
576  * Return hashcode based on object address. This function will need to be
577  * smarter in the presence of a moving garbage collector, which will cache
578  * the address hash before relocating the object.
579  *
580  * Wang's address-based hash function:
581  *   http://www.concentric.net/~Ttwang/tech/addrhash.htm
582  */
583 static gint32
584 ves_icall_System_Object_GetHashCode (MonoObject *this)
585 {
586         register guint32 key;
587         key = (GPOINTER_TO_UINT (this) >> MONO_OBJECT_ALIGNMENT_SHIFT) * 2654435761u;
588
589         return key & 0x7fffffff;
590 }
591
592 /*
593  * A hash function for value types. I have no idea if this is a good hash 
594  * function (its similar to g_str_hash).
595  */
596 static gint32
597 ves_icall_System_ValueType_GetHashCode (MonoObject *this)
598 {
599         gint32 i, size;
600         const char *p;
601         guint h = 0;
602
603         MONO_CHECK_ARG_NULL (this);
604
605         size = this->vtable->klass->instance_size - sizeof (MonoObject);
606
607         p = (const char *)this + sizeof (MonoObject);
608
609         for (i = 0; i < size; i++) {
610                 h = (h << 5) - h + *p;
611                 p++;
612         }
613
614         return h;
615 }
616
617 static MonoBoolean
618 ves_icall_System_ValueType_Equals (MonoObject *this, MonoObject *that)
619 {
620         gint32 size;
621         const char *p, *s;
622
623         MONO_CHECK_ARG_NULL (that);
624
625         if (this->vtable != that->vtable)
626                 return FALSE;
627
628         size = this->vtable->klass->instance_size - sizeof (MonoObject);
629
630         p = (const char *)this + sizeof (MonoObject);
631         s = (const char *)that + sizeof (MonoObject);
632
633         return memcmp (p, s, size)? FALSE: TRUE;
634 }
635
636 static MonoReflectionType *
637 ves_icall_System_Object_GetType (MonoObject *obj)
638 {
639         return mono_type_get_object (mono_domain_get (), &obj->vtable->klass->byval_arg);
640 }
641
642 static void
643 mono_type_type_from_obj (MonoReflectionType *mtype, MonoObject *obj)
644 {
645         mtype->type = &obj->vtable->klass->byval_arg;
646         g_assert (mtype->type->type);
647 }
648
649 static gint32
650 ves_icall_AssemblyBuilder_getToken (MonoReflectionAssemblyBuilder *assb, MonoObject *obj)
651 {
652         return mono_image_create_token (assb->dynamic_assembly, obj);
653 }
654
655 static gint32
656 ves_icall_AssemblyBuilder_getDataChunk (MonoReflectionAssemblyBuilder *assb, MonoArray *buf, gint32 offset)
657 {
658         int count;
659         MonoDynamicAssembly *ass = assb->dynamic_assembly;
660         char *p = mono_array_addr (buf, char, 0);
661
662         mono_image_create_pefile (assb);
663
664         if (offset >= ass->pefile.index)
665                 return 0;
666         count = mono_array_length (buf);
667         count = MIN (count, ass->pefile.index - offset);
668         
669         memcpy (p, ass->pefile.data + offset, count);
670
671         return count;
672 }
673
674 static gboolean
675 get_get_type_caller (MonoMethod *m, gint32 no, gint32 ilo, gpointer data) {
676         MonoImage **dest = data;
677
678         /* skip icalls and Type::GetType () */
679         if (!m || m->wrapper_type || (m->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
680                         (strcmp (m->name, "GetType") == 0 && m->klass == mono_defaults.monotype_class->parent))
681                 return FALSE;
682         *dest = m->klass->image;
683         return TRUE;
684 }
685
686 static MonoReflectionType*
687 ves_icall_type_from_name (MonoString *name)
688 {
689         MonoImage *image = NULL;
690         MonoType *type;
691         gchar *str;
692
693         mono_stack_walk (get_get_type_caller, &image);
694         str = mono_string_to_utf8 (name);
695         /*g_print ("requested type %s\n", str);*/
696         type = mono_reflection_type_from_name (str, image);
697         g_free (str);
698         if (!type)
699                 return NULL;
700         /*g_print ("got it\n");*/
701         return mono_type_get_object (mono_object_domain (name), type);
702 }
703
704 static MonoReflectionType*
705 ves_icall_type_from_handle (MonoType *handle)
706 {
707         MonoDomain *domain = mono_domain_get (); 
708         MonoClass *klass = mono_class_from_mono_type (handle);
709
710         mono_class_init (klass);
711         return mono_type_get_object (domain, handle);
712 }
713
714 static guint32
715 ves_icall_type_Equals (MonoReflectionType *type, MonoReflectionType *c)
716 {
717         if (type->type && c->type)
718                 return mono_metadata_type_equal (type->type, c->type);
719         g_print ("type equals\n");
720         return 0;
721 }
722
723 /* System.TypeCode */
724 typedef enum {
725         TYPECODE_EMPTY,
726         TYPECODE_OBJECT,
727         TYPECODE_DBNULL,
728         TYPECODE_BOOLEAN,
729         TYPECODE_CHAR,
730         TYPECODE_SBYTE,
731         TYPECODE_BYTE,
732         TYPECODE_INT16,
733         TYPECODE_UINT16,
734         TYPECODE_INT32,
735         TYPECODE_UINT32,
736         TYPECODE_INT64,
737         TYPECODE_UINT64,
738         TYPECODE_SINGLE,
739         TYPECODE_DOUBLE,
740         TYPECODE_DECIMAL,
741         TYPECODE_DATETIME,
742         TYPECODE_STRING = 18
743 } TypeCode;
744
745 static guint32
746 ves_icall_type_GetTypeCode (MonoReflectionType *type)
747 {
748         int t = type->type->type;
749 handle_enum:
750         switch (t) {
751         case MONO_TYPE_VOID:
752                 return TYPECODE_OBJECT;
753         case MONO_TYPE_BOOLEAN:
754                 return TYPECODE_BOOLEAN;
755         case MONO_TYPE_U1:
756                 return TYPECODE_BYTE;
757         case MONO_TYPE_I1:
758                 return TYPECODE_SBYTE;
759         case MONO_TYPE_U2:
760                 return TYPECODE_UINT16;
761         case MONO_TYPE_I2:
762                 return TYPECODE_INT16;
763         case MONO_TYPE_CHAR:
764                 return TYPECODE_CHAR;
765         case MONO_TYPE_PTR:
766         case MONO_TYPE_U:
767         case MONO_TYPE_I:
768                 return TYPECODE_OBJECT;
769         case MONO_TYPE_U4:
770                 return TYPECODE_UINT32;
771         case MONO_TYPE_I4:
772                 return TYPECODE_INT32;
773         case MONO_TYPE_U8:
774                 return TYPECODE_UINT64;
775         case MONO_TYPE_I8:
776                 return TYPECODE_INT64;
777         case MONO_TYPE_R4:
778                 return TYPECODE_SINGLE;
779         case MONO_TYPE_R8:
780                 return TYPECODE_DOUBLE;
781         case MONO_TYPE_VALUETYPE:
782                 if (type->type->data.klass->enumtype) {
783                         t = type->type->data.klass->enum_basetype->type;
784                         goto handle_enum;
785                 } else {
786                         MonoClass *k =  type->type->data.klass;
787                         if (strcmp (k->name_space, "System") == 0) {
788                                 if (strcmp (k->name, "Decimal") == 0)
789                                         return TYPECODE_DECIMAL;
790                                 else if (strcmp (k->name, "DateTime") == 0)
791                                         return TYPECODE_DATETIME;
792                                 else if (strcmp (k->name, "DBNull") == 0)
793                                         return TYPECODE_DBNULL;
794                         }
795                 }
796                 /* handle datetime, dbnull.. */
797                 return TYPECODE_OBJECT;
798         case MONO_TYPE_STRING:
799                 return TYPECODE_STRING;
800         case MONO_TYPE_SZARRAY:
801         case MONO_TYPE_ARRAY:
802         case MONO_TYPE_OBJECT:
803                 return TYPECODE_OBJECT;
804         case MONO_TYPE_CLASS:
805                 return TYPECODE_OBJECT;
806         default:
807                 g_error ("type 0x%02x not handled in GetTypeCode()", t);
808         }
809         return 0;
810 }
811
812 static guint32
813 ves_icall_type_is_subtype_of (MonoReflectionType *type, MonoReflectionType *c, MonoBoolean check_interfaces)
814 {
815         MonoDomain *domain; 
816         MonoClass *klass;
817         MonoClass *klassc;
818
819         g_assert (type != NULL);
820         
821         domain = ((MonoObject *)type)->vtable->domain;
822
823         if (!c) /* FIXME: dont know what do do here */
824                 return 0;
825
826         klass = mono_class_from_mono_type (type->type);
827         klassc = mono_class_from_mono_type (c->type);
828
829         /* cut&paste from mono_object_isinst (): keep in sync */
830         if (check_interfaces && (klassc->flags & TYPE_ATTRIBUTE_INTERFACE) && !(klass->flags & TYPE_ATTRIBUTE_INTERFACE)) {
831                 MonoVTable *klass_vt = mono_class_vtable (domain, klass);
832                 if ((klassc->interface_id <= klass->max_interface_id) &&
833                     klass_vt->interface_offsets [klassc->interface_id])
834                         return 1;
835         } else if (check_interfaces && (klassc->flags & TYPE_ATTRIBUTE_INTERFACE) && (klass->flags & TYPE_ATTRIBUTE_INTERFACE)) {
836                 int i;
837
838                 for (i = 0; i < klass->interface_count; i ++) {
839                         MonoClass *ic =  klass->interfaces [i];
840                         if (ic == klassc)
841                                 return 1;
842                 }
843         } else {
844                 /*
845                  * klass->baseval is 0 for interfaces 
846                  */
847                 if (klass->baseval && ((klass->baseval - klassc->baseval) <= klassc->diffval))
848                         return 1;
849         }
850         return 0;
851 }
852
853 static guint32
854 ves_icall_get_attributes (MonoReflectionType *type)
855 {
856         MonoClass *klass = mono_class_from_mono_type (type->type);
857
858         return klass->flags;
859 }
860
861 static void
862 ves_icall_get_method_info (MonoMethod *method, MonoMethodInfo *info)
863 {
864         MonoDomain *domain = mono_domain_get ();
865
866         info->parent = mono_type_get_object (domain, &method->klass->byval_arg);
867         info->ret = mono_type_get_object (domain, method->signature->ret);
868         info->attrs = method->flags;
869         info->implattrs = method->iflags;
870 }
871
872 static MonoArray*
873 ves_icall_get_parameter_info (MonoMethod *method)
874 {
875         MonoDomain *domain = mono_domain_get (); 
876         MonoArray *res;
877         static MonoClass *System_Reflection_ParameterInfo;
878         MonoReflectionParameter** args;
879         int i;
880
881         args = mono_param_get_objects (domain, method);
882         if (!System_Reflection_ParameterInfo)
883                 System_Reflection_ParameterInfo = mono_class_from_name (
884                         mono_defaults.corlib, "System.Reflection", "ParameterInfo");
885         res = mono_array_new (domain, System_Reflection_ParameterInfo, method->signature->param_count);
886         for (i = 0; i < method->signature->param_count; ++i) {
887                 mono_array_set (res, gpointer, i, args [i]);
888         }
889         return res;
890 }
891
892 static void
893 ves_icall_get_field_info (MonoReflectionField *field, MonoFieldInfo *info)
894 {
895         MonoDomain *domain = mono_domain_get (); 
896
897         info->parent = mono_type_get_object (domain, &field->klass->byval_arg);
898         info->type = mono_type_get_object (domain, field->field->type);
899         info->name = mono_string_new (domain, field->field->name);
900         info->attrs = field->field->type->attrs;
901 }
902
903 static MonoObject *
904 ves_icall_MonoField_GetValueInternal (MonoReflectionField *field, MonoObject *obj)
905 {       
906         MonoObject *o;
907         MonoClassField *cf = field->field;
908         MonoClass *klass;
909         MonoVTable *vtable;
910         MonoDomain *domain = mono_domain_get ();
911         gchar *v;
912         gboolean is_static = FALSE;
913         gboolean is_ref = FALSE;
914
915         mono_class_init (field->klass);
916
917         switch (cf->type->type) {
918         case MONO_TYPE_STRING:
919         case MONO_TYPE_OBJECT:
920         case MONO_TYPE_CLASS:
921         case MONO_TYPE_ARRAY:
922         case MONO_TYPE_SZARRAY:
923                 is_ref = TRUE;
924                 break;
925         case MONO_TYPE_U1:
926         case MONO_TYPE_I1:
927         case MONO_TYPE_BOOLEAN:
928         case MONO_TYPE_U2:
929         case MONO_TYPE_I2:
930         case MONO_TYPE_CHAR:
931         case MONO_TYPE_U:
932         case MONO_TYPE_I:
933         case MONO_TYPE_U4:
934         case MONO_TYPE_I4:
935         case MONO_TYPE_R4:
936         case MONO_TYPE_U8:
937         case MONO_TYPE_I8:
938         case MONO_TYPE_R8:
939         case MONO_TYPE_VALUETYPE:
940                 is_ref = cf->type->byref;
941                 break;
942         default:
943                 g_error ("type 0x%x not handled in "
944                          "ves_icall_Monofield_GetValue", cf->type->type);
945                 return NULL;
946         }
947
948         if (cf->type->attrs & FIELD_ATTRIBUTE_STATIC) {
949                 is_static = TRUE;
950                 vtable = mono_class_vtable (domain, field->klass);
951         }
952         
953         if (is_ref) {
954                 if (is_static) {
955                         mono_field_static_get_value (vtable, cf, &o);
956                 } else {
957                         mono_field_get_value (obj, cf, &o);
958                 }
959                 return o;
960         }
961
962         /* boxed value type */
963         klass = mono_class_from_mono_type (cf->type);
964         o = mono_object_new (domain, klass);
965         v = ((gchar *) o) + sizeof (MonoObject);
966         if (is_static) {
967                 mono_field_static_get_value (vtable, cf, v);
968         } else {
969                 mono_field_get_value (obj, cf, v);
970         }
971
972         return o;
973 }
974
975 static void
976 ves_icall_FieldInfo_SetValueInternal (MonoReflectionField *field, MonoObject *obj, MonoObject *value)
977 {
978         MonoClassField *cf = field->field;
979         gchar *v;
980
981         v = (gchar *) value;
982         if (!cf->type->byref) {
983                 switch (cf->type->type) {
984                 case MONO_TYPE_U1:
985                 case MONO_TYPE_I1:
986                 case MONO_TYPE_BOOLEAN:
987                 case MONO_TYPE_U2:
988                 case MONO_TYPE_I2:
989                 case MONO_TYPE_CHAR:
990                 case MONO_TYPE_U:
991                 case MONO_TYPE_I:
992                 case MONO_TYPE_U4:
993                 case MONO_TYPE_I4:
994                 case MONO_TYPE_R4:
995                 case MONO_TYPE_U8:
996                 case MONO_TYPE_I8:
997                 case MONO_TYPE_R8:
998                 case MONO_TYPE_VALUETYPE:
999                         v += sizeof (MonoObject);
1000                         break;
1001                 case MONO_TYPE_STRING:
1002                 case MONO_TYPE_OBJECT:
1003                 case MONO_TYPE_CLASS:
1004                 case MONO_TYPE_ARRAY:
1005                 case MONO_TYPE_SZARRAY:
1006                         /* Do nothing */
1007                         break;
1008                 default:
1009                         g_error ("type 0x%x not handled in "
1010                                  "ves_icall_FieldInfo_SetValueInternal", cf->type->type);
1011                         return;
1012                 }
1013         }
1014
1015         if (cf->type->attrs & FIELD_ATTRIBUTE_STATIC) {
1016                 MonoVTable *vtable = mono_class_vtable (mono_domain_get (), field->klass);
1017                 mono_field_static_set_value (vtable, cf, v);
1018         } else {
1019                 mono_field_set_value (obj, cf, v);
1020         }
1021 }
1022
1023 static void
1024 ves_icall_get_property_info (MonoReflectionProperty *property, MonoPropertyInfo *info)
1025 {
1026         MonoDomain *domain = mono_domain_get (); 
1027
1028         info->parent = mono_type_get_object (domain, &property->klass->byval_arg);
1029         info->name = mono_string_new (domain, property->property->name);
1030         info->attrs = property->property->attrs;
1031         info->get = property->property->get ? mono_method_get_object (domain, property->property->get, NULL): NULL;
1032         info->set = property->property->set ? mono_method_get_object (domain, property->property->set, NULL): NULL;
1033         /* 
1034          * There may be other methods defined for properties, though, it seems they are not exposed 
1035          * in the reflection API 
1036          */
1037 }
1038
1039 static void
1040 ves_icall_get_event_info (MonoReflectionEvent *event, MonoEventInfo *info)
1041 {
1042         MonoDomain *domain = mono_domain_get (); 
1043
1044         info->parent = mono_type_get_object (domain, &event->klass->byval_arg);
1045         info->name = mono_string_new (domain, event->event->name);
1046         info->attrs = event->event->attrs;
1047         info->add_method = event->event->add ? mono_method_get_object (domain, event->event->add, NULL): NULL;
1048         info->remove_method = event->event->remove ? mono_method_get_object (domain, event->event->remove, NULL): NULL;
1049         info->raise_method = event->event->raise ? mono_method_get_object (domain, event->event->raise, NULL): NULL;
1050 }
1051
1052 static MonoArray*
1053 ves_icall_Type_GetInterfaces (MonoReflectionType* type)
1054 {
1055         MonoDomain *domain = mono_domain_get (); 
1056         MonoArray *intf;
1057         int ninterf, i;
1058         MonoClass *class = mono_class_from_mono_type (type->type);
1059         MonoClass *parent;
1060
1061         ninterf = 0;
1062         for (parent = class; parent; parent = parent->parent) {
1063                 ninterf += parent->interface_count;
1064         }
1065         intf = mono_array_new (domain, mono_defaults.monotype_class, ninterf);
1066         ninterf = 0;
1067         for (parent = class; parent; parent = parent->parent) {
1068                 for (i = 0; i < parent->interface_count; ++i) {
1069                         mono_array_set (intf, gpointer, ninterf, mono_type_get_object (domain, &parent->interfaces [i]->byval_arg));
1070                         ++ninterf;
1071                 }
1072         }
1073         return intf;
1074 }
1075
1076 static MonoReflectionType*
1077 ves_icall_MonoType_GetElementType (MonoReflectionType *type)
1078 {
1079         MonoClass *class = mono_class_from_mono_type (type->type);
1080         if (class->enumtype && class->enum_basetype) /* types that are modifierd typebuilkders may not have enum_basetype set */
1081                 return mono_type_get_object (mono_object_domain (type), class->enum_basetype);
1082         else if (class->element_class)
1083                 return mono_type_get_object (mono_object_domain (type), &class->element_class->byval_arg);
1084         else
1085                 return NULL;
1086 }
1087
1088 static MonoReflectionType*
1089 ves_icall_get_type_parent (MonoReflectionType *type)
1090 {
1091         MonoClass *class = mono_class_from_mono_type (type->type);
1092         return class->parent ? mono_type_get_object (mono_object_domain (type), &class->parent->byval_arg): NULL;
1093 }
1094
1095 static MonoBoolean
1096 ves_icall_type_ispointer (MonoReflectionType *type)
1097 {
1098         return type->type->type == MONO_TYPE_PTR;
1099 }
1100
1101 static MonoBoolean
1102 ves_icall_type_isbyref (MonoReflectionType *type)
1103 {
1104         return type->type->byref;
1105 }
1106
1107 static void
1108 ves_icall_get_type_info (MonoType *type, MonoTypeInfo *info)
1109 {
1110         MonoDomain *domain = mono_domain_get (); 
1111         MonoClass *class = mono_class_from_mono_type (type);
1112
1113         info->nested_in = class->nested_in ? mono_type_get_object (domain, &class->nested_in->byval_arg): NULL;
1114         info->name = mono_string_new (domain, class->name);
1115         info->name_space = mono_string_new (domain, class->name_space);
1116         info->rank = class->rank;
1117         info->assembly = mono_assembly_get_object (domain, class->image->assembly);
1118         if (class->enumtype && class->enum_basetype) /* types that are modifierd typebuilkders may not have enum_basetype set */
1119                 info->etype = mono_type_get_object (domain, class->enum_basetype);
1120         else if (class->element_class)
1121                 info->etype = mono_type_get_object (domain, &class->element_class->byval_arg);
1122         else
1123                 info->etype = NULL;
1124
1125         info->isprimitive = (type->type >= MONO_TYPE_BOOLEAN) && (type->type <= MONO_TYPE_R8);
1126 }
1127
1128 static MonoObject *
1129 ves_icall_InternalInvoke (MonoReflectionMethod *method, MonoObject *this, MonoArray *params) 
1130 {
1131         return mono_runtime_invoke_array (method->method, this, params, NULL);
1132 }
1133
1134 static MonoObject *
1135 ves_icall_InternalExecute (MonoReflectionMethod *method, MonoObject *this, MonoArray *params, MonoArray **outArgs) 
1136 {
1137         MonoDomain *domain = mono_domain_get (); 
1138         MonoMethod *m = method->method;
1139         MonoMethodSignature *sig = m->signature;
1140         MonoArray *out_args;
1141         MonoObject *result;
1142         int i, j, outarg_count = 0;
1143
1144         if (m->klass == mono_defaults.object_class) {
1145
1146                 if (!strcmp (m->name, "FieldGetter")) {
1147                         MonoClass *k = this->vtable->klass;
1148                         MonoString *name = mono_array_get (params, MonoString *, 1);
1149                         char *str;
1150
1151                         str = mono_string_to_utf8 (name);
1152                 
1153                         for (i = 0; i < k->field.count; i++) {
1154                                 if (!strcmp (k->fields [i].name, str)) {
1155                                         MonoClass *field_klass =  mono_class_from_mono_type (k->fields [i].type);
1156                                         if (field_klass->valuetype)
1157                                                 result = mono_value_box (domain, field_klass,
1158                                                                          (char *)this + k->fields [i].offset);
1159                                         else 
1160                                                 result = *((gpointer *)((char *)this + k->fields [i].offset));
1161                                 
1162                                         g_assert (result);
1163                                         out_args = mono_array_new (domain, mono_defaults.object_class, 1);
1164                                         *outArgs = out_args;
1165                                         mono_array_set (out_args, gpointer, 0, result);
1166                                         g_free (str);
1167                                         return NULL;
1168                                 }
1169                         }
1170
1171                         g_free (str);
1172                         g_assert_not_reached ();
1173
1174                 } else if (!strcmp (m->name, "FieldSetter")) {
1175                         MonoClass *k = this->vtable->klass;
1176                         MonoString *name = mono_array_get (params, MonoString *, 1);
1177                         int size, align;
1178                         char *str;
1179
1180                         str = mono_string_to_utf8 (name);
1181                 
1182                         for (i = 0; i < k->field.count; i++) {
1183                                 if (!strcmp (k->fields [i].name, str)) {
1184                                         MonoClass *field_klass =  mono_class_from_mono_type (k->fields [i].type);
1185                                         MonoObject *val = mono_array_get (params, gpointer, 2);
1186
1187                                         if (field_klass->valuetype) {
1188                                                 size = mono_type_size (k->fields [i].type, &align);
1189                                                 memcpy ((char *)this + k->fields [i].offset, 
1190                                                         ((char *)val) + sizeof (MonoObject), size);
1191                                         } else 
1192                                                 *((gpointer *)this + k->fields [i].offset) = val;
1193                                 
1194                                         g_assert (result);
1195                                         g_free (str);
1196                                         return NULL;
1197                                 }
1198                         }
1199
1200                         g_free (str);
1201                         g_assert_not_reached ();
1202
1203                 }
1204         }
1205
1206         for (i = 0; i < mono_array_length (params); i++) {
1207                 if (sig->params [i]->byref) 
1208                         outarg_count++;
1209         }
1210
1211         out_args = mono_array_new (domain, mono_defaults.object_class, outarg_count);
1212         
1213         for (i = 0, j = 0; i < mono_array_length (params); i++) {
1214                 if (sig->params [i]->byref) {
1215                         gpointer arg;
1216                         arg = mono_array_get (params, gpointer, i);
1217                         mono_array_set (out_args, gpointer, j, arg);
1218                         j++;
1219                 }
1220         }
1221
1222         /* fixme: handle constructors? */
1223         if (!strcmp (method->method->name, ".ctor"))
1224                 g_assert_not_reached ();
1225
1226         result = mono_runtime_invoke_array (method->method, this, params, NULL);
1227
1228         *outArgs = out_args;
1229
1230         return result;
1231 }
1232
1233 static MonoObject *
1234 ves_icall_System_Enum_ToObject (MonoReflectionType *type, MonoObject *obj)
1235 {
1236         MonoDomain *domain = mono_domain_get (); 
1237         MonoClass *enumc, *objc;
1238         gint32 s1, s2;
1239         MonoObject *res;
1240         
1241         MONO_CHECK_ARG_NULL (type);
1242         MONO_CHECK_ARG_NULL (obj);
1243
1244         enumc = mono_class_from_mono_type (type->type);
1245         objc = obj->vtable->klass;
1246
1247         MONO_CHECK_ARG (obj, enumc->enumtype == TRUE);
1248         MONO_CHECK_ARG (obj, (objc->enumtype) || (objc->byval_arg.type >= MONO_TYPE_I1 &&
1249                                                   objc->byval_arg.type <= MONO_TYPE_U8));
1250         
1251         s1 = mono_class_value_size (enumc, NULL);
1252         s2 = mono_class_value_size (objc, NULL);
1253
1254         res = mono_object_new (domain, enumc);
1255
1256 #if G_BYTE_ORDER == G_LITTLE_ENDIAN
1257         memcpy ((char *)res + sizeof (MonoObject), (char *)obj + sizeof (MonoObject), MIN (s1, s2));
1258 #else
1259         memcpy ((char *)res + sizeof (MonoObject) + (s1 > s2 ? s1 - s2 : 0),
1260                 (char *)obj + sizeof (MonoObject) + (s2 > s1 ? s2 - s1 : 0),
1261                 MIN (s1, s2));
1262 #endif
1263         return res;
1264 }
1265
1266 static MonoObject *
1267 ves_icall_System_Enum_get_value (MonoObject *this)
1268 {
1269         MonoDomain *domain = mono_domain_get (); 
1270         MonoObject *res;
1271         MonoClass *enumc;
1272         gpointer dst;
1273         gpointer src;
1274         int size;
1275
1276         if (!this)
1277                 return NULL;
1278
1279         g_assert (this->vtable->klass->enumtype);
1280         
1281         enumc = mono_class_from_mono_type (this->vtable->klass->enum_basetype);
1282         res = mono_object_new (domain, enumc);
1283         dst = (char *)res + sizeof (MonoObject);
1284         src = (char *)this + sizeof (MonoObject);
1285         size = mono_class_value_size (enumc, NULL);
1286
1287         memcpy (dst, src, size);
1288
1289         return res;
1290 }
1291
1292 static void
1293 ves_icall_get_enum_info (MonoReflectionType *type, MonoEnumInfo *info)
1294 {
1295         MonoDomain *domain = mono_domain_get (); 
1296         MonoClass *enumc = mono_class_from_mono_type (type->type);
1297         guint i, j, nvalues, crow;
1298         MonoClassField *field;
1299         
1300         info->utype = mono_type_get_object (domain, enumc->enum_basetype);
1301         nvalues = enumc->field.count - 1;
1302         info->names = mono_array_new (domain, mono_defaults.string_class, nvalues);
1303         info->values = mono_array_new (domain, enumc, nvalues);
1304         
1305         for (i = 0, j = 0; i < enumc->field.count; ++i) {
1306                 field = &enumc->fields [i];
1307                 if (strcmp ("value__", field->name) == 0)
1308                         continue;
1309                 mono_array_set (info->names, gpointer, j, mono_string_new (domain, field->name));
1310                 if (!field->data) {
1311                         crow = mono_metadata_get_constant_index (enumc->image, MONO_TOKEN_FIELD_DEF | (i+enumc->field.first+1));
1312                         crow = mono_metadata_decode_row_col (&enumc->image->tables [MONO_TABLE_CONSTANT], crow-1, MONO_CONSTANT_VALUE);
1313                         /* 1 is the length of the blob */
1314                         field->data = 1 + mono_metadata_blob_heap (enumc->image, crow);
1315                 }
1316                 switch (enumc->enum_basetype->type) {
1317                 case MONO_TYPE_U1:
1318                 case MONO_TYPE_I1:
1319                         mono_array_set (info->values, gchar, j, *field->data);
1320                         break;
1321                 case MONO_TYPE_CHAR:
1322                 case MONO_TYPE_U2:
1323                 case MONO_TYPE_I2:
1324                         mono_array_set (info->values, gint16, j, read16 (field->data));
1325                         break;
1326                 case MONO_TYPE_U4:
1327                 case MONO_TYPE_I4:
1328                         mono_array_set (info->values, gint32, j, read32 (field->data));
1329                         break;
1330                 case MONO_TYPE_U8:
1331                 case MONO_TYPE_I8:
1332                         mono_array_set (info->values, gint64, j, read64 (field->data));
1333                         break;
1334                 default:
1335                         g_error ("Implement type 0x%02x in get_enum_info", enumc->enum_basetype->type);
1336                 }
1337                 ++j;
1338         }
1339 }
1340
1341 static MonoMethod*
1342 search_method (MonoReflectionType *type, const char *name, guint32 flags, MonoArray *args)
1343 {
1344         MonoClass *klass, *start_class;
1345         MonoMethod *m;
1346         MonoReflectionType *paramt;
1347         int i, j;
1348
1349         start_class = klass = mono_class_from_mono_type (type->type);
1350         while (klass) {
1351                 for (i = 0; i < klass->method.count; ++i) {
1352                         m = klass->methods [i];
1353                         if (!((m->flags & flags) == flags))
1354                                 continue;
1355                         if (strcmp(m->name, name))
1356                                 continue;
1357                         if (!args)
1358                                 return m;
1359                         if (m->signature->param_count != mono_array_length (args))
1360                                 continue;
1361                         for (j = 0; j < m->signature->param_count; ++j) {
1362                                 paramt = mono_array_get (args, MonoReflectionType*, j);
1363                                 if (!mono_metadata_type_equal (paramt->type, m->signature->params [j]))
1364                                         break;
1365                         }
1366                         if (j == m->signature->param_count)
1367                                 return m;
1368                 }
1369                 klass = klass->parent;
1370         }
1371         //g_print ("Method %s.%s::%s (%d) not found\n", start_class->name_space, start_class->name, name, mono_array_length (args));
1372         return NULL;
1373 }
1374
1375 static MonoReflectionMethod*
1376 ves_icall_get_constructor (MonoReflectionType *type, MonoArray *args)
1377 {
1378         MonoDomain *domain = mono_domain_get (); 
1379         MonoMethod *m;
1380         MonoClass *refc = mono_class_from_mono_type (type->type);
1381
1382         m = search_method (type, ".ctor", METHOD_ATTRIBUTE_RT_SPECIAL_NAME, args);
1383         if (m)
1384                 return mono_method_get_object (domain, m, refc);
1385         return NULL;
1386 }
1387
1388 static MonoReflectionMethod*
1389 ves_icall_get_method (MonoReflectionType *type, MonoString *name, MonoArray *args)
1390 {
1391         MonoDomain *domain = mono_domain_get (); 
1392         MonoMethod *m;
1393         MonoClass *refc = mono_class_from_mono_type (type->type);
1394         char *n = mono_string_to_utf8 (name);
1395
1396         m = search_method (type, n, 0, args);
1397         g_free (n);
1398         if (m)
1399                 return mono_method_get_object (domain, m, refc);
1400         return NULL;
1401 }
1402
1403 static MonoProperty*
1404 search_property (MonoClass *klass, char* name, MonoArray *args) {
1405         int i;
1406         MonoProperty *p;
1407
1408         /* FIXME: handle args */
1409         for (i = 0; i < klass->property.count; ++i) {
1410                 p = &klass->properties [i];
1411                 if (strcmp (p->name, name) == 0)
1412                         return p;
1413         }
1414         return NULL;
1415 }
1416
1417 static MonoReflectionProperty*
1418 ves_icall_get_property (MonoReflectionType *type, MonoString *name, MonoArray *args)
1419 {
1420         MonoDomain *domain = mono_domain_get (); 
1421         MonoProperty *p;
1422         MonoClass *class = mono_class_from_mono_type (type->type);
1423         char *n = mono_string_to_utf8 (name);
1424
1425         p = search_property (class, n, args);
1426         g_free (n);
1427         if (p)
1428                 return mono_property_get_object (domain, class, p);
1429         return NULL;
1430 }
1431
1432 enum {
1433         BFLAGS_IgnoreCase = 1,
1434         BFLAGS_DeclaredOnly = 2,
1435         BFLAGS_Instance = 4,
1436         BFLAGS_Static = 8,
1437         BFLAGS_Public = 0x10,
1438         BFLAGS_NonPublic = 0x20,
1439         BFLAGS_InvokeMethod = 0x100,
1440         BFLAGS_CreateInstance = 0x200,
1441         BFLAGS_GetField = 0x400,
1442         BFLAGS_SetField = 0x800,
1443         BFLAGS_GetProperty = 0x1000,
1444         BFLAGS_SetProperty = 0x2000,
1445         BFLAGS_ExactBinding = 0x10000,
1446         BFLAGS_SuppressChangeType = 0x20000,
1447         BFLAGS_OptionalParamBinding = 0x40000
1448 };
1449
1450 static MonoFieldInfo *
1451 ves_icall_Type_GetField (MonoReflectionType *type, MonoString *name, guint32 bflags)
1452 {
1453         MonoDomain *domain; 
1454         MonoClass *startklass, *klass;
1455         int i, match;
1456         MonoClassField *field;
1457         char *utf8_name;
1458         domain = ((MonoObject *)type)->vtable->domain;
1459         klass = startklass = mono_class_from_mono_type (type->type);
1460
1461         if (!name)
1462                 return NULL;
1463
1464 handle_parent:  
1465         for (i = 0; i < klass->field.count; ++i) {
1466                 match = 0;
1467                 field = &klass->fields [i];
1468                 if ((field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK) == FIELD_ATTRIBUTE_PUBLIC) {
1469                         if (bflags & BFLAGS_Public)
1470                                 match++;
1471                 } else {
1472                         if (bflags & BFLAGS_NonPublic)
1473                                 match++;
1474                 }
1475                 if (!match)
1476                         continue;
1477                 match = 0;
1478                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC) {
1479                         if (bflags & BFLAGS_Static)
1480                                 match++;
1481                 } else {
1482                         if (bflags & BFLAGS_Instance)
1483                                 match++;
1484                 }
1485
1486                 if (!match)
1487                         continue;
1488                 
1489                 utf8_name = mono_string_to_utf8 (name);
1490
1491                 if (strcmp (field->name, utf8_name)) {
1492                         g_free (utf8_name);
1493                         continue;
1494                 }
1495                 g_free (utf8_name);
1496                 
1497                 return (MonoFieldInfo *)mono_field_get_object (domain, klass, field);
1498         }
1499         if (!(bflags & BFLAGS_DeclaredOnly) && (klass = klass->parent))
1500                 goto handle_parent;
1501
1502         return NULL;
1503 }
1504
1505 static MonoArray*
1506 ves_icall_Type_GetFields (MonoReflectionType *type, guint32 bflags)
1507 {
1508         MonoDomain *domain; 
1509         GSList *l = NULL, *tmp;
1510         MonoClass *startklass, *klass;
1511         MonoArray *res;
1512         MonoObject *member;
1513         int i, len, match;
1514         MonoClassField *field;
1515
1516         domain = ((MonoObject *)type)->vtable->domain;
1517         klass = startklass = mono_class_from_mono_type (type->type);
1518
1519 handle_parent:  
1520         for (i = 0; i < klass->field.count; ++i) {
1521                 match = 0;
1522                 field = &klass->fields [i];
1523                 if ((field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK) == FIELD_ATTRIBUTE_PUBLIC) {
1524                         if (bflags & BFLAGS_Public)
1525                                 match++;
1526                 } else {
1527                         if (bflags & BFLAGS_NonPublic)
1528                                 match++;
1529                 }
1530                 if (!match)
1531                         continue;
1532                 match = 0;
1533                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC) {
1534                         if (bflags & BFLAGS_Static)
1535                                 match++;
1536                 } else {
1537                         if (bflags & BFLAGS_Instance)
1538                                 match++;
1539                 }
1540
1541                 if (!match)
1542                         continue;
1543                 member = (MonoObject*)mono_field_get_object (domain, klass, field);
1544                 l = g_slist_prepend (l, member);
1545         }
1546         if (!(bflags & BFLAGS_DeclaredOnly) && (klass = klass->parent))
1547                 goto handle_parent;
1548         len = g_slist_length (l);
1549         res = mono_array_new (domain, mono_defaults.field_info_class, len);
1550         i = 0;
1551         tmp = g_slist_reverse (l);
1552         for (; tmp; tmp = tmp->next, ++i)
1553                 mono_array_set (res, gpointer, i, tmp->data);
1554         g_slist_free (l);
1555         return res;
1556 }
1557
1558 static MonoArray*
1559 ves_icall_Type_GetMethods (MonoReflectionType *type, guint32 bflags)
1560 {
1561         MonoDomain *domain; 
1562         GSList *l = NULL, *tmp;
1563         static MonoClass *System_Reflection_MethodInfo;
1564         MonoClass *startklass, *klass;
1565         MonoArray *res;
1566         MonoMethod *method;
1567         MonoObject *member;
1568         int i, len, match;
1569                 
1570         domain = ((MonoObject *)type)->vtable->domain;
1571         klass = startklass = mono_class_from_mono_type (type->type);
1572
1573 handle_parent:
1574         for (i = 0; i < klass->method.count; ++i) {
1575                 match = 0;
1576                 method = klass->methods [i];
1577                 if (strcmp (method->name, ".ctor") == 0 || strcmp (method->name, ".cctor") == 0)
1578                         continue;
1579                 if ((method->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK) == METHOD_ATTRIBUTE_PUBLIC) {
1580                         if (bflags & BFLAGS_Public)
1581                                 match++;
1582                 } else {
1583                         if (bflags & BFLAGS_NonPublic)
1584                                 match++;
1585                 }
1586                 if (!match)
1587                         continue;
1588                 match = 0;
1589                 if (method->flags & METHOD_ATTRIBUTE_STATIC) {
1590                         if (bflags & BFLAGS_Static)
1591                                 match++;
1592                 } else {
1593                         if (bflags & BFLAGS_Instance)
1594                                 match++;
1595                 }
1596
1597                 if (!match)
1598                         continue;
1599                 match = 0;
1600                 member = (MonoObject*)mono_method_get_object (domain, method, startklass);
1601                         
1602                 l = g_slist_prepend (l, member);
1603         }
1604         if (!(bflags & BFLAGS_DeclaredOnly) && (klass = klass->parent))
1605                 goto handle_parent;
1606         len = g_slist_length (l);
1607         if (!System_Reflection_MethodInfo)
1608                 System_Reflection_MethodInfo = mono_class_from_name (
1609                         mono_defaults.corlib, "System.Reflection", "MethodInfo");
1610         res = mono_array_new (domain, System_Reflection_MethodInfo, len);
1611         i = 0;
1612         tmp = l;
1613         for (; tmp; tmp = tmp->next, ++i)
1614                 mono_array_set (res, gpointer, i, tmp->data);
1615         g_slist_free (l);
1616
1617         return res;
1618 }
1619
1620 static MonoArray*
1621 ves_icall_Type_GetConstructors (MonoReflectionType *type, guint32 bflags)
1622 {
1623         MonoDomain *domain; 
1624         GSList *l = NULL, *tmp;
1625         static MonoClass *System_Reflection_ConstructorInfo;
1626         MonoClass *startklass, *klass;
1627         MonoArray *res;
1628         MonoMethod *method;
1629         MonoObject *member;
1630         int i, len, match;
1631
1632         domain = ((MonoObject *)type)->vtable->domain;
1633         klass = startklass = mono_class_from_mono_type (type->type);
1634
1635 handle_parent:  
1636         for (i = 0; i < klass->method.count; ++i) {
1637                 match = 0;
1638                 method = klass->methods [i];
1639                 if (strcmp (method->name, ".ctor") && strcmp (method->name, ".cctor"))
1640                         continue;
1641                 if ((method->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK) == METHOD_ATTRIBUTE_PUBLIC) {
1642                         if (bflags & BFLAGS_Public)
1643                                 match++;
1644                 } else {
1645                         if (bflags & BFLAGS_NonPublic)
1646                                 match++;
1647                 }
1648                 if (!match)
1649                         continue;
1650                 match = 0;
1651                 if (method->flags & METHOD_ATTRIBUTE_STATIC) {
1652                         if (bflags & BFLAGS_Static)
1653                                 match++;
1654                 } else {
1655                         if (bflags & BFLAGS_Instance)
1656                                 match++;
1657                 }
1658
1659                 if (!match)
1660                         continue;
1661                 member = (MonoObject*)mono_method_get_object (domain, method, startklass);
1662                         
1663                 l = g_slist_prepend (l, member);
1664         }
1665         if (!(bflags & BFLAGS_DeclaredOnly) && (klass = klass->parent))
1666                 goto handle_parent;
1667         len = g_slist_length (l);
1668         if (!System_Reflection_ConstructorInfo)
1669                 System_Reflection_ConstructorInfo = mono_class_from_name (
1670                         mono_defaults.corlib, "System.Reflection", "ConstructorInfo");
1671         res = mono_array_new (domain, System_Reflection_ConstructorInfo, len);
1672         i = 0;
1673         tmp = g_slist_reverse (l);
1674         for (; tmp; tmp = tmp->next, ++i)
1675                 mono_array_set (res, gpointer, i, tmp->data);
1676         g_slist_free (l);
1677         return res;
1678 }
1679
1680 static MonoArray*
1681 ves_icall_Type_GetProperties (MonoReflectionType *type, guint32 bflags)
1682 {
1683         MonoDomain *domain; 
1684         GSList *l = NULL, *tmp;
1685         static MonoClass *System_Reflection_PropertyInfo;
1686         MonoClass *startklass, *klass;
1687         MonoArray *res;
1688         MonoMethod *method;
1689         MonoProperty *prop;
1690         int i, len, match;
1691
1692         domain = ((MonoObject *)type)->vtable->domain;
1693         klass = startklass = mono_class_from_mono_type (type->type);
1694
1695 handle_parent:
1696         for (i = 0; i < klass->property.count; ++i) {
1697                 prop = &klass->properties [i];
1698                 match = 0;
1699                 method = prop->get;
1700                 if (!method)
1701                         method = prop->set;
1702                 if ((method->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK) == METHOD_ATTRIBUTE_PUBLIC) {
1703                         if (bflags & BFLAGS_Public)
1704                                 match++;
1705                 } else {
1706                         if (bflags & BFLAGS_NonPublic)
1707                                 match++;
1708                 }
1709                 if (!match)
1710                         continue;
1711                 match = 0;
1712                 if (method->flags & METHOD_ATTRIBUTE_STATIC) {
1713                         if (bflags & BFLAGS_Static)
1714                                 match++;
1715                 } else {
1716                         if (bflags & BFLAGS_Instance)
1717                                 match++;
1718                 }
1719
1720                 if (!match)
1721                         continue;
1722                 match = 0;
1723                 l = g_slist_prepend (l, mono_property_get_object (domain, klass, prop));
1724         }
1725         if ((!(bflags & BFLAGS_DeclaredOnly) && (klass = klass->parent)))
1726                 goto handle_parent;
1727         len = g_slist_length (l);
1728         if (!System_Reflection_PropertyInfo)
1729                 System_Reflection_PropertyInfo = mono_class_from_name (
1730                         mono_defaults.corlib, "System.Reflection", "PropertyInfo");
1731         res = mono_array_new (domain, System_Reflection_PropertyInfo, len);
1732         i = 0;
1733         tmp = l;
1734         for (; tmp; tmp = tmp->next, ++i)
1735                 mono_array_set (res, gpointer, i, tmp->data);
1736         g_slist_free (l);
1737         return res;
1738 }
1739
1740 static MonoArray*
1741 ves_icall_Type_GetEvents (MonoReflectionType *type, guint32 bflags)
1742 {
1743         MonoDomain *domain; 
1744         GSList *l = NULL, *tmp;
1745         static MonoClass *System_Reflection_EventInfo;
1746         MonoClass *startklass, *klass;
1747         MonoArray *res;
1748         MonoMethod *method;
1749         MonoEvent *event;
1750         int i, len, match;
1751
1752         domain = ((MonoObject *)type)->vtable->domain;
1753         klass = startklass = mono_class_from_mono_type (type->type);
1754
1755 handle_parent:  
1756         for (i = 0; i < klass->event.count; ++i) {
1757                 event = &klass->events [i];
1758                 match = 0;
1759                 method = event->add;
1760                 if (!method)
1761                         method = event->remove;
1762                 if ((method->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK) == METHOD_ATTRIBUTE_PUBLIC) {
1763                         if (bflags & BFLAGS_Public)
1764                                 match++;
1765                 } else {
1766                         if (bflags & BFLAGS_NonPublic)
1767                                 match++;
1768                 }
1769                 if (!match)
1770                         continue;
1771                 match = 0;
1772                 if (method->flags & METHOD_ATTRIBUTE_STATIC) {
1773                         if (bflags & BFLAGS_Static)
1774                                 match++;
1775                 } else {
1776                         if (bflags & BFLAGS_Instance)
1777                                 match++;
1778                 }
1779
1780                 if (!match)
1781                         continue;
1782                 match = 0;
1783                 l = g_slist_prepend (l, mono_event_get_object (domain, klass, event));
1784         }
1785         if (!(bflags & BFLAGS_DeclaredOnly) && (klass = klass->parent))
1786                 goto handle_parent;
1787         len = g_slist_length (l);
1788         if (!System_Reflection_EventInfo)
1789                 System_Reflection_EventInfo = mono_class_from_name (
1790                         mono_defaults.corlib, "System.Reflection", "EventInfo");
1791         res = mono_array_new (domain, System_Reflection_EventInfo, len);
1792         i = 0;
1793         tmp = l;
1794         for (; tmp; tmp = tmp->next, ++i)
1795                 mono_array_set (res, gpointer, i, tmp->data);
1796         g_slist_free (l);
1797         return res;
1798 }
1799
1800 static MonoArray*
1801 ves_icall_Type_GetNestedTypes (MonoReflectionType *type, guint32 bflags)
1802 {
1803         MonoDomain *domain; 
1804         GSList *l = NULL, *tmp;
1805         GList *tmpn;
1806         MonoClass *startklass, *klass;
1807         MonoArray *res;
1808         MonoObject *member;
1809         int i, len, match;
1810         MonoClass *nested;
1811
1812         domain = ((MonoObject *)type)->vtable->domain;
1813         klass = startklass = mono_class_from_mono_type (type->type);
1814
1815         for (tmpn = klass->nested_classes; tmpn; tmpn = tmpn->next) {
1816                 match = 0;
1817                 nested = tmpn->data;
1818                 if ((nested->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK) == TYPE_ATTRIBUTE_NESTED_PUBLIC) {
1819                         if (bflags & BFLAGS_Public)
1820                                 match++;
1821                 } else {
1822                         if (bflags & BFLAGS_NonPublic)
1823                                 match++;
1824                 }
1825                 if (!match)
1826                         continue;
1827                 member = (MonoObject*)mono_type_get_object (domain, &nested->byval_arg);
1828                 l = g_slist_prepend (l, member);
1829         }
1830         len = g_slist_length (l);
1831         res = mono_array_new (domain, mono_defaults.monotype_class, len);
1832         i = 0;
1833         tmp = g_slist_reverse (l);
1834         for (; tmp; tmp = tmp->next, ++i)
1835                 mono_array_set (res, gpointer, i, tmp->data);
1836         g_slist_free (l);
1837         return res;
1838 }
1839
1840 static MonoReflectionType*
1841 ves_icall_System_Reflection_Assembly_GetType (MonoReflectionAssembly *assembly, MonoString *name, MonoBoolean throwOnError, MonoBoolean ignoreCase)
1842 {
1843         MonoDomain *domain = mono_domain_get (); 
1844         gchar *str;
1845         MonoType *type;
1846         MonoTypeNameParse info;
1847
1848         str = mono_string_to_utf8 (name);
1849         /*g_print ("requested type %s in %s\n", str, assembly->assembly->aname.name);*/
1850         if (!mono_reflection_parse_type (str, &info)) {
1851                 g_free (str);
1852                 g_list_free (info.modifiers);
1853                 g_list_free (info.nested);
1854                 if (throwOnError) /* uhm: this is a parse error, though... */
1855                         mono_raise_exception (mono_get_exception_type_load ());
1856                 /*g_print ("failed parse\n");*/
1857                 return NULL;
1858         }
1859
1860         type = mono_reflection_get_type (assembly->assembly->image, &info, ignoreCase);
1861         g_free (str);
1862         g_list_free (info.modifiers);
1863         g_list_free (info.nested);
1864         if (!type) {
1865                 if (throwOnError)
1866                         mono_raise_exception (mono_get_exception_type_load ());
1867                 /* g_print ("failed find\n"); */
1868                 return NULL;
1869         }
1870         /* g_print ("got it\n"); */
1871         return mono_type_get_object (domain, type);
1872
1873 }
1874
1875 static MonoString *
1876 ves_icall_System_Reflection_Assembly_get_code_base (MonoReflectionAssembly *assembly)
1877 {
1878         MonoDomain *domain = mono_domain_get (); 
1879         MonoString *res;
1880         char *name = g_strconcat (
1881                 "file://", assembly->assembly->image->name, NULL);
1882         
1883         res = mono_string_new (domain, name);
1884         g_free (name);
1885         return res;
1886 }
1887
1888 static MonoString *
1889 ves_icall_System_Reflection_Assembly_get_location (MonoReflectionAssembly *assembly)
1890 {
1891         MonoDomain *domain = mono_domain_get (); 
1892         MonoString *res;
1893         char *name = g_strconcat (
1894                 assembly->assembly->basedir, G_DIR_SEPARATOR_S,
1895                 assembly->assembly->image->module_name, NULL);
1896
1897         res = mono_string_new (domain, name);
1898         g_free (name);
1899         return res;
1900 }
1901
1902 static MonoReflectionMethod*
1903 ves_icall_System_Reflection_Assembly_get_EntryPoint (MonoReflectionAssembly *assembly) {
1904         guint32 token = mono_image_get_entry_point (assembly->assembly->image);
1905         if (!token)
1906                 return NULL;
1907         return mono_method_get_object (mono_object_domain (assembly), mono_get_method (assembly->assembly->image, token, NULL), NULL);
1908 }
1909
1910 static MonoArray*
1911 ves_icall_System_Reflection_Assembly_GetManifestResourceNames (MonoReflectionAssembly *assembly) {
1912         MonoTableInfo *table = &assembly->assembly->image->tables [MONO_TABLE_MANIFESTRESOURCE];
1913         MonoArray *result = mono_array_new (mono_object_domain (assembly), mono_defaults.string_class, table->rows);
1914         int i;
1915         const char *val;
1916
1917         for (i = 0; i < table->rows; ++i) {
1918                 val = mono_metadata_string_heap (assembly->assembly->image, mono_metadata_decode_row_col (table, i, MONO_MANIFEST_NAME));
1919                 mono_array_set (result, gpointer, i, mono_string_new (mono_object_domain (assembly), val));
1920         }
1921         return result;
1922 }
1923
1924 /* move this in some file in mono/util/ */
1925 static char *
1926 g_concat_dir_and_file (const char *dir, const char *file)
1927 {
1928         g_return_val_if_fail (dir != NULL, NULL);
1929         g_return_val_if_fail (file != NULL, NULL);
1930
1931         /*
1932          * If the directory name doesn't have a / on the end, we need
1933          * to add one so we get a proper path to the file
1934          */
1935         if (dir [strlen(dir) - 1] != G_DIR_SEPARATOR)
1936                 return g_strconcat (dir, G_DIR_SEPARATOR_S, file, NULL);
1937         else
1938                 return g_strconcat (dir, file, NULL);
1939 }
1940
1941 static MonoObject*
1942 ves_icall_System_Reflection_Assembly_GetManifestResourceInternal (MonoReflectionAssembly *assembly, MonoString *name) {
1943         char *n = mono_string_to_utf8 (name);
1944         MonoTableInfo *table = &assembly->assembly->image->tables [MONO_TABLE_MANIFESTRESOURCE];
1945         guint32 i;
1946         guint32 cols [MONO_MANIFEST_SIZE];
1947         const char *val;
1948         MonoObject *result;
1949
1950         for (i = 0; i < table->rows; ++i) {
1951                 mono_metadata_decode_row (table, i, cols, MONO_MANIFEST_SIZE);
1952                 val = mono_metadata_string_heap (assembly->assembly->image, cols [MONO_MANIFEST_NAME]);
1953                 if (strcmp (val, n) == 0)
1954                         break;
1955         }
1956         g_free (n);
1957         if (i == table->rows)
1958                 return NULL;
1959         /* FIXME */
1960         if (!cols [MONO_MANIFEST_IMPLEMENTATION]) {
1961                 guint32 size;
1962                 MonoArray *data;
1963                 val = mono_image_get_resource (assembly->assembly->image, cols [MONO_MANIFEST_OFFSET], &size);
1964                 if (!val)
1965                         return NULL;
1966                 data = mono_array_new (mono_object_domain (assembly), mono_defaults.byte_class, size);
1967                 memcpy (mono_array_addr (data, char, 0), val, size);
1968                 return (MonoObject*)data;
1969         }
1970         switch (cols [MONO_MANIFEST_IMPLEMENTATION] & IMPLEMENTATION_MASK) {
1971         case IMPLEMENTATION_FILE:
1972                 i = cols [MONO_MANIFEST_IMPLEMENTATION] >> IMPLEMENTATION_BITS;
1973                 table = &assembly->assembly->image->tables [MONO_TABLE_FILE];
1974                 i = mono_metadata_decode_row_col (table, i - 1, MONO_FILE_NAME);
1975                 val = mono_metadata_string_heap (assembly->assembly->image, i);
1976                 n = g_concat_dir_and_file (assembly->assembly->basedir, val);
1977                 result = (MonoObject*)mono_string_new (mono_object_domain (assembly), n);
1978                 /* check hash if needed */
1979                 g_free (n);
1980                 return result;
1981         case IMPLEMENTATION_ASSEMBLYREF:
1982         case IMPLEMENTATION_EXP_TYPE:
1983                 /* FIXME */
1984                 break;
1985         }
1986         return NULL;
1987 }
1988
1989 static MonoObject*
1990 ves_icall_System_Reflection_Assembly_GetFilesInternal (MonoReflectionAssembly *assembly, MonoString *name) {
1991         MonoTableInfo *table = &assembly->assembly->image->tables [MONO_TABLE_FILE];
1992         MonoArray *result;
1993         int i;
1994         const char *val;
1995         char *n;
1996
1997         /* check hash if needed */
1998         if (name) {
1999                 n = mono_string_to_utf8 (name);
2000                 for (i = 0; i < table->rows; ++i) {
2001                         val = mono_metadata_string_heap (assembly->assembly->image, mono_metadata_decode_row_col (table, i, MONO_FILE_NAME));
2002                         if (strcmp (val, n) == 0) {
2003                                 MonoString *fn;
2004                                 g_free (n);
2005                                 n = g_concat_dir_and_file (assembly->assembly->basedir, val);
2006                                 fn = mono_string_new (mono_object_domain (assembly), n);
2007                                 g_free (n);
2008                                 return (MonoObject*)fn;
2009                         }
2010                 }
2011                 g_free (n);
2012                 return NULL;
2013         }
2014
2015         for (i = 0; i < table->rows; ++i) {
2016                 result = mono_array_new (mono_object_domain (assembly), mono_defaults.string_class, table->rows);
2017                 val = mono_metadata_string_heap (assembly->assembly->image, mono_metadata_decode_row_col (table, i, MONO_FILE_NAME));
2018                 n = g_concat_dir_and_file (assembly->assembly->basedir, val);
2019                 mono_array_set (result, gpointer, i, mono_string_new (mono_object_domain (assembly), n));
2020                 g_free (n);
2021         }
2022         return (MonoObject*)result;
2023 }
2024
2025 static MonoReflectionMethod*
2026 ves_icall_GetCurrentMethod (void) {
2027         MonoMethod *m = mono_method_get_last_managed ();
2028         return mono_method_get_object (mono_domain_get (), m, NULL);
2029 }
2030
2031 static MonoReflectionAssembly*
2032 ves_icall_System_Reflection_Assembly_GetExecutingAssembly (void)
2033 {
2034         MonoMethod *m = mono_method_get_last_managed ();
2035         return mono_assembly_get_object (mono_domain_get (), m->klass->image->assembly);
2036 }
2037
2038
2039 static gboolean
2040 get_caller (MonoMethod *m, gint32 no, gint32 ilo, gpointer data)
2041 {
2042         MonoMethod **dest = data;
2043         if (m == *dest) {
2044                 *dest = NULL;
2045                 return FALSE;
2046         }
2047         if (!(*dest)) {
2048                 *dest = m;
2049                 return TRUE;
2050         }
2051         return FALSE;
2052 }
2053
2054 static MonoReflectionAssembly*
2055 ves_icall_System_Reflection_Assembly_GetEntryAssembly (void)
2056 {
2057         MonoDomain* domain = mono_domain_get ();
2058         g_assert (domain->entry_assembly);
2059         return mono_assembly_get_object (domain, domain->entry_assembly);
2060 }
2061
2062
2063 static MonoReflectionAssembly*
2064 ves_icall_System_Reflection_Assembly_GetCallingAssembly (void)
2065 {
2066         MonoMethod *m = mono_method_get_last_managed ();
2067         MonoMethod *dest = m;
2068         mono_stack_walk (get_caller, &dest);
2069         if (!dest)
2070                 dest = m;
2071         return mono_assembly_get_object (mono_domain_get (), dest->klass->image->assembly);
2072 }
2073
2074 static MonoString *
2075 ves_icall_System_MonoType_getFullName (MonoReflectionType *object)
2076 {
2077         MonoDomain *domain = mono_domain_get (); 
2078         MonoString *res;
2079         gchar *name;
2080
2081         name = mono_type_get_name (object->type);
2082         res = mono_string_new (domain, name);
2083         g_free (name);
2084
2085         return res;
2086 }
2087
2088 static void
2089 ves_icall_System_Reflection_Assembly_FillName (MonoReflectionAssembly *assembly, MonoReflectionAssemblyName *aname)
2090 {
2091         MonoAssemblyName *name = &assembly->assembly->aname;
2092
2093         if (strcmp (name->name, "corlib") == 0)
2094                 aname->name = mono_string_new (mono_object_domain (assembly), "mscorlib");
2095         else
2096                 aname->name = mono_string_new (mono_object_domain (assembly), name->name);
2097         aname->major = name->major;
2098 }
2099
2100 static MonoArray*
2101 ves_icall_System_Reflection_Assembly_GetTypes (MonoReflectionAssembly *assembly, MonoBoolean exportedOnly)
2102 {
2103         MonoDomain *domain = mono_domain_get (); 
2104         MonoArray *res;
2105         MonoClass *klass;
2106         MonoTableInfo *tdef = &assembly->assembly->image->tables [MONO_TABLE_TYPEDEF];
2107         int i, count;
2108         guint32 attrs, visibility;
2109
2110         /* we start the count from 1 because we skip the special type <Module> */
2111         if (exportedOnly) {
2112                 count = 0;
2113                 for (i = 1; i < tdef->rows; ++i) {
2114                         attrs = mono_metadata_decode_row_col (tdef, i, MONO_TYPEDEF_FLAGS);
2115                         visibility = attrs & TYPE_ATTRIBUTE_VISIBILITY_MASK;
2116                         if (visibility == TYPE_ATTRIBUTE_PUBLIC || visibility == TYPE_ATTRIBUTE_NESTED_PUBLIC)
2117                                 count++;
2118                 }
2119         } else {
2120                 count = tdef->rows - 1;
2121         }
2122         res = mono_array_new (domain, mono_defaults.monotype_class, count);
2123         count = 0;
2124         for (i = 1; i < tdef->rows; ++i) {
2125                 attrs = mono_metadata_decode_row_col (tdef, i, MONO_TYPEDEF_FLAGS);
2126                 visibility = attrs & TYPE_ATTRIBUTE_VISIBILITY_MASK;
2127                 if (!exportedOnly || (visibility == TYPE_ATTRIBUTE_PUBLIC || visibility == TYPE_ATTRIBUTE_NESTED_PUBLIC)) {
2128                         klass = mono_class_get (assembly->assembly->image, (i + 1) | MONO_TOKEN_TYPE_DEF);
2129                         mono_array_set (res, gpointer, count, mono_type_get_object (domain, &klass->byval_arg));
2130                         count++;
2131                 }
2132         }
2133         
2134         return res;
2135 }
2136
2137 static MonoReflectionType*
2138 ves_icall_ModuleBuilder_create_modified_type (MonoReflectionTypeBuilder *tb, MonoString *smodifiers)
2139 {
2140         MonoClass *klass;
2141         int isbyref = 0, rank;
2142         char *str = mono_string_to_utf8 (smodifiers);
2143         char *p;
2144
2145         klass = mono_class_from_mono_type (tb->type.type);
2146         p = str;
2147         /* logic taken from mono_reflection_parse_type(): keep in sync */
2148         while (*p) {
2149                 switch (*p) {
2150                 case '&':
2151                         if (isbyref) { /* only one level allowed by the spec */
2152                                 g_free (str);
2153                                 return NULL;
2154                         }
2155                         isbyref = 1;
2156                         p++;
2157                         g_free (str);
2158                         return mono_type_get_object (mono_domain_get (), &klass->this_arg);
2159                         break;
2160                 case '*':
2161                         klass = mono_ptr_class_get (&klass->byval_arg);
2162                         mono_class_init (klass);
2163                         p++;
2164                         break;
2165                 case '[':
2166                         rank = 1;
2167                         p++;
2168                         while (*p) {
2169                                 if (*p == ']')
2170                                         break;
2171                                 if (*p == ',')
2172                                         rank++;
2173                                 else if (*p != '*') { /* '*' means unknown lower bound */
2174                                         g_free (str);
2175                                         return NULL;
2176                                 }
2177                                 ++p;
2178                         }
2179                         if (*p != ']') {
2180                                 g_free (str);
2181                                 return NULL;
2182                         }
2183                         p++;
2184                         klass = mono_array_class_get (&klass->byval_arg, rank);
2185                         mono_class_init (klass);
2186                         break;
2187                 default:
2188                         break;
2189                 }
2190         }
2191         g_free (str);
2192         return mono_type_get_object (mono_domain_get (), &klass->byval_arg);
2193 }
2194
2195 static MonoObject *
2196 ves_icall_System_Delegate_CreateDelegate_internal (MonoReflectionType *type, MonoObject *target,
2197                                                    MonoReflectionMethod *info)
2198 {
2199         MonoClass *delegate_class = mono_class_from_mono_type (type->type);
2200         MonoObject *delegate;
2201         gpointer func;
2202
2203         mono_assert (delegate_class->parent == mono_defaults.multicastdelegate_class);
2204
2205         delegate = mono_object_new (target->vtable->domain, delegate_class);
2206
2207         func = mono_compile_method (info->method);
2208
2209         mono_delegate_ctor (delegate, target, func);
2210
2211         return delegate;
2212 }
2213
2214 /*
2215  * Magic number to convert a time which is relative to
2216  * Jan 1, 1970 into a value which is relative to Jan 1, 0001.
2217  */
2218 #define EPOCH_ADJUST    ((gint64)62135596800L)
2219
2220 static gint64
2221 ves_icall_System_DateTime_GetNow (void)
2222 {
2223 #ifdef PLATFORM_WIN32
2224         SYSTEMTIME st;
2225         FILETIME ft;
2226         
2227         GetLocalTime (&st);
2228         SystemTimeToFileTime (&st, &ft);
2229         return (gint64)504911232000000000L + ((((gint64)ft.dwHighDateTime)<<32) | ft.dwLowDateTime);
2230 #else
2231         /* FIXME: put this in io-layer and call it GetLocalTime */
2232         struct timeval tv;
2233         gint64 res;
2234
2235         if (gettimeofday (&tv, NULL) == 0) {
2236                 res = (((gint64)tv.tv_sec + EPOCH_ADJUST)* 1000000 + tv.tv_usec)*10;
2237                 return res;
2238         }
2239         /* fixme: raise exception */
2240         return 0;
2241 #endif
2242 }
2243
2244 /*
2245  * This is heavily based on zdump.c from glibc 2.2.
2246  *
2247  *  * data[0]:  start of daylight saving time (in DateTime ticks).
2248  *  * data[1]:  end of daylight saving time (in DateTime ticks).
2249  *  * data[2]:  utcoffset (in TimeSpan ticks).
2250  *  * data[3]:  additional offset when daylight saving (in TimeSpan ticks).
2251  *  * name[0]:  name of this timezone when not daylight saving.
2252  *  * name[1]:  name of this timezone when daylight saving.
2253  *
2254  *  FIXME: This only works with "standard" Unix dates (years between 1900 and 2100) while
2255  *         the class library allows years between 1 and 9999.
2256  *
2257  *  Returns true on success and zero on failure.
2258  */
2259 static guint32
2260 ves_icall_System_CurrentTimeZone_GetTimeZoneData (guint32 year, MonoArray **data, MonoArray **names)
2261 {
2262 #ifndef PLATFORM_WIN32
2263         MonoDomain *domain = mono_domain_get ();
2264         struct tm start, tt;
2265         time_t t;
2266
2267         long int gmtoff;
2268         int is_daylight = 0, day;
2269
2270         memset (&start, 0, sizeof (start));
2271
2272         start.tm_mday = 1;
2273         start.tm_year = year-1900;
2274
2275         t = mktime (&start);
2276 #if defined (HAVE_TIMEZONE)
2277 #define gmt_offset(x) (-1 * (((timezone / 60 / 60) - daylight) * 100))
2278 #elif defined (HAVE_TM_GMTOFF)
2279 #define gmt_offset(x) x.tm_gmtoff
2280 #else
2281 #error Neither HAVE_TIMEZONE nor HAVE_TM_GMTOFF defined. Rerun autoheader, autoconf, etc.
2282 #endif
2283         
2284         gmtoff = gmt_offset (start);
2285         
2286         MONO_CHECK_ARG_NULL (data);
2287         MONO_CHECK_ARG_NULL (names);
2288
2289         (*data) = mono_array_new (domain, mono_defaults.int64_class, 4);
2290         (*names) = mono_array_new (domain, mono_defaults.string_class, 2);
2291
2292         /* For each day of the year, calculate the tm_gmtoff. */
2293         for (day = 0; day < 365; day++) {
2294
2295                 t += 3600*24;
2296                 tt = *localtime (&t);
2297
2298                 /* Daylight saving starts or ends here. */
2299                 if (gmt_offset (tt) != gmtoff) {
2300                         char tzone[10];
2301                         struct tm tt1;
2302                         time_t t1;
2303
2304                         /* Try to find the exact hour when daylight saving starts/ends. */
2305                         t1 = t;
2306                         do {
2307                                 t1 -= 3600;
2308                                 tt1 = *localtime (&t1);
2309                         } while (gmt_offset (tt1) != gmtoff);
2310
2311                         /* Try to find the exact minute when daylight saving starts/ends. */
2312                         do {
2313                                 t1 += 60;
2314                                 tt1 = *localtime (&t1);
2315                         } while (gmt_offset (tt1) == gmtoff);
2316                         
2317                         strftime (tzone, 10, "%Z", &tt);
2318                         
2319                         /* Write data, if we're already in daylight saving, we're done. */
2320                         if (is_daylight) {
2321                                 mono_array_set ((*names), gpointer, 0, mono_string_new (domain, tzone));
2322                                 mono_array_set ((*data), gint64, 1, ((gint64)t1 + EPOCH_ADJUST) * 10000000L);
2323                                 return 1;
2324                         } else {
2325                                 mono_array_set ((*names), gpointer, 1, mono_string_new (domain, tzone));
2326                                 mono_array_set ((*data), gint64, 0, ((gint64)t1 + EPOCH_ADJUST) * 10000000L);
2327                                 is_daylight = 1;
2328                         }
2329
2330                         /* This is only set once when we enter daylight saving. */
2331                         mono_array_set ((*data), gint64, 2, (gint64)gmtoff * 10000000L);
2332                         mono_array_set ((*data), gint64, 3, (gint64)(gmt_offset (tt) - gmtoff) * 10000000L);
2333
2334                         gmtoff = gmt_offset (tt);
2335                 }
2336
2337                 gmtoff = gmt_offset (tt);
2338         }
2339         return 1;
2340 #else
2341         MonoDomain *domain = mono_domain_get ();
2342         TIME_ZONE_INFORMATION tz_info;
2343         FILETIME ft;
2344         int i;
2345
2346         GetTimeZoneInformation (&tz_info);
2347
2348         MONO_CHECK_ARG_NULL (data);
2349         MONO_CHECK_ARG_NULL (names);
2350
2351         (*data) = mono_array_new (domain, mono_defaults.int64_class, 4);
2352         (*names) = mono_array_new (domain, mono_defaults.string_class, 2);
2353
2354         for (i = 0; i < 32; ++i)
2355                 if (!tz_info.DaylightName [i])
2356                         break;
2357         mono_array_set ((*names), gpointer, 1, mono_string_new_utf16 (domain, tz_info.DaylightName, i));
2358         for (i = 0; i < 32; ++i)
2359                 if (!tz_info.StandardName [i])
2360                         break;
2361         mono_array_set ((*names), gpointer, 0, mono_string_new_utf16 (domain, tz_info.StandardName, i));
2362
2363         SystemTimeToFileTime (&tz_info.StandardDate, &ft);
2364         mono_array_set ((*data), gint64, 1, ((guint64)ft.dwHighDateTime<<32) | ft.dwLowDateTime);
2365         SystemTimeToFileTime (&tz_info.DaylightDate, &ft);
2366         mono_array_set ((*data), gint64, 0, ((guint64)ft.dwHighDateTime<<32) | ft.dwLowDateTime);
2367         mono_array_set ((*data), gint64, 3, tz_info.Bias + tz_info.StandardBias);
2368         mono_array_set ((*data), gint64, 2, tz_info.Bias + tz_info.DaylightBias);
2369
2370         return 1;
2371 #endif
2372 }
2373
2374 static gpointer
2375 ves_icall_System_Object_obj_address (MonoObject *this) {
2376         return this;
2377 }
2378
2379 /* System.Buffer */
2380
2381 static gint32 
2382 ves_icall_System_Buffer_ByteLengthInternal (MonoArray *array) {
2383         MonoClass *klass;
2384         MonoTypeEnum etype;
2385         int length, esize;
2386         int i;
2387
2388         klass = array->obj.vtable->klass;
2389         etype = klass->element_class->byval_arg.type;
2390         if (etype < MONO_TYPE_BOOLEAN || etype > MONO_TYPE_R8)
2391                 return -1;
2392
2393         if (array->bounds == NULL)
2394                 length = array->max_length;
2395         else {
2396                 length = 0;
2397                 for (i = 0; i < klass->rank; ++ i)
2398                         length += array->bounds [i].length;
2399         }
2400
2401         esize = mono_array_element_size (klass);
2402         return length * esize;
2403 }
2404
2405 static gint8 
2406 ves_icall_System_Buffer_GetByteInternal (MonoArray *array, gint32 idx) {
2407         return mono_array_get (array, gint8, idx);
2408 }
2409
2410 static void 
2411 ves_icall_System_Buffer_SetByteInternal (MonoArray *array, gint32 idx, gint8 value) {
2412         mono_array_set (array, gint8, idx, value);
2413 }
2414
2415 static void 
2416 ves_icall_System_Buffer_BlockCopyInternal (MonoArray *src, gint32 src_offset, MonoArray *dest, gint32 dest_offset, gint32 count) {
2417         char *src_buf, *dest_buf;
2418
2419         src_buf = (gint8 *)src->vector + src_offset;
2420         dest_buf = (gint8 *)dest->vector + dest_offset;
2421
2422         memcpy (dest_buf, src_buf, count);
2423 }
2424
2425 static MonoObject *
2426 ves_icall_Remoting_RealProxy_GetTransparentProxy (MonoObject *this)
2427 {
2428         MonoDomain *domain = mono_domain_get (); 
2429         MonoObject *res;
2430         MonoRealProxy *rp = ((MonoRealProxy *)this);
2431         MonoType *type;
2432         MonoClass *klass;
2433
2434         res = mono_object_new (domain, mono_defaults.transparent_proxy_class);
2435         
2436         ((MonoTransparentProxy *)res)->rp = rp;
2437         type = ((MonoReflectionType *)rp->class_to_proxy)->type;
2438         klass = mono_class_from_mono_type (type);
2439
2440         ((MonoTransparentProxy *)res)->klass = klass;
2441
2442         res->vtable = mono_class_proxy_vtable (domain, klass);
2443
2444         return res;
2445 }
2446
2447 /* System.Environment */
2448
2449 static MonoString *
2450 ves_icall_System_Environment_get_MachineName (void)
2451 {
2452 #if defined (PLATFORM_WIN32)
2453         gunichar2 *buf;
2454         guint32 len;
2455         MonoString *result;
2456
2457         len = MAX_COMPUTERNAME_LENGTH + 1;
2458         buf = g_new (gunichar2, len);
2459
2460         result = NULL;
2461         if (GetComputerName (buf, (PDWORD) &len))
2462                 result = mono_string_new_utf16 (mono_domain_get (), buf, len);
2463
2464         g_free (buf);
2465         return result;
2466 #else
2467         gchar *buf;
2468         int len;
2469         MonoString *result;
2470
2471         len = 256;
2472         buf = g_new (gchar, len);
2473
2474         result = NULL;
2475         if (gethostname (buf, len) != 0)
2476                 result = mono_string_new (mono_domain_get (), buf);
2477         
2478         g_free (buf);
2479         return result;
2480 #endif
2481 }
2482
2483 static int
2484 ves_icall_System_Environment_get_Platform (void)
2485 {
2486 #if defined (PLATFORM_WIN32)
2487         /* Win32NT */
2488         return 2;
2489 #else
2490         /* Unix */
2491         return 128;
2492 #endif
2493 }
2494
2495 static MonoString *
2496 ves_icall_System_Environment_get_NewLine (void)
2497 {
2498 #if defined (PLATFORM_WIN32)
2499         return mono_string_new (mono_domain_get (), "\r\n");
2500 #else
2501         return mono_string_new (mono_domain_get (), "\n");
2502 #endif
2503 }
2504
2505 static MonoString *
2506 ves_icall_System_Environment_GetEnvironmentVariable (MonoString *name)
2507 {
2508         const gchar *value;
2509         gchar *utf8_name;
2510
2511         if (name == NULL)
2512                 return NULL;
2513
2514         utf8_name = mono_string_to_utf8 (name); /* FIXME: this should be ascii */
2515         value = g_getenv (utf8_name);
2516         g_free (utf8_name);
2517
2518         if (value == 0)
2519                 return NULL;
2520         
2521         return mono_string_new (mono_domain_get (), value);
2522 }
2523
2524 /*
2525  * There is no standard way to get at environ.
2526  */
2527 extern char **environ;
2528
2529 static MonoArray *
2530 ves_icall_System_Environment_GetEnvironmentVariableNames (void)
2531 {
2532         MonoArray *names;
2533         MonoDomain *domain;
2534         MonoString *str;
2535         gchar **e, **parts;
2536         int n;
2537
2538         n = 0;
2539         for (e = environ; *e != 0; ++ e)
2540                 ++ n;
2541
2542         domain = mono_domain_get ();
2543         names = mono_array_new (domain, mono_defaults.string_class, n);
2544
2545         n = 0;
2546         for (e = environ; *e != 0; ++ e) {
2547                 parts = g_strsplit (*e, "=", 2);
2548                 if (*parts != 0) {
2549                         str = mono_string_new (domain, *parts);
2550                         mono_array_set (names, MonoString *, n, str);
2551                 }
2552
2553                 g_strfreev (parts);
2554
2555                 ++ n;
2556         }
2557
2558         return names;
2559 }
2560
2561 /*
2562  * Returns the number of milliseconds elapsed since the system started.
2563  */
2564 static gint32
2565 ves_icall_System_Environment_get_TickCount (void)
2566 {
2567 #if defined (PLATFORM_WIN32)
2568         return GetTickCount();
2569 #else
2570         struct timeval tv;
2571         struct timezone tz;
2572         gint32 res;
2573
2574         res = (gint32) gettimeofday (&tv, &tz);
2575
2576         if (res != -1)
2577                 res = (gint32) ((tv.tv_sec & 0xFFFFF) * 1000 + (tv.tv_usec / 1000));
2578         return res;
2579 #endif
2580 }
2581
2582
2583 static void
2584 ves_icall_System_Environment_Exit (int result)
2585 {
2586         /* we may need to do some cleanup here... */
2587         exit (result);
2588 }
2589
2590 static MonoString*
2591 ves_icall_System_Text_Encoding_InternalCodePage (void) {
2592         const char *cset;
2593         g_get_charset (&cset);
2594         return mono_string_new (mono_domain_get (), cset);
2595 }
2596
2597 static void
2598 ves_icall_MonoMethodMessage_InitMessage (MonoMethodMessage *this, 
2599                                          MonoReflectionMethod *method,
2600                                          MonoArray *out_args)
2601 {
2602         MonoDomain *domain = mono_domain_get ();
2603         
2604         mono_message_init (domain, this, method, out_args);
2605 }
2606
2607 static MonoBoolean
2608 ves_icall_IsTransparentProxy (MonoObject *proxy)
2609 {
2610         if (!proxy)
2611                 return 0;
2612
2613         if (proxy->vtable->klass == mono_defaults.transparent_proxy_class)
2614                 return 1;
2615
2616         return 0;
2617 }
2618
2619 static MonoObject *
2620 ves_icall_System_Runtime_Serialization_FormatterServices_GetUninitializedObject_Internal (MonoReflectionType *type)
2621 {
2622         MonoClass *klass;
2623         MonoObject *obj;
2624         MonoDomain *domain;
2625         
2626         domain = mono_object_domain (type);
2627         klass = mono_class_from_mono_type (type->type);
2628
2629         if (klass->rank >= 1) {
2630                 g_assert (klass->rank == 1);
2631                 obj = (MonoObject *) mono_array_new (domain, klass->element_class, 0);
2632         } else {
2633                 obj = mono_object_new (domain, klass);
2634         }
2635
2636         return obj;
2637 }
2638
2639 static MonoString *
2640 ves_icall_System_IO_get_temp_path (void)
2641 {
2642         return mono_string_new (mono_domain_get (), g_get_tmp_dir ());
2643 }
2644
2645 /* icall map */
2646
2647 static gconstpointer icall_map [] = {
2648         /*
2649          * System.Array
2650          */
2651         "System.Array::GetValue",         ves_icall_System_Array_GetValue,
2652         "System.Array::SetValue",         ves_icall_System_Array_SetValue,
2653         "System.Array::GetValueImpl",     ves_icall_System_Array_GetValueImpl,
2654         "System.Array::SetValueImpl",     ves_icall_System_Array_SetValueImpl,
2655         "System.Array::GetRank",          ves_icall_System_Array_GetRank,
2656         "System.Array::GetLength",        ves_icall_System_Array_GetLength,
2657         "System.Array::GetLowerBound",    ves_icall_System_Array_GetLowerBound,
2658         "System.Array::CreateInstanceImpl",   ves_icall_System_Array_CreateInstanceImpl,
2659         "System.Array::FastCopy",         ves_icall_System_Array_FastCopy,
2660         "System.Array::Clone",            mono_array_clone,
2661
2662         /*
2663          * System.Object
2664          */
2665         "System.Object::MemberwiseClone", ves_icall_System_Object_MemberwiseClone,
2666         "System.Object::GetType", ves_icall_System_Object_GetType,
2667         "System.Object::GetHashCode", ves_icall_System_Object_GetHashCode,
2668         "System.Object::obj_address", ves_icall_System_Object_obj_address,
2669
2670         /*
2671          * System.ValueType
2672          */
2673         "System.ValueType::GetHashCode", ves_icall_System_ValueType_GetHashCode,
2674         "System.ValueType::Equals", ves_icall_System_ValueType_Equals,
2675
2676         /*
2677          * System.String
2678          */
2679         
2680         "System.String::.ctor(char*)", ves_icall_System_String_ctor_charp,
2681         "System.String::.ctor(char*,int,int)", ves_icall_System_String_ctor_charp_int_int,
2682         "System.String::.ctor(sbyte*)", ves_icall_System_String_ctor_sbytep,
2683         "System.String::.ctor(sbyte*,int,int)", ves_icall_System_String_ctor_sbytep_int_int,
2684         "System.String::.ctor(sbyte*,int,int,System.Text.Encoding)", ves_icall_System_String_ctor_encoding,
2685         "System.String::.ctor(char[])", ves_icall_System_String_ctor_chara,
2686         "System.String::.ctor(char[],int,int)", ves_icall_System_String_ctor_chara_int_int,
2687         "System.String::.ctor(char,int)", ves_icall_System_String_ctor_char_int,
2688         "System.String::InternalEquals", ves_icall_System_String_InternalEquals,
2689         "System.String::InternalJoin", ves_icall_System_String_InternalJoin,
2690         "System.String::InternalInsert", ves_icall_System_String_InternalInsert,
2691         "System.String::InternalReplace(char,char)", ves_icall_System_String_InternalReplace_Char,
2692         "System.String::InternalReplace(string,string)", ves_icall_System_String_InternalReplace_Str,
2693         "System.String::InternalRemove", ves_icall_System_String_InternalRemove,
2694         "System.String::InternalCopyTo", ves_icall_System_String_InternalCopyTo,
2695         "System.String::InternalSplit", ves_icall_System_String_InternalSplit,
2696         "System.String::InternalTrim", ves_icall_System_String_InternalTrim,
2697         "System.String::InternalIndexOf(char,int,int)", ves_icall_System_String_InternalIndexOf_Char,
2698         "System.String::InternalIndexOf(string,int,int)", ves_icall_System_String_InternalIndexOf_Str,
2699         "System.String::InternalIndexOfAny", ves_icall_System_String_InternalIndexOfAny,
2700         "System.String::InternalLastIndexOf(char,int,int)", ves_icall_System_String_InternalLastIndexOf_Char,
2701         "System.String::InternalLastIndexOf(string,int,int)", ves_icall_System_String_InternalLastIndexOf_Str,
2702         "System.String::InternalLastIndexOfAny", ves_icall_System_String_InternalLastIndexOfAny,
2703         "System.String::InternalPad", ves_icall_System_String_InternalPad,
2704         "System.String::InternalToLower", ves_icall_System_String_InternalToLower,
2705         "System.String::InternalToUpper", ves_icall_System_String_InternalToUpper,
2706         "System.String::InternalAllocateStr", ves_icall_System_String_InternalAllocateStr,
2707         "System.String::InternalStrcpy(string,int,string)", ves_icall_System_String_InternalStrcpy_Str,
2708         "System.String::InternalStrcpy(string,int,string,int,int)", ves_icall_System_String_InternalStrcpy_StrN,
2709         "System.String::InternalIntern", ves_icall_System_String_InternalIntern,
2710         "System.String::InternalIsInterned", ves_icall_System_String_InternalIsInterned,
2711         "System.String::InternalCompare(string,int,string,int,int,bool)", ves_icall_System_String_InternalCompareStr_N,
2712         "System.String::GetHashCode", ves_icall_System_String_GetHashCode,
2713         "System.String::get_Chars", ves_icall_System_String_get_Chars,
2714
2715         /*
2716          * System.AppDomain
2717          */
2718         "System.AppDomain::createDomain", ves_icall_System_AppDomain_createDomain,
2719         "System.AppDomain::getCurDomain", ves_icall_System_AppDomain_getCurDomain,
2720         "System.AppDomain::GetData", ves_icall_System_AppDomain_GetData,
2721         "System.AppDomain::SetData", ves_icall_System_AppDomain_SetData,
2722         "System.AppDomain::getSetup", ves_icall_System_AppDomain_getSetup,
2723         "System.AppDomain::getFriendlyName", ves_icall_System_AppDomain_getFriendlyName,
2724         "System.AppDomain::GetAssemblies", ves_icall_System_AppDomain_GetAssemblies,
2725         "System.AppDomain::LoadAssembly", ves_icall_System_AppDomain_LoadAssembly,
2726         "System.AppDomain::Unload", ves_icall_System_AppDomain_Unload,
2727         "System.AppDomain::ExecuteAssembly", ves_icall_System_AppDomain_ExecuteAssembly,
2728
2729         /*
2730          * System.AppDomainSetup
2731          */
2732         "System.AppDomainSetup::InitAppDomainSetup", ves_icall_System_AppDomainSetup_InitAppDomainSetup,
2733
2734         /*
2735          * System.Double
2736          */
2737         "System.Double::ToStringImpl", mono_double_ToStringImpl,
2738         "System.Double::ParseImpl",    mono_double_ParseImpl,
2739
2740         /*
2741          * System.Single
2742          */
2743         "System.Single::ToStringImpl", mono_float_ToStringImpl,
2744
2745         /*
2746          * System.Decimal
2747          */
2748         "System.Decimal::decimal2UInt64", mono_decimal2UInt64,
2749         "System.Decimal::decimal2Int64", mono_decimal2Int64,
2750         "System.Decimal::double2decimal", mono_double2decimal, /* FIXME: wrong signature. */
2751         "System.Decimal::decimalIncr", mono_decimalIncr,
2752         "System.Decimal::decimalSetExponent", mono_decimalSetExponent,
2753         "System.Decimal::decimal2double", mono_decimal2double,
2754         "System.Decimal::decimalFloorAndTrunc", mono_decimalFloorAndTrunc,
2755         "System.Decimal::decimalRound", mono_decimalRound,
2756         "System.Decimal::decimalMult", mono_decimalMult,
2757         "System.Decimal::decimalDiv", mono_decimalDiv,
2758         "System.Decimal::decimalIntDiv", mono_decimalIntDiv,
2759         "System.Decimal::decimalCompare", mono_decimalCompare,
2760         "System.Decimal::string2decimal", mono_string2decimal,
2761         "System.Decimal::decimal2string", mono_decimal2string,
2762
2763         /*
2764          * ModuleBuilder
2765          */
2766         "System.Reflection.Emit.ModuleBuilder::create_modified_type", ves_icall_ModuleBuilder_create_modified_type,
2767         
2768         /*
2769          * AssemblyBuilder
2770          */
2771         "System.Reflection.Emit.AssemblyBuilder::getDataChunk", ves_icall_AssemblyBuilder_getDataChunk,
2772         "System.Reflection.Emit.AssemblyBuilder::getUSIndex", mono_image_insert_string,
2773         "System.Reflection.Emit.AssemblyBuilder::getToken", ves_icall_AssemblyBuilder_getToken,
2774         "System.Reflection.Emit.AssemblyBuilder::basic_init", mono_image_basic_init,
2775
2776         /*
2777          * Reflection stuff.
2778          */
2779         "System.Reflection.MonoMethodInfo::get_method_info", ves_icall_get_method_info,
2780         "System.Reflection.MonoMethodInfo::get_parameter_info", ves_icall_get_parameter_info,
2781         "System.Reflection.MonoFieldInfo::get_field_info", ves_icall_get_field_info,
2782         "System.Reflection.MonoPropertyInfo::get_property_info", ves_icall_get_property_info,
2783         "System.Reflection.MonoEventInfo::get_event_info", ves_icall_get_event_info,
2784         "System.Reflection.MonoMethod::InternalInvoke", ves_icall_InternalInvoke,
2785         "System.Reflection.MonoCMethod::InternalInvoke", ves_icall_InternalInvoke,
2786         "System.Reflection.MethodBase::GetCurrentMethod", ves_icall_GetCurrentMethod,
2787         "System.MonoCustomAttrs::GetCustomAttributes", mono_reflection_get_custom_attrs,
2788         "System.Reflection.Emit.CustomAttributeBuilder::GetBlob", mono_reflection_get_custom_attrs_blob,
2789         "System.Reflection.MonoField::GetValueInternal", ves_icall_MonoField_GetValueInternal,
2790         "System.Reflection.FieldInfo::SetValueInternal", ves_icall_FieldInfo_SetValueInternal,
2791         "System.Reflection.Emit.SignatureHelper::get_signature_local", mono_reflection_sighelper_get_signature_local,
2792         "System.Reflection.Emit.SignatureHelper::get_signature_field", mono_reflection_sighelper_get_signature_field,
2793
2794         
2795         /* System.Enum */
2796
2797         "System.MonoEnumInfo::get_enum_info", ves_icall_get_enum_info,
2798         "System.Enum::get_value", ves_icall_System_Enum_get_value,
2799         "System.Enum::ToObject", ves_icall_System_Enum_ToObject,
2800
2801         /*
2802          * TypeBuilder
2803          */
2804         "System.Reflection.Emit.TypeBuilder::setup_internal_class", mono_reflection_setup_internal_class,
2805         "System.Reflection.Emit.TypeBuilder::create_internal_class", mono_reflection_create_internal_class,
2806         "System.Reflection.Emit.TypeBuilder::create_runtime_class", mono_reflection_create_runtime_class,
2807         
2808         /*
2809          * MethodBuilder
2810          */
2811         
2812         /*
2813          * System.Type
2814          */
2815         "System.Type::internal_from_name", ves_icall_type_from_name,
2816         "System.Type::internal_from_handle", ves_icall_type_from_handle,
2817         "System.Type::get_constructor", ves_icall_get_constructor,
2818         "System.Type::get_property", ves_icall_get_property,
2819         "System.MonoType::get_method", ves_icall_get_method,
2820         "System.MonoType::get_attributes", ves_icall_get_attributes,
2821         "System.Type::type_is_subtype_of", ves_icall_type_is_subtype_of,
2822         "System.Type::Equals", ves_icall_type_Equals,
2823         "System.Type::GetTypeCode", ves_icall_type_GetTypeCode,
2824
2825         /*
2826          * System.Runtime.CompilerServices.RuntimeHelpers
2827          */
2828         "System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray", ves_icall_InitializeArray,
2829         
2830         /*
2831          * System.Threading
2832          */
2833         "System.Threading.Thread::Abort(object)", ves_icall_System_Threading_Thread_Abort,
2834         "System.Threading.Thread::ResetAbort", ves_icall_System_Threading_Thread_ResetAbort,
2835         "System.Threading.Thread::Thread_internal", ves_icall_System_Threading_Thread_Thread_internal,
2836         "System.Threading.Thread::Thread_free_internal", ves_icall_System_Threading_Thread_Thread_free_internal,
2837         "System.Threading.Thread::Start_internal", ves_icall_System_Threading_Thread_Start_internal,
2838         "System.Threading.Thread::Sleep_internal", ves_icall_System_Threading_Thread_Sleep_internal,
2839         "System.Threading.Thread::CurrentThread_internal", mono_thread_current,
2840         "System.Threading.Thread::CurrentThreadDomain_internal", ves_icall_System_Threading_Thread_CurrentThreadDomain_internal,
2841         "System.Threading.Thread::Join_internal", ves_icall_System_Threading_Thread_Join_internal,
2842         "System.Threading.Thread::SlotHash_lookup", ves_icall_System_Threading_Thread_SlotHash_lookup,
2843         "System.Threading.Thread::SlotHash_store", ves_icall_System_Threading_Thread_SlotHash_store,
2844         "System.Threading.Monitor::Monitor_exit", ves_icall_System_Threading_Monitor_Monitor_exit,
2845         "System.Threading.Monitor::Monitor_test_owner", ves_icall_System_Threading_Monitor_Monitor_test_owner,
2846         "System.Threading.Monitor::Monitor_test_synchronised", ves_icall_System_Threading_Monitor_Monitor_test_synchronised,
2847         "System.Threading.Monitor::Monitor_pulse", ves_icall_System_Threading_Monitor_Monitor_pulse,
2848         "System.Threading.Monitor::Monitor_pulse_all", ves_icall_System_Threading_Monitor_Monitor_pulse_all,
2849         "System.Threading.Monitor::Monitor_try_enter", ves_icall_System_Threading_Monitor_Monitor_try_enter,
2850         "System.Threading.Monitor::Monitor_wait", ves_icall_System_Threading_Monitor_Monitor_wait,
2851         "System.Threading.Mutex::CreateMutex_internal", ves_icall_System_Threading_Mutex_CreateMutex_internal,
2852         "System.Threading.Mutex::ReleaseMutex_internal", ves_icall_System_Threading_Mutex_ReleaseMutex_internal,
2853         "System.Threading.NativeEventCalls::CreateEvent_internal", ves_icall_System_Threading_Events_CreateEvent_internal,
2854         "System.Threading.NativeEventCalls::SetEvent_internal",    ves_icall_System_Threading_Events_SetEvent_internal,
2855         "System.Threading.NativeEventCalls::ResetEvent_internal",  ves_icall_System_Threading_Events_ResetEvent_internal,
2856
2857         /*
2858          * System.Threading.WaitHandle
2859          */
2860         "System.Threading.WaitHandle::WaitAll_internal", ves_icall_System_Threading_WaitHandle_WaitAll_internal,
2861         "System.Threading.WaitHandle::WaitAny_internal", ves_icall_System_Threading_WaitHandle_WaitAny_internal,
2862         "System.Threading.WaitHandle::WaitOne_internal", ves_icall_System_Threading_WaitHandle_WaitOne_internal,
2863
2864         /*
2865          * System.Runtime.InteropServices.Marshal
2866          */
2867         "System.Runtime.InteropServices.Marshal::ReadIntPtr", ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr,
2868         "System.Runtime.InteropServices.Marshal::ReadByte", ves_icall_System_Runtime_InteropServices_Marshal_ReadByte,
2869         "System.Runtime.InteropServices.Marshal::ReadInt16", ves_icall_System_Runtime_InteropServices_Marshal_ReadInt16,
2870         "System.Runtime.InteropServices.Marshal::ReadInt32", ves_icall_System_Runtime_InteropServices_Marshal_ReadInt32,
2871         "System.Runtime.InteropServices.Marshal::ReadInt64", ves_icall_System_Runtime_InteropServices_Marshal_ReadInt64,
2872         "System.Runtime.InteropServices.Marshal::WriteIntPtr", ves_icall_System_Runtime_InteropServices_Marshal_WriteIntPtr,
2873         "System.Runtime.InteropServices.Marshal::WriteByte", ves_icall_System_Runtime_InteropServices_Marshal_WriteByte,
2874         "System.Runtime.InteropServices.Marshal::WriteInt16", ves_icall_System_Runtime_InteropServices_Marshal_WriteInt16,
2875         "System.Runtime.InteropServices.Marshal::WriteInt32", ves_icall_System_Runtime_InteropServices_Marshal_WriteInt32,
2876         "System.Runtime.InteropServices.Marshal::WriteInt64", ves_icall_System_Runtime_InteropServices_Marshal_WriteInt64,
2877
2878         "System.Runtime.InteropServices.Marshal::PtrToStringAnsi(intptr)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi,
2879         "System.Runtime.InteropServices.Marshal::PtrToStringAnsi(intptr,int)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len,
2880         "System.Runtime.InteropServices.Marshal::PtrToStringAuto(intptr)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi,
2881         "System.Runtime.InteropServices.Marshal::PtrToStringAuto(intptr,int)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len,
2882         "System.Runtime.InteropServices.Marshal::PtrToStringUni(intptr)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni,
2883         "System.Runtime.InteropServices.Marshal::PtrToStringUni(intptr,int)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni_len,
2884         "System.Runtime.InteropServices.Marshal::PtrToStringBSTR", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringBSTR,
2885
2886         "System.Runtime.InteropServices.Marshal::GetLastWin32Error", ves_icall_System_Runtime_InteropServices_Marshal_GetLastWin32Error,
2887         "System.Runtime.InteropServices.Marshal::AllocHGlobal", mono_marshal_alloc,
2888         "System.Runtime.InteropServices.Marshal::FreeHGlobal", mono_marshal_free,
2889         "System.Runtime.InteropServices.Marshal::ReAllocHGlobal", mono_marshal_realloc,
2890         "System.Runtime.InteropServices.Marshal::copy_to_unmanaged", ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged,
2891         "System.Runtime.InteropServices.Marshal::copy_from_unmanaged", ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged,
2892         "System.Runtime.InteropServices.Marshal::SizeOf", ves_icall_System_Runtime_InteropServices_Marshal_SizeOf,
2893         "System.Runtime.InteropServices.Marshal::StructureToPtr", ves_icall_System_Runtime_InteropServices_Marshal_StructureToPtr,
2894         "System.Runtime.InteropServices.Marshal::PtrToStructure(intptr,object)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure,
2895         "System.Runtime.InteropServices.Marshal::PtrToStructure(intptr,System.Type)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type,
2896         "System.Runtime.InteropServices.Marshal::OffsetOf", ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf,
2897         "System.Runtime.InteropServices.Marshal::StringToHGlobalAnsi", ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
2898         "System.Runtime.InteropServices.Marshal::StringToHGlobalAuto", ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
2899         "System.Runtime.InteropServices.Marshal::StringToHGlobalUni", ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni,
2900         "System.Runtime.InteropServices.Marshal::DestroyStructure", ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure,
2901
2902
2903         "System.Reflection.Assembly::LoadFrom", ves_icall_System_Reflection_Assembly_LoadFrom,
2904         "System.Reflection.Assembly::GetType", ves_icall_System_Reflection_Assembly_GetType,
2905         "System.Reflection.Assembly::GetTypes", ves_icall_System_Reflection_Assembly_GetTypes,
2906         "System.Reflection.Assembly::FillName", ves_icall_System_Reflection_Assembly_FillName,
2907         "System.Reflection.Assembly::get_code_base", ves_icall_System_Reflection_Assembly_get_code_base,
2908         "System.Reflection.Assembly::get_location", ves_icall_System_Reflection_Assembly_get_location,
2909         "System.Reflection.Assembly::GetExecutingAssembly", ves_icall_System_Reflection_Assembly_GetExecutingAssembly,
2910         "System.Reflection.Assembly::GetEntryAssembly", ves_icall_System_Reflection_Assembly_GetEntryAssembly,
2911         "System.Reflection.Assembly::GetCallingAssembly", ves_icall_System_Reflection_Assembly_GetCallingAssembly,
2912         "System.Reflection.Assembly::get_EntryPoint", ves_icall_System_Reflection_Assembly_get_EntryPoint,
2913         "System.Reflection.Assembly::GetManifestResourceNames", ves_icall_System_Reflection_Assembly_GetManifestResourceNames,
2914         "System.Reflection.Assembly::GetManifestResourceInternal", ves_icall_System_Reflection_Assembly_GetManifestResourceInternal,
2915         "System.Reflection.Assembly::GetFilesInternal", ves_icall_System_Reflection_Assembly_GetFilesInternal,
2916
2917         /*
2918          * System.MonoType.
2919          */
2920         "System.MonoType::getFullName", ves_icall_System_MonoType_getFullName,
2921         "System.MonoType::type_from_obj", mono_type_type_from_obj,
2922         "System.MonoType::GetElementType", ves_icall_MonoType_GetElementType,
2923         "System.MonoType::get_type_info", ves_icall_get_type_info,
2924         "System.MonoType::get_BaseType", ves_icall_get_type_parent,
2925         "System.MonoType::IsPointerImpl", ves_icall_type_ispointer,
2926         "System.MonoType::IsByRefImpl", ves_icall_type_isbyref,
2927         "System.MonoType::GetField", ves_icall_Type_GetField,
2928         "System.MonoType::GetFields", ves_icall_Type_GetFields,
2929         "System.MonoType::GetMethods", ves_icall_Type_GetMethods,
2930         "System.MonoType::GetConstructors", ves_icall_Type_GetConstructors,
2931         "System.MonoType::GetProperties", ves_icall_Type_GetProperties,
2932         "System.MonoType::GetEvents", ves_icall_Type_GetEvents,
2933         "System.MonoType::GetInterfaces", ves_icall_Type_GetInterfaces,
2934         "System.MonoType::GetNestedTypes", ves_icall_Type_GetNestedTypes,
2935
2936         /*
2937          * System.Net.Sockets I/O Services
2938          */
2939         "System.Net.Sockets.Socket::Socket_internal", ves_icall_System_Net_Sockets_Socket_Socket_internal,
2940         "System.Net.Sockets.Socket::Close_internal", ves_icall_System_Net_Sockets_Socket_Close_internal,
2941         "System.Net.Sockets.SocketException::WSAGetLastError_internal", ves_icall_System_Net_Sockets_SocketException_WSAGetLastError_internal,
2942         "System.Net.Sockets.Socket::Available_internal", ves_icall_System_Net_Sockets_Socket_Available_internal,
2943         "System.Net.Sockets.Socket::Blocking_internal", ves_icall_System_Net_Sockets_Socket_Blocking_internal,
2944         "System.Net.Sockets.Socket::Accept_internal", ves_icall_System_Net_Sockets_Socket_Accept_internal,
2945         "System.Net.Sockets.Socket::Listen_internal", ves_icall_System_Net_Sockets_Socket_Listen_internal,
2946         "System.Net.Sockets.Socket::LocalEndPoint_internal", ves_icall_System_Net_Sockets_Socket_LocalEndPoint_internal,
2947         "System.Net.Sockets.Socket::RemoteEndPoint_internal", ves_icall_System_Net_Sockets_Socket_RemoteEndPoint_internal,
2948         "System.Net.Sockets.Socket::Bind_internal", ves_icall_System_Net_Sockets_Socket_Bind_internal,
2949         "System.Net.Sockets.Socket::Connect_internal", ves_icall_System_Net_Sockets_Socket_Connect_internal,
2950         "System.Net.Sockets.Socket::Receive_internal", ves_icall_System_Net_Sockets_Socket_Receive_internal,
2951         "System.Net.Sockets.Socket::RecvFrom_internal", ves_icall_System_Net_Sockets_Socket_RecvFrom_internal,
2952         "System.Net.Sockets.Socket::Send_internal", ves_icall_System_Net_Sockets_Socket_Send_internal,
2953         "System.Net.Sockets.Socket::SendTo_internal", ves_icall_System_Net_Sockets_Socket_SendTo_internal,
2954         "System.Net.Sockets.Socket::Select_internal", ves_icall_System_Net_Sockets_Socket_Select_internal,
2955         "System.Net.Sockets.Socket::Shutdown_internal", ves_icall_System_Net_Sockets_Socket_Shutdown_internal,
2956         "System.Net.Sockets.Socket::GetSocketOption_obj_internal", ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal,
2957         "System.Net.Sockets.Socket::GetSocketOption_arr_internal", ves_icall_System_Net_Sockets_Socket_GetSocketOption_arr_internal,
2958         "System.Net.Sockets.Socket::SetSocketOption_internal", ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal,
2959         "System.Net.Dns::GetHostByName_internal", ves_icall_System_Net_Dns_GetHostByName_internal,
2960         "System.Net.Dns::GetHostByAddr_internal", ves_icall_System_Net_Dns_GetHostByAddr_internal,
2961
2962         /*
2963          * System.Char
2964          */
2965         "System.Char::GetNumericValue", ves_icall_System_Char_GetNumericValue,
2966         "System.Char::GetUnicodeCategory", ves_icall_System_Char_GetUnicodeCategory,
2967         "System.Char::IsControl", ves_icall_System_Char_IsControl,
2968         "System.Char::IsDigit", ves_icall_System_Char_IsDigit,
2969         "System.Char::IsLetter", ves_icall_System_Char_IsLetter,
2970         "System.Char::IsLower", ves_icall_System_Char_IsLower,
2971         "System.Char::IsUpper", ves_icall_System_Char_IsUpper,
2972         "System.Char::IsNumber", ves_icall_System_Char_IsNumber,
2973         "System.Char::IsPunctuation", ves_icall_System_Char_IsPunctuation,
2974         "System.Char::IsSeparator", ves_icall_System_Char_IsSeparator,
2975         "System.Char::IsSurrogate", ves_icall_System_Char_IsSurrogate,
2976         "System.Char::IsSymbol", ves_icall_System_Char_IsSymbol,
2977         "System.Char::IsWhiteSpace", ves_icall_System_Char_IsWhiteSpace,
2978         "System.Char::ToLower", ves_icall_System_Char_ToLower,
2979         "System.Char::ToUpper", ves_icall_System_Char_ToUpper,
2980
2981         /*
2982          * System.Text.Encoding
2983          */
2984         "System.Text.Encoding::InternalCodePage", ves_icall_System_Text_Encoding_InternalCodePage,
2985
2986         "System.DateTime::GetNow", ves_icall_System_DateTime_GetNow,
2987         "System.CurrentTimeZone::GetTimeZoneData", ves_icall_System_CurrentTimeZone_GetTimeZoneData,
2988
2989         /*
2990          * System.GC
2991          */
2992         "System.GC::InternalCollect", ves_icall_System_GC_InternalCollect,
2993         "System.GC::GetTotalMemory", ves_icall_System_GC_GetTotalMemory,
2994         "System.GC::KeepAlive", ves_icall_System_GC_KeepAlive,
2995         "System.GC::ReRegisterForFinalize", ves_icall_System_GC_ReRegisterForFinalize,
2996         "System.GC::SuppressFinalize", ves_icall_System_GC_SuppressFinalize,
2997         "System.GC::WaitForPendingFinalizers", ves_icall_System_GC_WaitForPendingFinalizers,
2998         "System.Runtime.InteropServices.GCHandle::GetTarget", ves_icall_System_GCHandle_GetTarget,
2999         "System.Runtime.InteropServices.GCHandle::GetTargetHandle", ves_icall_System_GCHandle_GetTargetHandle,
3000         "System.Runtime.InteropServices.GCHandle::FreeHandle", ves_icall_System_GCHandle_FreeHandle,
3001         "System.Runtime.InteropServices.GCHandle::GetAddrOfPinnedObject", ves_icall_System_GCHandle_GetAddrOfPinnedObject,
3002
3003         /*
3004          * System.Security.Cryptography calls
3005          */
3006
3007          "System.Security.Cryptography.RNGCryptoServiceProvider::GetBytes", ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes,
3008          "System.Security.Cryptography.RNGCryptoServiceProvider::GetNonZeroBytes", ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes,
3009         
3010         /*
3011          * System.Buffer
3012          */
3013         "System.Buffer::ByteLengthInternal", ves_icall_System_Buffer_ByteLengthInternal,
3014         "System.Buffer::GetByteInternal", ves_icall_System_Buffer_GetByteInternal,
3015         "System.Buffer::SetByteInternal", ves_icall_System_Buffer_SetByteInternal,
3016         "System.Buffer::BlockCopyInternal", ves_icall_System_Buffer_BlockCopyInternal,
3017
3018         /*
3019          * System.IO.MonoIO
3020          */
3021         "System.IO.MonoIO::GetLastError", ves_icall_System_IO_MonoIO_GetLastError,
3022         "System.IO.MonoIO::CreateDirectory", ves_icall_System_IO_MonoIO_CreateDirectory,
3023         "System.IO.MonoIO::RemoveDirectory", ves_icall_System_IO_MonoIO_RemoveDirectory,
3024         "System.IO.MonoIO::FindFirstFile", ves_icall_System_IO_MonoIO_FindFirstFile,
3025         "System.IO.MonoIO::FindNextFile", ves_icall_System_IO_MonoIO_FindNextFile,
3026         "System.IO.MonoIO::FindClose", ves_icall_System_IO_MonoIO_FindClose,
3027         "System.IO.MonoIO::GetCurrentDirectory", ves_icall_System_IO_MonoIO_GetCurrentDirectory,
3028         "System.IO.MonoIO::SetCurrentDirectory", ves_icall_System_IO_MonoIO_SetCurrentDirectory,
3029         "System.IO.MonoIO::MoveFile", ves_icall_System_IO_MonoIO_MoveFile,
3030         "System.IO.MonoIO::CopyFile", ves_icall_System_IO_MonoIO_CopyFile,
3031         "System.IO.MonoIO::DeleteFile", ves_icall_System_IO_MonoIO_DeleteFile,
3032         "System.IO.MonoIO::GetFileAttributes", ves_icall_System_IO_MonoIO_GetFileAttributes,
3033         "System.IO.MonoIO::SetFileAttributes", ves_icall_System_IO_MonoIO_SetFileAttributes,
3034         "System.IO.MonoIO::GetFileStat", ves_icall_System_IO_MonoIO_GetFileStat,
3035         "System.IO.MonoIO::Open", ves_icall_System_IO_MonoIO_Open,
3036         "System.IO.MonoIO::Close", ves_icall_System_IO_MonoIO_Close,
3037         "System.IO.MonoIO::Read", ves_icall_System_IO_MonoIO_Read,
3038         "System.IO.MonoIO::Write", ves_icall_System_IO_MonoIO_Write,
3039         "System.IO.MonoIO::Seek", ves_icall_System_IO_MonoIO_Seek,
3040         "System.IO.MonoIO::GetLength", ves_icall_System_IO_MonoIO_GetLength,
3041         "System.IO.MonoIO::SetLength", ves_icall_System_IO_MonoIO_SetLength,
3042         "System.IO.MonoIO::SetFileTime", ves_icall_System_IO_MonoIO_SetFileTime,
3043         "System.IO.MonoIO::Flush", ves_icall_System_IO_MonoIO_Flush,
3044         "System.IO.MonoIO::get_ConsoleOutput", ves_icall_System_IO_MonoIO_get_ConsoleOutput,
3045         "System.IO.MonoIO::get_ConsoleInput", ves_icall_System_IO_MonoIO_get_ConsoleInput,
3046         "System.IO.MonoIO::get_ConsoleError", ves_icall_System_IO_MonoIO_get_ConsoleError,
3047         "System.IO.MonoIO::CreatePipe(intptr&,intptr&)", ves_icall_System_IO_MonoIO_CreatePipe,
3048         "System.IO.MonoIO::get_VolumeSeparatorChar", ves_icall_System_IO_MonoIO_get_VolumeSeparatorChar,
3049         "System.IO.MonoIO::get_DirectorySeparatorChar", ves_icall_System_IO_MonoIO_get_DirectorySeparatorChar,
3050         "System.IO.MonoIO::get_AltDirectorySeparatorChar", ves_icall_System_IO_MonoIO_get_AltDirectorySeparatorChar,
3051         "System.IO.MonoIO::get_PathSeparator", ves_icall_System_IO_MonoIO_get_PathSeparator,
3052         "System.IO.MonoIO::get_InvalidPathChars", ves_icall_System_IO_MonoIO_get_InvalidPathChars,
3053
3054         /*
3055          * System.Math
3056          */
3057         "System.Math::Sin", ves_icall_System_Math_Sin,
3058     "System.Math::Cos", ves_icall_System_Math_Cos,
3059     "System.Math::Tan", ves_icall_System_Math_Tan,
3060     "System.Math::Sinh", ves_icall_System_Math_Sinh,
3061     "System.Math::Cosh", ves_icall_System_Math_Cosh,
3062     "System.Math::Tanh", ves_icall_System_Math_Tanh,
3063     "System.Math::Acos", ves_icall_System_Math_Acos,
3064     "System.Math::Asin", ves_icall_System_Math_Asin,
3065     "System.Math::Atan", ves_icall_System_Math_Atan,
3066     "System.Math::Atan2", ves_icall_System_Math_Atan2,
3067     "System.Math::Exp", ves_icall_System_Math_Exp,
3068     "System.Math::Log", ves_icall_System_Math_Log,
3069     "System.Math::Log10", ves_icall_System_Math_Log10,
3070     "System.Math::PowImpl", ves_icall_System_Math_Pow,
3071     "System.Math::Sqrt", ves_icall_System_Math_Sqrt,
3072
3073         /*
3074          * System.Environment
3075          */
3076         "System.Environment::get_MachineName", ves_icall_System_Environment_get_MachineName,
3077         "System.Environment::get_NewLine", ves_icall_System_Environment_get_NewLine,
3078         "System.Environment::GetEnvironmentVariable", ves_icall_System_Environment_GetEnvironmentVariable,
3079         "System.Environment::GetEnvironmentVariableNames", ves_icall_System_Environment_GetEnvironmentVariableNames,
3080         "System.Environment::GetCommandLineArgs", mono_runtime_get_main_args,
3081         "System.Environment::get_TickCount", ves_icall_System_Environment_get_TickCount,
3082         "System.Environment::Exit", ves_icall_System_Environment_Exit,
3083         "System.Environment::get_Platform", ves_icall_System_Environment_get_Platform,
3084
3085         /*
3086          * System.Runtime.Remoting
3087          */     
3088         "System.Runtime.Remoting.RemotingServices::InternalExecute",
3089         ves_icall_InternalExecute,
3090         "System.Runtime.Remoting.RemotingServices::IsTransparentProxy",
3091         ves_icall_IsTransparentProxy,
3092
3093         /*
3094          * System.Runtime.Remoting.Messaging
3095          */     
3096         "System.Runtime.Remoting.Messaging.MonoMethodMessage::InitMessage",
3097         ves_icall_MonoMethodMessage_InitMessage,
3098         
3099         /*
3100          * System.Runtime.Remoting.Proxies
3101          */     
3102         "System.Runtime.Remoting.Proxies.RealProxy::GetTransparentProxy", 
3103         ves_icall_Remoting_RealProxy_GetTransparentProxy,
3104
3105         /*
3106          * System.Threading.Interlocked
3107          */
3108         "System.Threading.Interlocked::Increment(int&)", ves_icall_System_Threading_Interlocked_Increment_Int,
3109         "System.Threading.Interlocked::Increment(long&)", ves_icall_System_Threading_Interlocked_Increment_Long,
3110         "System.Threading.Interlocked::Decrement(int&)", ves_icall_System_Threading_Interlocked_Decrement_Int,
3111         "System.Threading.Interlocked::Decrement(long&)", ves_icall_System_Threading_Interlocked_Decrement_Long,
3112         "System.Threading.Interlocked::CompareExchange(int&,int,int)", ves_icall_System_Threading_Interlocked_CompareExchange_Int,
3113         "System.Threading.Interlocked::CompareExchange(object&,object,object)", ves_icall_System_Threading_Interlocked_CompareExchange_Object,
3114         "System.Threading.Interlocked::CompareExchange(single&,single,single)", ves_icall_System_Threading_Interlocked_CompareExchange_Single,
3115         "System.Threading.Interlocked::Exchange(int&,int)", ves_icall_System_Threading_Interlocked_Exchange_Int,
3116         "System.Threading.Interlocked::Exchange(object&,object)", ves_icall_System_Threading_Interlocked_Exchange_Object,
3117         "System.Threading.Interlocked::Exchange(single&,single)", ves_icall_System_Threading_Interlocked_Exchange_Single,
3118
3119         /*
3120          * System.Diagnostics.Process
3121          */
3122         "System.Diagnostics.Process::GetCurrentProcess_internal()", ves_icall_System_Diagnostics_Process_GetCurrentProcess_internal,
3123         "System.Diagnostics.Process::GetPid_internal()", ves_icall_System_Diagnostics_Process_GetPid_internal,
3124         "System.Diagnostics.Process::Process_free_internal(intptr)", ves_icall_System_Diagnostics_Process_Process_free_internal,
3125         "System.Diagnostics.Process::GetModules_internal()", ves_icall_System_Diagnostics_Process_GetModules_internal,
3126         "System.Diagnostics.Process::Start_internal(string,string,intptr,intptr,intptr,ProcInfo&)", ves_icall_System_Diagnostics_Process_Start_internal,
3127         "System.Diagnostics.Process::WaitForExit_internal(intptr,int)", ves_icall_System_Diagnostics_Process_WaitForExit_internal,
3128         "System.Diagnostics.Process::ExitTime_internal(intptr)", ves_icall_System_Diagnostics_Process_ExitTime_internal,
3129         "System.Diagnostics.Process::StartTime_internal(intptr)", ves_icall_System_Diagnostics_Process_StartTime_internal,
3130         "System.Diagnostics.Process::ExitCode_internal(intptr)", ves_icall_System_Diagnostics_Process_ExitCode_internal,
3131         "System.Diagnostics.FileVersionInfo::GetVersionInfo_internal(string)", ves_icall_System_Diagnostics_FileVersionInfo_GetVersionInfo_internal,
3132
3133         /* 
3134          * System.Delegate
3135          */
3136         "System.Delegate::CreateDelegate_internal", ves_icall_System_Delegate_CreateDelegate_internal,
3137
3138         /* 
3139          * System.Runtime.Serialization
3140          */
3141         "System.Runtime.Serialization.FormatterServices::GetUninitializedObjectInternal",
3142         ves_icall_System_Runtime_Serialization_FormatterServices_GetUninitializedObject_Internal,
3143
3144         /*
3145          * System.IO.Path
3146          */
3147         "System.IO.Path::get_temp_path", ves_icall_System_IO_get_temp_path,
3148
3149         /*
3150          * add other internal calls here
3151          */
3152         NULL, NULL
3153 };
3154
3155 void
3156 mono_init_icall (void)
3157 {
3158         const char *name;
3159         int i = 0;
3160
3161         while ((name = icall_map [i])) {
3162                 mono_add_internal_call (name, icall_map [i+1]);
3163                 i += 2;
3164         }
3165        
3166 }
3167
3168