Add standard extended feature bit 6 from the Intel SDM rev. 57, which

indicates that data-pointer in the saved x87 FPU state is only updated
on FPU exceptions.

Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
This commit is contained in:
Konstantin Belousov 2015-12-29 22:14:21 +00:00
parent b8466276a1
commit 6b247f858e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=292890
2 changed files with 3 additions and 0 deletions

View file

@ -335,6 +335,7 @@
#define CPUID_STDEXT_BMI1 0x00000008
#define CPUID_STDEXT_HLE 0x00000010
#define CPUID_STDEXT_AVX2 0x00000020
#define CPUID_STDEXT_FDP_EXC 0x00000040
#define CPUID_STDEXT_SMEP 0x00000080
#define CPUID_STDEXT_BMI2 0x00000100
#define CPUID_STDEXT_ERMS 0x00000200

View file

@ -932,6 +932,8 @@ printcpuinfo(void)
"\005HLE"
/* Advanced Vector Instructions 2 */
"\006AVX2"
/* FDP_EXCPTN_ONLY */
"\007FDPEXC"
/* Supervisor Mode Execution Prot. */
"\010SMEP"
/* Bit Manipulation Instructions */