Changeset 9258 in vbox for trunk/src/VBox/VMM/IOM.cpp
- Timestamp:
- May 30, 2008 3:06:42 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/IOM.cpp
r9212 r9258 1242 1242 PCDBGFINFOHLP pHlp = (PCDBGFINFOHLP)pvUser; 1243 1243 pHlp->pfnPrintf(pHlp, 1244 "%04x-%04x %V Gv %VGv %VGv %VGv %s\n",1244 "%04x-%04x %VRv %VRv %VRv %VRv %s\n", 1245 1245 pRange->Core.Key, 1246 1246 pRange->Core.KeyLast, … … 1288 1288 "Range %.*s %.*s %.*s %.*s Description\n", 1289 1289 pVM, 1290 sizeof(RT GCPTR) * 2, "pDevIns ",1291 sizeof(RT GCPTR) * 2, "In ",1292 sizeof(RT GCPTR) * 2, "Out ",1293 sizeof(RT GCPTR) * 2, "pvUser ");1290 sizeof(RTRCPTR) * 2, "pDevIns ", 1291 sizeof(RTRCPTR) * 2, "In ", 1292 sizeof(RTRCPTR) * 2, "Out ", 1293 sizeof(RTRCPTR) * 2, "pvUser "); 1294 1294 RTAvlroIOPortDoWithAll(&pVM->iom.s.pTreesHC->IOPortTreeGC, true, iomR3IOPortInfoOneGC, (void *)pHlp); 1295 1295 … … 1297 1297 { 1298 1298 PIOMIOPORTRANGEGC pRange = (PIOMIOPORTRANGEGC)MMHyperGC2HC(pVM, pVM->iom.s.pRangeLastReadGC); 1299 pHlp->pfnPrintf(pHlp, "GC Read Ports: %#04x-%#04x %V Gv %s\n",1299 pHlp->pfnPrintf(pHlp, "GC Read Ports: %#04x-%#04x %VRv %s\n", 1300 1300 pRange->Port, pRange->Port + pRange->cPorts, pVM->iom.s.pRangeLastReadGC, pRange->pszDesc); 1301 1301 } … … 1303 1303 { 1304 1304 PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyperGC2HC(pVM, pVM->iom.s.pStatsLastReadGC); 1305 pHlp->pfnPrintf(pHlp, "GC Read Stats: %#04x %V Gv\n",1305 pHlp->pfnPrintf(pHlp, "GC Read Stats: %#04x %VRv\n", 1306 1306 pRange->Core.Key, pVM->iom.s.pStatsLastReadGC); 1307 1307 } … … 1310 1310 { 1311 1311 PIOMIOPORTRANGEGC pRange = (PIOMIOPORTRANGEGC)MMHyperGC2HC(pVM, pVM->iom.s.pRangeLastWriteGC); 1312 pHlp->pfnPrintf(pHlp, "GC Write Ports: %#04x-%#04x %V Gv %s\n",1312 pHlp->pfnPrintf(pHlp, "GC Write Ports: %#04x-%#04x %VRv %s\n", 1313 1313 pRange->Port, pRange->Port + pRange->cPorts, pVM->iom.s.pRangeLastWriteGC, pRange->pszDesc); 1314 1314 } … … 1316 1316 { 1317 1317 PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyperGC2HC(pVM, pVM->iom.s.pStatsLastWriteGC); 1318 pHlp->pfnPrintf(pHlp, "GC Write Stats: %#04x %V Gv\n",1318 pHlp->pfnPrintf(pHlp, "GC Write Stats: %#04x %VRv\n", 1319 1319 pRange->Core.Key, pVM->iom.s.pStatsLastWriteGC); 1320 1320 } … … 1323 1323 { 1324 1324 PIOMIOPORTRANGER3 pRange = pVM->iom.s.pRangeLastReadR3; 1325 pHlp->pfnPrintf(pHlp, "HC Read Ports: %#04x-%#04x %V Gv %s\n",1325 pHlp->pfnPrintf(pHlp, "HC Read Ports: %#04x-%#04x %VHv %s\n", 1326 1326 pRange->Port, pRange->Port + pRange->cPorts, pRange, pRange->pszDesc); 1327 1327 } … … 1329 1329 { 1330 1330 PIOMIOPORTSTATS pRange = pVM->iom.s.pStatsLastReadR3; 1331 pHlp->pfnPrintf(pHlp, "HC Read Stats: %#04x %V Gv\n",1331 pHlp->pfnPrintf(pHlp, "HC Read Stats: %#04x %VHv\n", 1332 1332 pRange->Core.Key, pRange); 1333 1333 } … … 1336 1336 { 1337 1337 PIOMIOPORTRANGER3 pRange = pVM->iom.s.pRangeLastWriteR3; 1338 pHlp->pfnPrintf(pHlp, "HC Write Ports: %#04x-%#04x %V Gv %s\n",1338 pHlp->pfnPrintf(pHlp, "HC Write Ports: %#04x-%#04x %VHv %s\n", 1339 1339 pRange->Port, pRange->Port + pRange->cPorts, pRange, pRange->pszDesc); 1340 1340 } … … 1342 1342 { 1343 1343 PIOMIOPORTSTATS pRange = pVM->iom.s.pStatsLastWriteR3; 1344 pHlp->pfnPrintf(pHlp, "HC Write Stats: %#04x %V Gv\n",1344 pHlp->pfnPrintf(pHlp, "HC Write Stats: %#04x %VHv\n", 1345 1345 pRange->Core.Key, pRange); 1346 1346 } … … 1349 1349 { 1350 1350 PIOMIOPORTRANGER0 pRange = (PIOMIOPORTRANGER0)MMHyperR0ToCC(pVM, pVM->iom.s.pRangeLastReadR0); 1351 pHlp->pfnPrintf(pHlp, "R0 Read Ports: %#04x-%#04x %V Gv %s\n",1351 pHlp->pfnPrintf(pHlp, "R0 Read Ports: %#04x-%#04x %VHv %s\n", 1352 1352 pRange->Port, pRange->Port + pRange->cPorts, pRange, pRange->pszDesc); 1353 1353 } … … 1355 1355 { 1356 1356 PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyperR0ToCC(pVM, pVM->iom.s.pStatsLastReadR0); 1357 pHlp->pfnPrintf(pHlp, "R0 Read Stats: %#04x %V Gv\n",1357 pHlp->pfnPrintf(pHlp, "R0 Read Stats: %#04x %VHv\n", 1358 1358 pRange->Core.Key, pRange); 1359 1359 } … … 1368 1368 { 1369 1369 PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyperR0ToCC(pVM, pVM->iom.s.pStatsLastWriteR0); 1370 pHlp->pfnPrintf(pHlp, "R0 Write Stats: %#04x %V Gv\n",1370 pHlp->pfnPrintf(pHlp, "R0 Write Stats: %#04x %VHv\n", 1371 1371 pRange->Core.Key, pRange); 1372 1372 } … … 1685 1685 pRange->pvUserR0); 1686 1686 pHlp->pfnPrintf(pHlp, 1687 "%*s %V Gv %VGv %VGv %VGv %VGv\n",1687 "%*s %VRv %VRv %VRv %VRv %VRv\n", 1688 1688 sizeof(RTGCPHYS) * 2 * 2 + 1, "GC", 1689 1689 pRange->pDevInsGC,
Note:
See TracChangeset
for help on using the changeset viewer.