Lines Matching refs:compat_regt

41 	compat_uint_t compat_regt;  in restore_sigcontext32()  local
53 err |= __get_user(compat_regt,&rf->rf_gr[regn]); in restore_sigcontext32()
54 regs->gr[regn] = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32()
56 regn, regs->gr[regn], compat_regt, compat_reg); in restore_sigcontext32()
67 err |= __get_user(compat_regt, &rf->rf_iaoq[0]); in restore_sigcontext32()
68 regs->iaoq[0] = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32()
69 DBG(2,"restore_sigcontext32: upper half of iaoq[0] = %#lx\n", compat_regt); in restore_sigcontext32()
75 err |= __get_user(compat_regt, &rf->rf_iaoq[1]); in restore_sigcontext32()
76 regs->iaoq[1] = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32()
77 DBG(2,"restore_sigcontext32: upper half of iaoq[1] = %#lx\n", compat_regt); in restore_sigcontext32()
85 err |= __get_user(compat_regt, &rf->rf_iasq[0]); in restore_sigcontext32()
86 regs->iasq[0] = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32()
87 DBG(2,"restore_sigcontext32: upper half of iasq[0] = %#lx\n", compat_regt); in restore_sigcontext32()
91 err |= __get_user(compat_regt, &rf->rf_iasq[1]); in restore_sigcontext32()
92 regs->iasq[1] = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32()
93 DBG(2,"restore_sigcontext32: upper half of iasq[1] = %#lx\n", compat_regt); in restore_sigcontext32()
99 err |= __get_user(compat_regt, &rf->rf_sar); in restore_sigcontext32()
100 regs->sar = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32()
101 DBG(2,"restore_sigcontext32: upper_half & sar = %#lx\n", compat_regt); in restore_sigcontext32()