xref: /freebsd/sys/arm/arm/db_trace.c (revision 8d511e2a05455bb7971ee943e6691159c189417b)
16fc729afSOlivier Houchard /*	$NetBSD: db_trace.c,v 1.8 2003/01/17 22:28:48 thorpej Exp $	*/
26fc729afSOlivier Houchard 
3d8315c79SWarner Losh /*-
46fc729afSOlivier Houchard  * Copyright (c) 2000, 2001 Ben Harris
56fc729afSOlivier Houchard  * Copyright (c) 1996 Scott K. Stevens
66fc729afSOlivier Houchard  *
76fc729afSOlivier Houchard  * Mach Operating System
86fc729afSOlivier Houchard  * Copyright (c) 1991,1990 Carnegie Mellon University
96fc729afSOlivier Houchard  * All Rights Reserved.
106fc729afSOlivier Houchard  *
116fc729afSOlivier Houchard  * Permission to use, copy, modify and distribute this software and its
126fc729afSOlivier Houchard  * documentation is hereby granted, provided that both the copyright
136fc729afSOlivier Houchard  * notice and this permission notice appear in all copies of the
146fc729afSOlivier Houchard  * software, derivative works or modified versions, and any portions
156fc729afSOlivier Houchard  * thereof, and that both notices appear in supporting documentation.
166fc729afSOlivier Houchard  *
176fc729afSOlivier Houchard  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
186fc729afSOlivier Houchard  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
196fc729afSOlivier Houchard  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
206fc729afSOlivier Houchard  *
216fc729afSOlivier Houchard  * Carnegie Mellon requests users of this software to return to
226fc729afSOlivier Houchard  *
236fc729afSOlivier Houchard  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
246fc729afSOlivier Houchard  *  School of Computer Science
256fc729afSOlivier Houchard  *  Carnegie Mellon University
266fc729afSOlivier Houchard  *  Pittsburgh PA 15213-3890
276fc729afSOlivier Houchard  *
286fc729afSOlivier Houchard  * any improvements or extensions that they make and grant Carnegie the
296fc729afSOlivier Houchard  * rights to redistribute these changes.
306fc729afSOlivier Houchard  */
316fc729afSOlivier Houchard 
326fc729afSOlivier Houchard #include <sys/cdefs.h>
336fc729afSOlivier Houchard __FBSDID("$FreeBSD$");
346fc729afSOlivier Houchard #include <sys/param.h>
359cdb2bfcSOlivier Houchard #include <sys/systm.h>
366fc729afSOlivier Houchard 
376fc729afSOlivier Houchard 
386fc729afSOlivier Houchard #include <sys/proc.h>
392f6d0d8fSOlivier Houchard #include <sys/kdb.h>
408d511e2aSJeff Roberson #include <sys/stack.h>
416fc729afSOlivier Houchard #include <machine/armreg.h>
426fc729afSOlivier Houchard #include <machine/asm.h>
436fc729afSOlivier Houchard #include <machine/cpufunc.h>
446fc729afSOlivier Houchard #include <machine/db_machdep.h>
456004362eSDavid Schultz #include <machine/pcb.h>
466fc729afSOlivier Houchard #include <machine/vmparam.h>
476fc729afSOlivier Houchard #include <ddb/ddb.h>
486fc729afSOlivier Houchard #include <ddb/db_access.h>
496fc729afSOlivier Houchard #include <ddb/db_sym.h>
506fc729afSOlivier Houchard #include <ddb/db_output.h>
516fc729afSOlivier Houchard 
526fc729afSOlivier Houchard #define INKERNEL(va)	(((vm_offset_t)(va)) >= VM_MIN_KERNEL_ADDRESS)
536fc729afSOlivier Houchard 
546fc729afSOlivier Houchard int  db_md_set_watchpoint(db_expr_t addr, db_expr_t size);
556fc729afSOlivier Houchard int  db_md_clr_watchpoint(db_expr_t addr, db_expr_t size);
566fc729afSOlivier Houchard void db_md_list_watchpoints(void);
576fc729afSOlivier Houchard /*
586fc729afSOlivier Houchard  * APCS stack frames are awkward beasts, so I don't think even trying to use
596fc729afSOlivier Houchard  * a structure to represent them is a good idea.
606fc729afSOlivier Houchard  *
616fc729afSOlivier Houchard  * Here's the diagram from the APCS.  Increasing address is _up_ the page.
626fc729afSOlivier Houchard  *
636fc729afSOlivier Houchard  *          save code pointer       [fp]        <- fp points to here
646fc729afSOlivier Houchard  *          return link value       [fp, #-4]
656fc729afSOlivier Houchard  *          return sp value         [fp, #-8]
666fc729afSOlivier Houchard  *          return fp value         [fp, #-12]
676fc729afSOlivier Houchard  *          [saved v7 value]
686fc729afSOlivier Houchard  *          [saved v6 value]
696fc729afSOlivier Houchard  *          [saved v5 value]
706fc729afSOlivier Houchard  *          [saved v4 value]
716fc729afSOlivier Houchard  *          [saved v3 value]
726fc729afSOlivier Houchard  *          [saved v2 value]
736fc729afSOlivier Houchard  *          [saved v1 value]
746fc729afSOlivier Houchard  *          [saved a4 value]
756fc729afSOlivier Houchard  *          [saved a3 value]
766fc729afSOlivier Houchard  *          [saved a2 value]
776fc729afSOlivier Houchard  *          [saved a1 value]
786fc729afSOlivier Houchard  *
796fc729afSOlivier Houchard  * The save code pointer points twelve bytes beyond the start of the
806fc729afSOlivier Houchard  * code sequence (usually a single STM) that created the stack frame.
816fc729afSOlivier Houchard  * We have to disassemble it if we want to know which of the optional
826fc729afSOlivier Houchard  * fields are actually present.
836fc729afSOlivier Houchard  */
846fc729afSOlivier Houchard 
856fc729afSOlivier Houchard #define FR_SCP	(0)
866fc729afSOlivier Houchard #define FR_RLV	(-1)
876fc729afSOlivier Houchard #define FR_RSP	(-2)
886fc729afSOlivier Houchard #define FR_RFP	(-3)
896fc729afSOlivier Houchard 
90fd32d93bSMarcel Moolenaar static void
91b1ff74ebSOlivier Houchard db_stack_trace_cmd(db_expr_t addr, db_expr_t count)
926fc729afSOlivier Houchard {
936fc729afSOlivier Houchard 	u_int32_t	*frame, *lastframe;
946fc729afSOlivier Houchard 	c_db_sym_t sym;
956fc729afSOlivier Houchard 	const char *name;
966fc729afSOlivier Houchard 	db_expr_t value;
976fc729afSOlivier Houchard 	db_expr_t offset;
986fc729afSOlivier Houchard 	boolean_t	kernel_only = TRUE;
9976764432SJohn Baldwin 	int	scp_offset, quit;
1006fc729afSOlivier Houchard 
101b1ff74ebSOlivier Houchard 	frame = (u_int32_t *)addr;
1026fc729afSOlivier Houchard 	lastframe = NULL;
1036fc729afSOlivier Houchard 	scp_offset = -(get_pc_str_offset() >> 2);
1046fc729afSOlivier Houchard 
10576764432SJohn Baldwin 	quit = 0;
106d39d4a6eSJohn Baldwin 	db_setup_paging(db_simple_pager, &quit, db_lines_per_page);
10776764432SJohn Baldwin 	while (count-- && frame != NULL && !quit) {
1086fc729afSOlivier Houchard 		db_addr_t	scp;
1096fc729afSOlivier Houchard 		u_int32_t	savecode;
1106fc729afSOlivier Houchard 		int		r;
1116fc729afSOlivier Houchard 		u_int32_t	*rp;
1126fc729afSOlivier Houchard 		const char	*sep;
1136fc729afSOlivier Houchard 
1146fc729afSOlivier Houchard 		/*
1156fc729afSOlivier Houchard 		 * In theory, the SCP isn't guaranteed to be in the function
1166fc729afSOlivier Houchard 		 * that generated the stack frame.  We hope for the best.
1176fc729afSOlivier Houchard 		 */
1186fc729afSOlivier Houchard 		scp = frame[FR_SCP];
1196fc729afSOlivier Houchard 
120282c3a65SOlivier Houchard 		sym = db_search_symbol(scp, DB_STGY_ANY, &offset);
1216fc729afSOlivier Houchard 		if (sym == C_DB_SYM_NULL) {
1226fc729afSOlivier Houchard 			value = 0;
1236fc729afSOlivier Houchard 			name = "(null)";
1246fc729afSOlivier Houchard 		} else
1256fc729afSOlivier Houchard 			db_symbol_values(sym, &name, &value);
1266fc729afSOlivier Houchard 		db_printf("%s() at ", name);
127282c3a65SOlivier Houchard 		db_printsym(scp, DB_STGY_PROC);
1286fc729afSOlivier Houchard 		db_printf("\n");
1296fc729afSOlivier Houchard #ifdef __PROG26
1306fc729afSOlivier Houchard 		db_printf("scp=0x%08x rlv=0x%08x (", scp, frame[FR_RLV] & R15_PC);
1316fc729afSOlivier Houchard 		db_printsym(frame[FR_RLV] & R15_PC, DB_STGY_PROC);
1326fc729afSOlivier Houchard 		db_printf(")\n");
1336fc729afSOlivier Houchard #else
1346fc729afSOlivier Houchard 		db_printf("scp=0x%08x rlv=0x%08x (", scp, frame[FR_RLV]);
1356fc729afSOlivier Houchard 		db_printsym(frame[FR_RLV], DB_STGY_PROC);
1366fc729afSOlivier Houchard 		db_printf(")\n");
1376fc729afSOlivier Houchard #endif
1386fc729afSOlivier Houchard 		db_printf("\trsp=0x%08x rfp=0x%08x", frame[FR_RSP], frame[FR_RFP]);
1396fc729afSOlivier Houchard 
1406fc729afSOlivier Houchard 		savecode = ((u_int32_t *)scp)[scp_offset];
1416fc729afSOlivier Houchard 		if ((savecode & 0x0e100000) == 0x08000000) {
1426fc729afSOlivier Houchard 			/* Looks like an STM */
1436fc729afSOlivier Houchard 			rp = frame - 4;
1446fc729afSOlivier Houchard 			sep = "\n\t";
1456fc729afSOlivier Houchard 			for (r = 10; r >= 0; r--) {
1466fc729afSOlivier Houchard 				if (savecode & (1 << r)) {
1476fc729afSOlivier Houchard 					db_printf("%sr%d=0x%08x",
1486fc729afSOlivier Houchard 					    sep, r, *rp--);
1496fc729afSOlivier Houchard 					sep = (frame - rp) % 4 == 2 ?
1506fc729afSOlivier Houchard 					    "\n\t" : " ";
1516fc729afSOlivier Houchard 				}
1526fc729afSOlivier Houchard 			}
1536fc729afSOlivier Houchard 		}
1546fc729afSOlivier Houchard 
1556fc729afSOlivier Houchard 		db_printf("\n");
1566fc729afSOlivier Houchard 
1576fc729afSOlivier Houchard 		/*
1586fc729afSOlivier Houchard 		 * Switch to next frame up
1596fc729afSOlivier Houchard 		 */
1606fc729afSOlivier Houchard 		if (frame[FR_RFP] == 0)
1616fc729afSOlivier Houchard 			break; /* Top of stack */
1626fc729afSOlivier Houchard 
1636fc729afSOlivier Houchard 		lastframe = frame;
1646fc729afSOlivier Houchard 		frame = (u_int32_t *)(frame[FR_RFP]);
1656fc729afSOlivier Houchard 
1666fc729afSOlivier Houchard 		if (INKERNEL((int)frame)) {
1676fc729afSOlivier Houchard 			/* staying in kernel */
1686fc729afSOlivier Houchard 			if (frame <= lastframe) {
1696fc729afSOlivier Houchard 				db_printf("Bad frame pointer: %p\n", frame);
1706fc729afSOlivier Houchard 				break;
1716fc729afSOlivier Houchard 			}
1726fc729afSOlivier Houchard 		} else if (INKERNEL((int)lastframe)) {
1736fc729afSOlivier Houchard 			/* switch from user to kernel */
1746fc729afSOlivier Houchard 			if (kernel_only)
1756fc729afSOlivier Houchard 				break;	/* kernel stack only */
1766fc729afSOlivier Houchard 		} else {
1776fc729afSOlivier Houchard 			/* in user */
1786fc729afSOlivier Houchard 			if (frame <= lastframe) {
1796fc729afSOlivier Houchard 				db_printf("Bad user frame pointer: %p\n",
1806fc729afSOlivier Houchard 					  frame);
1816fc729afSOlivier Houchard 				break;
1826fc729afSOlivier Houchard 			}
1836fc729afSOlivier Houchard 		}
1846fc729afSOlivier Houchard 	}
1856fc729afSOlivier Houchard }
1866fc729afSOlivier Houchard 
1876fc729afSOlivier Houchard /* XXX stubs */
1886fc729afSOlivier Houchard void
1896fc729afSOlivier Houchard db_md_list_watchpoints()
1906fc729afSOlivier Houchard {
1916fc729afSOlivier Houchard }
1926fc729afSOlivier Houchard 
1936fc729afSOlivier Houchard int
1946fc729afSOlivier Houchard db_md_clr_watchpoint(db_expr_t addr, db_expr_t size)
1956fc729afSOlivier Houchard {
1966fc729afSOlivier Houchard 	return (0);
1976fc729afSOlivier Houchard }
1986fc729afSOlivier Houchard 
1996fc729afSOlivier Houchard int
2006fc729afSOlivier Houchard db_md_set_watchpoint(db_expr_t addr, db_expr_t size)
2016fc729afSOlivier Houchard {
2026fc729afSOlivier Houchard 	return (0);
2036fc729afSOlivier Houchard }
204fd32d93bSMarcel Moolenaar 
2052f6d0d8fSOlivier Houchard int
2062f6d0d8fSOlivier Houchard db_trace_thread(struct thread *thr, int count)
2076fc729afSOlivier Houchard {
2089cdb2bfcSOlivier Houchard 	uint32_t addr;
2096fc729afSOlivier Houchard 
2109cdb2bfcSOlivier Houchard 	if (thr == curthread)
2119cdb2bfcSOlivier Houchard 		addr = (uint32_t)__builtin_frame_address(0);
2129cdb2bfcSOlivier Houchard 	else
2139cdb2bfcSOlivier Houchard 		addr = thr->td_pcb->un_32.pcb32_r11;
214b1ff74ebSOlivier Houchard 	db_stack_trace_cmd(addr, -1);
2152f6d0d8fSOlivier Houchard 	return (0);
2162f6d0d8fSOlivier Houchard }
2172f6d0d8fSOlivier Houchard 
2182f6d0d8fSOlivier Houchard void
2192f6d0d8fSOlivier Houchard db_trace_self(void)
2202f6d0d8fSOlivier Houchard {
2219cdb2bfcSOlivier Houchard 	db_trace_thread(curthread, -1);
2226fc729afSOlivier Houchard }
2238d511e2aSJeff Roberson 
2248d511e2aSJeff Roberson void
2258d511e2aSJeff Roberson stack_save(struct stack *st)
2268d511e2aSJeff Roberson {
2278d511e2aSJeff Roberson 	vm_offset_t callpc;
2288d511e2aSJeff Roberson 	u_int32_t *frame;
2298d511e2aSJeff Roberson 
2308d511e2aSJeff Roberson 	stack_zero(st);
2318d511e2aSJeff Roberson 	frame = (u_int32_t *)__builtin_frame_address(0);
2328d511e2aSJeff Roberson 	while (1) {
2338d511e2aSJeff Roberson 		if (!INKERNEL(frame))
2348d511e2aSJeff Roberson 			break;
2358d511e2aSJeff Roberson 		callpc = frame[FR_SCP];
2368d511e2aSJeff Roberson 		if (stack_put(st, callpc) == -1)
2378d511e2aSJeff Roberson 			break;
2388d511e2aSJeff Roberson 		frame = (u_int32_t *)(frame[FR_RFP]);
2398d511e2aSJeff Roberson 	}
2408d511e2aSJeff Roberson }
241