VirtualBox

Changeset 107045 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Nov 20, 2024 2:39:37 AM (3 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
165997
Message:

VMM/IEM: fix missing PE condition in [v]round[ps][sd] instruction emulation; bugref:9898; bugref:10658; jiraref:VBP-1205

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IEMAllAImplC.cpp

    r106179 r107045  
    1994619946
    1994719947    iemFpSoftF32ToIprt(&r32Dst, f32Src);
     19948    if (fExact && (SoftState.exceptionFlags & X86_MXCSR_PE))
     19949        *pfMxcsr |= X86_MXCSR_PE;
    1994819950    return r32Dst;
    1994919951}
     
    1996019962
    1996119963    iemFpSoftF64ToIprt(&r64Dst, f64Src);
     19964    if (fExact && (SoftState.exceptionFlags & X86_MXCSR_PE))
     19965        *pfMxcsr |= X86_MXCSR_PE;
    1996219966    return r64Dst;
    1996319967}
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette