Lines Matching refs:pt_regs
23 { "r0", 4, offsetof(struct pt_regs, ARM_r0)},
24 { "r1", 4, offsetof(struct pt_regs, ARM_r1)},
25 { "r2", 4, offsetof(struct pt_regs, ARM_r2)},
26 { "r3", 4, offsetof(struct pt_regs, ARM_r3)},
27 { "r4", 4, offsetof(struct pt_regs, ARM_r4)},
28 { "r5", 4, offsetof(struct pt_regs, ARM_r5)},
29 { "r6", 4, offsetof(struct pt_regs, ARM_r6)},
30 { "r7", 4, offsetof(struct pt_regs, ARM_r7)},
31 { "r8", 4, offsetof(struct pt_regs, ARM_r8)},
32 { "r9", 4, offsetof(struct pt_regs, ARM_r9)},
33 { "r10", 4, offsetof(struct pt_regs, ARM_r10)},
34 { "fp", 4, offsetof(struct pt_regs, ARM_fp)},
35 { "ip", 4, offsetof(struct pt_regs, ARM_ip)},
36 { "sp", 4, offsetof(struct pt_regs, ARM_sp)},
37 { "lr", 4, offsetof(struct pt_regs, ARM_lr)},
38 { "pc", 4, offsetof(struct pt_regs, ARM_pc)},
48 { "cpsr", 4, offsetof(struct pt_regs, ARM_cpsr)},
51 char *dbg_get_reg(int regno, void *mem, struct pt_regs *regs) in dbg_get_reg()
64 int dbg_set_reg(int regno, void *mem, struct pt_regs *regs) in dbg_set_reg()
103 void kgdb_arch_set_pc(struct pt_regs *regs, unsigned long pc) in kgdb_arch_set_pc()
113 struct pt_regs *linux_regs) in kgdb_arch_handle_exception()
142 static int kgdb_brk_fn(struct pt_regs *regs, unsigned int instr) in kgdb_brk_fn()
149 static int kgdb_compiled_brk_fn(struct pt_regs *regs, unsigned int instr) in kgdb_compiled_brk_fn()
187 struct pt_regs *regs = args->regs; in __kgdb_notify()