Lines Matching refs:regs
88 void show_regs(struct pt_regs * regs) in show_regs() argument
92 regs->format, regs->vector, regs->pc, regs->sr, print_tainted()); in show_regs()
94 regs->orig_d0, regs->d0, regs->a2, regs->a1); in show_regs()
96 regs->a0, regs->d5, regs->d4); in show_regs()
98 regs->d3, regs->d2, regs->d1); in show_regs()
99 if (!(regs->sr & PS_S)) in show_regs()
125 asmlinkage int m68k_clone(struct pt_regs *regs) in m68k_clone() argument
128 return do_fork(regs->d1, regs->d2, 0, in m68k_clone()
129 (int __user *)regs->d3, (int __user *)regs->d4); in m68k_clone()
137 struct pt_regs regs; in copy_thread() member
143 p->thread.esp0 = (unsigned long)&frame->regs; in copy_thread()
154 frame->regs.sr = PS_S; in copy_thread()
161 memcpy(frame, container_of(current_pt_regs(), struct fork_frame, regs), in copy_thread()
163 frame->regs.d0 = 0; in copy_thread()
168 task_thread_info(p)->tp_value = frame->regs.d5; in copy_thread()
207 int dump_fpu (struct pt_regs *regs, struct user_m68kfp_struct *fpu) in dump_fpu() argument