New test.
[mono.git] / mono / metadata / loader.c
1 /*
2  * loader.c: Image Loader 
3  *
4  * Authors:
5  *   Paolo Molaro (lupus@ximian.com)
6  *   Miguel de Icaza (miguel@ximian.com)
7  *   Patrik Torstensson (patrik.torstensson@labs2.com)
8  *
9  * (C) 2001 Ximian, Inc.
10  * Copyright (C) 2002-2006 Novell, Inc.
11  *
12  * This file is used by the interpreter and the JIT engine to locate
13  * assemblies.  Used to load AssemblyRef and later to resolve various
14  * kinds of `Refs'.
15  *
16  * TODO:
17  *   This should keep track of the assembly versions that we are loading.
18  *
19  */
20 #include <config.h>
21 #include <glib.h>
22 #include <gmodule.h>
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <string.h>
26 #include <mono/metadata/metadata.h>
27 #include <mono/metadata/image.h>
28 #include <mono/metadata/assembly.h>
29 #include <mono/metadata/tokentype.h>
30 #include <mono/metadata/cil-coff.h>
31 #include <mono/metadata/tabledefs.h>
32 #include <mono/metadata/metadata-internals.h>
33 #include <mono/metadata/loader.h>
34 #include <mono/metadata/class-internals.h>
35 #include <mono/metadata/debug-helpers.h>
36 #include <mono/metadata/reflection.h>
37 #include <mono/metadata/profiler.h>
38 #include <mono/utils/mono-logger.h>
39 #include <mono/metadata/exception.h>
40
41 MonoDefaults mono_defaults;
42
43 /*
44  * This lock protects the hash tables inside MonoImage used by the metadata 
45  * loading functions in class.c and loader.c.
46  */
47 static CRITICAL_SECTION loader_mutex;
48
49
50 /*
51  * This TLS variable contains the last type load error encountered by the loader.
52  */
53 guint32 loader_error_thread_id;
54
55 void
56 mono_loader_init ()
57 {
58         InitializeCriticalSection (&loader_mutex);
59
60         loader_error_thread_id = TlsAlloc ();
61 }
62
63 void
64 mono_loader_cleanup (void)
65 {
66         TlsFree (loader_error_thread_id);
67
68         /*DeleteCriticalSection (&loader_mutex);*/
69 }
70
71 /*
72  * Handling of type load errors should be done as follows:
73  *
74  *   If something could not be loaded, the loader should call one of the
75  * mono_loader_set_error_XXX functions ()
76  * with the appropriate arguments, then return NULL to report the failure. The error 
77  * should be propagated until it reaches code which can throw managed exceptions. At that
78  * point, an exception should be thrown based on the information returned by
79  * mono_loader_get_error (). Then the error should be cleared by calling 
80  * mono_loader_clear_error ().
81  */
82
83 static void
84 set_loader_error (MonoLoaderError *error)
85 {
86         TlsSetValue (loader_error_thread_id, error);
87 }
88
89 /**
90  * mono_loader_set_error_assembly_load:
91  *
92  * Set the loader error for this thread. 
93  */
94 void
95 mono_loader_set_error_assembly_load (const char *assembly_name, gboolean ref_only)
96 {
97         MonoLoaderError *error;
98
99         if (mono_loader_get_last_error ()) 
100                 return;
101
102         error = g_new0 (MonoLoaderError, 1);
103         error->kind = MONO_LOADER_ERROR_ASSEMBLY;
104         error->assembly_name = g_strdup (assembly_name);
105         error->ref_only = ref_only;
106
107         /* 
108          * This is not strictly needed, but some (most) of the loader code still
109          * can't deal with load errors, and this message is more helpful than an
110          * assert.
111          */
112         if (ref_only)
113                 g_warning ("Cannot resolve dependency to assembly '%s' because it has not been preloaded. When using the ReflectionOnly APIs, dependent assemblies must be pre-loaded or loaded on demand through the ReflectionOnlyAssemblyResolve event.", assembly_name);
114         else
115                 g_warning ("Could not load file or assembly '%s' or one of its dependencies.", assembly_name);
116
117         set_loader_error (error);
118 }
119
120 /**
121  * mono_loader_set_error_type_load:
122  *
123  * Set the loader error for this thread. 
124  */
125 void
126 mono_loader_set_error_type_load (const char *class_name, const char *assembly_name)
127 {
128         MonoLoaderError *error;
129
130         if (mono_loader_get_last_error ()) 
131                 return;
132
133         error = g_new0 (MonoLoaderError, 1);
134         error->kind = MONO_LOADER_ERROR_TYPE;
135         error->class_name = g_strdup (class_name);
136         error->assembly_name = g_strdup (assembly_name);
137
138         /* 
139          * This is not strictly needed, but some (most) of the loader code still
140          * can't deal with load errors, and this message is more helpful than an
141          * assert.
142          */
143         g_warning ("The class %s could not be loaded, used in %s", class_name, assembly_name);
144
145         set_loader_error (error);
146 }
147
148 /*
149  * mono_loader_set_error_method_load:
150  *
151  *   Set the loader error for this thread. MEMBER_NAME should point to a string
152  * inside metadata.
153  */
154 void
155 mono_loader_set_error_method_load (const char *class_name, const char *member_name)
156 {
157         MonoLoaderError *error;
158
159         /* FIXME: Store the signature as well */
160         if (mono_loader_get_last_error ())
161                 return;
162
163         error = g_new0 (MonoLoaderError, 1);
164         error->kind = MONO_LOADER_ERROR_METHOD;
165         error->class_name = g_strdup (class_name);
166         error->member_name = member_name;
167
168         set_loader_error (error);
169 }
170
171 /*
172  * mono_loader_set_error_field_load:
173  *
174  * Set the loader error for this thread. MEMBER_NAME should point to a string
175  * inside metadata.
176  */
177 void
178 mono_loader_set_error_field_load (MonoClass *klass, const char *member_name)
179 {
180         MonoLoaderError *error;
181
182         /* FIXME: Store the signature as well */
183         if (mono_loader_get_last_error ())
184                 return;
185
186         error = g_new0 (MonoLoaderError, 1);
187         error->kind = MONO_LOADER_ERROR_FIELD;
188         error->klass = klass;
189         error->member_name = member_name;
190
191         set_loader_error (error);
192 }
193
194 /*
195  * mono_loader_get_last_error:
196  *
197  *   Returns information about the last type load exception encountered by the loader, or
198  * NULL. After use, the exception should be cleared by calling mono_loader_clear_error.
199  */
200 MonoLoaderError*
201 mono_loader_get_last_error (void)
202 {
203         return (MonoLoaderError*)TlsGetValue (loader_error_thread_id);
204 }
205
206 /**
207  * mono_loader_clear_error:
208  *
209  * Disposes any loader error messages on this thread
210  */
211 void
212 mono_loader_clear_error (void)
213 {
214         MonoLoaderError *ex = (MonoLoaderError*)TlsGetValue (loader_error_thread_id);
215
216         if (ex) {
217         g_free (ex->class_name);
218         g_free (ex->assembly_name);
219                 g_free (ex);
220         
221                 TlsSetValue (loader_error_thread_id, NULL);
222         }
223 }
224
225 /**
226  * mono_loader_error_prepare_exception:
227  * @error: The MonoLoaderError to turn into an exception
228  *
229  * This turns a MonoLoaderError into an exception that can be thrown
230  * and resets the Mono Loader Error state during this process.
231  *
232  */
233 MonoException *
234 mono_loader_error_prepare_exception (MonoLoaderError *error)
235 {
236         MonoException *ex = NULL;
237
238         switch (error->kind) {
239         case MONO_LOADER_ERROR_TYPE: {
240                 char *cname = g_strdup (error->class_name);
241                 char *aname = g_strdup (error->assembly_name);
242                 MonoString *class_name;
243                 
244                 mono_loader_clear_error ();
245                 
246                 class_name = mono_string_new (mono_domain_get (), cname);
247
248                 ex = mono_get_exception_type_load (class_name, aname);
249                 g_free (cname);
250                 g_free (aname);
251                 break;
252         }
253         case MONO_LOADER_ERROR_METHOD: {
254                 char *cname = g_strdup (error->class_name);
255                 char *aname = g_strdup (error->member_name);
256                 
257                 mono_loader_clear_error ();
258                 ex = mono_get_exception_missing_method (cname, aname);
259                 g_free (cname);
260                 g_free (aname);
261                 break;
262         }
263                 
264         case MONO_LOADER_ERROR_FIELD: {
265                 char *cnspace = g_strdup (*error->klass->name_space ? error->klass->name_space : "");
266                 char *cname = g_strdup (error->klass->name);
267                 char *cmembername = g_strdup (error->member_name);
268                 char *class_name;
269
270                 mono_loader_clear_error ();
271                 class_name = g_strdup_printf ("%s%s%s", cnspace, cnspace ? "." : "", cname);
272                 
273                 ex = mono_get_exception_missing_field (class_name, cmembername);
274                 g_free (class_name);
275                 g_free (cname);
276                 g_free (cmembername);
277                 g_free (cnspace);
278                 break;
279         }
280         
281         case MONO_LOADER_ERROR_ASSEMBLY: {
282                 char *msg;
283
284                 if (error->ref_only)
285                         msg = g_strdup_printf ("Cannot resolve dependency to assembly '%s' because it has not been preloaded. When using the ReflectionOnly APIs, dependent assemblies must be pre-loaded or loaded on demand through the ReflectionOnlyAssemblyResolve event.", error->assembly_name);
286                 else
287                         msg = g_strdup_printf ("Could not load file or assembly '%s' or one of its dependencies.", error->assembly_name);
288
289                 ex = mono_get_exception_file_not_found2 (msg, mono_string_new (mono_domain_get (), error->assembly_name));
290                 mono_loader_clear_error ();
291                 g_free (msg);
292                 break;
293         }
294         
295         default:
296                 g_assert_not_reached ();
297         }
298
299         return ex;
300 }
301
302 static MonoClassField*
303 field_from_memberref (MonoImage *image, guint32 token, MonoClass **retklass,
304                       MonoGenericContext *context)
305 {
306         MonoClass *klass;
307         MonoClassField *field;
308         MonoTableInfo *tables = image->tables;
309         guint32 cols[6];
310         guint32 nindex, class;
311         const char *fname;
312         const char *ptr;
313         guint32 idx = mono_metadata_token_index (token);
314
315         if (image->dynamic) {
316                 MonoClassField *result = mono_lookup_dynamic_token (image, token);
317                 *retklass = result->parent;
318                 return result;
319         }
320
321         mono_metadata_decode_row (&tables [MONO_TABLE_MEMBERREF], idx-1, cols, MONO_MEMBERREF_SIZE);
322         nindex = cols [MONO_MEMBERREF_CLASS] >> MONO_MEMBERREF_PARENT_BITS;
323         class = cols [MONO_MEMBERREF_CLASS] & MONO_MEMBERREF_PARENT_MASK;
324
325         fname = mono_metadata_string_heap (image, cols [MONO_MEMBERREF_NAME]);
326
327         ptr = mono_metadata_blob_heap (image, cols [MONO_MEMBERREF_SIGNATURE]);
328         mono_metadata_decode_blob_size (ptr, &ptr);
329         /* we may want to check the signature here... */
330
331         switch (class) {
332         case MONO_MEMBERREF_PARENT_TYPEREF:
333                 klass = mono_class_from_typeref (image, MONO_TOKEN_TYPE_REF | nindex);
334                 if (!klass) {
335                         char *name = mono_class_name_from_token (image, MONO_TOKEN_TYPE_REF | nindex);
336                         g_warning ("Missing field %s in class %s (typeref index %d)", fname, name, nindex);
337                         g_free (name);
338                         return NULL;
339                 }
340                 mono_class_init (klass);
341                 if (retklass)
342                         *retklass = klass;
343                 field = mono_class_get_field_from_name (klass, fname);
344                 break;
345         case MONO_MEMBERREF_PARENT_TYPESPEC: {
346                 /*guint32 bcols [MONO_TYPESPEC_SIZE];
347                 guint32 len;
348                 MonoType *type;
349
350                 mono_metadata_decode_row (&tables [MONO_TABLE_TYPESPEC], nindex - 1, 
351                                           bcols, MONO_TYPESPEC_SIZE);
352                 ptr = mono_metadata_blob_heap (image, bcols [MONO_TYPESPEC_SIGNATURE]);
353                 len = mono_metadata_decode_value (ptr, &ptr);   
354                 type = mono_metadata_parse_type (image, MONO_PARSE_TYPE, 0, ptr, &ptr);
355
356                 klass = mono_class_from_mono_type (type);
357                 mono_class_init (klass);
358                 g_print ("type in sig: %s\n", klass->name);*/
359                 klass = mono_class_get_full (image, MONO_TOKEN_TYPE_SPEC | nindex, context);
360                 mono_class_init (klass);
361                 if (retklass)
362                         *retklass = klass;
363                 field = mono_class_get_field_from_name (klass, fname);
364                 break;
365         }
366         default:
367                 g_warning ("field load from %x", class);
368                 return NULL;
369         }
370
371         if (!field)
372                 mono_loader_set_error_field_load (klass, fname);
373
374         return field;
375 }
376
377 MonoClassField*
378 mono_field_from_token (MonoImage *image, guint32 token, MonoClass **retklass,
379                        MonoGenericContext *context)
380 {
381         MonoClass *k;
382         guint32 type;
383         MonoClassField *field;
384
385         if (image->dynamic) {
386                 MonoClassField *result = mono_lookup_dynamic_token (image, token);
387                 *retklass = result->parent;
388                 return result;
389         }
390
391         mono_loader_lock ();
392         if ((field = g_hash_table_lookup (image->field_cache, GUINT_TO_POINTER (token)))) {
393                 *retklass = field->parent;
394                 mono_loader_unlock ();
395                 return field;
396         }
397         mono_loader_unlock ();
398
399         if (mono_metadata_token_table (token) == MONO_TABLE_MEMBERREF)
400                 field = field_from_memberref (image, token, retklass, context);
401         else {
402                 type = mono_metadata_typedef_from_field (image, mono_metadata_token_index (token));
403                 if (!type)
404                         return NULL;
405                 k = mono_class_get (image, MONO_TOKEN_TYPE_DEF | type);
406                 mono_class_init (k);
407                 if (!k)
408                         return NULL;
409                 if (retklass)
410                         *retklass = k;
411                 field = mono_class_get_field (k, token);
412         }
413
414         mono_loader_lock ();
415         if (field && !field->parent->generic_class)
416                 g_hash_table_insert (image->field_cache, GUINT_TO_POINTER (token), field);
417         mono_loader_unlock ();
418         return field;
419 }
420
421 static gboolean
422 mono_metadata_signature_vararg_match (MonoMethodSignature *sig1, MonoMethodSignature *sig2)
423 {
424         int i;
425
426         if (sig1->hasthis != sig2->hasthis ||
427             sig1->sentinelpos != sig2->sentinelpos)
428                 return FALSE;
429
430         for (i = 0; i < sig1->sentinelpos; i++) { 
431                 MonoType *p1 = sig1->params[i];
432                 MonoType *p2 = sig2->params[i];
433
434                 /*if (p1->attrs != p2->attrs)
435                         return FALSE;
436                 */
437                 if (!mono_metadata_type_equal (p1, p2))
438                         return FALSE;
439         }
440
441         if (!mono_metadata_type_equal (sig1->ret, sig2->ret))
442                 return FALSE;
443         return TRUE;
444 }
445
446 static MonoMethod *
447 find_method_in_class (MonoClass *in_class, const char *name, const char *qname, const char *fqname,
448                       MonoMethodSignature *sig, MonoClass *from_class)
449 {
450         int i;
451
452         mono_class_setup_methods (in_class);
453         for (i = 0; i < in_class->method.count; ++i) {
454                 MonoMethod *m = in_class->methods [i];
455
456                 if (!((fqname && !strcmp (m->name, fqname)) ||
457                       (qname && !strcmp (m->name, qname)) || !strcmp (m->name, name)))
458                         continue;
459
460                 if (sig->call_convention == MONO_CALL_VARARG) {
461                         if (mono_metadata_signature_vararg_match (sig, mono_method_signature (m)))
462                                 break;
463                 } else {
464                         if (mono_metadata_signature_equal (sig, mono_method_signature (m)))
465                                 break;
466                 }
467         }
468
469         if (i < in_class->method.count) {
470                 mono_class_setup_methods (from_class);
471                 g_assert (from_class->method.count == in_class->method.count);
472                 return from_class->methods [i];
473         }
474         return NULL;
475 }
476
477 static MonoMethod *
478 find_method (MonoClass *in_class, MonoClass *ic, const char* name, MonoMethodSignature *sig, MonoClass *from_class)
479 {
480         int i;
481         char *qname, *fqname, *class_name;
482         gboolean is_interface;
483         MonoMethod *result = NULL;
484
485         is_interface = MONO_CLASS_IS_INTERFACE (in_class);
486
487         if (ic) {
488                 class_name = mono_type_get_name_full (&ic->byval_arg, MONO_TYPE_NAME_FORMAT_IL);
489
490                 qname = g_strconcat (class_name, ".", name, NULL); 
491                 if (ic->name_space && ic->name_space [0])
492                         fqname = g_strconcat (ic->name_space, ".", class_name, ".", name, NULL);
493                 else
494                         fqname = NULL;
495         } else
496                 class_name = qname = fqname = NULL;
497
498         while (in_class) {
499                 g_assert (from_class);
500                 result = find_method_in_class (in_class, name, qname, fqname, sig, from_class);
501                 if (result)
502                         goto out;
503
504                 if (name [0] == '.' && (!strcmp (name, ".ctor") || !strcmp (name, ".cctor")))
505                         break;
506
507                 g_assert (from_class->interface_count == in_class->interface_count);
508                 for (i = 0; i < in_class->interface_count; i++) {
509                         MonoClass *ic = in_class->interfaces [i];
510                         MonoClass *from_ic = from_class->interfaces [i];
511
512                         result = find_method_in_class (ic, name, qname, fqname, sig, from_ic);
513                         if (result)
514                                 goto out;
515                 }
516
517                 in_class = in_class->parent;
518                 from_class = from_class->parent;
519         }
520         g_assert (!in_class == !from_class);
521
522         if (is_interface)
523                 result = find_method_in_class (mono_defaults.object_class, name, qname, fqname, sig, mono_defaults.object_class);
524
525  out:
526         g_free (class_name);
527         g_free (fqname);
528         g_free (qname);
529         return result;
530 }
531
532 static MonoMethodSignature*
533 inflate_generic_signature (MonoImage *image, MonoMethodSignature *sig, MonoGenericContext *context)
534 {
535         MonoMethodSignature *res;
536         gboolean is_open;
537         int i;
538
539         if (!context)
540                 return sig;
541
542         res = mono_metadata_signature_alloc (image, sig->param_count);
543         res->ret = mono_class_inflate_generic_type (sig->ret, context);
544         is_open = mono_class_is_open_constructed_type (res->ret);
545         for (i = 0; i < sig->param_count; ++i) {
546                 res->params [i] = mono_class_inflate_generic_type (sig->params [i], context);
547                 if (!is_open)
548                         is_open = mono_class_is_open_constructed_type (res->params [i]);
549         }
550         res->hasthis = sig->hasthis;
551         res->explicit_this = sig->explicit_this;
552         res->call_convention = sig->call_convention;
553         res->pinvoke = sig->pinvoke;
554         res->generic_param_count = sig->generic_param_count;
555         res->sentinelpos = sig->sentinelpos;
556         res->has_type_parameters = is_open;
557         res->is_inflated = 1;
558         return res;
559 }
560
561 static MonoMethodHeader*
562 inflate_generic_header (MonoMethodHeader *header, MonoGenericContext *context)
563 {
564         MonoMethodHeader *res;
565         int i;
566         res = g_malloc0 (sizeof (MonoMethodHeader) + sizeof (gpointer) * header->num_locals);
567         res->code = header->code;
568         res->code_size = header->code_size;
569         res->max_stack = header->max_stack;
570         res->num_clauses = header->num_clauses;
571         res->init_locals = header->init_locals;
572         res->num_locals = header->num_locals;
573         res->clauses = header->clauses;
574         for (i = 0; i < header->num_locals; ++i)
575                 res->locals [i] = mono_class_inflate_generic_type (header->locals [i], context);
576         return res;
577 }
578
579 /*
580  * token is the method_ref or method_def token used in a call IL instruction.
581  */
582 MonoMethodSignature*
583 mono_method_get_signature_full (MonoMethod *method, MonoImage *image, guint32 token, MonoGenericContext *context)
584 {
585         int table = mono_metadata_token_table (token);
586         int idx = mono_metadata_token_index (token);
587         guint32 cols [MONO_MEMBERREF_SIZE];
588         MonoMethodSignature *sig, *prev_sig;
589         const char *ptr;
590
591         /* !table is for wrappers: we should really assign their own token to them */
592         if (!table || table == MONO_TABLE_METHOD)
593                 return mono_method_signature (method);
594
595         if (table == MONO_TABLE_METHODSPEC) {
596                 g_assert (!(method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) &&
597                           !(method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) &&
598                           mono_method_signature (method));
599                 g_assert (method->is_inflated);
600
601                 return mono_method_signature (method);
602         }
603
604         if (method->klass->generic_class)
605                 return mono_method_signature (method);
606
607         if (image->dynamic)
608                 /* FIXME: This might be incorrect for vararg methods */
609                 return mono_method_signature (method);
610
611         mono_loader_lock ();
612         sig = g_hash_table_lookup (image->memberref_signatures, GUINT_TO_POINTER (token));
613         mono_loader_unlock ();
614         if (!sig) {
615                 mono_metadata_decode_row (&image->tables [MONO_TABLE_MEMBERREF], idx-1, cols, MONO_MEMBERREF_SIZE);
616
617                 ptr = mono_metadata_blob_heap (image, cols [MONO_MEMBERREF_SIGNATURE]);
618                 mono_metadata_decode_blob_size (ptr, &ptr);
619                 sig = mono_metadata_parse_method_signature_full (
620                         image, context ? context->container : NULL, 0, ptr, NULL);
621
622                 mono_loader_lock ();
623                 prev_sig = g_hash_table_lookup (image->memberref_signatures, GUINT_TO_POINTER (token));
624                 if (prev_sig) {
625                         /* Somebody got in before us */
626                         /* FIXME: Free sig */
627                         sig = prev_sig;
628                 }
629                 else
630                         g_hash_table_insert (image->memberref_signatures, GUINT_TO_POINTER (token), sig);
631                 mono_loader_unlock ();
632         }
633
634         sig = inflate_generic_signature (image, sig, context);
635
636         return sig;
637 }
638
639 MonoMethodSignature*
640 mono_method_get_signature (MonoMethod *method, MonoImage *image, guint32 token)
641 {
642         return mono_method_get_signature_full (method, image, token, NULL);
643 }
644
645 static MonoMethod *
646 method_from_memberref (MonoImage *image, guint32 idx, MonoGenericContext *typespec_context)
647 {
648         MonoClass *klass = NULL;
649         MonoMethod *method = NULL;
650         MonoTableInfo *tables = image->tables;
651         guint32 cols[6];
652         guint32 nindex, class;
653         const char *mname;
654         MonoMethodSignature *sig;
655         const char *ptr;
656
657         mono_metadata_decode_row (&tables [MONO_TABLE_MEMBERREF], idx-1, cols, 3);
658         nindex = cols [MONO_MEMBERREF_CLASS] >> MONO_MEMBERREF_PARENT_BITS;
659         class = cols [MONO_MEMBERREF_CLASS] & MONO_MEMBERREF_PARENT_MASK;
660         /*g_print ("methodref: 0x%x 0x%x %s\n", class, nindex,
661                 mono_metadata_string_heap (m, cols [MONO_MEMBERREF_NAME]));*/
662
663         mname = mono_metadata_string_heap (image, cols [MONO_MEMBERREF_NAME]);
664
665         switch (class) {
666         case MONO_MEMBERREF_PARENT_TYPEREF:
667                 klass = mono_class_from_typeref (image, MONO_TOKEN_TYPE_REF | nindex);
668                 if (!klass) {
669                         char *name = mono_class_name_from_token (image, MONO_TOKEN_TYPE_REF | nindex);
670                         g_warning ("Missing method %s in assembly %s, type %s", mname, image->name, name);
671                         mono_loader_set_error_method_load (name, mname);
672                         g_free (name);
673                         return NULL;
674                 }
675                 break;
676         case MONO_MEMBERREF_PARENT_TYPESPEC:
677                 /*
678                  * Parse the TYPESPEC in the parent's context.
679                  */
680                 klass = mono_class_get_full (image, MONO_TOKEN_TYPE_SPEC | nindex, typespec_context);
681                 if (!klass) {
682                         char *name = mono_class_name_from_token (image, MONO_TOKEN_TYPE_SPEC | nindex);
683                         g_warning ("Missing method %s in assembly %s, type %s", mname, image->name, name);
684                         mono_loader_set_error_method_load (name, mname);
685                         g_free (name);
686                         return NULL;
687                 }
688                 break;
689         case MONO_MEMBERREF_PARENT_TYPEDEF:
690                 klass = mono_class_get (image, MONO_TOKEN_TYPE_DEF | nindex);
691                 if (!klass) {
692                         char *name = mono_class_name_from_token (image, MONO_TOKEN_TYPE_DEF | nindex);
693                         g_warning ("Missing method %s in assembly %s, type %s", mname, image->name, name);
694                         mono_loader_set_error_method_load (name, mname);
695                         g_free (name);
696                         return NULL;
697                 }
698                 break;
699         case MONO_MEMBERREF_PARENT_METHODDEF:
700                 return mono_get_method (image, MONO_TOKEN_METHOD_DEF | nindex, NULL);
701                 
702         default:
703                 {
704                         /* This message leaks */
705                         char *message = g_strdup_printf ("Memberref parent unknown: class: %d, index %d", class, nindex);
706                         mono_loader_set_error_method_load ("", message);
707                         return NULL;
708                 }
709
710         }
711         g_assert (klass);
712         mono_class_init (klass);
713
714         ptr = mono_metadata_blob_heap (image, cols [MONO_MEMBERREF_SIGNATURE]);
715         mono_metadata_decode_blob_size (ptr, &ptr);
716
717         sig = mono_metadata_parse_method_signature (image, 0, ptr, NULL);
718         if (sig == NULL)
719                 return NULL;
720
721         switch (class) {
722         case MONO_MEMBERREF_PARENT_TYPEREF:
723         case MONO_MEMBERREF_PARENT_TYPEDEF:
724                 method = find_method (klass, NULL, mname, sig, klass);
725                 break;
726
727         case MONO_MEMBERREF_PARENT_TYPESPEC: {
728                 MonoType *type;
729                 MonoMethod *result;
730
731                 type = &klass->byval_arg;
732
733                 if (type->type != MONO_TYPE_ARRAY && type->type != MONO_TYPE_SZARRAY) {
734                         MonoClass *in_class = klass->generic_class ? klass->generic_class->container_class : klass;
735                         method = find_method (in_class, NULL, mname, sig, klass);
736                         break;
737                 }
738
739                 result = (MonoMethod *)g_new0 (MonoMethodPInvoke, 1);
740                 result->klass = klass;
741                 result->iflags = METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL;
742                 result->flags = METHOD_ATTRIBUTE_PUBLIC;
743                 result->signature = sig;
744                 result->name = mname;
745
746                 if (!strcmp (mname, ".ctor")) {
747                         /* we special-case this in the runtime. */
748                         return result;
749                 }
750
751                 if (!strcmp (mname, "Set")) {
752                         g_assert (sig->hasthis);
753                         g_assert (type->data.array->rank + 1 == sig->param_count);
754                         result->iflags |= METHOD_IMPL_ATTRIBUTE_RUNTIME;
755                         return result;
756                 }
757
758                 if (!strcmp (mname, "Get")) {
759                         g_assert (sig->hasthis);
760                         g_assert (type->data.array->rank == sig->param_count);
761                         result->iflags |= METHOD_IMPL_ATTRIBUTE_RUNTIME;
762                         return result;
763                 }
764
765                 if (!strcmp (mname, "Address")) {
766                         g_assert (sig->hasthis);
767                         g_assert (type->data.array->rank == sig->param_count);
768                         result->iflags |= METHOD_IMPL_ATTRIBUTE_RUNTIME;
769                         return result;
770                 }
771
772                 g_assert_not_reached ();
773                 break;
774         }
775         default:
776                 g_error ("Memberref parent unknown: class: %d, index %d", class, nindex);
777                 g_assert_not_reached ();
778         }
779
780         if (!method) {
781                 char *msig = mono_signature_get_desc (sig, FALSE);
782                 char * class_name = mono_type_get_name (&klass->byval_arg);
783                 GString *s = g_string_new (mname);
784                 if (sig->generic_param_count)
785                         g_string_append_printf (s, "<[%d]>", sig->generic_param_count);
786                 g_string_append_printf (s, "(%s)", msig);
787                 g_free (msig);
788                 msig = g_string_free (s, FALSE);
789
790                 g_warning (
791                         "Missing method %s::%s in assembly %s, referenced in assembly %s",
792                         class_name, msig, klass->image->name, image->name);
793                 mono_loader_set_error_method_load (class_name, mname);
794                 g_free (msig);
795                 g_free (class_name);
796         }
797         mono_metadata_free_method_signature (sig);
798
799         return method;
800 }
801
802 static MonoMethod *
803 method_from_methodspec (MonoImage *image, MonoGenericContext *context, guint32 idx)
804 {
805         MonoMethod *method, *inflated;
806         MonoTableInfo *tables = image->tables;
807         MonoGenericContext *new_context = NULL;
808         MonoGenericMethod *gmethod;
809         MonoGenericContainer *container = NULL;
810         const char *ptr;
811         guint32 cols [MONO_METHODSPEC_SIZE];
812         guint32 token, nindex, param_count;
813
814         mono_metadata_decode_row (&tables [MONO_TABLE_METHODSPEC], idx - 1, cols, MONO_METHODSPEC_SIZE);
815         token = cols [MONO_METHODSPEC_METHOD];
816         nindex = token >> MONO_METHODDEFORREF_BITS;
817
818         ptr = mono_metadata_blob_heap (image, cols [MONO_METHODSPEC_SIGNATURE]);
819
820         mono_metadata_decode_value (ptr, &ptr);
821         ptr++;
822         param_count = mono_metadata_decode_value (ptr, &ptr);
823         g_assert (param_count);
824
825         /*
826          * Be careful with the two contexts here:
827          *
828          * ----------------------------------------
829          * class Foo<S> {
830          *   static void Hello<T> (S s, T t) { }
831          *
832          *   static void Test<U> (U u) {
833          *     Foo<U>.Hello<string> (u, "World");
834          *   }
835          * }
836          * ----------------------------------------
837          *
838          * Let's assume we're currently JITing Foo<int>.Test<long>
839          * (ie. `S' is instantiated as `int' and `U' is instantiated as `long').
840          *
841          * The call to Hello() is encoded with a MethodSpec with a TypeSpec as parent
842          * (MONO_MEMBERREF_PARENT_TYPESPEC).
843          *
844          * The TypeSpec is encoded as `Foo<!!0>', so we need to parse it in the current
845          * context (S=int, U=long) to get the correct `Foo<long>'.
846          * 
847          * After that, we parse the memberref signature in the new context
848          * (S=int, T=uninstantiated) and get the open generic method `Foo<long>.Hello<T>'.
849          *
850          */
851         if ((token & MONO_METHODDEFORREF_MASK) == MONO_METHODDEFORREF_METHODDEF)
852                 method = mono_get_method_full (image, MONO_TOKEN_METHOD_DEF | nindex, NULL, context);
853         else
854                 method = method_from_memberref (image, nindex, context);
855
856         method = mono_get_inflated_method (method);
857
858         container = method->generic_container;
859         g_assert (container);
860
861         gmethod = g_new0 (MonoGenericMethod, 1);
862         gmethod->generic_class = method->klass->generic_class;
863         gmethod->container = container;
864
865         new_context = g_new0 (MonoGenericContext, 1);
866         new_context->container = container;
867         new_context->gmethod = gmethod;
868         if (container->parent)
869                 new_context->gclass = container->parent->context.gclass;
870
871         /*
872          * When parsing the methodspec signature, we're in the old context again:
873          *
874          * ----------------------------------------
875          * class Foo {
876          *   static void Hello<T> (T t) { }
877          *
878          *   static void Test<U> (U u) {
879          *     Foo.Hello<U> (u);
880          *   }
881          * }
882          * ----------------------------------------
883          *
884          * Let's assume we're currently JITing "Foo.Test<float>".
885          *
886          * In this case, we already parsed the memberref as "Foo.Hello<T>" and the methodspec
887          * signature is "<!!0>".  This means that we must instantiate the method type parameter
888          * `T' from the new method with the method type parameter `U' from the current context;
889          * ie. instantiate the method as `Foo.Hello<float>.
890          */
891
892         gmethod->inst = mono_metadata_parse_generic_inst (image, context ? context->container : NULL, param_count, ptr, &ptr);
893
894         if (context && gmethod->inst->is_open)
895                 gmethod->inst = mono_metadata_inflate_generic_inst (gmethod->inst, context);
896
897         if (!container->method_hash)
898                 container->method_hash = g_hash_table_new (
899                         (GHashFunc)mono_metadata_generic_method_hash, (GEqualFunc)mono_metadata_generic_method_equal);
900
901         inflated = g_hash_table_lookup (container->method_hash, gmethod);
902         if (inflated) {
903                 g_free (gmethod);
904                 g_free (new_context);
905                 return inflated;
906         }
907
908         context = new_context;
909
910         mono_stats.generics_metadata_size += sizeof (MonoGenericMethod) +
911                 sizeof (MonoGenericContext) + param_count * sizeof (MonoType);
912
913         inflated = mono_class_inflate_generic_method_full (method, method->klass, new_context);
914         g_hash_table_insert (container->method_hash, gmethod, inflated);
915
916         return inflated;
917 }
918
919 typedef struct MonoDllMap MonoDllMap;
920
921 struct MonoDllMap {
922         char *name;
923         char *target;
924         char *dll;
925         MonoDllMap *next;
926 };
927
928 static GHashTable *global_dll_map;
929
930 static int 
931 mono_dllmap_lookup_hash (GHashTable *dll_map, const char *dll, const char* func, const char **rdll, const char **rfunc) {
932         MonoDllMap *map, *tmp;
933
934         *rdll = dll;
935
936         if (!dll_map)
937                 return 0;
938
939         mono_loader_lock ();
940
941         map = g_hash_table_lookup (dll_map, dll);
942         if (!map) {
943                 mono_loader_unlock ();
944                 return 0;
945         }
946         *rdll = map->target? map->target: dll;
947
948         for (tmp = map->next; tmp; tmp = tmp->next) {
949                 if (strcmp (func, tmp->name) == 0) {
950                         *rfunc = tmp->name;
951                         if (tmp->dll)
952                                 *rdll = tmp->dll;
953                         mono_loader_unlock ();
954                         return 1;
955                 }
956         }
957         *rfunc = func;
958         mono_loader_unlock ();
959         return 1;
960 }
961
962 static int 
963 mono_dllmap_lookup (MonoImage *assembly, const char *dll, const char* func, const char **rdll, const char **rfunc)
964 {
965         int res;
966         if (assembly && assembly->dll_map) {
967                 res = mono_dllmap_lookup_hash (assembly->dll_map, dll, func, rdll, rfunc);
968                 if (res)
969                         return res;
970         }
971         return mono_dllmap_lookup_hash (global_dll_map, dll, func, rdll, rfunc);
972 }
973
974 void
975 mono_dllmap_insert (MonoImage *assembly, const char *dll, const char *func, const char *tdll, const char *tfunc) {
976         MonoDllMap *map, *entry;
977         GHashTable *dll_map = NULL;
978
979         mono_loader_lock ();
980
981         if (!assembly) {
982                 if (!global_dll_map)
983                         global_dll_map = g_hash_table_new (g_str_hash, g_str_equal);
984                 dll_map = global_dll_map;
985         } else {
986                 if (!assembly->dll_map)
987                         assembly->dll_map = g_hash_table_new (g_str_hash, g_str_equal);
988                 dll_map = assembly->dll_map;
989         }
990
991         map = g_hash_table_lookup (dll_map, dll);
992         if (!map) {
993                 map = g_new0 (MonoDllMap, 1);
994                 map->dll = g_strdup (dll);
995                 if (tdll)
996                         map->target = g_strdup (tdll);
997                 g_hash_table_insert (dll_map, map->dll, map);
998         }
999         if (func) {
1000                 entry = g_new0 (MonoDllMap, 1);
1001                 entry->name = g_strdup (func);
1002                 if (tfunc)
1003                         entry->target = g_strdup (tfunc);
1004                 if (tdll && map->target && strcmp (map->target, tdll))
1005                         entry->dll = g_strdup (tdll);
1006                 entry->next = map->next;
1007                 map->next = entry;
1008         }
1009
1010         mono_loader_unlock ();
1011 }
1012
1013 gpointer
1014 mono_lookup_pinvoke_call (MonoMethod *method, const char **exc_class, const char **exc_arg)
1015 {
1016         MonoImage *image = method->klass->image;
1017         MonoMethodPInvoke *piinfo = (MonoMethodPInvoke *)method;
1018         MonoTableInfo *tables = image->tables;
1019         MonoTableInfo *im = &tables [MONO_TABLE_IMPLMAP];
1020         MonoTableInfo *mr = &tables [MONO_TABLE_MODULEREF];
1021         guint32 im_cols [MONO_IMPLMAP_SIZE];
1022         guint32 scope_token;
1023         const char *import = NULL;
1024         const char *orig_scope;
1025         const char *new_scope;
1026         char *full_name, *file_name;
1027         int i;
1028         GModule *gmodule = NULL;
1029
1030         g_assert (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL);
1031
1032         if (piinfo->addr)
1033                 return piinfo->addr;
1034
1035         if (method->klass->image->dynamic) {
1036                 MonoReflectionMethodAux *method_aux = 
1037                         g_hash_table_lookup (
1038                                 ((MonoDynamicImage*)method->klass->image)->method_aux_hash, method);
1039                 if (!method_aux)
1040                         return NULL;
1041
1042                 import = method_aux->dllentry;
1043                 orig_scope = method_aux->dll;
1044         }
1045         else {
1046                 if (!piinfo->implmap_idx)
1047                         return NULL;
1048
1049                 mono_metadata_decode_row (im, piinfo->implmap_idx - 1, im_cols, MONO_IMPLMAP_SIZE);
1050
1051                 piinfo->piflags = im_cols [MONO_IMPLMAP_FLAGS];
1052                 import = mono_metadata_string_heap (image, im_cols [MONO_IMPLMAP_NAME]);
1053                 scope_token = mono_metadata_decode_row_col (mr, im_cols [MONO_IMPLMAP_SCOPE] - 1, MONO_MODULEREF_NAME);
1054                 orig_scope = mono_metadata_string_heap (image, scope_token);
1055         }
1056
1057         mono_dllmap_lookup (image, orig_scope, import, &new_scope, &import);
1058
1059         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1060                         "DllImport attempting to load: '%s'.", new_scope);
1061
1062         if (exc_class) {
1063                 *exc_class = NULL;
1064                 *exc_arg = NULL;
1065         }
1066
1067         /* we allow a special name to dlopen from the running process namespace */
1068         if (strcmp (new_scope, "__Internal") == 0)
1069                 gmodule = g_module_open (NULL, G_MODULE_BIND_LAZY);
1070
1071         /*
1072          * Try loading the module using a variety of names
1073          */
1074         for (i = 0; i < 4; ++i) {
1075                 switch (i) {
1076                 case 0:
1077                         /* Try the original name */
1078                         file_name = g_strdup (new_scope);
1079                         break;
1080                 case 1:
1081                         /* Try trimming the .dll extension */
1082                         if (strstr (new_scope, ".dll") == (new_scope + strlen (new_scope) - 4)) {
1083                                 file_name = g_strdup (new_scope);
1084                                 file_name [strlen (new_scope) - 4] = '\0';
1085                         }
1086                         else
1087                                 continue;
1088                         break;
1089                 case 2:
1090                         if (strstr (new_scope, "lib") != new_scope) {
1091                                 file_name = g_strdup_printf ("lib%s", new_scope);
1092                         }
1093                         else
1094                                 continue;
1095                         break;
1096                 default:
1097 #ifndef PLATFORM_WIN32
1098                         if (!g_ascii_strcasecmp ("user32.dll", new_scope) ||
1099                             !g_ascii_strcasecmp ("kernel32.dll", new_scope) ||
1100                             !g_ascii_strcasecmp ("user32", new_scope) ||
1101                             !g_ascii_strcasecmp ("kernel", new_scope)) {
1102                                 file_name = g_strdup ("libMonoSupportW.so");
1103                         } else
1104 #endif
1105                                     continue;
1106 #ifndef PLATFORM_WIN32
1107                         break;
1108 #endif
1109                 }
1110
1111                 if (!gmodule) {
1112                         full_name = g_module_build_path (NULL, file_name);
1113                         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1114                                         "DllImport loading location: '%s'.", full_name);
1115                         gmodule = g_module_open (full_name, G_MODULE_BIND_LAZY);
1116                         if (!gmodule) {
1117                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1118                                                 "DllImport error loading library: '%s'.",
1119                                                 g_module_error ());
1120                         }
1121                         g_free (full_name);
1122                 }
1123
1124                 if (!gmodule) {
1125                         full_name = g_module_build_path (".", file_name);
1126                         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1127                                         "DllImport loading library: '%s'.", full_name);
1128                         gmodule = g_module_open (full_name, G_MODULE_BIND_LAZY);
1129                         if (!gmodule) {
1130                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1131                                                 "DllImport error loading library '%s'.",
1132                                                 g_module_error ());
1133                         }
1134                         g_free (full_name);
1135                 }
1136
1137                 if (!gmodule) {
1138                         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1139                                         "DllImport loading: '%s'.", file_name);
1140                         gmodule=g_module_open (file_name, G_MODULE_BIND_LAZY);
1141                         if (!gmodule) {
1142                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1143                                                 "DllImport error loading library '%s'.",
1144                                                 g_module_error ());
1145                         }
1146                 }
1147
1148                 g_free (file_name);
1149
1150                 if (gmodule)
1151                         break;
1152         }
1153
1154         if (!gmodule) {
1155                 mono_trace (G_LOG_LEVEL_WARNING, MONO_TRACE_DLLIMPORT,
1156                                 "DllImport unable to load library '%s'.",
1157                                 g_module_error ());
1158
1159                 if (exc_class) {
1160                         *exc_class = "DllNotFoundException";
1161                         *exc_arg = new_scope;
1162                 }
1163                 return NULL;
1164         }
1165
1166         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1167                                 "Searching for '%s'.", import);
1168
1169         if (piinfo->piflags & PINVOKE_ATTRIBUTE_NO_MANGLE) {
1170                 g_module_symbol (gmodule, import, &piinfo->addr); 
1171         } else {
1172                 char *mangled_name = NULL, *mangled_name2 = NULL;
1173                 int mangle_charset;
1174                 int mangle_stdcall;
1175                 int mangle_param_count;
1176 #ifdef PLATFORM_WIN32
1177                 int param_count;
1178 #endif
1179
1180                 /*
1181                  * Search using a variety of mangled names
1182                  */
1183                 for (mangle_charset = 0; mangle_charset <= 1; mangle_charset ++) {
1184                         for (mangle_stdcall = 0; mangle_stdcall <= 1; mangle_stdcall ++) {
1185                                 gboolean need_param_count = FALSE;
1186 #ifdef PLATFORM_WIN32
1187                                 if (mangle_stdcall > 0)
1188                                         need_param_count = TRUE;
1189 #endif
1190                                 for (mangle_param_count = 0; mangle_param_count <= (need_param_count ? 256 : 0); mangle_param_count += 4) {
1191
1192                                         if (piinfo->addr)
1193                                                 continue;
1194
1195                                         mangled_name = (char*)import;
1196                                         switch (piinfo->piflags & PINVOKE_ATTRIBUTE_CHAR_SET_MASK) {
1197                                         case PINVOKE_ATTRIBUTE_CHAR_SET_UNICODE:
1198                                                 /* Try the mangled name first */
1199                                                 if (mangle_charset == 0)
1200                                                         mangled_name = g_strconcat (import, "W", NULL);
1201                                                 break;
1202                                         case PINVOKE_ATTRIBUTE_CHAR_SET_AUTO:
1203 #ifdef PLATFORM_WIN32
1204                                                 if (mangle_charset == 0)
1205                                                         mangled_name = g_strconcat (import, "W", NULL);
1206 #else
1207                                                 /* Try the mangled name last */
1208                                                 if (mangle_charset == 1)
1209                                                         mangled_name = g_strconcat (import, "A", NULL);
1210 #endif
1211                                                 break;
1212                                         case PINVOKE_ATTRIBUTE_CHAR_SET_ANSI:
1213                                         default:
1214                                                 /* Try the mangled name last */
1215                                                 if (mangle_charset == 1)
1216                                                         mangled_name = g_strconcat (import, "A", NULL);
1217                                                 break;
1218                                         }
1219
1220 #ifdef PLATFORM_WIN32
1221                                         if (mangle_param_count == 0)
1222                                                 param_count = mono_method_signature (method)->param_count * sizeof (gpointer);
1223                                         else
1224                                                 /* Try brute force, since it would be very hard to compute the stack usage correctly */
1225                                                 param_count = mangle_param_count;
1226
1227                                         /* Try the stdcall mangled name */
1228                                         /* 
1229                                          * gcc under windows creates mangled names without the underscore, but MS.NET
1230                                          * doesn't support it, so we doesn't support it either.
1231                                          */
1232                                         if (mangle_stdcall == 1)
1233                                                 mangled_name2 = g_strdup_printf ("_%s@%d", mangled_name, param_count);
1234                                         else
1235                                                 mangled_name2 = mangled_name;
1236 #else
1237                                         mangled_name2 = mangled_name;
1238 #endif
1239
1240                                         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1241                                                                 "Probing '%s'.", mangled_name2);
1242
1243                                         g_module_symbol (gmodule, mangled_name2, &piinfo->addr);
1244
1245                                         if (piinfo->addr)
1246                                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_DLLIMPORT,
1247                                                                         "Found as '%s'.", mangled_name2);
1248
1249                                         if (mangled_name != mangled_name2)
1250                                                 g_free (mangled_name2);
1251                                         if (mangled_name != import)
1252                                                 g_free (mangled_name);
1253                                 }
1254                         }
1255                 }
1256         }
1257
1258         if (!piinfo->addr) {
1259                 if (exc_class) {
1260                         *exc_class = "EntryPointNotFoundException";
1261                         *exc_arg = import;
1262                 }
1263                 return NULL;
1264         }
1265         return piinfo->addr;
1266 }
1267
1268 MonoGenericMethod *
1269 mono_get_shared_generic_method (MonoGenericContainer *container)
1270 {
1271         MonoGenericMethod *gmethod = g_new0 (MonoGenericMethod, 1);
1272         gmethod->container = container;
1273         gmethod->generic_class = container->context.gclass;
1274         gmethod->inst = mono_get_shared_generic_inst (container);
1275
1276         return gmethod;
1277 }
1278
1279 static MonoMethod *
1280 mono_get_method_from_token (MonoImage *image, guint32 token, MonoClass *klass,
1281                             MonoGenericContext *context)
1282 {
1283         MonoMethod *result;
1284         int table = mono_metadata_token_table (token);
1285         int idx = mono_metadata_token_index (token);
1286         MonoTableInfo *tables = image->tables;
1287         MonoGenericContainer *generic_container = NULL, *container = NULL;
1288         const char *sig = NULL;
1289         int size, i;
1290         guint32 cols [MONO_TYPEDEF_SIZE];
1291
1292         if (image->dynamic)
1293                 return mono_lookup_dynamic_token (image, token);
1294
1295         if (table != MONO_TABLE_METHOD) {
1296                 if (table == MONO_TABLE_METHODSPEC)
1297                         return method_from_methodspec (image, context, idx);
1298                 if (table != MONO_TABLE_MEMBERREF)
1299                         g_print("got wrong token: 0x%08x\n", token);
1300                 g_assert (table == MONO_TABLE_MEMBERREF);
1301                 result = method_from_memberref (image, idx, context);
1302
1303                 return result;
1304         }
1305
1306         mono_metadata_decode_row (&tables [table], idx - 1, cols, 6);
1307
1308         if ((cols [2] & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
1309             (cols [1] & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL))
1310                 result = (MonoMethod *)mono_mempool_alloc0 (image->mempool, sizeof (MonoMethodPInvoke));
1311         else
1312                 result = (MonoMethod *)mono_mempool_alloc0 (image->mempool, sizeof (MonoMethodNormal));
1313
1314         mono_stats.method_count ++;
1315
1316         if (!klass) {
1317                 guint32 type = mono_metadata_typedef_from_method (image, token);
1318                 klass = mono_class_get (image, MONO_TOKEN_TYPE_DEF | type);
1319                 if (klass == NULL)
1320                         return NULL;
1321         }
1322
1323         result->slot = -1;
1324         result->klass = klass;
1325         result->flags = cols [2];
1326         result->iflags = cols [1];
1327         result->token = token;
1328         result->name = mono_metadata_string_heap (image, cols [3]);
1329
1330         container = klass->generic_container;
1331         generic_container = mono_metadata_load_generic_params (image, token, container);
1332         if (generic_container) {
1333                 MonoGenericContext *context = &generic_container->context;
1334                 if (container)
1335                         context->gclass = container->context.gclass;
1336                 context->gmethod = mono_get_shared_generic_method (generic_container);
1337                 mono_metadata_load_generic_param_constraints (image, token, generic_container);
1338
1339                 for (i = 0; i < generic_container->type_argc; i++) {
1340                         generic_container->type_params [i].method = result;
1341
1342                         mono_class_from_generic_parameter (
1343                                 &generic_container->type_params [i], image, TRUE);
1344                 }
1345
1346                 container = generic_container;
1347         }
1348
1349         if (!sig) /* already taken from the methodref */
1350                 sig = mono_metadata_blob_heap (image, cols [4]);
1351         size = mono_metadata_decode_blob_size (sig, &sig);
1352
1353         if (cols [1] & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) {
1354                 if (result->klass == mono_defaults.string_class && !strcmp (result->name, ".ctor"))
1355                         result->string_ctor = 1;
1356         } else if ((cols [2] & METHOD_ATTRIBUTE_PINVOKE_IMPL) && (!(cols [1] & METHOD_IMPL_ATTRIBUTE_NATIVE))) {
1357                 MonoMethodPInvoke *piinfo = (MonoMethodPInvoke *)result;
1358                 MonoTableInfo *im = &tables [MONO_TABLE_IMPLMAP];
1359
1360                 piinfo->implmap_idx = mono_metadata_implmap_from_method (image, idx - 1);
1361                 piinfo->piflags = mono_metadata_decode_row_col (im, piinfo->implmap_idx - 1, MONO_IMPLMAP_FLAGS);
1362         }
1363
1364         /* FIXME: lazyness for generics too, but how? */
1365         if (!(result->flags & METHOD_ATTRIBUTE_ABSTRACT) &&
1366             !(cols [1] & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) &&
1367             !(result->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) && container) {
1368                 gpointer loc = mono_image_rva_map (image, cols [0]);
1369                 g_assert (loc);
1370                 ((MonoMethodNormal *) result)->header = mono_metadata_parse_mh_full (image, container, loc);
1371         }
1372
1373         result->generic_container = generic_container;
1374
1375         return result;
1376 }
1377
1378 MonoMethod *
1379 mono_get_method (MonoImage *image, guint32 token, MonoClass *klass)
1380 {
1381         return mono_get_method_full (image, token, klass, NULL);
1382 }
1383
1384 MonoMethod *
1385 mono_get_method_full (MonoImage *image, guint32 token, MonoClass *klass,
1386                       MonoGenericContext *context)
1387 {
1388         MonoMethod *result;
1389
1390         /* We do everything inside the lock to prevent creation races */
1391
1392         mono_loader_lock ();
1393
1394         if ((result = g_hash_table_lookup (image->method_cache, GINT_TO_POINTER (token)))) {
1395                 mono_loader_unlock ();
1396                 return result;
1397         }
1398
1399         result = mono_get_method_from_token (image, token, klass, context);
1400
1401         //printf ("GET: %s\n", mono_method_full_name (result, TRUE));
1402
1403         if (!(result && result->is_inflated))
1404                 g_hash_table_insert (image->method_cache, GINT_TO_POINTER (token), result);
1405
1406         mono_loader_unlock ();
1407
1408         return result;
1409 }
1410
1411 /**
1412  * mono_get_method_constrained:
1413  *
1414  * This is used when JITing the `constrained.' opcode.
1415  *
1416  * This returns two values: the contrained method, which has been inflated
1417  * as the function return value;   And the original CIL-stream method as
1418  * declared in cil_method.  The later is used for verification.
1419  */
1420 MonoMethod *
1421 mono_get_method_constrained (MonoImage *image, guint32 token, MonoClass *constrained_class,
1422                              MonoGenericContext *context, MonoMethod **cil_method)
1423 {
1424         MonoMethod *method, *result;
1425         MonoClass *ic = NULL;
1426         MonoGenericContext *class_context = NULL, *method_context = NULL;
1427         MonoMethodSignature *sig;
1428
1429         mono_loader_lock ();
1430
1431         *cil_method = mono_get_method_from_token (image, token, NULL, context);
1432         if (!*cil_method) {
1433                 mono_loader_unlock ();
1434                 return NULL;
1435         }
1436
1437         mono_class_init (constrained_class);
1438         method = mono_get_inflated_method (*cil_method);
1439         sig = mono_method_signature (method);
1440
1441         if (method->is_inflated && sig->generic_param_count) {
1442                 MonoMethodInflated *imethod = (MonoMethodInflated *) method;
1443                 sig = mono_method_signature (imethod->declaring);
1444                 method_context = imethod->context;
1445         }
1446
1447         if ((constrained_class != method->klass) && (method->klass->interface_id != 0))
1448                 ic = method->klass;
1449
1450         if (constrained_class->generic_class)
1451                 class_context = constrained_class->generic_class->context;
1452
1453         result = find_method (constrained_class, ic, method->name, sig, constrained_class);
1454         if (!result) {
1455                 g_warning ("Missing method %s.%s.%s in assembly %s token %x", method->klass->name_space,
1456                            method->klass->name, method->name, image->name, token);
1457                 mono_loader_unlock ();
1458                 return NULL;
1459         }
1460
1461         if (class_context)
1462                 result = mono_class_inflate_generic_method (result, class_context);
1463         if (method_context)
1464                 result = mono_class_inflate_generic_method (result, method_context);
1465
1466         mono_loader_unlock ();
1467         return result;
1468 }
1469
1470 void
1471 mono_free_method  (MonoMethod *method)
1472 {
1473         if (mono_profiler_get_events () != MONO_PROFILE_NONE)
1474                 return;
1475         
1476         if (method->signature) {
1477                 /* 
1478                  * FIXME: This causes crashes because the types inside signatures and
1479                  * locals are shared.
1480                  */
1481                 /* mono_metadata_free_method_signature (method->signature); */
1482                 /* g_free (method->signature); */
1483         }
1484         
1485         if (method->dynamic) {
1486                 MonoMethodWrapper *mw = (MonoMethodWrapper*)method;
1487                 
1488                 g_free ((char*)method->name);
1489                 if (mw->method.header)
1490                         g_free ((char*)mw->method.header->code);
1491                 g_free (mw->method_data);
1492         }
1493
1494         if (method->dynamic && !(method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) && ((MonoMethodNormal *)method)->header) {
1495                 /* FIXME: Ditto */
1496                 /* mono_metadata_free_mh (((MonoMethodNormal *)method)->header); */
1497                 g_free (((MonoMethodNormal*)method)->header);
1498         }
1499
1500         if (method->dynamic)
1501                 g_free (method);
1502 }
1503
1504 void
1505 mono_method_get_param_names (MonoMethod *method, const char **names)
1506 {
1507         int i, lastp;
1508         MonoClass *klass = method->klass;
1509         MonoTableInfo *methodt;
1510         MonoTableInfo *paramt;
1511         guint32 idx;
1512
1513         if (!mono_method_signature (method)->param_count)
1514                 return;
1515         for (i = 0; i < mono_method_signature (method)->param_count; ++i)
1516                 names [i] = "";
1517
1518         if (klass->generic_class) /* copy the names later */
1519                 return;
1520
1521         mono_class_init (klass);
1522
1523         if (klass->image->dynamic) {
1524                 MonoReflectionMethodAux *method_aux = 
1525                         g_hash_table_lookup (
1526                                 ((MonoDynamicImage*)method->klass->image)->method_aux_hash, method);
1527                 if (method_aux && method_aux->param_names) {
1528                         for (i = 0; i < mono_method_signature (method)->param_count; ++i)
1529                                 if (method_aux->param_names [i + 1])
1530                                         names [i] = method_aux->param_names [i + 1];
1531                 }
1532                 return;
1533         }
1534
1535         methodt = &klass->image->tables [MONO_TABLE_METHOD];
1536         paramt = &klass->image->tables [MONO_TABLE_PARAM];
1537         idx = mono_method_get_index (method);
1538         if (idx > 0) {
1539                 guint32 cols [MONO_PARAM_SIZE];
1540                 guint param_index = mono_metadata_decode_row_col (methodt, idx - 1, MONO_METHOD_PARAMLIST);
1541
1542                 if (idx < methodt->rows)
1543                         lastp = mono_metadata_decode_row_col (methodt, idx, MONO_METHOD_PARAMLIST);
1544                 else
1545                         lastp = paramt->rows + 1;
1546                 for (i = param_index; i < lastp; ++i) {
1547                         mono_metadata_decode_row (paramt, i -1, cols, MONO_PARAM_SIZE);
1548                         if (cols [MONO_PARAM_SEQUENCE]) /* skip return param spec */
1549                                 names [cols [MONO_PARAM_SEQUENCE] - 1] = mono_metadata_string_heap (klass->image, cols [MONO_PARAM_NAME]);
1550                 }
1551                 return;
1552         }
1553 }
1554
1555 guint32
1556 mono_method_get_param_token (MonoMethod *method, int index)
1557 {
1558         MonoClass *klass = method->klass;
1559         MonoTableInfo *methodt;
1560         guint32 idx;
1561
1562         if (klass->generic_class)
1563                 g_assert_not_reached ();
1564
1565         mono_class_init (klass);
1566
1567         if (klass->image->dynamic) {
1568                 g_assert_not_reached ();
1569         }
1570
1571         methodt = &klass->image->tables [MONO_TABLE_METHOD];
1572         idx = mono_method_get_index (method);
1573         if (idx > 0) {
1574                 guint param_index = mono_metadata_decode_row_col (methodt, idx - 1, MONO_METHOD_PARAMLIST);
1575
1576                 return mono_metadata_make_token (MONO_TABLE_PARAM, param_index + index);
1577         }
1578
1579         return 0;
1580 }
1581
1582 void
1583 mono_method_get_marshal_info (MonoMethod *method, MonoMarshalSpec **mspecs)
1584 {
1585         int i, lastp;
1586         MonoClass *klass = method->klass;
1587         MonoTableInfo *methodt;
1588         MonoTableInfo *paramt;
1589         guint32 idx;
1590
1591         for (i = 0; i < mono_method_signature (method)->param_count + 1; ++i)
1592                 mspecs [i] = NULL;
1593
1594         if (method->klass->image->dynamic) {
1595                 MonoReflectionMethodAux *method_aux = 
1596                         g_hash_table_lookup (
1597                                 ((MonoDynamicImage*)method->klass->image)->method_aux_hash, method);
1598                 if (method_aux && method_aux->param_marshall) {
1599                         MonoMarshalSpec **dyn_specs = method_aux->param_marshall;
1600                         for (i = 0; i < mono_method_signature (method)->param_count + 1; ++i)
1601                                 if (dyn_specs [i]) {
1602                                         mspecs [i] = g_new0 (MonoMarshalSpec, 1);
1603                                         memcpy (mspecs [i], dyn_specs [i], sizeof (MonoMarshalSpec));
1604                                 }
1605                 }
1606                 return;
1607         }
1608
1609         mono_class_init (klass);
1610
1611         methodt = &klass->image->tables [MONO_TABLE_METHOD];
1612         paramt = &klass->image->tables [MONO_TABLE_PARAM];
1613         idx = mono_method_get_index (method);
1614         if (idx > 0) {
1615                 guint32 cols [MONO_PARAM_SIZE];
1616                 guint param_index = mono_metadata_decode_row_col (methodt, idx - 1, MONO_METHOD_PARAMLIST);
1617
1618                 if (idx < methodt->rows)
1619                         lastp = mono_metadata_decode_row_col (methodt, idx, MONO_METHOD_PARAMLIST);
1620                 else
1621                         lastp = paramt->rows + 1;
1622
1623                 for (i = param_index; i < lastp; ++i) {
1624                         mono_metadata_decode_row (paramt, i -1, cols, MONO_PARAM_SIZE);
1625
1626                         if (cols [MONO_PARAM_FLAGS] & PARAM_ATTRIBUTE_HAS_FIELD_MARSHAL) {
1627                                 const char *tp;
1628                                 tp = mono_metadata_get_marshal_info (klass->image, i - 1, FALSE);
1629                                 g_assert (tp);
1630                                 mspecs [cols [MONO_PARAM_SEQUENCE]]= mono_metadata_parse_marshal_spec (klass->image, tp);
1631                         }
1632                 }
1633
1634                 return;
1635         }
1636 }
1637
1638 gboolean
1639 mono_method_has_marshal_info (MonoMethod *method)
1640 {
1641         int i, lastp;
1642         MonoClass *klass = method->klass;
1643         MonoTableInfo *methodt;
1644         MonoTableInfo *paramt;
1645         guint32 idx;
1646
1647         if (method->klass->image->dynamic) {
1648                 MonoReflectionMethodAux *method_aux = 
1649                         g_hash_table_lookup (
1650                                 ((MonoDynamicImage*)method->klass->image)->method_aux_hash, method);
1651                 MonoMarshalSpec **dyn_specs = method_aux->param_marshall;
1652                 if (dyn_specs) {
1653                         for (i = 0; i < mono_method_signature (method)->param_count + 1; ++i)
1654                                 if (dyn_specs [i])
1655                                         return TRUE;
1656                 }
1657                 return FALSE;
1658         }
1659
1660         mono_class_init (klass);
1661
1662         methodt = &klass->image->tables [MONO_TABLE_METHOD];
1663         paramt = &klass->image->tables [MONO_TABLE_PARAM];
1664         idx = mono_method_get_index (method);
1665         if (idx > 0) {
1666                 guint32 cols [MONO_PARAM_SIZE];
1667                 guint param_index = mono_metadata_decode_row_col (methodt, idx - 1, MONO_METHOD_PARAMLIST);
1668
1669                 if (idx + 1 < methodt->rows)
1670                         lastp = mono_metadata_decode_row_col (methodt, idx, MONO_METHOD_PARAMLIST);
1671                 else
1672                         lastp = paramt->rows + 1;
1673
1674                 for (i = param_index; i < lastp; ++i) {
1675                         mono_metadata_decode_row (paramt, i -1, cols, MONO_PARAM_SIZE);
1676
1677                         if (cols [MONO_PARAM_FLAGS] & PARAM_ATTRIBUTE_HAS_FIELD_MARSHAL)
1678                                 return TRUE;
1679                 }
1680                 return FALSE;
1681         }
1682         return FALSE;
1683 }
1684
1685 gpointer
1686 mono_method_get_wrapper_data (MonoMethod *method, guint32 id)
1687 {
1688         void **data;
1689         g_assert (method != NULL);
1690         g_assert (method->wrapper_type != MONO_WRAPPER_NONE);
1691
1692         data = ((MonoMethodWrapper *)method)->method_data;
1693         g_assert (data != NULL);
1694         g_assert (id <= GPOINTER_TO_UINT (*data));
1695         return data [id];
1696 }
1697
1698 static void
1699 default_stack_walk (MonoStackWalk func, gboolean do_il_offset, gpointer user_data) {
1700         g_error ("stack walk not installed");
1701 }
1702
1703 static MonoStackWalkImpl stack_walk = default_stack_walk;
1704
1705 void
1706 mono_stack_walk (MonoStackWalk func, gpointer user_data)
1707 {
1708         stack_walk (func, TRUE, user_data);
1709 }
1710
1711 void
1712 mono_stack_walk_no_il (MonoStackWalk func, gpointer user_data)
1713 {
1714         stack_walk (func, FALSE, user_data);
1715 }
1716
1717 void
1718 mono_install_stack_walk (MonoStackWalkImpl func)
1719 {
1720         stack_walk = func;
1721 }
1722
1723 static gboolean
1724 last_managed (MonoMethod *m, gint no, gint ilo, gboolean managed, gpointer data)
1725 {
1726         MonoMethod **dest = data;
1727         *dest = m;
1728         /*g_print ("In %s::%s [%d] [%d]\n", m->klass->name, m->name, no, ilo);*/
1729
1730         return managed;
1731 }
1732
1733 MonoMethod*
1734 mono_method_get_last_managed (void)
1735 {
1736         MonoMethod *m = NULL;
1737         stack_walk (last_managed, FALSE, &m);
1738         return m;
1739 }
1740
1741 void
1742 mono_loader_lock (void)
1743 {
1744         EnterCriticalSection (&loader_mutex);
1745 }
1746
1747 void
1748 mono_loader_unlock (void)
1749 {
1750         LeaveCriticalSection (&loader_mutex);
1751 }
1752
1753 /**
1754  * mono_method_signature:
1755  *
1756  * Return the signature of the method M. On failure, returns NULL.
1757  */
1758 MonoMethodSignature*
1759 mono_method_signature (MonoMethod *m)
1760 {
1761         int idx;
1762         int size;
1763         MonoImage* img;
1764         const char *sig;
1765         gboolean can_cache_signature;
1766         MonoGenericContainer *container;
1767         int *pattrs;
1768
1769         if (m->signature)
1770                 return m->signature;
1771
1772         mono_loader_lock ();
1773
1774         if (m->signature) {
1775                 mono_loader_unlock ();
1776                 return m->signature;
1777         }
1778
1779         if (m->is_inflated) {
1780                 MonoMethodInflated *imethod = (MonoMethodInflated *) m;
1781                 MonoMethodSignature *signature;
1782                 /* the lock is recursive */
1783                 signature = mono_method_signature (imethod->declaring);
1784                 m->signature = inflate_generic_signature (imethod->declaring->klass->image, signature, imethod->context);
1785                 mono_loader_unlock ();
1786                 return m->signature;
1787         }
1788
1789         g_assert (mono_metadata_token_table (m->token) == MONO_TABLE_METHOD);
1790         idx = mono_metadata_token_index (m->token);
1791         img = m->klass->image;
1792
1793         sig = mono_metadata_blob_heap (img, mono_metadata_decode_row_col (&img->tables [MONO_TABLE_METHOD], idx - 1, MONO_METHOD_SIGNATURE));
1794
1795         g_assert (!m->klass->generic_class);
1796         container = m->generic_container;
1797         if (!container)
1798                 container = m->klass->generic_container;
1799
1800         /* Generic signatures depend on the container so they cannot be cached */
1801         /* icall/pinvoke signatures cannot be cached cause we modify them below */
1802         can_cache_signature = !(m->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) && !(m->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) && !container;
1803
1804         /* If the method has parameter attributes, that can modify the signature */
1805         pattrs = mono_metadata_get_param_attrs (img, idx);
1806         if (pattrs) {
1807                 can_cache_signature = FALSE;
1808                 g_free (pattrs);
1809         }
1810
1811         if (can_cache_signature)
1812                 m->signature = g_hash_table_lookup (img->method_signatures, sig);
1813
1814         if (!m->signature) {
1815                 const char *sig_body;
1816
1817                 size = mono_metadata_decode_blob_size (sig, &sig_body);
1818
1819                 m->signature = mono_metadata_parse_method_signature_full (img, container, idx, sig_body, NULL);
1820                 if (!m->signature) {
1821                         mono_loader_unlock ();
1822                         return NULL;
1823                 }
1824
1825                 if (can_cache_signature)
1826                         g_hash_table_insert (img->method_signatures, (gpointer)sig, m->signature);
1827         }
1828
1829         /* Verify metadata consistency */
1830         if (m->signature->generic_param_count) {
1831                 if (!container || !container->is_method)
1832                         g_error ("Signature claims method has generic parameters, but generic_params table says it doesn't");
1833                 if (container->type_argc != m->signature->generic_param_count)
1834                         g_error ("Inconsistent generic parameter count.  Signature says %d, generic_params table says %d",
1835                                  m->signature->generic_param_count, container->type_argc);
1836         } else if (container && container->is_method && container->type_argc)
1837                 g_error ("generic_params table claims method has generic parameters, but signature says it doesn't");
1838
1839         if (m->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)
1840                 m->signature->pinvoke = 1;
1841         else if ((m->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) && (!(m->iflags & METHOD_IMPL_ATTRIBUTE_NATIVE))) {
1842                 MonoCallConvention conv = 0;
1843                 MonoMethodPInvoke *piinfo = (MonoMethodPInvoke *)m;
1844                 m->signature->pinvoke = 1;
1845
1846                 switch (piinfo->piflags & PINVOKE_ATTRIBUTE_CALL_CONV_MASK) {
1847                 case 0: /* no call conv, so using default */
1848                 case PINVOKE_ATTRIBUTE_CALL_CONV_WINAPI:
1849                         conv = MONO_CALL_DEFAULT;
1850                         break;
1851                 case PINVOKE_ATTRIBUTE_CALL_CONV_CDECL:
1852                         conv = MONO_CALL_C;
1853                         break;
1854                 case PINVOKE_ATTRIBUTE_CALL_CONV_STDCALL:
1855                         conv = MONO_CALL_STDCALL;
1856                         break;
1857                 case PINVOKE_ATTRIBUTE_CALL_CONV_THISCALL:
1858                         conv = MONO_CALL_THISCALL;
1859                         break;
1860                 case PINVOKE_ATTRIBUTE_CALL_CONV_FASTCALL:
1861                         conv = MONO_CALL_FASTCALL;
1862                         break;
1863                 case PINVOKE_ATTRIBUTE_CALL_CONV_GENERIC:
1864                 case PINVOKE_ATTRIBUTE_CALL_CONV_GENERICINST:
1865                 default:
1866                         g_warning ("unsupported calling convention : 0x%04x", piinfo->piflags);
1867                         g_assert_not_reached ();
1868                 }
1869                 m->signature->call_convention = conv;
1870         }
1871
1872         mono_loader_unlock ();
1873         return m->signature;
1874 }
1875
1876 const char*
1877 mono_method_get_name (MonoMethod *method)
1878 {
1879         return method->name;
1880 }
1881
1882 MonoClass*
1883 mono_method_get_class (MonoMethod *method)
1884 {
1885         return method->klass;
1886 }
1887
1888 guint32
1889 mono_method_get_token (MonoMethod *method)
1890 {
1891         return method->token;
1892 }
1893
1894 MonoMethodHeader*
1895 mono_method_get_header (MonoMethod *method)
1896 {
1897         int idx;
1898         guint32 rva;
1899         MonoImage* img;
1900         gpointer loc;
1901         MonoMethodNormal* mn = (MonoMethodNormal*) method;
1902
1903         if ((method->flags & METHOD_ATTRIBUTE_ABSTRACT) || (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) || (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) || (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
1904                 return NULL;
1905
1906 #ifdef G_LIKELY
1907         if (G_LIKELY (mn->header))
1908 #else
1909         if (mn->header)
1910 #endif
1911                 return mn->header;
1912
1913         mono_loader_lock ();
1914
1915         if (mn->header) {
1916                 mono_loader_unlock ();
1917                 return mn->header;
1918         }
1919
1920         if (method->is_inflated) {
1921                 MonoMethodInflated *imethod = (MonoMethodInflated *) method;
1922                 MonoMethodHeader *header;
1923                 /* the lock is recursive */
1924                 header = mono_method_get_header (imethod->declaring);
1925                 mn->header = inflate_generic_header (header, imethod->context);
1926                 mono_loader_unlock ();
1927                 return mn->header;
1928         }
1929
1930         g_assert (mono_metadata_token_table (method->token) == MONO_TABLE_METHOD);
1931         idx = mono_metadata_token_index (method->token);
1932         img = method->klass->image;
1933         rva = mono_metadata_decode_row_col (&img->tables [MONO_TABLE_METHOD], idx - 1, MONO_METHOD_RVA);
1934         loc = mono_image_rva_map (img, rva);
1935
1936         g_assert (loc);
1937
1938         mn->header = mono_metadata_parse_mh_full (img, method->generic_container, loc);
1939
1940         mono_loader_unlock ();
1941         return mn->header;
1942 }
1943
1944 guint32
1945 mono_method_get_flags (MonoMethod *method, guint32 *iflags)
1946 {
1947         if (iflags)
1948                 *iflags = method->iflags;
1949         return method->flags;
1950 }
1951
1952 /*
1953  * Find the method index in the metadata methodDef table.
1954  */
1955 guint32
1956 mono_method_get_index (MonoMethod *method) {
1957         MonoClass *klass = method->klass;
1958         int i;
1959
1960         if (method->token)
1961                 return mono_metadata_token_index (method->token);
1962
1963         mono_class_setup_methods (klass);
1964         for (i = 0; i < klass->method.count; ++i) {
1965                 if (method == klass->methods [i])
1966                         return klass->method.first + 1 + i;
1967         }
1968         return 0;
1969 }
1970