-
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: go build -race fails with label .inlret7 already defined
#17449
Comments
label .inlret7 already defined
label .inlret7 already defined
Looks like race instrumentation duplicates the labels created for function inlining. Confirmed with following. Assuming pwd is
I also dumped the function before and after race instrumentation. Side by side diff of generated codes is at https://www.diffchecker.com/68vuYuaq. Notice that label (and corresponding GOTO statement) Looking into how to prevent this. |
Change-Id: I1fb8759057f6ef1c97b55330a1bc833e20957cc5
Okay, so code duplicated by race instrumentation is more than just inline-label. Here is a human readable form of dumped code after race instrumentation. Notice that code between This happens because in I have a solution at JayNakrani@7b1b24d. It passes all the tests and compiles this code successfully, but I am not sure if that's good enough. (Side note: Another file that shows |
Adding some folks who last modified that part of racewalk.go @ianlancetaylor @dr2chase : Can you confirm if the potential solution is good enough to be sent for review? Other than running tests and manual inspection of generated code, how can I tell if the code is working correctly? |
/cc @randall77 |
There's no need for pre-review of a change review. We are used to reviewing in Gerrit, so it will be easier for us if you simply send the change following the guidelines at https://golang.org/doc/contribute.html . Your patch should include a new test. |
Sent it for review with test : https://go-review.googlesource.com/#/c/31317/ |
CL https://golang.org/cl/31317 mentions this issue. |
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (
go version
)?go version go1.7.1 linux/amd64
What operating system and processor architecture are you using (
go env
)?GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/mnt/repos/server/go:/home/adamf/go"
GORACE=""
GOROOT="/usr/local/go"
GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64"
CC="gcc"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build433458907=/tmp/go-build -gno-record-gcc-switches"
CXX="g++"
CGO_ENABLED="1"
What did you do?
cat /tmp/master/compiler_bug.go
go build -race /tmp/master/compiler_bug.go
What did you expect to see?
I expected it to successfully build this program.
What did you see instead?
Restructuring the code in various ways makes this go away. For instance, rewriting the for loop as
will make the compiler error go away. Also, disabling the race detector or trying with go 1.6 will make this go away. Similarly, "inlining" the Len() call will make this go away.
The text was updated successfully, but these errors were encountered: