Lines Matching refs:compat_regt
68 compat_uint_t compat_regt; in restore_sigcontext32() local
80 err |= __get_user(compat_regt,&rf->rf_gr[regn]); in restore_sigcontext32()
81 regs->gr[regn] = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32()
83 regn, regs->gr[regn], compat_regt, compat_reg); in restore_sigcontext32()
94 err |= __get_user(compat_regt, &rf->rf_iaoq[0]); in restore_sigcontext32()
95 regs->iaoq[0] = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32()
96 DBG(2,"restore_sigcontext32: upper half of iaoq[0] = %#lx\n", compat_regt); in restore_sigcontext32()
102 err |= __get_user(compat_regt, &rf->rf_iaoq[1]); in restore_sigcontext32()
103 regs->iaoq[1] = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32()
104 DBG(2,"restore_sigcontext32: upper half of iaoq[1] = %#lx\n", compat_regt); in restore_sigcontext32()
112 err |= __get_user(compat_regt, &rf->rf_iasq[0]); in restore_sigcontext32()
113 regs->iasq[0] = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32()
114 DBG(2,"restore_sigcontext32: upper half of iasq[0] = %#lx\n", compat_regt); in restore_sigcontext32()
118 err |= __get_user(compat_regt, &rf->rf_iasq[1]); in restore_sigcontext32()
119 regs->iasq[1] = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32()
120 DBG(2,"restore_sigcontext32: upper half of iasq[1] = %#lx\n", compat_regt); in restore_sigcontext32()
126 err |= __get_user(compat_regt, &rf->rf_sar); in restore_sigcontext32()
127 regs->sar = ((u64)compat_regt << 32) | (u64)compat_reg; in restore_sigcontext32()
128 DBG(2,"restore_sigcontext32: upper_half & sar = %#lx\n", compat_regt); in restore_sigcontext32()