• Home
  • Raw
  • Download

Lines Matching refs:pt_regs

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