]> Cypherpunks repositories - gostls13.git/commit
[release-branch.go1.25] cmd/compile: export to DWARF types only referenced through...
authorAlessandro Arzilli <alessandro.arzilli@gmail.com>
Mon, 18 Aug 2025 13:49:50 +0000 (15:49 +0200)
committerGopher Robot <gobot@golang.org>
Tue, 16 Sep 2025 17:04:05 +0000 (10:04 -0700)
commitbe6113216595d1605ebb8fe09353e2d40aeb4b15
tree150ae2bc42918879da729552c420344ac5d397f2
parenta86792b16938bd5f20d56e815556bbc135371fb5
[release-branch.go1.25] cmd/compile: export to DWARF types only referenced through interfaces

Delve and viewcore use DWARF type DIEs to display and explore the
runtime value of interface variables.
This has always been slightly problematic since the runtime type of an
interface variable might only be reachable through interfaces and thus
be missing from debug_info (see issue #46670).
Prior to commit f4de2ecf this was not a severe problem since a struct
literal caused the allocation of a struct into an autotemp variable,
which was then used by dwarfgen to make sure that the DIE for that type
would be generated.
After f4de2ecf such autotemps are no longer being generated and
go1.25.0 ends up having many more instances of interfaces with
unreadable runtime type  (https://github.com/go-delve/delve/issues/4080).
This commit fixes this problem by scanning the relocation of the
function symbol and adding to the function's DIE symbol references to
all types used by the function to create interfaces.

Fixes go-delve/delve#4080
Updates #46670
Fixes #75255

Change-Id: I3e9db1c0d1662905373239816a72604ac533b09e
Reviewed-on: https://go-review.googlesource.com/c/go/+/696955
Reviewed-by: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Michael Pratt <mpratt@google.com>
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Than McIntosh <thanm@golang.org>
Reviewed-by: Florian Lehner <lehner.florian86@gmail.com>
(cherry picked from commit 80038586ed2814a03dcb95cd6f130766f8d803c3)
Reviewed-on: https://go-review.googlesource.com/c/go/+/704335
Reviewed-by: Alessandro Arzilli <alessandro.arzilli@gmail.com>
Auto-Submit: Michael Knyszek <mknyszek@google.com>
src/cmd/compile/internal/dwarfgen/dwarf.go