asm_linux_arm64.s 575 B

1234567891011121314151617181920212223
  1. // Copyright 2015 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. // +build arm64
  5. // +build !gccgo
  6. #include "textflag.h"
  7. // Just jump to package syscall's implementation for all these functions.
  8. // The runtime may know about them.
  9. TEXT ·Syscall(SB),NOSPLIT,$0-56
  10. B syscall·Syscall(SB)
  11. TEXT ·Syscall6(SB),NOSPLIT,$0-80
  12. B syscall·Syscall6(SB)
  13. TEXT ·RawSyscall(SB),NOSPLIT,$0-56
  14. B syscall·RawSyscall(SB)
  15. TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
  16. B syscall·RawSyscall6(SB)