File: detect_ref.go

package info (click to toggle)
golang-github-klauspost-cpuid 1.2.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 504 kB
  • sloc: asm: 62; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 449 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) 2015 Klaus Post, released under MIT License. See LICENSE file.

// +build !amd64,!386 gccgo

package cpuid

func initCPU() {
	cpuid = func(op uint32) (eax, ebx, ecx, edx uint32) {
		return 0, 0, 0, 0
	}

	cpuidex = func(op, op2 uint32) (eax, ebx, ecx, edx uint32) {
		return 0, 0, 0, 0
	}

	xgetbv = func(index uint32) (eax, edx uint32) {
		return 0, 0
	}

	rdtscpAsm = func() (eax, ebx, ecx, edx uint32) {
		return 0, 0, 0, 0
	}
}