xref: /freebsd/sys/ddb/db_print.c (revision 315ee00f)
1 /*-
2  * SPDX-License-Identifier: MIT-CMU
3  *
4  * Mach Operating System
5  * Copyright (c) 1991,1990 Carnegie Mellon University
6  * All Rights Reserved.
7  *
8  * Permission to use, copy, modify and distribute this software and its
9  * documentation is hereby granted, provided that both the copyright
10  * notice and this permission notice appear in all copies of the
11  * software, derivative works or modified versions, and any portions
12  * thereof, and that both notices appear in supporting documentation.
13  *
14  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
15  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
16  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
17  *
18  * Carnegie Mellon requests users of this software to return to
19  *
20  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
21  *  School of Computer Science
22  *  Carnegie Mellon University
23  *  Pittsburgh PA 15213-3890
24  *
25  * any improvements or extensions that they make and grant Carnegie the
26  * rights to redistribute these changes.
27  *
28  */
29 /*
30  *	Author: David B. Golub, Carnegie Mellon University
31  *	Date:	7/90
32  */
33 
34 /*
35  * Miscellaneous printing.
36  */
37 
38 #include <sys/cdefs.h>
39 #include <sys/param.h>
40 #include <sys/kdb.h>
41 #include <sys/proc.h>
42 
43 #include <machine/pcb.h>
44 
45 #include <ddb/ddb.h>
46 #include <ddb/db_variables.h>
47 #include <ddb/db_sym.h>
48 
49 void
50 db_show_regs(db_expr_t _1, bool _2, db_expr_t _3, char *modif)
51 {
52 	struct trapframe *oldtf;
53 	struct db_variable *regp;
54 	db_expr_t value, offset;
55 	const char *name;
56 
57 	/*
58 	 * The 'u' modifier instructs us to print the previous trapframe, most
59 	 * often containing state from userspace. This is done by temporarily
60 	 * switching out kdb_frame.
61 	 *
62 	 * NB: curthread is used instead of kdb_thread, so that behaviour is
63 	 * consistent with regular `show registers`, which always prints
64 	 * curthread's trapframe.
65 	 */
66 	oldtf = kdb_frame;
67 	if (modif[0] == 'u') {
68 		if (curthread->td_frame == NULL ||
69 		    curthread->td_frame == oldtf) {
70 			db_printf("previous trapframe unavailable");
71 			return;
72 		}
73 		kdb_frame = curthread->td_frame;
74 	}
75 
76 	for (regp = db_regs; regp < db_eregs; regp++) {
77 		if (!db_read_variable(regp, &value))
78 			continue;
79 		db_printf("%-12s%#*lr", regp->name,
80 		    (int)(sizeof(unsigned long) * 2 + 2), (unsigned long)value);
81 		db_find_xtrn_sym_and_offset((db_addr_t)value, &name, &offset);
82 		if (name != NULL && offset <= (unsigned long)db_maxoff &&
83 		    offset != value) {
84 			db_printf("\t%s", name);
85 			if (offset != 0)
86 				db_printf("+%+#lr", (long)offset);
87 		}
88 		db_printf("\n");
89 	}
90 	db_print_loc_and_inst(PC_REGS());
91 
92 	kdb_frame = oldtf;
93 }
94