diff options
| author | Michael Pratt <mpratt@google.com> | 2022-02-24 16:54:13 -0500 |
|---|---|---|
| committer | Michael Pratt <mpratt@google.com> | 2022-04-21 18:07:14 +0000 |
| commit | 64e69d3925e2d1f3fb903a2b4f422cf1cbc49ec1 (patch) | |
| tree | b3382afe0e529680d4ef4f100fce23f0bc0bd877 /src/syscall/asm_linux_mipsx.s | |
| parent | f7b12ff6fbad25ea30ae9f16dd1443eb9b76766d (diff) | |
| download | go-64e69d3925e2d1f3fb903a2b4f422cf1cbc49ec1.tar.xz | |
syscall: define Syscall in terms of RawSyscall on linux
For #51087
Change-Id: I9de7e85ccf137ae73662759382334bcbe7208150
Reviewed-on: https://go-review.googlesource.com/c/go/+/388477
Run-TryBot: Michael Pratt <mpratt@google.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/syscall/asm_linux_mipsx.s')
| -rw-r--r-- | src/syscall/asm_linux_mipsx.s | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/syscall/asm_linux_mipsx.s b/src/syscall/asm_linux_mipsx.s index 041c353e79..8c45861d64 100644 --- a/src/syscall/asm_linux_mipsx.s +++ b/src/syscall/asm_linux_mipsx.s @@ -11,29 +11,6 @@ // System calls for mips, Linux // -// func Syscall(trap uintptr, a1, a2, a3 uintptr) (r1, r2, err uintptr); -TEXT ·Syscall(SB),NOSPLIT,$0-28 - JAL runtime·entersyscall(SB) - MOVW a1+4(FP), R4 - MOVW a2+8(FP), R5 - MOVW a3+12(FP), R6 - MOVW R0, R7 - MOVW trap+0(FP), R2 // syscall entry - SYSCALL - BEQ R7, ok - MOVW $-1, R1 - MOVW R1, r1+16(FP) // r1 - MOVW R0, r2+20(FP) // r2 - MOVW R2, err+24(FP) // errno - JAL runtime·exitsyscall(SB) - RET -ok: - MOVW R2, r1+16(FP) // r1 - MOVW R3, r2+20(FP) // r2 - MOVW R0, err+24(FP) // errno - JAL runtime·exitsyscall(SB) - RET - // func Syscall6(trap trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr); // 5th and 6th arg go at sp+16, sp+20. // Note that frame size of 20 means that 24 bytes gets reserved on stack. |
