|
| 1 | +// Copyright 2021 The Go Authors. All rights reserved. |
| 2 | +// Use of this source code is governed by a BSD-style |
| 3 | +// license that can be found in the LICENSE file. |
| 4 | + |
| 5 | +//go:build darwin && arm64 && !ios |
| 6 | +// +build darwin,arm64,!ios |
| 7 | + |
| 8 | +package cpu |
| 9 | + |
| 10 | +const ( |
| 11 | + commpageHasNeonFP16 = 0x00000008 // ARM v8.2 NEON FP16 supported |
| 12 | + commpageHasNeon = 0x00000100 // Advanced SIMD is supported |
| 13 | + commpageHasNeonHPFP = 0x00000200 // Advanced SIMD half-precision |
| 14 | + commpageHasVfp = 0x00000400 // VFP is supported |
| 15 | + commpageHasEvent = 0x00001000 // WFE/SVE and period event wakeup |
| 16 | + commpageHasARMv82FHM = 0x00004000 // Optional ARMv8.2 FMLAL/FMLSL instructions (required in ARMv8.4) |
| 17 | + commpageHasARMv8Crypto = 0x01000000 // Optional ARMv8 Crypto extensions |
| 18 | + commpageHasARMv81Atomics = 0x02000000 // ARMv8.1 Atomic instructions supported |
| 19 | + commpageHasARMv8Crc32 = 0x04000000 // Optional ARMv8 crc32 instructions (required in ARMv8.1) |
| 20 | + commpageHasARMv82SHA512 = 0x80000000 // Optional ARMv8.2 SHA512 instructions |
| 21 | + commpageHasARMv82SHA3 = 0x0000000100000000 // Optional ARMv8.2 SHA3 instructions |
| 22 | +) |
| 23 | + |
| 24 | +func doinit() { |
| 25 | + ARM64.HasFP = darwinCheckFeatureEnabled(commpageHasVfp) |
| 26 | + ARM64.HasASIMD = darwinCheckFeatureEnabled(commpageHasNeon) |
| 27 | + ARM64.HasCRC32 = darwinCheckFeatureEnabled(commpageHasARMv8Crc32) |
| 28 | + ARM64.HasATOMICS = darwinCheckFeatureEnabled(commpageHasARMv81Atomics) |
| 29 | + ARM64.HasFPHP = darwinCheckFeatureEnabled(commpageHasNeonFP16) |
| 30 | + ARM64.HasASIMDHP = darwinCheckFeatureEnabled(commpageHasNeonHPFP) |
| 31 | + ARM64.HasSHA3 = darwinCheckFeatureEnabled(commpageHasARMv82SHA3) |
| 32 | + ARM64.HasSHA512 = darwinCheckFeatureEnabled(commpageHasARMv82SHA512) |
| 33 | + ARM64.HasASIMDFHM = darwinCheckFeatureEnabled(commpageHasARMv82FHM) |
| 34 | + ARM64.HasSVE = darwinCheckFeatureEnabled(commpageHasEvent) |
| 35 | + |
| 36 | + // There are no hw.optional sysctl values for the below features on Mac OS 11.0 |
| 37 | + // to detect their supported state dynamically. Assume the CPU features that |
| 38 | + // Apple Silicon M1 supports to be available as a minimal set of features |
| 39 | + // to all Go programs running on darwin/arm64. |
| 40 | + ARM64.HasEVTSTRM = true |
| 41 | + ARM64.HasAES = true |
| 42 | + ARM64.HasPMULL = true |
| 43 | + ARM64.HasSHA1 = true |
| 44 | + ARM64.HasSHA2 = true |
| 45 | + ARM64.HasCPUID = true |
| 46 | + ARM64.HasASIMDRDM = true |
| 47 | + ARM64.HasJSCVT = true |
| 48 | + ARM64.HasLRCPC = true |
| 49 | + ARM64.HasDCPOP = true |
| 50 | + ARM64.HasSM3 = true |
| 51 | + ARM64.HasSM4 = true |
| 52 | + ARM64.HasASIMDDP = true |
| 53 | +} |
| 54 | + |
| 55 | +func darwinCheckFeatureEnabled(feature_vec uint64) bool |
0 commit comments