Lines Matching refs:childregs
1773 struct pt_regs *childregs; in copy_thread() local
1779 childregs = (struct pt_regs *)(sp + STACK_INT_FRAME_REGS); in copy_thread()
1789 memset(childregs, 0, sizeof(struct pt_regs)); in copy_thread()
1791 childregs->softe = IRQS_ENABLED; in copy_thread()
1800 *childregs = *regs; in copy_thread()
1802 childregs->gpr[1] = usp; in copy_thread()
1803 ((unsigned long *)sp)[0] = childregs->gpr[1]; in copy_thread()
1805 WARN_ON_ONCE(childregs->softe != IRQS_ENABLED); in copy_thread()
1811 childregs->gpr[13] = tls; in copy_thread()
1813 childregs->gpr[2] = tls; in copy_thread()
1822 childregs->msr &= ~(MSR_FP|MSR_VEC|MSR_VSX); in copy_thread()
1823 p->thread.regs = childregs; in copy_thread()