mirror of
https://github.com/golang/sys.git
synced 2026-01-29 07:02:06 +03:00
The GODEBUG environment variable can be used to disable usage of specific processor features of Go programs that use the sys/cpu package. This is useful for testing and benchmarking different code paths that are guarded by sys/cpu variable checks. Use of processor features can not be enabled through GODEBUG. To disable usage of AVX and SSE41 cpu features on GOARCH amd64 use: GODEBUG=cpu.avx=off,cpu.sse41=off The special "all" option can be used to disable all options: GODEBUG=all=off This aligns the support of GODEBUG for sys/cpu with existing support for GODEBUG in the Go standard library package internal/cpu. Fixes golang/go#33963 Change-Id: I618b71af397bf06c57a49b2a300d032a16d05664 Reviewed-on: https://go-review.googlesource.com/c/sys/+/245237 Run-TryBot: Martin Möhrmann <moehrmann@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Martin Möhrmann <moehrmann@google.com> Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
33 lines
580 B
Go
33 lines
580 B
Go
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build aix
|
|
|
|
package cpu
|
|
|
|
const (
|
|
// getsystemcfg constants
|
|
_SC_IMPL = 2
|
|
_IMPL_POWER8 = 0x10000
|
|
_IMPL_POWER9 = 0x20000
|
|
)
|
|
|
|
func archInit() {
|
|
impl := getsystemcfg(_SC_IMPL)
|
|
if impl&_IMPL_POWER8 != 0 {
|
|
PPC64.IsPOWER8 = true
|
|
}
|
|
if impl&_IMPL_POWER9 != 0 {
|
|
PPC64.IsPOWER9 = true
|
|
}
|
|
|
|
Initialized = true
|
|
}
|
|
|
|
func getsystemcfg(label int) (n uint64) {
|
|
r0, _ := callgetsystemcfg(label)
|
|
n = uint64(r0)
|
|
return
|
|
}
|