Home
last modified time | relevance | path

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

/linux-6.3-rc2/arch/nios2/kernel/
A Dkgdb.c20 { "zero", GDB_SIZEOF_REG, -1 },
36 { "r16", GDB_SIZEOF_REG, -1 },
37 { "r17", GDB_SIZEOF_REG, -1 },
38 { "r18", GDB_SIZEOF_REG, -1 },
39 { "r19", GDB_SIZEOF_REG, -1 },
40 { "r20", GDB_SIZEOF_REG, -1 },
41 { "r21", GDB_SIZEOF_REG, -1 },
44 { "et", GDB_SIZEOF_REG, -1 },
45 { "bt", GDB_SIZEOF_REG, -1 },
49 { "ea", GDB_SIZEOF_REG, -1 },
[all …]
/linux-6.3-rc2/arch/hexagon/kernel/
A 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 …]
/linux-6.3-rc2/arch/mips/kernel/
A Dkgdb.c94 { "f0", GDB_SIZEOF_REG, 0 },
95 { "f1", GDB_SIZEOF_REG, 1 },
96 { "f2", GDB_SIZEOF_REG, 2 },
97 { "f3", GDB_SIZEOF_REG, 3 },
98 { "f4", GDB_SIZEOF_REG, 4 },
99 { "f5", GDB_SIZEOF_REG, 5 },
100 { "f6", GDB_SIZEOF_REG, 6 },
101 { "f7", GDB_SIZEOF_REG, 7 },
102 { "f8", GDB_SIZEOF_REG, 8 },
103 { "f9", GDB_SIZEOF_REG, 9 },
[all …]
/linux-6.3-rc2/arch/powerpc/kernel/
A Dkgdb.c234 #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]) },
311 { "pc", GDB_SIZEOF_REG, offsetof(struct pt_regs, nip) },
312 { "msr", GDB_SIZEOF_REG, offsetof(struct pt_regs, msr) },
314 { "lr", GDB_SIZEOF_REG, offsetof(struct pt_regs, link) },
[all …]
/linux-6.3-rc2/arch/riscv/kernel/
A Dkgdb.c169 {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.3-rc2/arch/sh/kernel/
A 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]) },
184 { "pc", GDB_SIZEOF_REG, offsetof(struct pt_regs, pc) },
185 { "pr", GDB_SIZEOF_REG, offsetof(struct pt_regs, pr) },
186 { "sr", GDB_SIZEOF_REG, offsetof(struct pt_regs, sr) },
187 { "gbr", GDB_SIZEOF_REG, offsetof(struct pt_regs, gbr) },
188 { "mach", GDB_SIZEOF_REG, offsetof(struct pt_regs, mach) },
189 { "macl", GDB_SIZEOF_REG, offsetof(struct pt_regs, macl) },
[all …]
/linux-6.3-rc2/arch/mips/include/asm/
A 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))
/linux-6.3-rc2/arch/sh/include/asm/
A Dkgdb.h17 #define GDB_SIZEOF_REG sizeof(u32) macro
20 #define NUMREGBYTES (DBG_MAX_REG_NUM * sizeof(GDB_SIZEOF_REG))
/linux-6.3-rc2/arch/nios2/include/asm/
A Dkgdb.h70 #define GDB_SIZEOF_REG sizeof(u32) macro
72 #define NUMREGBYTES (DBG_MAX_REG_NUM * sizeof(GDB_SIZEOF_REG))
/linux-6.3-rc2/arch/riscv/include/asm/
A Dkgdb.h8 #define GDB_SIZEOF_REG sizeof(unsigned long) macro
11 #define NUMREGBYTES ((DBG_MAX_REG_NUM) * GDB_SIZEOF_REG)

Completed in 15 milliseconds