Changeset 13820 in vbox for trunk/src/VBox/VMM/VMMGC/SELMGC.cpp
- Timestamp:
- Nov 5, 2008 12:55:49 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMGC/SELMGC.cpp
r13818 r13820 294 294 { 295 295 Log(("selmRCGuestTSSWriteHandler: R0 stack: %RTsel:%VGv -> %RTsel:%VGv\n", 296 (RTSEL)(pVM->selm.s.Tss.ss1 & ~1), pVM->selm.s.Tss.esp1, (RTSEL)pGuestTSS->ss0,pGuestTSS->esp0));296 (RTSEL)(pVM->selm.s.Tss.ss1 & ~1), (RTGCPTR)pVM->selm.s.Tss.esp1, (RTSEL)pGuestTSS->ss0, (RTGCPTR)pGuestTSS->esp0)); 297 297 pVM->selm.s.Tss.esp1 = pGuestTSS->esp0; 298 298 pVM->selm.s.Tss.ss1 = pGuestTSS->ss0 | 1; … … 319 319 if (RT_FAILURE(rc)) 320 320 { 321 AssertMsg(rc == VINF_SUCCESS, ("PGMPrefetchPage %VGv failed with %Rrc\n", ( uint8_t *)pGuestTSS + offIntRedirBitmap + i*8, rc));321 AssertMsg(rc == VINF_SUCCESS, ("PGMPrefetchPage %VGv failed with %Rrc\n", (RTGCPTR)((uintptr_t)pGuestTSS + offIntRedirBitmap + i*8), rc)); 322 322 break; 323 323 } 324 324 rc = MMGCRamRead(pVM, &pVM->selm.s.Tss.IntRedirBitmap[i * 8], (uint8_t *)pGuestTSS + offIntRedirBitmap + i * 8, 8); 325 325 } 326 AssertMsg(rc == VINF_SUCCESS, ("MMGCRamRead %VGv failed with %Rrc\n", ( uint8_t *)pGuestTSS + offIntRedirBitmap + i * 8, rc));326 AssertMsg(rc == VINF_SUCCESS, ("MMGCRamRead %VGv failed with %Rrc\n", (RTGCPTR)((uintptr_t)pGuestTSS + offIntRedirBitmap + i * 8), rc)); 327 327 } 328 328 STAM_COUNTER_INC(&pVM->selm.s.StatRCWriteGuestTSSRedir);
Note:
See TracChangeset
for help on using the changeset viewer.