2 * simple backtrace facility
6 * This software is part of the SBCL system. See the README file for
9 * This software is derived from the CMU CL system, which was
10 * written at Carnegie Mellon University and released into the
11 * public domain. The software is in the public domain and is
12 * provided with absolutely no warranty. See the COPYING and CREDITS
13 * files for more information.
16 /* needed if we want dladdr() and Dl_Info from glibc's dlfcn.h */
25 #include "interrupt.h"
29 #include "genesis/compiled-debug-fun.h"
30 #include "genesis/compiled-debug-info.h"
31 #include "genesis/package.h"
32 #include "genesis/static-symbols.h"
33 #include "genesis/primitive-objects.h"
36 #ifdef LISP_FEATURE_OS_PROVIDES_DLADDR
41 sbcl_putwc(wchar_t c
, FILE *file
)
43 #ifdef LISP_FEATURE_OS_PROVIDES_PUTWC
54 struct compiled_debug_fun
*
55 debug_function_from_pc (struct code
* code
, void *pc
)
57 uword_t code_header_len
= sizeof(lispobj
) * HeaderValue(code
->header
);
59 = (uword_t
) pc
- (uword_t
) code
- code_header_len
;
60 struct compiled_debug_fun
*df
;
61 struct compiled_debug_info
*di
;
65 if (lowtag_of(code
->debug_info
) != INSTANCE_POINTER_LOWTAG
)
68 di
= (struct compiled_debug_info
*) native_pointer(code
->debug_info
);
70 if (lowtag_of(di
->fun_map
) != INSTANCE_POINTER_LOWTAG
)
73 v
= (struct vector
*) native_pointer(di
->fun_map
);
75 len
= fixnum_value(v
->length
);
77 if (lowtag_of(v
->data
[0]) != INSTANCE_POINTER_LOWTAG
)
80 df
= (struct compiled_debug_fun
*) native_pointer(v
->data
[0]);
85 for (i
= 1;; i
+= 2) {
89 return ((struct compiled_debug_fun
*) native_pointer(v
->data
[i
- 1]));
91 if (offset
>= (uword_t
)fixnum_value(df
->elsewhere_pc
)) {
92 struct compiled_debug_fun
*p
93 = ((struct compiled_debug_fun
*) native_pointer(v
->data
[i
+ 1]));
94 next_pc
= fixnum_value(p
->elsewhere_pc
);
96 next_pc
= fixnum_value(v
->data
[i
]);
99 return ((struct compiled_debug_fun
*) native_pointer(v
->data
[i
- 1]));
106 print_string (lispobj
*object
)
108 int tag
= widetag_of(*object
);
109 struct vector
*vector
= (struct vector
*) object
;
114 int n = fixnum_value(vector->length); \
115 TYPE *data = (TYPE *) vector->data; \
116 for (i = 0; i < n; i++) { \
117 wchar_t c = (wchar_t) data[i]; \
118 if (c == '\\' || c == '"') \
120 sbcl_putwc(c, stdout); \
125 case SIMPLE_BASE_STRING_WIDETAG
:
128 #ifdef SIMPLE_CHARACTER_STRING_WIDETAG
129 case SIMPLE_CHARACTER_STRING_WIDETAG
:
134 printf("<??? type %d>", tag
);
139 static int string_equal (lispobj
*object
, char *string
)
141 int tag
= widetag_of(*object
);
142 struct vector
*vector
= (struct vector
*) object
;
144 if (tag
!= SIMPLE_BASE_STRING_WIDETAG
)
146 return !strcmp((char *) vector
->data
, string
);
150 print_entry_name (lispobj name
)
152 if (lowtag_of (name
) == LIST_POINTER_LOWTAG
) {
154 while (name
!= NIL
) {
155 if (lowtag_of (name
) != LIST_POINTER_LOWTAG
) {
156 printf("%p: unexpected lowtag while printing a cons\n",
160 struct cons
*cons
= (struct cons
*) native_pointer(name
);
161 print_entry_name(cons
->car
);
167 } else if (lowtag_of(name
) == OTHER_POINTER_LOWTAG
) {
168 lispobj
*object
= (lispobj
*) native_pointer(name
);
169 if (widetag_of(*object
) == SYMBOL_HEADER_WIDETAG
) {
170 struct symbol
*symbol
= (struct symbol
*) object
;
171 if (symbol
->package
!= NIL
) {
173 = (struct package
*) native_pointer(symbol
->package
);
174 lispobj pkg_name
= pkg
->_name
;
175 if (string_equal(native_pointer(pkg_name
), "COMMON-LISP"))
177 else if (string_equal(native_pointer(pkg_name
), "COMMON-LISP-USER")) {
178 fputs("CL-USER::", stdout
);
180 else if (string_equal(native_pointer(pkg_name
), "KEYWORD")) {
183 print_string(native_pointer(pkg_name
));
187 print_string(native_pointer(symbol
->name
));
188 } else if (widetag_of(*object
) == SIMPLE_BASE_STRING_WIDETAG
189 #ifdef SIMPLE_CHARACTER_STRING_WIDETAG
190 || widetag_of(*object
) == SIMPLE_CHARACTER_STRING_WIDETAG
194 print_string(object
);
197 printf("<??? type %d>", (int) widetag_of(*object
));
200 printf("<??? lowtag %d>", (int) lowtag_of(name
));
205 print_entry_points (struct code
*code
)
207 lispobj function
= code
->entry_points
;
209 while (function
!= NIL
) {
210 if (lowtag_of(function
) != FUN_POINTER_LOWTAG
) {
211 printf("%p: bogus function entry", (void *) function
);
214 struct simple_fun
*header
= (struct simple_fun
*) native_pointer(function
);
215 print_entry_name(header
->name
);
217 function
= header
->next
;
224 #if !(defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64))
226 /* KLUDGE: Sigh ... I know what the call frame looks like and it had
227 * better not change. */
230 #ifndef LISP_FEATURE_ALPHA
231 struct call_frame
*old_cont
;
237 lispobj other_state
[5];
241 #ifndef LISP_FEATURE_ALPHA
242 struct call_frame
*frame
;
247 #ifndef LISP_FEATURE_ALPHA
253 int pc
; /* Note: this is the trace file offset, not the actual pc. */
256 #define HEADER_LENGTH(header) ((header)>>8)
258 static int previous_info(struct call_info
*info
);
261 code_pointer(lispobj object
)
263 lispobj
*headerp
, header
;
266 headerp
= (lispobj
*) native_pointer(object
);
268 type
= widetag_of(header
);
271 case CODE_HEADER_WIDETAG
:
273 case RETURN_PC_HEADER_WIDETAG
:
274 case SIMPLE_FUN_HEADER_WIDETAG
:
275 len
= HEADER_LENGTH(header
);
285 return (struct code
*) headerp
;
289 cs_valid_pointer_p(struct call_frame
*pointer
)
291 struct thread
*thread
=arch_os_get_current_thread();
292 return (((char *) thread
->control_stack_start
<= (char *) pointer
) &&
293 ((char *) pointer
< (char *) access_control_stack_pointer(thread
)));
297 call_info_from_lisp_state(struct call_info
*info
)
299 info
->frame
= (struct call_frame
*)access_control_frame_pointer(arch_os_get_current_thread());
300 info
->interrupted
= 0;
309 call_info_from_context(struct call_info
*info
, os_context_t
*context
)
313 info
->interrupted
= 1;
314 #if !defined(LISP_FEATURE_ARM) && !defined(LISP_FEATURE_ARM64)
315 if (lowtag_of(*os_context_register_addr(context
, reg_CODE
))
316 == FUN_POINTER_LOWTAG
) {
317 /* We tried to call a function, but crapped out before $CODE could
318 * be fixed up. Probably an undefined function. */
320 (struct call_frame
*)(uword_t
)
321 (*os_context_register_addr(context
, reg_OCFP
));
322 info
->lra
= (lispobj
)(*os_context_register_addr(context
, reg_LRA
));
323 info
->code
= code_pointer(info
->lra
);
324 pc
= (uword_t
)native_pointer(info
->lra
);
329 (struct call_frame
*)(uword_t
)
330 (*os_context_register_addr(context
, reg_CFP
));
332 code_pointer(*os_context_register_addr(context
, reg_CODE
));
334 pc
= *os_context_pc_addr(context
);
336 if (info
->code
!= NULL
)
337 info
->pc
= pc
- (uword_t
) info
->code
-
338 #ifndef LISP_FEATURE_ALPHA
339 (HEADER_LENGTH(info
->code
->header
) * sizeof(lispobj
));
341 (HEADER_LENGTH(((struct code
*)info
->code
)->header
) * sizeof(lispobj
));
348 previous_info(struct call_info
*info
)
350 struct call_frame
*this_frame
;
351 struct thread
*thread
=arch_os_get_current_thread();
355 if (!cs_valid_pointer_p(info
->frame
)) {
356 printf("Bogus callee value (0x%08lx).\n", (uword_t
)info
->frame
);
360 this_frame
= info
->frame
;
361 info
->lra
= this_frame
->saved_lra
;
362 info
->frame
= this_frame
->old_cont
;
363 info
->interrupted
= 0;
365 if (info
->frame
== NULL
|| info
->frame
== this_frame
)
369 /* We were interrupted. Find the correct signal context. */
370 free_ici
= fixnum_value(SymbolValue(FREE_INTERRUPT_CONTEXT_INDEX
,thread
));
371 while (free_ici
-- > 0) {
372 os_context_t
*context
=
373 thread
->interrupt_contexts
[free_ici
];
374 if ((struct call_frame
*)(uword_t
)
375 (*os_context_register_addr(context
, reg_CFP
))
377 call_info_from_context(info
, context
);
381 } else if (fixnump(lra
)) {
382 info
->code
= native_pointer(this_frame
->code
);
383 info
->pc
= (uword_t
)(info
->code
+ lra
);
386 info
->code
= code_pointer(lra
);
388 if (info
->code
!= NULL
)
389 info
->pc
= (uword_t
)native_pointer(info
->lra
) -
390 (uword_t
)info
->code
-
391 #ifndef LISP_FEATURE_ALPHA
392 (HEADER_LENGTH(info
->code
->header
) * sizeof(lispobj
));
394 (HEADER_LENGTH(((struct code
*)info
->code
)->header
) * sizeof(lispobj
));
404 lisp_backtrace(int nframes
)
406 struct call_info info
;
408 call_info_from_lisp_state(&info
);
413 if (info
.code
!= (struct code
*) 0) {
414 struct compiled_debug_fun
*df
;
415 if (info
.lra
!= NIL
&&
416 (df
= debug_function_from_pc((struct code
*)info
.code
, (void *)info
.lra
)))
417 print_entry_name(df
->name
);
419 print_entry_points((struct code
*)info
.code
);
421 printf(" %p", (uword_t
) info
.code
| OTHER_POINTER_LOWTAG
);
424 printf("CODE = ???");
425 printf("%s fp = %p", info
.interrupted
? " [interrupted]" : "",
429 printf(" LRA = %p", info
.lra
);
434 printf(" pc = %p", info
.pc
);
437 } while (i
++ < nframes
&& previous_info(&info
));
443 altstack_pointer_p (void *p
) {
444 #ifndef LISP_FEATURE_WIN32
445 void* stack_start
= ((void *)arch_os_get_current_thread()) + dynamic_values_bytes
;
446 void* stack_end
= stack_start
+ 32*SIGSTKSZ
;
448 return (p
> stack_start
&& p
<= stack_end
);
450 /* Win32 doesn't do altstack */
456 stack_pointer_p (void *p
)
458 /* we are using sizeof(long) here, because that is the right value on both
459 * x86 and x86-64. (But note that false positives would not cause much harm
460 * given the heuristical nature of x86_call_context.) */
461 uword_t stack_alignment
= sizeof(void*);
463 struct thread
*thread
= arch_os_get_current_thread();
465 if (altstack_pointer_p(p
))
468 if (altstack_pointer_p(&p
)) {
469 stack_start
= (void *) thread
->control_stack_start
;
471 /* Use the current frame address, since there should be no
472 * relevant frames below. */
475 return p
>= stack_start
476 && p
< (void *) thread
->control_stack_end
477 && (((uword_t
) p
) & (stack_alignment
-1)) == 0;
481 ra_pointer_p (void *ra
)
483 /* the check against 4096 is still a mystery to everyone interviewed about
484 * it, but recent changes to sb-sprof seem to suggest that such values
485 * do occur sometimes. */
486 return ((uword_t
) ra
) > 4096 && !stack_pointer_p (ra
);
490 x86_call_context (void *fp
, void **ra
, void **ocfp
)
496 if (!stack_pointer_p(fp
))
499 c_ocfp
= *((void **) fp
);
500 c_ra
= *((void **) fp
+ 1);
502 c_valid_p
= (c_ocfp
> fp
503 && stack_pointer_p(c_ocfp
)
504 && ra_pointer_p(c_ra
));
507 *ra
= c_ra
, *ocfp
= c_ocfp
;
515 describe_thread_state(void)
518 struct thread
*thread
= arch_os_get_current_thread();
519 struct interrupt_data
*data
= thread
->interrupt_data
;
520 #ifndef LISP_FEATURE_WIN32
521 get_current_sigmask(&mask
);
522 printf("Signal mask:\n");
523 printf(" SIGALRM = %d\n", sigismember(&mask
, SIGALRM
));
524 printf(" SIGINT = %d\n", sigismember(&mask
, SIGINT
));
525 printf(" SIGPROF = %d\n", sigismember(&mask
, SIGPROF
));
526 #ifdef SIG_STOP_FOR_GC
527 printf(" SIG_STOP_FOR_GC = %d\n", sigismember(&mask
, SIG_STOP_FOR_GC
));
530 printf("Specials:\n");
531 printf(" *GC-INHIBIT* = %s\n", (SymbolValue(GC_INHIBIT
, thread
) == T
) ? "T" : "NIL");
532 printf(" *GC-PENDING* = %s\n",
533 (SymbolValue(GC_PENDING
, thread
) == T
) ?
534 "T" : ((SymbolValue(GC_PENDING
, thread
) == NIL
) ?
535 "NIL" : ":IN-PROGRESS"));
536 printf(" *INTERRUPTS-ENABLED* = %s\n", (SymbolValue(INTERRUPTS_ENABLED
, thread
) == T
) ? "T" : "NIL");
537 #ifdef STOP_FOR_GC_PENDING
538 printf(" *STOP-FOR-GC-PENDING* = %s\n", (SymbolValue(STOP_FOR_GC_PENDING
, thread
) == T
) ? "T" : "NIL");
540 printf("Pending handler = %p\n", data
->pending_handler
);
543 void print_backtrace_frame(void *pc
, void *fp
, int i
) {
547 p
= (lispobj
*) component_ptr_from_pc((lispobj
*) pc
);
550 struct code
*cp
= (struct code
*) p
;
551 struct compiled_debug_fun
*df
= debug_function_from_pc(cp
, pc
);
553 print_entry_name(df
->name
);
555 print_entry_points(cp
);
556 printf(", pc = %p, fp = %p", pc
, fp
);
558 #ifdef LISP_FEATURE_OS_PROVIDES_DLADDR
560 if (dladdr(pc
, &info
)) {
561 printf("Foreign function %s, pc = %p, fp = %p", info
.dli_sname
, pc
, fp
);
564 printf("Foreign function, pc = %p, fp = %p", pc
, fp
);
570 /* This function has been split from lisp_backtrace() to enable Lisp
571 * backtraces from gdb with call backtrace_from_fp(...). Useful for
572 * example when debugging threading deadlocks.
575 backtrace_from_fp(void *fp
, int nframes
, int start
)
579 for (; i
< nframes
; ++i
) {
583 if (!x86_call_context(fp
, &ra
, &next_fp
))
585 print_backtrace_frame(ra
, next_fp
, i
);
590 void backtrace_from_context(os_context_t
*context
, int nframes
) {
591 #ifdef LISP_FEATURE_X86
592 void *fp
= (void *)*os_context_register_addr(context
,reg_EBP
);
593 #elif defined (LISP_FEATURE_X86_64)
594 void *fp
= (void *)*os_context_register_addr(context
,reg_RBP
);
596 print_backtrace_frame((void *)*os_context_pc_addr(context
), fp
, 0);
597 backtrace_from_fp(fp
, nframes
- 1, 1);
601 lisp_backtrace(int nframes
)
603 struct thread
*thread
=arch_os_get_current_thread();
604 int free_ici
= fixnum_value(SymbolValue(FREE_INTERRUPT_CONTEXT_INDEX
,thread
));
607 os_context_t
*context
= thread
->interrupt_contexts
[free_ici
- 1];
608 backtrace_from_context(context
, nframes
);
612 #ifdef LISP_FEATURE_X86
613 asm("movl %%ebp,%0" : "=g" (fp
));
614 #elif defined (LISP_FEATURE_X86_64)
615 asm("movq %%rbp,%0" : "=g" (fp
));
617 backtrace_from_fp(fp
, nframes
, 0);