-
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: unused variable escapes to the heap #27188
Comments
CC @dr2chase |
The algorithm we use is not that clever and just tracks flow by variable name. Since there's an easy workaround and big blockers for the proper fix, I would not commit to fixing this in 1.12. |
Do you have a list offhand of all the prerequisites for a new SSA-based escape analysis? |
I think (but now I am a little bit less sure, but lack the time right now to be more sure):
|
In addition to that, I think we need to understand what the benefit would be. It's going to be a lot of work, I only want to undertake it if we expect some commensurate benefits. |
One possible benefit, from talking to a guy at GopherCon (@cixel) who's interested in doing instrumentation for taint detection/analysis, is doing dataflow-informed instrumentation. Idea is that we'd transform to SSA, do whatever instrumentation we want (that might, in some cases, have effects on escape analysis -- and might also have effects on stack frames), then run escape analysis etc. This is still a little hand-wavy. He's looking the code for tsan and msan, and modifying things at the AST level, but having the ability to do flow analysis would be helpful (I wonder if it might not also help tsan and msan) |
What version of Go are you using (
go version
)?go version go1.10.3 windows/amd64
What operating system and processor architecture are you using (
go env
)?set GOARCH=amd64
set GOBIN=
set GOCACHE=...
set GOEXE=.exe
set GOHOSTARCH=amd64
set GOHOSTOS=windows
set GOOS=windows
set GOPATH=...
set GORACE=
set GOROOT=C:\Go
set GOTMPDIR=
set GOTOOLDIR=C:\Go\pkg\tool\windows_amd64
set GCCGO=gccgo
set CC=gcc
set CXX=g++
set CGO_ENABLED=1
set CGO_CFLAGS=-g -O2
set CGO_CPPFLAGS=
set CGO_CXXFLAGS=-g -O2
set CGO_FFLAGS=-g -O2
set CGO_LDFLAGS=-g -O2
set PKG_CONFIG=pkg-config
set GOGCCFLAGS=...
What did you do?
I compiled the following program using `go build -gcflags="-m -m" to check if any of the variables escaped to the heap.
https://play.golang.org/p/iZCz8oXRoi__h
What did you expect to see?
I expected only y to escape.
What did you see instead?
Instead, both x and y escaped to the heap.
In my opinion, only y should escape, because there is no way for x to leave the scope of this function. Alternatively, the assignment of the address of x to k should be entirely removed.
The text was updated successfully, but these errors were encountered: