-
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: investigate closure capture issue #18300
Comments
I suspect this would require a finer-grained escape analysis. Contrast these:
There's only one declaration in the first example. Escape analysis works on declarations. So I guess escape analysis would have to be augmented to split declarations into unconnected subsets somehow and then treat each subset independently. |
Interesting... |
Does that change with SSA? I would expect escape analysis to apply to SSA variables/slots/whatever rather than source variables. |
No change here, sorry. |
@randall77 - Your example does not escape now. package main
func main() {
f := new(int)
f1(f)
f = new(int)
f2(f)
}
//go:noinline
func f1(i *int) {
_ = i
}
//go:noinline
func f2(i *int) {
_ = i
}
Has anything changed ?
|
No, this still doesn't work. You need to declare
Then you get
|
Still an issue with newescape. Should be fixed by porting escape analysis to SSA (#31501); maybe fixable separately, but probably not worth the complexity. |
This change reduces allocations:
https://go-review.googlesource.com/c/33765/4/src/encoding/json/encode.go
Why? Can the compiler be changed instead?
(See test file in same CL for details)
/cc @randall77 @mdempsky @aclements
The text was updated successfully, but these errors were encountered: