aboutsummaryrefslogtreecommitdiff
path: root/src/runtime
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2025-12-09 18:56:45 -0800
committerGopher Robot <gobot@golang.org>2025-12-12 13:23:17 -0800
commitee0275d15b4407038d30e27c9cc313c4ef339026 (patch)
tree7e77ce3b703dcfc97f7de79a68d61a788002feee /src/runtime
parent63fced531c0d702554fcfda41f9016701a6859c6 (diff)
downloadgo-ee0275d15b4407038d30e27c9cc313c4ef339026.tar.xz
runtime, cmd/link: tighten search for stackObjectRecord
A stackObjectRecord should always be in funcdata, between gofunc and the end of pclntab, except for the special case of methodValueCallFrameObjs, which should always be in noptrbss. Adjust the two loops that look for the moduledata corresponding to a stackObjectRecord to search more precisely, rather than relying on datap.end. Closely based on a patch by Michael Stapelberg. For #76038 Change-Id: I751801d8fd030af751825a67905b2a343280e7d9 Reviewed-on: https://go-review.googlesource.com/c/go/+/728840 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com>
Diffstat (limited to 'src/runtime')
-rw-r--r--src/runtime/stack.go8
-rw-r--r--src/runtime/stkframe.go2
-rw-r--r--src/runtime/symtab.go1
3 files changed, 9 insertions, 2 deletions
diff --git a/src/runtime/stack.go b/src/runtime/stack.go
index d1c80276a5..6f89cc142c 100644
--- a/src/runtime/stack.go
+++ b/src/runtime/stack.go
@@ -1357,7 +1357,13 @@ func (r *stackObjectRecord) gcdata() (uintptr, *byte) {
ptr := uintptr(unsafe.Pointer(r))
var mod *moduledata
for datap := &firstmoduledata; datap != nil; datap = datap.next {
- if datap.gofunc <= ptr && ptr < datap.end {
+ // The normal case: stackObjectRecord is in funcdata.
+ if datap.gofunc <= ptr && ptr < datap.epclntab {
+ mod = datap
+ break
+ }
+ // A special case: methodValueCallFrameObjs.
+ if datap.noptrbss <= ptr && ptr < datap.enoptrbss {
mod = datap
break
}
diff --git a/src/runtime/stkframe.go b/src/runtime/stkframe.go
index 485af1e75f..b63c0b4519 100644
--- a/src/runtime/stkframe.go
+++ b/src/runtime/stkframe.go
@@ -269,7 +269,7 @@ func stkobjinit() {
ptr := uintptr(unsafe.Pointer(&methodValueCallFrameObjs[0]))
var mod *moduledata
for datap := &firstmoduledata; datap != nil; datap = datap.next {
- if datap.gofunc <= ptr && ptr < datap.end {
+ if datap.noptrbss <= ptr && ptr < datap.enoptrbss {
mod = datap
break
}
diff --git a/src/runtime/symtab.go b/src/runtime/symtab.go
index c1643c1b39..0581655530 100644
--- a/src/runtime/symtab.go
+++ b/src/runtime/symtab.go
@@ -422,6 +422,7 @@ type moduledata struct {
types, etypes uintptr
rodata uintptr
gofunc uintptr // go.func.*
+ epclntab uintptr
textsectmap []textsect
typelinks []int32 // offsets from types