Home | History | Annotate | Line # | Download | only in ia64
db_trace.c revision 1.1
      1  1.1  cherry /*	$NetBSD: db_trace.c,v 1.1 2006/04/07 14:21:18 cherry Exp $	*/
      2  1.1  cherry 
      3  1.1  cherry /* Inspired by reading alpha/db_trace.c */
      4  1.1  cherry 
      5  1.1  cherry /*-
      6  1.1  cherry  * Copyright (c) 2006 The NetBSD Foundation, Inc.
      7  1.1  cherry  * All rights reserved.
      8  1.1  cherry  *
      9  1.1  cherry  * Author: Cherry G. Mathew
     10  1.1  cherry  *
     11  1.1  cherry  * Redistribution and use in source and binary forms, with or without
     12  1.1  cherry  * modification, are permitted provided that the following conditions
     13  1.1  cherry  * are met:
     14  1.1  cherry  * 1. Redistributions of source code must retain the above copyright
     15  1.1  cherry  *    notice, this list of conditions and the following disclaimer.
     16  1.1  cherry  * 2. Redistributions in binary form must reproduce the above copyright
     17  1.1  cherry  *    notice, this list of conditions and the following disclaimer in the
     18  1.1  cherry  *    documentation and/or other materials provided with the distribution.
     19  1.1  cherry  * 3. All advertising materials mentioning features or use of this software
     20  1.1  cherry  *    must display the following acknowledgement:
     21  1.1  cherry  *	This product includes software developed by the NetBSD
     22  1.1  cherry  *	Foundation, Inc. and its contributors.
     23  1.1  cherry  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  1.1  cherry  *    contributors may be used to endorse or promote products derived
     25  1.1  cherry  *    from this software without specific prior written permission.
     26  1.1  cherry  *
     27  1.1  cherry  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  1.1  cherry  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  1.1  cherry  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  1.1  cherry  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  1.1  cherry  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  1.1  cherry  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  1.1  cherry  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  1.1  cherry  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  1.1  cherry  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  1.1  cherry  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  1.1  cherry  * POSSIBILITY OF SUCH DAMAGE.
     38  1.1  cherry  */
     39  1.1  cherry 
     40  1.1  cherry 
     41  1.1  cherry #include "opt_ddb.h"
     42  1.1  cherry 
     43  1.1  cherry #include <sys/param.h>
     44  1.1  cherry #include <sys/proc.h>
     45  1.1  cherry #include <sys/systm.h>
     46  1.1  cherry 
     47  1.1  cherry #include <machine/cpufunc.h>
     48  1.1  cherry #include <machine/md_var.h>
     49  1.1  cherry #include <machine/db_machdep.h>
     50  1.1  cherry 
     51  1.1  cherry #include <ddb/db_sym.h>
     52  1.1  cherry #include <ddb/db_access.h>
     53  1.1  cherry #include <ddb/db_output.h>
     54  1.1  cherry #include <ddb/db_variables.h>
     55  1.1  cherry #include <ddb/db_interface.h>
     56  1.1  cherry 
     57  1.1  cherry #include <ia64/unwind/decode.h>
     58  1.1  cherry #include <ia64/unwind/stackframe.h>
     59  1.1  cherry 
     60  1.1  cherry #if 0
     61  1.1  cherry #define UNWIND_DIAGNOSTIC
     62  1.1  cherry #endif
     63  1.1  cherry 
     64  1.1  cherry #define debug_frame_dump_XXX(uwf) \
     65  1.1  cherry 	printf("Frame Dump: \n bsp = 0x%lx \n pfs = 0x%lx, SOL(pfs) = %lu \n rp = 0x%lx \n",  \
     66  1.1  cherry 	       uwf->bsp, uwf->pfs, IA64_CFM_SOL(uwf->pfs), uwf->rp);	\
     67  1.1  cherry 
     68  1.1  cherry void
     69  1.1  cherry initunwindframe(struct unwind_frame *uwf, struct trapframe *tf);
     70  1.1  cherry void
     71  1.1  cherry rewindframe(struct unwind_frame *uwf, db_addr_t ip);
     72  1.1  cherry 
     73  1.1  cherry void
     74  1.1  cherry db_stack_trace_print(db_expr_t addr, boolean_t have_addr, db_expr_t count,
     75  1.1  cherry 		     const char *modif, void (*pr)(const char *, ...))
     76  1.1  cherry {
     77  1.1  cherry 	char c;
     78  1.1  cherry 	const char *cp = modif;
     79  1.1  cherry 	boolean_t trace_thread = FALSE;
     80  1.1  cherry 	boolean_t trace_user = FALSE;
     81  1.1  cherry 	struct trapframe *tf;
     82  1.1  cherry 	struct unwind_frame current_frame;
     83  1.1  cherry 	db_addr_t ip;
     84  1.1  cherry 	const char *name;
     85  1.1  cherry 	db_sym_t sym;
     86  1.1  cherry 	db_expr_t offset;
     87  1.1  cherry 
     88  1.1  cherry 	while ((c = *cp++) != 0) {
     89  1.1  cherry 		trace_thread |= c == 't';
     90  1.1  cherry 		trace_user |= c == 'u';
     91  1.1  cherry 	}
     92  1.1  cherry 
     93  1.1  cherry 	if (trace_user) {
     94  1.1  cherry 		(*pr)("User-space stack tracing not implemented yet. \n");
     95  1.1  cherry 		return;
     96  1.1  cherry 	}
     97  1.1  cherry 	if (!have_addr) {
     98  1.1  cherry 		(*pr)("--Kernel Call Trace-- \n");
     99  1.1  cherry 
    100  1.1  cherry 		tf = DDB_REGS;
    101  1.1  cherry 		ip = tf->tf_special.iip + ((tf->tf_special.psr >> 41) & 3);
    102  1.1  cherry 
    103  1.1  cherry 		initunwindframe(&current_frame, tf);
    104  1.1  cherry 
    105  1.1  cherry #ifdef UNWIND_DIAGNOSTIC
    106  1.1  cherry 		struct unwind_frame *uwf = &current_frame;
    107  1.1  cherry 		debug_frame_dump_XXX(uwf);
    108  1.1  cherry #endif
    109  1.1  cherry 		patchunwindframe(&current_frame, ip - kernstart, kernstart);
    110  1.1  cherry #ifdef UNWIND_DIAGNOSTIC
    111  1.1  cherry 		debug_frame_dump_XXX(uwf);
    112  1.1  cherry #endif
    113  1.1  cherry 		/* Get into unwind loop. */
    114  1.1  cherry 
    115  1.1  cherry 		while(ip) {
    116  1.1  cherry 			sym = db_search_symbol(ip, DB_STGY_ANY, &offset);
    117  1.1  cherry 			db_symbol_values(sym, &name, NULL);
    118  1.1  cherry 			(*pr)("%s(...)\n", name);
    119  1.1  cherry 
    120  1.1  cherry 			ip = current_frame.rp;
    121  1.1  cherry 
    122  1.1  cherry 			if(!ip) break;
    123  1.1  cherry 
    124  1.1  cherry 			rewindframe(&current_frame, ip);
    125  1.1  cherry 		}
    126  1.1  cherry 
    127  1.1  cherry 		return;
    128  1.1  cherry 
    129  1.1  cherry 
    130  1.1  cherry 	} else (*pr) ("Unwind from arbitrary addresses unimplemented. \n");
    131  1.1  cherry 
    132  1.1  cherry 
    133  1.1  cherry 		if (trace_thread) {
    134  1.1  cherry 			(*pr)("trace by pid unimplemented. \n");
    135  1.1  cherry 			return;
    136  1.1  cherry 		}
    137  1.1  cherry 		else {
    138  1.1  cherry 			(*pr)("trace from arbitrary trap frame address unimplemented. \n");
    139  1.1  cherry 		}
    140  1.1  cherry 
    141  1.1  cherry }
    142  1.1  cherry 
    143  1.1  cherry extern db_addr_t ia64_unwindtab;
    144  1.1  cherry extern vsize_t ia64_unwindtablen;
    145  1.1  cherry 
    146  1.1  cherry 
    147  1.1  cherry /* Generates initial unwind frame context based on the contents
    148  1.1  cherry  * of the trap frame, by consulting the Unwind library
    149  1.1  cherry  * staterecord. If a register is of type enum UNSAVED, we fetch
    150  1.1  cherry  * the live value of the register from the trapframe.
    151  1.1  cherry  */
    152  1.1  cherry 
    153  1.1  cherry void
    154  1.1  cherry initunwindframe(struct unwind_frame *uwf, struct trapframe *tf)
    155  1.1  cherry 
    156  1.1  cherry {
    157  1.1  cherry 
    158  1.1  cherry 	uwf->rp = tf->tf_special.rp;
    159  1.1  cherry 
    160  1.1  cherry 	/* ndirty = bsp - bspstore: , not the same as the definition in the spec.
    161  1.1  cherry 	 * Gave me hell for a day!
    162  1.1  cherry 	 * see: ia64/exception.S: exception_save_restore: */
    163  1.1  cherry 
    164  1.1  cherry 	uwf->bsp = tf->tf_special.bspstore + tf->tf_special.ndirty;
    165  1.1  cherry 	uwf->bsp = ia64_bsp_adjust_ret(uwf->bsp, IA64_CFM_SOF(tf->tf_special.cfm));
    166  1.1  cherry #ifdef UNWIND_DIAGNOSTIC
    167  1.1  cherry 	printf("inituwframe(): SOF(cfm) = %lu \n", IA64_CFM_SOF(tf->tf_special.cfm));
    168  1.1  cherry #endif
    169  1.1  cherry 	uwf->pfs = tf->tf_special.pfs;
    170  1.1  cherry 	uwf->sp = uwf->psp = tf->tf_special.sp;
    171  1.1  cherry 
    172  1.1  cherry 
    173  1.1  cherry }
    174  1.1  cherry 
    175  1.1  cherry 
    176  1.1  cherry 
    177  1.1  cherry /* Single step the frame backward.
    178  1.1  cherry  * Assumes unwind_frame is setup already.
    179  1.1  cherry  */
    180  1.1  cherry 
    181  1.1  cherry void
    182  1.1  cherry rewindframe(struct unwind_frame *uwf, db_addr_t ip)
    183  1.1  cherry {
    184  1.1  cherry /* XXX: Check for a stack switch */
    185  1.1  cherry 
    186  1.1  cherry 	uwf->bsp = ia64_bsp_adjust_ret(uwf->bsp, IA64_CFM_SOL(uwf->pfs));
    187  1.1  cherry 	uwf->sp = uwf->psp;
    188  1.1  cherry 
    189  1.1  cherry 	/* Pre-stomp frame dump */
    190  1.1  cherry #ifdef UNWIND_DIAGNOSTIC
    191  1.1  cherry 	debug_frame_dump_XXX(uwf);
    192  1.1  cherry #endif
    193  1.1  cherry 
    194  1.1  cherry 	/* Stomp on rp and pfs
    195  1.1  cherry 	 */
    196  1.1  cherry 	patchunwindframe(uwf, ip - kernstart, kernstart);
    197  1.1  cherry 
    198  1.1  cherry #ifdef UNWIND_DIAGNOSTIC
    199  1.1  cherry 	debug_frame_dump_XXX(uwf);
    200  1.1  cherry #endif
    201  1.1  cherry 
    202  1.1  cherry }
    203