1
0
mirror of https://github.com/golang/go synced 2024-10-04 23:21:20 -06:00
go/src/cmd/pprof
Ian Lance Taylor b4117995e3 cmd/pprof: use DWARF info to lookup unknown PC addresses
Test to follow in a separate CL that arranges for the runtime package to
store non-Go addresses in a CPU profile.

Change-Id: I33ce1d66b77340b1e62b54505fc9b1abcec108a9
Reviewed-on: https://go-review.googlesource.com/21055
Reviewed-by: Austin Clements <austin@google.com>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
2016-03-31 04:05:06 +00:00
..
internal cmd/pprof/internal: use and accept packed encoding for repeated fields 2016-03-28 22:55:20 +00:00
doc.go all: make copyright headers consistent with one space after period 2016-03-01 23:34:33 +00:00
pprof.go cmd/pprof: use DWARF info to lookup unknown PC addresses 2016-03-31 04:05:06 +00:00
README cmd/pprof: install as go tool pprof 2014-11-09 20:20:06 -05:00

The pprof in this directory is adapted from the pprof used inside Google
for C++, Java, and Go programs. Because it was developed for that broader
context, it is overgeneralized when used here for the specific use case
of profiling standard Go programs. However, we've left the abstractions
intact in order to share updates between this copy and Google's internal one.

Please do not take the level of abstraction in this program as an example
to follow in your own.