aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/export_test.go
diff options
context:
space:
mode:
authorKeith Randall <khr@golang.org>2022-11-08 17:48:48 -0800
committerKeith Randall <khr@golang.org>2022-11-17 23:12:04 +0000
commitd6171c9be2a4bd2801841aa006702886c476f217 (patch)
tree9d1c4a24f0a80b3354ccaeb8c4064a35380acf1b /src/runtime/export_test.go
parent3e5c2c155645ebaed62e4481430c455045b0fff5 (diff)
downloadgo-d6171c9be2a4bd2801841aa006702886c476f217.tar.xz
runtime: fix conflict between lfstack and checkptr
lfstack does very unsafe things. In particular, it will not work with nodes that live on the heap. In normal use by the runtime, that is the case (it is only used for gc work bufs). But the lfstack test does use heap objects. It goes through some hoops to prevent premature deallocation, but those hoops are not enough to convince -d=checkptr that everything is ok. Instead, allocate the test objects outside the heap, like the runtime does for all of its lfstack usage. Remove the lifetime workaround from the test. Reported in https://groups.google.com/g/golang-nuts/c/psjrUV2ZKyI Change-Id: If611105eab6c823a4d6c105938ce145ed731781d Reviewed-on: https://go-review.googlesource.com/c/go/+/448899 Reviewed-by: Austin Clements <austin@google.com> Reviewed-by: Keith Randall <khr@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Keith Randall <khr@golang.org>
Diffstat (limited to 'src/runtime/export_test.go')
-rw-r--r--src/runtime/export_test.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/runtime/export_test.go b/src/runtime/export_test.go
index bc1b3353e5..e7476e606b 100644
--- a/src/runtime/export_test.go
+++ b/src/runtime/export_test.go
@@ -69,6 +69,9 @@ func LFStackPush(head *uint64, node *LFNode) {
func LFStackPop(head *uint64) *LFNode {
return (*LFNode)(unsafe.Pointer((*lfstack)(head).pop()))
}
+func LFNodeValidate(node *LFNode) {
+ lfnodeValidate((*lfnode)(unsafe.Pointer(node)))
+}
func Netpoll(delta int64) {
systemstack(func() {
@@ -1709,3 +1712,9 @@ func BlockUntilEmptyFinalizerQueue(timeout int64) bool {
func FrameStartLine(f *Frame) int {
return f.startLine
}
+
+// PersistentAlloc allocates some memory that lives outside the Go heap.
+// This memory will never be freed; use sparingly.
+func PersistentAlloc(n uintptr) unsafe.Pointer {
+ return persistentalloc(n, 0, &memstats.other_sys)
+}