Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / metadata / monodiet.c
index 3843254695eb4740a93cae87e2b9e918e39f02fc..931ab9d9afeecf9576d16c3f840fa3cf633bc9d0 100644 (file)
@@ -86,13 +86,16 @@ static void
 add_types_from_method (MonoMethod *method) {
        const MonoOpcode *opcode;
        MonoMethodHeader *header;
-       const unsigned char *ip;
+       const unsigned char *ip, *il_code_end;
        gpointer val = NULL, oldkey = NULL;
        int i, n;
        guint32 token;
        MonoClass *klass;
        MonoClassField *field;
        MonoCustomAttrInfo* cattrs;
+       MonoType** locals;
+       gpointer exc_iter;
+       MonoExceptionClause clause;
 
        if (g_hash_table_lookup_extended (method_table, method, &oldkey, &val))
                return;
@@ -123,19 +126,20 @@ add_types_from_method (MonoMethod *method) {
 
        header = mono_method_get_header (method);
 
-       for (i = 0; i < header->num_locals; ++i) {
-               klass = mono_class_from_mono_type (header->locals [i]);
+       locals = mono_method_header_get_locals (header, &n, NULL);
+       for (i = 0; i < n; ++i) {
+               klass = mono_class_from_mono_type (locals);
                add_type (klass);
        }
-       for (i = 0; i < header->num_clauses; ++i) {
-               MonoExceptionClause *clause = &header->clauses [i];
-               if (clause->flags == MONO_EXCEPTION_CLAUSE_NONE)
-                       add_type (clause->data.catch_class);
+       for (exc_iter = NULL; mono_method_header_get_clauses (header, method, &exc_iter, &clause);) {
+               if (clause.flags == MONO_EXCEPTION_CLAUSE_NONE)
+                       add_type (clause.data.catch_class);
        }
 
-       ip = header->code;
+       ip = mono_method_header_get_code (header, &n, NULL);
+       il_code_end = ip + n;
 
-       while (ip < (header->code + header->code_size)) {
+       while (ip < il_code_end) {
                if (verbose > 2)
                        g_print ("#%s", mono_disasm_code_one (NULL, method, ip, NULL));
                if (*ip == 0xfe) {
@@ -225,6 +229,8 @@ handle_type (MonoClass *klass, guint32 flags)
        gpointer val = NULL, oldkey = NULL;
        MonoProperty* prop;
        MonoEvent* event;
+       MonoMethod* method;
+       MonoClassField* field;
        gpointer iter;
        
        if (g_hash_table_lookup_extended (type_table, klass, &oldkey, &val)) {
@@ -242,18 +248,18 @@ handle_type (MonoClass *klass, guint32 flags)
                add_type (klass->parent);
        if (klass->nested_in)
                add_type (klass->nested_in);
-       mono_class_setup_methods (klass);
-       for (i = 0; i < klass->method.count; ++i) {
-               if ((missing & TYPE_METHODS) || strcmp (klass->methods [i]->name, ".cctor") == 0)
-                       add_types_from_method (klass->methods [i]);
+       iter = NULL;
+       while ((method = mono_class_get_methods (klass, &iter))) {
+               if ((missing & TYPE_METHODS) || strcmp (method->name, ".cctor") == 0)
+                       add_types_from_method (method);
        }
        if (klass->enumtype) {
                add_field (mono_class_get_field_from_name (klass, "value__"));
        }
        if (force_enums || (missing & TYPE_FIELDS)) {
-               for (i = 0; i < klass->field.count; ++i) {
-                       add_field (&klass->fields [i]);
-               }
+               iter = NULL;
+               while ((field = mono_class_get_fields (klass, &iter)))
+                       add_field (field);
        }
        iter = NULL;
        while ((prop = mono_class_get_properties (klass, &iter))) {