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