Changeset 13818 in vbox for trunk/src/VBox/VMM/VMMGC
- Timestamp:
- Nov 4, 2008 10:59:47 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM/VMMGC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMGC/SELMGC.cpp
r13816 r13818 319 319 if (RT_FAILURE(rc)) 320 320 { 321 AssertMsg(rc == VINF_SUCCESS, ("PGMPrefetchPage %VGv failed with % Vrc\n", (uint8_t *)pGuestTSS + offIntRedirBitmap + i*8, rc));321 AssertMsg(rc == VINF_SUCCESS, ("PGMPrefetchPage %VGv failed with %Rrc\n", (uint8_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 % Vrc\n", (uint8_t *)pGuestTSS + offIntRedirBitmap + i * 8, rc));326 AssertMsg(rc == VINF_SUCCESS, ("MMGCRamRead %VGv failed with %Rrc\n", (uint8_t *)pGuestTSS + offIntRedirBitmap + i * 8, rc)); 327 327 } 328 328 STAM_COUNTER_INC(&pVM->selm.s.StatRCWriteGuestTSSRedir); -
trunk/src/VBox/VMM/VMMGC/TRPMGC.cpp
r13816 r13818 85 85 VMMRCDECL(void) TRPMGCHyperReturnToHost(PVM pVM, int rc) 86 86 { 87 LogFlow(("TRPMGCHyperReturnToHost: rc=% Vrc\n", rc));87 LogFlow(("TRPMGCHyperReturnToHost: rc=%Rrc\n", rc)); 88 88 TRPMResetTrap(pVM); 89 89 CPUMHyperSetCtxCore(pVM, NULL); -
trunk/src/VBox/VMM/VMMGC/TRPMGCHandlers.cpp
r13816 r13818 201 201 uint8_t u8Interrupt; 202 202 rc = PDMGetInterrupt(pVM, &u8Interrupt); 203 Log(("trpmGCExitTrap: u8Interrupt=%d (%#x) rc=% Vrc\n", u8Interrupt, u8Interrupt, rc));204 AssertFatalMsgRC(rc, ("PDMGetInterrupt failed with % Vrc\n", rc));203 Log(("trpmGCExitTrap: u8Interrupt=%d (%#x) rc=%Rrc\n", u8Interrupt, u8Interrupt, rc)); 204 AssertFatalMsgRC(rc, ("PDMGetInterrupt failed with %Rrc\n", rc)); 205 205 rc = TRPMForwardTrap(pVM, pRegFrame, (uint32_t)u8Interrupt, 0, TRPM_TRAP_NO_ERRORCODE, TRPM_HARDWARE_INT, uOldActiveVector); 206 206 /* can't return if successful */ … … 361 361 if (RT_FAILURE(rc)) 362 362 { 363 Log(("TRPMGCTrap06Handler: Failed to convert %RTsel:%RX32 (cpl=%d) - rc=% Vrc !!\n", pRegFrame->cs, pRegFrame->eip, pRegFrame->ss & X86_SEL_RPL, rc));363 Log(("TRPMGCTrap06Handler: Failed to convert %RTsel:%RX32 (cpl=%d) - rc=%Rrc !!\n", pRegFrame->cs, pRegFrame->eip, pRegFrame->ss & X86_SEL_RPL, rc)); 364 364 return trpmGCExitTrap(pVM, VINF_EM_RAW_GUEST_TRAP, pRegFrame); 365 365 } … … 813 813 if (RT_FAILURE(rc)) 814 814 { 815 AssertMsgFailed(("DISCoreOneEx failed to PC=%VGv rc=% Vrc\n", PC, rc));815 AssertMsgFailed(("DISCoreOneEx failed to PC=%VGv rc=%Rrc\n", PC, rc)); 816 816 STAM_PROFILE_STOP(&pVM->trpm.s.StatTrap0dDisasm, a); 817 817 return trpmGCExitTrap(pVM, VINF_EM_RAW_EMULATE_INSTR, pRegFrame);
Note:
See TracChangeset
for help on using the changeset viewer.