Searched refs:GDB_SIZEOF_REG (Results 1 – 3 of 3) sorted by relevance
/linux-2.6.39/arch/mips/kernel/ |
D | kgdb.c | 55 { "zero", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[0]) }, 56 { "at", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[1]) }, 57 { "v0", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[2]) }, 58 { "v1", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[3]) }, 59 { "a0", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[4]) }, 60 { "a1", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[5]) }, 61 { "a2", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[6]) }, 62 { "a3", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[7]) }, 63 { "t0", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[8]) }, 64 { "t1", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[9]) }, [all …]
|
/linux-2.6.39/arch/powerpc/kernel/ |
D | kgdb.c | 240 #define GDB_SIZEOF_REG sizeof(unsigned long) macro 251 { "r0", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[0]) }, 252 { "r1", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[1]) }, 253 { "r2", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[2]) }, 254 { "r3", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[3]) }, 255 { "r4", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[4]) }, 256 { "r5", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[5]) }, 257 { "r6", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[6]) }, 258 { "r7", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[7]) }, 259 { "r8", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[8]) }, [all …]
|
/linux-2.6.39/arch/mips/include/asm/ |
D | kgdb.h | 12 #define GDB_SIZEOF_REG sizeof(u32) macro 19 #define GDB_SIZEOF_REG sizeof(u32) macro 22 #define GDB_SIZEOF_REG sizeof(u64) macro 30 #define NUMREGBYTES (DBG_MAX_REG_NUM * sizeof(GDB_SIZEOF_REG)) 31 #define NUMCRITREGBYTES (12 * sizeof(GDB_SIZEOF_REG))
|