• Home
  • Raw
  • Download

Lines Matching refs:pt_regs

23 	{ "x0", 8, offsetof(struct pt_regs, regs[0])},
24 { "x1", 8, offsetof(struct pt_regs, regs[1])},
25 { "x2", 8, offsetof(struct pt_regs, regs[2])},
26 { "x3", 8, offsetof(struct pt_regs, regs[3])},
27 { "x4", 8, offsetof(struct pt_regs, regs[4])},
28 { "x5", 8, offsetof(struct pt_regs, regs[5])},
29 { "x6", 8, offsetof(struct pt_regs, regs[6])},
30 { "x7", 8, offsetof(struct pt_regs, regs[7])},
31 { "x8", 8, offsetof(struct pt_regs, regs[8])},
32 { "x9", 8, offsetof(struct pt_regs, regs[9])},
33 { "x10", 8, offsetof(struct pt_regs, regs[10])},
34 { "x11", 8, offsetof(struct pt_regs, regs[11])},
35 { "x12", 8, offsetof(struct pt_regs, regs[12])},
36 { "x13", 8, offsetof(struct pt_regs, regs[13])},
37 { "x14", 8, offsetof(struct pt_regs, regs[14])},
38 { "x15", 8, offsetof(struct pt_regs, regs[15])},
39 { "x16", 8, offsetof(struct pt_regs, regs[16])},
40 { "x17", 8, offsetof(struct pt_regs, regs[17])},
41 { "x18", 8, offsetof(struct pt_regs, regs[18])},
42 { "x19", 8, offsetof(struct pt_regs, regs[19])},
43 { "x20", 8, offsetof(struct pt_regs, regs[20])},
44 { "x21", 8, offsetof(struct pt_regs, regs[21])},
45 { "x22", 8, offsetof(struct pt_regs, regs[22])},
46 { "x23", 8, offsetof(struct pt_regs, regs[23])},
47 { "x24", 8, offsetof(struct pt_regs, regs[24])},
48 { "x25", 8, offsetof(struct pt_regs, regs[25])},
49 { "x26", 8, offsetof(struct pt_regs, regs[26])},
50 { "x27", 8, offsetof(struct pt_regs, regs[27])},
51 { "x28", 8, offsetof(struct pt_regs, regs[28])},
52 { "x29", 8, offsetof(struct pt_regs, regs[29])},
53 { "x30", 8, offsetof(struct pt_regs, regs[30])},
54 { "sp", 8, offsetof(struct pt_regs, sp)},
55 { "pc", 8, offsetof(struct pt_regs, pc)},
62 { "pstate", 4, offsetof(struct pt_regs, pstate)
103 char *dbg_get_reg(int regno, void *mem, struct pt_regs *regs) in dbg_get_reg()
116 int dbg_set_reg(int regno, void *mem, struct pt_regs *regs) in dbg_set_reg()
151 void kgdb_arch_set_pc(struct pt_regs *regs, unsigned long pc) in kgdb_arch_set_pc()
158 static void kgdb_arch_update_addr(struct pt_regs *regs, in kgdb_arch_update_addr()
176 struct pt_regs *linux_regs) in kgdb_arch_handle_exception()
236 static int kgdb_brk_fn(struct pt_regs *regs, unsigned int esr) in kgdb_brk_fn()
243 static int kgdb_compiled_brk_fn(struct pt_regs *regs, unsigned int esr) in NOKPROBE_SYMBOL()
252 static int kgdb_step_brk_fn(struct pt_regs *regs, unsigned int esr) in kgdb_step_brk_fn()
278 struct pt_regs *regs = args->regs; in __kgdb_notify()