Lines Matching refs:abi

73 	struct mips_abi *abi = current->thread.abi;  in copy_fp_to_sigcontext()  local
74 uint64_t __user *fpregs = sc + abi->off_sc_fpregs; in copy_fp_to_sigcontext()
75 uint32_t __user *csr = sc + abi->off_sc_fpc_csr; in copy_fp_to_sigcontext()
92 struct mips_abi *abi = current->thread.abi; in copy_fp_from_sigcontext() local
93 uint64_t __user *fpregs = sc + abi->off_sc_fpregs; in copy_fp_from_sigcontext()
94 uint32_t __user *csr = sc + abi->off_sc_fpc_csr; in copy_fp_from_sigcontext()
128 struct mips_abi *abi = current->thread.abi; in save_hw_fp_context() local
129 uint64_t __user *fpregs = sc + abi->off_sc_fpregs; in save_hw_fp_context()
130 uint32_t __user *csr = sc + abi->off_sc_fpc_csr; in save_hw_fp_context()
137 struct mips_abi *abi = current->thread.abi; in restore_hw_fp_context() local
138 uint64_t __user *fpregs = sc + abi->off_sc_fpregs; in restore_hw_fp_context()
139 uint32_t __user *csr = sc + abi->off_sc_fpc_csr; in restore_hw_fp_context()
327 struct mips_abi *abi = current->thread.abi; in protected_save_fp_context() local
328 uint64_t __user *fpregs = sc + abi->off_sc_fpregs; in protected_save_fp_context()
329 uint32_t __user *csr = sc + abi->off_sc_fpc_csr; in protected_save_fp_context()
330 uint32_t __user *used_math = sc + abi->off_sc_used_math; in protected_save_fp_context()
380 struct mips_abi *abi = current->thread.abi; in protected_restore_fp_context() local
381 uint64_t __user *fpregs = sc + abi->off_sc_fpregs; in protected_restore_fp_context()
382 uint32_t __user *csr = sc + abi->off_sc_fpc_csr; in protected_restore_fp_context()
383 uint32_t __user *used_math = sc + abi->off_sc_used_math; in protected_restore_fp_context()
811 struct mips_abi *abi = current->thread.abi; in handle_signal() local
845 if (sig_uses_siginfo(&ksig->ka, abi)) in handle_signal()
846 ret = abi->setup_rt_frame(vdso + abi->vdso->off_rt_sigreturn, in handle_signal()
849 ret = abi->setup_frame(vdso + abi->vdso->off_sigreturn, in handle_signal()
876 regs->regs[2] = current->thread.abi->restart; in do_signal()