1 /* code for low-level debugging/diagnostic output */
4 * This software is part of the SBCL system. See the README file for
7 * This software is derived from the CMU CL system, which was
8 * written at Carnegie Mellon University and released into the
9 * public domain. The software is in the public domain and is
10 * provided with absolutely no warranty. See the COPYING and CREDITS
11 * files for more information.
16 * Some of the code in here (the various
17 * foo_slots[], at least) is deeply broken, depending on guessing
18 * already out-of-date values instead of getting them from sbcl.h.
27 /* This file can be skipped if we're not supporting LDB. */
28 #if defined(LISP_FEATURE_SB_LDB)
34 static int max_lines = 20, cur_lines = 0;
35 static int max_depth = 5, brief_depth = 2, cur_depth = 0;
36 static int max_length = 5;
37 static boolean dont_descend = 0, skip_newline = 0;
38 static int cur_clock = 0;
40 static void print_obj(char *prefix, lispobj obj);
42 #define NEWLINE_OR_RETURN if (continue_p(1)) newline(NULL); else return;
44 char *lowtag_Names[] = {
47 "other immediate [0]",
51 "other immediate [1]",
55 /* FIXME: Yikes! This table implicitly depends on the values in sbcl.h,
56 * but doesn't actually depend on them, so if they change, it gets
57 * all broken. We should either get rid of it or
58 * rewrite the code so that it's cleanly initialized by gc_init_tables[]
59 * in a way which varies correctly with the values in sbcl.h. */
60 char *subtype_Names[] = {
67 #ifdef LONG_FLOAT_WIDETAG
71 #ifdef COMPLEX_SINGLE_FLOAT_WIDETAG
72 "complex single float",
74 #ifdef COMPLEX_DOUBLE_FLOAT_WIDETAG
75 "complex double float",
77 #ifdef COMPLEX_LONG_FLOAT_WIDETAG
84 "(simple-array (unsigned-byte 2) (*))",
85 "(simple-array (unsigned-byte 4) (*))",
86 "(simple-array (unsigned-byte 8) (*))",
87 "(simple-array (unsigned-byte 16) (*))",
88 "(simple-array (unsigned-byte 32) (*))",
89 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_8_WIDETAG
90 "(simple-array (signed-byte 8) (*))",
92 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_16_WIDETAG
93 "(simple-array (signed-byte 16) (*))",
95 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_30_WIDETAG
96 "(simple-array fixnum (*))",
98 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_32_WIDETAG
99 "(simple-array (signed-byte 32) (*))",
101 "(simple-array single-float (*))",
102 "(simple-array double-float (*))",
103 #ifdef SIMPLE_ARRAY_LONG_FLOAT_WIDETAG
104 "(simple-array long-float (*))",
106 #ifdef SIMPLE_ARRAY_COMPLEX_SINGLE_FLOAT_WIDETAG
107 "(simple-array (complex single-float) (*))",
109 #ifdef SIMPLE_ARRAY_COMPLEX_DOUBLE_FLOAT_WIDETAG
110 "(simple-array (complex double-float) (*))",
112 #ifdef SIMPLE_ARRAY_COMPLEX_LONG_FLOAT_WIDETAG
113 "(simple-array (complex long-float) (*))",
116 "complex-bit-vector",
122 "funcallable-instance header",
123 "unused function header 1",
124 "unused function header 2",
125 "unused function header 3",
126 "closure function header",
138 static void indent(int in)
140 static char *spaces = " ";
143 fputs(spaces, stdout);
147 fputs(spaces + 64 - in, stdout);
150 static boolean continue_p(boolean newline)
154 if (cur_depth >= max_depth || dont_descend)
163 if (cur_lines >= max_lines) {
164 printf("More? [y] ");
167 fgets(buffer, sizeof(buffer), stdin);
169 if (buffer[0] == 'n' || buffer[0] == 'N')
179 static void newline(char *label)
183 fputs(label, stdout);
185 indent(cur_depth * 2);
189 static void brief_fixnum(lispobj obj)
192 printf("%ld", ((long)obj)>>2);
194 printf("%d", ((s32)obj)>>2);
198 static void print_fixnum(lispobj obj)
201 printf(": %ld", ((long)obj)>>2);
203 printf(": %d", ((s32)obj)>>2);
207 static void brief_otherimm(lispobj obj)
212 type = widetag_of(obj);
214 case BASE_CHAR_WIDETAG:
221 printf("#\\Newline");
224 printf("#\\Backspace");
230 strcpy(buffer, "#\\");
232 strcat(buffer, "m-");
236 strcat(buffer, "c-");
239 printf("%s%c", buffer, c);
244 case UNBOUND_MARKER_WIDETAG:
245 printf("<unbound marker>");
250 if (idx < (sizeof(lowtag_Names) / sizeof(char *)))
251 printf("%s", lowtag_Names[idx]);
253 printf("unknown type (0x%0x)", type);
258 static void print_otherimm(lispobj obj)
262 type = widetag_of(obj);
265 if (idx < (sizeof(lowtag_Names) / sizeof(char *)))
266 printf(", %s", lowtag_Names[idx]);
268 printf(", unknown type (0x%0x)", type);
270 switch (widetag_of(obj)) {
271 case BASE_CHAR_WIDETAG:
277 case UNBOUND_MARKER_WIDETAG:
281 printf(": data=%ld", (long) (obj>>8)&0xffffff);
286 static void brief_list(lispobj obj)
291 if (!is_valid_lisp_addr((os_vm_address_t)native_pointer(obj)))
292 printf("(invalid Lisp-level address)");
297 while (lowtag_of(obj) == LIST_POINTER_LOWTAG) {
298 struct cons *cons = (struct cons *)native_pointer(obj);
302 if (++length >= max_length) {
307 print_obj(NULL, cons->car);
315 print_obj(NULL, obj);
321 static void print_list(lispobj obj)
323 if (!is_valid_lisp_addr((os_vm_address_t)native_pointer(obj))) {
324 printf("(invalid address)");
325 } else if (obj == NIL) {
328 struct cons *cons = (struct cons *)native_pointer(obj);
330 print_obj("car: ", cons->car);
331 print_obj("cdr: ", cons->cdr);
335 static void brief_struct(lispobj obj)
337 printf("#<ptr to 0x%08lx instance>",
338 (unsigned long) ((struct instance *)native_pointer(obj))->slots[0]);
341 static void print_struct(lispobj obj)
343 struct instance *instance = (struct instance *)native_pointer(obj);
346 print_obj("type: ", ((struct instance *)native_pointer(obj))->slots[0]);
347 for (i = 1; i < HeaderValue(instance->header); i++) {
348 sprintf(buffer, "slot %d: ", i);
349 print_obj(buffer, instance->slots[i]);
353 static void brief_otherptr(lispobj obj)
355 lispobj *ptr, header;
357 struct symbol *symbol;
358 struct vector *vector;
361 ptr = (lispobj *) native_pointer(obj);
363 if (!is_valid_lisp_addr((os_vm_address_t)obj)) {
364 printf("(invalid address)");
369 type = widetag_of(header);
371 case SYMBOL_HEADER_WIDETAG:
372 symbol = (struct symbol *)ptr;
373 vector = (struct vector *)native_pointer(symbol->name);
374 for (charptr = (char *)vector->data; *charptr != '\0'; charptr++) {
381 case SIMPLE_STRING_WIDETAG:
382 vector = (struct vector *)ptr;
384 for (charptr = (char *)vector->data; *charptr != '\0'; charptr++) {
394 brief_otherimm(header);
399 static void print_slots(char **slots, int count, lispobj *ptr)
401 while (count-- > 0) {
403 print_obj(*slots++, *ptr++);
405 print_obj("???: ", *ptr++);
410 /* FIXME: Yikes again! This, like subtype_Names[], needs to depend
411 * on the values in sbcl.h (or perhaps be generated automatically
412 * by GENESIS as part of sbcl.h). */
413 static char *symbol_slots[] = {"value: ", "unused: ",
414 "plist: ", "name: ", "package: ", NULL};
415 static char *ratio_slots[] = {"numer: ", "denom: ", NULL};
416 static char *complex_slots[] = {"real: ", "imag: ", NULL};
417 static char *code_slots[] = {"words: ", "entry: ", "debug: ", NULL};
418 static char *fn_slots[] = {
419 "self: ", "next: ", "name: ", "arglist: ", "type: ", NULL};
420 static char *closure_slots[] = {"fn: ", NULL};
421 static char *funcallable_instance_slots[] = {"fn: ", "lexenv: ", "layout: ", NULL};
422 static char *weak_pointer_slots[] = {"value: ", NULL};
423 static char *fdefn_slots[] = {"name: ", "function: ", "raw_addr: ", NULL};
424 static char *value_cell_slots[] = {"value: ", NULL};
426 static void print_otherptr(lispobj obj)
428 if (!is_valid_lisp_addr((os_vm_address_t)obj)) {
429 printf("(invalid address)");
433 unsigned long header;
434 unsigned long length;
440 int count, type, index;
441 char *cptr, buffer[16];
443 ptr = (lispobj*) native_pointer(obj);
445 printf(" (NULL Pointer)");
450 length = (*ptr) >> 2;
452 type = widetag_of(header);
454 print_obj("header: ", header);
455 if (lowtag_of(header) != OTHER_IMMEDIATE_0_LOWTAG &&
456 lowtag_of(header) != OTHER_IMMEDIATE_1_LOWTAG) {
458 printf("(invalid header object)");
468 printf("%08lx", (unsigned long) *--ptr);
472 print_slots(ratio_slots, count, ptr);
475 case COMPLEX_WIDETAG:
476 print_slots(complex_slots, count, ptr);
479 case SYMBOL_HEADER_WIDETAG:
480 print_slots(symbol_slots, count, ptr);
483 case SINGLE_FLOAT_WIDETAG:
485 printf("%g", ((struct single_float *)native_pointer(obj))->value);
488 case DOUBLE_FLOAT_WIDETAG:
490 printf("%g", ((struct double_float *)native_pointer(obj))->value);
493 #ifdef LONG_FLOAT_WIDETAG
494 case LONG_FLOAT_WIDETAG:
496 printf("%Lg", ((struct long_float *)native_pointer(obj))->value);
500 #ifdef COMPLEX_SINGLE_FLOAT_WIDETAG
501 case COMPLEX_SINGLE_FLOAT_WIDETAG:
503 printf("%g", ((struct complex_single_float *)native_pointer(obj))->real);
505 printf("%g", ((struct complex_single_float *)native_pointer(obj))->imag);
509 #ifdef COMPLEX_DOUBLE_FLOAT_WIDETAG
510 case COMPLEX_DOUBLE_FLOAT_WIDETAG:
512 printf("%g", ((struct complex_double_float *)native_pointer(obj))->real);
514 printf("%g", ((struct complex_double_float *)native_pointer(obj))->imag);
518 #ifdef COMPLEX_LONG_FLOAT_WIDETAG
519 case COMPLEX_LONG_FLOAT_WIDETAG:
521 printf("%Lg", ((struct complex_long_float *)native_pointer(obj))->real);
523 printf("%Lg", ((struct complex_long_float *)native_pointer(obj))->imag);
527 case SIMPLE_STRING_WIDETAG:
529 cptr = (char *)(ptr+1);
536 case SIMPLE_VECTOR_WIDETAG:
538 printf("length = %ld", length);
541 while (length-- > 0) {
542 sprintf(buffer, "%d: ", index++);
543 print_obj(buffer, *ptr++);
547 case INSTANCE_HEADER_WIDETAG:
549 printf("length = %ld", (long) count);
551 while (count-- > 0) {
552 sprintf(buffer, "%d: ", index++);
553 print_obj(buffer, *ptr++);
557 case SIMPLE_ARRAY_WIDETAG:
558 case SIMPLE_BIT_VECTOR_WIDETAG:
559 case SIMPLE_ARRAY_UNSIGNED_BYTE_2_WIDETAG:
560 case SIMPLE_ARRAY_UNSIGNED_BYTE_4_WIDETAG:
561 case SIMPLE_ARRAY_UNSIGNED_BYTE_8_WIDETAG:
562 case SIMPLE_ARRAY_UNSIGNED_BYTE_16_WIDETAG:
563 case SIMPLE_ARRAY_UNSIGNED_BYTE_32_WIDETAG:
564 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_8_WIDETAG
565 case SIMPLE_ARRAY_SIGNED_BYTE_8_WIDETAG:
567 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_16_WIDETAG
568 case SIMPLE_ARRAY_SIGNED_BYTE_16_WIDETAG:
570 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_30_WIDETAG
571 case SIMPLE_ARRAY_SIGNED_BYTE_30_WIDETAG:
573 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_32_WIDETAG
574 case SIMPLE_ARRAY_SIGNED_BYTE_32_WIDETAG:
576 case SIMPLE_ARRAY_SINGLE_FLOAT_WIDETAG:
577 case SIMPLE_ARRAY_DOUBLE_FLOAT_WIDETAG:
578 #ifdef SIMPLE_ARRAY_LONG_FLOAT_WIDETAG
579 case SIMPLE_ARRAY_LONG_FLOAT_WIDETAG:
581 #ifdef SIMPLE_ARRAY_COMPLEX_SINGLE_FLOAT_WIDETAG
582 case SIMPLE_ARRAY_COMPLEX_SINGLE_FLOAT_WIDETAG:
584 #ifdef SIMPLE_ARRAY_COMPLEX_DOUBLE_FLOAT_WIDETAG
585 case SIMPLE_ARRAY_COMPLEX_DOUBLE_FLOAT_WIDETAG:
587 #ifdef SIMPLE_ARRAY_COMPLEX_LONG_FLOAT_WIDETAG
588 case SIMPLE_ARRAY_COMPLEX_LONG_FLOAT_WIDETAG:
590 case COMPLEX_STRING_WIDETAG:
591 case COMPLEX_BIT_VECTOR_WIDETAG:
592 case COMPLEX_VECTOR_WIDETAG:
593 case COMPLEX_ARRAY_WIDETAG:
596 case CODE_HEADER_WIDETAG:
597 print_slots(code_slots, count-1, ptr);
600 case SIMPLE_FUN_HEADER_WIDETAG:
601 case CLOSURE_FUN_HEADER_WIDETAG:
602 print_slots(fn_slots, 5, ptr);
605 case RETURN_PC_HEADER_WIDETAG:
606 print_obj("code: ", obj - (count * 4));
609 case CLOSURE_HEADER_WIDETAG:
610 print_slots(closure_slots, count, ptr);
613 case FUNCALLABLE_INSTANCE_HEADER_WIDETAG:
614 print_slots(funcallable_instance_slots, count, ptr);
617 case VALUE_CELL_HEADER_WIDETAG:
618 print_slots(value_cell_slots, 1, ptr);
624 printf("0x%08lx", (unsigned long) *ptr);
626 printf("0x%016lx", *(lispobj*)(ptr+1));
630 case WEAK_POINTER_WIDETAG:
631 print_slots(weak_pointer_slots, 1, ptr);
634 case BASE_CHAR_WIDETAG:
635 case UNBOUND_MARKER_WIDETAG:
637 printf("pointer to an immediate?");
641 print_slots(fdefn_slots, count, ptr);
646 printf("Unknown header object?");
652 static void print_obj(char *prefix, lispobj obj)
654 static void (*verbose_fns[])(lispobj obj)
655 = {print_fixnum, print_struct, print_otherimm, print_list,
656 print_fixnum, print_otherptr, print_otherimm, print_otherptr};
657 static void (*brief_fns[])(lispobj obj)
658 = {brief_fixnum, brief_struct, brief_otherimm, brief_list,
659 brief_fixnum, brief_otherptr, brief_otherimm, brief_otherptr};
660 int type = lowtag_of(obj);
661 struct var *var = lookup_by_obj(obj);
663 boolean verbose = cur_depth < brief_depth;
665 if (!continue_p(verbose))
668 if (var != NULL && var_clock(var) == cur_clock)
672 /* FIXME: What does this "x & y & z & .." expression mean? */
673 (obj & FUN_POINTER_LOWTAG & LIST_POINTER_LOWTAG & INSTANCE_POINTER_LOWTAG & OTHER_POINTER_LOWTAG) != 0)
674 var = define_var(NULL, obj, 0);
677 var_setclock(var, cur_clock);
682 sprintf(buffer, "$%s=", var_name(var));
687 printf("%s0x%08lx: ", prefix, (unsigned long) obj);
688 if (cur_depth < brief_depth) {
689 fputs(lowtag_Names[type], stdout);
690 (*verbose_fns[type])(obj);
693 (*brief_fns[type])(obj);
697 printf("$%s", var_name(var));
700 printf("$%s=", var_name(var));
701 (*brief_fns[type])(obj);
715 void print(lispobj obj)
727 void brief_print(lispobj obj)
741 brief_print(lispobj obj)
743 printf("lispobj 0x%lx\n", (unsigned long)obj);
746 #endif /* defined(LISP_FEATURE_SB_LDB) */