asm_linux_arm64.s 559 B

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