-
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: go1.8.rc1 GC crash with MakeFunc #18635
Comments
\cc @crawshaw |
Any help here would be great. |
I believe @aclements did some recent work here (https://golang.org/cl/31138). |
@JakeMont, thanks for the easy repro. I'm looking into this now. |
I believe what's going on is that the reflect.makeFuncImpl ctxt is getting garbage collected while the call through it is still on the stack. The memory gets reused and then when the stack scan tries to extract argument information from the ctxt, it's reading from the overwritten memory. The ctxt can get GC'd because reflect.makeFuncStub (written in assembly) stores ctxt in its frame, but claims it has no local pointers, and then calls reflect.callReflect, which stops using the ctxt argument before the actual call, so the compiler marks it as not live. |
CL https://golang.org/cl/35151 mentions this issue. |
What version of Go are you using (
go version
)?go version go1.8rc1 linux/amd64
What operating system and processor architecture are you using (
go env
)?What did you do?
We very much need the improvements in go1.8, and so have been building and testing with the go1.8rc1. I was seeing panics during "copystack". After considerable effort I was able to reduce the problem code to this somewhat contrived example:
This actually produces the same panic, but it happens during gc. On my machine it may take anywhere from 2 to 10000 "iterations" of
Max
, but it always crashes within seconds. Here is the output in a run where it crashed after 1 iteration:As with the stack crash, the key seems to be:
BTW - go1.8 performance is amazing - Thanks!
The text was updated successfully, but these errors were encountered: