X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fbacktrace.c;h=c618ca7b67615f20a1200f3b03e4d23b9f251dcb;hb=43c6634142a96e1d1bab2efe1a39cd8234903c41;hp=e5b02a10eac3f6a281fa13a196f57c21fcb33900;hpb=22d55b9f0d56c5998290878d5ab56b76b0544aa6;p=sbcl.git diff --git a/src/runtime/backtrace.c b/src/runtime/backtrace.c index e5b02a1..c618ca7 100644 --- a/src/runtime/backtrace.c +++ b/src/runtime/backtrace.c @@ -128,7 +128,7 @@ call_info_from_lisp_state(struct call_info *info) static void call_info_from_context(struct call_info *info, os_context_t *context) { - unsigned long pc; + uword_t pc; info->interrupted = 1; if (lowtag_of(*os_context_register_addr(context, reg_CODE)) @@ -136,15 +136,15 @@ call_info_from_context(struct call_info *info, os_context_t *context) /* We tried to call a function, but crapped out before $CODE could * be fixed up. Probably an undefined function. */ info->frame = - (struct call_frame *)(unsigned long) + (struct call_frame *)(uword_t) (*os_context_register_addr(context, reg_OCFP)); info->lra = (lispobj)(*os_context_register_addr(context, reg_LRA)); info->code = code_pointer(info->lra); - pc = (unsigned long)native_pointer(info->lra); + pc = (uword_t)native_pointer(info->lra); } else { info->frame = - (struct call_frame *)(unsigned long) + (struct call_frame *)(uword_t) (*os_context_register_addr(context, reg_CFP)); info->code = code_pointer(*os_context_register_addr(context, reg_CODE)); @@ -152,7 +152,7 @@ call_info_from_context(struct call_info *info, os_context_t *context) pc = *os_context_pc_addr(context); } if (info->code != NULL) - info->pc = pc - (unsigned long) info->code - + info->pc = pc - (uword_t) info->code - #ifndef LISP_FEATURE_ALPHA (HEADER_LENGTH(info->code->header) * sizeof(lispobj)); #else @@ -170,7 +170,7 @@ previous_info(struct call_info *info) int free_ici; if (!cs_valid_pointer_p(info->frame)) { - printf("Bogus callee value (0x%08lx).\n", (unsigned long)info->frame); + printf("Bogus callee value (0x%08lx).\n", (uword_t)info->frame); return 0; } @@ -188,7 +188,7 @@ previous_info(struct call_info *info) while (free_ici-- > 0) { os_context_t *context = thread->interrupt_contexts[free_ici]; - if ((struct call_frame *)(unsigned long) + if ((struct call_frame *)(uword_t) (*os_context_register_addr(context, reg_CFP)) == info->frame) { call_info_from_context(info, context); @@ -199,8 +199,8 @@ previous_info(struct call_info *info) else { info->code = code_pointer(info->lra); if (info->code != NULL) - info->pc = (unsigned long)native_pointer(info->lra) - - (unsigned long)info->code - + info->pc = (uword_t)native_pointer(info->lra) - + (uword_t)info->code - #ifndef LISP_FEATURE_ALPHA (HEADER_LENGTH(info->code->header) * sizeof(lispobj)); #else @@ -221,13 +221,13 @@ lisp_backtrace(int nframes) call_info_from_lisp_state(&info); do { - printf("entry_points; @@ -271,7 +271,7 @@ lisp_backtrace(int nframes) printf("CODE: ???, "); if (info.lra != NIL) - printf("LRA: 0x%08lx, ", (unsigned long)info.lra); + printf("LRA: 0x%08lx, ", (uword_t)info.lra); else printf(", "); @@ -304,12 +304,12 @@ stack_pointer_p (void *p) /* we are using sizeof(long) here, because that is the right value on both * x86 and x86-64. (But note that false positives would not cause much harm * given the heuristical nature of x86_call_context.) */ - unsigned long stack_alignment = sizeof(void*); + uword_t stack_alignment = sizeof(void*); return (altstack_pointer_p(p) || (p < (void *) arch_os_get_current_thread()->control_stack_end && (p > (void *) &p || altstack_pointer_p(&p)) - && (((unsigned long) p) & (stack_alignment-1)) == 0)); + && (((uword_t) p) & (stack_alignment-1)) == 0)); } static int @@ -318,7 +318,7 @@ ra_pointer_p (void *ra) /* the check against 4096 is still a mystery to everyone interviewed about * it, but recent changes to sb-sprof seem to suggest that such values * do occur sometimes. */ - return ((unsigned long) ra) > 4096 && !stack_pointer_p (ra); + return ((uword_t) ra) > 4096 && !stack_pointer_p (ra); } static int @@ -349,9 +349,9 @@ x86_call_context (void *fp, void **ra, void **ocfp) struct compiled_debug_fun * debug_function_from_pc (struct code* code, void *pc) { - unsigned long code_header_len = sizeof(lispobj) * HeaderValue(code->header); - unsigned long offset - = (unsigned long) pc - (unsigned long) code - code_header_len; + uword_t code_header_len = sizeof(lispobj) * HeaderValue(code->header); + uword_t offset + = (uword_t) pc - (uword_t) code - code_header_len; struct compiled_debug_fun *df; struct compiled_debug_info *di; struct vector *v; @@ -374,7 +374,7 @@ debug_function_from_pc (struct code* code, void *pc) if (i == len) return ((struct compiled_debug_fun *) native_pointer(v->data[i - 1])); - if (offset >= (unsigned long)fixnum_value(df->elsewhere_pc)) { + if (offset >= (uword_t)fixnum_value(df->elsewhere_pc)) { struct compiled_debug_fun *p = ((struct compiled_debug_fun *) native_pointer(v->data[i + 1])); next_pc = fixnum_value(p->elsewhere_pc); @@ -556,8 +556,8 @@ backtrace_from_fp(void *fp, int nframes) if (dladdr(ra, &info)) { printf("Foreign function %s, fp = 0x%lx, ra = 0x%lx", info.dli_sname, - (unsigned long) next_fp, - (unsigned long) ra); + (uword_t) next_fp, + (uword_t) ra); } else #endif printf("Foreign fp = 0x%p, ra = 0x%p",