/linux-6.12.1/arch/nios2/kernel/ |
D | kgdb.c | 20 { "zero", GDB_SIZEOF_REG, -1 }, 21 { "at", GDB_SIZEOF_REG, offsetof(struct pt_regs, r1) }, 22 { "r2", GDB_SIZEOF_REG, offsetof(struct pt_regs, r2) }, 23 { "r3", GDB_SIZEOF_REG, offsetof(struct pt_regs, r3) }, 24 { "r4", GDB_SIZEOF_REG, offsetof(struct pt_regs, r4) }, 25 { "r5", GDB_SIZEOF_REG, offsetof(struct pt_regs, r5) }, 26 { "r6", GDB_SIZEOF_REG, offsetof(struct pt_regs, r6) }, 27 { "r7", GDB_SIZEOF_REG, offsetof(struct pt_regs, r7) }, 28 { "r8", GDB_SIZEOF_REG, offsetof(struct pt_regs, r8) }, 29 { "r9", GDB_SIZEOF_REG, offsetof(struct pt_regs, r9) }, [all …]
|
/linux-6.12.1/arch/mips/kernel/ |
D | kgdb.c | 56 { "zero", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[0]) }, 57 { "at", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[1]) }, 58 { "v0", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[2]) }, 59 { "v1", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[3]) }, 60 { "a0", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[4]) }, 61 { "a1", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[5]) }, 62 { "a2", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[6]) }, 63 { "a3", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[7]) }, 64 { "t0", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[8]) }, 65 { "t1", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[9]) }, [all …]
|
/linux-6.12.1/arch/hexagon/kernel/ |
D | kgdb.c | 15 #define GDB_SIZEOF_REG 4 macro 20 { " r0", GDB_SIZEOF_REG, offsetof(struct pt_regs, r00)}, 21 { " r1", GDB_SIZEOF_REG, offsetof(struct pt_regs, r01)}, 22 { " r2", GDB_SIZEOF_REG, offsetof(struct pt_regs, r02)}, 23 { " r3", GDB_SIZEOF_REG, offsetof(struct pt_regs, r03)}, 24 { " r4", GDB_SIZEOF_REG, offsetof(struct pt_regs, r04)}, 25 { " r5", GDB_SIZEOF_REG, offsetof(struct pt_regs, r05)}, 26 { " r6", GDB_SIZEOF_REG, offsetof(struct pt_regs, r06)}, 27 { " r7", GDB_SIZEOF_REG, offsetof(struct pt_regs, r07)}, 28 { " r8", GDB_SIZEOF_REG, offsetof(struct pt_regs, r08)}, [all …]
|
/linux-6.12.1/arch/loongarch/kernel/ |
D | kgdb.c | 29 { "r0", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[0]) }, 30 { "r1", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[1]) }, 31 { "r2", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[2]) }, 32 { "r3", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[3]) }, 33 { "r4", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[4]) }, 34 { "r5", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[5]) }, 35 { "r6", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[6]) }, 36 { "r7", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[7]) }, 37 { "r8", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[8]) }, 38 { "r9", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[9]) }, [all …]
|
/linux-6.12.1/arch/powerpc/kernel/ |
D | kgdb.c | 234 #define GDB_SIZEOF_REG sizeof(unsigned long) macro 245 { "r0", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[0]) }, 246 { "r1", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[1]) }, 247 { "r2", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[2]) }, 248 { "r3", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[3]) }, 249 { "r4", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[4]) }, 250 { "r5", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[5]) }, 251 { "r6", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[6]) }, 252 { "r7", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[7]) }, 253 { "r8", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[8]) }, [all …]
|
/linux-6.12.1/arch/riscv/kernel/ |
D | kgdb.c | 169 {DBG_REG_ZERO, GDB_SIZEOF_REG, -1}, 170 {DBG_REG_RA, GDB_SIZEOF_REG, offsetof(struct pt_regs, ra)}, 171 {DBG_REG_SP, GDB_SIZEOF_REG, offsetof(struct pt_regs, sp)}, 172 {DBG_REG_GP, GDB_SIZEOF_REG, offsetof(struct pt_regs, gp)}, 173 {DBG_REG_TP, GDB_SIZEOF_REG, offsetof(struct pt_regs, tp)}, 174 {DBG_REG_T0, GDB_SIZEOF_REG, offsetof(struct pt_regs, t0)}, 175 {DBG_REG_T1, GDB_SIZEOF_REG, offsetof(struct pt_regs, t1)}, 176 {DBG_REG_T2, GDB_SIZEOF_REG, offsetof(struct pt_regs, t2)}, 177 {DBG_REG_FP, GDB_SIZEOF_REG, offsetof(struct pt_regs, s0)}, 178 {DBG_REG_S1, GDB_SIZEOF_REG, offsetof(struct pt_regs, a1)}, [all …]
|
/linux-6.12.1/arch/sh/kernel/ |
D | kgdb.c | 168 { "r0", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[0]) }, 169 { "r1", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[1]) }, 170 { "r2", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[2]) }, 171 { "r3", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[3]) }, 172 { "r4", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[4]) }, 173 { "r5", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[5]) }, 174 { "r6", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[6]) }, 175 { "r7", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[7]) }, 176 { "r8", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[8]) }, 177 { "r9", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[9]) }, [all …]
|
/linux-6.12.1/arch/mips/include/asm/ |
D | kgdb.h | 13 #define GDB_SIZEOF_REG sizeof(u32) macro 20 #define GDB_SIZEOF_REG sizeof(u32) macro 23 #define GDB_SIZEOF_REG sizeof(u64) macro 31 #define NUMREGBYTES (DBG_MAX_REG_NUM * sizeof(GDB_SIZEOF_REG)) 32 #define NUMCRITREGBYTES (12 * sizeof(GDB_SIZEOF_REG))
|
/linux-6.12.1/arch/sh/include/asm/ |
D | kgdb.h | 17 #define GDB_SIZEOF_REG sizeof(u32) macro 20 #define NUMREGBYTES (DBG_MAX_REG_NUM * sizeof(GDB_SIZEOF_REG))
|
/linux-6.12.1/arch/loongarch/include/asm/ |
D | kgdb.h | 9 #define GDB_SIZEOF_REG sizeof(u64) macro 61 #define NUMREGBYTES ((DBG_PT_REGS_NUM + DBG_FPR_NUM) * GDB_SIZEOF_REG + DBG_FCC_NUM * 1 + DBG_FCSR…
|
/linux-6.12.1/arch/nios2/include/asm/ |
D | kgdb.h | 70 #define GDB_SIZEOF_REG sizeof(u32) macro 72 #define NUMREGBYTES (DBG_MAX_REG_NUM * sizeof(GDB_SIZEOF_REG))
|
/linux-6.12.1/arch/riscv/include/asm/ |
D | kgdb.h | 8 #define GDB_SIZEOF_REG sizeof(unsigned long) macro 11 #define NUMREGBYTES ((DBG_MAX_REG_NUM) * GDB_SIZEOF_REG)
|