mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
18 lines
445 B
Go
18 lines
445 B
Go
// 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
|
|
}
|