mirror of
https://github.com/golang/go
synced 2024-11-19 16:24:45 -07:00
519474451a
This is a subset of https://golang.org/cl/20022 with only the copyright header lines, so the next CL will be smaller and more reviewable. Go policy has been single space after periods in comments for some time. The copyright header template at: https://golang.org/doc/contribute.html#copyright also uses a single space. Make them all consistent. Change-Id: Icc26c6b8495c3820da6b171ca96a74701b4a01b0 Reviewed-on: https://go-review.googlesource.com/20111 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
102 lines
2.7 KiB
Go
102 lines
2.7 KiB
Go
// Copyright 2014 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package runtime
|
|
|
|
import "unsafe"
|
|
|
|
type mts struct {
|
|
tv_sec int64
|
|
tv_nsec int64
|
|
}
|
|
|
|
type mscratch struct {
|
|
v [6]uintptr
|
|
}
|
|
|
|
type mOS struct {
|
|
waitsema uintptr // semaphore for parking on locks
|
|
perrno *int32 // pointer to tls errno
|
|
// these are here because they are too large to be on the stack
|
|
// of low-level NOSPLIT functions.
|
|
//LibCall libcall;
|
|
ts mts
|
|
scratch mscratch
|
|
}
|
|
|
|
type libcFunc uintptr
|
|
|
|
var asmsysvicall6 libcFunc
|
|
|
|
//go:nosplit
|
|
func sysvicall0(fn *libcFunc) uintptr {
|
|
var libcall libcall
|
|
libcall.fn = uintptr(unsafe.Pointer(fn))
|
|
libcall.n = 0
|
|
libcall.args = uintptr(unsafe.Pointer(fn)) // it's unused but must be non-nil, otherwise crashes
|
|
asmcgocall(unsafe.Pointer(&asmsysvicall6), unsafe.Pointer(&libcall))
|
|
return libcall.r1
|
|
}
|
|
|
|
//go:nosplit
|
|
func sysvicall1(fn *libcFunc, a1 uintptr) uintptr {
|
|
var libcall libcall
|
|
libcall.fn = uintptr(unsafe.Pointer(fn))
|
|
libcall.n = 1
|
|
// TODO(rsc): Why is noescape necessary here and below?
|
|
libcall.args = uintptr(noescape(unsafe.Pointer(&a1)))
|
|
asmcgocall(unsafe.Pointer(&asmsysvicall6), unsafe.Pointer(&libcall))
|
|
return libcall.r1
|
|
}
|
|
|
|
//go:nosplit
|
|
func sysvicall2(fn *libcFunc, a1, a2 uintptr) uintptr {
|
|
var libcall libcall
|
|
libcall.fn = uintptr(unsafe.Pointer(fn))
|
|
libcall.n = 2
|
|
libcall.args = uintptr(noescape(unsafe.Pointer(&a1)))
|
|
asmcgocall(unsafe.Pointer(&asmsysvicall6), unsafe.Pointer(&libcall))
|
|
return libcall.r1
|
|
}
|
|
|
|
//go:nosplit
|
|
func sysvicall3(fn *libcFunc, a1, a2, a3 uintptr) uintptr {
|
|
var libcall libcall
|
|
libcall.fn = uintptr(unsafe.Pointer(fn))
|
|
libcall.n = 3
|
|
libcall.args = uintptr(noescape(unsafe.Pointer(&a1)))
|
|
asmcgocall(unsafe.Pointer(&asmsysvicall6), unsafe.Pointer(&libcall))
|
|
return libcall.r1
|
|
}
|
|
|
|
//go:nosplit
|
|
func sysvicall4(fn *libcFunc, a1, a2, a3, a4 uintptr) uintptr {
|
|
var libcall libcall
|
|
libcall.fn = uintptr(unsafe.Pointer(fn))
|
|
libcall.n = 4
|
|
libcall.args = uintptr(noescape(unsafe.Pointer(&a1)))
|
|
asmcgocall(unsafe.Pointer(&asmsysvicall6), unsafe.Pointer(&libcall))
|
|
return libcall.r1
|
|
}
|
|
|
|
//go:nosplit
|
|
func sysvicall5(fn *libcFunc, a1, a2, a3, a4, a5 uintptr) uintptr {
|
|
var libcall libcall
|
|
libcall.fn = uintptr(unsafe.Pointer(fn))
|
|
libcall.n = 5
|
|
libcall.args = uintptr(noescape(unsafe.Pointer(&a1)))
|
|
asmcgocall(unsafe.Pointer(&asmsysvicall6), unsafe.Pointer(&libcall))
|
|
return libcall.r1
|
|
}
|
|
|
|
//go:nosplit
|
|
func sysvicall6(fn *libcFunc, a1, a2, a3, a4, a5, a6 uintptr) uintptr {
|
|
var libcall libcall
|
|
libcall.fn = uintptr(unsafe.Pointer(fn))
|
|
libcall.n = 6
|
|
libcall.args = uintptr(noescape(unsafe.Pointer(&a1)))
|
|
asmcgocall(unsafe.Pointer(&asmsysvicall6), unsafe.Pointer(&libcall))
|
|
return libcall.r1
|
|
}
|