Changeset 104183 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Apr 5, 2024 12:55:25 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMMc.h
r104177 r104183 187 187 return iemRaiseUndefinedOpcode(pVCpu); \ 188 188 } \ 189 } while (0)190 #define IEM_MC_RAISE_SSE_AVX_SIMD_FP_OR_UD_XCPT() \191 do { \192 if (pVCpu->cpum.GstCtx.cr4 & X86_CR4_OSXMMEEXCPT)\193 return iemRaiseSimdFpException(pVCpu); \194 return iemRaiseUndefinedOpcode(pVCpu); \195 189 } while (0) 196 190 … … 3161 3155 #define IEM_MC_IF_FCW_IM() \ 3162 3156 if (pVCpu->cpum.GstCtx.XState.x87.FCW & X86_FCW_IM) { 3163 #define IEM_MC_IF_MXCSR_XCPT_PENDING() \3164 if (( ~((pVCpu->cpum.GstCtx.XState.x87.MXCSR & X86_MXCSR_XCPT_MASK) >> X86_MXCSR_XCPT_MASK_SHIFT) \3165 & (pVCpu->cpum.GstCtx.XState.x87.MXCSR & X86_MXCSR_XCPT_FLAGS)) != 0) {3166 3157 3167 3158 #define IEM_MC_ELSE() } else {
Note:
See TracChangeset
for help on using the changeset viewer.