Changeset 99814 in vbox for trunk/src/VBox/VMM/VMMAll/IEMAllInstructionsOneByte.cpp.h
- Timestamp:
- May 16, 2023 4:32:30 PM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllInstructionsOneByte.cpp.h
r99685 r99814 7167 7167 { 7168 7168 IEMOP_MNEMONIC(vex3_prefix, "vex3"); 7169 if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->f Avx)7169 if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fVex) 7170 7170 { 7171 7171 /* Note! The real mode, v8086 mode and invalid prefix checks are done once … … 7214 7214 } 7215 7215 } 7216 Log(("VEX3: AVX support disabled!\n"));7216 Log(("VEX3: VEX support disabled!\n")); 7217 7217 return IEMOP_RAISE_INVALID_OPCODE(); 7218 7218 } … … 7239 7239 { 7240 7240 IEMOP_MNEMONIC(vex2_prefix, "vex2"); 7241 if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->f Avx)7241 if (IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fVex) 7242 7242 { 7243 7243 /* Note! The real mode, v8086 mode and invalid prefix checks are done once … … 7259 7259 7260 7260 /** @todo does intel completely decode the sequence with SIB/disp before \#UD? */ 7261 Log(("VEX2: AVX support disabled!\n"));7261 Log(("VEX2: VEX support disabled!\n")); 7262 7262 return IEMOP_RAISE_INVALID_OPCODE(); 7263 7263 }
Note:
See TracChangeset
for help on using the changeset viewer.