runtime/pprof: map allocation runtime frames no longer hidden in 1.24 #71174
Labels
compiler/runtime
Issues related to the Go compiler and/or runtime.
NeedsFix
The path to resolution is known, but the work has not been done.
release-blocker
Milestone
runtime/pprof hides "runtime" frames in heap profiles, so allocations in maps appear at the map assignment location in the calling code, but not in
runtime.mapassign
itself.As you can see,
runtime/pprof
is defining "runtime frames" as symbols starting withruntime.
, but much of the new map implementation is ininternal/runtime/maps.
, so frames inside the map implementation are still appearing.The text was updated successfully, but these errors were encountered: