Changeset 97070 in vbox
- Timestamp:
- Oct 10, 2022 3:25:06 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 154020
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/cpum.h
r96979 r97070 1128 1128 /** Support PCLMULQDQ instruction. */ 1129 1129 uint32_t fPclMul : 1; 1130 /** Supports AES-NI (six AESxxx instructions). */ 1131 uint32_t fAesNi : 1; 1130 1132 1131 1133 /** Supports AMD 3DNow instructions. */ … … 1188 1190 /** Alignment padding / reserved for future use (96 bits total, plus 12 bytes 1189 1191 * prior to the bit fields -> total of 24 bytes) */ 1190 uint32_t fPadding0 : 3 1;1192 uint32_t fPadding0 : 30; 1191 1193 1192 1194 -
trunk/src/VBox/VMM/VMMAll/CPUMAllCpuId.cpp
r96652 r97070 1436 1436 pFeatures->fSse41 = RT_BOOL(pStd1Leaf->uEcx & X86_CPUID_FEATURE_ECX_SSE4_1); 1437 1437 pFeatures->fSse42 = RT_BOOL(pStd1Leaf->uEcx & X86_CPUID_FEATURE_ECX_SSE4_2); 1438 pFeatures->fAesNi = RT_BOOL(pStd1Leaf->uEcx & X86_CPUID_FEATURE_ECX_AES); 1438 1439 pFeatures->fAvx = RT_BOOL(pStd1Leaf->uEcx & X86_CPUID_FEATURE_ECX_AVX); 1439 1440 pFeatures->fTsc = RT_BOOL(pStd1Leaf->uEdx & X86_CPUID_FEATURE_EDX_TSC);
Note:
See TracChangeset
for help on using the changeset viewer.