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