Skip to content
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: panic in fillstruct analyzer #39899

Closed
findleyr opened this issue Jun 28, 2020 · 2 comments
Closed

x/tools/gopls: panic in fillstruct analyzer #39899

findleyr opened this issue Jun 28, 2020 · 2 comments
Labels
FrozenDueToAge gopls Issues related to the Go language server, gopls. Tools This label describes issues relating to any tools in the x/tools repository.
Milestone

Comments

@findleyr
Copy link
Contributor

findleyr commented Jun 28, 2020

While experimenting with stress tests for gopls, I discovered that the new fillstruct analyzer causes a significant spike in CPU utilization: 5x more CPU in a test that just types randomly in github.com/pilosa/pilosa (a module for which gopls has historically had performance problems).

Almost all of this type is formatting the modified AST (printer.Fprint) to generate suggested edits.

I can provide more details if necessary, but it should be pretty easy to reproduce (just open pilosa and type). We probably should avoid computing this suggested fix on every keypress.

Oops, it appears that the reason fillstruct was implicated was that it was panicking, and the way I had structured my stress test led to other results hitting the cache, whereas fillstruct missed the cache due to the panic below.

We've since produces more generalized mayhem by updating the stress test to type more randomly...

Updated this issue to instead refer to the fillstruct panic.

Params: {"type":1,"message":"2020/06/29 15:52:02 analyses failed: analysis fillstruct for package github.com/pilosa/pilosa/v2 panicked: runtime error: invalid memory address or nil pointer dereference\n\tsnapshot=1\n\tpackage=\"github.com/pilosa/pilosa/v2 [github.com/pilosa/pilosa/v2.test]\"\n"}

CC @joshbaum @stamblerre

@gopherbot gopherbot added Tools This label describes issues relating to any tools in the x/tools repository. gopls Issues related to the Go language server, gopls. labels Jun 28, 2020
@gopherbot gopherbot added this to the Unreleased milestone Jun 28, 2020
@findleyr findleyr modified the milestones: Unreleased, gopls/v0.4.2 Jun 29, 2020
@findleyr findleyr changed the title x/tools/gopls: fillstruct analyzer causes 5x CPU utilization x/tools/gopls: panic in fillstruct analyzer Jun 29, 2020
@gopherbot
Copy link

Change https://golang.org/cl/240537 mentions this issue: internal/analysisinternal: prevent fillstruct panic on nil package

@gopherbot
Copy link

Change https://golang.org/cl/240538 mentions this issue: internal/analysisinternal: prevent fillstruct panic on nil package

gopherbot pushed a commit to golang/tools that referenced this issue Jun 30, 2020
The previous implementation missed a nil check which caused a panic
when the package of a type was nil.

Fixes: golang/go#39899
Change-Id: I2dfb50d6b79f52df367e093e5d857cd70b7cef27
Reviewed-on: https://go-review.googlesource.com/c/tools/+/240537
Run-TryBot: Josh Baum <joshbaum@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Rebecca Stambler <rstambler@golang.org>
(cherry picked from commit aa3d501)
Reviewed-on: https://go-review.googlesource.com/c/tools/+/240538
Run-TryBot: Rebecca Stambler <rstambler@golang.org>
Reviewed-by: Josh Baum <joshbaum@google.com>
@golang golang locked and limited conversation to collaborators Jun 30, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
FrozenDueToAge gopls Issues related to the Go language server, gopls. Tools This label describes issues relating to any tools in the x/tools repository.
Projects
None yet
Development

No branches or pull requests

2 participants