2001-08-20 Dietmar Maurer <dietmar@ximian.com>
[mono.git] / mono / metadata / loader.c
index 84f4251444c41b5b55cc910aee300354906f0e60..efa871cf15eb362466b0f5811203f705060f9052 100644 (file)
 #include <string.h>
 #include <mono/metadata/metadata.h>
 #include <mono/metadata/image.h>
+#include <mono/metadata/assembly.h>
 #include <mono/metadata/tokentype.h>
 #include <mono/metadata/cil-coff.h>
 #include <mono/metadata/tabledefs.h>
 #include "cli.h"
 
-static guint32
-typedef_from_name (MonoImage *image, const char *name, const char *nspace, guint32 *mlist)
+
+static char *dll_map[] = {
+       "libc", "libc.so.6",
+       "libm", "libm.so.6",
+       "cygwin1.dll", "libc.so.6", 
+       NULL, NULL
+};
+
+static const char *
+mono_map_dll (const char *name)
 {
-       metadata_t *m = &image->metadata;
-       metadata_tableinfo_t *t = &m->tables [META_TABLE_TYPEDEF];
+       int i = 0;
+
+       while (dll_map [i]) {
+               if (!strcmp (dll_map [i], name))
+                       return  dll_map [i + 1];
+               i += 2;
+       }
+
+       return name;
+}
+
+guint32
+mono_typedef_from_name (MonoImage *image, const char *name, 
+                       const char *nspace, guint32 *mlist)
+{
+       MonoMetadata *m = &image->metadata;
+       MonoTableInfo *t = &m->tables [MONO_TABLE_TYPEDEF];
        guint32 i;
-       guint32 cols [META_TYPEDEF_SIZE];
+       guint32 cols [MONO_TYPEDEF_SIZE];
 
        for (i=0; i < t->rows; ++i) {
-               mono_metadata_decode_row (t, i, cols, META_TYPEDEF_SIZE);
-               if (strcmp (name, mono_metadata_string_heap (m, cols [META_TYPEDEF_NAME])) == 0 
-                               && strcmp (nspace, mono_metadata_string_heap (m, cols [META_TYPEDEF_NAMESPACE])) == 0) {
-                       *mlist = cols [META_TYPEDEF_METHOD_LIST];
-                       return i + 1;
+               mono_metadata_decode_row (t, i, cols, MONO_TYPEDEF_SIZE);
+               if (strcmp (name, mono_metadata_string_heap (m, cols [MONO_TYPEDEF_NAME])) == 0 
+                               && strcmp (nspace, mono_metadata_string_heap (m, cols [MONO_TYPEDEF_NAMESPACE])) == 0) {
+                       if (mlist)
+                               *mlist = cols [MONO_TYPEDEF_METHOD_LIST];
+                       return MONO_TOKEN_TYPE_DEF | (i + 1);
                }
        }
        g_assert_not_reached ();
        return 0;
 }
 
-static void
-methoddef_from_memberref (MonoImage *image, guint32 index, MonoImage **rimage, guint32 *rindex)
+MonoImage *
+mono_get_corlib ()
 {
-       metadata_t *m = &image->metadata;
-       metadata_tableinfo_t *tables = m->tables;
-       guint32 cols[6];
-       guint32 nindex, sig_len, msig_len, class, i;
-       const char *sig, *msig, *mname, *name, *nspace;
+       static MonoImage *corlib = NULL;
+       MonoAssembly *ass;
+       enum MonoImageOpenStatus status = MONO_IMAGE_OK;
+
+       if (!corlib) {
+               ass = mono_assembly_open (CORLIB_NAME, NULL, &status);
+               g_assert (status == MONO_IMAGE_OK);
+               g_assert (ass != NULL);
+               g_assert (ass->image != NULL);
+               
+               corlib = ass->image;
+       }
+
+       return corlib;
+}
+
+/**
+ * mono_get_array_class_info:
+ * @ttoken: pointer to location to store type definition token
+ * @cl: pointer where image will be stored
+ *
+ * This routine locates information about the System.Array class. A reference
+ * to the image containing the class is returned in @cl. The type definition 
+ * token is returned in @ttoken. 
+ */
+void
+mono_get_array_class_info (guint *ttoken, MonoImage **cl)
+{
+       static guint32 arr_token = 0;
+       static MonoImage *corlib;
+
+       if (!arr_token) {
+               corlib = mono_get_corlib ();            
+               arr_token = mono_typedef_from_name (corlib, "Array", "System", NULL);
+               g_assert (arr_token != 0);
+       }
+
+       *ttoken = arr_token;
+       *cl = corlib;
+}
+
+/**
+ * mono_get_string_class_info:
+ * @ttoken: pointer to location to store type definition token
+ * @cl: pointer where image will be stored
+ *
+ * This routine locates information about the System.String class. A reference
+ * to the image containing the class is returned in @cl. The type definition 
+ * token is returned in @ttoken. 
+ *
+ * Returns: the method definition token for System.String::.ctor (char *)
+ */
+
+guint32
+mono_get_string_class_info (guint *ttoken, MonoImage **cl)
+{
+       static guint32 ctor = 0, tt = 0;
+       static MonoImage *corlib;
+       MonoMetadata *m;
+       MonoTableInfo *t;
+       guint32 cols [MAX (MONO_TYPEDEF_SIZE, MONO_METHOD_SIZE)];
+       guint32 ncols [MONO_TYPEDEF_SIZE];
+       guint32 i, first = 0, last = 0;
+       const char *name, *nspace;
+
+       if (ctor) {
+               *ttoken = tt;
+               *cl = corlib;
+               return ctor;
+       }
+
+       *cl = corlib = mono_get_corlib ();              
        
-       mono_metadata_decode_row (&tables [META_TABLE_MEMBERREF], index-1, cols, 3);
-       nindex = cols [META_MEMBERREF_CLASS] >> MEMBERREF_PARENT_BITS;
-       class = cols [META_MEMBERREF_CLASS] & MEMBERREF_PARENT_MASK;
+       m = &corlib->metadata;
+       t = &m->tables [MONO_TABLE_TYPEDEF];
+
+       for (i = 0; i < t->rows; i++) {
+               mono_metadata_decode_row (t, i, cols, MONO_TYPEDEF_SIZE);
+               name = mono_metadata_string_heap (m, cols[1]);
+               nspace = mono_metadata_string_heap (m, cols[2]);
+
+               if (((cols [0] & TYPE_ATTRIBUTE_CLASS_SEMANTIC_MASK) == TYPE_ATTRIBUTE_CLASS) &&
+                   !strcmp (nspace, "System") && !strcmp (name, "String")) {
+
+                       *ttoken = tt = MONO_TOKEN_TYPE_DEF | (i + 1);
+
+                       first = cols [5] - 1;
+
+                       if (i + 1 < t->rows) {
+                               mono_metadata_decode_row (t, i + 1, ncols, 
+                                                         MONO_TYPEDEF_SIZE);
+                               last =  ncols [5] - 1;
+                       } else
+                               last = m->tables [MONO_TABLE_METHOD].rows;
+                       break;
+               }
+       }
+
+       g_assert (last - first > 0);
+
+       t = &m->tables [MONO_TABLE_METHOD];
+       g_assert (last < t->rows);
+
+       for (i = first; i < last; i++) {
+               const char *ptr;
+               int len;
+               guint8 sig[] = { 0x20, 0x01, 0x01, 0x0f, 0x03 };
+               mono_metadata_decode_row (t, i, cols, MONO_METHOD_SIZE);
+
+               if (!strcmp (mono_metadata_string_heap (m, cols [3]), 
+                            ".ctor") &&
+                   (cols [2] & METHOD_ATTRIBUTE_SPECIAL_NAME)) {
+
+                       ptr = mono_metadata_blob_heap (m, cols [4]);
+                       len = mono_metadata_decode_value (ptr, &ptr);
+
+                       if (len == 5 && !memcmp (ptr, sig, len)) {
+                               ctor = MONO_TOKEN_METHOD_DEF | (i + 1);
+                               break;
+                       }
+               } 
+
+       }
+
+       return ctor;
+}
+
+static MonoMethod *
+method_from_memberref (MonoImage *image, guint32 index)
+{
+       MonoImage *mimage;
+       MonoMetadata *m = &image->metadata;
+       MonoTableInfo *tables = m->tables;
+       guint32 cols[6];
+       guint32 nindex, class, i;
+       const char *mname, *name, *nspace;
+       MonoMethodSignature *sig, *msig;
+       const char *ptr;
+
+       mono_metadata_decode_row (&tables [MONO_TABLE_MEMBERREF], index-1, cols, 3);
+       nindex = cols [MONO_MEMBERREF_CLASS] >> MEMBERREF_PARENT_BITS;
+       class = cols [MONO_MEMBERREF_CLASS] & MEMBERREF_PARENT_MASK;
        /*g_print ("methodref: 0x%x 0x%x %s\n", class, nindex,
-               mono_metadata_string_heap (m, cols [META_MEMBERREF_NAME]));*/
-       sig = mono_metadata_blob_heap (m, cols [META_MEMBERREF_SIGNATURE]);
-       sig_len = mono_metadata_decode_blob_size (sig, &sig);
-       mname = mono_metadata_string_heap (m, cols [META_MEMBERREF_NAME]);
+               mono_metadata_string_heap (m, cols [MONO_MEMBERREF_NAME]));*/
+
+       mname = mono_metadata_string_heap (m, cols [MONO_MEMBERREF_NAME]);
+       
+       ptr = mono_metadata_blob_heap (m, cols [MONO_MEMBERREF_SIGNATURE]);
+       mono_metadata_decode_blob_size (ptr, &ptr);
+       sig = mono_metadata_parse_method_signature (m, 0, ptr, NULL);
 
        switch (class) {
        case MEMBERREF_PARENT_TYPEREF: {
                guint32 scopeindex, scopetable;
 
-               mono_metadata_decode_row (&tables [META_TABLE_TYPEREF], nindex-1, cols, META_TYPEREF_SIZE);
-               scopeindex = cols [META_TYPEREF_SCOPE] >> RESOLTION_SCOPE_BITS;
-               scopetable = cols [META_TYPEREF_SCOPE] & RESOLTION_SCOPE_MASK;
+               mono_metadata_decode_row (&tables [MONO_TABLE_TYPEREF], nindex-1, cols, MONO_TYPEREF_SIZE);
+               scopeindex = cols [MONO_TYPEREF_SCOPE] >> RESOLTION_SCOPE_BITS;
+               scopetable = cols [MONO_TYPEREF_SCOPE] & RESOLTION_SCOPE_MASK;
                /*g_print ("typeref: 0x%x 0x%x %s.%s\n", scopetable, scopeindex,
-                       mono_metadata_string_heap (m, cols [META_TYPEREF_NAMESPACE]),
-                       mono_metadata_string_heap (m, cols [META_TYPEREF_NAME]));*/
+                       mono_metadata_string_heap (m, cols [MONO_TYPEREF_NAMESPACE]),
+                       mono_metadata_string_heap (m, cols [MONO_TYPEREF_NAME]));*/
                switch (scopetable) {
                case RESOLTION_SCOPE_ASSEMBLYREF:
                        /*
@@ -82,27 +243,37 @@ methoddef_from_memberref (MonoImage *image, guint32 index, MonoImage **rimage, g
                         * *) name and namespace of the class from the TYPEREF table
                         * *) name and signature of the method from the MEMBERREF table
                         */
-                       nspace = mono_metadata_string_heap (m, cols [META_TYPEREF_NAMESPACE]);
-                       name = mono_metadata_string_heap (m, cols [META_TYPEREF_NAME]);
-                       
-                       image = image->references [scopeindex-1]->image;
-                       m = &image->metadata;
-                       tables = &m->tables [META_TABLE_METHOD];
-                       typedef_from_name (image, name, nspace, &i);
+                       nspace = mono_metadata_string_heap (m, cols [MONO_TYPEREF_NAMESPACE]);
+                       name = mono_metadata_string_heap (m, cols [MONO_TYPEREF_NAME]);
+
+                       /* this will triggered by references to mscorlib */
+                       g_assert (image->references [scopeindex-1] != NULL);
+
+                       mimage = image->references [scopeindex-1]->image;
+
+                       m = &mimage->metadata;
+                       tables = &m->tables [MONO_TABLE_METHOD];
+                       mono_typedef_from_name (mimage, name, nspace, &i);
                        /* mostly dumb search for now */
-                       for (;i < tables->rows; ++i) {
-                               mono_metadata_decode_row (tables, i, cols, META_METHOD_SIZE);
-                               msig = mono_metadata_blob_heap (m, cols [META_METHOD_SIGNATURE]);
-                               msig_len = mono_metadata_decode_blob_size (msig, &msig);
-                               
-                               if (strcmp (mname, mono_metadata_string_heap (m, cols [META_METHOD_NAME])) == 0 
-                                               && sig_len == msig_len
-                                               && strncmp (sig, msig, sig_len) == 0) {
-                                       *rimage = image;
-                                       *rindex = i + 1;
-                                       return;
+                       for (i--; i < tables->rows; ++i) {
+
+                               mono_metadata_decode_row (tables, i, cols, MONO_METHOD_SIZE);
+
+                               if (!strcmp (mname, mono_metadata_string_heap (m, cols [MONO_METHOD_NAME]))) {
+                                       
+                                       ptr = mono_metadata_blob_heap (m, cols [MONO_METHOD_SIGNATURE]);
+                                       mono_metadata_decode_blob_size (ptr, &ptr);
+                                       msig = mono_metadata_parse_method_signature (m, 1, ptr, NULL);
+
+                                       if (mono_metadata_signature_equal (&image->metadata, sig, 
+                                                                          &mimage->metadata, msig)) {
+                                               mono_metadata_free_method_signature (sig);
+                                               mono_metadata_free_method_signature (msig);
+                                               return mono_get_method (mimage, MONO_TOKEN_METHOD_DEF | (i + 1));
+                                       }
                                }
                        }
+                       g_warning ("cant find method %s.%s::%s",nspace, name, mname);
                        g_assert_not_reached ();
                        break;
                default:
@@ -110,9 +281,62 @@ methoddef_from_memberref (MonoImage *image, guint32 index, MonoImage **rimage, g
                }
                break;
        }
+       case MEMBERREF_PARENT_TYPESPEC: {
+               guint32 bcols [MONO_TYPESPEC_SIZE];
+               guint32 len;
+               MonoType *type;
+               MonoMethod *result;
+
+               mono_metadata_decode_row (&tables [MONO_TABLE_TYPESPEC], nindex - 1, 
+                                         bcols, MONO_TYPESPEC_SIZE);
+               ptr = mono_metadata_blob_heap (m, bcols [MONO_TYPESPEC_SIGNATURE]);
+               len = mono_metadata_decode_value (ptr, &ptr);   
+               type = mono_metadata_parse_type (m, ptr, &ptr);
+
+               if (type->type != MONO_TYPE_ARRAY)
+                       g_assert_not_reached ();                
+
+               result = (MonoMethod *)g_new0 (MonoMethod, 1);
+               result->image = image;
+               result->iflags = METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL;
+               result->signature = sig;
+               
+               if (!strcmp (mname, ".ctor")) { 
+                       g_assert (sig->hasthis);
+                       if (type->data.array->rank == sig->param_count) {
+                               result->addr = mono_lookup_internal_call ("__array_ctor");
+                               return result;
+                       } else if ((type->data.array->rank * 2) == sig->param_count) {
+                               result->addr = mono_lookup_internal_call ("__array_bound_ctor");
+                               return result;                  
+                       } else 
+                               g_assert_not_reached ();
+               }
+
+               if (!strcmp (mname, "Set")) {
+                       g_assert (sig->hasthis);
+                       g_assert (type->data.array->rank + 1 == sig->param_count);
+
+                       result->addr = mono_lookup_internal_call ("__array_Set");
+                       return result;
+               }
+
+               if (!strcmp (mname, "Get")) {
+                       g_assert (sig->hasthis);
+                       g_assert (type->data.array->rank == sig->param_count);
+
+                       result->addr = mono_lookup_internal_call ("__array_Get");
+                       return result;
+               }
+
+               g_assert_not_reached ();
+               break;
+       }
        default:
                g_assert_not_reached ();
        }
+
+       return NULL;
 }
 
 static ffi_type *
@@ -120,39 +344,39 @@ ves_map_ffi_type (MonoType *type)
 {
        ffi_type *rettype;
 
-       if (!type)
-               return &ffi_type_void;
-
        switch (type->type) {
-       case ELEMENT_TYPE_I1:
+       case MONO_TYPE_I1:
                rettype = &ffi_type_sint8;
                break;
-       case ELEMENT_TYPE_BOOLEAN:
-       case ELEMENT_TYPE_U1:
+       case MONO_TYPE_BOOLEAN:
+       case MONO_TYPE_U1:
                rettype = &ffi_type_uint8;
                break;
-       case ELEMENT_TYPE_I2:
+       case MONO_TYPE_I2:
                rettype = &ffi_type_sint16;
                break;
-       case ELEMENT_TYPE_U2:
-       case ELEMENT_TYPE_CHAR:
+       case MONO_TYPE_U2:
+       case MONO_TYPE_CHAR:
                rettype = &ffi_type_uint16;
                break;
-       case ELEMENT_TYPE_I4:
+       case MONO_TYPE_I4:
                rettype = &ffi_type_sint32;
                break;
-       case ELEMENT_TYPE_U4:
+       case MONO_TYPE_U4:
                rettype = &ffi_type_sint32;
                break;
-       case ELEMENT_TYPE_R4:
+       case MONO_TYPE_R4:
                rettype = &ffi_type_float;
                break;
-       case ELEMENT_TYPE_R8:
+       case MONO_TYPE_R8:
                rettype = &ffi_type_double;
                break;
-       case ELEMENT_TYPE_STRING:
+       case MONO_TYPE_STRING:
                rettype = &ffi_type_pointer;
                break;
+       case MONO_TYPE_VOID:
+               rettype = &ffi_type_void;
+               break;
        default:
                g_warning ("not implemented");
                g_assert_not_reached ();
@@ -162,17 +386,17 @@ ves_map_ffi_type (MonoType *type)
 }
 
 static void
-fill_pinvoke_info (MonoImage *image, MonoMethodPInvoke *piinfo, int index, 
-                  guint16 iflags)
+fill_pinvoke_info (MonoImage *image, MonoMethodPInvoke *piinfo, int index)
 {
        MonoMethod *mh = &piinfo->method;
-       metadata_tableinfo_t *tables = image->metadata.tables;
-       metadata_tableinfo_t *im = &tables [META_TABLE_IMPLMAP];
-       metadata_tableinfo_t *mr = &tables [META_TABLE_MODULEREF];
+       MonoTableInfo *tables = image->metadata.tables;
+       MonoTableInfo *im = &tables [MONO_TABLE_IMPLMAP];
+       MonoTableInfo *mr = &tables [MONO_TABLE_MODULEREF];
        guint32 im_cols [4];
        guint32 mr_cols [1];
        const char *import = NULL;
        const char *scope = NULL;
+       char *full_name;
        GModule *gmodule;
        ffi_type **args, *rettype;
        int i, acount;
@@ -196,19 +420,19 @@ fill_pinvoke_info (MonoImage *image, MonoMethodPInvoke *piinfo, int index,
 
        g_assert (import && scope);
 
-       if (!strcmp (scope, "cygwin1.dll"))
-               scope = "libc.so.6";
-
-       gmodule = g_module_open (scope, G_MODULE_BIND_LAZY);
+       scope = mono_map_dll (scope);
+       full_name = g_module_build_path (NULL, scope);
+       gmodule = g_module_open (full_name, G_MODULE_BIND_LAZY);
+       g_free (full_name);
 
        g_assert (gmodule);
 
        piinfo->cif = g_new (ffi_cif , 1);
-       piinfo->iflags = iflags;
-       
-       g_module_symbol (gmodule, import, &piinfo->addr); 
-                       
-       g_assert (piinfo->addr);
+       piinfo->piflags = im_cols [0];
+
+       g_module_symbol (gmodule, import, &mh->addr); 
+
+       g_assert (mh->addr);
 
        acount = mh->signature->param_count;
 
@@ -218,7 +442,7 @@ fill_pinvoke_info (MonoImage *image, MonoMethodPInvoke *piinfo, int index,
                args[i] = ves_map_ffi_type (mh->signature->params [i]->type);
 
        rettype = ves_map_ffi_type (mh->signature->ret->type);
-
+       
        if (!ffi_prep_cif (piinfo->cif, FFI_DEFAULT_ABI, acount, rettype, 
                           args) == FFI_OK) {
                g_warning ("prepare pinvoke failed");
@@ -230,50 +454,79 @@ MonoMethod *
 mono_get_method (MonoImage *image, guint32 token)
 {
        MonoMethod *result;
+       MonoMetadata *m = &image->metadata;
        int table = mono_metadata_token_table (token);
        int index = mono_metadata_token_index (token);
-       metadata_tableinfo_t *tables = image->metadata.tables;
-       const char *loc;
-       const char *sig = NULL;
+       MonoTableInfo *tables = m->tables;
+       const char *loc, *sig = NULL;
+       char *name;
        int size;
-       guint32 cols[6];
+       guint32 cols[MONO_TYPEDEF_SIZE];
 
-       if (table == META_TABLE_METHOD && (result = g_hash_table_lookup (image->method_cache, GINT_TO_POINTER (token))))
+       if (table == MONO_TABLE_METHOD && (result = g_hash_table_lookup (image->method_cache, GINT_TO_POINTER (token))))
                        return result;
-       
-       if (table != META_TABLE_METHOD) {
-               g_assert (table == META_TABLE_MEMBERREF);
-               methoddef_from_memberref (image, index, &image, &token);
-               return mono_get_method (image, TOKEN_TYPE_METHOD_DEF | token);
+
+       if (table != MONO_TABLE_METHOD) {
+               g_assert (table == MONO_TABLE_MEMBERREF);
+               return method_from_memberref (image, index);
        }
 
-       
        mono_metadata_decode_row (&tables [table], index - 1, cols, 6);
 
-       if (cols [2] & METHOD_ATTRIBUTE_PINVOKE_IMPL)
+       if (cols [1] & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) {
+               MonoTableInfo *t = &m->tables [MONO_TABLE_TYPEDEF];
+               MonoAssembly *corlib;
+               guint32 tdef;
+               guint32 tdcols [MONO_TYPEDEF_SIZE];
+
+               tdef = mono_metadata_typedef_from_method (m, index - 1) - 1;
+
+               mono_metadata_decode_row (t, tdef, tdcols, MONO_TYPEDEF_SIZE);
+
+               name = g_strconcat (mono_metadata_string_heap (m, tdcols [MONO_TYPEDEF_NAMESPACE]), ".",
+                                   mono_metadata_string_heap (m, tdcols [MONO_TYPEDEF_NAME]), "::", 
+                                   mono_metadata_string_heap (m, cols [MONO_METHOD_NAME]), NULL);
+
+               corlib = mono_assembly_open (CORLIB_NAME, NULL, NULL);
+
+               /* all internal calls must be inside corlib */
+               g_assert (corlib->image == image);
+
+               result = (MonoMethod *)g_new0 (MonoMethod, 1);
+
+               result->addr = mono_lookup_internal_call (name);
+
+               g_free (name);
+
+               g_assert (result->addr != NULL);
+
+       } else if (cols [2] & METHOD_ATTRIBUTE_PINVOKE_IMPL) {
+
                result = (MonoMethod *)g_new0 (MonoMethodPInvoke, 1);
-       else
-               result = (MonoMethod *)g_new0 (MonoMethodManaged, 1);
+       } else {
+
+               result = (MonoMethod *)g_new0 (MonoMethodNormal, 1);
+       }
 
        result->image = image;
        result->flags = cols [2];
-       result->name = mono_metadata_string_heap (&image->metadata, cols [3]);
+       result->iflags = cols [1];
+       result->name = mono_metadata_string_heap (m, cols [3]);
 
        if (!sig) /* already taken from the methodref */
-               sig = mono_metadata_blob_heap (&image->metadata, cols [4]);
+               sig = mono_metadata_blob_heap (m, cols [4]);
        size = mono_metadata_decode_blob_size (sig, &sig);
-       result->signature = mono_metadata_parse_method_signature (&image->metadata, 0, sig, NULL);
-
+       result->signature = mono_metadata_parse_method_signature (m, 0, sig, NULL);
 
        if (result->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) {
                fill_pinvoke_info (image, (MonoMethodPInvoke *)result, 
-                                  index, cols [1]);
-       } else {
+                                  index - 1);
+       } else if (!(result->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)) {
                /* if this is a methodref from another module/assembly, this fails */
-               loc = cli_rva_map ((cli_image_info_t *)image->image_info, cols [0]);
+               loc = mono_cli_rva_map ((MonoCLIImageInfo *)image->image_info, cols [0]);
                g_assert (loc);
-               ((MonoMethodManaged *)result)->header = 
-                       mono_metadata_parse_mh (&image->metadata, loc);
+               ((MonoMethodNormal *)result)->header = 
+                       mono_metadata_parse_mh (m, loc);
        }
 
        g_hash_table_insert (image->method_cache, GINT_TO_POINTER (token), result);
@@ -289,9 +542,10 @@ mono_free_method  (MonoMethod *method)
                MonoMethodPInvoke *piinfo = (MonoMethodPInvoke *)method;
                g_free (piinfo->cif->arg_types);
                g_free (piinfo->cif);
-       } else {
-               mono_metadata_free_mh (((MonoMethodManaged *)method)->header);
+       } else if (!(method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)) {
+               mono_metadata_free_mh (((MonoMethodNormal *)method)->header);
        }
 
        g_free (method);
 }
+