-
Notifications
You must be signed in to change notification settings - Fork 18.1k
proposal: spec: consider more strict "declared and not used" check (go/vet or even spec) #20802
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
Comments
Had to pick either spec or cmd/vet for a prefix; picked spec but can still consider vet here. |
It's surprisingly tricky to detect "weakly used" variables in the general case. In the simple example above, where x is a variable of struct type T and its field f field is not a reference, it suffices to prove that all references to x occur "on the left side" of an assignment. However, this simple check is inadequate for selections that are indirect. If the type of x.f is a pointer or reference, then the sequence of assignments
A sound check strong enough to catch the bug that motivated this proposal would require SSA form and a simple escape analysis, which is more complex than belongs in the language spec, but possibly appropriate for vet. |
Would it be possible to make this a compiler error without including the restriction in the spec? Or is that generally avoided? (This is assuming that when a spec change was mentioned, it would be the compiler enforcing it, not |
I've sketched a simpler heuristic for vet in https://go-review.googlesource.com/c/47670. @mvdan Unless a compiler accepts exactly the set of programs the spec requires it to accept, it is implementing a dialect of the language. Dialects cause problems for users because programs that work with one compiler or analysis tool don't work with another. |
CL https://golang.org/cl/47670 mentions this issue. |
We can't detect all possible bugs, but if we only count |
The following code
compiles without errors even though it is obviously incorrect: Inside the block of the
if
statement, the:=
operator should have been=
instead. The compiler doesn't complain because the assignment tox.f
counts as use ofx
.Arguably, assignments to fields/elements of composite type variables shouldn't be counted as uses. Their effect is lost if the variable itself is never used and they may hide the fact that the variable is not used.
(This was the underlying cause for #20789.)
The text was updated successfully, but these errors were encountered: