xref: /freebsd/sys/arm/arm/db_trace.c (revision 2f6d0d8fde6cc37592de4d92e96cdfdcc6baca1f)
16fc729afSOlivier Houchard /*	$NetBSD: db_trace.c,v 1.8 2003/01/17 22:28:48 thorpej Exp $	*/
26fc729afSOlivier Houchard 
36fc729afSOlivier Houchard /*
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>
356fc729afSOlivier Houchard 
366fc729afSOlivier Houchard 
376fc729afSOlivier Houchard #include <sys/proc.h>
386fc729afSOlivier Houchard #include <sys/user.h>
392f6d0d8fSOlivier Houchard #include <sys/kdb.h>
406fc729afSOlivier Houchard #include <machine/armreg.h>
416fc729afSOlivier Houchard #include <machine/asm.h>
426fc729afSOlivier Houchard #include <machine/cpufunc.h>
436fc729afSOlivier Houchard #include <machine/db_machdep.h>
446fc729afSOlivier Houchard #include <machine/vmparam.h>
456fc729afSOlivier Houchard #include <ddb/ddb.h>
466fc729afSOlivier Houchard #include <ddb/db_access.h>
476fc729afSOlivier Houchard #include <ddb/db_sym.h>
486fc729afSOlivier Houchard #include <ddb/db_output.h>
496fc729afSOlivier Houchard 
506fc729afSOlivier Houchard #define INKERNEL(va)	(((vm_offset_t)(va)) >= VM_MIN_KERNEL_ADDRESS)
516fc729afSOlivier Houchard 
526fc729afSOlivier Houchard int  db_md_set_watchpoint(db_expr_t addr, db_expr_t size);
536fc729afSOlivier Houchard int  db_md_clr_watchpoint(db_expr_t addr, db_expr_t size);
546fc729afSOlivier Houchard void db_md_list_watchpoints(void);
556fc729afSOlivier Houchard /*
566fc729afSOlivier Houchard  * APCS stack frames are awkward beasts, so I don't think even trying to use
576fc729afSOlivier Houchard  * a structure to represent them is a good idea.
586fc729afSOlivier Houchard  *
596fc729afSOlivier Houchard  * Here's the diagram from the APCS.  Increasing address is _up_ the page.
606fc729afSOlivier Houchard  *
616fc729afSOlivier Houchard  *          save code pointer       [fp]        <- fp points to here
626fc729afSOlivier Houchard  *          return link value       [fp, #-4]
636fc729afSOlivier Houchard  *          return sp value         [fp, #-8]
646fc729afSOlivier Houchard  *          return fp value         [fp, #-12]
656fc729afSOlivier Houchard  *          [saved v7 value]
666fc729afSOlivier Houchard  *          [saved v6 value]
676fc729afSOlivier Houchard  *          [saved v5 value]
686fc729afSOlivier Houchard  *          [saved v4 value]
696fc729afSOlivier Houchard  *          [saved v3 value]
706fc729afSOlivier Houchard  *          [saved v2 value]
716fc729afSOlivier Houchard  *          [saved v1 value]
726fc729afSOlivier Houchard  *          [saved a4 value]
736fc729afSOlivier Houchard  *          [saved a3 value]
746fc729afSOlivier Houchard  *          [saved a2 value]
756fc729afSOlivier Houchard  *          [saved a1 value]
766fc729afSOlivier Houchard  *
776fc729afSOlivier Houchard  * The save code pointer points twelve bytes beyond the start of the
786fc729afSOlivier Houchard  * code sequence (usually a single STM) that created the stack frame.
796fc729afSOlivier Houchard  * We have to disassemble it if we want to know which of the optional
806fc729afSOlivier Houchard  * fields are actually present.
816fc729afSOlivier Houchard  */
826fc729afSOlivier Houchard 
836fc729afSOlivier Houchard #define FR_SCP	(0)
846fc729afSOlivier Houchard #define FR_RLV	(-1)
856fc729afSOlivier Houchard #define FR_RSP	(-2)
866fc729afSOlivier Houchard #define FR_RFP	(-3)
876fc729afSOlivier Houchard 
886fc729afSOlivier Houchard void
896fc729afSOlivier Houchard db_stack_trace_cmd(addr, have_addr, count, modif)
906fc729afSOlivier Houchard 	db_expr_t       addr;
916fc729afSOlivier Houchard 	int             have_addr;
926fc729afSOlivier Houchard 	db_expr_t       count;
936fc729afSOlivier Houchard 	char            *modif;
946fc729afSOlivier Houchard {
956fc729afSOlivier Houchard 	u_int32_t	*frame, *lastframe;
966fc729afSOlivier Houchard 	c_db_sym_t sym;
976fc729afSOlivier Houchard 	db_expr_t pc;
986fc729afSOlivier Houchard 	char c, *cp = modif;
996fc729afSOlivier Houchard 	const char *name;
1006fc729afSOlivier Houchard 	db_expr_t value;
1016fc729afSOlivier Houchard 	db_expr_t offset;
1026fc729afSOlivier Houchard 	boolean_t	kernel_only = TRUE;
1036fc729afSOlivier Houchard 	boolean_t	trace_thread = FALSE;
1046fc729afSOlivier Houchard 	int	scp_offset;
1056fc729afSOlivier Houchard 
1062f6d0d8fSOlivier Houchard 	if (kdb_frame == NULL)
1072f6d0d8fSOlivier Houchard 		return;
1086fc729afSOlivier Houchard 	while ((c = *cp++) != 0) {
1096fc729afSOlivier Houchard 		if (c == 'u')
1106fc729afSOlivier Houchard 			kernel_only = FALSE;
1116fc729afSOlivier Houchard 		if (c == 't')
1126fc729afSOlivier Houchard 			trace_thread = TRUE;
1136fc729afSOlivier Houchard 	}
1146fc729afSOlivier Houchard 
1156fc729afSOlivier Houchard 	if (!have_addr)
1162f6d0d8fSOlivier Houchard 		frame = (u_int32_t *)(kdb_frame->tf_r11);
1176fc729afSOlivier Houchard 	else {
1186fc729afSOlivier Houchard 		if (trace_thread) {
1196fc729afSOlivier Houchard 			struct proc *p;
1206fc729afSOlivier Houchard 			struct thread *td;
1216fc729afSOlivier Houchard 			pid_t pid = (pid_t)addr;
1226fc729afSOlivier Houchard 			LIST_FOREACH(p, &allproc, p_list) {
1236fc729afSOlivier Houchard 				if (p->p_pid == pid)
1246fc729afSOlivier Houchard 					break;
1256fc729afSOlivier Houchard 			}
1266fc729afSOlivier Houchard 
1276fc729afSOlivier Houchard 			if (p == NULL) {
1286fc729afSOlivier Houchard 				db_printf("not found\n");
1296fc729afSOlivier Houchard 				return;
1306fc729afSOlivier Houchard 			}
1316fc729afSOlivier Houchard 			if (!(p->p_sflag & PS_INMEM)) {
1326fc729afSOlivier Houchard 				db_printf("swapped out\n");
1336fc729afSOlivier Houchard 				return;
1346fc729afSOlivier Houchard 			}
1356fc729afSOlivier Houchard 			td = FIRST_THREAD_IN_PROC(p);
1366fc729afSOlivier Houchard 			frame = (u_int32_t *)(td->td_pcb->un_32.pcb32_r11);
1376fc729afSOlivier Houchard 			db_printf("at %p\n", frame);
1386fc729afSOlivier Houchard 		} else
1396fc729afSOlivier Houchard 			frame = (u_int32_t *)(addr);
1406fc729afSOlivier Houchard 	}
1416fc729afSOlivier Houchard 	lastframe = NULL;
1426fc729afSOlivier Houchard 	scp_offset = -(get_pc_str_offset() >> 2);
1436fc729afSOlivier Houchard 
1446fc729afSOlivier Houchard 	while (count-- && frame != NULL) {
1456fc729afSOlivier Houchard 		db_addr_t	scp;
1466fc729afSOlivier Houchard 		u_int32_t	savecode;
1476fc729afSOlivier Houchard 		int		r;
1486fc729afSOlivier Houchard 		u_int32_t	*rp;
1496fc729afSOlivier Houchard 		const char	*sep;
1506fc729afSOlivier Houchard 
1516fc729afSOlivier Houchard 		/*
1526fc729afSOlivier Houchard 		 * In theory, the SCP isn't guaranteed to be in the function
1536fc729afSOlivier Houchard 		 * that generated the stack frame.  We hope for the best.
1546fc729afSOlivier Houchard 		 */
1556fc729afSOlivier Houchard #ifdef __PROG26
1566fc729afSOlivier Houchard 		scp = frame[FR_SCP] & R15_PC;
1576fc729afSOlivier Houchard #else
1586fc729afSOlivier Houchard 		scp = frame[FR_SCP];
1596fc729afSOlivier Houchard #endif
1606fc729afSOlivier Houchard 
1616fc729afSOlivier Houchard 		db_printsym(scp, DB_STGY_PROC);
1626fc729afSOlivier Houchard 		db_printf("\n\t");
1632f6d0d8fSOlivier Houchard 		pc = kdb_frame->tf_pc;
1646fc729afSOlivier Houchard 		sym = db_search_symbol(pc, DB_STGY_ANY, &offset);
1656fc729afSOlivier Houchard 		if (sym == C_DB_SYM_NULL) {
1666fc729afSOlivier Houchard 			value = 0;
1676fc729afSOlivier Houchard 			name = "(null)";
1686fc729afSOlivier Houchard 		} else
1696fc729afSOlivier Houchard 			db_symbol_values(sym, &name, &value);
1706fc729afSOlivier Houchard 		db_printf("%s() at ", name);
1716fc729afSOlivier Houchard 		db_printsym(pc, DB_STGY_PROC);
1726fc729afSOlivier Houchard 		db_printf("\n");
1736fc729afSOlivier Houchard #ifdef __PROG26
1746fc729afSOlivier Houchard 		db_printf("scp=0x%08x rlv=0x%08x (", scp, frame[FR_RLV] & R15_PC);
1756fc729afSOlivier Houchard 		db_printsym(frame[FR_RLV] & R15_PC, DB_STGY_PROC);
1766fc729afSOlivier Houchard 		db_printf(")\n");
1776fc729afSOlivier Houchard #else
1786fc729afSOlivier Houchard 		db_printf("scp=0x%08x rlv=0x%08x (", scp, frame[FR_RLV]);
1796fc729afSOlivier Houchard 		db_printsym(frame[FR_RLV], DB_STGY_PROC);
1806fc729afSOlivier Houchard 		db_printf(")\n");
1816fc729afSOlivier Houchard #endif
1826fc729afSOlivier Houchard 		db_printf("\trsp=0x%08x rfp=0x%08x", frame[FR_RSP], frame[FR_RFP]);
1836fc729afSOlivier Houchard 
1846fc729afSOlivier Houchard 		savecode = ((u_int32_t *)scp)[scp_offset];
1856fc729afSOlivier Houchard 		if ((savecode & 0x0e100000) == 0x08000000) {
1866fc729afSOlivier Houchard 			/* Looks like an STM */
1876fc729afSOlivier Houchard 			rp = frame - 4;
1886fc729afSOlivier Houchard 			sep = "\n\t";
1896fc729afSOlivier Houchard 			for (r = 10; r >= 0; r--) {
1906fc729afSOlivier Houchard 				if (savecode & (1 << r)) {
1916fc729afSOlivier Houchard 					db_printf("%sr%d=0x%08x",
1926fc729afSOlivier Houchard 					    sep, r, *rp--);
1936fc729afSOlivier Houchard 					sep = (frame - rp) % 4 == 2 ?
1946fc729afSOlivier Houchard 					    "\n\t" : " ";
1956fc729afSOlivier Houchard 				}
1966fc729afSOlivier Houchard 			}
1976fc729afSOlivier Houchard 		}
1986fc729afSOlivier Houchard 
1996fc729afSOlivier Houchard 		db_printf("\n");
2006fc729afSOlivier Houchard 
2016fc729afSOlivier Houchard 		/*
2026fc729afSOlivier Houchard 		 * Switch to next frame up
2036fc729afSOlivier Houchard 		 */
2046fc729afSOlivier Houchard 		if (frame[FR_RFP] == 0)
2056fc729afSOlivier Houchard 			break; /* Top of stack */
2066fc729afSOlivier Houchard 
2076fc729afSOlivier Houchard 		lastframe = frame;
2086fc729afSOlivier Houchard 		frame = (u_int32_t *)(frame[FR_RFP]);
2096fc729afSOlivier Houchard 
2106fc729afSOlivier Houchard 		if (INKERNEL((int)frame)) {
2116fc729afSOlivier Houchard 			/* staying in kernel */
2126fc729afSOlivier Houchard 			if (frame <= lastframe) {
2136fc729afSOlivier Houchard 				db_printf("Bad frame pointer: %p\n", frame);
2146fc729afSOlivier Houchard 				break;
2156fc729afSOlivier Houchard 			}
2166fc729afSOlivier Houchard 		} else if (INKERNEL((int)lastframe)) {
2176fc729afSOlivier Houchard 			/* switch from user to kernel */
2186fc729afSOlivier Houchard 			if (kernel_only)
2196fc729afSOlivier Houchard 				break;	/* kernel stack only */
2206fc729afSOlivier Houchard 		} else {
2216fc729afSOlivier Houchard 			/* in user */
2226fc729afSOlivier Houchard 			if (frame <= lastframe) {
2236fc729afSOlivier Houchard 				db_printf("Bad user frame pointer: %p\n",
2246fc729afSOlivier Houchard 					  frame);
2256fc729afSOlivier Houchard 				break;
2266fc729afSOlivier Houchard 			}
2276fc729afSOlivier Houchard 		}
2286fc729afSOlivier Houchard 	}
2296fc729afSOlivier Houchard }
2306fc729afSOlivier Houchard 
2316fc729afSOlivier Houchard /* XXX stubs */
2326fc729afSOlivier Houchard void
2336fc729afSOlivier Houchard db_md_list_watchpoints()
2346fc729afSOlivier Houchard {
2356fc729afSOlivier Houchard }
2366fc729afSOlivier Houchard 
2376fc729afSOlivier Houchard int
2386fc729afSOlivier Houchard db_md_clr_watchpoint(db_expr_t addr, db_expr_t size)
2396fc729afSOlivier Houchard {
2406fc729afSOlivier Houchard 	return (0);
2416fc729afSOlivier Houchard }
2426fc729afSOlivier Houchard 
2436fc729afSOlivier Houchard int
2446fc729afSOlivier Houchard db_md_set_watchpoint(db_expr_t addr, db_expr_t size)
2456fc729afSOlivier Houchard {
2466fc729afSOlivier Houchard 	return (0);
2476fc729afSOlivier Houchard }
2482f6d0d8fSOlivier Houchard int
2492f6d0d8fSOlivier Houchard db_trace_thread(struct thread *thr, int count)
2506fc729afSOlivier Houchard {
2516fc729afSOlivier Houchard 
2526fc729afSOlivier Houchard 	db_stack_trace_cmd((db_expr_t)__builtin_frame_address(0), 1, -1, NULL);
2532f6d0d8fSOlivier Houchard 	return (0);
2542f6d0d8fSOlivier Houchard }
2552f6d0d8fSOlivier Houchard 
2562f6d0d8fSOlivier Houchard void
2572f6d0d8fSOlivier Houchard db_trace_self(void)
2582f6d0d8fSOlivier Houchard {
2596fc729afSOlivier Houchard }
260