]> Cypherpunks repositories - gostls13.git/commit
cmd/link: don't disable memory profiling when pprof.WriteHeapProfile is used
authorCherry Mui <cherryyz@google.com>
Wed, 3 Jul 2024 18:14:34 +0000 (14:14 -0400)
committerCherry Mui <cherryyz@google.com>
Wed, 3 Jul 2024 22:43:11 +0000 (22:43 +0000)
commit82c14346d89ec0eeca114f9ca0e88516b2cda454
tree17269064edfa1203db636c1937864841991315f7
parent7d19d508a994be9731e27b14b6ecc13ccf527138
cmd/link: don't disable memory profiling when pprof.WriteHeapProfile is used

We have an optimization that if the memory profile is not consumed
anywhere, we set the memory profiling rate to 0 to disable the
"background" low-rate profiling. We detect whether the memory
profile is used by checking whether the runtime.MemProfile function
is reachable at link time. Previously, all APIs that access the
memory profile go through runtime.MemProfile. But the code was
refactored in CL 572396, and now the legacy entry point
WriteHeapProfile uses pprof_memProfileInternal without going
through runtime.MemProfile. In fact, even with the recommended
runtime/pprof.Profile API (pprof.Lookup or pprof.Profiles),
runtime.MemProfile is only (happen to be) reachable through
countHeap.

Change the linker to check runtime.memProfileInternal instead,
which is on all code paths that retrieve the memory profile. Add
a test case for WriteHeapProfile, so we cover all entry points.

Fixes #68136.

Change-Id: I075c8d45c95c81825a1822f032e23107aea4303c
Reviewed-on: https://go-review.googlesource.com/c/go/+/596538
Reviewed-by: Than McIntosh <thanm@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
src/cmd/link/internal/ld/ld_test.go
src/cmd/link/internal/ld/lib.go
src/runtime/mprof.go
src/runtime/pprof/pprof.go