-
Notifications
You must be signed in to change notification settings - Fork 157
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
Enable linters: deadcode, varcheck, unused #37
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I may be missing context. If some of this code was supposed to be used, let me know.
dh/sidh/sidh_test.go
Outdated
@@ -262,43 +261,6 @@ func testImportExport(t *testing.T, v sidhVec) { | |||
} | |||
} | |||
|
|||
func testPrivateKeyBelowMax(t testing.TB, id uint8) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this supposed to be used somewhere?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, it's needed. but it was disabled
#38
ecc/p384/arith_amd64.go
Outdated
@@ -5,3 +5,6 @@ package p384 | |||
import "golang.org/x/sys/cpu" | |||
|
|||
var hasBMI2 = cpu.X86.HasBMI2 | |||
|
|||
// Avoid deadcode lint error since this is only accessed from assembly. | |||
var _ = hasBMI2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a bit ugly, but I personally think it's worth it to catch genuine instances of dead code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One solution for that is to access the cpu.X86.HasBMI2
variable directly in the assembly file. Do you know the propoer syntax to do it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As HasBMI2 is a field in a struct, seems to me you need to do something like:
golang·org∕x∕sys∕cpu·X86+const_offsetX86HasBMI2(SB)
where const_offsetX86HasBMI2 is const offsetX86HasBMI2 = unsafe.Offsetof(cpu.X86.HasBMI2)
so you need to store the offset somewhere anyway. Using hardcoded value for offset is out of scope for obvious reasons.
Assuming I'm not wrong there are 3 solutions:
- Leave it as it is.
- Have a code internally which calculates those offsets.
- Implement calculation of those offsets in the golang.org/x/sys/cpu
Ideally I would like to have 3 (or even better if golang itself simply exports those values). If not then 2, but that's not a short term solution. So I guess we are left with 1.
fba37e9
to
212e5af
Compare
This diff enables linters that check for dead code and unused variables.
Updates #26