Changeset 99333 in vbox for trunk/src/VBox/VMM/include/IEMMc.h
- Timestamp:
- Apr 7, 2023 12:30:43 AM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMMc.h
r99332 r99333 206 206 if (pVCpu->cpum.GstCtx.cr4 & X86_CR4_OSXMMEEXCPT)\ 207 207 return iemRaiseSimdFpException(pVCpu); \ 208 else \ 209 return iemRaiseUndefinedOpcode(pVCpu); \ 208 return iemRaiseUndefinedOpcode(pVCpu); \ 210 209 } \ 211 210 } while (0) … … 214 213 if (pVCpu->cpum.GstCtx.cr4 & X86_CR4_OSXMMEEXCPT)\ 215 214 return iemRaiseSimdFpException(pVCpu); \ 216 else \ 217 return iemRaiseUndefinedOpcode(pVCpu); \ 215 return iemRaiseUndefinedOpcode(pVCpu); \ 218 216 } while (0) 219 217 #define IEM_MC_MAYBE_RAISE_PCLMUL_RELATED_XCPT() \ 220 218 do { \ 221 219 if ( (pVCpu->cpum.GstCtx.cr0 & X86_CR0_EM) \ 222 || !(pVCpu->cpum.GstCtx.cr4 & X86_CR4_OSFXSR) \ 223 || !IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fPclMul) \ 220 || !(pVCpu->cpum.GstCtx.cr4 & X86_CR4_OSFXSR)) \ 224 221 return iemRaiseUndefinedOpcode(pVCpu); \ 225 222 if (pVCpu->cpum.GstCtx.cr0 & X86_CR0_TS) \
Note:
See TracChangeset
for help on using the changeset viewer.