Changeset 13840 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 5, 2008 3:31:46 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38832
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CFGM.cpp
r13818 r13840 2532 2532 2533 2533 case CFGMVALUETYPE_BYTES: 2534 pHlp->pfnPrintf(pHlp, " %-*s <bytes> = \"%.* Vhxs\" (cb=%d)\n", cchMax, pLeaf->szName, pLeaf->Value.Bytes.cb, pLeaf->Value.Bytes.pau8, pLeaf->Value.Bytes.cb);2534 pHlp->pfnPrintf(pHlp, " %-*s <bytes> = \"%.*Rhxs\" (cb=%d)\n", cchMax, pLeaf->szName, pLeaf->Value.Bytes.cb, pLeaf->Value.Bytes.pau8, pLeaf->Value.Bytes.cb); 2535 2535 break; 2536 2536 -
trunk/src/VBox/VMM/CPUM.cpp
r13834 r13840 984 984 if (SSMR3HandleGetAfter(pSSM) == SSMAFTER_DEBUG_IT) 985 985 LogRel(("cpumR3Load: CpuId mismatch! (ignored due to SSMAFTER_DEBUG_IT)\n" 986 "Saved=%.* Vhxs\n"987 "Real =%.* Vhxs\n",986 "Saved=%.*Rhxs\n" 987 "Real =%.*Rhxs\n", 988 988 sizeof(au32CpuIdSaved), au32CpuIdSaved, 989 989 sizeof(au32CpuId), au32CpuId)); … … 991 991 { 992 992 LogRel(("cpumR3Load: CpuId mismatch!\n" 993 "Saved=%.* Vhxs\n"994 "Real =%.* Vhxs\n",993 "Saved=%.*Rhxs\n" 994 "Real =%.*Rhxs\n", 995 995 sizeof(au32CpuIdSaved), au32CpuIdSaved, 996 996 sizeof(au32CpuId), au32CpuId)); -
trunk/src/VBox/VMM/DBGFDisas.cpp
r13827 r13840 460 460 AssertRC(rc); 461 461 if (fFlags & DBGF_DISAS_FLAGS_NO_ADDRESS) 462 RTStrPrintf(pszOutput, cchOutput, "%.* Vhxs%*s %s",462 RTStrPrintf(pszOutput, cchOutput, "%.*Rhxs%*s %s", 463 463 cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "", 464 464 szBuf); 465 465 else if (fRealModeAddress) 466 RTStrPrintf(pszOutput, cchOutput, "%04x:%04x %.* Vhxs%*s %s",466 RTStrPrintf(pszOutput, cchOutput, "%04x:%04x %.*Rhxs%*s %s", 467 467 Sel, (unsigned)GCPtr, 468 468 cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "", … … 471 471 { 472 472 if (enmMode >= PGMMODE_AMD64) 473 RTStrPrintf(pszOutput, cchOutput, "%RGv %.* Vhxs%*s %s",473 RTStrPrintf(pszOutput, cchOutput, "%RGv %.*Rhxs%*s %s", 474 474 GCPtr, 475 475 cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "", 476 476 szBuf); 477 477 else 478 RTStrPrintf(pszOutput, cchOutput, "%08RX32 %.* Vhxs%*s %s",478 RTStrPrintf(pszOutput, cchOutput, "%08RX32 %.*Rhxs%*s %s", 479 479 (uint32_t)GCPtr, 480 480 cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "", … … 484 484 { 485 485 if (enmMode >= PGMMODE_AMD64) 486 RTStrPrintf(pszOutput, cchOutput, "%04x:%RGv %.* Vhxs%*s %s",486 RTStrPrintf(pszOutput, cchOutput, "%04x:%RGv %.*Rhxs%*s %s", 487 487 Sel, GCPtr, 488 488 cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "", 489 489 szBuf); 490 490 else 491 RTStrPrintf(pszOutput, cchOutput, "%04x:%08RX32 %.* Vhxs%*s %s",491 RTStrPrintf(pszOutput, cchOutput, "%04x:%08RX32 %.*Rhxs%*s %s", 492 492 Sel, (uint32_t)GCPtr, 493 493 cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "", -
trunk/src/VBox/VMM/PDMDevHlp.cpp
r13824 r13840 406 406 PVM pVM = pDevIns->Internal.s.pVMR3; 407 407 VM_ASSERT_EMT(pVM); 408 LogFlow(("pdmR3DevHlp_PCIRegister: caller='%s'/%d: pPciDev=%p:{.config={%#.256 Vhxs}\n",408 LogFlow(("pdmR3DevHlp_PCIRegister: caller='%s'/%d: pPciDev=%p:{.config={%#.256Rhxs}\n", 409 409 pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, pPciDev, pPciDev->config)); 410 410 -
trunk/src/VBox/VMM/PGMGst.h
r13824 r13840 284 284 AssertMsg(!pVM->pgm.s.fMappingsFixed, ("Shouldn't be registered when mappings are fixed!\n")); 285 285 Assert(enmAccessType == PGMACCESSTYPE_WRITE); 286 Log2(("pgmR3Gst32BitWriteHandlerCR3: ff=%#x GCPhys=%RGp pvPhys=%p cbBuf=%d pvBuf={%.* Vhxs}\n", pVM->fForcedActions, GCPhys, pvPhys, cbBuf, cbBuf, pvBuf));286 Log2(("pgmR3Gst32BitWriteHandlerCR3: ff=%#x GCPhys=%RGp pvPhys=%p cbBuf=%d pvBuf={%.*Rhxs}\n", pVM->fForcedActions, GCPhys, pvPhys, cbBuf, cbBuf, pvBuf)); 287 287 288 288 /* … … 337 337 AssertMsg(!pVM->pgm.s.fMappingsFixed, ("Shouldn't be registered when mappings are fixed!\n")); 338 338 Assert(enmAccessType == PGMACCESSTYPE_WRITE); 339 Log2(("pgmR3GstPAEWriteHandlerCR3: ff=%#x GCPhys=%RGp pvPhys=%p cbBuf=%d pvBuf={%.* Vhxs}\n", pVM->fForcedActions, GCPhys, pvPhys, cbBuf, cbBuf, pvBuf));339 Log2(("pgmR3GstPAEWriteHandlerCR3: ff=%#x GCPhys=%RGp pvPhys=%p cbBuf=%d pvBuf={%.*Rhxs}\n", pVM->fForcedActions, GCPhys, pvPhys, cbBuf, cbBuf, pvBuf)); 340 340 341 341 /* … … 402 402 AssertMsg(!pVM->pgm.s.fMappingsFixed, ("Shouldn't be registered when mappings are fixed!\n")); 403 403 Assert(enmAccessType == PGMACCESSTYPE_WRITE); 404 Log2(("pgmR3GstPAEWriteHandlerPD: ff=%#x GCPhys=%RGp pvPhys=%p cbBuf=%d pvBuf={%.* Vhxs}\n", pVM->fForcedActions, GCPhys, pvPhys, cbBuf, cbBuf, pvBuf));404 Log2(("pgmR3GstPAEWriteHandlerPD: ff=%#x GCPhys=%RGp pvPhys=%p cbBuf=%d pvBuf={%.*Rhxs}\n", pVM->fForcedActions, GCPhys, pvPhys, cbBuf, cbBuf, pvBuf)); 405 405 406 406 /* -
trunk/src/VBox/VMM/SELM.cpp
r13830 r13840 1572 1572 AssertRC(rc); 1573 1573 Log2(("Redirection bitmap:\n")); 1574 Log2(("%.* Vhxd\n", sizeof(tss.IntRedirBitmap), &pVM->selm.s.Tss.IntRedirBitmap));1574 Log2(("%.*Rhxd\n", sizeof(tss.IntRedirBitmap), &pVM->selm.s.Tss.IntRedirBitmap)); 1575 1575 } 1576 1576 } -
trunk/src/VBox/VMM/SSM.cpp
r13818 r13840 2078 2078 static int ssmR3Write(PSSMHANDLE pSSM, const void *pvBuf, size_t cbBuf) 2079 2079 { 2080 Log2(("ssmR3Write: pvBuf=%p cbBuf=%#x %.* Vhxs%s\n", pvBuf, cbBuf, RT_MIN(cbBuf, 128), pvBuf, cbBuf > 128 ? "..." : ""));2080 Log2(("ssmR3Write: pvBuf=%p cbBuf=%#x %.*Rhxs%s\n", pvBuf, cbBuf, RT_MIN(cbBuf, 128), pvBuf, cbBuf > 128 ? "..." : "")); 2081 2081 2082 2082 /* … … 2629 2629 pSSM->rc = RTZipDecompress(pSSM->pZipDecomp, pvBuf, cbBuf, NULL); 2630 2630 if (RT_SUCCESS(pSSM->rc)) 2631 Log2(("ssmR3Read: pvBuf=%p cbBuf=%#x %.* Vhxs%s\n", pvBuf, cbBuf, RT_MIN(cbBuf, 128), pvBuf, cbBuf > 128 ? "..." : ""));2631 Log2(("ssmR3Read: pvBuf=%p cbBuf=%#x %.*Rhxs%s\n", pvBuf, cbBuf, RT_MIN(cbBuf, 128), pvBuf, cbBuf > 128 ? "..." : "")); 2632 2632 else 2633 2633 AssertMsgFailed(("rc=%Rrc cbBuf=%#x\n", pSSM->rc, cbBuf)); -
trunk/src/VBox/VMM/VMMGC/SELMGC.cpp
r13823 r13840 86 86 if (Desc.Gen.u1Present) 87 87 { 88 Log(("selmGCSyncGDTEntry: Sel=%d Desc=%.8 Vhxs: detected conflict!!\n", Sel, &Desc));88 Log(("selmGCSyncGDTEntry: Sel=%d Desc=%.8Rhxs: detected conflict!!\n", Sel, &Desc)); 89 89 return VINF_SELM_SYNC_GDT; 90 90 } 91 Log(("selmGCSyncGDTEntry: Sel=%d Desc=%.8 Vhxs: potential conflict (still not present)!\n", Sel, &Desc));91 Log(("selmGCSyncGDTEntry: Sel=%d Desc=%.8Rhxs: potential conflict (still not present)!\n", Sel, &Desc)); 92 92 93 93 /* Note: we can't continue below or else we'll change the shadow descriptor!! */ -
trunk/src/VBox/VMM/VMMGuruMeditation.cpp
r13818 r13840 385 385 "!! Raw stack (mind the direction).\n" 386 386 "!!\n" 387 "%.* Vhxd\n",387 "%.*Rhxd\n", 388 388 VMM_STACK_SIZE, pVM->vmm.s.pbEMTStackR3); 389 389 } /* !HWACCMR3IsActive */
Note:
See TracChangeset
for help on using the changeset viewer.