diff options
Diffstat (limited to 'vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s')
| -rw-r--r-- | vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s b/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s new file mode 100644 index 0000000..e5b9a84 --- /dev/null +++ b/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | // Copyright 2022 The Go Authors. All rights reserved. | ||
| 2 | // Use of this source code is governed by a BSD-style | ||
| 3 | // license that can be found in the LICENSE file. | ||
| 4 | |||
| 5 | //go:build (darwin || freebsd || netbsd || openbsd) && gc | ||
| 6 | // +build darwin freebsd netbsd openbsd | ||
| 7 | // +build gc | ||
| 8 | |||
| 9 | #include "textflag.h" | ||
| 10 | |||
| 11 | // | ||
| 12 | // System call support for ppc64, BSD | ||
| 13 | // | ||
| 14 | |||
| 15 | // Just jump to package syscall's implementation for all these functions. | ||
| 16 | // The runtime may know about them. | ||
| 17 | |||
| 18 | TEXT ·Syscall(SB),NOSPLIT,$0-56 | ||
| 19 | JMP syscall·Syscall(SB) | ||
| 20 | |||
| 21 | TEXT ·Syscall6(SB),NOSPLIT,$0-80 | ||
| 22 | JMP syscall·Syscall6(SB) | ||
| 23 | |||
| 24 | TEXT ·Syscall9(SB),NOSPLIT,$0-104 | ||
| 25 | JMP syscall·Syscall9(SB) | ||
| 26 | |||
| 27 | TEXT ·RawSyscall(SB),NOSPLIT,$0-56 | ||
| 28 | JMP syscall·RawSyscall(SB) | ||
| 29 | |||
| 30 | TEXT ·RawSyscall6(SB),NOSPLIT,$0-80 | ||
| 31 | JMP syscall·RawSyscall6(SB) | ||
