mirror of
https://github.com/golang/go
synced 2024-11-11 19:41:36 -07:00
runtime/cgo: store M for C-created thread in pthread key
This reapplies CL 481061, with the followup fixes in CL 482975, CL 485315, and CL 485316 incorporated. CL 481061, by doujiang24 <doujiang24@gmail.com>, speed up C to Go calls by binding the M to the C thread. See below for its description. CL 482975 is a followup fix to a C declaration in testprogcgo. CL 485315 is a followup fix for x_cgo_getstackbound on Illumos. CL 485316 is a followup cleanup for ppc64 assembly. [Original CL 481061 description] This reapplies CL 392854, with the followup fixes in CL 479255, CL 479915, and CL 481057 incorporated. CL 392854, by doujiang24 <doujiang24@gmail.com>, speed up C to Go calls by binding the M to the C thread. See below for its description. CL 479255 is a followup fix for a small bug in ARM assembly code. CL 479915 is another followup fix to address C to Go calls after the C code uses some stack, but that CL is also buggy. CL 481057, by Michael Knyszek, is a followup fix for a memory leak bug of CL 479915. [Original CL 392854 description] In a C thread, it's necessary to acquire an extra M by using needm while invoking a Go function from C. But, needm and dropm are heavy costs due to the signal-related syscalls. So, we change to not dropm while returning back to C, which means binding the extra M to the C thread until it exits, to avoid needm and dropm on each C to Go call. Instead, we only dropm while the C thread exits, so the extra M won't leak. When invoking a Go function from C: Allocate a pthread variable using pthread_key_create, only once per shared object, and register a thread-exit-time destructor. And store the g0 of the current m into the thread-specified value of the pthread key, only once per C thread, so that the destructor will put the extra M back onto the extra M list while the C thread exits. When returning back to C: Skip dropm in cgocallback, when the pthread variable has been created, so that the extra M will be reused the next time invoke a Go function from C. This is purely a performance optimization. The old version, in which needm & dropm happen on each cgo call, is still correct too, and we have to keep the old version on systems with cgo but without pthreads, like Windows. This optimization is significant, and the specific value depends on the OS system and CPU, but in general, it can be considered as 10x faster, for a simple Go function call from a C thread. For the newly added BenchmarkCGoInCThread, some benchmark results: 1. it's 28x faster, from 3395 ns/op to 121 ns/op, in darwin OS & Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz 2. it's 6.5x faster, from 1495 ns/op to 230 ns/op, in Linux OS & Intel(R) Xeon(R) CPU E5-2630 0 @ 2.30GHz [CL 479915 description] Currently, when C calls into Go the first time, we grab an M using needm, which sets m.g0's stack bounds using the SP. We don't know how big the stack is, so we simply assume 32K. Previously, when the Go function returns to C, we drop the M, and the next time C calls into Go, we put a new stack bound on the g0 based on the current SP. After CL 392854, we don't drop the M, and the next time C calls into Go, we reuse the same g0, without recomputing the stack bounds. If the C code uses quite a bit of stack space before calling into Go, the SP may be well below the 32K stack bound we assumed, so the runtime thinks the g0 stack overflows. This CL makes needm get a more accurate stack bound from pthread. (In some platforms this may still be a guess as we don't know exactly where we are in the C stack), but it is probably better than simply assuming 32K. [CL 485500 description] CL 479915 passed the G to _cgo_getstackbound for direct updates to gp.stack.lo. A G can be reused on a new thread after the previous thread exited. This could trigger the C TSAN race detector because it couldn't see the synchronization in Go (lockextra) preventing the same G from being used on multiple threads at the same time. We work around this by passing the address of a stack variable to _cgo_getstackbound rather than the G. The stack is generally unique per thread, so TSAN won't see the same address from multiple threads. Even if stacks are reused across threads by pthread, C TSAN should see the synchonization in the stack allocator. A regression test is added to misc/cgo/testsanitizer. Fixes #51676. Fixes #59294. Fixes #59678. Change-Id: Ic62be31a06ee83568215e875a891df37084e08ca Reviewed-on: https://go-review.googlesource.com/c/go/+/485500 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Run-TryBot: Michael Pratt <mpratt@google.com>
This commit is contained in:
parent
d816f85f78
commit
7b874619be
@ -107,3 +107,4 @@ func TestZeroArgCallback(t *testing.T) { testZeroArgCallback(t) }
|
|||||||
func BenchmarkCgoCall(b *testing.B) { benchCgoCall(b) }
|
func BenchmarkCgoCall(b *testing.B) { benchCgoCall(b) }
|
||||||
func BenchmarkGoString(b *testing.B) { benchGoString(b) }
|
func BenchmarkGoString(b *testing.B) { benchGoString(b) }
|
||||||
func BenchmarkCGoCallback(b *testing.B) { benchCallback(b) }
|
func BenchmarkCGoCallback(b *testing.B) { benchCallback(b) }
|
||||||
|
func BenchmarkCGoInCThread(b *testing.B) { benchCGoInCthread(b) }
|
||||||
|
@ -32,3 +32,27 @@ doAdd(int max, int nthread)
|
|||||||
for(i=0; i<nthread; i++)
|
for(i=0; i<nthread; i++)
|
||||||
pthread_join(thread_id[i], 0);
|
pthread_join(thread_id[i], 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void*
|
||||||
|
goDummyCallbackThread(void* p)
|
||||||
|
{
|
||||||
|
int i, max;
|
||||||
|
|
||||||
|
max = *(int*)p;
|
||||||
|
for(i=0; i<max; i++)
|
||||||
|
goDummy();
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
callGoInCThread(int max)
|
||||||
|
{
|
||||||
|
pthread_t thread;
|
||||||
|
|
||||||
|
if (pthread_create(&thread, NULL, goDummyCallbackThread, (void*)(&max)) != 0)
|
||||||
|
return -1;
|
||||||
|
if (pthread_join(thread, NULL) != 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
return max;
|
||||||
|
}
|
||||||
|
@ -35,3 +35,25 @@ doAdd(int max, int nthread)
|
|||||||
CloseHandle((HANDLE)thread_id[i]);
|
CloseHandle((HANDLE)thread_id[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
__stdcall
|
||||||
|
static unsigned int
|
||||||
|
goDummyCallbackThread(void* p)
|
||||||
|
{
|
||||||
|
int i, max;
|
||||||
|
|
||||||
|
max = *(int*)p;
|
||||||
|
for(i=0; i<max; i++)
|
||||||
|
goDummy();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
callGoInCThread(int max)
|
||||||
|
{
|
||||||
|
uintptr_t thread_id;
|
||||||
|
thread_id = _beginthreadex(0, 0, goDummyCallbackThread, &max, 0, 0);
|
||||||
|
WaitForSingleObject((HANDLE)thread_id, INFINITE);
|
||||||
|
CloseHandle((HANDLE)thread_id);
|
||||||
|
return max;
|
||||||
|
}
|
||||||
|
@ -24,6 +24,7 @@ import (
|
|||||||
/*
|
/*
|
||||||
// threads
|
// threads
|
||||||
extern void doAdd(int, int);
|
extern void doAdd(int, int);
|
||||||
|
extern int callGoInCThread(int);
|
||||||
|
|
||||||
// issue 1328
|
// issue 1328
|
||||||
void IntoC(void);
|
void IntoC(void);
|
||||||
@ -146,6 +147,10 @@ func Add(x int) {
|
|||||||
*p = 2
|
*p = 2
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//export goDummy
|
||||||
|
func goDummy() {
|
||||||
|
}
|
||||||
|
|
||||||
func testCthread(t *testing.T) {
|
func testCthread(t *testing.T) {
|
||||||
if (runtime.GOOS == "darwin" || runtime.GOOS == "ios") && runtime.GOARCH == "arm64" {
|
if (runtime.GOOS == "darwin" || runtime.GOOS == "ios") && runtime.GOARCH == "arm64" {
|
||||||
t.Skip("the iOS exec wrapper is unable to properly handle the panic from Add")
|
t.Skip("the iOS exec wrapper is unable to properly handle the panic from Add")
|
||||||
@ -159,6 +164,15 @@ func testCthread(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Benchmark measuring overhead from C to Go in a C thread.
|
||||||
|
// Create a new C thread and invoke Go function repeatedly in the new C thread.
|
||||||
|
func benchCGoInCthread(b *testing.B) {
|
||||||
|
n := C.callGoInCThread(C.int(b.N))
|
||||||
|
if int(n) != b.N {
|
||||||
|
b.Fatal("unmatch loop times")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// issue 1328
|
// issue 1328
|
||||||
|
|
||||||
//export BackIntoGo
|
//export BackIntoGo
|
||||||
|
@ -1247,3 +1247,57 @@ func TestPreemption(t *testing.T) {
|
|||||||
t.Error(err)
|
t.Error(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Issue 59294. Test calling Go function from C after using some
|
||||||
|
// stack space.
|
||||||
|
func TestDeepStack(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
if !testWork {
|
||||||
|
defer func() {
|
||||||
|
os.Remove("testp9" + exeSuffix)
|
||||||
|
os.Remove("libgo9.a")
|
||||||
|
os.Remove("libgo9.h")
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
|
cmd := exec.Command("go", "build", "-buildmode=c-archive", "-o", "libgo9.a", "./libgo9")
|
||||||
|
out, err := cmd.CombinedOutput()
|
||||||
|
t.Logf("%v\n%s", cmd.Args, out)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
checkLineComments(t, "libgo9.h")
|
||||||
|
checkArchive(t, "libgo9.a")
|
||||||
|
|
||||||
|
// build with -O0 so the C compiler won't optimize out the large stack frame
|
||||||
|
ccArgs := append(cc, "-O0", "-o", "testp9"+exeSuffix, "main9.c", "libgo9.a")
|
||||||
|
out, err = exec.Command(ccArgs[0], ccArgs[1:]...).CombinedOutput()
|
||||||
|
t.Logf("%v\n%s", ccArgs, out)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
argv := cmdToRun("./testp9")
|
||||||
|
cmd = exec.Command(argv[0], argv[1:]...)
|
||||||
|
sb := new(strings.Builder)
|
||||||
|
cmd.Stdout = sb
|
||||||
|
cmd.Stderr = sb
|
||||||
|
if err := cmd.Start(); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
timer := time.AfterFunc(time.Minute,
|
||||||
|
func() {
|
||||||
|
t.Error("test program timed out")
|
||||||
|
cmd.Process.Kill()
|
||||||
|
},
|
||||||
|
)
|
||||||
|
defer timer.Stop()
|
||||||
|
|
||||||
|
err = cmd.Wait()
|
||||||
|
t.Logf("%v\n%s", cmd.Args, sb)
|
||||||
|
if err != nil {
|
||||||
|
t.Error(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
14
misc/cgo/testcarchive/testdata/libgo9/a.go
vendored
Normal file
14
misc/cgo/testcarchive/testdata/libgo9/a.go
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
// Copyright 2023 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 main
|
||||||
|
|
||||||
|
import "runtime"
|
||||||
|
|
||||||
|
import "C"
|
||||||
|
|
||||||
|
func main() {}
|
||||||
|
|
||||||
|
//export GoF
|
||||||
|
func GoF() { runtime.GC() }
|
24
misc/cgo/testcarchive/testdata/main9.c
vendored
Normal file
24
misc/cgo/testcarchive/testdata/main9.c
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
// Copyright 2023 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.
|
||||||
|
|
||||||
|
#include "libgo9.h"
|
||||||
|
|
||||||
|
void use(int *x) { (*x)++; }
|
||||||
|
|
||||||
|
void callGoFWithDeepStack() {
|
||||||
|
int x[10000];
|
||||||
|
|
||||||
|
use(&x[0]);
|
||||||
|
use(&x[9999]);
|
||||||
|
|
||||||
|
GoF();
|
||||||
|
|
||||||
|
use(&x[0]);
|
||||||
|
use(&x[9999]);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
GoF(); // call GoF without using much stack
|
||||||
|
callGoFWithDeepStack(); // call GoF with a deep stack
|
||||||
|
}
|
53
misc/cgo/testsanitizers/testdata/tsan14.go
vendored
Normal file
53
misc/cgo/testsanitizers/testdata/tsan14.go
vendored
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
// Copyright 2023 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 main
|
||||||
|
|
||||||
|
// This program failed when run under the C/C++ ThreadSanitizer.
|
||||||
|
//
|
||||||
|
// cgocallback on a new thread calls into runtime.needm -> _cgo_getstackbound
|
||||||
|
// to update gp.stack.lo with the stack bounds. If the G itself is passed to
|
||||||
|
// _cgo_getstackbound, then writes to the same G can be seen on multiple
|
||||||
|
// threads (when the G is reused after thread exit). This would trigger TSAN.
|
||||||
|
|
||||||
|
/*
|
||||||
|
#include <pthread.h>
|
||||||
|
|
||||||
|
void go_callback();
|
||||||
|
|
||||||
|
static void *thr(void *arg) {
|
||||||
|
go_callback();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void foo() {
|
||||||
|
pthread_t th;
|
||||||
|
pthread_attr_t attr;
|
||||||
|
pthread_attr_init(&attr);
|
||||||
|
pthread_attr_setstacksize(&attr, 256 << 10);
|
||||||
|
pthread_create(&th, &attr, thr, 0);
|
||||||
|
pthread_join(th, 0);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
import "C"
|
||||||
|
|
||||||
|
import (
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
//export go_callback
|
||||||
|
func go_callback() {
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
for i := 0; i < 2; i++ {
|
||||||
|
go func() {
|
||||||
|
for {
|
||||||
|
C.foo()
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
|
time.Sleep(1000*time.Millisecond)
|
||||||
|
}
|
@ -47,6 +47,7 @@ func TestTSAN(t *testing.T) {
|
|||||||
{src: "tsan11.go", needsRuntime: true},
|
{src: "tsan11.go", needsRuntime: true},
|
||||||
{src: "tsan12.go", needsRuntime: true},
|
{src: "tsan12.go", needsRuntime: true},
|
||||||
{src: "tsan13.go", needsRuntime: true},
|
{src: "tsan13.go", needsRuntime: true},
|
||||||
|
{src: "tsan14.go", needsRuntime: true},
|
||||||
}
|
}
|
||||||
for _, tc := range cases {
|
for _, tc := range cases {
|
||||||
tc := tc
|
tc := tc
|
||||||
|
@ -689,7 +689,20 @@ nosave:
|
|||||||
TEXT ·cgocallback(SB),NOSPLIT,$12-12 // Frame size must match commented places below
|
TEXT ·cgocallback(SB),NOSPLIT,$12-12 // Frame size must match commented places below
|
||||||
NO_LOCAL_POINTERS
|
NO_LOCAL_POINTERS
|
||||||
|
|
||||||
// If g is nil, Go did not create the current thread.
|
// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
|
||||||
|
// It is used to dropm while thread is exiting.
|
||||||
|
MOVL fn+0(FP), AX
|
||||||
|
CMPL AX, $0
|
||||||
|
JNE loadg
|
||||||
|
// Restore the g from frame.
|
||||||
|
get_tls(CX)
|
||||||
|
MOVL frame+4(FP), BX
|
||||||
|
MOVL BX, g(CX)
|
||||||
|
JMP dropm
|
||||||
|
|
||||||
|
loadg:
|
||||||
|
// If g is nil, Go did not create the current thread,
|
||||||
|
// or if this thread never called into Go on pthread platforms.
|
||||||
// Call needm to obtain one for temporary use.
|
// Call needm to obtain one for temporary use.
|
||||||
// In this case, we're running on the thread stack, so there's
|
// In this case, we're running on the thread stack, so there's
|
||||||
// lots of space, but the linker doesn't know. Hide the call from
|
// lots of space, but the linker doesn't know. Hide the call from
|
||||||
@ -707,9 +720,9 @@ TEXT ·cgocallback(SB),NOSPLIT,$12-12 // Frame size must match commented places
|
|||||||
MOVL BP, savedm-4(SP) // saved copy of oldm
|
MOVL BP, savedm-4(SP) // saved copy of oldm
|
||||||
JMP havem
|
JMP havem
|
||||||
needm:
|
needm:
|
||||||
MOVL $runtime·needm(SB), AX
|
MOVL $runtime·needAndBindM(SB), AX
|
||||||
CALL AX
|
CALL AX
|
||||||
MOVL $0, savedm-4(SP) // dropm on return
|
MOVL $0, savedm-4(SP)
|
||||||
get_tls(CX)
|
get_tls(CX)
|
||||||
MOVL g(CX), BP
|
MOVL g(CX), BP
|
||||||
MOVL g_m(BP), BP
|
MOVL g_m(BP), BP
|
||||||
@ -784,13 +797,29 @@ havem:
|
|||||||
MOVL 0(SP), AX
|
MOVL 0(SP), AX
|
||||||
MOVL AX, (g_sched+gobuf_sp)(SI)
|
MOVL AX, (g_sched+gobuf_sp)(SI)
|
||||||
|
|
||||||
// If the m on entry was nil, we called needm above to borrow an m
|
// If the m on entry was nil, we called needm above to borrow an m,
|
||||||
// for the duration of the call. Since the call is over, return it with dropm.
|
// 1. for the duration of the call on non-pthread platforms,
|
||||||
|
// 2. or the duration of the C thread alive on pthread platforms.
|
||||||
|
// If the m on entry wasn't nil,
|
||||||
|
// 1. the thread might be a Go thread,
|
||||||
|
// 2. or it's wasn't the first call from a C thread on pthread platforms,
|
||||||
|
// since the we skip dropm to resue the m in the first call.
|
||||||
MOVL savedm-4(SP), DX
|
MOVL savedm-4(SP), DX
|
||||||
CMPL DX, $0
|
CMPL DX, $0
|
||||||
JNE 3(PC)
|
JNE droppedm
|
||||||
|
|
||||||
|
// Skip dropm to reuse it in the next call, when a pthread key has been created.
|
||||||
|
MOVL _cgo_pthread_key_created(SB), DX
|
||||||
|
// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
|
||||||
|
CMPL DX, $0
|
||||||
|
JEQ dropm
|
||||||
|
CMPL (DX), $0
|
||||||
|
JNE droppedm
|
||||||
|
|
||||||
|
dropm:
|
||||||
MOVL $runtime·dropm(SB), AX
|
MOVL $runtime·dropm(SB), AX
|
||||||
CALL AX
|
CALL AX
|
||||||
|
droppedm:
|
||||||
|
|
||||||
// Done!
|
// Done!
|
||||||
RET
|
RET
|
||||||
|
@ -918,7 +918,20 @@ GLOBL zeroTLS<>(SB),RODATA,$const_tlsSize
|
|||||||
TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
||||||
NO_LOCAL_POINTERS
|
NO_LOCAL_POINTERS
|
||||||
|
|
||||||
// If g is nil, Go did not create the current thread.
|
// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
|
||||||
|
// It is used to dropm while thread is exiting.
|
||||||
|
MOVQ fn+0(FP), AX
|
||||||
|
CMPQ AX, $0
|
||||||
|
JNE loadg
|
||||||
|
// Restore the g from frame.
|
||||||
|
get_tls(CX)
|
||||||
|
MOVQ frame+8(FP), BX
|
||||||
|
MOVQ BX, g(CX)
|
||||||
|
JMP dropm
|
||||||
|
|
||||||
|
loadg:
|
||||||
|
// If g is nil, Go did not create the current thread,
|
||||||
|
// or if this thread never called into Go on pthread platforms.
|
||||||
// Call needm to obtain one m for temporary use.
|
// Call needm to obtain one m for temporary use.
|
||||||
// In this case, we're running on the thread stack, so there's
|
// In this case, we're running on the thread stack, so there's
|
||||||
// lots of space, but the linker doesn't know. Hide the call from
|
// lots of space, but the linker doesn't know. Hide the call from
|
||||||
@ -956,9 +969,9 @@ needm:
|
|||||||
// a bad value in there, in case needm tries to use it.
|
// a bad value in there, in case needm tries to use it.
|
||||||
XORPS X15, X15
|
XORPS X15, X15
|
||||||
XORQ R14, R14
|
XORQ R14, R14
|
||||||
MOVQ $runtime·needm<ABIInternal>(SB), AX
|
MOVQ $runtime·needAndBindM<ABIInternal>(SB), AX
|
||||||
CALL AX
|
CALL AX
|
||||||
MOVQ $0, savedm-8(SP) // dropm on return
|
MOVQ $0, savedm-8(SP)
|
||||||
get_tls(CX)
|
get_tls(CX)
|
||||||
MOVQ g(CX), BX
|
MOVQ g(CX), BX
|
||||||
MOVQ g_m(BX), BX
|
MOVQ g_m(BX), BX
|
||||||
@ -1047,11 +1060,26 @@ havem:
|
|||||||
MOVQ 0(SP), AX
|
MOVQ 0(SP), AX
|
||||||
MOVQ AX, (g_sched+gobuf_sp)(SI)
|
MOVQ AX, (g_sched+gobuf_sp)(SI)
|
||||||
|
|
||||||
// If the m on entry was nil, we called needm above to borrow an m
|
// If the m on entry was nil, we called needm above to borrow an m,
|
||||||
// for the duration of the call. Since the call is over, return it with dropm.
|
// 1. for the duration of the call on non-pthread platforms,
|
||||||
|
// 2. or the duration of the C thread alive on pthread platforms.
|
||||||
|
// If the m on entry wasn't nil,
|
||||||
|
// 1. the thread might be a Go thread,
|
||||||
|
// 2. or it's wasn't the first call from a C thread on pthread platforms,
|
||||||
|
// since the we skip dropm to resue the m in the first call.
|
||||||
MOVQ savedm-8(SP), BX
|
MOVQ savedm-8(SP), BX
|
||||||
CMPQ BX, $0
|
CMPQ BX, $0
|
||||||
JNE done
|
JNE done
|
||||||
|
|
||||||
|
// Skip dropm to reuse it in the next call, when a pthread key has been created.
|
||||||
|
MOVQ _cgo_pthread_key_created(SB), AX
|
||||||
|
// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
|
||||||
|
CMPQ AX, $0
|
||||||
|
JEQ dropm
|
||||||
|
CMPQ (AX), $0
|
||||||
|
JNE done
|
||||||
|
|
||||||
|
dropm:
|
||||||
MOVQ $runtime·dropm(SB), AX
|
MOVQ $runtime·dropm(SB), AX
|
||||||
CALL AX
|
CALL AX
|
||||||
#ifdef GOOS_windows
|
#ifdef GOOS_windows
|
||||||
|
@ -630,6 +630,16 @@ nosave:
|
|||||||
TEXT ·cgocallback(SB),NOSPLIT,$12-12
|
TEXT ·cgocallback(SB),NOSPLIT,$12-12
|
||||||
NO_LOCAL_POINTERS
|
NO_LOCAL_POINTERS
|
||||||
|
|
||||||
|
// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
|
||||||
|
// It is used to dropm while thread is exiting.
|
||||||
|
MOVW fn+0(FP), R1
|
||||||
|
CMP $0, R1
|
||||||
|
B.NE loadg
|
||||||
|
// Restore the g from frame.
|
||||||
|
MOVW frame+4(FP), g
|
||||||
|
B dropm
|
||||||
|
|
||||||
|
loadg:
|
||||||
// Load m and g from thread-local storage.
|
// Load m and g from thread-local storage.
|
||||||
#ifdef GOOS_openbsd
|
#ifdef GOOS_openbsd
|
||||||
BL runtime·load_g(SB)
|
BL runtime·load_g(SB)
|
||||||
@ -639,7 +649,8 @@ TEXT ·cgocallback(SB),NOSPLIT,$12-12
|
|||||||
BL.NE runtime·load_g(SB)
|
BL.NE runtime·load_g(SB)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// If g is nil, Go did not create the current thread.
|
// If g is nil, Go did not create the current thread,
|
||||||
|
// or if this thread never called into Go on pthread platforms.
|
||||||
// Call needm to obtain one for temporary use.
|
// Call needm to obtain one for temporary use.
|
||||||
// In this case, we're running on the thread stack, so there's
|
// In this case, we're running on the thread stack, so there's
|
||||||
// lots of space, but the linker doesn't know. Hide the call from
|
// lots of space, but the linker doesn't know. Hide the call from
|
||||||
@ -653,7 +664,7 @@ TEXT ·cgocallback(SB),NOSPLIT,$12-12
|
|||||||
|
|
||||||
needm:
|
needm:
|
||||||
MOVW g, savedm-4(SP) // g is zero, so is m.
|
MOVW g, savedm-4(SP) // g is zero, so is m.
|
||||||
MOVW $runtime·needm(SB), R0
|
MOVW $runtime·needAndBindM(SB), R0
|
||||||
BL (R0)
|
BL (R0)
|
||||||
|
|
||||||
// Set m->g0->sched.sp = SP, so that if a panic happens
|
// Set m->g0->sched.sp = SP, so that if a panic happens
|
||||||
@ -724,14 +735,31 @@ havem:
|
|||||||
MOVW savedsp-12(SP), R4 // must match frame size
|
MOVW savedsp-12(SP), R4 // must match frame size
|
||||||
MOVW R4, (g_sched+gobuf_sp)(g)
|
MOVW R4, (g_sched+gobuf_sp)(g)
|
||||||
|
|
||||||
// If the m on entry was nil, we called needm above to borrow an m
|
// If the m on entry was nil, we called needm above to borrow an m,
|
||||||
// for the duration of the call. Since the call is over, return it with dropm.
|
// 1. for the duration of the call on non-pthread platforms,
|
||||||
|
// 2. or the duration of the C thread alive on pthread platforms.
|
||||||
|
// If the m on entry wasn't nil,
|
||||||
|
// 1. the thread might be a Go thread,
|
||||||
|
// 2. or it's wasn't the first call from a C thread on pthread platforms,
|
||||||
|
// since the we skip dropm to resue the m in the first call.
|
||||||
MOVW savedm-4(SP), R6
|
MOVW savedm-4(SP), R6
|
||||||
CMP $0, R6
|
CMP $0, R6
|
||||||
B.NE 3(PC)
|
B.NE done
|
||||||
|
|
||||||
|
// Skip dropm to reuse it in the next call, when a pthread key has been created.
|
||||||
|
MOVW _cgo_pthread_key_created(SB), R6
|
||||||
|
// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
|
||||||
|
CMP $0, R6
|
||||||
|
B.EQ dropm
|
||||||
|
MOVW (R6), R6
|
||||||
|
CMP $0, R6
|
||||||
|
B.NE done
|
||||||
|
|
||||||
|
dropm:
|
||||||
MOVW $runtime·dropm(SB), R0
|
MOVW $runtime·dropm(SB), R0
|
||||||
BL (R0)
|
BL (R0)
|
||||||
|
|
||||||
|
done:
|
||||||
// Done!
|
// Done!
|
||||||
RET
|
RET
|
||||||
|
|
||||||
|
@ -1015,10 +1015,20 @@ nosave:
|
|||||||
TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
||||||
NO_LOCAL_POINTERS
|
NO_LOCAL_POINTERS
|
||||||
|
|
||||||
|
// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
|
||||||
|
// It is used to dropm while thread is exiting.
|
||||||
|
MOVD fn+0(FP), R1
|
||||||
|
CBNZ R1, loadg
|
||||||
|
// Restore the g from frame.
|
||||||
|
MOVD frame+8(FP), g
|
||||||
|
B dropm
|
||||||
|
|
||||||
|
loadg:
|
||||||
// Load g from thread-local storage.
|
// Load g from thread-local storage.
|
||||||
BL runtime·load_g(SB)
|
BL runtime·load_g(SB)
|
||||||
|
|
||||||
// If g is nil, Go did not create the current thread.
|
// If g is nil, Go did not create the current thread,
|
||||||
|
// or if this thread never called into Go on pthread platforms.
|
||||||
// Call needm to obtain one for temporary use.
|
// Call needm to obtain one for temporary use.
|
||||||
// In this case, we're running on the thread stack, so there's
|
// In this case, we're running on the thread stack, so there's
|
||||||
// lots of space, but the linker doesn't know. Hide the call from
|
// lots of space, but the linker doesn't know. Hide the call from
|
||||||
@ -1031,7 +1041,7 @@ TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
|||||||
|
|
||||||
needm:
|
needm:
|
||||||
MOVD g, savedm-8(SP) // g is zero, so is m.
|
MOVD g, savedm-8(SP) // g is zero, so is m.
|
||||||
MOVD $runtime·needm(SB), R0
|
MOVD $runtime·needAndBindM(SB), R0
|
||||||
BL (R0)
|
BL (R0)
|
||||||
|
|
||||||
// Set m->g0->sched.sp = SP, so that if a panic happens
|
// Set m->g0->sched.sp = SP, so that if a panic happens
|
||||||
@ -1112,10 +1122,24 @@ havem:
|
|||||||
MOVD savedsp-16(SP), R4
|
MOVD savedsp-16(SP), R4
|
||||||
MOVD R4, (g_sched+gobuf_sp)(g)
|
MOVD R4, (g_sched+gobuf_sp)(g)
|
||||||
|
|
||||||
// If the m on entry was nil, we called needm above to borrow an m
|
// If the m on entry was nil, we called needm above to borrow an m,
|
||||||
// for the duration of the call. Since the call is over, return it with dropm.
|
// 1. for the duration of the call on non-pthread platforms,
|
||||||
|
// 2. or the duration of the C thread alive on pthread platforms.
|
||||||
|
// If the m on entry wasn't nil,
|
||||||
|
// 1. the thread might be a Go thread,
|
||||||
|
// 2. or it's wasn't the first call from a C thread on pthread platforms,
|
||||||
|
// since the we skip dropm to resue the m in the first call.
|
||||||
MOVD savedm-8(SP), R6
|
MOVD savedm-8(SP), R6
|
||||||
CBNZ R6, droppedm
|
CBNZ R6, droppedm
|
||||||
|
|
||||||
|
// Skip dropm to reuse it in the next call, when a pthread key has been created.
|
||||||
|
MOVD _cgo_pthread_key_created(SB), R6
|
||||||
|
// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
|
||||||
|
CBZ R6, dropm
|
||||||
|
MOVD (R6), R6
|
||||||
|
CBNZ R6, droppedm
|
||||||
|
|
||||||
|
dropm:
|
||||||
MOVD $runtime·dropm(SB), R0
|
MOVD $runtime·dropm(SB), R0
|
||||||
BL (R0)
|
BL (R0)
|
||||||
droppedm:
|
droppedm:
|
||||||
|
@ -460,13 +460,23 @@ g0:
|
|||||||
TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
||||||
NO_LOCAL_POINTERS
|
NO_LOCAL_POINTERS
|
||||||
|
|
||||||
|
// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
|
||||||
|
// It is used to dropm while thread is exiting.
|
||||||
|
MOVV fn+0(FP), R5
|
||||||
|
BNE R5, loadg
|
||||||
|
// Restore the g from frame.
|
||||||
|
MOVV frame+8(FP), g
|
||||||
|
JMP dropm
|
||||||
|
|
||||||
|
loadg:
|
||||||
// Load m and g from thread-local storage.
|
// Load m and g from thread-local storage.
|
||||||
MOVB runtime·iscgo(SB), R19
|
MOVB runtime·iscgo(SB), R19
|
||||||
BEQ R19, nocgo
|
BEQ R19, nocgo
|
||||||
JAL runtime·load_g(SB)
|
JAL runtime·load_g(SB)
|
||||||
nocgo:
|
nocgo:
|
||||||
|
|
||||||
// If g is nil, Go did not create the current thread.
|
// If g is nil, Go did not create the current thread,
|
||||||
|
// or if this thread never called into Go on pthread platforms.
|
||||||
// Call needm to obtain one for temporary use.
|
// Call needm to obtain one for temporary use.
|
||||||
// In this case, we're running on the thread stack, so there's
|
// In this case, we're running on the thread stack, so there's
|
||||||
// lots of space, but the linker doesn't know. Hide the call from
|
// lots of space, but the linker doesn't know. Hide the call from
|
||||||
@ -479,7 +489,7 @@ nocgo:
|
|||||||
|
|
||||||
needm:
|
needm:
|
||||||
MOVV g, savedm-8(SP) // g is zero, so is m.
|
MOVV g, savedm-8(SP) // g is zero, so is m.
|
||||||
MOVV $runtime·needm(SB), R4
|
MOVV $runtime·needAndBindM(SB), R4
|
||||||
JAL (R4)
|
JAL (R4)
|
||||||
|
|
||||||
// Set m->sched.sp = SP, so that if a panic happens
|
// Set m->sched.sp = SP, so that if a panic happens
|
||||||
@ -551,10 +561,24 @@ havem:
|
|||||||
MOVV savedsp-24(SP), R13 // must match frame size
|
MOVV savedsp-24(SP), R13 // must match frame size
|
||||||
MOVV R13, (g_sched+gobuf_sp)(g)
|
MOVV R13, (g_sched+gobuf_sp)(g)
|
||||||
|
|
||||||
// If the m on entry was nil, we called needm above to borrow an m
|
// If the m on entry was nil, we called needm above to borrow an m,
|
||||||
// for the duration of the call. Since the call is over, return it with dropm.
|
// 1. for the duration of the call on non-pthread platforms,
|
||||||
|
// 2. or the duration of the C thread alive on pthread platforms.
|
||||||
|
// If the m on entry wasn't nil,
|
||||||
|
// 1. the thread might be a Go thread,
|
||||||
|
// 2. or it's wasn't the first call from a C thread on pthread platforms,
|
||||||
|
// since the we skip dropm to resue the m in the first call.
|
||||||
MOVV savedm-8(SP), R12
|
MOVV savedm-8(SP), R12
|
||||||
BNE R12, droppedm
|
BNE R12, droppedm
|
||||||
|
|
||||||
|
// Skip dropm to reuse it in the next call, when a pthread key has been created.
|
||||||
|
MOVV _cgo_pthread_key_created(SB), R12
|
||||||
|
// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
|
||||||
|
BEQ R12, dropm
|
||||||
|
MOVV (R12), R12
|
||||||
|
BNE R12, droppedm
|
||||||
|
|
||||||
|
dropm:
|
||||||
MOVV $runtime·dropm(SB), R4
|
MOVV $runtime·dropm(SB), R4
|
||||||
JAL (R4)
|
JAL (R4)
|
||||||
droppedm:
|
droppedm:
|
||||||
|
@ -469,13 +469,23 @@ g0:
|
|||||||
TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
||||||
NO_LOCAL_POINTERS
|
NO_LOCAL_POINTERS
|
||||||
|
|
||||||
|
// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
|
||||||
|
// It is used to dropm while thread is exiting.
|
||||||
|
MOVV fn+0(FP), R5
|
||||||
|
BNE R5, loadg
|
||||||
|
// Restore the g from frame.
|
||||||
|
MOVV frame+8(FP), g
|
||||||
|
JMP dropm
|
||||||
|
|
||||||
|
loadg:
|
||||||
// Load m and g from thread-local storage.
|
// Load m and g from thread-local storage.
|
||||||
MOVB runtime·iscgo(SB), R1
|
MOVB runtime·iscgo(SB), R1
|
||||||
BEQ R1, nocgo
|
BEQ R1, nocgo
|
||||||
JAL runtime·load_g(SB)
|
JAL runtime·load_g(SB)
|
||||||
nocgo:
|
nocgo:
|
||||||
|
|
||||||
// If g is nil, Go did not create the current thread.
|
// If g is nil, Go did not create the current thread,
|
||||||
|
// or if this thread never called into Go on pthread platforms.
|
||||||
// Call needm to obtain one for temporary use.
|
// Call needm to obtain one for temporary use.
|
||||||
// In this case, we're running on the thread stack, so there's
|
// In this case, we're running on the thread stack, so there's
|
||||||
// lots of space, but the linker doesn't know. Hide the call from
|
// lots of space, but the linker doesn't know. Hide the call from
|
||||||
@ -488,7 +498,7 @@ nocgo:
|
|||||||
|
|
||||||
needm:
|
needm:
|
||||||
MOVV g, savedm-8(SP) // g is zero, so is m.
|
MOVV g, savedm-8(SP) // g is zero, so is m.
|
||||||
MOVV $runtime·needm(SB), R4
|
MOVV $runtime·needAndBindM(SB), R4
|
||||||
JAL (R4)
|
JAL (R4)
|
||||||
|
|
||||||
// Set m->sched.sp = SP, so that if a panic happens
|
// Set m->sched.sp = SP, so that if a panic happens
|
||||||
@ -559,10 +569,24 @@ havem:
|
|||||||
MOVV savedsp-24(SP), R2 // must match frame size
|
MOVV savedsp-24(SP), R2 // must match frame size
|
||||||
MOVV R2, (g_sched+gobuf_sp)(g)
|
MOVV R2, (g_sched+gobuf_sp)(g)
|
||||||
|
|
||||||
// If the m on entry was nil, we called needm above to borrow an m
|
// If the m on entry was nil, we called needm above to borrow an m,
|
||||||
// for the duration of the call. Since the call is over, return it with dropm.
|
// 1. for the duration of the call on non-pthread platforms,
|
||||||
|
// 2. or the duration of the C thread alive on pthread platforms.
|
||||||
|
// If the m on entry wasn't nil,
|
||||||
|
// 1. the thread might be a Go thread,
|
||||||
|
// 2. or it's wasn't the first call from a C thread on pthread platforms,
|
||||||
|
// since the we skip dropm to resue the m in the first call.
|
||||||
MOVV savedm-8(SP), R3
|
MOVV savedm-8(SP), R3
|
||||||
BNE R3, droppedm
|
BNE R3, droppedm
|
||||||
|
|
||||||
|
// Skip dropm to reuse it in the next call, when a pthread key has been created.
|
||||||
|
MOVV _cgo_pthread_key_created(SB), R3
|
||||||
|
// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
|
||||||
|
BEQ R3, dropm
|
||||||
|
MOVV (R3), R3
|
||||||
|
BNE R3, droppedm
|
||||||
|
|
||||||
|
dropm:
|
||||||
MOVV $runtime·dropm(SB), R4
|
MOVV $runtime·dropm(SB), R4
|
||||||
JAL (R4)
|
JAL (R4)
|
||||||
droppedm:
|
droppedm:
|
||||||
|
@ -459,13 +459,23 @@ g0:
|
|||||||
TEXT ·cgocallback(SB),NOSPLIT,$12-12
|
TEXT ·cgocallback(SB),NOSPLIT,$12-12
|
||||||
NO_LOCAL_POINTERS
|
NO_LOCAL_POINTERS
|
||||||
|
|
||||||
|
// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
|
||||||
|
// It is used to dropm while thread is exiting.
|
||||||
|
MOVW fn+0(FP), R5
|
||||||
|
BNE R5, loadg
|
||||||
|
// Restore the g from frame.
|
||||||
|
MOVW frame+4(FP), g
|
||||||
|
JMP dropm
|
||||||
|
|
||||||
|
loadg:
|
||||||
// Load m and g from thread-local storage.
|
// Load m and g from thread-local storage.
|
||||||
MOVB runtime·iscgo(SB), R1
|
MOVB runtime·iscgo(SB), R1
|
||||||
BEQ R1, nocgo
|
BEQ R1, nocgo
|
||||||
JAL runtime·load_g(SB)
|
JAL runtime·load_g(SB)
|
||||||
nocgo:
|
nocgo:
|
||||||
|
|
||||||
// If g is nil, Go did not create the current thread.
|
// If g is nil, Go did not create the current thread,
|
||||||
|
// or if this thread never called into Go on pthread platforms.
|
||||||
// Call needm to obtain one for temporary use.
|
// Call needm to obtain one for temporary use.
|
||||||
// In this case, we're running on the thread stack, so there's
|
// In this case, we're running on the thread stack, so there's
|
||||||
// lots of space, but the linker doesn't know. Hide the call from
|
// lots of space, but the linker doesn't know. Hide the call from
|
||||||
@ -478,7 +488,7 @@ nocgo:
|
|||||||
|
|
||||||
needm:
|
needm:
|
||||||
MOVW g, savedm-4(SP) // g is zero, so is m.
|
MOVW g, savedm-4(SP) // g is zero, so is m.
|
||||||
MOVW $runtime·needm(SB), R4
|
MOVW $runtime·needAndBindM(SB), R4
|
||||||
JAL (R4)
|
JAL (R4)
|
||||||
|
|
||||||
// Set m->sched.sp = SP, so that if a panic happens
|
// Set m->sched.sp = SP, so that if a panic happens
|
||||||
@ -549,10 +559,24 @@ havem:
|
|||||||
MOVW savedsp-12(SP), R2 // must match frame size
|
MOVW savedsp-12(SP), R2 // must match frame size
|
||||||
MOVW R2, (g_sched+gobuf_sp)(g)
|
MOVW R2, (g_sched+gobuf_sp)(g)
|
||||||
|
|
||||||
// If the m on entry was nil, we called needm above to borrow an m
|
// If the m on entry was nil, we called needm above to borrow an m,
|
||||||
// for the duration of the call. Since the call is over, return it with dropm.
|
// 1. for the duration of the call on non-pthread platforms,
|
||||||
|
// 2. or the duration of the C thread alive on pthread platforms.
|
||||||
|
// If the m on entry wasn't nil,
|
||||||
|
// 1. the thread might be a Go thread,
|
||||||
|
// 2. or it's wasn't the first call from a C thread on pthread platforms,
|
||||||
|
// since the we skip dropm to resue the m in the first call.
|
||||||
MOVW savedm-4(SP), R3
|
MOVW savedm-4(SP), R3
|
||||||
BNE R3, droppedm
|
BNE R3, droppedm
|
||||||
|
|
||||||
|
// Skip dropm to reuse it in the next call, when a pthread key has been created.
|
||||||
|
MOVW _cgo_pthread_key_created(SB), R3
|
||||||
|
// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
|
||||||
|
BEQ R3, dropm
|
||||||
|
MOVW (R3), R3
|
||||||
|
BNE R3, droppedm
|
||||||
|
|
||||||
|
dropm:
|
||||||
MOVW $runtime·dropm(SB), R4
|
MOVW $runtime·dropm(SB), R4
|
||||||
JAL (R4)
|
JAL (R4)
|
||||||
droppedm:
|
droppedm:
|
||||||
|
@ -628,6 +628,16 @@ g0:
|
|||||||
TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
||||||
NO_LOCAL_POINTERS
|
NO_LOCAL_POINTERS
|
||||||
|
|
||||||
|
// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
|
||||||
|
// It is used to dropm while thread is exiting.
|
||||||
|
MOVD fn+0(FP), R5
|
||||||
|
CMP R5, $0
|
||||||
|
BNE loadg
|
||||||
|
// Restore the g from frame.
|
||||||
|
MOVD frame+8(FP), g
|
||||||
|
BR dropm
|
||||||
|
|
||||||
|
loadg:
|
||||||
// Load m and g from thread-local storage.
|
// Load m and g from thread-local storage.
|
||||||
MOVBZ runtime·iscgo(SB), R3
|
MOVBZ runtime·iscgo(SB), R3
|
||||||
CMP R3, $0
|
CMP R3, $0
|
||||||
@ -635,7 +645,8 @@ TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
|||||||
BL runtime·load_g(SB)
|
BL runtime·load_g(SB)
|
||||||
nocgo:
|
nocgo:
|
||||||
|
|
||||||
// If g is nil, Go did not create the current thread.
|
// If g is nil, Go did not create the current thread,
|
||||||
|
// or if this thread never called into Go on pthread platforms.
|
||||||
// Call needm to obtain one for temporary use.
|
// Call needm to obtain one for temporary use.
|
||||||
// In this case, we're running on the thread stack, so there's
|
// In this case, we're running on the thread stack, so there's
|
||||||
// lots of space, but the linker doesn't know. Hide the call from
|
// lots of space, but the linker doesn't know. Hide the call from
|
||||||
@ -649,7 +660,7 @@ nocgo:
|
|||||||
|
|
||||||
needm:
|
needm:
|
||||||
MOVD g, savedm-8(SP) // g is zero, so is m.
|
MOVD g, savedm-8(SP) // g is zero, so is m.
|
||||||
MOVD $runtime·needm(SB), R12
|
MOVD $runtime·needAndBindM(SB), R12
|
||||||
MOVD R12, CTR
|
MOVD R12, CTR
|
||||||
BL (CTR)
|
BL (CTR)
|
||||||
|
|
||||||
@ -724,11 +735,27 @@ havem:
|
|||||||
MOVD savedsp-24(SP), R4 // must match frame size
|
MOVD savedsp-24(SP), R4 // must match frame size
|
||||||
MOVD R4, (g_sched+gobuf_sp)(g)
|
MOVD R4, (g_sched+gobuf_sp)(g)
|
||||||
|
|
||||||
// If the m on entry was nil, we called needm above to borrow an m
|
// If the m on entry was nil, we called needm above to borrow an m,
|
||||||
// for the duration of the call. Since the call is over, return it with dropm.
|
// 1. for the duration of the call on non-pthread platforms,
|
||||||
|
// 2. or the duration of the C thread alive on pthread platforms.
|
||||||
|
// If the m on entry wasn't nil,
|
||||||
|
// 1. the thread might be a Go thread,
|
||||||
|
// 2. or it's wasn't the first call from a C thread on pthread platforms,
|
||||||
|
// since the we skip dropm to resue the m in the first call.
|
||||||
MOVD savedm-8(SP), R6
|
MOVD savedm-8(SP), R6
|
||||||
CMP R6, $0
|
CMP R6, $0
|
||||||
BNE droppedm
|
BNE droppedm
|
||||||
|
|
||||||
|
// Skip dropm to reuse it in the next call, when a pthread key has been created.
|
||||||
|
MOVD _cgo_pthread_key_created(SB), R6
|
||||||
|
// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
|
||||||
|
CMP R6, $0
|
||||||
|
BEQ dropm
|
||||||
|
MOVD (R6), R6
|
||||||
|
CMP R6, $0
|
||||||
|
BNE droppedm
|
||||||
|
|
||||||
|
dropm:
|
||||||
MOVD $runtime·dropm(SB), R12
|
MOVD $runtime·dropm(SB), R12
|
||||||
MOVD R12, CTR
|
MOVD R12, CTR
|
||||||
BL (CTR)
|
BL (CTR)
|
||||||
|
@ -519,13 +519,23 @@ TEXT runtime·goexit(SB),NOSPLIT|NOFRAME|TOPFRAME,$0-0
|
|||||||
TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
||||||
NO_LOCAL_POINTERS
|
NO_LOCAL_POINTERS
|
||||||
|
|
||||||
|
// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
|
||||||
|
// It is used to dropm while thread is exiting.
|
||||||
|
MOV fn+0(FP), X7
|
||||||
|
BNE ZERO, X7, loadg
|
||||||
|
// Restore the g from frame.
|
||||||
|
MOV frame+8(FP), g
|
||||||
|
JMP dropm
|
||||||
|
|
||||||
|
loadg:
|
||||||
// Load m and g from thread-local storage.
|
// Load m and g from thread-local storage.
|
||||||
MOVBU runtime·iscgo(SB), X5
|
MOVBU runtime·iscgo(SB), X5
|
||||||
BEQ ZERO, X5, nocgo
|
BEQ ZERO, X5, nocgo
|
||||||
CALL runtime·load_g(SB)
|
CALL runtime·load_g(SB)
|
||||||
nocgo:
|
nocgo:
|
||||||
|
|
||||||
// If g is nil, Go did not create the current thread.
|
// If g is nil, Go did not create the current thread,
|
||||||
|
// or if this thread never called into Go on pthread platforms.
|
||||||
// Call needm to obtain one for temporary use.
|
// Call needm to obtain one for temporary use.
|
||||||
// In this case, we're running on the thread stack, so there's
|
// In this case, we're running on the thread stack, so there's
|
||||||
// lots of space, but the linker doesn't know. Hide the call from
|
// lots of space, but the linker doesn't know. Hide the call from
|
||||||
@ -538,7 +548,7 @@ nocgo:
|
|||||||
|
|
||||||
needm:
|
needm:
|
||||||
MOV g, savedm-8(SP) // g is zero, so is m.
|
MOV g, savedm-8(SP) // g is zero, so is m.
|
||||||
MOV $runtime·needm(SB), X6
|
MOV $runtime·needAndBindM(SB), X6
|
||||||
JALR RA, X6
|
JALR RA, X6
|
||||||
|
|
||||||
// Set m->sched.sp = SP, so that if a panic happens
|
// Set m->sched.sp = SP, so that if a panic happens
|
||||||
@ -609,10 +619,24 @@ havem:
|
|||||||
MOV savedsp-24(SP), X6 // must match frame size
|
MOV savedsp-24(SP), X6 // must match frame size
|
||||||
MOV X6, (g_sched+gobuf_sp)(g)
|
MOV X6, (g_sched+gobuf_sp)(g)
|
||||||
|
|
||||||
// If the m on entry was nil, we called needm above to borrow an m
|
// If the m on entry was nil, we called needm above to borrow an m,
|
||||||
// for the duration of the call. Since the call is over, return it with dropm.
|
// 1. for the duration of the call on non-pthread platforms,
|
||||||
|
// 2. or the duration of the C thread alive on pthread platforms.
|
||||||
|
// If the m on entry wasn't nil,
|
||||||
|
// 1. the thread might be a Go thread,
|
||||||
|
// 2. or it's wasn't the first call from a C thread on pthread platforms,
|
||||||
|
// since the we skip dropm to resue the m in the first call.
|
||||||
MOV savedm-8(SP), X5
|
MOV savedm-8(SP), X5
|
||||||
BNE ZERO, X5, droppedm
|
BNE ZERO, X5, droppedm
|
||||||
|
|
||||||
|
// Skip dropm to reuse it in the next call, when a pthread key has been created.
|
||||||
|
MOV _cgo_pthread_key_created(SB), X5
|
||||||
|
// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
|
||||||
|
BEQ ZERO, X5, dropm
|
||||||
|
MOV (X5), X5
|
||||||
|
BNE ZERO, X5, droppedm
|
||||||
|
|
||||||
|
dropm:
|
||||||
MOV $runtime·dropm(SB), X6
|
MOV $runtime·dropm(SB), X6
|
||||||
JALR RA, X6
|
JALR RA, X6
|
||||||
droppedm:
|
droppedm:
|
||||||
|
@ -564,13 +564,23 @@ g0:
|
|||||||
TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
TEXT ·cgocallback(SB),NOSPLIT,$24-24
|
||||||
NO_LOCAL_POINTERS
|
NO_LOCAL_POINTERS
|
||||||
|
|
||||||
|
// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
|
||||||
|
// It is used to dropm while thread is exiting.
|
||||||
|
MOVD fn+0(FP), R1
|
||||||
|
CMPBNE R1, $0, loadg
|
||||||
|
// Restore the g from frame.
|
||||||
|
MOVD frame+8(FP), g
|
||||||
|
BR dropm
|
||||||
|
|
||||||
|
loadg:
|
||||||
// Load m and g from thread-local storage.
|
// Load m and g from thread-local storage.
|
||||||
MOVB runtime·iscgo(SB), R3
|
MOVB runtime·iscgo(SB), R3
|
||||||
CMPBEQ R3, $0, nocgo
|
CMPBEQ R3, $0, nocgo
|
||||||
BL runtime·load_g(SB)
|
BL runtime·load_g(SB)
|
||||||
|
|
||||||
nocgo:
|
nocgo:
|
||||||
// If g is nil, Go did not create the current thread.
|
// If g is nil, Go did not create the current thread,
|
||||||
|
// or if this thread never called into Go on pthread platforms.
|
||||||
// Call needm to obtain one for temporary use.
|
// Call needm to obtain one for temporary use.
|
||||||
// In this case, we're running on the thread stack, so there's
|
// In this case, we're running on the thread stack, so there's
|
||||||
// lots of space, but the linker doesn't know. Hide the call from
|
// lots of space, but the linker doesn't know. Hide the call from
|
||||||
@ -583,7 +593,7 @@ nocgo:
|
|||||||
|
|
||||||
needm:
|
needm:
|
||||||
MOVD g, savedm-8(SP) // g is zero, so is m.
|
MOVD g, savedm-8(SP) // g is zero, so is m.
|
||||||
MOVD $runtime·needm(SB), R3
|
MOVD $runtime·needAndBindM(SB), R3
|
||||||
BL (R3)
|
BL (R3)
|
||||||
|
|
||||||
// Set m->sched.sp = SP, so that if a panic happens
|
// Set m->sched.sp = SP, so that if a panic happens
|
||||||
@ -654,10 +664,24 @@ havem:
|
|||||||
MOVD savedsp-24(SP), R4 // must match frame size
|
MOVD savedsp-24(SP), R4 // must match frame size
|
||||||
MOVD R4, (g_sched+gobuf_sp)(g)
|
MOVD R4, (g_sched+gobuf_sp)(g)
|
||||||
|
|
||||||
// If the m on entry was nil, we called needm above to borrow an m
|
// If the m on entry was nil, we called needm above to borrow an m,
|
||||||
// for the duration of the call. Since the call is over, return it with dropm.
|
// 1. for the duration of the call on non-pthread platforms,
|
||||||
|
// 2. or the duration of the C thread alive on pthread platforms.
|
||||||
|
// If the m on entry wasn't nil,
|
||||||
|
// 1. the thread might be a Go thread,
|
||||||
|
// 2. or it's wasn't the first call from a C thread on pthread platforms,
|
||||||
|
// since the we skip dropm to resue the m in the first call.
|
||||||
MOVD savedm-8(SP), R6
|
MOVD savedm-8(SP), R6
|
||||||
CMPBNE R6, $0, droppedm
|
CMPBNE R6, $0, droppedm
|
||||||
|
|
||||||
|
// Skip dropm to reuse it in the next call, when a pthread key has been created.
|
||||||
|
MOVD _cgo_pthread_key_created(SB), R6
|
||||||
|
// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
|
||||||
|
CMPBEQ R6, $0, dropm
|
||||||
|
MOVD (R6), R6
|
||||||
|
CMPBNE R6, $0, droppedm
|
||||||
|
|
||||||
|
dropm:
|
||||||
MOVD $runtime·dropm(SB), R3
|
MOVD $runtime·dropm(SB), R3
|
||||||
BL (R3)
|
BL (R3)
|
||||||
droppedm:
|
droppedm:
|
||||||
|
@ -17,6 +17,9 @@ import "unsafe"
|
|||||||
//go:linkname _cgo_callers _cgo_callers
|
//go:linkname _cgo_callers _cgo_callers
|
||||||
//go:linkname _cgo_set_context_function _cgo_set_context_function
|
//go:linkname _cgo_set_context_function _cgo_set_context_function
|
||||||
//go:linkname _cgo_yield _cgo_yield
|
//go:linkname _cgo_yield _cgo_yield
|
||||||
|
//go:linkname _cgo_pthread_key_created _cgo_pthread_key_created
|
||||||
|
//go:linkname _cgo_bindm _cgo_bindm
|
||||||
|
//go:linkname _cgo_getstackbound _cgo_getstackbound
|
||||||
|
|
||||||
var (
|
var (
|
||||||
_cgo_init unsafe.Pointer
|
_cgo_init unsafe.Pointer
|
||||||
@ -26,11 +29,17 @@ var (
|
|||||||
_cgo_callers unsafe.Pointer
|
_cgo_callers unsafe.Pointer
|
||||||
_cgo_set_context_function unsafe.Pointer
|
_cgo_set_context_function unsafe.Pointer
|
||||||
_cgo_yield unsafe.Pointer
|
_cgo_yield unsafe.Pointer
|
||||||
|
_cgo_pthread_key_created unsafe.Pointer
|
||||||
|
_cgo_bindm unsafe.Pointer
|
||||||
|
_cgo_getstackbound unsafe.Pointer
|
||||||
)
|
)
|
||||||
|
|
||||||
// iscgo is set to true by the runtime/cgo package
|
// iscgo is set to true by the runtime/cgo package
|
||||||
var iscgo bool
|
var iscgo bool
|
||||||
|
|
||||||
|
// set_crosscall2 is set by the runtime/cgo package
|
||||||
|
var set_crosscall2 func()
|
||||||
|
|
||||||
// cgoHasExtraM is set on startup when an extra M is created for cgo.
|
// cgoHasExtraM is set on startup when an extra M is created for cgo.
|
||||||
// The extra M must be created before any C/C++ code calls cgocallback.
|
// The extra M must be created before any C/C++ code calls cgocallback.
|
||||||
var cgoHasExtraM bool
|
var cgoHasExtraM bool
|
||||||
|
@ -4,6 +4,14 @@
|
|||||||
|
|
||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
|
|
||||||
|
// Set the x_crosscall2_ptr C function pointer variable point to crosscall2.
|
||||||
|
// It's such a pointer chain: _crosscall2_ptr -> x_crosscall2_ptr -> crosscall2
|
||||||
|
TEXT ·set_crosscall2(SB),NOSPLIT,$0-0
|
||||||
|
MOVL _crosscall2_ptr(SB), AX
|
||||||
|
MOVL $crosscall2(SB), BX
|
||||||
|
MOVL BX, (AX)
|
||||||
|
RET
|
||||||
|
|
||||||
// Called by C code generated by cmd/cgo.
|
// Called by C code generated by cmd/cgo.
|
||||||
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
||||||
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
||||||
|
@ -5,6 +5,14 @@
|
|||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
#include "abi_amd64.h"
|
#include "abi_amd64.h"
|
||||||
|
|
||||||
|
// Set the x_crosscall2_ptr C function pointer variable point to crosscall2.
|
||||||
|
// It's such a pointer chain: _crosscall2_ptr -> x_crosscall2_ptr -> crosscall2
|
||||||
|
TEXT ·set_crosscall2(SB),NOSPLIT,$0-0
|
||||||
|
MOVQ _crosscall2_ptr(SB), AX
|
||||||
|
MOVQ $crosscall2(SB), BX
|
||||||
|
MOVQ BX, (AX)
|
||||||
|
RET
|
||||||
|
|
||||||
// Called by C code generated by cmd/cgo.
|
// Called by C code generated by cmd/cgo.
|
||||||
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
||||||
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
||||||
|
@ -4,6 +4,14 @@
|
|||||||
|
|
||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
|
|
||||||
|
// Set the x_crosscall2_ptr C function pointer variable point to crosscall2.
|
||||||
|
// It's such a pointer chain: _crosscall2_ptr -> x_crosscall2_ptr -> crosscall2
|
||||||
|
TEXT ·set_crosscall2(SB),NOSPLIT,$0-0
|
||||||
|
MOVW _crosscall2_ptr(SB), R1
|
||||||
|
MOVW $crosscall2(SB), R2
|
||||||
|
MOVW R2, (R1)
|
||||||
|
RET
|
||||||
|
|
||||||
// Called by C code generated by cmd/cgo.
|
// Called by C code generated by cmd/cgo.
|
||||||
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
||||||
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
||||||
|
@ -5,6 +5,14 @@
|
|||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
#include "abi_arm64.h"
|
#include "abi_arm64.h"
|
||||||
|
|
||||||
|
// Set the x_crosscall2_ptr C function pointer variable point to crosscall2.
|
||||||
|
// It's such a pointer chain: _crosscall2_ptr -> x_crosscall2_ptr -> crosscall2
|
||||||
|
TEXT ·set_crosscall2(SB),NOSPLIT,$0-0
|
||||||
|
MOVD _crosscall2_ptr(SB), R1
|
||||||
|
MOVD $crosscall2(SB), R2
|
||||||
|
MOVD R2, (R1)
|
||||||
|
RET
|
||||||
|
|
||||||
// Called by C code generated by cmd/cgo.
|
// Called by C code generated by cmd/cgo.
|
||||||
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
||||||
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
||||||
|
@ -5,6 +5,14 @@
|
|||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
#include "abi_loong64.h"
|
#include "abi_loong64.h"
|
||||||
|
|
||||||
|
// Set the x_crosscall2_ptr C function pointer variable point to crosscall2.
|
||||||
|
// It's such a pointer chain: _crosscall2_ptr -> x_crosscall2_ptr -> crosscall2
|
||||||
|
TEXT ·set_crosscall2(SB),NOSPLIT,$0-0
|
||||||
|
MOVV _crosscall2_ptr(SB), R5
|
||||||
|
MOVV $crosscall2(SB), R6
|
||||||
|
MOVV R6, (R5)
|
||||||
|
RET
|
||||||
|
|
||||||
// Called by C code generated by cmd/cgo.
|
// Called by C code generated by cmd/cgo.
|
||||||
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
||||||
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
||||||
|
@ -6,6 +6,14 @@
|
|||||||
|
|
||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
|
|
||||||
|
// Set the x_crosscall2_ptr C function pointer variable point to crosscall2.
|
||||||
|
// It's such a pointer chain: _crosscall2_ptr -> x_crosscall2_ptr -> crosscall2
|
||||||
|
TEXT ·set_crosscall2(SB),NOSPLIT,$0-0
|
||||||
|
MOVV _crosscall2_ptr(SB), R5
|
||||||
|
MOVV $crosscall2(SB), R6
|
||||||
|
MOVV R6, (R5)
|
||||||
|
RET
|
||||||
|
|
||||||
// Called by C code generated by cmd/cgo.
|
// Called by C code generated by cmd/cgo.
|
||||||
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
||||||
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
||||||
|
@ -6,6 +6,14 @@
|
|||||||
|
|
||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
|
|
||||||
|
// Set the x_crosscall2_ptr C function pointer variable point to crosscall2.
|
||||||
|
// It's such a pointer chain: _crosscall2_ptr -> x_crosscall2_ptr -> crosscall2
|
||||||
|
TEXT ·set_crosscall2(SB),NOSPLIT,$0-0
|
||||||
|
MOVW _crosscall2_ptr(SB), R5
|
||||||
|
MOVW $crosscall2(SB), R6
|
||||||
|
MOVW R6, (R5)
|
||||||
|
RET
|
||||||
|
|
||||||
// Called by C code generated by cmd/cgo.
|
// Called by C code generated by cmd/cgo.
|
||||||
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
||||||
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
||||||
|
@ -7,6 +7,25 @@
|
|||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
#include "asm_ppc64x.h"
|
#include "asm_ppc64x.h"
|
||||||
|
|
||||||
|
#ifdef GO_PPC64X_HAS_FUNCDESC
|
||||||
|
// crosscall2 is marked with go:cgo_export_static. On AIX, this creates and exports
|
||||||
|
// the symbol name and descriptor as the AIX linker expects, but does not work if
|
||||||
|
// referenced from within Go. Create and use an aliased descriptor of crosscall2
|
||||||
|
// to workaround this.
|
||||||
|
DEFINE_PPC64X_FUNCDESC(_crosscall2<>, crosscall2)
|
||||||
|
#define CROSSCALL2_FPTR $_crosscall2<>(SB)
|
||||||
|
#else
|
||||||
|
#define CROSSCALL2_FPTR $crosscall2(SB)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Set the x_crosscall2_ptr C function pointer variable point to crosscall2.
|
||||||
|
// It's such a pointer chain: _crosscall2_ptr -> x_crosscall2_ptr -> crosscall2
|
||||||
|
TEXT ·set_crosscall2(SB),NOSPLIT,$0-0
|
||||||
|
MOVD _crosscall2_ptr(SB), R5
|
||||||
|
MOVD CROSSCALL2_FPTR, R6
|
||||||
|
MOVD R6, (R5)
|
||||||
|
RET
|
||||||
|
|
||||||
// Called by C code generated by cmd/cgo.
|
// Called by C code generated by cmd/cgo.
|
||||||
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
||||||
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
||||||
@ -32,8 +51,12 @@ TEXT crosscall2(SB),NOSPLIT|NOFRAME,$0
|
|||||||
|
|
||||||
#ifdef GO_PPC64X_HAS_FUNCDESC
|
#ifdef GO_PPC64X_HAS_FUNCDESC
|
||||||
// Load the real entry address from the first slot of the function descriptor.
|
// Load the real entry address from the first slot of the function descriptor.
|
||||||
|
// The first argument fn might be null, that means dropm in pthread key destructor.
|
||||||
|
CMP R3, $0
|
||||||
|
BEQ nil_fn
|
||||||
MOVD 8(R3), R2
|
MOVD 8(R3), R2
|
||||||
MOVD (R3), R3
|
MOVD (R3), R3
|
||||||
|
nil_fn:
|
||||||
#endif
|
#endif
|
||||||
MOVD R3, FIXED_FRAME+0(R1) // fn unsafe.Pointer
|
MOVD R3, FIXED_FRAME+0(R1) // fn unsafe.Pointer
|
||||||
MOVD R4, FIXED_FRAME+8(R1) // a unsafe.Pointer
|
MOVD R4, FIXED_FRAME+8(R1) // a unsafe.Pointer
|
||||||
|
@ -4,6 +4,14 @@
|
|||||||
|
|
||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
|
|
||||||
|
// Set the x_crosscall2_ptr C function pointer variable point to crosscall2.
|
||||||
|
// It's such a pointer chain: _crosscall2_ptr -> x_crosscall2_ptr -> crosscall2
|
||||||
|
TEXT ·set_crosscall2(SB),NOSPLIT,$0-0
|
||||||
|
MOV _crosscall2_ptr(SB), X7
|
||||||
|
MOV $crosscall2(SB), X8
|
||||||
|
MOV X8, (X7)
|
||||||
|
RET
|
||||||
|
|
||||||
// Called by C code generated by cmd/cgo.
|
// Called by C code generated by cmd/cgo.
|
||||||
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
||||||
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
||||||
|
@ -4,6 +4,14 @@
|
|||||||
|
|
||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
|
|
||||||
|
// Set the x_crosscall2_ptr C function pointer variable point to crosscall2.
|
||||||
|
// It's such a pointer chain: _crosscall2_ptr -> x_crosscall2_ptr -> crosscall2
|
||||||
|
TEXT ·set_crosscall2(SB),NOSPLIT,$0-0
|
||||||
|
MOVD _crosscall2_ptr(SB), R1
|
||||||
|
MOVD $crosscall2(SB), R2
|
||||||
|
MOVD R2, (R1)
|
||||||
|
RET
|
||||||
|
|
||||||
// Called by C code generated by cmd/cgo.
|
// Called by C code generated by cmd/cgo.
|
||||||
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
// func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
|
||||||
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
// Saves C callee-saved registers and calls cgocallback with three arguments.
|
||||||
|
@ -4,5 +4,8 @@
|
|||||||
|
|
||||||
#include "textflag.h"
|
#include "textflag.h"
|
||||||
|
|
||||||
|
TEXT ·set_crosscall2(SB),NOSPLIT,$0-0
|
||||||
|
UNDEF
|
||||||
|
|
||||||
TEXT crosscall2(SB), NOSPLIT, $0
|
TEXT crosscall2(SB), NOSPLIT, $0
|
||||||
UNDEF
|
UNDEF
|
||||||
|
@ -71,6 +71,42 @@ var _cgo_thread_start = &x_cgo_thread_start
|
|||||||
var x_cgo_sys_thread_create byte
|
var x_cgo_sys_thread_create byte
|
||||||
var _cgo_sys_thread_create = &x_cgo_sys_thread_create
|
var _cgo_sys_thread_create = &x_cgo_sys_thread_create
|
||||||
|
|
||||||
|
// Indicates whether a dummy thread key has been created or not.
|
||||||
|
//
|
||||||
|
// When calling go exported function from C, we register a destructor
|
||||||
|
// callback, for a dummy thread key, by using pthread_key_create.
|
||||||
|
|
||||||
|
//go:cgo_import_static x_cgo_pthread_key_created
|
||||||
|
//go:linkname x_cgo_pthread_key_created x_cgo_pthread_key_created
|
||||||
|
//go:linkname _cgo_pthread_key_created _cgo_pthread_key_created
|
||||||
|
var x_cgo_pthread_key_created byte
|
||||||
|
var _cgo_pthread_key_created = &x_cgo_pthread_key_created
|
||||||
|
|
||||||
|
// Export crosscall2 to a c function pointer variable.
|
||||||
|
// Used to dropm in pthread key destructor, while C thread is exiting.
|
||||||
|
|
||||||
|
//go:cgo_import_static x_crosscall2_ptr
|
||||||
|
//go:linkname x_crosscall2_ptr x_crosscall2_ptr
|
||||||
|
//go:linkname _crosscall2_ptr _crosscall2_ptr
|
||||||
|
var x_crosscall2_ptr byte
|
||||||
|
var _crosscall2_ptr = &x_crosscall2_ptr
|
||||||
|
|
||||||
|
// Set the x_crosscall2_ptr C function pointer variable point to crosscall2.
|
||||||
|
// It's for the runtime package to call at init time.
|
||||||
|
func set_crosscall2()
|
||||||
|
|
||||||
|
//go:linkname _set_crosscall2 runtime.set_crosscall2
|
||||||
|
var _set_crosscall2 = set_crosscall2
|
||||||
|
|
||||||
|
// Store the g into the thread-specific value.
|
||||||
|
// So that pthread_key_destructor will dropm when the thread is exiting.
|
||||||
|
|
||||||
|
//go:cgo_import_static x_cgo_bindm
|
||||||
|
//go:linkname x_cgo_bindm x_cgo_bindm
|
||||||
|
//go:linkname _cgo_bindm _cgo_bindm
|
||||||
|
var x_cgo_bindm byte
|
||||||
|
var _cgo_bindm = &x_cgo_bindm
|
||||||
|
|
||||||
// Notifies that the runtime has been initialized.
|
// Notifies that the runtime has been initialized.
|
||||||
//
|
//
|
||||||
// We currently block at every CGO entry point (via _cgo_wait_runtime_init_done)
|
// We currently block at every CGO entry point (via _cgo_wait_runtime_init_done)
|
||||||
@ -105,3 +141,12 @@ var _cgo_yield unsafe.Pointer
|
|||||||
|
|
||||||
//go:cgo_export_static _cgo_topofstack
|
//go:cgo_export_static _cgo_topofstack
|
||||||
//go:cgo_export_dynamic _cgo_topofstack
|
//go:cgo_export_dynamic _cgo_topofstack
|
||||||
|
|
||||||
|
// x_cgo_getstackbound gets the thread's C stack size and
|
||||||
|
// set the G's stack bound based on the stack size.
|
||||||
|
|
||||||
|
//go:cgo_import_static x_cgo_getstackbound
|
||||||
|
//go:linkname x_cgo_getstackbound x_cgo_getstackbound
|
||||||
|
//go:linkname _cgo_getstackbound _cgo_getstackbound
|
||||||
|
var x_cgo_getstackbound byte
|
||||||
|
var _cgo_getstackbound = &x_cgo_getstackbound
|
||||||
|
@ -17,6 +17,14 @@ static pthread_cond_t runtime_init_cond = PTHREAD_COND_INITIALIZER;
|
|||||||
static pthread_mutex_t runtime_init_mu = PTHREAD_MUTEX_INITIALIZER;
|
static pthread_mutex_t runtime_init_mu = PTHREAD_MUTEX_INITIALIZER;
|
||||||
static int runtime_init_done;
|
static int runtime_init_done;
|
||||||
|
|
||||||
|
// pthread_g is a pthread specific key, for storing the g that binded to the C thread.
|
||||||
|
// The registered pthread_key_destructor will dropm, when the pthread-specified value g is not NULL,
|
||||||
|
// while a C thread is exiting.
|
||||||
|
static pthread_key_t pthread_g;
|
||||||
|
static void pthread_key_destructor(void* g);
|
||||||
|
uintptr_t x_cgo_pthread_key_created;
|
||||||
|
void (*x_crosscall2_ptr)(void (*fn)(void *), void *, int, size_t);
|
||||||
|
|
||||||
// The context function, used when tracing back C calls into Go.
|
// The context function, used when tracing back C calls into Go.
|
||||||
static void (*cgo_context_function)(struct context_arg*);
|
static void (*cgo_context_function)(struct context_arg*);
|
||||||
|
|
||||||
@ -39,6 +47,12 @@ _cgo_wait_runtime_init_done(void) {
|
|||||||
pthread_cond_wait(&runtime_init_cond, &runtime_init_mu);
|
pthread_cond_wait(&runtime_init_cond, &runtime_init_mu);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// The key and x_cgo_pthread_key_created are for the whole program,
|
||||||
|
// whereas the specific and destructor is per thread.
|
||||||
|
if (x_cgo_pthread_key_created == 0 && pthread_key_create(&pthread_g, pthread_key_destructor) == 0) {
|
||||||
|
x_cgo_pthread_key_created = 1;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO(iant): For the case of a new C thread calling into Go, such
|
// TODO(iant): For the case of a new C thread calling into Go, such
|
||||||
// as when using -buildmode=c-archive, we know that Go runtime
|
// as when using -buildmode=c-archive, we know that Go runtime
|
||||||
// initialization is complete but we do not know that all Go init
|
// initialization is complete but we do not know that all Go init
|
||||||
@ -61,6 +75,16 @@ _cgo_wait_runtime_init_done(void) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Store the g into a thread-specific value associated with the pthread key pthread_g.
|
||||||
|
// And pthread_key_destructor will dropm when the thread is exiting.
|
||||||
|
void x_cgo_bindm(void* g) {
|
||||||
|
// We assume this will always succeed, otherwise, there might be extra M leaking,
|
||||||
|
// when a C thread exits after a cgo call.
|
||||||
|
// We only invoke this function once per thread in runtime.needAndBindM,
|
||||||
|
// and the next calls just reuse the bound m.
|
||||||
|
pthread_setspecific(pthread_g, g);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
x_cgo_notify_runtime_init_done(void* dummy __attribute__ ((unused))) {
|
x_cgo_notify_runtime_init_done(void* dummy __attribute__ ((unused))) {
|
||||||
pthread_mutex_lock(&runtime_init_mu);
|
pthread_mutex_lock(&runtime_init_mu);
|
||||||
@ -110,3 +134,14 @@ _cgo_try_pthread_create(pthread_t* thread, const pthread_attr_t* attr, void* (*p
|
|||||||
}
|
}
|
||||||
return EAGAIN;
|
return EAGAIN;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
pthread_key_destructor(void* g) {
|
||||||
|
if (x_crosscall2_ptr != NULL) {
|
||||||
|
// fn == NULL means dropm.
|
||||||
|
// We restore g by using the stored g, before dropm in runtime.cgocallback,
|
||||||
|
// since the g stored in the TLS by Go might be cleared in some platforms,
|
||||||
|
// before this destructor invoked.
|
||||||
|
x_crosscall2_ptr(NULL, g, 0, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -30,6 +30,9 @@ static CRITICAL_SECTION runtime_init_cs;
|
|||||||
static HANDLE runtime_init_wait;
|
static HANDLE runtime_init_wait;
|
||||||
static int runtime_init_done;
|
static int runtime_init_done;
|
||||||
|
|
||||||
|
uintptr_t x_cgo_pthread_key_created;
|
||||||
|
void (*x_crosscall2_ptr)(void (*fn)(void *), void *, int, size_t);
|
||||||
|
|
||||||
// Pre-initialize the runtime synchronization objects
|
// Pre-initialize the runtime synchronization objects
|
||||||
void
|
void
|
||||||
_cgo_preinit_init() {
|
_cgo_preinit_init() {
|
||||||
@ -91,6 +94,12 @@ _cgo_wait_runtime_init_done(void) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Should not be used since x_cgo_pthread_key_created will always be zero.
|
||||||
|
void x_cgo_bindm(void* dummy) {
|
||||||
|
fprintf(stderr, "unexpected cgo_bindm on Windows\n");
|
||||||
|
abort();
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
x_cgo_notify_runtime_init_done(void* dummy) {
|
x_cgo_notify_runtime_init_done(void* dummy) {
|
||||||
_cgo_maybe_run_preinit();
|
_cgo_maybe_run_preinit();
|
||||||
|
19
src/runtime/cgo/gcc_stack_darwin.c
Normal file
19
src/runtime/cgo/gcc_stack_darwin.c
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
// Copyright 2023 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.
|
||||||
|
|
||||||
|
#include <pthread.h>
|
||||||
|
#include "libcgo.h"
|
||||||
|
|
||||||
|
void
|
||||||
|
x_cgo_getstackbound(uintptr *low)
|
||||||
|
{
|
||||||
|
void* addr;
|
||||||
|
size_t size;
|
||||||
|
pthread_t p;
|
||||||
|
|
||||||
|
p = pthread_self();
|
||||||
|
addr = pthread_get_stackaddr_np(p); // high address (!)
|
||||||
|
size = pthread_get_stacksize_np(p);
|
||||||
|
*low = (uintptr)addr - size;
|
||||||
|
}
|
39
src/runtime/cgo/gcc_stack_unix.c
Normal file
39
src/runtime/cgo/gcc_stack_unix.c
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
// Copyright 2023 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.
|
||||||
|
|
||||||
|
//go:build unix && !darwin
|
||||||
|
|
||||||
|
#ifndef _GNU_SOURCE // pthread_getattr_np
|
||||||
|
#define _GNU_SOURCE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <pthread.h>
|
||||||
|
#include "libcgo.h"
|
||||||
|
|
||||||
|
void
|
||||||
|
x_cgo_getstackbound(uintptr *low)
|
||||||
|
{
|
||||||
|
pthread_attr_t attr;
|
||||||
|
void *addr;
|
||||||
|
size_t size;
|
||||||
|
|
||||||
|
#if defined(__GLIBC__) || (defined(__sun) && !defined(__illumos__))
|
||||||
|
// pthread_getattr_np is a GNU extension supported in glibc.
|
||||||
|
// Solaris is not glibc but does support pthread_getattr_np
|
||||||
|
// (and the fallback doesn't work...). Illumos does not.
|
||||||
|
pthread_getattr_np(pthread_self(), &attr); // GNU extension
|
||||||
|
pthread_attr_getstack(&attr, &addr, &size); // low address
|
||||||
|
#elif defined(__illumos__)
|
||||||
|
pthread_attr_init(&attr);
|
||||||
|
pthread_attr_get_np(pthread_self(), &attr);
|
||||||
|
pthread_attr_getstack(&attr, &addr, &size); // low address
|
||||||
|
#else
|
||||||
|
pthread_attr_init(&attr);
|
||||||
|
pthread_attr_getstacksize(&attr, &size);
|
||||||
|
addr = __builtin_frame_address(0) + 4096 - size;
|
||||||
|
#endif
|
||||||
|
pthread_attr_destroy(&attr);
|
||||||
|
|
||||||
|
*low = (uintptr)addr;
|
||||||
|
}
|
7
src/runtime/cgo/gcc_stack_windows.c
Normal file
7
src/runtime/cgo/gcc_stack_windows.c
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
// Copyright 2023 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.
|
||||||
|
|
||||||
|
#include "libcgo.h"
|
||||||
|
|
||||||
|
void x_cgo_getstackbound(uintptr *low) {} // no-op for now
|
@ -51,6 +51,11 @@ extern void (*_cgo_thread_start)(ThreadStart *ts);
|
|||||||
*/
|
*/
|
||||||
extern void (*_cgo_sys_thread_create)(void* (*func)(void*), void* arg);
|
extern void (*_cgo_sys_thread_create)(void* (*func)(void*), void* arg);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Indicates whether a dummy pthread per-thread variable is allocated.
|
||||||
|
*/
|
||||||
|
extern uintptr_t *_cgo_pthread_key_created;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Creates the new operating system thread (OS, arch dependent).
|
* Creates the new operating system thread (OS, arch dependent).
|
||||||
*/
|
*/
|
||||||
|
@ -229,6 +229,9 @@ func cgocallbackg(fn, frame unsafe.Pointer, ctxt uintptr) {
|
|||||||
savedpc := gp.syscallpc
|
savedpc := gp.syscallpc
|
||||||
exitsyscall() // coming out of cgo call
|
exitsyscall() // coming out of cgo call
|
||||||
gp.m.incgo = false
|
gp.m.incgo = false
|
||||||
|
if gp.m.isextra {
|
||||||
|
gp.m.isExtraInC = false
|
||||||
|
}
|
||||||
|
|
||||||
osPreemptExtExit(gp.m)
|
osPreemptExtExit(gp.m)
|
||||||
|
|
||||||
@ -239,6 +242,9 @@ func cgocallbackg(fn, frame unsafe.Pointer, ctxt uintptr) {
|
|||||||
// This is enforced by checking incgo in the schedule function.
|
// This is enforced by checking incgo in the schedule function.
|
||||||
|
|
||||||
gp.m.incgo = true
|
gp.m.incgo = true
|
||||||
|
if gp.m.isextra {
|
||||||
|
gp.m.isExtraInC = true
|
||||||
|
}
|
||||||
|
|
||||||
if gp.m != checkm {
|
if gp.m != checkm {
|
||||||
throw("m changed unexpectedly in cgocallbackg")
|
throw("m changed unexpectedly in cgocallbackg")
|
||||||
|
@ -826,3 +826,16 @@ func TestDestructorCallbackRace(t *testing.T) {
|
|||||||
t.Errorf("expected %q, but got:\n%s", want, got)
|
t.Errorf("expected %q, but got:\n%s", want, got)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestEnsureBindM(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
switch runtime.GOOS {
|
||||||
|
case "windows", "plan9":
|
||||||
|
t.Skipf("skipping bindm test on %s", runtime.GOOS)
|
||||||
|
}
|
||||||
|
got := runTestProg(t, "testprogcgo", "EnsureBindM")
|
||||||
|
want := "OK\n"
|
||||||
|
if got != want {
|
||||||
|
t.Errorf("expected %q, got %v", want, got)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -209,6 +209,10 @@ func main() {
|
|||||||
|
|
||||||
main_init_done = make(chan bool)
|
main_init_done = make(chan bool)
|
||||||
if iscgo {
|
if iscgo {
|
||||||
|
if _cgo_pthread_key_created == nil {
|
||||||
|
throw("_cgo_pthread_key_created missing")
|
||||||
|
}
|
||||||
|
|
||||||
if _cgo_thread_start == nil {
|
if _cgo_thread_start == nil {
|
||||||
throw("_cgo_thread_start missing")
|
throw("_cgo_thread_start missing")
|
||||||
}
|
}
|
||||||
@ -223,6 +227,13 @@ func main() {
|
|||||||
if _cgo_notify_runtime_init_done == nil {
|
if _cgo_notify_runtime_init_done == nil {
|
||||||
throw("_cgo_notify_runtime_init_done missing")
|
throw("_cgo_notify_runtime_init_done missing")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set the x_crosscall2_ptr C function pointer variable point to crosscall2.
|
||||||
|
if set_crosscall2 == nil {
|
||||||
|
throw("set_crosscall2 missing")
|
||||||
|
}
|
||||||
|
set_crosscall2()
|
||||||
|
|
||||||
// Start the template thread in case we enter Go from
|
// Start the template thread in case we enter Go from
|
||||||
// a C-created thread and need to create a new thread.
|
// a C-created thread and need to create a new thread.
|
||||||
startTemplateThread()
|
startTemplateThread()
|
||||||
@ -1880,11 +1891,15 @@ func allocm(pp *p, fn func(), id int64) *m {
|
|||||||
// pressed into service as the scheduling stack and current
|
// pressed into service as the scheduling stack and current
|
||||||
// goroutine for the duration of the cgo callback.
|
// goroutine for the duration of the cgo callback.
|
||||||
//
|
//
|
||||||
// When the callback is done with the m, it calls dropm to
|
// It calls dropm to put the m back on the list,
|
||||||
// put the m back on the list.
|
// 1. when the callback is done with the m in non-pthread platforms,
|
||||||
|
// 2. or when the C thread exiting on pthread platforms.
|
||||||
|
//
|
||||||
|
// The signal argument indicates whether we're called from a signal
|
||||||
|
// handler.
|
||||||
//
|
//
|
||||||
//go:nosplit
|
//go:nosplit
|
||||||
func needm() {
|
func needm(signal bool) {
|
||||||
if (iscgo || GOOS == "windows") && !cgoHasExtraM {
|
if (iscgo || GOOS == "windows") && !cgoHasExtraM {
|
||||||
// Can happen if C/C++ code calls Go from a global ctor.
|
// Can happen if C/C++ code calls Go from a global ctor.
|
||||||
// Can also happen on Windows if a global ctor uses a
|
// Can also happen on Windows if a global ctor uses a
|
||||||
@ -1933,16 +1948,36 @@ func needm() {
|
|||||||
osSetupTLS(mp)
|
osSetupTLS(mp)
|
||||||
|
|
||||||
// Install g (= m->g0) and set the stack bounds
|
// Install g (= m->g0) and set the stack bounds
|
||||||
// to match the current stack. We don't actually know
|
// to match the current stack. If we don't actually know
|
||||||
// how big the stack is, like we don't know how big any
|
// how big the stack is, like we don't know how big any
|
||||||
// scheduling stack is, but we assume there's at least 32 kB,
|
// scheduling stack is, but we assume there's at least 32 kB.
|
||||||
// which is more than enough for us.
|
// If we can get a more accurate stack bound from pthread,
|
||||||
|
// use that.
|
||||||
setg(mp.g0)
|
setg(mp.g0)
|
||||||
gp := getg()
|
gp := getg()
|
||||||
gp.stack.hi = getcallersp() + 1024
|
gp.stack.hi = getcallersp() + 1024
|
||||||
gp.stack.lo = getcallersp() - 32*1024
|
gp.stack.lo = getcallersp() - 32*1024
|
||||||
|
if !signal && _cgo_getstackbound != nil {
|
||||||
|
// Don't adjust if called from the signal handler.
|
||||||
|
// We are on the signal stack, not the pthread stack.
|
||||||
|
// (We could get the stack bounds from sigaltstack, but
|
||||||
|
// we're getting out of the signal handler very soon
|
||||||
|
// anyway. Not worth it.)
|
||||||
|
var low uintptr
|
||||||
|
asmcgocall(_cgo_getstackbound, unsafe.Pointer(&low))
|
||||||
|
// getstackbound is an unsupported no-op on Windows.
|
||||||
|
if low != 0 {
|
||||||
|
gp.stack.lo = low
|
||||||
|
// TODO: Also get gp.stack.hi from getstackbound.
|
||||||
|
}
|
||||||
|
}
|
||||||
gp.stackguard0 = gp.stack.lo + stackGuard
|
gp.stackguard0 = gp.stack.lo + stackGuard
|
||||||
|
|
||||||
|
// Should mark we are already in Go now.
|
||||||
|
// Otherwise, we may call needm again when we get a signal, before cgocallbackg1,
|
||||||
|
// which means the extram list may be empty, that will cause a deadlock.
|
||||||
|
mp.isExtraInC = false
|
||||||
|
|
||||||
// Initialize this thread to use the m.
|
// Initialize this thread to use the m.
|
||||||
asminit()
|
asminit()
|
||||||
minit()
|
minit()
|
||||||
@ -1952,6 +1987,17 @@ func needm() {
|
|||||||
sched.ngsys.Add(-1)
|
sched.ngsys.Add(-1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Acquire an extra m and bind it to the C thread when a pthread key has been created.
|
||||||
|
//
|
||||||
|
//go:nosplit
|
||||||
|
func needAndBindM() {
|
||||||
|
needm(false)
|
||||||
|
|
||||||
|
if _cgo_pthread_key_created != nil && *(*uintptr)(_cgo_pthread_key_created) != 0 {
|
||||||
|
cgoBindM()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// newextram allocates m's and puts them on the extra list.
|
// newextram allocates m's and puts them on the extra list.
|
||||||
// It is called with a working local m, so that it can do things
|
// It is called with a working local m, so that it can do things
|
||||||
// like call schedlock and allocate.
|
// like call schedlock and allocate.
|
||||||
@ -1996,6 +2042,8 @@ func oneNewExtraM() {
|
|||||||
gp.m = mp
|
gp.m = mp
|
||||||
mp.curg = gp
|
mp.curg = gp
|
||||||
mp.isextra = true
|
mp.isextra = true
|
||||||
|
// mark we are in C by default.
|
||||||
|
mp.isExtraInC = true
|
||||||
mp.lockedInt++
|
mp.lockedInt++
|
||||||
mp.lockedg.set(gp)
|
mp.lockedg.set(gp)
|
||||||
gp.lockedm.set(mp)
|
gp.lockedm.set(mp)
|
||||||
@ -2028,9 +2076,11 @@ func oneNewExtraM() {
|
|||||||
unlockextra(mp)
|
unlockextra(mp)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// dropm puts the current m back onto the extra list.
|
||||||
|
//
|
||||||
|
// 1. On systems without pthreads, like Windows
|
||||||
// dropm is called when a cgo callback has called needm but is now
|
// dropm is called when a cgo callback has called needm but is now
|
||||||
// done with the callback and returning back into the non-Go thread.
|
// done with the callback and returning back into the non-Go thread.
|
||||||
// It puts the current m back onto the extra list.
|
|
||||||
//
|
//
|
||||||
// The main expense here is the call to signalstack to release the
|
// The main expense here is the call to signalstack to release the
|
||||||
// m's signal stack, and then the call to needm on the next callback
|
// m's signal stack, and then the call to needm on the next callback
|
||||||
@ -2042,15 +2092,18 @@ func oneNewExtraM() {
|
|||||||
// call. These should typically not be scheduling operations, just a few
|
// call. These should typically not be scheduling operations, just a few
|
||||||
// atomics, so the cost should be small.
|
// atomics, so the cost should be small.
|
||||||
//
|
//
|
||||||
// TODO(rsc): An alternative would be to allocate a dummy pthread per-thread
|
// 2. On systems with pthreads
|
||||||
// variable using pthread_key_create. Unlike the pthread keys we already use
|
// dropm is called while a non-Go thread is exiting.
|
||||||
// on OS X, this dummy key would never be read by Go code. It would exist
|
// We allocate a pthread per-thread variable using pthread_key_create,
|
||||||
// only so that we could register at thread-exit-time destructor.
|
// to register a thread-exit-time destructor.
|
||||||
// That destructor would put the m back onto the extra list.
|
// And store the g into a thread-specific value associated with the pthread key,
|
||||||
// This is purely a performance optimization. The current version,
|
// when first return back to C.
|
||||||
// in which dropm happens on each cgo call, is still correct too.
|
// So that the destructor would invoke dropm while the non-Go thread is exiting.
|
||||||
// We may have to keep the current version on systems with cgo
|
// This is much faster since it avoids expensive signal-related syscalls.
|
||||||
// but without pthreads, like Windows.
|
//
|
||||||
|
// NOTE: this always runs without a P, so, nowritebarrierrec required.
|
||||||
|
//
|
||||||
|
//go:nowritebarrierrec
|
||||||
func dropm() {
|
func dropm() {
|
||||||
// Clear m and g, and return m to the extra list.
|
// Clear m and g, and return m to the extra list.
|
||||||
// After the call to setg we can only call nosplit functions
|
// After the call to setg we can only call nosplit functions
|
||||||
@ -2082,6 +2135,39 @@ func dropm() {
|
|||||||
msigrestore(sigmask)
|
msigrestore(sigmask)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// bindm store the g0 of the current m into a thread-specific value.
|
||||||
|
//
|
||||||
|
// We allocate a pthread per-thread variable using pthread_key_create,
|
||||||
|
// to register a thread-exit-time destructor.
|
||||||
|
// We are here setting the thread-specific value of the pthread key, to enable the destructor.
|
||||||
|
// So that the pthread_key_destructor would dropm while the C thread is exiting.
|
||||||
|
//
|
||||||
|
// And the saved g will be used in pthread_key_destructor,
|
||||||
|
// since the g stored in the TLS by Go might be cleared in some platforms,
|
||||||
|
// before the destructor invoked, so, we restore g by the stored g, before dropm.
|
||||||
|
//
|
||||||
|
// We store g0 instead of m, to make the assembly code simpler,
|
||||||
|
// since we need to restore g0 in runtime.cgocallback.
|
||||||
|
//
|
||||||
|
// On systems without pthreads, like Windows, bindm shouldn't be used.
|
||||||
|
//
|
||||||
|
// NOTE: this always runs without a P, so, nowritebarrierrec required.
|
||||||
|
//
|
||||||
|
//go:nosplit
|
||||||
|
//go:nowritebarrierrec
|
||||||
|
func cgoBindM() {
|
||||||
|
if GOOS == "windows" || GOOS == "plan9" {
|
||||||
|
fatal("bindm in unexpected GOOS")
|
||||||
|
}
|
||||||
|
g := getg()
|
||||||
|
if g.m.g0 != g {
|
||||||
|
fatal("the current g is not g0")
|
||||||
|
}
|
||||||
|
if _cgo_bindm != nil {
|
||||||
|
asmcgocall(_cgo_bindm, unsafe.Pointer(g))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// A helper function for EnsureDropM.
|
// A helper function for EnsureDropM.
|
||||||
func getm() uintptr {
|
func getm() uintptr {
|
||||||
return uintptr(unsafe.Pointer(getg().m))
|
return uintptr(unsafe.Pointer(getg().m))
|
||||||
|
@ -562,6 +562,7 @@ type m struct {
|
|||||||
printlock int8
|
printlock int8
|
||||||
incgo bool // m is executing a cgo call
|
incgo bool // m is executing a cgo call
|
||||||
isextra bool // m is an extra m
|
isextra bool // m is an extra m
|
||||||
|
isExtraInC bool // m is an extra m that is not executing Go code
|
||||||
freeWait atomic.Uint32 // Whether it is safe to free g0 and delete m (one of freeMRef, freeMStack, freeMWait)
|
freeWait atomic.Uint32 // Whether it is safe to free g0 and delete m (one of freeMRef, freeMStack, freeMWait)
|
||||||
fastrand uint64
|
fastrand uint64
|
||||||
needextram bool
|
needextram bool
|
||||||
|
@ -435,7 +435,7 @@ func sigtrampgo(sig uint32, info *siginfo, ctx unsafe.Pointer) {
|
|||||||
c := &sigctxt{info, ctx}
|
c := &sigctxt{info, ctx}
|
||||||
gp := sigFetchG(c)
|
gp := sigFetchG(c)
|
||||||
setg(gp)
|
setg(gp)
|
||||||
if gp == nil {
|
if gp == nil || (gp.m != nil && gp.m.isExtraInC) {
|
||||||
if sig == _SIGPROF {
|
if sig == _SIGPROF {
|
||||||
// Some platforms (Linux) have per-thread timers, which we use in
|
// Some platforms (Linux) have per-thread timers, which we use in
|
||||||
// combination with the process-wide timer. Avoid double-counting.
|
// combination with the process-wide timer. Avoid double-counting.
|
||||||
@ -458,7 +458,18 @@ func sigtrampgo(sig uint32, info *siginfo, ctx unsafe.Pointer) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
c.fixsigcode(sig)
|
c.fixsigcode(sig)
|
||||||
|
// Set g to nil here and badsignal will use g0 by needm.
|
||||||
|
// TODO: reuse the current m here by using the gsignal and adjustSignalStack,
|
||||||
|
// since the current g maybe a normal goroutine and actually running on the signal stack,
|
||||||
|
// it may hit stack split that is not expected here.
|
||||||
|
if gp != nil {
|
||||||
|
setg(nil)
|
||||||
|
}
|
||||||
badsignal(uintptr(sig), c)
|
badsignal(uintptr(sig), c)
|
||||||
|
// Restore g
|
||||||
|
if gp != nil {
|
||||||
|
setg(gp)
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -574,7 +585,7 @@ func adjustSignalStack(sig uint32, mp *m, gsigStack *gsignalStack) bool {
|
|||||||
|
|
||||||
// sp is not within gsignal stack, g0 stack, or sigaltstack. Bad.
|
// sp is not within gsignal stack, g0 stack, or sigaltstack. Bad.
|
||||||
setg(nil)
|
setg(nil)
|
||||||
needm()
|
needm(true)
|
||||||
if st.ss_flags&_SS_DISABLE != 0 {
|
if st.ss_flags&_SS_DISABLE != 0 {
|
||||||
noSignalStack(sig)
|
noSignalStack(sig)
|
||||||
} else {
|
} else {
|
||||||
@ -1047,7 +1058,7 @@ func badsignal(sig uintptr, c *sigctxt) {
|
|||||||
exit(2)
|
exit(2)
|
||||||
*(*uintptr)(unsafe.Pointer(uintptr(123))) = 2
|
*(*uintptr)(unsafe.Pointer(uintptr(123))) = 2
|
||||||
}
|
}
|
||||||
needm()
|
needm(true)
|
||||||
if !sigsend(uint32(sig)) {
|
if !sigsend(uint32(sig)) {
|
||||||
// A foreign thread received the signal sig, and the
|
// A foreign thread received the signal sig, and the
|
||||||
// Go code does not want to handle it.
|
// Go code does not want to handle it.
|
||||||
@ -1115,8 +1126,9 @@ func sigfwdgo(sig uint32, info *siginfo, ctx unsafe.Pointer) bool {
|
|||||||
// (1) we weren't in VDSO page,
|
// (1) we weren't in VDSO page,
|
||||||
// (2) we were in a goroutine (i.e., m.curg != nil), and
|
// (2) we were in a goroutine (i.e., m.curg != nil), and
|
||||||
// (3) we weren't in CGO.
|
// (3) we weren't in CGO.
|
||||||
|
// (4) we weren't in dropped extra m.
|
||||||
gp := sigFetchG(c)
|
gp := sigFetchG(c)
|
||||||
if gp != nil && gp.m != nil && gp.m.curg != nil && !gp.m.incgo {
|
if gp != nil && gp.m != nil && gp.m.curg != nil && !gp.m.isExtraInC && !gp.m.incgo {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -237,6 +237,9 @@ func noEscapePtr[T any](p *T) *T {
|
|||||||
// cgocallback is not called from Go, only from crosscall2.
|
// cgocallback is not called from Go, only from crosscall2.
|
||||||
// This in turn calls cgocallbackg, which is where we'll find
|
// This in turn calls cgocallbackg, which is where we'll find
|
||||||
// pointer-declared arguments.
|
// pointer-declared arguments.
|
||||||
|
//
|
||||||
|
// When fn is nil (frame is saved g), call dropm instead,
|
||||||
|
// this is used when the C thread is exiting.
|
||||||
func cgocallback(fn, frame, ctxt uintptr)
|
func cgocallback(fn, frame, ctxt uintptr)
|
||||||
|
|
||||||
func gogo(buf *gobuf)
|
func gogo(buf *gobuf)
|
||||||
|
34
src/runtime/testdata/testprogcgo/bindm.c
vendored
Normal file
34
src/runtime/testdata/testprogcgo/bindm.c
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
// Copyright 2023 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.
|
||||||
|
|
||||||
|
//go:build !plan9 && !windows
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <pthread.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include "_cgo_export.h"
|
||||||
|
|
||||||
|
#define CTHREADS 2
|
||||||
|
#define CHECKCALLS 100
|
||||||
|
|
||||||
|
static void* checkBindMThread(void* thread) {
|
||||||
|
int i;
|
||||||
|
for (i = 0; i < CHECKCALLS; i++) {
|
||||||
|
GoCheckBindM((uintptr_t)thread);
|
||||||
|
usleep(1);
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
void CheckBindM() {
|
||||||
|
int i;
|
||||||
|
pthread_t s[CTHREADS];
|
||||||
|
|
||||||
|
for (i = 0; i < CTHREADS; i++) {
|
||||||
|
pthread_create(&s[i], NULL, checkBindMThread, &s[i]);
|
||||||
|
}
|
||||||
|
for (i = 0; i < CTHREADS; i++) {
|
||||||
|
pthread_join(s[i], NULL);
|
||||||
|
}
|
||||||
|
}
|
61
src/runtime/testdata/testprogcgo/bindm.go
vendored
Normal file
61
src/runtime/testdata/testprogcgo/bindm.go
vendored
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
// Copyright 2023 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.
|
||||||
|
|
||||||
|
//go:build !plan9 && !windows
|
||||||
|
|
||||||
|
// Test that callbacks from C to Go in the same C-thread always get the same m.
|
||||||
|
// Make sure the extra M bind to the C-thread.
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
/*
|
||||||
|
extern void CheckBindM();
|
||||||
|
*/
|
||||||
|
import "C"
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
"runtime"
|
||||||
|
"sync"
|
||||||
|
"sync/atomic"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
mutex = sync.Mutex{}
|
||||||
|
cThreadToM = map[uintptr]uintptr{}
|
||||||
|
started = atomic.Uint32{}
|
||||||
|
)
|
||||||
|
|
||||||
|
// same as CTHREADS in C, make sure all the C threads are actually started.
|
||||||
|
const cThreadNum = 2
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
register("EnsureBindM", EnsureBindM)
|
||||||
|
}
|
||||||
|
|
||||||
|
//export GoCheckBindM
|
||||||
|
func GoCheckBindM(thread uintptr) {
|
||||||
|
// Wait all threads start
|
||||||
|
if started.Load() != cThreadNum {
|
||||||
|
// Only once for each thread, since it will wait all threads start.
|
||||||
|
started.Add(1)
|
||||||
|
for started.Load() < cThreadNum {
|
||||||
|
runtime.Gosched()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
m := runtime_getm_for_test()
|
||||||
|
mutex.Lock()
|
||||||
|
defer mutex.Unlock()
|
||||||
|
if savedM, ok := cThreadToM[thread]; ok && savedM != m {
|
||||||
|
fmt.Printf("m == %x want %x\n", m, savedM)
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
cThreadToM[thread] = m
|
||||||
|
}
|
||||||
|
|
||||||
|
func EnsureBindM() {
|
||||||
|
C.CheckBindM()
|
||||||
|
fmt.Println("OK")
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user