VirtualBox

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


Ignore:
Timestamp:
Jul 18, 2015 8:39:34 PM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
101695
Message:

IEMAllCImpl.cpp: Fixed incorrect parameter type for iemCImpl_invlpg. Also fixed some Log statements.

File:
1 edited

Legend:

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

    r56629 r56983  
    22552255        {
    22562256            Log(("retf %04x:%08RX64 %04x:%08RX64 - SS has both L & D set -> #GP(SS).\n",
    2257                  uNewCs, uNewRip, uNewOuterSs, uNewOuterRsp, DescSs.Legacy.Gen.u1DescType, DescSs.Legacy.Gen.u4Type));
     2257                 uNewCs, uNewRip, uNewOuterSs, uNewOuterRsp));
    22582258            return iemRaiseGeneralProtectionFaultBySelector(pIemCpu, uNewOuterSs);
    22592259        }
     
    39063906    if (!Desc.Legacy.Gen.u1DescType)
    39073907    {
    3908         Log(("load sreg %d - system selector (%#x) -> #GP\n", iSegReg, uSel, Desc.Legacy.Gen.u4Type));
     3908        Log(("load sreg %d (=%#x) - system selector (%#x) -> #GP\n", iSegReg, uSel, Desc.Legacy.Gen.u4Type));
    39093909        return iemRaiseGeneralProtectionFaultBySelector(pIemCpu, uSel);
    39103910    }
     
    53045304 * @remarks Updates the RIP.
    53055305 */
    5306 IEM_CIMPL_DEF_1(iemCImpl_invlpg, uint8_t, GCPtrPage)
     5306IEM_CIMPL_DEF_1(iemCImpl_invlpg, RTGCPTR, GCPtrPage)
    53075307{
    53085308    /* ring-0 only. */
     
    53205320
    53215321    AssertMsg(rc == VINF_EM_RAW_EMULATE_INSTR || RT_FAILURE_NP(rc), ("%Rrc\n", rc));
    5322     Log(("PGMInvalidatePage(%RGv) -> %Rrc\n", rc));
     5322    Log(("PGMInvalidatePage(%RGv) -> %Rrc\n", GCPtrPage, rc));
    53235323    return rc;
    53245324}
Note: See TracChangeset for help on using the changeset viewer.

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