mirror of
https://github.com/golang/go
synced 2024-11-19 13:14:42 -07:00
6661cf6dfd
This change replaces the current runtime capabilities check for ppc64x with the new internal/cpu package. It also adds support for the new POWER9 ISA and capabilities. Updates #15403 Change-Id: I5b64a79e782f8da3603e5529600434f602986292 Reviewed-on: https://go-review.googlesource.com/53830 Reviewed-by: Martin Möhrmann <moehrmann@google.com>
28 lines
638 B
Go
28 lines
638 B
Go
// Copyright 2016 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 ppc64 ppc64le
|
|
|
|
package runtime
|
|
|
|
// For go:linkname
|
|
import _ "unsafe"
|
|
|
|
// ppc64x doesn't have a 'cpuid' instruction equivalent and relies on
|
|
// HWCAP/HWCAP2 bits for hardware capabilities.
|
|
|
|
//go:linkname cpu_hwcap internal/cpu.ppc64x_hwcap
|
|
//go:linkname cpu_hwcap2 internal/cpu.ppc64x_hwcap2
|
|
var cpu_hwcap uint
|
|
var cpu_hwcap2 uint
|
|
|
|
func archauxv(tag, val uintptr) {
|
|
switch tag {
|
|
case _AT_HWCAP:
|
|
cpu_hwcap = uint(val)
|
|
case _AT_HWCAP2:
|
|
cpu_hwcap2 = uint(val)
|
|
}
|
|
}
|