blob: 5e7a1169c05dafca9fa580c92ede8a2a66e328fb [file] [log] [blame]
Matteo Scandoloa4285862020-12-01 18:10:10 -08001// Copyright 2019 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
David K. Bainbridge06631892021-08-19 13:07:00 +00005//go:build gc
6// +build gc
Matteo Scandoloa4285862020-12-01 18:10:10 -08007
8#include "textflag.h"
9
10//
David K. Bainbridge06631892021-08-19 13:07:00 +000011// System call support for mips64, OpenBSD
Matteo Scandoloa4285862020-12-01 18:10:10 -080012//
13
14// Just jump to package syscall's implementation for all these functions.
15// The runtime may know about them.
16
17TEXT ·Syscall(SB),NOSPLIT,$0-56
18 JMP syscall·Syscall(SB)
19
20TEXT ·Syscall6(SB),NOSPLIT,$0-80
21 JMP syscall·Syscall6(SB)
22
23TEXT ·Syscall9(SB),NOSPLIT,$0-104
24 JMP syscall·Syscall9(SB)
25
26TEXT ·RawSyscall(SB),NOSPLIT,$0-56
27 JMP syscall·RawSyscall(SB)
28
29TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
30 JMP syscall·RawSyscall6(SB)