-
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
x/tools/gopls: buildssa analyzer is slow on github.com/aws/aws-sdk-go-v2/service/ec2 #61506
Comments
The cost of buildssa is primarily:
I think it should be possible to alter buildssa to compute a more precise set of necessary reachable things (even if that should cost an extra pass over the syntax) and then make go/ssa build only these things (possibly requiring a new internal API function, at least temporarily). Longer term, we should audit go/ssa through the lens of separate analysis and identify all the places where it deals with cross-package dependencies so that we can reduce to a minimum the amount of stuff from other packages (direct and indirect imports) that needs to be created before building. |
Change https://go.dev/cl/512136 mentions this issue: |
Change https://go.dev/cl/511715 mentions this issue: |
Since we can't fix this until the equivalent change is ported to staticcheck, we're not going to land this for the next release. Moving to subsequent milestone. |
This unfortunately seems unlikely to get fixed for v0.14; bumping to v0.15.0. |
Change https://go.dev/cl/537478 mentions this issue: |
I've made a number of changes to go/ssa to achieve this goal, that I forgot to link to this issue. Here they are:
|
This session involves a gopls that has been modified to enable nilness.Analyzer, which itself has been modified to declare a dummy Fact that it doesn't import or export, so as to cause nilness (and thus buildssa) to be run on all dependencies. The gopls analysis driver has also been instrumented to display the wall time of each buildssa unit. Observe how expensive SSA construction is for the ec2 package, which has an extraordinary number of methods.
(This is a minimization of a performance problem reported by a user running staticcheck (whose buildir is almost identical to buildssa) on github.com/hashiform/terraform-provider-aws/internal/provider.) See #61178.
The task of this issue is to bring down the cost of buildssa so that it is proportional to the size of the package and the exportdata and factdata sizes of its direct imports, not to its transitive size. go/ssa eagerly constructs methods for every type reachable via reflection, which seems quite unnecessary.
@findleyr
The text was updated successfully, but these errors were encountered: