Lines Matching refs:pt_regs
34 { "x0", 8, offsetof(struct pt_regs, regs[0])},
35 { "x1", 8, offsetof(struct pt_regs, regs[1])},
36 { "x2", 8, offsetof(struct pt_regs, regs[2])},
37 { "x3", 8, offsetof(struct pt_regs, regs[3])},
38 { "x4", 8, offsetof(struct pt_regs, regs[4])},
39 { "x5", 8, offsetof(struct pt_regs, regs[5])},
40 { "x6", 8, offsetof(struct pt_regs, regs[6])},
41 { "x7", 8, offsetof(struct pt_regs, regs[7])},
42 { "x8", 8, offsetof(struct pt_regs, regs[8])},
43 { "x9", 8, offsetof(struct pt_regs, regs[9])},
44 { "x10", 8, offsetof(struct pt_regs, regs[10])},
45 { "x11", 8, offsetof(struct pt_regs, regs[11])},
46 { "x12", 8, offsetof(struct pt_regs, regs[12])},
47 { "x13", 8, offsetof(struct pt_regs, regs[13])},
48 { "x14", 8, offsetof(struct pt_regs, regs[14])},
49 { "x15", 8, offsetof(struct pt_regs, regs[15])},
50 { "x16", 8, offsetof(struct pt_regs, regs[16])},
51 { "x17", 8, offsetof(struct pt_regs, regs[17])},
52 { "x18", 8, offsetof(struct pt_regs, regs[18])},
53 { "x19", 8, offsetof(struct pt_regs, regs[19])},
54 { "x20", 8, offsetof(struct pt_regs, regs[20])},
55 { "x21", 8, offsetof(struct pt_regs, regs[21])},
56 { "x22", 8, offsetof(struct pt_regs, regs[22])},
57 { "x23", 8, offsetof(struct pt_regs, regs[23])},
58 { "x24", 8, offsetof(struct pt_regs, regs[24])},
59 { "x25", 8, offsetof(struct pt_regs, regs[25])},
60 { "x26", 8, offsetof(struct pt_regs, regs[26])},
61 { "x27", 8, offsetof(struct pt_regs, regs[27])},
62 { "x28", 8, offsetof(struct pt_regs, regs[28])},
63 { "x29", 8, offsetof(struct pt_regs, regs[29])},
64 { "x30", 8, offsetof(struct pt_regs, regs[30])},
65 { "sp", 8, offsetof(struct pt_regs, sp)},
66 { "pc", 8, offsetof(struct pt_regs, pc)},
73 { "pstate", 4, offsetof(struct pt_regs, pstate)
114 char *dbg_get_reg(int regno, void *mem, struct pt_regs *regs) in dbg_get_reg()
127 int dbg_set_reg(int regno, void *mem, struct pt_regs *regs) in dbg_set_reg()
162 void kgdb_arch_set_pc(struct pt_regs *regs, unsigned long pc) in kgdb_arch_set_pc()
169 static void kgdb_arch_update_addr(struct pt_regs *regs, in kgdb_arch_update_addr()
187 struct pt_regs *linux_regs) in kgdb_arch_handle_exception()
245 static int kgdb_brk_fn(struct pt_regs *regs, unsigned int esr) in kgdb_brk_fn()
252 static int kgdb_compiled_brk_fn(struct pt_regs *regs, unsigned int esr) in NOKPROBE_SYMBOL()
261 static int kgdb_step_brk_fn(struct pt_regs *regs, unsigned int esr) in kgdb_step_brk_fn()
301 struct pt_regs *regs = args->regs; in __kgdb_notify()