Merge pull request #2523 from akoeplinger/fix-profiler-test-reporting
[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         
337         class_nspace = g_strdup (name);
338         use_args = strchr (class_nspace, '(');
339         if (use_args) {
340                 /* Allow a ' ' between the method name and the signature */
341                 if (use_args > class_nspace && use_args [-1] == ' ')
342                         use_args [-1] = 0;
343                 *use_args++ = 0;
344                 end = strchr (use_args, ')');
345                 if (!end) {
346                         g_free (class_nspace);
347                         return NULL;
348                 }
349                 *end = 0;
350         }
351         method_name = strrchr (class_nspace, ':');
352         if (!method_name) {
353                 g_free (class_nspace);
354                 return NULL;
355         }
356         /* allow two :: to separate the method name */
357         if (method_name != class_nspace && method_name [-1] == ':')
358                 method_name [-1] = 0;
359         *method_name++ = 0;
360         class_name = strrchr (class_nspace, '.');
361         if (class_name) {
362                 *class_name++ = 0;
363                 use_namespace = 1;
364         } else {
365                 class_name = class_nspace;
366                 use_namespace = 0;
367         }
368         result = g_new0 (MonoMethodDesc, 1);
369         result->include_namespace = include_namespace;
370         result->name = method_name;
371         result->klass = class_name;
372         result->name_space = use_namespace? class_nspace: NULL;
373         result->args = use_args? use_args: NULL;
374         if (strstr (result->name, "*"))
375                 result->name_glob = TRUE;
376         if (strstr (result->klass, "*"))
377                 result->klass_glob = TRUE;
378         if (use_args) {
379                 end = use_args;
380                 if (*end)
381                         result->num_args = 1;
382                 while (*end) {
383                         if (*end == ',')
384                                 result->num_args++;
385                         ++end;
386                 }
387         }
388
389         return result;
390 }
391
392 MonoMethodDesc*
393 mono_method_desc_from_method (MonoMethod *method)
394 {
395         MonoMethodDesc *result;
396         
397         result = g_new0 (MonoMethodDesc, 1);
398         result->include_namespace = TRUE;
399         result->name = g_strdup (method->name);
400         result->klass = g_strdup (method->klass->name);
401         result->name_space = g_strdup (method->klass->name_space);
402
403         return result;
404 }
405
406 /**
407  * mono_method_desc_free:
408  * @desc: method description to be released
409  *
410  * Releases the MonoMethodDesc object @desc.
411  */
412 void
413 mono_method_desc_free (MonoMethodDesc *desc)
414 {
415         if (desc->name_space)
416                 g_free (desc->name_space);
417         else if (desc->klass)
418                 g_free (desc->klass);
419         g_free (desc);
420 }
421
422 /*
423  * namespace and class are supposed to match already if this function is used.
424  */
425 gboolean
426 mono_method_desc_match (MonoMethodDesc *desc, MonoMethod *method)
427 {
428         char *sig;
429         gboolean name_match;
430
431         name_match = strcmp (desc->name, method->name) == 0;
432 #ifndef _EGLIB_MAJOR
433         if (!name_match && desc->name_glob)
434                 name_match = g_pattern_match_simple (desc->name, method->name);
435 #endif
436         if (!name_match)
437                 return FALSE;
438         if (!desc->args)
439                 return TRUE;
440         if (desc->num_args != mono_method_signature (method)->param_count)
441                 return FALSE;
442         sig = mono_signature_get_desc (mono_method_signature (method), desc->include_namespace);
443         if (strcmp (sig, desc->args)) {
444                 g_free (sig);
445                 return FALSE;
446         }
447         g_free (sig);
448         return TRUE;
449 }
450
451 static const char *
452 my_strrchr (const char *str, char ch, int *len)
453 {
454         int pos;
455
456         for (pos = (*len)-1; pos >= 0; pos--) {
457                 if (str [pos] != ch)
458                         continue;
459
460                 *len = pos;
461                 return str + pos;
462         }
463
464         return NULL;
465 }
466
467 static gboolean
468 match_class (MonoMethodDesc *desc, int pos, MonoClass *klass)
469 {
470         const char *p;
471
472         if (desc->klass_glob && !strcmp (desc->klass, "*"))
473                 return TRUE;
474 #ifndef _EGLIB_MAJOR
475         if (desc->klass_glob && g_pattern_match_simple (desc->klass, klass->name))
476                 return TRUE;
477 #endif
478         p = my_strrchr (desc->klass, '/', &pos);
479         if (!p) {
480                 if (strncmp (desc->klass, klass->name, pos))
481                         return FALSE;
482                 if (desc->name_space && strcmp (desc->name_space, klass->name_space))
483                         return FALSE;
484                 return TRUE;
485         }
486
487         if (strcmp (p+1, klass->name))
488                 return FALSE;
489         if (!klass->nested_in)
490                 return FALSE;
491
492         return match_class (desc, pos, klass->nested_in);
493 }
494
495 gboolean
496 mono_method_desc_full_match (MonoMethodDesc *desc, MonoMethod *method)
497 {
498         if (!desc->klass)
499                 return FALSE;
500         if (!match_class (desc, strlen (desc->klass), method->klass))
501                 return FALSE;
502
503         return mono_method_desc_match (desc, method);
504 }
505
506 MonoMethod*
507 mono_method_desc_search_in_class (MonoMethodDesc *desc, MonoClass *klass)
508 {
509         MonoMethod* m;
510         gpointer iter = NULL;
511         
512         while ((m = mono_class_get_methods (klass, &iter)))
513                 if (mono_method_desc_match (desc, m))
514                         return m;
515         return NULL;
516 }
517
518 MonoMethod*
519 mono_method_desc_search_in_image (MonoMethodDesc *desc, MonoImage *image)
520 {
521         MonoClass *klass;
522         const MonoTableInfo *methods;
523         MonoMethod *method;
524         int i;
525
526         /* Handle short names for system classes */
527         if (!desc->name_space && image == mono_defaults.corlib) {
528                 klass = find_system_class (desc->klass);
529                 if (klass)
530                         return mono_method_desc_search_in_class (desc, klass);
531         }
532
533         if (desc->name_space && desc->klass) {
534                 klass = mono_class_from_name (image, desc->name_space, desc->klass);
535                 if (!klass)
536                         return NULL;
537                 return mono_method_desc_search_in_class (desc, klass);
538         }
539
540         /* FIXME: Is this call necessary?  We don't use its result. */
541         mono_image_get_table_info (image, MONO_TABLE_TYPEDEF);
542         methods = mono_image_get_table_info (image, MONO_TABLE_METHOD);
543         for (i = 0; i < mono_table_info_get_rows (methods); ++i) {
544                 MonoError error;
545                 guint32 token = mono_metadata_decode_row_col (methods, i, MONO_METHOD_NAME);
546                 const char *n = mono_metadata_string_heap (image, token);
547
548                 if (strcmp (n, desc->name))
549                         continue;
550                 method = mono_get_method_checked (image, MONO_TOKEN_METHOD_DEF | (i + 1), NULL, NULL, &error);
551                 if (!method) {
552                         mono_error_cleanup (&error);
553                         continue;
554                 }
555                 if (mono_method_desc_full_match (desc, method))
556                         return method;
557         }
558         return NULL;
559 }
560
561 static const unsigned char*
562 dis_one (GString *str, MonoDisHelper *dh, MonoMethod *method, const unsigned char *ip, const unsigned char *end)
563 {
564         MonoMethodHeader *header = mono_method_get_header (method);
565         const MonoOpcode *opcode;
566         guint32 label, token;
567         gint32 sval;
568         int i;
569         char *tmp;
570         const unsigned char* il_code = mono_method_header_get_code (header, NULL, NULL);
571
572         label = ip - il_code;
573         if (dh->indenter) {
574                 tmp = dh->indenter (dh, method, label);
575                 g_string_append (str, tmp);
576                 g_free (tmp);
577         }
578         if (dh->label_format)
579                 g_string_append_printf (str, dh->label_format, label);
580         
581         i = mono_opcode_value (&ip, end);
582         ip++;
583         opcode = &mono_opcodes [i];
584         g_string_append_printf (str, "%-10s", mono_opcode_name (i));
585
586         switch (opcode->argument) {
587         case MonoInlineNone:
588                 break;
589         case MonoInlineType:
590         case MonoInlineField:
591         case MonoInlineMethod:
592         case MonoInlineTok:
593         case MonoInlineSig:
594                 token = read32 (ip);
595                 if (dh->tokener) {
596                         tmp = dh->tokener (dh, method, token);
597                         g_string_append (str, tmp);
598                         g_free (tmp);
599                 } else {
600                         g_string_append_printf (str, "0x%08x", token);
601                 }
602                 ip += 4;
603                 break;
604         case MonoInlineString: {
605                 const char *blob;
606                 char *s;
607                 size_t len2;
608                 char *blob2 = NULL;
609
610                 if (!image_is_dynamic (method->klass->image) && !method_is_dynamic (method)) {
611                         token = read32 (ip);
612                         blob = mono_metadata_user_string (method->klass->image, mono_metadata_token_index (token));
613
614                         len2 = mono_metadata_decode_blob_size (blob, &blob);
615                         len2 >>= 1;
616
617 #ifdef NO_UNALIGNED_ACCESS
618                         /* The blob might not be 2 byte aligned */
619                         blob2 = g_malloc ((len2 * 2) + 1);
620                         memcpy (blob2, blob, len2 * 2);
621 #else
622                         blob2 = (char*)blob;
623 #endif
624
625 #if G_BYTE_ORDER != G_LITTLE_ENDIAN
626                         {
627                                 guint16 *buf = g_new (guint16, len2 + 1);
628                                 int i;
629
630                                 for (i = 0; i < len2; ++i)
631                                         buf [i] = GUINT16_FROM_LE (((guint16*)blob2) [i]);
632                                 s = g_utf16_to_utf8 (buf, len2, NULL, NULL, NULL);
633                                 g_free (buf);
634                         }
635 #else
636                                 s = g_utf16_to_utf8 ((gunichar2*)blob2, len2, NULL, NULL, NULL);
637 #endif
638
639                         g_string_append_printf (str, "\"%s\"", s);
640                         g_free (s);
641                         if (blob != blob2)
642                                 g_free (blob2);
643                 }
644                 ip += 4;
645                 break;
646         }
647         case MonoInlineVar:
648                 g_string_append_printf (str, "%d", read16 (ip));
649                 ip += 2;
650                 break;
651         case MonoShortInlineVar:
652                 g_string_append_printf (str, "%d", (*ip));
653                 ip ++;
654                 break;
655         case MonoInlineBrTarget:
656                 sval = read32 (ip);
657                 ip += 4;
658                 if (dh->label_target)
659                         g_string_append_printf (str, dh->label_target, ip + sval - il_code);
660                 else
661                         g_string_append_printf (str, "%d", sval);
662                 break;
663         case MonoShortInlineBrTarget:
664                 sval = *(const signed char*)ip;
665                 ip ++;
666                 if (dh->label_target)
667                         g_string_append_printf (str, dh->label_target, ip + sval - il_code);
668                 else
669                         g_string_append_printf (str, "%d", sval);
670                 break;
671         case MonoInlineSwitch: {
672                 const unsigned char *end;
673                 sval = read32 (ip);
674                 ip += 4;
675                 end = ip + sval * 4;
676                 g_string_append_c (str, '(');
677                 for (i = 0; i < sval; ++i) {
678                         if (i > 0)
679                                 g_string_append (str, ", ");
680                         label = read32 (ip);
681                         if (dh->label_target)
682                                 g_string_append_printf (str, dh->label_target, end + label - il_code);
683                         else
684                                 g_string_append_printf (str, "%d", label);
685                         ip += 4;
686                 }
687                 g_string_append_c (str, ')');
688                 break;
689         }
690         case MonoInlineR: {
691                 double r;
692                 readr8 (ip, &r);
693                 g_string_append_printf (str, "%g", r);
694                 ip += 8;
695                 break;
696         }
697         case MonoShortInlineR: {
698                 float r;
699                 readr4 (ip, &r);
700                 g_string_append_printf (str, "%g", r);
701                 ip += 4;
702                 break;
703         }
704         case MonoInlineI:
705                 g_string_append_printf (str, "%d", (gint32)read32 (ip));
706                 ip += 4;
707                 break;
708         case MonoShortInlineI:
709                 g_string_append_printf (str, "%d", *(const signed char*)ip);
710                 ip ++;
711                 break;
712         case MonoInlineI8:
713                 ip += 8;
714                 break;
715         default:
716                 g_assert_not_reached ();
717         }
718         if (dh->newline)
719                 g_string_append (str, dh->newline);
720
721         mono_metadata_free_mh (header);
722         return ip;
723 }
724
725 static MonoDisHelper
726 default_dh = {
727         "\n",
728         "IL_%04x: ", /* label_format */
729         "IL_%04x", /* label_target */
730         NULL, /* indenter */
731         NULL, /* tokener */
732         NULL  /* user data */
733 };
734
735 char*
736 mono_disasm_code_one (MonoDisHelper *dh, MonoMethod *method, const guchar *ip, const guchar **endp)
737 {
738         char *result;
739         GString *res = g_string_new ("");
740
741         if (!dh)
742                 dh = &default_dh;
743         /* set ip + 2 as the end: this is just a debugging method */
744         ip = dis_one (res, dh, method, ip, ip + 2);
745         if (endp)
746                 *endp = ip;
747         
748         result = res->str;
749         g_string_free (res, FALSE);
750         return result;
751 }
752
753 char*
754 mono_disasm_code (MonoDisHelper *dh, MonoMethod *method, const guchar *ip, const guchar* end)
755 {
756         char *result;
757         GString *res = g_string_new ("");
758
759         if (!dh)
760                 dh = &default_dh;
761         while (ip < end) {
762                 ip = dis_one (res, dh, method, ip, end);
763         }
764         
765         result = res->str;
766         g_string_free (res, FALSE);
767         return result;
768 }
769
770 char *
771 mono_field_full_name (MonoClassField *field)
772 {
773         char *res;
774         const char *nspace = field->parent->name_space;
775
776         res = g_strdup_printf ("%s%s%s:%s", nspace, *nspace ? "." : "",
777                                                    field->parent->name, mono_field_get_name (field));
778
779         return res;
780 }
781
782 char *
783 mono_method_get_name_full (MonoMethod *method, gboolean signature, gboolean ret, MonoTypeNameFormat format)
784 {
785         char *res;
786         char wrapper [64];
787         char *klass_desc;
788         char *inst_desc = NULL;
789
790         if (format == MONO_TYPE_NAME_FORMAT_IL)
791                 klass_desc = mono_type_full_name (&method->klass->byval_arg);
792         else
793                 klass_desc = mono_type_get_name_full (&method->klass->byval_arg, format);
794
795         if (method->is_inflated && ((MonoMethodInflated*)method)->context.method_inst) {
796                 GString *str = g_string_new ("");
797                 if (format == MONO_TYPE_NAME_FORMAT_IL)
798                         g_string_append (str, "<");
799                 else
800                         g_string_append (str, "[");
801                 ginst_get_desc (str, ((MonoMethodInflated*)method)->context.method_inst);
802                 if (format == MONO_TYPE_NAME_FORMAT_IL)
803                         g_string_append_c (str, '>');
804                 else
805                         g_string_append_c (str, ']');
806
807                 inst_desc = str->str;
808                 g_string_free (str, FALSE);
809         } else if (method->is_generic) {
810                 MonoGenericContainer *container = mono_method_get_generic_container (method);
811
812                 GString *str = g_string_new ("");
813                 if (format == MONO_TYPE_NAME_FORMAT_IL)
814                         g_string_append (str, "<");
815                 else
816                         g_string_append (str, "[");
817                 ginst_get_desc (str, container->context.method_inst);
818                 if (format == MONO_TYPE_NAME_FORMAT_IL)
819                         g_string_append_c (str, '>');
820                 else
821                         g_string_append_c (str, ']');
822
823                 inst_desc = str->str;
824                 g_string_free (str, FALSE);
825         }
826
827         if (method->wrapper_type != MONO_WRAPPER_NONE)
828                 sprintf (wrapper, "(wrapper %s) ", wrapper_type_to_str (method->wrapper_type));
829         else
830                 strcpy (wrapper, "");
831
832         if (signature) {
833                 char *tmpsig = mono_signature_get_desc (mono_method_signature (method), TRUE);
834
835                 if (method->wrapper_type != MONO_WRAPPER_NONE)
836                         sprintf (wrapper, "(wrapper %s) ", wrapper_type_to_str (method->wrapper_type));
837                 else
838                         strcpy (wrapper, "");
839                 if (ret) {
840                         char *ret_str = mono_type_full_name (mono_method_signature (method)->ret);
841                         res = g_strdup_printf ("%s%s %s:%s%s (%s)", wrapper, ret_str, klass_desc,
842                                                                    method->name, inst_desc ? inst_desc : "", tmpsig);
843                         g_free (ret_str);
844                 } else {
845                         res = g_strdup_printf ("%s%s:%s%s (%s)", wrapper, klass_desc,
846                                                                    method->name, inst_desc ? inst_desc : "", tmpsig);
847                 }
848                 g_free (tmpsig);
849         } else {
850                 res = g_strdup_printf ("%s%s:%s%s", wrapper, klass_desc,
851                                                            method->name, inst_desc ? inst_desc : "");
852         }
853
854         g_free (klass_desc);
855         g_free (inst_desc);
856
857         return res;
858 }
859
860 char *
861 mono_method_full_name (MonoMethod *method, gboolean signature)
862 {
863         return mono_method_get_name_full (method, signature, FALSE, MONO_TYPE_NAME_FORMAT_IL);
864 }
865
866 char *
867 mono_method_get_full_name (MonoMethod *method)
868 {
869         return mono_method_get_name_full (method, TRUE, TRUE, MONO_TYPE_NAME_FORMAT_IL);
870 }
871
872 static const char*
873 print_name_space (MonoClass *klass)
874 {
875         if (klass->nested_in) {
876                 print_name_space (klass->nested_in);
877                 g_print ("%s", klass->nested_in->name);
878                 return "/";
879         }
880         if (klass->name_space [0]) {
881                 g_print ("%s", klass->name_space);
882                 return ".";
883         }
884         return "";
885 }
886
887 /**
888  * mono_object_describe:
889  *
890  * Prints to stdout a small description of the object @obj.
891  * For use in a debugger.
892  */
893 void
894 mono_object_describe (MonoObject *obj)
895 {
896         MonoClass* klass;
897         const char* sep;
898         if (!obj) {
899                 g_print ("(null)\n");
900                 return;
901         }
902         klass = mono_object_class (obj);
903         if (klass == mono_defaults.string_class) {
904                 char *utf8 = mono_string_to_utf8 ((MonoString*)obj);
905                 if (strlen (utf8) > 60) {
906                         utf8 [57] = '.';
907                         utf8 [58] = '.';
908                         utf8 [59] = '.';
909                         utf8 [60] = 0;
910                 }
911                 g_print ("String at %p, length: %d, '%s'\n", obj, mono_string_length ((MonoString*) obj), utf8);
912                 g_free (utf8);
913         } else if (klass->rank) {
914                 MonoArray *array = (MonoArray*)obj;
915                 sep = print_name_space (klass);
916                 g_print ("%s%s", sep, klass->name);
917                 g_print (" at %p, rank: %d, length: %d\n", obj, klass->rank, (int)mono_array_length (array));
918         } else {
919                 sep = print_name_space (klass);
920                 g_print ("%s%s", sep, klass->name);
921                 g_print (" object at %p (klass: %p)\n", obj, klass);
922         }
923
924 }
925
926 static void
927 print_field_value (const char *field_ptr, MonoClassField *field, int type_offset)
928 {
929         MonoType *type;
930         g_print ("At %p (ofs: %2d) %s: ", field_ptr, field->offset + type_offset, mono_field_get_name (field));
931         type = mono_type_get_underlying_type (field->type);
932
933         switch (type->type) {
934         case MONO_TYPE_I:
935         case MONO_TYPE_U:
936         case MONO_TYPE_PTR:
937         case MONO_TYPE_FNPTR:
938                 g_print ("%p\n", *(const void**)field_ptr);
939                 break;
940         case MONO_TYPE_STRING:
941         case MONO_TYPE_SZARRAY:
942         case MONO_TYPE_CLASS:
943         case MONO_TYPE_OBJECT:
944         case MONO_TYPE_ARRAY:
945                 mono_object_describe (*(MonoObject**)field_ptr);
946                 break;
947         case MONO_TYPE_GENERICINST:
948                 if (!mono_type_generic_inst_is_valuetype (type)) {
949                         mono_object_describe (*(MonoObject**)field_ptr);
950                         break;
951                 } else {
952                         /* fall through */
953                 }
954         case MONO_TYPE_VALUETYPE: {
955                 MonoClass *k = mono_class_from_mono_type (type);
956                 g_print ("%s ValueType (type: %p) at %p\n", k->name, k, field_ptr);
957                 break;
958         }
959         case MONO_TYPE_I1:
960                 g_print ("%d\n", *(gint8*)field_ptr);
961                 break;
962         case MONO_TYPE_U1:
963                 g_print ("%d\n", *(guint8*)field_ptr);
964                 break;
965         case MONO_TYPE_I2:
966                 g_print ("%d\n", *(gint16*)field_ptr);
967                 break;
968         case MONO_TYPE_U2:
969                 g_print ("%d\n", *(guint16*)field_ptr);
970                 break;
971         case MONO_TYPE_I4:
972                 g_print ("%d\n", *(gint32*)field_ptr);
973                 break;
974         case MONO_TYPE_U4:
975                 g_print ("%u\n", *(guint32*)field_ptr);
976                 break;
977         case MONO_TYPE_I8:
978                 g_print ("%lld\n", (long long int)*(gint64*)field_ptr);
979                 break;
980         case MONO_TYPE_U8:
981                 g_print ("%llu\n", (long long unsigned int)*(guint64*)field_ptr);
982                 break;
983         case MONO_TYPE_R4:
984                 g_print ("%f\n", *(gfloat*)field_ptr);
985                 break;
986         case MONO_TYPE_R8:
987                 g_print ("%f\n", *(gdouble*)field_ptr);
988                 break;
989         case MONO_TYPE_BOOLEAN:
990                 g_print ("%s (%d)\n", *(guint8*)field_ptr? "True": "False", *(guint8*)field_ptr);
991                 break;
992         case MONO_TYPE_CHAR:
993                 g_print ("'%c' (%d 0x%04x)\n", *(guint16*)field_ptr, *(guint16*)field_ptr, *(guint16*)field_ptr);
994                 break;
995         default:
996                 g_assert_not_reached ();
997                 break;
998         }
999 }
1000
1001 static void
1002 objval_describe (MonoClass *klass, const char *addr)
1003 {
1004         MonoClassField *field;
1005         MonoClass *p;
1006         const char *field_ptr;
1007         gssize type_offset = 0;
1008
1009         if (klass->valuetype)
1010                 type_offset = -sizeof (MonoObject);
1011
1012         for (p = klass; p != NULL; p = p->parent) {
1013                 gpointer iter = NULL;
1014                 int printed_header = FALSE;
1015                 while ((field = mono_class_get_fields (p, &iter))) {
1016                         if (field->type->attrs & (FIELD_ATTRIBUTE_STATIC | FIELD_ATTRIBUTE_HAS_FIELD_RVA))
1017                                 continue;
1018
1019                         if (p != klass && !printed_header) {
1020                                 const char *sep;
1021                                 g_print ("In class ");
1022                                 sep = print_name_space (p);
1023                                 g_print ("%s%s:\n", sep, p->name);
1024                                 printed_header = TRUE;
1025                         }
1026                         field_ptr = (const char*)addr + field->offset + type_offset;
1027
1028                         print_field_value (field_ptr, field, type_offset);
1029                 }
1030         }
1031 }
1032
1033 /**
1034  * mono_object_describe_fields:
1035  *
1036  * Prints to stdout a small description of each field of the object @obj.
1037  * For use in a debugger.
1038  */
1039 void
1040 mono_object_describe_fields (MonoObject *obj)
1041 {
1042         MonoClass *klass = mono_object_class (obj);
1043         objval_describe (klass, (char*)obj);
1044 }
1045
1046 /**
1047  * mono_value_describe_fields:
1048  *
1049  * Prints to stdout a small description of each field of the value type
1050  * stored at @addr of type @klass.
1051  * For use in a debugger.
1052  */
1053 void
1054 mono_value_describe_fields (MonoClass* klass, const char* addr)
1055 {
1056         objval_describe (klass, addr);
1057 }
1058
1059 /**
1060  * mono_class_describe_statics:
1061  *
1062  * Prints to stdout a small description of each static field of the type @klass
1063  * in the current application domain.
1064  * For use in a debugger.
1065  */
1066 void
1067 mono_class_describe_statics (MonoClass* klass)
1068 {
1069         MonoClassField *field;
1070         MonoClass *p;
1071         const char *field_ptr;
1072         MonoVTable *vtable = mono_class_vtable_full (mono_domain_get (), klass, FALSE);
1073         const char *addr;
1074
1075         if (!vtable)
1076                 return;
1077         if (!(addr = (const char *)mono_vtable_get_static_field_data (vtable)))
1078                 return;
1079
1080         for (p = klass; p != NULL; p = p->parent) {
1081                 gpointer iter = NULL;
1082                 while ((field = mono_class_get_fields (p, &iter))) {
1083                         if (field->type->attrs & FIELD_ATTRIBUTE_LITERAL)
1084                                 continue;
1085                         if (!(field->type->attrs & (FIELD_ATTRIBUTE_STATIC | FIELD_ATTRIBUTE_HAS_FIELD_RVA)))
1086                                 continue;
1087
1088                         field_ptr = (const char*)addr + field->offset;
1089
1090                         print_field_value (field_ptr, field, 0);
1091                 }
1092         }
1093 }
1094
1095 /**
1096  * mono_print_method_code
1097  * @MonoMethod: a pointer to the method
1098  *
1099  * This method is used from a debugger to print the code of the method.
1100  *
1101  * This prints the IL code of the method in the standard output.
1102  */
1103 void
1104 mono_method_print_code (MonoMethod *method)
1105 {
1106         char *code;
1107         MonoMethodHeader *header = mono_method_get_header (method);
1108         if (!header) {
1109                 printf ("METHOD HEADER NOT FOUND\n");
1110                 return;
1111         }
1112         code = mono_disasm_code (0, method, header->code, header->code + header->code_size);
1113         printf ("CODE FOR %s:\n%s\n", mono_method_full_name (method, TRUE), code);
1114         g_free (code);
1115 }