Home | History | Annotate | Line # | Download | only in include
db_machdep.h revision 1.13
      1  1.13      leo /*	$NetBSD: db_machdep.h,v 1.13 1996/04/29 20:50:08 leo Exp $	*/
      2  1.12      cgd 
      3   1.1    glass /*
      4   1.1    glass  * Mach Operating System
      5   1.1    glass  * Copyright (c) 1992 Carnegie Mellon University
      6   1.1    glass  * All Rights Reserved.
      7   1.1    glass  *
      8   1.1    glass  * Permission to use, copy, modify and distribute this software and its
      9   1.1    glass  * documentation is hereby granted, provided that both the copyright
     10   1.1    glass  * notice and this permission notice appear in all copies of the
     11   1.1    glass  * software, derivative works or modified versions, and any portions
     12   1.1    glass  * thereof, and that both notices appear in supporting documentation.
     13   1.1    glass  *
     14   1.1    glass  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     15   1.1    glass  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
     16   1.1    glass  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     17   1.1    glass  *
     18   1.1    glass  * Carnegie Mellon requests users of this software to return to
     19   1.1    glass  *
     20   1.1    glass  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     21   1.1    glass  *  School of Computer Science
     22   1.1    glass  *  Carnegie Mellon University
     23   1.1    glass  *  Pittsburgh PA 15213-3890
     24   1.1    glass  *
     25   1.1    glass  * any improvements or extensions that they make and grant Carnegie Mellon
     26   1.1    glass  * the rights to redistribute these changes.
     27   1.1    glass  */
     28   1.1    glass 
     29   1.1    glass /*
     30   1.1    glass  * Machine-dependent defines for new kernel debugger.
     31   1.1    glass  */
     32   1.3      cgd #ifndef	_M68K_DB_MACHDEP_H_
     33   1.3      cgd #define	_M68K_DB_MACHDEP_H_
     34   1.1    glass 
     35   1.1    glass #include <vm/vm_prot.h>
     36   1.1    glass #include <vm/vm_param.h>
     37   1.1    glass #include <vm/vm_inherit.h>
     38   1.1    glass #include <vm/lock.h>
     39   1.1    glass #include <machine/psl.h>
     40   1.1    glass #include <machine/trap.h>
     41   1.1    glass 
     42   1.1    glass typedef	vm_offset_t	db_addr_t;	/* address - unsigned */
     43   1.1    glass typedef	int		db_expr_t;	/* expression - signed */
     44   1.1    glass struct mc68020_saved_state {
     45   1.7  mycroft 	int		d0;		/* data registers */
     46   1.7  mycroft 	int		d1;
     47   1.7  mycroft 	int		d2;
     48   1.7  mycroft 	int		d3;
     49   1.7  mycroft 	int		d4;
     50   1.7  mycroft 	int		d5;
     51   1.7  mycroft 	int		d6;
     52   1.7  mycroft 	int		d7;
     53   1.7  mycroft 	int		a0;		/* address registers */
     54   1.7  mycroft 	int		a1;
     55   1.7  mycroft 	int		a2;
     56   1.7  mycroft 	int		a3;
     57   1.7  mycroft 	int		a4;
     58   1.7  mycroft 	int		a5;
     59   1.7  mycroft 	int		a6;
     60   1.7  mycroft 	int		sp;		/* stack pointer */
     61   1.6  mycroft 	short		empty;
     62  1.10  mycroft 	short		stackadj;
     63   1.7  mycroft 	unsigned short	sr;		/* status register */
     64   1.7  mycroft 	unsigned int	pc;		/* program counter - UNALIGNED!!! */
     65  1.10  mycroft 	unsigned short	stkfmt	: 4;	/* rte stack frame format */
     66  1.10  mycroft 	unsigned short	vector	: 12;	/* vector number */
     67   1.1    glass };
     68   1.1    glass typedef struct mc68020_saved_state db_regs_t;
     69   1.1    glass db_regs_t	ddb_regs;		/* register state */
     70   1.1    glass #define DDB_REGS	(&ddb_regs)
     71   1.1    glass 
     72   1.1    glass #define	PC_REGS(regs)	((db_addr_t)(regs)->pc)
     73   1.1    glass 
     74   1.1    glass #define	BKPT_INST	0x4e4f		/* breakpoint instruction */
     75   1.1    glass #define	BKPT_SIZE	(2)		/* size of breakpoint inst */
     76   1.1    glass #define	BKPT_SET(inst)	(BKPT_INST)
     77   1.1    glass 
     78   1.1    glass #define	FIXUP_PC_AFTER_BREAK	ddb_regs.pc -= 2;
     79   1.1    glass 
     80   1.2    glass #define SR_T1 0x8000
     81   1.1    glass #define	db_clear_single_step(regs)	((regs)->sr &= ~SR_T1)
     82   1.1    glass #define	db_set_single_step(regs)	((regs)->sr |=  SR_T1)
     83   1.1    glass 
     84   1.4  mycroft #define	IS_BREAKPOINT_TRAP(type, code)	((type) == T_BREAKPOINT)
     85   1.5  mycroft #ifdef T_WATCHPOINT
     86   1.1    glass #define	IS_WATCHPOINT_TRAP(type, code)	((type) == T_WATCHPOINT)
     87   1.5  mycroft #else
     88   1.5  mycroft #define	IS_WATCHPOINT_TRAP(type, code)	0
     89   1.5  mycroft #endif
     90   1.1    glass 
     91   1.1    glass #define	M_RTS		0xffff0000
     92   1.1    glass #define I_RTS		0x4e750000
     93   1.1    glass #define M_JSR		0xffc00000
     94   1.1    glass #define I_JSR		0x4e800000
     95   1.1    glass #define M_BSR		0xff000000
     96   1.1    glass #define I_BSR		0x61000000
     97   1.1    glass #define	M_RTE		0xffff0000
     98   1.1    glass #define	I_RTE		0x4e730000
     99   1.1    glass 
    100   1.1    glass #define	inst_trap_return(ins)	(((ins)&M_RTE) == I_RTE)
    101   1.1    glass #define	inst_return(ins)	(((ins)&M_RTS) == I_RTS)
    102   1.1    glass #define	inst_call(ins)		(((ins)&M_JSR) == I_JSR || \
    103   1.1    glass 				 ((ins)&M_BSR) == I_BSR)
    104   1.1    glass #define inst_load(ins)		0
    105   1.1    glass #define inst_store(ins)		0
    106  1.13      leo 
    107  1.13      leo #ifdef _KERNEL
    108  1.13      leo 
    109  1.13      leo void	kdb_kintr __P((struct mc68020_saved_state *));
    110  1.13      leo int	kdb_trap __P((int, struct mc68020_saved_state *));
    111  1.13      leo 
    112  1.13      leo #endif /* _KERNEL */
    113   1.1    glass 
    114   1.7  mycroft #endif	/* _M68K_DB_MACHDEP_H_ */
    115