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

Enable linters: deadcode, varcheck, unused #37

Merged
merged 2 commits into from
Jun 15, 2019

Conversation

mmcloughlin
Copy link
Contributor

This diff enables linters that check for dead code and unused variables.

Updates #26

Copy link
Contributor Author

@mmcloughlin mmcloughlin left a 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.

@@ -262,43 +261,6 @@ func testImportExport(t *testing.T, v sidhVec) {
}
}

func testPrivateKeyBelowMax(t testing.TB, id uint8) {
Copy link
Contributor Author

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?

Copy link
Contributor

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

@@ -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
Copy link
Contributor Author

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.

Copy link
Contributor

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?

Copy link
Contributor

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:

  1. Leave it as it is.
  2. Have a code internally which calculates those offsets.
  3. 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.

@kriskwiatkowski kriskwiatkowski merged commit caf23a7 into master Jun 15, 2019
@kriskwiatkowski kriskwiatkowski deleted the lint-enable-deadcode branch June 15, 2019 14:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants