Changeset 99339 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Apr 7, 2023 12:37:28 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMMc.h
r99338 r99339 114 114 } while (0) 115 115 #define IEM_MC_MAYBE_RAISE_SSE42_RELATED_XCPT() \ 116 do { \117 if ( (pVCpu->cpum.GstCtx.cr0 & X86_CR0_EM) \118 || !(pVCpu->cpum.GstCtx.cr4 & X86_CR4_OSFXSR)) \119 return iemRaiseUndefinedOpcode(pVCpu); \120 if (pVCpu->cpum.GstCtx.cr0 & X86_CR0_TS) \121 return iemRaiseDeviceNotAvailable(pVCpu); \122 } while (0)123 #define IEM_MC_MAYBE_RAISE_SSE41_RELATED_XCPT() \124 116 do { \ 125 117 if ( (pVCpu->cpum.GstCtx.cr0 & X86_CR0_EM) \
Note:
See TracChangeset
for help on using the changeset viewer.