-
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/internal/types: lazy/incremental type expansion #25056
Labels
Milestone
Comments
Optimistically tagging for 1.11, but freeze is one week away, so this will probably slip. |
Change https://golang.org/cl/109138 mentions this issue: |
gopherbot
pushed a commit
that referenced
this issue
Apr 24, 2018
This reduces the API surface of Type slightly (for #25056), but also makes it more consistent with the reflect and go/types APIs. Passes toolstash-check. Change-Id: Ief9a8eb461ae6e88895f347e2a1b7b8a62423222 Reviewed-on: https://go-review.googlesource.com/109138 Run-TryBot: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Not happening for 1.11. |
Also not happening for 1.12. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The compiler now supports an indexed data format for package export data that enables efficient random-access of package data. We already use this to implement lazy expansion of declarations and inline bodies, but we still currently fully expand types whenever they're referenced. I expect in larger projects that a lot of deeply nested details are never needed and we could avoid reading that data into memory.
I think the steps are largely:
Type.expand
method that checks for Etype==TSTUB and calls the expander function.expand()
at the top of every(?) public Type method.Another useful (but non-critical) step would be to review the Type API and try to prune/simplify unnecessary methods. This would reduce how many places we need to instrument with
expand
calls.The text was updated successfully, but these errors were encountered: