asm_linux_mips64x.s 650 Bytes
Newer Older
1
// Copyright 2015 The Go Authors. All rights reserved.
2 3 4
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

5 6
// +build linux
// +build mips64 mips64le
7 8 9 10 11
// +build !gccgo

#include "textflag.h"

//
12
// System calls for mips64, Linux
13 14 15 16 17
//

// Just jump to package syscall's implementation for all these functions.
// The runtime may know about them.

18
TEXT	·Syscall(SB),NOSPLIT,$0-56
19 20
	JMP	syscall·Syscall(SB)

21
TEXT	·Syscall6(SB),NOSPLIT,$0-80
22 23
	JMP	syscall·Syscall6(SB)

24
TEXT	·RawSyscall(SB),NOSPLIT,$0-56
25 26
	JMP	syscall·RawSyscall(SB)

27
TEXT	·RawSyscall6(SB),NOSPLIT,$0-80
28
	JMP	syscall·RawSyscall6(SB)