2 /*--------------------------------------------------------------------*/
3 /*--- Support for doing system calls. syscall-mips64-linux.S ---*/
4 /*--------------------------------------------------------------------*/
7 This file is part of Valgrind, a dynamic binary instrumentation
10 Copyright (C) 2010-2017 RT-RK
11 mips-valgrind@rt-rk.com
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, see <http://www.gnu.org/licenses/>.
26 The GNU General Public License is contained in the file COPYING.
29 #include "pub_core_basics_asm.h"
31 #if defined(VGP_mips64_linux)
33 #include "pub_core_vkiscnums_asm.h"
34 #include "libvex_guest_offsets.h"
36 /*----------------------------------------------------------------*/
38 Perform a syscall for the client. This will run a syscall
39 with the client's specific per-thread signal mask.
41 The structure of this function is such that, if the syscall is
42 interrupted by a signal, we can determine exactly what
43 execution state we were in with respect to the execution of
44 the syscall by examining the value of PC in the signal
45 handler. This means that we can always do the appropriate
46 thing to precisely emulate the kernel's signal/syscall
49 The syscall number is taken from the argument, even though it
50 should also be in regs->v0. The syscall result is written
51 back to regs->v0 on completion.
53 VG_(fixup_guest_state_after_syscall_interrupted) does the
54 thread state fixup in the case where we were interrupted by a
59 UWord ML_(do_syscall_for_client_WRK)(
60 Int syscallno, // $4 - a0
61 void* guest_state, // $5 - a1
62 const vki_sigset_t *sysmask, // $6 - a2
63 const vki_sigset_t *postmask, // $7 - a3
64 Int nsigwords) // $8 - a4
68 #define VKI_SIG_SETMASK 3
70 .globl ML_(do_syscall_for_client_WRK)
71 ML_(do_syscall_for_client_WRK):
73 /* save regs $a0 - $a4 on stack */
75 sd $4, 0($29) /* syscallno */
76 sd $5, 8($29) /* guest_state */
77 sd $6, 16($29) /* sysmask */
78 sd $7, 24($29) /* postmask */
79 sd $8, 32($29) /* nsigwords */
81 1: li $2, __NR_rt_sigprocmask
82 li $4, VKI_SIG_SETMASK
83 move $5, $6 /* sysmask */
84 move $6, $7 /* postmask */
85 move $7, $8 /* nsigwords */
91 /* Actually do the client syscall */
92 ld $5, 8($29) /* guest_state */
93 ld $4, OFFSET_mips64_r4($5) /* a0 */
95 ld $6, OFFSET_mips64_r6($5) /* a2 */
96 ld $7, OFFSET_mips64_r7($5) /* a3 */
97 ld $8, OFFSET_mips64_r8($5) /* a4 */
98 ld $9, OFFSET_mips64_r9($5) /* a5 */
99 ld $10, OFFSET_mips64_r10($5) /* a6 */
100 ld $11, OFFSET_mips64_r11($5) /* a7 */
102 ld $5, OFFSET_mips64_r5($5) /* a1 */
103 ld $2, 0($29) /* syscallno */
107 /* Saving return values into Guest state */
108 3: ld $5, 8($29) /* guest_state */
109 sd $2, OFFSET_mips64_r2($5) /* v0 */
110 sd $7, OFFSET_mips64_r7($5) /* a3 */
112 4: li $2, __NR_rt_sigprocmask
113 li $4, VKI_SIG_SETMASK
114 ld $5, 24($29) /* postmask */
115 move $6, $0 /* 0 (zero) */
116 ld $7, 32($29) /* nsigwords */
122 5: /* restore 29 and return */
134 /* export the ranges so that
135 VG_(fixup_guest_state_after_syscall_interrupted) can do the
138 .globl ML_(blksys_setup)
139 .globl ML_(blksys_restart)
140 .globl ML_(blksys_complete)
141 .globl ML_(blksys_committed)
142 .globl ML_(blksys_finished)
143 #if defined(VGABI_N32)
144 ML_(blksys_setup): .int 1b
145 ML_(blksys_restart): .int 2b
146 ML_(blksys_complete): .int 3b
147 ML_(blksys_committed): .int 4b
148 ML_(blksys_finished): .int 5b
150 ML_(blksys_setup): .quad 1b
151 ML_(blksys_restart): .quad 2b
152 ML_(blksys_complete): .quad 3b
153 ML_(blksys_committed): .quad 4b
154 ML_(blksys_finished): .quad 5b
157 #endif // defined(VGP_mips64_linux)
159 /* Let the linker know we don't need an executable stack */
162 /*--------------------------------------------------------------------*/
164 /*--------------------------------------------------------------------*/