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 __FBSDID("$FreeBSD$"); 40 41 #include <sys/param.h> 42 #include <sys/kdb.h> 43 #include <sys/proc.h> 44 45 #include <machine/pcb.h> 46 47 #include <ddb/ddb.h> 48 #include <ddb/db_variables.h> 49 #include <ddb/db_sym.h> 50 51 void 52 db_show_regs(db_expr_t _1, bool _2, db_expr_t _3, char *_4) 53 { 54 struct db_variable *regp; 55 db_expr_t value, offset; 56 const char *name; 57 58 for (regp = db_regs; regp < db_eregs; regp++) { 59 if (!db_read_variable(regp, &value)) 60 continue; 61 db_printf("%-12s%#*lr", regp->name, 62 (int)(sizeof(unsigned long) * 2 + 2), (unsigned long)value); 63 db_find_xtrn_sym_and_offset((db_addr_t)value, &name, &offset); 64 if (name != NULL && offset <= (unsigned long)db_maxoff && 65 offset != value) { 66 db_printf("\t%s", name); 67 if (offset != 0) 68 db_printf("+%+#lr", (long)offset); 69 } 70 db_printf("\n"); 71 } 72 db_print_loc_and_inst(PC_REGS()); 73 } 74