-
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: not inlined closures can't inline inner closures #41988
Comments
The main problem here is that |
The issue here is we don't currently support inlining functions that contain closures. We'd first need to inline Escape analysis is a red herring here. Escape analysis runs after inlining and doesn't affect inlining decisions. |
/cc @danscales , who's working on making functions that contain closures inlinable |
Yes, I will look at this bug, after I submit the base change that allows inlining of functions with closures. |
Still reproduces on 1.17:
|
Thank you, will take a look if any improvement is possible for 1.18. |
Looks like it's fixed on Go 1.23 - there is now only two allocations for variable and for function literal. |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes.
What did you do?
Wrote code:
What did you expect to see?
getInt
is inlined intoouter
.outer
escapes to the heap.What did you see instead?
getInt
isn't inlined intoouter
. Bothouter
andgetInt
escape to the heap.The text was updated successfully, but these errors were encountered: