VirtualBox

Changeset 9258 in vbox for trunk/src/VBox/VMM/IOM.cpp


Ignore:
Timestamp:
May 30, 2008 3:06:42 PM (17 years ago)
Author:
vboxsync
Message:

String formatters again

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/IOM.cpp

    r9212 r9258  
    12421242    PCDBGFINFOHLP pHlp = (PCDBGFINFOHLP)pvUser;
    12431243    pHlp->pfnPrintf(pHlp,
    1244                     "%04x-%04x %VGv %VGv %VGv %VGv %s\n",
     1244                    "%04x-%04x %VRv %VRv %VRv %VRv %s\n",
    12451245                    pRange->Core.Key,
    12461246                    pRange->Core.KeyLast,
     
    12881288                    "Range     %.*s %.*s %.*s %.*s Description\n",
    12891289                    pVM,
    1290                     sizeof(RTGCPTR) * 2,      "pDevIns         ",
    1291                     sizeof(RTGCPTR) * 2,      "In              ",
    1292                     sizeof(RTGCPTR) * 2,      "Out             ",
    1293                     sizeof(RTGCPTR) * 2,      "pvUser          ");
     1290                    sizeof(RTRCPTR) * 2,      "pDevIns         ",
     1291                    sizeof(RTRCPTR) * 2,      "In              ",
     1292                    sizeof(RTRCPTR) * 2,      "Out             ",
     1293                    sizeof(RTRCPTR) * 2,      "pvUser          ");
    12941294    RTAvlroIOPortDoWithAll(&pVM->iom.s.pTreesHC->IOPortTreeGC, true, iomR3IOPortInfoOneGC, (void *)pHlp);
    12951295
     
    12971297    {
    12981298        PIOMIOPORTRANGEGC pRange = (PIOMIOPORTRANGEGC)MMHyperGC2HC(pVM, pVM->iom.s.pRangeLastReadGC);
    1299         pHlp->pfnPrintf(pHlp, "GC Read  Ports: %#04x-%#04x %VGv %s\n",
     1299        pHlp->pfnPrintf(pHlp, "GC Read  Ports: %#04x-%#04x %VRv %s\n",
    13001300                        pRange->Port, pRange->Port + pRange->cPorts, pVM->iom.s.pRangeLastReadGC, pRange->pszDesc);
    13011301    }
     
    13031303    {
    13041304        PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyperGC2HC(pVM, pVM->iom.s.pStatsLastReadGC);
    1305         pHlp->pfnPrintf(pHlp, "GC Read  Stats: %#04x %VGv\n",
     1305        pHlp->pfnPrintf(pHlp, "GC Read  Stats: %#04x %VRv\n",
    13061306                        pRange->Core.Key, pVM->iom.s.pStatsLastReadGC);
    13071307    }
     
    13101310    {
    13111311        PIOMIOPORTRANGEGC pRange = (PIOMIOPORTRANGEGC)MMHyperGC2HC(pVM, pVM->iom.s.pRangeLastWriteGC);
    1312         pHlp->pfnPrintf(pHlp, "GC Write Ports: %#04x-%#04x %VGv %s\n",
     1312        pHlp->pfnPrintf(pHlp, "GC Write Ports: %#04x-%#04x %VRv %s\n",
    13131313                        pRange->Port, pRange->Port + pRange->cPorts, pVM->iom.s.pRangeLastWriteGC, pRange->pszDesc);
    13141314    }
     
    13161316    {
    13171317        PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyperGC2HC(pVM, pVM->iom.s.pStatsLastWriteGC);
    1318         pHlp->pfnPrintf(pHlp, "GC Write Stats: %#04x %VGv\n",
     1318        pHlp->pfnPrintf(pHlp, "GC Write Stats: %#04x %VRv\n",
    13191319                        pRange->Core.Key, pVM->iom.s.pStatsLastWriteGC);
    13201320    }
     
    13231323    {
    13241324        PIOMIOPORTRANGER3 pRange = pVM->iom.s.pRangeLastReadR3;
    1325         pHlp->pfnPrintf(pHlp, "HC Read  Ports: %#04x-%#04x %VGv %s\n",
     1325        pHlp->pfnPrintf(pHlp, "HC Read  Ports: %#04x-%#04x %VHv %s\n",
    13261326                        pRange->Port, pRange->Port + pRange->cPorts, pRange, pRange->pszDesc);
    13271327    }
     
    13291329    {
    13301330        PIOMIOPORTSTATS pRange = pVM->iom.s.pStatsLastReadR3;
    1331         pHlp->pfnPrintf(pHlp, "HC Read  Stats: %#04x %VGv\n",
     1331        pHlp->pfnPrintf(pHlp, "HC Read  Stats: %#04x %VHv\n",
    13321332                        pRange->Core.Key, pRange);
    13331333    }
     
    13361336    {
    13371337        PIOMIOPORTRANGER3 pRange = pVM->iom.s.pRangeLastWriteR3;
    1338         pHlp->pfnPrintf(pHlp, "HC Write Ports: %#04x-%#04x %VGv %s\n",
     1338        pHlp->pfnPrintf(pHlp, "HC Write Ports: %#04x-%#04x %VHv %s\n",
    13391339                        pRange->Port, pRange->Port + pRange->cPorts, pRange, pRange->pszDesc);
    13401340    }
     
    13421342    {
    13431343        PIOMIOPORTSTATS pRange = pVM->iom.s.pStatsLastWriteR3;
    1344         pHlp->pfnPrintf(pHlp, "HC Write Stats: %#04x %VGv\n",
     1344        pHlp->pfnPrintf(pHlp, "HC Write Stats: %#04x %VHv\n",
    13451345                        pRange->Core.Key, pRange);
    13461346    }
     
    13491349    {
    13501350        PIOMIOPORTRANGER0 pRange = (PIOMIOPORTRANGER0)MMHyperR0ToCC(pVM, pVM->iom.s.pRangeLastReadR0);
    1351         pHlp->pfnPrintf(pHlp, "R0 Read  Ports: %#04x-%#04x %VGv %s\n",
     1351        pHlp->pfnPrintf(pHlp, "R0 Read  Ports: %#04x-%#04x %VHv %s\n",
    13521352                        pRange->Port, pRange->Port + pRange->cPorts, pRange, pRange->pszDesc);
    13531353    }
     
    13551355    {
    13561356        PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyperR0ToCC(pVM, pVM->iom.s.pStatsLastReadR0);
    1357         pHlp->pfnPrintf(pHlp, "R0 Read  Stats: %#04x %VGv\n",
     1357        pHlp->pfnPrintf(pHlp, "R0 Read  Stats: %#04x %VHv\n",
    13581358                        pRange->Core.Key, pRange);
    13591359    }
     
    13681368    {
    13691369        PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyperR0ToCC(pVM, pVM->iom.s.pStatsLastWriteR0);
    1370         pHlp->pfnPrintf(pHlp, "R0 Write Stats: %#04x %VGv\n",
     1370        pHlp->pfnPrintf(pHlp, "R0 Write Stats: %#04x %VHv\n",
    13711371                        pRange->Core.Key, pRange);
    13721372    }
     
    16851685                    pRange->pvUserR0);
    16861686    pHlp->pfnPrintf(pHlp,
    1687                     "%*s %VGv %VGv %VGv %VGv %VGv\n",
     1687                    "%*s %VRv %VRv %VRv %VRv %VRv\n",
    16881688                    sizeof(RTGCPHYS) * 2 * 2 + 1, "GC",
    16891689                    pRange->pDevInsGC,
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette