Merge pull request #2634 from ludovic-henry/coop-fix-managed-to-native
[mono.git] / mono / metadata / debug-helpers.c
1 /*
2  * debug-helpers.c:
3  *
4  * Author:
5  *      Mono Project (http://www.mono-project.com)
6  *
7  * Copyright (C) 2005-2008 Novell, Inc. (http://www.novell.com)
8  */
9
10 #include <string.h>
11 #include "mono/metadata/tokentype.h"
12 #include "mono/metadata/opcodes.h"
13 #include "mono/metadata/metadata-internals.h"
14 #include "mono/metadata/class-internals.h"
15 #include "mono/metadata/object-internals.h"
16 #include "mono/metadata/mono-endian.h"
17 #include "mono/metadata/debug-helpers.h"
18 #include "mono/metadata/tabledefs.h"
19 #include "mono/metadata/appdomain.h"
20
21 struct MonoMethodDesc {
22         char *name_space;
23         char *klass;
24         char *name;
25         char *args;
26         guint num_args;
27         gboolean include_namespace, klass_glob, name_glob;
28 };
29
30 #ifdef HAVE_ARRAY_ELEM_INIT
31 #define MSGSTRFIELD(line) MSGSTRFIELD1(line)
32 #define MSGSTRFIELD1(line) str##line
33 static const struct msgstr_t {
34 #define WRAPPER(a,b) char MSGSTRFIELD(__LINE__) [sizeof (b)];
35 #include "wrapper-types.h"
36 #undef WRAPPER
37 } opstr = {
38 #define WRAPPER(a,b) b,
39 #include "wrapper-types.h"
40 #undef WRAPPER
41 };
42 static const gint16 opidx [] = {
43 #define WRAPPER(a,b) [MONO_WRAPPER_ ## a] = offsetof (struct msgstr_t, MSGSTRFIELD(__LINE__)),
44 #include "wrapper-types.h"
45 #undef WRAPPER
46 };
47
48 static const char*
49 wrapper_type_to_str (guint32 wrapper_type)
50 {
51         g_assert (wrapper_type < MONO_WRAPPER_NUM);
52
53         return (const char*)&opstr + opidx [wrapper_type];
54 }
55
56 #else
57 #define WRAPPER(a,b) b,
58 static const char* const
59 wrapper_type_names [MONO_WRAPPER_NUM + 1] = {
60 #include "wrapper-types.h"
61         NULL
62 };
63
64 static const char*
65 wrapper_type_to_str (guint32 wrapper_type)
66 {
67         g_assert (wrapper_type < MONO_WRAPPER_NUM);
68
69         return wrapper_type_names [wrapper_type];
70 }
71
72 #endif
73
74 static void
75 append_class_name (GString *res, MonoClass *klass, gboolean include_namespace)
76 {
77         if (!klass) {
78                 g_string_append (res, "Unknown");
79                 return;
80         }
81         if (klass->nested_in) {
82                 append_class_name (res, klass->nested_in, include_namespace);
83                 g_string_append_c (res, '/');
84         }
85         if (include_namespace && *(klass->name_space)) {
86                 g_string_append (res, klass->name_space);
87                 g_string_append_c (res, '.');
88         }
89         g_string_append (res, klass->name);
90 }
91
92 static MonoClass*
93 find_system_class (const char *name)
94 {
95         if (!strcmp (name, "void")) 
96                 return mono_defaults.void_class;
97         else if (!strcmp (name, "char")) return mono_defaults.char_class;
98         else if (!strcmp (name, "bool")) return mono_defaults.boolean_class;
99         else if (!strcmp (name, "byte")) return mono_defaults.byte_class;
100         else if (!strcmp (name, "sbyte")) return mono_defaults.sbyte_class;
101         else if (!strcmp (name, "uint16")) return mono_defaults.uint16_class;
102         else if (!strcmp (name, "int16")) return mono_defaults.int16_class;
103         else if (!strcmp (name, "uint")) return mono_defaults.uint32_class;
104         else if (!strcmp (name, "int")) return mono_defaults.int32_class;
105         else if (!strcmp (name, "ulong")) return mono_defaults.uint64_class;
106         else if (!strcmp (name, "long")) return mono_defaults.int64_class;
107         else if (!strcmp (name, "uintptr")) return mono_defaults.uint_class;
108         else if (!strcmp (name, "intptr")) return mono_defaults.int_class;
109         else if (!strcmp (name, "single")) return mono_defaults.single_class;
110         else if (!strcmp (name, "double")) return mono_defaults.double_class;
111         else if (!strcmp (name, "string")) return mono_defaults.string_class;
112         else if (!strcmp (name, "object")) return mono_defaults.object_class;
113         else
114                 return NULL;
115 }
116
117 void
118 mono_type_get_desc (GString *res, MonoType *type, gboolean include_namespace)
119 {
120         int i;
121
122         switch (type->type) {
123         case MONO_TYPE_VOID:
124                 g_string_append (res, "void"); break;
125         case MONO_TYPE_CHAR:
126                 g_string_append (res, "char"); break;
127         case MONO_TYPE_BOOLEAN:
128                 g_string_append (res, "bool"); break;
129         case MONO_TYPE_U1:
130                 g_string_append (res, "byte"); break;
131         case MONO_TYPE_I1:
132                 g_string_append (res, "sbyte"); break;
133         case MONO_TYPE_U2:
134                 g_string_append (res, "uint16"); break;
135         case MONO_TYPE_I2:
136                 g_string_append (res, "int16"); break;
137         case MONO_TYPE_U4:
138                 g_string_append (res, "uint"); break;
139         case MONO_TYPE_I4:
140                 g_string_append (res, "int"); break;
141         case MONO_TYPE_U8:
142                 g_string_append (res, "ulong"); break;
143         case MONO_TYPE_I8:
144                 g_string_append (res, "long"); break;
145         case MONO_TYPE_FNPTR: /* who cares for the exact signature? */
146                 g_string_append (res, "*()"); break;
147         case MONO_TYPE_U:
148                 g_string_append (res, "uintptr"); break;
149         case MONO_TYPE_I:
150                 g_string_append (res, "intptr"); break;
151         case MONO_TYPE_R4:
152                 g_string_append (res, "single"); break;
153         case MONO_TYPE_R8:
154                 g_string_append (res, "double"); break;
155         case MONO_TYPE_STRING:
156                 g_string_append (res, "string"); break;
157         case MONO_TYPE_OBJECT:
158                 g_string_append (res, "object"); break;
159         case MONO_TYPE_PTR:
160                 mono_type_get_desc (res, type->data.type, include_namespace);
161                 g_string_append_c (res, '*');
162                 break;
163         case MONO_TYPE_ARRAY:
164                 mono_type_get_desc (res, &type->data.array->eklass->byval_arg, include_namespace);
165                 g_string_append_printf (res, "[%d]", type->data.array->rank);
166                 break;
167         case MONO_TYPE_SZARRAY:
168                 mono_type_get_desc (res, &type->data.klass->byval_arg, include_namespace);
169                 g_string_append (res, "[]");
170                 break;
171         case MONO_TYPE_CLASS:
172         case MONO_TYPE_VALUETYPE:
173                 append_class_name (res, type->data.klass, include_namespace);
174                 break;
175         case MONO_TYPE_GENERICINST: {
176                 MonoGenericContext *context;
177
178                 mono_type_get_desc (res, &type->data.generic_class->container_class->byval_arg, include_namespace);
179                 g_string_append (res, "<");
180                 context = &type->data.generic_class->context;
181                 if (context->class_inst) {
182                         for (i = 0; i < context->class_inst->type_argc; ++i) {
183                                 if (i > 0)
184                                         g_string_append (res, ", ");
185                                 mono_type_get_desc (res, context->class_inst->type_argv [i], include_namespace);
186                         }
187                 }
188                 if (context->method_inst) {
189                         if (context->class_inst)
190                                         g_string_append (res, "; ");
191                         for (i = 0; i < context->method_inst->type_argc; ++i) {
192                                 if (i > 0)
193                                         g_string_append (res, ", ");
194                                 mono_type_get_desc (res, context->method_inst->type_argv [i], include_namespace);
195                         }
196                 }
197                 g_string_append (res, ">");
198                 break;
199         }
200         case MONO_TYPE_VAR:
201         case MONO_TYPE_MVAR:
202                 if (type->data.generic_param) {
203                         const char *name = mono_generic_param_name (type->data.generic_param);
204                         if (name)
205                                 g_string_append (res, name);
206                         else
207                                 g_string_append_printf (res, "%s%d", type->type == MONO_TYPE_VAR ? "!" : "!!", mono_generic_param_num (type->data.generic_param));
208                 } else {
209                         g_string_append (res, "<unknown>");
210                 }
211                 break;
212         case MONO_TYPE_TYPEDBYREF:
213                 g_string_append (res, "typedbyref");
214                 break;
215         default:
216                 break;
217         }
218         if (type->byref)
219                 g_string_append_c (res, '&');
220 }
221
222 char*
223 mono_type_full_name (MonoType *type)
224 {
225         GString *str;
226
227         str = g_string_new ("");
228         mono_type_get_desc (str, type, TRUE);
229         return g_string_free (str, FALSE);
230 }
231
232 char*
233 mono_signature_get_desc (MonoMethodSignature *sig, gboolean include_namespace)
234 {
235         int i;
236         char *result;
237         GString *res;
238
239         if (!sig)
240                 return g_strdup ("<invalid signature>");
241
242         res = g_string_new ("");
243
244         for (i = 0; i < sig->param_count; ++i) {
245                 if (i > 0)
246                         g_string_append_c (res, ',');
247                 mono_type_get_desc (res, sig->params [i], include_namespace);
248         }
249         result = res->str;
250         g_string_free (res, FALSE);
251         return result;
252 }
253
254 char*
255 mono_signature_full_name (MonoMethodSignature *sig)
256 {
257         int i;
258         char *result;
259         GString *res;
260
261         if (!sig)
262                 return g_strdup ("<invalid signature>");
263
264         res = g_string_new ("");
265
266         mono_type_get_desc (res, sig->ret, TRUE);
267         g_string_append_c (res, '(');
268         for (i = 0; i < sig->param_count; ++i) {
269                 if (i > 0)
270                         g_string_append_c (res, ',');
271                 mono_type_get_desc (res, sig->params [i], TRUE);
272         }
273         g_string_append_c (res, ')');
274         result = res->str;
275         g_string_free (res, FALSE);
276         return result;
277 }
278
279 static void
280 ginst_get_desc (GString *str, MonoGenericInst *ginst)
281 {
282         int i;
283
284         for (i = 0; i < ginst->type_argc; ++i) {
285                 if (i > 0)
286                         g_string_append (str, ", ");
287                 mono_type_get_desc (str, ginst->type_argv [i], TRUE);
288         }
289 }
290
291 char*
292 mono_context_get_desc (MonoGenericContext *context)
293 {
294         GString *str;
295         char *res;
296
297         str = g_string_new ("");
298         g_string_append (str, "<");
299
300         if (context->class_inst)
301                 ginst_get_desc (str, context->class_inst);
302         if (context->method_inst) {
303                 if (context->class_inst)
304                         g_string_append (str, "; ");
305                 ginst_get_desc (str, context->method_inst);
306         }
307
308         g_string_append (str, ">");
309         res = g_strdup (str->str);
310         g_string_free (str, TRUE);
311         return res;
312 }       
313
314 /**
315  * mono_method_desc_new:
316  * @name: the method name.
317  * @include_namespace: whether the name includes a namespace or not.
318  *
319  * Creates a method description for @name, which conforms to the following
320  * specification:
321  *
322  * [namespace.]classname:methodname[(args...)]
323  *
324  * in all the loaded assemblies.
325  *
326  * Both classname and methodname can contain '*' which matches anything.
327  *
328  * Returns: a parsed representation of the method description.
329  */
330 MonoMethodDesc*
331 mono_method_desc_new (const char *name, gboolean include_namespace)
332 {
333         MonoMethodDesc *result;
334         char *class_name, *class_nspace, *method_name, *use_args, *end;
335         int use_namespace;
336         int generic_delim_stack;
337         
338         class_nspace = g_strdup (name);
339         use_args = strchr (class_nspace, '(');
340         if (use_args) {
341                 /* Allow a ' ' between the method name and the signature */
342                 if (use_args > class_nspace && use_args [-1] == ' ')
343                         use_args [-1] = 0;
344                 *use_args++ = 0;
345                 end = strchr (use_args, ')');
346                 if (!end) {
347                         g_free (class_nspace);
348                         return NULL;
349                 }
350                 *end = 0;
351         }
352         method_name = strrchr (class_nspace, ':');
353         if (!method_name) {
354                 g_free (class_nspace);
355                 return NULL;
356         }
357         /* allow two :: to separate the method name */
358         if (method_name != class_nspace && method_name [-1] == ':')
359                 method_name [-1] = 0;
360         *method_name++ = 0;
361         class_name = strrchr (class_nspace, '.');
362         if (class_name) {
363                 *class_name++ = 0;
364                 use_namespace = 1;
365         } else {
366                 class_name = class_nspace;
367                 use_namespace = 0;
368         }
369         result = g_new0 (MonoMethodDesc, 1);
370         result->include_namespace = include_namespace;
371         result->name = method_name;
372         result->klass = class_name;
373         result->name_space = use_namespace? class_nspace: NULL;
374         result->args = use_args? use_args: NULL;
375         if (strstr (result->name, "*"))
376                 result->name_glob = TRUE;
377         if (strstr (result->klass, "*"))
378                 result->klass_glob = TRUE;
379         if (use_args) {
380                 end = use_args;
381                 if (*end)
382                         result->num_args = 1;
383                 generic_delim_stack = 0;
384                 while (*end) {
385                         if (*end == '<')
386                                 generic_delim_stack++;
387                         else if (*end == '>')
388                                 generic_delim_stack--;
389
390                         if (*end == ',' && generic_delim_stack == 0)
391                                 result->num_args++;
392                         ++end;
393                 }
394         }
395
396         return result;
397 }
398
399 MonoMethodDesc*
400 mono_method_desc_from_method (MonoMethod *method)
401 {
402         MonoMethodDesc *result;
403         
404         result = g_new0 (MonoMethodDesc, 1);
405         result->include_namespace = TRUE;
406         result->name = g_strdup (method->name);
407         result->klass = g_strdup (method->klass->name);
408         result->name_space = g_strdup (method->klass->name_space);
409
410         return result;
411 }
412
413 /**
414  * mono_method_desc_free:
415  * @desc: method description to be released
416  *
417  * Releases the MonoMethodDesc object @desc.
418  */
419 void
420 mono_method_desc_free (MonoMethodDesc *desc)
421 {
422         if (desc->name_space)
423                 g_free (desc->name_space);
424         else if (desc->klass)
425                 g_free (desc->klass);
426         g_free (desc);
427 }
428
429 /**
430  * mono_method_descr_match:
431  * @desc: MonoMethoDescription
432  * @method: MonoMethod to test
433  *
434  * Determines whether the specified @method matches the provided @desc description.
435  *
436  * namespace and class are supposed to match already if this function is used.
437  * Returns: True if the method matches the description, false otherwise.
438  */
439 gboolean
440 mono_method_desc_match (MonoMethodDesc *desc, MonoMethod *method)
441 {
442         char *sig;
443         gboolean name_match;
444
445         name_match = strcmp (desc->name, method->name) == 0;
446 #ifndef _EGLIB_MAJOR
447         if (!name_match && desc->name_glob)
448                 name_match = g_pattern_match_simple (desc->name, method->name);
449 #endif
450         if (!name_match)
451                 return FALSE;
452         if (!desc->args)
453                 return TRUE;
454         if (desc->num_args != mono_method_signature (method)->param_count)
455                 return FALSE;
456         sig = mono_signature_get_desc (mono_method_signature (method), desc->include_namespace);
457         if (strcmp (sig, desc->args)) {
458                 g_free (sig);
459                 return FALSE;
460         }
461         g_free (sig);
462         return TRUE;
463 }
464
465 static const char *
466 my_strrchr (const char *str, char ch, int *len)
467 {
468         int pos;
469
470         for (pos = (*len)-1; pos >= 0; pos--) {
471                 if (str [pos] != ch)
472                         continue;
473
474                 *len = pos;
475                 return str + pos;
476         }
477
478         return NULL;
479 }
480
481 static gboolean
482 match_class (MonoMethodDesc *desc, int pos, MonoClass *klass)
483 {
484         const char *p;
485
486         if (desc->klass_glob && !strcmp (desc->klass, "*"))
487                 return TRUE;
488 #ifndef _EGLIB_MAJOR
489         if (desc->klass_glob && g_pattern_match_simple (desc->klass, klass->name))
490                 return TRUE;
491 #endif
492         p = my_strrchr (desc->klass, '/', &pos);
493         if (!p) {
494                 if (strncmp (desc->klass, klass->name, pos))
495                         return FALSE;
496                 if (desc->name_space && strcmp (desc->name_space, klass->name_space))
497                         return FALSE;
498                 return TRUE;
499         }
500
501         if (strcmp (p+1, klass->name))
502                 return FALSE;
503         if (!klass->nested_in)
504                 return FALSE;
505
506         return match_class (desc, pos, klass->nested_in);
507 }
508
509 gboolean
510 mono_method_desc_full_match (MonoMethodDesc *desc, MonoMethod *method)
511 {
512         if (!desc->klass)
513                 return FALSE;
514         if (!match_class (desc, strlen (desc->klass), method->klass))
515                 return FALSE;
516
517         return mono_method_desc_match (desc, method);
518 }
519
520 MonoMethod*
521 mono_method_desc_search_in_class (MonoMethodDesc *desc, MonoClass *klass)
522 {
523         MonoMethod* m;
524         gpointer iter = NULL;
525         
526         while ((m = mono_class_get_methods (klass, &iter)))
527                 if (mono_method_desc_match (desc, m))
528                         return m;
529         return NULL;
530 }
531
532 MonoMethod*
533 mono_method_desc_search_in_image (MonoMethodDesc *desc, MonoImage *image)
534 {
535         MonoClass *klass;
536         const MonoTableInfo *methods;
537         MonoMethod *method;
538         int i;
539
540         /* Handle short names for system classes */
541         if (!desc->name_space && image == mono_defaults.corlib) {
542                 klass = find_system_class (desc->klass);
543                 if (klass)
544                         return mono_method_desc_search_in_class (desc, klass);
545         }
546
547         if (desc->name_space && desc->klass) {
548                 klass = mono_class_try_load_from_name (image, desc->name_space, desc->klass);
549                 if (!klass)
550                         return NULL;
551                 return mono_method_desc_search_in_class (desc, klass);
552         }
553
554         /* FIXME: Is this call necessary?  We don't use its result. */
555         mono_image_get_table_info (image, MONO_TABLE_TYPEDEF);
556         methods = mono_image_get_table_info (image, MONO_TABLE_METHOD);
557         for (i = 0; i < mono_table_info_get_rows (methods); ++i) {
558                 MonoError error;
559                 guint32 token = mono_metadata_decode_row_col (methods, i, MONO_METHOD_NAME);
560                 const char *n = mono_metadata_string_heap (image, token);
561
562                 if (strcmp (n, desc->name))
563                         continue;
564                 method = mono_get_method_checked (image, MONO_TOKEN_METHOD_DEF | (i + 1), NULL, NULL, &error);
565                 if (!method) {
566                         mono_error_cleanup (&error);
567                         continue;
568                 }
569                 if (mono_method_desc_full_match (desc, method))
570                         return method;
571         }
572         return NULL;
573 }
574
575 static const unsigned char*
576 dis_one (GString *str, MonoDisHelper *dh, MonoMethod *method, const unsigned char *ip, const unsigned char *end)
577 {
578         MonoError error;
579         MonoMethodHeader *header = mono_method_get_header_checked (method, &error);
580         const MonoOpcode *opcode;
581         guint32 label, token;
582         gint32 sval;
583         int i;
584         char *tmp;
585         const unsigned char* il_code;
586
587         if (!header) {
588                 g_string_append_printf (str, "could not disassemble, bad header due to %s", mono_error_get_message (&error));
589                 mono_error_cleanup (&error);
590                 return end;
591         }
592         il_code = mono_method_header_get_code (header, NULL, NULL);
593
594         label = ip - il_code;
595         if (dh->indenter) {
596                 tmp = dh->indenter (dh, method, label);
597                 g_string_append (str, tmp);
598                 g_free (tmp);
599         }
600         if (dh->label_format)
601                 g_string_append_printf (str, dh->label_format, label);
602         
603         i = mono_opcode_value (&ip, end);
604         ip++;
605         opcode = &mono_opcodes [i];
606         g_string_append_printf (str, "%-10s", mono_opcode_name (i));
607
608         switch (opcode->argument) {
609         case MonoInlineNone:
610                 break;
611         case MonoInlineType:
612         case MonoInlineField:
613         case MonoInlineMethod:
614         case MonoInlineTok:
615         case MonoInlineSig:
616                 token = read32 (ip);
617                 if (dh->tokener) {
618                         tmp = dh->tokener (dh, method, token);
619                         g_string_append (str, tmp);
620                         g_free (tmp);
621                 } else {
622                         g_string_append_printf (str, "0x%08x", token);
623                 }
624                 ip += 4;
625                 break;
626         case MonoInlineString: {
627                 const char *blob;
628                 char *s;
629                 size_t len2;
630                 char *blob2 = NULL;
631
632                 if (!image_is_dynamic (method->klass->image) && !method_is_dynamic (method)) {
633                         token = read32 (ip);
634                         blob = mono_metadata_user_string (method->klass->image, mono_metadata_token_index (token));
635
636                         len2 = mono_metadata_decode_blob_size (blob, &blob);
637                         len2 >>= 1;
638
639 #ifdef NO_UNALIGNED_ACCESS
640                         /* The blob might not be 2 byte aligned */
641                         blob2 = g_malloc ((len2 * 2) + 1);
642                         memcpy (blob2, blob, len2 * 2);
643 #else
644                         blob2 = (char*)blob;
645 #endif
646
647 #if G_BYTE_ORDER != G_LITTLE_ENDIAN
648                         {
649                                 guint16 *buf = g_new (guint16, len2 + 1);
650                                 int i;
651
652                                 for (i = 0; i < len2; ++i)
653                                         buf [i] = GUINT16_FROM_LE (((guint16*)blob2) [i]);
654                                 s = g_utf16_to_utf8 (buf, len2, NULL, NULL, NULL);
655                                 g_free (buf);
656                         }
657 #else
658                                 s = g_utf16_to_utf8 ((gunichar2*)blob2, len2, NULL, NULL, NULL);
659 #endif
660
661                         g_string_append_printf (str, "\"%s\"", s);
662                         g_free (s);
663                         if (blob != blob2)
664                                 g_free (blob2);
665                 }
666                 ip += 4;
667                 break;
668         }
669         case MonoInlineVar:
670                 g_string_append_printf (str, "%d", read16 (ip));
671                 ip += 2;
672                 break;
673         case MonoShortInlineVar:
674                 g_string_append_printf (str, "%d", (*ip));
675                 ip ++;
676                 break;
677         case MonoInlineBrTarget:
678                 sval = read32 (ip);
679                 ip += 4;
680                 if (dh->label_target)
681                         g_string_append_printf (str, dh->label_target, ip + sval - il_code);
682                 else
683                         g_string_append_printf (str, "%d", sval);
684                 break;
685         case MonoShortInlineBrTarget:
686                 sval = *(const signed char*)ip;
687                 ip ++;
688                 if (dh->label_target)
689                         g_string_append_printf (str, dh->label_target, ip + sval - il_code);
690                 else
691                         g_string_append_printf (str, "%d", sval);
692                 break;
693         case MonoInlineSwitch: {
694                 const unsigned char *end;
695                 sval = read32 (ip);
696                 ip += 4;
697                 end = ip + sval * 4;
698                 g_string_append_c (str, '(');
699                 for (i = 0; i < sval; ++i) {
700                         if (i > 0)
701                                 g_string_append (str, ", ");
702                         label = read32 (ip);
703                         if (dh->label_target)
704                                 g_string_append_printf (str, dh->label_target, end + label - il_code);
705                         else
706                                 g_string_append_printf (str, "%d", label);
707                         ip += 4;
708                 }
709                 g_string_append_c (str, ')');
710                 break;
711         }
712         case MonoInlineR: {
713                 double r;
714                 readr8 (ip, &r);
715                 g_string_append_printf (str, "%g", r);
716                 ip += 8;
717                 break;
718         }
719         case MonoShortInlineR: {
720                 float r;
721                 readr4 (ip, &r);
722                 g_string_append_printf (str, "%g", r);
723                 ip += 4;
724                 break;
725         }
726         case MonoInlineI:
727                 g_string_append_printf (str, "%d", (gint32)read32 (ip));
728                 ip += 4;
729                 break;
730         case MonoShortInlineI:
731                 g_string_append_printf (str, "%d", *(const signed char*)ip);
732                 ip ++;
733                 break;
734         case MonoInlineI8:
735                 ip += 8;
736                 break;
737         default:
738                 g_assert_not_reached ();
739         }
740         if (dh->newline)
741                 g_string_append (str, dh->newline);
742
743         mono_metadata_free_mh (header);
744         return ip;
745 }
746
747 static MonoDisHelper
748 default_dh = {
749         "\n",
750         "IL_%04x: ", /* label_format */
751         "IL_%04x", /* label_target */
752         NULL, /* indenter */
753         NULL, /* tokener */
754         NULL  /* user data */
755 };
756
757 char*
758 mono_disasm_code_one (MonoDisHelper *dh, MonoMethod *method, const guchar *ip, const guchar **endp)
759 {
760         char *result;
761         GString *res = g_string_new ("");
762
763         if (!dh)
764                 dh = &default_dh;
765         /* set ip + 2 as the end: this is just a debugging method */
766         ip = dis_one (res, dh, method, ip, ip + 2);
767         if (endp)
768                 *endp = ip;
769         
770         result = res->str;
771         g_string_free (res, FALSE);
772         return result;
773 }
774
775 char*
776 mono_disasm_code (MonoDisHelper *dh, MonoMethod *method, const guchar *ip, const guchar* end)
777 {
778         char *result;
779         GString *res = g_string_new ("");
780
781         if (!dh)
782                 dh = &default_dh;
783         while (ip < end) {
784                 ip = dis_one (res, dh, method, ip, end);
785         }
786         
787         result = res->str;
788         g_string_free (res, FALSE);
789         return result;
790 }
791
792 /**
793  * mono_field_full_name:
794  * @field: field to retrieve information for
795  *
796  * Returns: the full name for the field, made up of the namespace, type name and the field name.
797  */
798 char *
799 mono_field_full_name (MonoClassField *field)
800 {
801         char *res;
802         const char *nspace = field->parent->name_space;
803
804         res = g_strdup_printf ("%s%s%s:%s", nspace, *nspace ? "." : "",
805                                                    field->parent->name, mono_field_get_name (field));
806
807         return res;
808 }
809
810 char *
811 mono_method_get_name_full (MonoMethod *method, gboolean signature, gboolean ret, MonoTypeNameFormat format)
812 {
813         char *res;
814         char wrapper [64];
815         char *klass_desc;
816         char *inst_desc = NULL;
817
818         if (format == MONO_TYPE_NAME_FORMAT_IL)
819                 klass_desc = mono_type_full_name (&method->klass->byval_arg);
820         else
821                 klass_desc = mono_type_get_name_full (&method->klass->byval_arg, format);
822
823         if (method->is_inflated && ((MonoMethodInflated*)method)->context.method_inst) {
824                 GString *str = g_string_new ("");
825                 if (format == MONO_TYPE_NAME_FORMAT_IL)
826                         g_string_append (str, "<");
827                 else
828                         g_string_append (str, "[");
829                 ginst_get_desc (str, ((MonoMethodInflated*)method)->context.method_inst);
830                 if (format == MONO_TYPE_NAME_FORMAT_IL)
831                         g_string_append_c (str, '>');
832                 else
833                         g_string_append_c (str, ']');
834
835                 inst_desc = str->str;
836                 g_string_free (str, FALSE);
837         } else if (method->is_generic) {
838                 MonoGenericContainer *container = mono_method_get_generic_container (method);
839
840                 GString *str = g_string_new ("");
841                 if (format == MONO_TYPE_NAME_FORMAT_IL)
842                         g_string_append (str, "<");
843                 else
844                         g_string_append (str, "[");
845                 ginst_get_desc (str, container->context.method_inst);
846                 if (format == MONO_TYPE_NAME_FORMAT_IL)
847                         g_string_append_c (str, '>');
848                 else
849                         g_string_append_c (str, ']');
850
851                 inst_desc = str->str;
852                 g_string_free (str, FALSE);
853         }
854
855         if (method->wrapper_type != MONO_WRAPPER_NONE)
856                 sprintf (wrapper, "(wrapper %s) ", wrapper_type_to_str (method->wrapper_type));
857         else
858                 strcpy (wrapper, "");
859
860         if (signature) {
861                 char *tmpsig = mono_signature_get_desc (mono_method_signature (method), TRUE);
862
863                 if (method->wrapper_type != MONO_WRAPPER_NONE)
864                         sprintf (wrapper, "(wrapper %s) ", wrapper_type_to_str (method->wrapper_type));
865                 else
866                         strcpy (wrapper, "");
867                 if (ret) {
868                         char *ret_str = mono_type_full_name (mono_method_signature (method)->ret);
869                         res = g_strdup_printf ("%s%s %s:%s%s (%s)", wrapper, ret_str, klass_desc,
870                                                                    method->name, inst_desc ? inst_desc : "", tmpsig);
871                         g_free (ret_str);
872                 } else {
873                         res = g_strdup_printf ("%s%s:%s%s (%s)", wrapper, klass_desc,
874                                                                    method->name, inst_desc ? inst_desc : "", tmpsig);
875                 }
876                 g_free (tmpsig);
877         } else {
878                 res = g_strdup_printf ("%s%s:%s%s", wrapper, klass_desc,
879                                                            method->name, inst_desc ? inst_desc : "");
880         }
881
882         g_free (klass_desc);
883         g_free (inst_desc);
884
885         return res;
886 }
887
888 char *
889 mono_method_full_name (MonoMethod *method, gboolean signature)
890 {
891         return mono_method_get_name_full (method, signature, FALSE, MONO_TYPE_NAME_FORMAT_IL);
892 }
893
894 char *
895 mono_method_get_full_name (MonoMethod *method)
896 {
897         return mono_method_get_name_full (method, TRUE, TRUE, MONO_TYPE_NAME_FORMAT_IL);
898 }
899
900 static const char*
901 print_name_space (MonoClass *klass)
902 {
903         if (klass->nested_in) {
904                 print_name_space (klass->nested_in);
905                 g_print ("%s", klass->nested_in->name);
906                 return "/";
907         }
908         if (klass->name_space [0]) {
909                 g_print ("%s", klass->name_space);
910                 return ".";
911         }
912         return "";
913 }
914
915 /**
916  * mono_object_describe:
917  *
918  * Prints to stdout a small description of the object @obj.
919  * For use in a debugger.
920  */
921 void
922 mono_object_describe (MonoObject *obj)
923 {
924         MonoClass* klass;
925         const char* sep;
926         if (!obj) {
927                 g_print ("(null)\n");
928                 return;
929         }
930         klass = mono_object_class (obj);
931         if (klass == mono_defaults.string_class) {
932                 char *utf8 = mono_string_to_utf8 ((MonoString*)obj);
933                 if (strlen (utf8) > 60) {
934                         utf8 [57] = '.';
935                         utf8 [58] = '.';
936                         utf8 [59] = '.';
937                         utf8 [60] = 0;
938                 }
939                 g_print ("String at %p, length: %d, '%s'\n", obj, mono_string_length ((MonoString*) obj), utf8);
940                 g_free (utf8);
941         } else if (klass->rank) {
942                 MonoArray *array = (MonoArray*)obj;
943                 sep = print_name_space (klass);
944                 g_print ("%s%s", sep, klass->name);
945                 g_print (" at %p, rank: %d, length: %d\n", obj, klass->rank, (int)mono_array_length (array));
946         } else {
947                 sep = print_name_space (klass);
948                 g_print ("%s%s", sep, klass->name);
949                 g_print (" object at %p (klass: %p)\n", obj, klass);
950         }
951
952 }
953
954 static void
955 print_field_value (const char *field_ptr, MonoClassField *field, int type_offset)
956 {
957         MonoType *type;
958         g_print ("At %p (ofs: %2d) %s: ", field_ptr, field->offset + type_offset, mono_field_get_name (field));
959         type = mono_type_get_underlying_type (field->type);
960
961         switch (type->type) {
962         case MONO_TYPE_I:
963         case MONO_TYPE_U:
964         case MONO_TYPE_PTR:
965         case MONO_TYPE_FNPTR:
966                 g_print ("%p\n", *(const void**)field_ptr);
967                 break;
968         case MONO_TYPE_STRING:
969         case MONO_TYPE_SZARRAY:
970         case MONO_TYPE_CLASS:
971         case MONO_TYPE_OBJECT:
972         case MONO_TYPE_ARRAY:
973                 mono_object_describe (*(MonoObject**)field_ptr);
974                 break;
975         case MONO_TYPE_GENERICINST:
976                 if (!mono_type_generic_inst_is_valuetype (type)) {
977                         mono_object_describe (*(MonoObject**)field_ptr);
978                         break;
979                 } else {
980                         /* fall through */
981                 }
982         case MONO_TYPE_VALUETYPE: {
983                 MonoClass *k = mono_class_from_mono_type (type);
984                 g_print ("%s ValueType (type: %p) at %p\n", k->name, k, field_ptr);
985                 break;
986         }
987         case MONO_TYPE_I1:
988                 g_print ("%d\n", *(gint8*)field_ptr);
989                 break;
990         case MONO_TYPE_U1:
991                 g_print ("%d\n", *(guint8*)field_ptr);
992                 break;
993         case MONO_TYPE_I2:
994                 g_print ("%d\n", *(gint16*)field_ptr);
995                 break;
996         case MONO_TYPE_U2:
997                 g_print ("%d\n", *(guint16*)field_ptr);
998                 break;
999         case MONO_TYPE_I4:
1000                 g_print ("%d\n", *(gint32*)field_ptr);
1001                 break;
1002         case MONO_TYPE_U4:
1003                 g_print ("%u\n", *(guint32*)field_ptr);
1004                 break;
1005         case MONO_TYPE_I8:
1006                 g_print ("%lld\n", (long long int)*(gint64*)field_ptr);
1007                 break;
1008         case MONO_TYPE_U8:
1009                 g_print ("%llu\n", (long long unsigned int)*(guint64*)field_ptr);
1010                 break;
1011         case MONO_TYPE_R4:
1012                 g_print ("%f\n", *(gfloat*)field_ptr);
1013                 break;
1014         case MONO_TYPE_R8:
1015                 g_print ("%f\n", *(gdouble*)field_ptr);
1016                 break;
1017         case MONO_TYPE_BOOLEAN:
1018                 g_print ("%s (%d)\n", *(guint8*)field_ptr? "True": "False", *(guint8*)field_ptr);
1019                 break;
1020         case MONO_TYPE_CHAR:
1021                 g_print ("'%c' (%d 0x%04x)\n", *(guint16*)field_ptr, *(guint16*)field_ptr, *(guint16*)field_ptr);
1022                 break;
1023         default:
1024                 g_assert_not_reached ();
1025                 break;
1026         }
1027 }
1028
1029 static void
1030 objval_describe (MonoClass *klass, const char *addr)
1031 {
1032         MonoClassField *field;
1033         MonoClass *p;
1034         const char *field_ptr;
1035         gssize type_offset = 0;
1036
1037         if (klass->valuetype)
1038                 type_offset = -sizeof (MonoObject);
1039
1040         for (p = klass; p != NULL; p = p->parent) {
1041                 gpointer iter = NULL;
1042                 int printed_header = FALSE;
1043                 while ((field = mono_class_get_fields (p, &iter))) {
1044                         if (field->type->attrs & (FIELD_ATTRIBUTE_STATIC | FIELD_ATTRIBUTE_HAS_FIELD_RVA))
1045                                 continue;
1046
1047                         if (p != klass && !printed_header) {
1048                                 const char *sep;
1049                                 g_print ("In class ");
1050                                 sep = print_name_space (p);
1051                                 g_print ("%s%s:\n", sep, p->name);
1052                                 printed_header = TRUE;
1053                         }
1054                         field_ptr = (const char*)addr + field->offset + type_offset;
1055
1056                         print_field_value (field_ptr, field, type_offset);
1057                 }
1058         }
1059 }
1060
1061 /**
1062  * mono_object_describe_fields:
1063  *
1064  * Prints to stdout a small description of each field of the object @obj.
1065  * For use in a debugger.
1066  */
1067 void
1068 mono_object_describe_fields (MonoObject *obj)
1069 {
1070         MonoClass *klass = mono_object_class (obj);
1071         objval_describe (klass, (char*)obj);
1072 }
1073
1074 /**
1075  * mono_value_describe_fields:
1076  *
1077  * Prints to stdout a small description of each field of the value type
1078  * stored at @addr of type @klass.
1079  * For use in a debugger.
1080  */
1081 void
1082 mono_value_describe_fields (MonoClass* klass, const char* addr)
1083 {
1084         objval_describe (klass, addr);
1085 }
1086
1087 /**
1088  * mono_class_describe_statics:
1089  *
1090  * Prints to stdout a small description of each static field of the type @klass
1091  * in the current application domain.
1092  * For use in a debugger.
1093  */
1094 void
1095 mono_class_describe_statics (MonoClass* klass)
1096 {
1097         MonoError error;
1098         MonoClassField *field;
1099         MonoClass *p;
1100         const char *field_ptr;
1101         MonoVTable *vtable = mono_class_vtable_full (mono_domain_get (), klass, &error);
1102         const char *addr;
1103
1104         if (!vtable || !is_ok (&error)) {
1105                 mono_error_cleanup (&error);
1106                 return;
1107         }
1108
1109         if (!(addr = (const char *)mono_vtable_get_static_field_data (vtable)))
1110                 return;
1111
1112         for (p = klass; p != NULL; p = p->parent) {
1113                 gpointer iter = NULL;
1114                 while ((field = mono_class_get_fields (p, &iter))) {
1115                         if (field->type->attrs & FIELD_ATTRIBUTE_LITERAL)
1116                                 continue;
1117                         if (!(field->type->attrs & (FIELD_ATTRIBUTE_STATIC | FIELD_ATTRIBUTE_HAS_FIELD_RVA)))
1118                                 continue;
1119
1120                         field_ptr = (const char*)addr + field->offset;
1121
1122                         print_field_value (field_ptr, field, 0);
1123                 }
1124         }
1125 }
1126
1127 /**
1128  * mono_print_method_code
1129  * @MonoMethod: a pointer to the method
1130  *
1131  * This method is used from a debugger to print the code of the method.
1132  *
1133  * This prints the IL code of the method in the standard output.
1134  */
1135 void
1136 mono_method_print_code (MonoMethod *method)
1137 {
1138         MonoError error;
1139         char *code;
1140         MonoMethodHeader *header = mono_method_get_header_checked (method, &error);
1141         if (!header) {
1142                 printf ("METHOD HEADER NOT FOUND DUE TO: %s\n", mono_error_get_message (&error));
1143                 mono_error_cleanup (&error);
1144                 return;
1145         }
1146         code = mono_disasm_code (0, method, header->code, header->code + header->code_size);
1147         printf ("CODE FOR %s:\n%s\n", mono_method_full_name (method, TRUE), code);
1148         g_free (code);
1149 }