Changeset 66327 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Mar 29, 2017 10:12:02 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 114260
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUMR3CpuId.cpp
r66215 r66327 1635 1635 pFeatures->fMonitorMWait = RT_BOOL(pStd1Leaf->uEcx & X86_CPUID_FEATURE_ECX_MONITOR); 1636 1636 pFeatures->fMovCmpXchg16b = RT_BOOL(pStd1Leaf->uEcx & X86_CPUID_FEATURE_ECX_CX16); 1637 pFeatures->fClFlush = RT_BOOL(pStd1Leaf->uEdx & X86_CPUID_FEATURE_EDX_CLFSH); 1637 1638 1638 1639 /* Structured extended features. */ … … 1642 1643 pFeatures->fAvx2 = RT_BOOL(pSxfLeaf0->uEcx & X86_CPUID_STEXT_FEATURE_EBX_AVX2); 1643 1644 pFeatures->fAvx512Foundation = RT_BOOL(pSxfLeaf0->uEcx & X86_CPUID_STEXT_FEATURE_EBX_AVX512F); 1645 pFeatures->fClFlushOpt = RT_BOOL(pSxfLeaf0->uEcx & X86_CPUID_STEXT_FEATURE_EBX_CLFLUSHOPT); 1644 1646 } 1645 1647
Note:
See TracChangeset
for help on using the changeset viewer.