Home | History | Annotate | Line # | Download | only in ddb
db_trap.c revision 1.17.2.6
      1  1.17.2.6   nathanw /*	$NetBSD: db_trap.c,v 1.17.2.6 2002/07/12 01:40:06 nathanw Exp $	*/
      2       1.5       cgd 
      3  1.17.2.3   nathanw /*
      4       1.1       cgd  * Mach Operating System
      5       1.1       cgd  * Copyright (c) 1991,1990 Carnegie Mellon University
      6       1.1       cgd  * All Rights Reserved.
      7  1.17.2.3   nathanw  *
      8       1.1       cgd  * Permission to use, copy, modify and distribute this software and its
      9       1.1       cgd  * documentation is hereby granted, provided that both the copyright
     10       1.1       cgd  * notice and this permission notice appear in all copies of the
     11       1.1       cgd  * software, derivative works or modified versions, and any portions
     12       1.1       cgd  * thereof, and that both notices appear in supporting documentation.
     13  1.17.2.3   nathanw  *
     14      1.14        pk  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     15       1.1       cgd  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
     16       1.1       cgd  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     17  1.17.2.3   nathanw  *
     18       1.1       cgd  * Carnegie Mellon requests users of this software to return to
     19  1.17.2.3   nathanw  *
     20       1.1       cgd  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     21       1.1       cgd  *  School of Computer Science
     22       1.1       cgd  *  Carnegie Mellon University
     23       1.1       cgd  *  Pittsburgh PA 15213-3890
     24  1.17.2.3   nathanw  *
     25       1.1       cgd  * any improvements or extensions that they make and grant Carnegie the
     26       1.1       cgd  * rights to redistribute these changes.
     27       1.1       cgd  *
     28       1.1       cgd  * 	Author: David B. Golub, Carnegie Mellon University
     29       1.1       cgd  *	Date:	7/90
     30       1.1       cgd  */
     31       1.1       cgd 
     32       1.1       cgd /*
     33       1.1       cgd  * Trap entry point to kernel debugger.
     34       1.1       cgd  */
     35  1.17.2.2   nathanw 
     36  1.17.2.2   nathanw #include <sys/cdefs.h>
     37  1.17.2.6   nathanw __KERNEL_RCSID(0, "$NetBSD: db_trap.c,v 1.17.2.6 2002/07/12 01:40:06 nathanw Exp $");
     38  1.17.2.2   nathanw 
     39       1.7   mycroft #include <sys/param.h>
     40       1.7   mycroft #include <sys/proc.h>
     41       1.7   mycroft 
     42       1.7   mycroft #include <machine/db_machdep.h>
     43       1.7   mycroft 
     44       1.6   mycroft #include <ddb/db_run.h>
     45       1.1       cgd #include <ddb/db_command.h>
     46       1.1       cgd #include <ddb/db_break.h>
     47       1.9  christos #include <ddb/db_output.h>
     48       1.9  christos #include <ddb/db_sym.h>
     49       1.9  christos #include <ddb/db_extern.h>
     50       1.1       cgd 
     51      1.16     jeffs /*
     52      1.16     jeffs  * db_trap_callback can be hooked by MD port code to handle special
     53      1.16     jeffs  * cases such as disabling hardware watchdogs while in DDB.
     54      1.16     jeffs  */
     55      1.15     jeffs void (*db_trap_callback)(int);
     56      1.15     jeffs 
     57       1.9  christos void
     58  1.17.2.3   nathanw db_trap(int type, int code)
     59       1.1       cgd {
     60       1.1       cgd 	boolean_t	bkpt;
     61       1.1       cgd 	boolean_t	watchpt;
     62       1.1       cgd 
     63       1.1       cgd 	bkpt = IS_BREAKPOINT_TRAP(type, code);
     64       1.1       cgd 	watchpt = IS_WATCHPOINT_TRAP(type, code);
     65       1.1       cgd 
     66      1.15     jeffs 	if (db_trap_callback) db_trap_callback(1);
     67      1.15     jeffs 
     68       1.6   mycroft 	if (db_stop_at_pc(DDB_REGS, &bkpt)) {
     69  1.17.2.3   nathanw 		if (db_inst_count) {
     70  1.17.2.3   nathanw 			db_printf("After %d instructions "
     71  1.17.2.3   nathanw 			    "(%d loads, %d stores),\n",
     72  1.17.2.3   nathanw 			    db_inst_count, db_load_count, db_store_count);
     73  1.17.2.3   nathanw 		}
     74  1.17.2.5   nathanw 		if (curlwp != NULL) {
     75  1.17.2.3   nathanw 			if (bkpt)
     76  1.17.2.3   nathanw 				db_printf("Breakpoint");
     77  1.17.2.3   nathanw 			else if (watchpt)
     78  1.17.2.3   nathanw 				db_printf("Watchpoint");
     79  1.17.2.3   nathanw 			else
     80  1.17.2.3   nathanw 				db_printf("Stopped");
     81  1.17.2.5   nathanw 			if (curproc == NULL)
     82  1.17.2.5   nathanw 				db_printf("; curlwp = %p,"
     83  1.17.2.5   nathanw 				    " curproc is NULL at\t", curlwp);
     84  1.17.2.1   nathanw 			else
     85  1.17.2.4   nathanw 				db_printf(" in pid %d.%d (%s) at\t",
     86  1.17.2.5   nathanw 				    curproc->p_pid, curlwp->l_lid,
     87  1.17.2.5   nathanw 				    curproc->p_comm);
     88  1.17.2.3   nathanw 		} else if (bkpt)
     89  1.17.2.3   nathanw 			db_printf("Breakpoint at\t");
     90  1.17.2.3   nathanw 		else if (watchpt)
     91  1.17.2.3   nathanw 			db_printf("Watchpoint at\t");
     92  1.17.2.3   nathanw 		else
     93  1.17.2.3   nathanw 			db_printf("Stopped at\t");
     94  1.17.2.3   nathanw 		db_dot = PC_REGS(DDB_REGS);
     95  1.17.2.3   nathanw 		db_print_loc_and_inst(db_dot);
     96       1.1       cgd 
     97  1.17.2.3   nathanw 		db_command_loop();
     98       1.1       cgd 	}
     99       1.1       cgd 
    100       1.6   mycroft 	db_restart_at_pc(DDB_REGS, watchpt);
    101      1.15     jeffs 
    102  1.17.2.3   nathanw 	if (db_trap_callback)
    103  1.17.2.3   nathanw 		db_trap_callback(0);
    104       1.1       cgd }
    105