-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: make cpuid compatable with various architectures
- Added new files `abi/cpuid_amd64.go` and `abi/cpuid.go` - Implemented the `asmCpuid` function in the `abi` package - Added tests for the `cpuid` function in `abi/abi_test.go`
- Loading branch information
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
//go:build !amd64 || gccgo | ||
// +build !amd64 gccgo | ||
|
||
package abi | ||
|
||
func init() { | ||
cpuid = func(op uint32) (eax, ebx, ecx, edx uint32) { | ||
return 0, 0, 0, 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
//go:build amd64 && !gccgo | ||
// +build amd64,!gccgo | ||
|
||
package abi | ||
|
||
func asmCpuid(op uint32) (eax, ebx, ecx, edx uint32) | ||
|
||
func init() { | ||
cpuid = asmCpuid | ||
} |