Home
last modified time | relevance | path

Searched refs:GDB_SIZEOF_REG (Results 1 – 12 of 12) sorted by relevance

/kernel/linux/linux-5.10/arch/nios2/kernel/
Dkgdb.c20 { "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 …]
/kernel/linux/linux-5.10/arch/hexagon/kernel/
Dkgdb.c15 #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 …]
/kernel/linux/linux-5.10/arch/mips/kernel/
Dkgdb.c57 { "zero", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[0]) },
58 { "at", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[1]) },
59 { "v0", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[2]) },
60 { "v1", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[3]) },
61 { "a0", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[4]) },
62 { "a1", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[5]) },
63 { "a2", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[6]) },
64 { "a3", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[7]) },
65 { "t0", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[8]) },
66 { "t1", GDB_SIZEOF_REG, offsetof(struct pt_regs, regs[9]) },
[all …]
/kernel/linux/linux-5.10/arch/powerpc/kernel/
Dkgdb.c237 #define GDB_SIZEOF_REG sizeof(unsigned long) macro
248 { "r0", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[0]) },
249 { "r1", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[1]) },
250 { "r2", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[2]) },
251 { "r3", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[3]) },
252 { "r4", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[4]) },
253 { "r5", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[5]) },
254 { "r6", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[6]) },
255 { "r7", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[7]) },
256 { "r8", GDB_SIZEOF_REG, offsetof(struct pt_regs, gpr[8]) },
[all …]
/kernel/linux/linux-5.10/arch/riscv/kernel/
Dkgdb.c188 {DBG_REG_ZERO, GDB_SIZEOF_REG, -1},
189 {DBG_REG_RA, GDB_SIZEOF_REG, offsetof(struct pt_regs, ra)},
190 {DBG_REG_SP, GDB_SIZEOF_REG, offsetof(struct pt_regs, sp)},
191 {DBG_REG_GP, GDB_SIZEOF_REG, offsetof(struct pt_regs, gp)},
192 {DBG_REG_TP, GDB_SIZEOF_REG, offsetof(struct pt_regs, tp)},
193 {DBG_REG_T0, GDB_SIZEOF_REG, offsetof(struct pt_regs, t0)},
194 {DBG_REG_T1, GDB_SIZEOF_REG, offsetof(struct pt_regs, t1)},
195 {DBG_REG_T2, GDB_SIZEOF_REG, offsetof(struct pt_regs, t2)},
196 {DBG_REG_FP, GDB_SIZEOF_REG, offsetof(struct pt_regs, s0)},
197 {DBG_REG_S1, GDB_SIZEOF_REG, offsetof(struct pt_regs, a1)},
[all …]
/kernel/linux/linux-5.10/arch/h8300/kernel/
Dkgdb.c17 { "er0", GDB_SIZEOF_REG, offsetof(struct pt_regs, er0) },
18 { "er1", GDB_SIZEOF_REG, offsetof(struct pt_regs, er1) },
19 { "er2", GDB_SIZEOF_REG, offsetof(struct pt_regs, er2) },
20 { "er3", GDB_SIZEOF_REG, offsetof(struct pt_regs, er3) },
21 { "er4", GDB_SIZEOF_REG, offsetof(struct pt_regs, er4) },
22 { "er5", GDB_SIZEOF_REG, offsetof(struct pt_regs, er5) },
23 { "er6", GDB_SIZEOF_REG, offsetof(struct pt_regs, er6) },
24 { "sp", GDB_SIZEOF_REG, offsetof(struct pt_regs, sp) },
25 { "ccr", GDB_SIZEOF_REG, offsetof(struct pt_regs, ccr) },
26 { "pc", GDB_SIZEOF_REG, offsetof(struct pt_regs, pc) },
[all …]
/kernel/linux/linux-5.10/arch/sh/kernel/
Dkgdb.c168 { "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 …]
/kernel/linux/linux-5.10/arch/mips/include/asm/
Dkgdb.h13 #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))
/kernel/linux/linux-5.10/arch/h8300/include/asm/
Dkgdb.h31 #define GDB_SIZEOF_REG sizeof(u32) macro
37 #define NUMREGBYTES (DBG_MAX_REG_NUM * GDB_SIZEOF_REG)
/kernel/linux/linux-5.10/arch/sh/include/asm/
Dkgdb.h17 #define GDB_SIZEOF_REG sizeof(u32) macro
20 #define NUMREGBYTES (DBG_MAX_REG_NUM * sizeof(GDB_SIZEOF_REG))
/kernel/linux/linux-5.10/arch/nios2/include/asm/
Dkgdb.h70 #define GDB_SIZEOF_REG sizeof(u32) macro
72 #define NUMREGBYTES (DBG_MAX_REG_NUM * sizeof(GDB_SIZEOF_REG))
/kernel/linux/linux-5.10/arch/riscv/include/asm/
Dkgdb.h8 #define GDB_SIZEOF_REG sizeof(unsigned long) macro
11 #define NUMREGBYTES ((DBG_MAX_REG_NUM) * GDB_SIZEOF_REG)