Changeset 56983 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jul 18, 2015 8:39:34 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101695
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp.h
r56629 r56983 2255 2255 { 2256 2256 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)); 2258 2258 return iemRaiseGeneralProtectionFaultBySelector(pIemCpu, uNewOuterSs); 2259 2259 } … … 3906 3906 if (!Desc.Legacy.Gen.u1DescType) 3907 3907 { 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)); 3909 3909 return iemRaiseGeneralProtectionFaultBySelector(pIemCpu, uSel); 3910 3910 } … … 5304 5304 * @remarks Updates the RIP. 5305 5305 */ 5306 IEM_CIMPL_DEF_1(iemCImpl_invlpg, uint8_t, GCPtrPage)5306 IEM_CIMPL_DEF_1(iemCImpl_invlpg, RTGCPTR, GCPtrPage) 5307 5307 { 5308 5308 /* ring-0 only. */ … … 5320 5320 5321 5321 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)); 5323 5323 return rc; 5324 5324 }
Note:
See TracChangeset
for help on using the changeset viewer.