// Copyright 2018 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.packagecpuconstcacheLineSize=32// HWCAP/HWCAP2 bits.// These are specific to Linux.const(hwcap_SWP=1<<0hwcap_HALF=1<<1hwcap_THUMB=1<<2hwcap_26BIT=1<<3hwcap_FAST_MULT=1<<4hwcap_FPA=1<<5hwcap_VFP=1<<6hwcap_EDSP=1<<7hwcap_JAVA=1<<8hwcap_IWMMXT=1<<9hwcap_CRUNCH=1<<10hwcap_THUMBEE=1<<11hwcap_NEON=1<<12hwcap_VFPv3=1<<13hwcap_VFPv3D16=1<<14hwcap_TLS=1<<15hwcap_VFPv4=1<<16hwcap_IDIVA=1<<17hwcap_IDIVT=1<<18hwcap_VFPD32=1<<19hwcap_LPAE=1<<20hwcap_EVTSTRM=1<<21hwcap2_AES=1<<0hwcap2_PMULL=1<<1hwcap2_SHA1=1<<2hwcap2_SHA2=1<<3hwcap2_CRC32=1<<4)