VirtualBox

Changeset 51434 in vbox for trunk/src/VBox/VMM/VMMAll


Ignore:
Timestamp:
May 28, 2014 8:14:55 AM (11 years ago)
Author:
vboxsync
Message:

VMM/IEM: nit.

Location:
trunk/src/VBox/VMM/VMMAll
Files:
2 edited

Legend:

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

    r51256 r51434  
    71397139 * related.
    71407140 *
    7141  * Raises GP(0) if not aligned.
     7141 * Raises \#GP(0) if not aligned.
    71427142 *
    71437143 * @returns Strict VBox status code.
  • trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp.h

    r51182 r51434  
    47684768        static uint32_t s_cTimes = 0;
    47694769        if (s_cTimes++ < 10)
    4770             LogRel(("IEM: rdmsr(%#x) -> GP(0)\n", pCtx->ecx));
     4770            LogRel(("IEM: rdmsr(%#x) -> #GP(0)\n", pCtx->ecx));
    47714771#endif
    4772         Log(("IEM: rdmsr(%#x) -> GP(0)\n", pCtx->ecx));
     4772        Log(("IEM: rdmsr(%#x) -> #GP(0)\n", pCtx->ecx));
    47734773        AssertMsgReturn(rc == VERR_CPUM_RAISE_GP_0, ("%Rrc\n", rc), VERR_IPE_UNEXPECTED_STATUS);
    47744774        return iemRaiseGeneralProtectionFault0(pIemCpu);
     
    48214821        static uint32_t s_cTimes = 0;
    48224822        if (s_cTimes++ < 10)
    4823             LogRel(("IEM: wrmsr(%#x,%#x`%08x) -> GP(0)\n", pCtx->ecx, uValue.s.Hi, uValue.s.Lo));
     4823            LogRel(("IEM: wrmsr(%#x,%#x`%08x) -> #GP(0)\n", pCtx->ecx, uValue.s.Hi, uValue.s.Lo));
    48244824#endif
    4825         Log(("IEM: wrmsr(%#x,%#x`%08x) -> GP(0)\n", pCtx->ecx, uValue.s.Hi, uValue.s.Lo));
     4825        Log(("IEM: wrmsr(%#x,%#x`%08x) -> #GP(0)\n", pCtx->ecx, uValue.s.Hi, uValue.s.Lo));
    48264826        AssertMsgReturn(rc == VERR_CPUM_RAISE_GP_0, ("%Rrc\n", rc), VERR_IPE_UNEXPECTED_STATUS);
    48274827        return iemRaiseGeneralProtectionFault0(pIemCpu);
     
    55725572
    55735573    /*
    5574      * Check the state for stuff which will GP(0).
     5574     * Check the state for stuff which will #GP(0).
    55755575     */
    55765576    uint32_t const fMXCSR      = pSrc->MXCSR;
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