Add missed AVX512VL (128 and 256 bit vector length) extension

identification bit.

Sponsored by:	The FreeBSD Foundation
MFC after:	3 days
This commit is contained in:
Konstantin Belousov 2017-12-23 21:32:50 +00:00
parent a92970d8ae
commit 6332b14887
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=327118
2 changed files with 2 additions and 0 deletions

View File

@ -409,6 +409,7 @@
#define CPUID_STDEXT_AVX512CD 0x10000000
#define CPUID_STDEXT_SHA 0x20000000
#define CPUID_STDEXT_AVX512BW 0x40000000
#define CPUID_STDEXT_AVX512VL 0x80000000
/*
* CPUID instruction 7 Structured Extended Features, leaf 0 ecx info

View File

@ -963,6 +963,7 @@ printcpuinfo(void)
"\035AVX512CD"
"\036SHA"
"\037AVX512BW"
"\040AVX512VL"
);
}