mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
445 B
17 lines
445 B
// Copyright (c) 2015 Klaus Post, released under MIT License. See LICENSE file. |
|
|
|
// +build 386,!gccgo amd64,!gccgo |
|
|
|
package cpuid |
|
|
|
func asmCpuid(op uint32) (eax, ebx, ecx, edx uint32) |
|
func asmCpuidex(op, op2 uint32) (eax, ebx, ecx, edx uint32) |
|
func asmXgetbv(index uint32) (eax, edx uint32) |
|
func asmRdtscpAsm() (eax, ebx, ecx, edx uint32) |
|
|
|
func initCPU() { |
|
cpuid = asmCpuid |
|
cpuidex = asmCpuidex |
|
xgetbv = asmXgetbv |
|
rdtscpAsm = asmRdtscpAsm |
|
}
|
|
|