-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runtime: SetCgoTraceback drops frames from tracebacks #29034
Comments
Change https://golang.org/cl/151917 mentions this issue: |
Change https://golang.org/cl/151918 mentions this issue: |
@mpx is this a regression from 1.11? |
No, I originally found the bug in 1.11. |
Without this fix CGO profiles can be subtly confusing/unhelpful since frames are lost. The bug and the fix are fairly trivial: var stk [32]uintptr
cgoOff := copy(stk[:], cStk)
n := copy(stk[cgoOff:], goStk)
// Missing fix: n += cgoOff
frames := stk[:n] I understand the release is getting close and the need to reduce change risk, but could this fix please be considered for 1.12? Is this bug/fix trivial enough to make it in? |
Yes, we should get this into 1.12. It doesn't need to block the beta release, though. |
go version devel +2140975ebd Thu Nov 29 22:23:02 2018 +0000 linux/amd64
Using
runtime.SetCgoTraceback
along withgithub.com/ianlancetaylor/cgosymbolizer
to record profiles that span Go and C code causes the bottom frames from tracebacks to be lost. Each additional C function on the stack causes another function frame to be lost from the bottom of the traceback.Example:
Running with
go build && ./example && go tool pprof -traces cpu.prof
gives the following:main.main
andruntime.main
have been lost from the bottom of the trace.The text was updated successfully, but these errors were encountered: