Changeset 13841 in vbox
- Timestamp:
- Nov 5, 2008 3:38:52 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38833
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstLog.cpp
r13840 r13841 79 79 RTLogPrintf("%%RU64: %RU64\n", _2E); 80 80 81 RTLogPrintf("%%RX8 : %RX8 %# VX8\n", (uint8_t)808, (uint8_t)808);82 RTLogPrintf("%%RX16: %RX16 %# VX16\n", (uint16_t)16016, (uint16_t)16016);83 RTLogPrintf("%%RX32: %RX32 %# VX32\n", _2G32, _2G32);84 RTLogPrintf("%%RX64: %RX64 %# VX64\n", _2E, _2E);81 RTLogPrintf("%%RX8 : %RX8 %#RX8\n", (uint8_t)808, (uint8_t)808); 82 RTLogPrintf("%%RX16: %RX16 %#RX16\n", (uint16_t)16016, (uint16_t)16016); 83 RTLogPrintf("%%RX32: %RX32 %#RX32\n", _2G32, _2G32); 84 RTLogPrintf("%%RX64: %RX64 %#RX64\n", _2E, _2E); 85 85 86 86 RTLogFlush(NULL); -
trunk/src/VBox/VMM/DBGFSym.cpp
r13823 r13841 510 510 int rc2 = DBGFR3SymbolAdd(pVM, ModuleAddress, Address + AddressDelta, 0, psz); 511 511 if (RT_FAILURE(rc2)) 512 Log2(("DBGFR3SymbolAdd(,, % #VGv, 0, '%s') -> %Rrc\n", Address, psz, rc2));512 Log2(("DBGFR3SymbolAdd(,, %RGv, 0, '%s') -> %Rrc\n", Address, psz, rc2)); 513 513 } 514 514 } -
trunk/src/VBox/VMM/MMPhys.cpp
r13824 r13841 251 251 if (!pCur) 252 252 { 253 AssertMsgFailed(("No physical range was found matching the ROM location (% #VGp LB%#x)\n", GCPhys, cbRange));253 AssertMsgFailed(("No physical range was found matching the ROM location (%RGp LB%#x)\n", GCPhys, cbRange)); 254 254 return VERR_INVALID_PARAMETER; 255 255 } 256 256 if (GCPhysLast - pCur->u.phys.GCPhys >= pCur->cb) 257 257 { 258 AssertMsgFailed(("The ROM range (% #VGp LB%#x) was crossing the end of the physical range (%#VGp LB%#x)\n",258 AssertMsgFailed(("The ROM range (%RGp LB%#x) was crossing the end of the physical range (%RGp LB%#x)\n", 259 259 GCPhys, cbRange, pCur->u.phys.GCPhys, pCur->cb)); 260 260 return VERR_INVALID_PARAMETER; … … 386 386 if (GCPhysLast - pCur->u.phys.GCPhys >= pCur->cb) 387 387 { 388 AssertMsgFailed(("The reserved range (% #VGp LB%#x) was crossing the end of the physical range (%#VGp LB%#x)\n",388 AssertMsgFailed(("The reserved range (%RGp LB%#x) was crossing the end of the physical range (%RGp LB%#x)\n", 389 389 GCPhys, cbRange, pCur->u.phys.GCPhys, pCur->cb)); 390 390 return VERR_INVALID_PARAMETER; -
trunk/src/VBox/VMM/PGM.cpp
r13824 r13841 3542 3542 if (!pPD) 3543 3543 { 3544 pHlp->pfnPrintf(pHlp, "%0*llx error! Page directory at HCPhys=% #VHp was not found in the page pool!\n",3544 pHlp->pfnPrintf(pHlp, "%0*llx error! Page directory at HCPhys=%RHp was not found in the page pool!\n", 3545 3545 fLongMode ? 16 : 8, u64Address, HCPhys); 3546 3546 return VERR_INVALID_PARAMETER; … … 3621 3621 rc2 = pgmR3DumpHierarchyHCPaePT(pVM, pPT, u64AddressPT, fLongMode, cMaxDepth - 1, pHlp); 3622 3622 else 3623 pHlp->pfnPrintf(pHlp, "%0*llx error! Page table at HCPhys=% #VHp was not found in the page pool!\n",3623 pHlp->pfnPrintf(pHlp, "%0*llx error! Page table at HCPhys=%RHp was not found in the page pool!\n", 3624 3624 fLongMode ? 16 : 8, u64AddressPT, HCPhysPT); 3625 3625 if (rc2 < rc && RT_SUCCESS(rc)) … … 3650 3650 if (!pPDPT) 3651 3651 { 3652 pHlp->pfnPrintf(pHlp, "%0*llx error! Page directory pointer table at HCPhys=% #VHp was not found in the page pool!\n",3652 pHlp->pfnPrintf(pHlp, "%0*llx error! Page directory pointer table at HCPhys=%RHp was not found in the page pool!\n", 3653 3653 fLongMode ? 16 : 8, u64Address, HCPhys); 3654 3654 return VERR_INVALID_PARAMETER; … … 3720 3720 if (!pPML4) 3721 3721 { 3722 pHlp->pfnPrintf(pHlp, "Page map level 4 at HCPhys=% #VHp was not found in the page pool!\n", HCPhys);3722 pHlp->pfnPrintf(pHlp, "Page map level 4 at HCPhys=%RHp was not found in the page pool!\n", HCPhys); 3723 3723 return VERR_INVALID_PARAMETER; 3724 3724 } -
trunk/src/VBox/VMM/VMMAll/PGMAllHandler.cpp
r13832 r13841 288 288 if (pCur) 289 289 { 290 LogFlow(("PGMHandlerPhysicalDeregister: Removing Range % #VGp-%#VGp %s\n",290 LogFlow(("PGMHandlerPhysicalDeregister: Removing Range %RGp-%RGp %s\n", 291 291 pCur->Core.Key, pCur->Core.KeyLast, R3STRING(pCur->pszDesc))); 292 292 -
trunk/src/recompiler_new/VBoxRecompiler.c
r13840 r13841 3792 3792 * Do the disassembling. 3793 3793 */ 3794 RTLogPrintf("Guest Code: PC=%RGp % #VGp (%RGp) bytes fFlags=%d\n", uCode, cb, cb, fFlags);3794 RTLogPrintf("Guest Code: PC=%RGp %RGp bytes fFlags=%d\n", uCode, cb, fFlags); 3795 3795 cs = cpu_single_env->segs[R_CS].selector; 3796 3796 eip = uCode - cpu_single_env->segs[R_CS].base;
Note:
See TracChangeset
for help on using the changeset viewer.