-
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: Caller returns wrong file and line if called in a deferred function during panic #26320
Comments
Kindly paging @aclements @davidlazar |
Would:
Make any more sense? That's the implementation of |
@randall77 That looks better in that there is no mention of the assembly files, but it is still not the correct behaviour the way I see it. I think there shouldn't be any difference between the |
Change https://golang.org/cl/152537 mentions this issue: |
Work involved in getting a stack trace is divided between runtime.Callers and runtime.CallersFrames. Before this CL, runtime.Callers returns a pc per runtime frame. runtime.CallersFrames is responsible for expanding a runtime frame into potentially multiple user frames. After this CL, runtime.Callers returns a pc per user frame. runtime.CallersFrames just maps those to user frame info. Entries in the result of runtime.Callers are now pcs of the calls (or of the inline marks), not of the instruction just after the call. Fixes #29007 Fixes #28640 Update #26320 Change-Id: I1c9567596ff73dc73271311005097a9188c3406f Reviewed-on: https://go-review.googlesource.com/c/152537 Run-TryBot: Keith Randall <khr@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: David Chase <drchase@google.com>
The assembly function is now no longer reported. We now report the
This currently prints:
I think the crux if the issue is that when doing the But maybe for
I'm not sure exactly what the mechanism for that would be - we'd need to skip frames between the gopanic and the frame of the current defer (which might recover, so still might be live). And I can't wrap my head around what we'd want for recursive panics (panics in defers that were being run due to a panic). FYI, if I comment out the panic line, we get the following output:
which does argue for hiding the intervening functions in the traceback. In any case, punting to 1.14. |
In my opinion the current output is correct. During a panic, a deferred function should see all the functions on the stack, not just the ones at which the defer occurs. |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Tested on b001ffb.
What did you do?
https://play.golang.org/p/mqVHDikFu8D
What did you expect to see?
What did you see instead?
This bug was found in the discussion of #26275.
The text was updated successfully, but these errors were encountered: