2006-09-14 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / metadata.c
index 0666b8abf5d3c9c16f2ff3ff5cc870895b3b4d7e..fc8d5cb09ed3e87e84a37acf570e6e5a85ca7740 100644 (file)
@@ -27,6 +27,7 @@ static gboolean do_mono_metadata_parse_type (MonoType *type, MonoImage *m, MonoG
 
 static gboolean do_mono_metadata_type_equal (MonoType *t1, MonoType *t2, gboolean signature_only);
 static gboolean mono_metadata_class_equal (MonoClass *c1, MonoClass *c2, gboolean signature_only);
+static gboolean mono_metadata_fnptr_equal (MonoMethodSignature *s1, MonoMethodSignature *s2, gboolean signature_only);
 static gboolean _mono_metadata_generic_class_equal (const MonoGenericClass *g1, const MonoGenericClass *g2,
                                                    gboolean signature_only);
 
@@ -1326,6 +1327,20 @@ mono_metadata_init (void)
                g_hash_table_insert (type_cache, (gpointer) &builtin_types [i], (gpointer) &builtin_types [i]);
 }
 
+/**
+ * mono_metadata_cleanup:
+ *
+ * Free all resources used by this module.
+ * This is a Mono runtime internal function.
+ */
+void
+mono_metadata_cleanup (void)
+{
+       g_hash_table_destroy (type_cache);
+       g_hash_table_destroy (generic_inst_cache);
+       g_hash_table_destroy (generic_class_cache);
+}
+
 /**
  * mono_metadata_parse_type:
  * @m: metadata context
@@ -1347,6 +1362,8 @@ mono_metadata_init (void)
  * this MonoGenericContainer.
  * This is a Mono runtime internal function.
  *
+ * LOCKING: Assumes the loader lock is held.
+ *
  * Returns: a #MonoType structure representing the decoded type.
  */
 MonoType*
@@ -1393,7 +1410,7 @@ mono_metadata_parse_type_full (MonoImage *m, MonoGenericContainer *container, Mo
        }
 
        if (count) {
-               type = g_malloc0 (sizeof (MonoType) + ((gint32)count - MONO_ZERO_LEN_ARRAY) * sizeof (MonoCustomMod));
+               type = mono_mempool_alloc0 (m->mempool, sizeof (MonoType) + ((gint32)count - MONO_ZERO_LEN_ARRAY) * sizeof (MonoCustomMod));
                type->num_mods = count;
                if (count > 64)
                        g_warning ("got more than 64 modifiers in type");
@@ -1438,11 +1455,7 @@ mono_metadata_parse_type_full (MonoImage *m, MonoGenericContainer *container, Mo
        if (rptr)
                *rptr = ptr;
 
-       
-       /* FIXME: remove the != MONO_PARSE_PARAM condition, this accounts for
-        * almost 10k (about 2/3rds) of all MonoType's we create.
-        */
-       if (mode != MONO_PARSE_PARAM && !type->num_mods) {
+               if (!type->num_mods) {
                /* no need to free type here, because it is on the stack */
                if ((type->type == MONO_TYPE_CLASS || type->type == MONO_TYPE_VALUETYPE) && !type->pinned && !type->attrs) {
                        MonoType *ret = type->byref ? &type->data.klass->this_arg : &type->data.klass->byval_arg;
@@ -1473,13 +1486,18 @@ mono_metadata_parse_type_full (MonoImage *m, MonoGenericContainer *container, Mo
                        return cached;
        }
        
-       /*printf ("%x%c %s\n", type->attrs, type->pinned ? 'p' : ' ', mono_type_full_name (type));*/
+       /* printf ("%x %x %c %s\n", type->attrs, type->num_mods, type->pinned ? 'p' : ' ', mono_type_full_name (type)); */
        
-       if (type == &stype)
-               type = g_memdup (&stype, sizeof (MonoType));
+       if (type == &stype) {
+               type = mono_mempool_alloc (m->mempool, sizeof (MonoType));
+               memcpy (type, &stype, sizeof (MonoType));
+       }
        return type;
 }
 
+/*
+ * LOCKING: Assumes the loader lock is held.
+ */
 MonoType*
 mono_metadata_parse_type (MonoImage *m, MonoParseTypeMode mode, short opt_attrs,
                          const char *ptr, const char **rptr)
@@ -1487,6 +1505,39 @@ mono_metadata_parse_type (MonoImage *m, MonoParseTypeMode mode, short opt_attrs,
        return mono_metadata_parse_type_full (m, NULL, mode, opt_attrs, ptr, rptr);
 }
 
+/*
+ * mono_metadata_get_param_attrs:
+ *
+ *   Return the parameter attributes for the method whose MethodDef index is DEF. The 
+ * returned memory needs to be freed by the caller. If all the param attributes are
+ * 0, then NULL is returned.
+ */
+int*
+mono_metadata_get_param_attrs (MonoImage *m, int def)
+{
+       MonoTableInfo *paramt = &m->tables [MONO_TABLE_PARAM];
+       MonoTableInfo *methodt = &m->tables [MONO_TABLE_METHOD];
+       guint32 cols [MONO_PARAM_SIZE];
+       guint lastp, i, param_index = mono_metadata_decode_row_col (methodt, def - 1, MONO_METHOD_PARAMLIST);
+       int *pattrs = NULL;
+
+       if (def < methodt->rows)
+               lastp = mono_metadata_decode_row_col (methodt, def, MONO_METHOD_PARAMLIST);
+       else
+               lastp = paramt->rows + 1;
+
+       for (i = param_index; i < lastp; ++i) {
+               mono_metadata_decode_row (paramt, i - 1, cols, MONO_PARAM_SIZE);
+               if (cols [MONO_PARAM_FLAGS]) {
+                       if (!pattrs)
+                               pattrs = g_new0 (int, 1 + (lastp - param_index));
+                       pattrs [cols [MONO_PARAM_SEQUENCE]] = cols [MONO_PARAM_FLAGS];
+               }
+       }
+
+       return pattrs;
+}
+
 /*
  * mono_metadata_parse_signature_full:
  * @image: metadata context
@@ -1495,6 +1546,8 @@ mono_metadata_parse_type (MonoImage *m, MonoParseTypeMode mode, short opt_attrs,
  *
  * Decode a method signature stored in the STANDALONESIG table
  *
+ * LOCKING: Assumes the loader lock is held.
+ *
  * Returns: a MonoMethodSignature describing the signature.
  */
 MonoMethodSignature*
@@ -1515,7 +1568,7 @@ mono_metadata_parse_signature_full (MonoImage *image, MonoGenericContainer *gene
        ptr = mono_metadata_blob_heap (image, sig);
        mono_metadata_decode_blob_size (ptr, &ptr);
 
-       return mono_metadata_parse_method_signature_full (image, generic_container, FALSE, ptr, NULL); 
+       return mono_metadata_parse_method_signature_full (image, generic_container, 0, ptr, NULL); 
 }
 
 /*
@@ -1542,6 +1595,8 @@ mono_metadata_parse_signature (MonoImage *image, guint32 token)
  * The return type and the params types need to be filled later.
  * This is a Mono runtime internal function.
  *
+ * LOCKING: Assumes the loader lock is held.
+ *
  * Returns: the new MonoMethodSignature structure.
  */
 MonoMethodSignature*
@@ -1549,8 +1604,7 @@ mono_metadata_signature_alloc (MonoImage *m, guint32 nparams)
 {
        MonoMethodSignature *sig;
 
-       /* later we want to allocate signatures with mempools */
-       sig = g_malloc0 (sizeof (MonoMethodSignature) + ((gint32)nparams - MONO_ZERO_LEN_ARRAY) * sizeof (MonoType*));
+       sig = mono_mempool_alloc0 (m->mempool, sizeof (MonoMethodSignature) + ((gint32)nparams - MONO_ZERO_LEN_ARRAY) * sizeof (MonoType*));
        sig->param_count = nparams;
        sig->sentinelpos = -1;
 
@@ -1586,6 +1640,8 @@ mono_metadata_signature_dup (MonoMethodSignature *sig)
  * Decode a method signature stored at @ptr.
  * This is a Mono runtime internal function.
  *
+ * LOCKING: Assumes the loader lock is held.
+ *
  * Returns: a MonoMethodSignature describing the signature.
  */
 MonoMethodSignature *
@@ -1610,23 +1666,8 @@ mono_metadata_parse_method_signature_full (MonoImage *m, MonoGenericContainer *c
                gen_param_count = mono_metadata_decode_value (ptr, &ptr);
        param_count = mono_metadata_decode_value (ptr, &ptr);
 
-       if (def) {
-               MonoTableInfo *paramt = &m->tables [MONO_TABLE_PARAM];
-               MonoTableInfo *methodt = &m->tables [MONO_TABLE_METHOD];
-               guint32 cols [MONO_PARAM_SIZE];
-               guint lastp, param_index = mono_metadata_decode_row_col (methodt, def - 1, MONO_METHOD_PARAMLIST);
-
-               if (def < methodt->rows)
-                       lastp = mono_metadata_decode_row_col (methodt, def, MONO_METHOD_PARAMLIST);
-               else
-                       lastp = paramt->rows + 1;
-
-               pattrs = g_new0 (int, 1 + param_count);
-               for (i = param_index; i < lastp; ++i) {
-                       mono_metadata_decode_row (paramt, i - 1, cols, MONO_PARAM_SIZE);
-                       pattrs [cols [MONO_PARAM_SEQUENCE]] = cols [MONO_PARAM_FLAGS];
-               }
-       }
+       if (def)
+               pattrs = mono_metadata_get_param_attrs (m, def);
        method = mono_metadata_signature_alloc (m, param_count);
        method->hasthis = hasthis;
        method->explicit_this = explicit_this;
@@ -1647,6 +1688,8 @@ mono_metadata_parse_method_signature_full (MonoImage *m, MonoGenericContainer *c
                if (*ptr == MONO_TYPE_SENTINEL) {
                        if (method->call_convention != MONO_CALL_VARARG || def)
                                g_error ("found sentinel for methoddef or no vararg method");
+                       if (method->sentinelpos >= 0)
+                               g_error ("found sentinel twice in the same signature");
                        method->sentinelpos = i;
                        ptr++;
                }
@@ -1660,6 +1703,10 @@ mono_metadata_parse_method_signature_full (MonoImage *m, MonoGenericContainer *c
                        is_open = mono_class_is_open_constructed_type (method->params [i]);
        }
 
+       /* The sentinel could be missing if the caller does not pass any additional arguments */
+       if (!def && method->call_convention == MONO_CALL_VARARG && method->sentinelpos < 0)
+               method->sentinelpos = method->param_count;
+
        method->has_type_parameters = is_open;
 
        if (def && (method->call_convention == MONO_CALL_VARARG))
@@ -1686,6 +1733,8 @@ mono_metadata_parse_method_signature_full (MonoImage *m, MonoGenericContainer *c
  * Decode a method signature stored at @ptr.
  * This is a Mono runtime internal function.
  *
+ * LOCKING: Assumes the loader lock is held.
+ *
  * Returns: a MonoMethodSignature describing the signature.
  */
 MonoMethodSignature *
@@ -1712,8 +1761,6 @@ mono_metadata_free_method_signature (MonoMethodSignature *sig)
                if (sig->params [i])
                        mono_metadata_free_type (sig->params [i]);
        }
-
-       g_free (sig);
 }
 
 /*
@@ -1840,7 +1887,7 @@ mono_metadata_parse_generic_inst (MonoImage *m, MonoGenericContainer *container,
        return mono_metadata_lookup_generic_inst (ginst);
 }
 
-static void
+static gboolean
 do_mono_metadata_parse_generic_class (MonoType *type, MonoImage *m, MonoGenericContainer *container,
                                      const char *ptr, const char **rptr)
 {
@@ -1867,6 +1914,8 @@ do_mono_metadata_parse_generic_class (MonoType *type, MonoImage *m, MonoGenericC
        igclass->klass = g_new0 (MonoClass, 1);
 
        gtype = mono_metadata_parse_type (m, MONO_PARSE_TYPE, 0, ptr, &ptr);
+       if (gtype == NULL)
+               return FALSE;
        gclass->container_class = gklass = mono_class_from_mono_type (gtype);
 
        g_assert (gklass->generic_container);
@@ -1879,6 +1928,10 @@ do_mono_metadata_parse_generic_class (MonoType *type, MonoImage *m, MonoGenericC
        if (rptr)
                *rptr = ptr;
 
+       /* If we failed to parse, return, the error has been flagged. */
+       if (gclass->inst == NULL)
+               return FALSE;
+       
        /*
         * We may be called multiple times on different metadata to create the same
         * instantiated type.  This happens for instance if we're part of a method or
@@ -1899,7 +1952,7 @@ do_mono_metadata_parse_generic_class (MonoType *type, MonoImage *m, MonoGenericC
                g_free (gclass);
 
                type->data.generic_class = cached;
-               return;
+               return TRUE;
        } else {
                g_hash_table_insert (generic_class_cache, gclass, gclass);
 
@@ -1908,6 +1961,7 @@ do_mono_metadata_parse_generic_class (MonoType *type, MonoImage *m, MonoGenericC
                        sizeof (MonoGenericContext) +
                        gclass->inst->type_argc * sizeof (MonoType);
        }
+       return TRUE;
 }
 
 /*
@@ -1925,17 +1979,14 @@ select_container (MonoGenericContainer *gc, MonoTypeEnum type)
 
        g_assert (is_var || type == MONO_TYPE_MVAR);
 
-       if (is_var && gc->parent)
-               /*
-                * The current MonoGenericContainer is a generic method -> its `parent'
-                * points to the containing class'es container.
-                */
-               gc = gc->parent;
-
-       /*
-        * Ensure that we have the correct type of GenericContainer.
-        */
-       g_assert (is_var == !gc->is_method);
+       if (is_var) {
+               if (gc->is_method || gc->parent)
+                       /*
+                        * The current MonoGenericContainer is a generic method -> its `parent'
+                        * points to the containing class'es container.
+                        */
+                       return gc->parent;
+       }
 
        return gc;
 }
@@ -1992,6 +2043,7 @@ static gboolean
 do_mono_metadata_parse_type (MonoType *type, MonoImage *m, MonoGenericContainer *container,
                             const char *ptr, const char **rptr)
 {
+       gboolean ok = TRUE;
        type->type = mono_metadata_decode_value (ptr, &ptr);
        
        switch (type->type){
@@ -2047,7 +2099,7 @@ do_mono_metadata_parse_type (MonoType *type, MonoImage *m, MonoGenericContainer
                type->data.generic_param = mono_metadata_parse_generic_param (m, container, type->type, ptr, &ptr);
                break;
        case MONO_TYPE_GENERICINST:
-               do_mono_metadata_parse_generic_class (type, m, container, ptr, &ptr);
+               ok = do_mono_metadata_parse_generic_class (type, m, container, ptr, &ptr);
                break;
        default:
                g_error ("type 0x%02x not handled in do_mono_metadata_parse_type", type->type);
@@ -2055,14 +2107,15 @@ do_mono_metadata_parse_type (MonoType *type, MonoImage *m, MonoGenericContainer
        
        if (rptr)
                *rptr = ptr;
-       return TRUE;
+       return ok;
 }
 
 /*
  * mono_metadata_free_type:
  * @type: type to free
  *
- * Free the memory allocated for type @type.
+ * Free the memory allocated for type @type which is assumed to be created by
+ * mono_metadata_parse_type ().
  */
 void
 mono_metadata_free_type (MonoType *type)
@@ -2091,7 +2144,8 @@ mono_metadata_free_type (MonoType *type)
                mono_metadata_free_array (type->data.array);
                break;
        }
-       g_free (type);
+
+       /* Allocated from a mempool, no need to free it */
 }
 
 #if 0
@@ -2157,7 +2211,7 @@ parse_section_data (MonoImage *m, MonoMethodHeader *mh, const unsigned char *ptr
                        int i;
                        mh->num_clauses = is_fat ? sect_data_len / 24: sect_data_len / 12;
                        /* we could just store a pointer if we don't need to byteswap */
-                       mh->clauses = g_new0 (MonoExceptionClause, mh->num_clauses);
+                       mh->clauses = mono_mempool_alloc0 (m->mempool, sizeof (MonoExceptionClause) * mh->num_clauses);
                        for (i = 0; i < mh->num_clauses; ++i) {
                                MonoExceptionClause *ec = &mh->clauses [i];
                                guint32 tof_value;
@@ -2294,7 +2348,6 @@ mono_metadata_parse_mh_full (MonoImage *m, MonoGenericContainer *container, cons
                        mh->locals [i] = mono_metadata_parse_type_full (
                                m, container, MONO_PARSE_LOCAL, 0, locals_ptr, &locals_ptr);
                        if (!mh->locals [i]) {
-                               g_free (mh);
                                return NULL;
                        }
                }
@@ -2685,6 +2738,8 @@ mono_metadata_typedef_from_method (MonoImage *meta, guint32 index)
  * The array of interfaces that the @index typedef token implements is returned in
  * @interfaces. The number of elemnts in the array is returned in @count.
  *
+ * LOCKING: Assumes the loader lock is held.
+ *
  * Returns: TRUE on success, FALSE on failure.
  */
 gboolean
@@ -2692,7 +2747,7 @@ mono_metadata_interfaces_from_typedef_full (MonoImage *meta, guint32 index, Mono
 {
        MonoTableInfo *tdef = &meta->tables [MONO_TABLE_INTERFACEIMPL];
        locator_t loc;
-       guint32 start, i;
+       guint32 start, pos;
        guint32 cols [MONO_INTERFACEIMPL_SIZE];
        MonoClass **result;
 
@@ -2719,18 +2774,31 @@ mono_metadata_interfaces_from_typedef_full (MonoImage *meta, guint32 index, Mono
                else
                        break;
        }
-       result = NULL;
-       i = 0;
-       while (start < tdef->rows) {
-               mono_metadata_decode_row (tdef, start, cols, MONO_INTERFACEIMPL_SIZE);
+       pos = start;
+       while (pos < tdef->rows) {
+               mono_metadata_decode_row (tdef, pos, cols, MONO_INTERFACEIMPL_SIZE);
                if (cols [MONO_INTERFACEIMPL_CLASS] != loc.idx)
                        break;
-               result = g_renew (MonoClass*, result, i + 1);
-               result [i] = mono_class_get_full (
+               ++pos;
+       }
+
+       result = mono_mempool_alloc0 (meta->mempool, sizeof (MonoClass*) * (pos - start));
+
+       pos = start;
+       while (pos < tdef->rows) {
+               MonoClass *iface;
+               
+               mono_metadata_decode_row (tdef, pos, cols, MONO_INTERFACEIMPL_SIZE);
+               if (cols [MONO_INTERFACEIMPL_CLASS] != loc.idx)
+                       break;
+               iface = mono_class_get_full (
                        meta, mono_metadata_token_from_dor (cols [MONO_INTERFACEIMPL_INTERFACE]), context);
-               *count = ++i;
-               ++start;
+               if (iface == NULL)
+                       return FALSE;
+               result [pos - start] = iface;
+               ++pos;
        }
+       *count = pos - start;
        *interfaces = result;
        return TRUE;
 }
@@ -2741,7 +2809,9 @@ mono_metadata_interfaces_from_typedef (MonoImage *meta, guint32 index, guint *co
        MonoClass **interfaces;
        gboolean rv;
 
+       mono_loader_lock ();
        rv = mono_metadata_interfaces_from_typedef_full (meta, index, &interfaces, count, NULL);
+       mono_loader_unlock ();
        if (rv)
                return interfaces;
        else
@@ -3013,8 +3083,8 @@ mono_type_size (MonoType *t, gint *align)
                MonoClass *container_class;
 
                gclass = mono_get_inflated_generic_class (t->data.generic_class);
-               g_assert (!gclass->generic_class.inst->is_open);
-               g_assert (!gclass->klass->generic_container);
+               // g_assert (!gclass->generic_class.inst->is_open);
+               // g_assert (!gclass->klass->generic_container);
 
                container_class = gclass->generic_class.container_class;
 
@@ -3257,6 +3327,37 @@ mono_metadata_class_equal (MonoClass *c1, MonoClass *c2, gboolean signature_only
        return FALSE;
 }
 
+static gboolean
+mono_metadata_fnptr_equal (MonoMethodSignature *s1, MonoMethodSignature *s2, gboolean signature_only)
+{
+       gpointer iter1 = 0, iter2 = 0;
+
+       if (s1 == s2)
+               return TRUE;
+       if (s1->call_convention != s2->call_convention)
+               return FALSE;
+       if (s1->sentinelpos != s2->sentinelpos)
+               return FALSE;
+       if (s1->hasthis != s2->hasthis)
+               return FALSE;
+       if (s1->explicit_this != s2->explicit_this)
+               return FALSE;
+       if (! do_mono_metadata_type_equal (s1->ret, s2->ret, signature_only))
+               return FALSE;
+       if (s1->param_count != s2->param_count)
+               return FALSE;
+
+       while (TRUE) {
+               MonoType *t1 = mono_signature_get_params (s1, &iter1);
+               MonoType *t2 = mono_signature_get_params (s2, &iter2);
+
+               if (t1 == NULL || t2 == NULL)
+                       return (t1 == t2);
+               if (! do_mono_metadata_type_equal (t1, t2, signature_only))
+                       return FALSE;
+       }
+}
+
 /*
  * mono_metadata_type_equal:
  * @t1: a type
@@ -3310,6 +3411,8 @@ do_mono_metadata_type_equal (MonoType *t1, MonoType *t2, gboolean signature_only
        case MONO_TYPE_MVAR:
                return mono_metadata_generic_param_equal (
                        t1->data.generic_param, t2->data.generic_param, signature_only);
+       case MONO_TYPE_FNPTR:
+               return mono_metadata_fnptr_equal (t1->data.method, t2->data.method, signature_only);
        default:
                g_error ("implement type compare for %0x!", t1->type);
                return FALSE;
@@ -3366,6 +3469,31 @@ mono_metadata_signature_equal (MonoMethodSignature *sig1, MonoMethodSignature *s
        return TRUE;
 }
 
+/**
+ * mono_metadata_type_dup_mp:
+ * @image: image type is defined in
+ * @original: type to duplicate
+ *
+ * Returns: copy of type allocated from mempool.
+ */
+MonoType *
+mono_metadata_type_dup_mp (MonoImage *image, const MonoType *original)
+{
+       MonoType *r = NULL;
+       mono_loader_lock ();
+       r = mono_mempool_alloc0 (image->mempool, sizeof(MonoType));
+       mono_loader_unlock ();
+       *r = *original;
+       /* FIXME: we don't handle these yet because they need to duplicate memory
+        * but the current routines used are not using the mempools
+        */
+       if (original->type == MONO_TYPE_PTR || 
+               original->type == MONO_TYPE_ARRAY || 
+               original->type == MONO_TYPE_FNPTR)
+               g_assert_not_reached ();
+       return r;
+}
+
 guint
 mono_signature_hash (MonoMethodSignature *sig)
 {
@@ -3940,7 +4068,10 @@ handle_enum:
                if (mspec) {
                        switch (mspec->native) {
                        case MONO_NATIVE_BYVALARRAY:
-                               *conv = MONO_MARSHAL_CONV_ARRAY_BYVALARRAY;
+                               if ((type->data.klass->element_class == mono_defaults.char_class) && !unicode)
+                                       *conv = MONO_MARSHAL_CONV_ARRAY_BYVALCHARARRAY;
+                               else
+                                       *conv = MONO_MARSHAL_CONV_ARRAY_BYVALARRAY;
                                return MONO_NATIVE_BYVALARRAY;
                        case MONO_NATIVE_SAFEARRAY:
                                *conv = MONO_MARSHAL_CONV_ARRAY_SAVEARRAY;
@@ -4057,7 +4188,8 @@ mono_class_get_overrides_full (MonoImage *image, guint32 type_token, MonoMethod
        gint32 i, num;
        guint32 cols [MONO_METHODIMPL_SIZE];
        MonoMethod **result;
-
+       gint32 ok = TRUE;
+       
        *overrides = NULL;
        if (num_overrides)
                *num_overrides = 0;
@@ -4092,17 +4224,25 @@ mono_class_get_overrides_full (MonoImage *image, guint32 type_token, MonoMethod
        num = end - start;
        result = g_new (MonoMethod*, num * 2);
        for (i = 0; i < num; ++i) {
+               MonoMethod *method;
+
                mono_metadata_decode_row (tdef, start + i, cols, MONO_METHODIMPL_SIZE);
-               result [i * 2] = method_from_method_def_or_ref (
+               method = method_from_method_def_or_ref (
                        image, cols [MONO_METHODIMPL_DECLARATION], generic_context);
-               result [i * 2 + 1] = method_from_method_def_or_ref (
+               if (method == NULL)
+                       ok = FALSE;
+               result [i * 2] = method;
+               method = method_from_method_def_or_ref (
                        image, cols [MONO_METHODIMPL_BODY], generic_context);
+               if (method == NULL)
+                       ok = FALSE;
+               result [i * 2 + 1] = method;
        }
 
        *overrides = result;
        if (num_overrides)
                *num_overrides = num;
-       return TRUE;
+       return ok;
 }
 
 /**