pki/vendor/golang.org/x/sys/unix/asm_bsd_arm.s

30 lines
749 B
ArmAsm
Raw Permalink Normal View History

2021-04-07 10:58:21 +02:00
// Copyright 2021 The Go Authors. All rights reserved.
2020-11-25 20:36:07 +01:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2021-04-07 10:58:21 +02:00
//go:build (darwin || freebsd || netbsd || openbsd) && gc
// +build darwin freebsd netbsd openbsd
2020-12-04 20:40:08 +01:00
// +build gc
2020-11-25 20:36:07 +01:00
#include "textflag.h"
2021-04-07 10:58:21 +02:00
// System call support for ARM BSD
2020-11-25 20:36:07 +01:00
// Just jump to package syscall's implementation for all these functions.
// The runtime may know about them.
TEXT ·Syscall(SB),NOSPLIT,$0-28
B syscall·Syscall(SB)
TEXT ·Syscall6(SB),NOSPLIT,$0-40
B syscall·Syscall6(SB)
TEXT ·Syscall9(SB),NOSPLIT,$0-52
B syscall·Syscall9(SB)
TEXT ·RawSyscall(SB),NOSPLIT,$0-28
B syscall·RawSyscall(SB)
TEXT ·RawSyscall6(SB),NOSPLIT,$0-40
B syscall·RawSyscall6(SB)