2 * trace.c: Tracing facilities for the Mono Runtime.
5 * Paolo Molaro (lupus@ximian.com)
6 * Dietmar Maurer (dietmar@ximian.com)
8 * (C) 2002 Ximian, Inc.
21 #include <mono/metadata/debug-helpers.h>
22 #include <mono/metadata/assembly.h>
23 #include <mono/utils/mono-time.h>
26 static MonoTraceSpec trace_spec
;
29 mono_trace_eval (MonoMethod
*method
)
34 for (i
= 0; i
< trace_spec
.len
; i
++){
35 MonoTraceOperation
*op
= &trace_spec
.ops
[i
];
39 case MONO_TRACEOP_ALL
:
41 case MONO_TRACEOP_PROGRAM
:
42 if (trace_spec
.assembly
&& (method
->klass
->image
== mono_assembly_get_image (trace_spec
.assembly
)))
44 case MONO_TRACEOP_METHOD
:
45 if (mono_method_desc_full_match ((MonoMethodDesc
*) op
->data
, method
))
47 case MONO_TRACEOP_CLASS
:
48 if (strcmp (method
->klass
->name_space
, op
->data
) == 0)
49 if (strcmp (method
->klass
->name
, op
->data2
) == 0)
52 case MONO_TRACEOP_ASSEMBLY
:
53 if (strcmp (mono_image_get_name (method
->klass
->image
), op
->data
) == 0)
55 case MONO_TRACEOP_NAMESPACE
:
56 if (strcmp (method
->klass
->name_space
, op
->data
) == 0)
68 static int is_filenamechar (char p
)
70 if (p
>= 'A' && p
<= 'Z')
72 if (p
>= 'a' && p
<= 'z')
74 if (p
>= '0' && p
<= '9')
76 if (p
== '.' || p
== ':' || p
== '_' || p
== '-')
84 static void get_string (void)
87 while (is_filenamechar (*input
)){
92 value
= g_malloc (input
- start
+ 1);
93 strncpy (value
, start
, input
-start
);
94 value
[input
-start
] = 0;
114 if (input
[0] == '\0') {
117 if (input
[0] == 'M' && input
[1] == ':'){
122 if (input
[0] == 'N' && input
[1] == ':'){
125 return TOKEN_NAMESPACE
;
127 if (input
[0] == 'T' && input
[1] == ':'){
132 if (is_filenamechar (*input
)){
134 if (strcmp (value
, "all") == 0)
136 if (strcmp (value
, "program") == 0)
137 return TOKEN_PROGRAM
;
138 if (strcmp (value
, "disabled") == 0)
139 return TOKEN_DISABLED
;
144 return TOKEN_EXCLUDE
;
148 return TOKEN_SEPARATOR
;
151 fprintf (stderr
, "Syntax error at or around '%s'\n", input
);
165 int token
= get_token ();
166 if (token
== TOKEN_EXCLUDE
){
167 token
= get_spec (last
);
168 if (token
== TOKEN_EXCLUDE
){
169 fprintf (stderr
, "Expecting an expression");
172 if (token
== TOKEN_ERROR
)
174 trace_spec
.ops
[(*last
)-1].exclude
= 1;
175 return TOKEN_SEPARATOR
;
177 if (token
== TOKEN_END
|| token
== TOKEN_SEPARATOR
|| token
== TOKEN_ERROR
)
180 if (token
== TOKEN_METHOD
){
181 MonoMethodDesc
*desc
= mono_method_desc_new (value
, TRUE
);
183 fprintf (stderr
, "Invalid method name: %s\n", value
);
186 trace_spec
.ops
[*last
].op
= MONO_TRACEOP_METHOD
;
187 trace_spec
.ops
[*last
].data
= desc
;
188 } else if (token
== TOKEN_ALL
)
189 trace_spec
.ops
[*last
].op
= MONO_TRACEOP_ALL
;
190 else if (token
== TOKEN_PROGRAM
)
191 trace_spec
.ops
[*last
].op
= MONO_TRACEOP_PROGRAM
;
192 else if (token
== TOKEN_NAMESPACE
){
193 trace_spec
.ops
[*last
].op
= MONO_TRACEOP_NAMESPACE
;
194 trace_spec
.ops
[*last
].data
= g_strdup (value
);
195 } else if (token
== TOKEN_CLASS
){
196 char *p
= strrchr (value
, '.');
199 trace_spec
.ops
[*last
].data
= g_strdup (value
);
200 trace_spec
.ops
[*last
].data2
= g_strdup (p
);
203 trace_spec
.ops
[*last
].data
= g_strdup ("");
204 trace_spec
.ops
[*last
].data2
= g_strdup (value
);
206 trace_spec
.ops
[*last
].op
= MONO_TRACEOP_CLASS
;
207 } else if (token
== TOKEN_STRING
){
208 trace_spec
.ops
[*last
].op
= MONO_TRACEOP_ASSEMBLY
;
209 trace_spec
.ops
[*last
].data
= g_strdup (value
);
210 } else if (token
== TOKEN_DISABLED
) {
211 trace_spec
.enabled
= FALSE
;
213 fprintf (stderr
, "Syntax error in trace option specification\n");
217 return TOKEN_SEPARATOR
;
221 mono_trace_parse_options (const char *options
)
223 char *p
= (char*)options
;
228 trace_spec
.enabled
= TRUE
;
231 trace_spec
.ops
= g_new0 (MonoTraceOperation
, 1);
232 trace_spec
.ops
[0].op
= MONO_TRACEOP_ALL
;
236 for (p
= (char*)options
; *p
!= 0; p
++)
240 trace_spec
.ops
= g_new0 (MonoTraceOperation
, size
);
242 input
= (char*)options
;
245 while ((token
= (get_spec (&last_used
))) != TOKEN_END
){
246 if (token
== TOKEN_ERROR
)
248 if (token
== TOKEN_SEPARATOR
)
251 trace_spec
.len
= last_used
;
257 mono_trace_set_assembly (MonoAssembly
*assembly
)
259 trace_spec
.assembly
= assembly
;
263 #ifdef HAVE_KW_THREAD
266 int indent_level
= 0;
267 static guint64 start_time
= 0;
269 static double seconds_since_start (void)
271 guint64 diff
= mono_100ns_ticks () - start_time
;
272 return diff
/10000000.0;
275 static void indent (int diff
) {
278 indent_level
+= diff
;
281 start_time
= mono_100ns_ticks ();
282 printf ("[%p: %.5f %d] ", (void*)GetCurrentThreadId (), seconds_since_start (), indent_level
);
284 indent_level
+= diff
;
288 string_to_utf8 (MonoString
*s
)
291 GError
*error
= NULL
;
296 return g_strdup ("");
298 as
= g_utf16_to_utf8 (mono_string_chars (s
), s
->length
, NULL
, NULL
, &error
);
300 /* Happens with StringBuilders */
301 g_error_free (error
);
302 return g_strdup ("<INVALID UTF8>");
309 * cpos (ebp + arg_info[n].offset) points to the beginning of the
310 * stack slot for this argument. On little-endian systems, we can
311 * simply dereference it. On big-endian systems, we need to adjust
312 * cpos upward first if the datatype we're referencing is smaller than
313 * a stack slot. Also - one can't assume that gpointer is also the
314 * size of a stack slot - use SIZEOF_REGISTER instead. The following
315 * helper macro tries to keep down the mess of all the pointer
318 #if (G_BYTE_ORDER == G_LITTLE_ENDIAN)
319 #define arg_in_stack_slot(cpos, type) ((type *)(cpos))
321 #define arg_in_stack_slot(cpos, type) ((type *)((sizeof(type) < SIZEOF_REGISTER) ? (((gssize)(cpos)) + SIZEOF_REGISTER - sizeof(type)) : (gssize)(cpos)))
325 mono_trace_enter_method (MonoMethod
*method
, char *ebp
)
330 MonoJitArgumentInfo
*arg_info
;
331 MonoMethodSignature
*sig
;
334 if (!trace_spec
.enabled
)
337 fname
= mono_method_full_name (method
, TRUE
);
339 printf ("ENTER: %s(", fname
);
343 printf (") ip: %p\n", __builtin_return_address (1));
347 sig
= mono_method_signature (method
);
349 arg_info
= alloca (sizeof (MonoJitArgumentInfo
) * (sig
->param_count
+ 1));
351 mono_arch_get_argument_info (sig
, sig
->param_count
, arg_info
);
353 if (MONO_TYPE_ISSTRUCT (mono_method_signature (method
)->ret
)) {
354 g_assert (!mono_method_signature (method
)->ret
->byref
);
356 printf ("VALUERET:%p, ", *((gpointer
*)(ebp
+ 8)));
359 if (mono_method_signature (method
)->hasthis
) {
360 gpointer
*this = (gpointer
*)(ebp
+ arg_info
[0].offset
);
361 if (method
->klass
->valuetype
) {
362 printf ("value:%p, ", *arg_in_stack_slot(this, gpointer
*));
364 o
= *arg_in_stack_slot(this, MonoObject
*);
367 class = o
->vtable
->klass
;
369 if (class == mono_defaults
.string_class
) {
370 MonoString
*s
= (MonoString
*)o
;
371 char *as
= string_to_utf8 (s
);
373 printf ("this:[STRING:%p:%s], ", o
, as
);
376 printf ("this:%p[%s.%s %s], ", o
, class->name_space
, class->name
, o
->vtable
->domain
->friendly_name
);
379 printf ("this:NULL, ");
383 for (i
= 0; i
< mono_method_signature (method
)->param_count
; ++i
) {
384 gpointer
*cpos
= (gpointer
*)(ebp
+ arg_info
[i
+ 1].offset
);
385 int size
= arg_info
[i
+ 1].size
;
387 MonoType
*type
= mono_method_signature (method
)->params
[i
];
390 printf ("[BYREF:%p], ", *arg_in_stack_slot(cpos
, gpointer
*));
391 } else switch (mono_type_get_underlying_type (type
)->type
) {
395 printf ("%p, ", *arg_in_stack_slot(cpos
, gpointer
*));
397 case MONO_TYPE_BOOLEAN
:
401 printf ("%d, ", *arg_in_stack_slot(cpos
, gint8
));
405 printf ("%d, ", *arg_in_stack_slot(cpos
, gint16
));
409 printf ("%d, ", *arg_in_stack_slot(cpos
, int));
411 case MONO_TYPE_STRING
: {
412 MonoString
*s
= *arg_in_stack_slot(cpos
, MonoString
*);
416 g_assert (((MonoObject
*)s
)->vtable
->klass
== mono_defaults
.string_class
);
417 as
= string_to_utf8 (s
);
419 printf ("[STRING:%p:%s], ", s
, as
);
422 printf ("[STRING:null], ");
425 case MONO_TYPE_CLASS
:
426 case MONO_TYPE_OBJECT
: {
427 o
= *arg_in_stack_slot(cpos
, MonoObject
*);
429 class = o
->vtable
->klass
;
431 if (class == mono_defaults
.string_class
) {
432 char *as
= string_to_utf8 ((MonoString
*)o
);
434 printf ("[STRING:%p:%s], ", o
, as
);
436 } else if (class == mono_defaults
.int32_class
) {
437 printf ("[INT32:%p:%d], ", o
, *(gint32
*)((char *)o
+ sizeof (MonoObject
)));
438 } else if (class == mono_defaults
.monotype_class
) {
439 printf ("[TYPE:%s], ", mono_type_full_name (((MonoReflectionType
*)o
)->type
));
441 printf ("[%s.%s:%p], ", class->name_space
, class->name
, o
);
443 printf ("%p, ", *arg_in_stack_slot(cpos
, gpointer
));
448 case MONO_TYPE_FNPTR
:
449 case MONO_TYPE_ARRAY
:
450 case MONO_TYPE_SZARRAY
:
451 printf ("%p, ", *arg_in_stack_slot(cpos
, gpointer
));
455 printf ("0x%016llx, ", (long long)*arg_in_stack_slot(cpos
, gint64
));
458 printf ("%f, ", *arg_in_stack_slot(cpos
, float));
461 printf ("%f, ", *arg_in_stack_slot(cpos
, double));
463 case MONO_TYPE_VALUETYPE
:
465 for (j
= 0; j
< size
; j
++)
466 printf ("%02x,", *((guint8
*)cpos
+j
));
479 mono_trace_leave_method (MonoMethod
*method
, ...)
485 if (!trace_spec
.enabled
)
488 va_start(ap
, method
);
490 fname
= mono_method_full_name (method
, TRUE
);
492 printf ("LEAVE: %s", fname
);
495 type
= mono_method_signature (method
)->ret
;
498 switch (type
->type
) {
501 case MONO_TYPE_BOOLEAN
: {
502 int eax
= va_arg (ap
, int);
504 printf ("TRUE:%d", eax
);
519 int eax
= va_arg (ap
, int);
520 printf ("result=%d", eax
);
523 case MONO_TYPE_STRING
: {
524 MonoString
*s
= va_arg (ap
, MonoString
*);
529 g_assert (((MonoObject
*)s
)->vtable
->klass
== mono_defaults
.string_class
);
530 as
= string_to_utf8 (s
);
531 printf ("[STRING:%p:%s]", s
, as
);
534 printf ("[STRING:null], ");
537 case MONO_TYPE_CLASS
:
538 case MONO_TYPE_OBJECT
: {
539 MonoObject
*o
= va_arg (ap
, MonoObject
*);
542 if (o
->vtable
->klass
== mono_defaults
.boolean_class
) {
543 printf ("[BOOLEAN:%p:%d]", o
, *((guint8
*)o
+ sizeof (MonoObject
)));
544 } else if (o
->vtable
->klass
== mono_defaults
.int32_class
) {
545 printf ("[INT32:%p:%d]", o
, *((gint32
*)((char *)o
+ sizeof (MonoObject
))));
546 } else if (o
->vtable
->klass
== mono_defaults
.int64_class
) {
547 printf ("[INT64:%p:%lld]", o
, (long long)*((gint64
*)((char *)o
+ sizeof (MonoObject
))));
549 printf ("[%s.%s:%p]", o
->vtable
->klass
->name_space
, o
->vtable
->klass
->name
, o
);
551 printf ("[OBJECT:%p]", o
);
556 case MONO_TYPE_FNPTR
:
557 case MONO_TYPE_ARRAY
:
558 case MONO_TYPE_SZARRAY
: {
559 gpointer p
= va_arg (ap
, gpointer
);
560 printf ("result=%p", p
);
564 gint64 l
= va_arg (ap
, gint64
);
565 printf ("lresult=0x%16llx", (long long)l
);
569 gint64 l
= va_arg (ap
, gint64
);
570 printf ("lresult=0x%16llx", (long long)l
);
575 double f
= va_arg (ap
, double);
576 printf ("FP=%f\n", f
);
579 case MONO_TYPE_VALUETYPE
:
580 if (type
->data
.klass
->enumtype
) {
581 type
= mono_class_enum_basetype (type
->data
.klass
);
584 guint8
*p
= va_arg (ap
, gpointer
);
586 size
= mono_type_size (type
, &align
);
588 for (j
= 0; p
&& j
< size
; j
++)
589 printf ("%02x,", p
[j
]);
594 printf ("(unknown return type %x)", mono_method_signature (method
)->ret
->type
);
597 //printf (" ip: %p\n", __builtin_return_address (1));
603 mono_trace_enable (gboolean enable
)
605 trace_spec
.enabled
= enable
;
609 mono_trace_is_enabled ()
611 return trace_spec
.enabled
;