Go to the documentation of this file.
8 #if (_MIPS_ISA == _MIPS_ISA_MIPS1) || (_MIPS_ISA == _MIPS_ISA_MIPS2) || \
9 (_MIPS_ISA == _MIPS_ISA_MIPS32)
11 #define KGDB_GDB_REG_SIZE 32
12 #define GDB_SIZEOF_REG sizeof(u32)
14 #elif (_MIPS_ISA == _MIPS_ISA_MIPS3) || (_MIPS_ISA == _MIPS_ISA_MIPS4) || \
15 (_MIPS_ISA == _MIPS_ISA_MIPS64)
18 #define KGDB_GDB_REG_SIZE 32
19 #define GDB_SIZEOF_REG sizeof(u32)
21 #define KGDB_GDB_REG_SIZE 64
22 #define GDB_SIZEOF_REG sizeof(u64)
25 #error "Need to set KGDB_GDB_REG_SIZE for MIPS ISA"
29 #define DBG_MAX_REG_NUM 72
30 #define NUMREGBYTES (DBG_MAX_REG_NUM * sizeof(GDB_SIZEOF_REG))
31 #define NUMCRITREGBYTES (12 * sizeof(GDB_SIZEOF_REG))
32 #define BREAK_INSTR_SIZE 4
33 #define CACHE_FLUSH_IS_SAFE 0
36 extern int kgdb_early_setup;
37 extern void *saved_vectors[32];
39 extern void breakinst(
void);