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