Changeset 99343 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Apr 7, 2023 12:44:56 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMMc.h
r99342 r99343 150 150 return iemRaiseSimdFpException(pVCpu); \ 151 151 return iemRaiseUndefinedOpcode(pVCpu); \ 152 } while (0)153 #define IEM_MC_MAYBE_RAISE_PCLMUL_RELATED_XCPT() \154 do { \155 if ( (pVCpu->cpum.GstCtx.cr0 & X86_CR0_EM) \156 || !(pVCpu->cpum.GstCtx.cr4 & X86_CR4_OSFXSR)) \157 return iemRaiseUndefinedOpcode(pVCpu); \158 if (pVCpu->cpum.GstCtx.cr0 & X86_CR0_TS) \159 return iemRaiseDeviceNotAvailable(pVCpu); \160 152 } while (0) 161 153
Note:
See TracChangeset
for help on using the changeset viewer.