Lines Matching full:abi

30 #include <asm/abi.h>
72 struct mips_abi *abi = current->thread.abi; in copy_fp_to_sigcontext() local
73 uint64_t __user *fpregs = sc + abi->off_sc_fpregs; in copy_fp_to_sigcontext()
74 uint32_t __user *csr = sc + abi->off_sc_fpc_csr; in copy_fp_to_sigcontext()
91 struct mips_abi *abi = current->thread.abi; in copy_fp_from_sigcontext() local
92 uint64_t __user *fpregs = sc + abi->off_sc_fpregs; in copy_fp_from_sigcontext()
93 uint32_t __user *csr = sc + abi->off_sc_fpc_csr; in copy_fp_from_sigcontext()
127 struct mips_abi *abi = current->thread.abi; in save_hw_fp_context() local
128 uint64_t __user *fpregs = sc + abi->off_sc_fpregs; in save_hw_fp_context()
129 uint32_t __user *csr = sc + abi->off_sc_fpc_csr; in save_hw_fp_context()
136 struct mips_abi *abi = current->thread.abi; in restore_hw_fp_context() local
137 uint64_t __user *fpregs = sc + abi->off_sc_fpregs; in restore_hw_fp_context()
138 uint32_t __user *csr = sc + abi->off_sc_fpc_csr; in restore_hw_fp_context()
326 struct mips_abi *abi = current->thread.abi; in protected_save_fp_context() local
327 uint64_t __user *fpregs = sc + abi->off_sc_fpregs; in protected_save_fp_context()
328 uint32_t __user *csr = sc + abi->off_sc_fpc_csr; in protected_save_fp_context()
329 uint32_t __user *used_math = sc + abi->off_sc_used_math; in protected_save_fp_context()
379 struct mips_abi *abi = current->thread.abi; in protected_restore_fp_context() local
380 uint64_t __user *fpregs = sc + abi->off_sc_fpregs; in protected_restore_fp_context()
381 uint32_t __user *csr = sc + abi->off_sc_fpc_csr; in protected_restore_fp_context()
382 uint32_t __user *used_math = sc + abi->off_sc_used_math; in protected_restore_fp_context()
819 struct mips_abi *abi = current->thread.abi; in handle_signal() local
853 if (sig_uses_siginfo(&ksig->ka, abi)) in handle_signal()
854 ret = abi->setup_rt_frame(vdso + abi->vdso->off_rt_sigreturn, in handle_signal()
857 ret = abi->setup_frame(vdso + abi->vdso->off_sigreturn, in handle_signal()
884 regs->regs[2] = current->thread.abi->restart; in do_signal()