Searched refs:callee_regs (Results 1 – 12 of 12) sorted by relevance
/arch/arc/kernel/ |
D | process.c | 88 struct callee_regs *c_callee; /* child's callee regs */ in copy_thread() 89 struct callee_regs *parent_callee; /* paren't callee */ in copy_thread() 95 c_callee = ((struct callee_regs *)childksp) - 1; in copy_thread() 134 parent_callee = ((struct callee_regs *)regs) - 1; in copy_thread()
|
D | kgdb.c | 17 struct callee_regs *cregs) in to_gdb_regs() 40 struct callee_regs *cregs) in from_gdb_regs() 61 to_gdb_regs(gdb_regs, kernel_regs, (struct callee_regs *) in pt_regs_to_gdb_regs() 67 from_gdb_regs(gdb_regs, kernel_regs, (struct callee_regs *) in gdb_regs_to_pt_regs() 76 (struct callee_regs *) task->thread.callee_reg); in sleeping_thread_to_gdb_regs() 115 regs->ret, regs, (struct callee_regs *) in do_single_step()
|
D | ptrace.c | 15 static struct callee_regs *task_callee_regs(struct task_struct *tsk) in task_callee_regs() 17 struct callee_regs *tmp = (struct callee_regs *)tsk->thread.callee_reg; in task_callee_regs() 27 const struct callee_regs *cregs = task_callee_regs(target); in genregs_get() 68 const struct callee_regs *cregs = task_callee_regs(target); in genregs_set()
|
D | unaligned.c | 124 struct callee_regs *cregs) in fixup_load() 154 struct callee_regs *cregs) in fixup_store() 190 unsigned long cause, struct callee_regs *cregs) in misaligned_fixup()
|
D | troubleshoot.c | 50 static void show_callee_regs(struct callee_regs *cregs) in show_callee_regs() 169 struct callee_regs *cregs; in show_regs() 208 cregs = (struct callee_regs *)current->thread.callee_reg; in show_regs()
|
D | disasm.c | 25 int userspace, struct pt_regs *regs, struct callee_regs *cregs) in disasm_instr() 436 struct callee_regs *cregs) in get_reg() 463 struct callee_regs *cregs) in set_reg() 504 struct callee_regs *cregs, in disasm_next_pc()
|
D | traps.c | 94 struct pt_regs *regs, struct callee_regs *cregs) in do_misaligned_access()
|
D | kprobes.c | 174 (struct callee_regs *) current->thread.callee_reg, in setup_singlestep()
|
/arch/arc/include/asm/ |
D | unaligned.h | 19 unsigned long cause, struct callee_regs *cregs); 23 unsigned long cause, struct callee_regs *cregs) in misaligned_fixup()
|
D | disasm.h | 109 int userspace, struct pt_regs *regs, struct callee_regs *cregs); 110 int disasm_next_pc(unsigned long pc, struct pt_regs *regs, struct callee_regs 112 long get_reg(int reg, struct pt_regs *regs, struct callee_regs *cregs); 114 struct callee_regs *cregs);
|
D | ptrace.h | 67 struct callee_regs { struct
|
/arch/tile/kernel/ |
D | process.c | 117 unsigned long *callee_regs; in copy_thread() local 131 callee_regs = (unsigned long *)ksp; in copy_thread() 142 memset(&callee_regs[2], 0, in copy_thread() 144 callee_regs[0] = sp; /* r30 = function */ in copy_thread() 145 callee_regs[1] = arg; /* r31 = arg */ in copy_thread() 171 memcpy(callee_regs, &childregs->regs[CALLEE_SAVED_FIRST_REG], in copy_thread()
|