-
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
cmd/compile: duplicate anonymous interface declarations cause non-determinism #27013
Comments
Bisects to ca2f85f (cmd/compile: add indexed export format). I edited the title to reflect my best understanding but I might be a little wrong. cc @mdempsky, @griesemer |
That commit (ca2f85f) adds |
Change https://golang.org/cl/129515 mentions this issue: |
https://golang.org/cl/129515 is my proposed fix (thanks @gopherbot) |
This is a regression and reproducible builds are an important compiler feature. I think this should go into 1.11 if the fix is low risk. |
(I've moved this to 1.11 - |
I think including the fix in 1.11 makes sense. @ComputerDruid 's patch seems safe and minimally invasive to me. |
Change https://golang.org/cl/129680 mentions this issue: |
Duplicated anonymous interfaces caused nondeterministic build. The fix is CL 129515. This CL adds a test. Updates #27013. Change-Id: I6b7e1bbfc943c22e8e6f32c145f7aebb567cef15 Reviewed-on: https://go-review.googlesource.com/129680 Run-TryBot: Cherry Zhang <cherryyz@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
What version of Go are you using (
go version
)?go version go1.11rc1 linux/amd64
Does this issue reproduce with the latest release?
Doesn't seem to happen in go 1.10, but it does occur in 1.11rc1.
What operating system and processor architecture are you using (
go env
)?Used
docker run -it golang:stretch-rc
to grab a clean repro env.GOARCH="amd64"
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
What did you do?
The go compiler produces a non-deterministic small.a output when run on the following minimized test program:
To demonstrate:
What did you expect to see?
The go compiler produces the same output each time it is run, since it receives the same inputs.
The little script above should only see one hash from the 20
small.a
files.What did you see instead?
The go compiler produces nondeterministic output
Notes
I did a fair amount of digging into the problem because it piqued my interest and have a patch that I believe fixes it. I'll upload that shortly.
The problem seems to be in the generated DWARF debug info containing a line number for the return variable "~r0" for the generated conversion function. It seems to non-deterministically be one of any of the lines that the conversion happens on.
The text was updated successfully, but these errors were encountered: