vbox的更動 13824 路徑 trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp
- 時間撮記:
- 2008-11-5 上午01:11:24 (16 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp
r13823 r13824 1249 1249 PIOMMMIORANGE pRange = iomMMIOGetRange(&pVM->iom.s, GCPhys); 1250 1250 AssertMsgReturn(pRange, 1251 ("Handlers and page tables are out of sync or something! GCPhys=% VGp cbValue=%d\n", GCPhys, cbValue),1251 ("Handlers and page tables are out of sync or something! GCPhys=%RGp cbValue=%d\n", GCPhys, cbValue), 1252 1252 VERR_INTERNAL_ERROR); 1253 1253 #ifdef VBOX_WITH_STATISTICS … … 1288 1288 case 4: *(uint32_t *)pu32Value = UINT32_C(0x00000000); break; 1289 1289 case 8: *(uint64_t *)pu32Value = UINT64_C(0x0000000000000000); break; 1290 default: AssertReleaseMsgFailed(("cbValue=%d GCPhys=% VGp\n", cbValue, GCPhys)); break;1290 default: AssertReleaseMsgFailed(("cbValue=%d GCPhys=%RGp\n", cbValue, GCPhys)); break; 1291 1291 } 1292 1292 Log4(("IOMMMIORead: GCPhys=%RGp *pu32=%08RX32 cb=%d rc=%Rrc\n", GCPhys, *pu32Value, cbValue, rc)); … … 1300 1300 case 4: *(uint32_t *)pu32Value = UINT32_C(0xffffffff); break; 1301 1301 case 8: *(uint64_t *)pu32Value = UINT64_C(0xffffffffffffffff); break; 1302 default: AssertReleaseMsgFailed(("cbValue=%d GCPhys=% VGp\n", cbValue, GCPhys)); break;1302 default: AssertReleaseMsgFailed(("cbValue=%d GCPhys=%RGp\n", cbValue, GCPhys)); break; 1303 1303 } 1304 1304 Log4(("IOMMMIORead: GCPhys=%RGp *pu32=%08RX32 cb=%d rc=%Rrc\n", GCPhys, *pu32Value, cbValue, rc)); … … 1327 1327 case 4: *(uint32_t *)pu32Value = UINT32_C(0xffffffff); break; 1328 1328 case 8: *(uint64_t *)pu32Value = UINT64_C(0xffffffffffffffff); break; 1329 default: AssertReleaseMsgFailed(("cbValue=%d GCPhys=% VGp\n", cbValue, GCPhys)); break;1329 default: AssertReleaseMsgFailed(("cbValue=%d GCPhys=%RGp\n", cbValue, GCPhys)); break; 1330 1330 } 1331 1331 Log4(("IOMMMIORead: GCPhys=%RGp *pu32=%08RX32 cb=%d rc=VINF_SUCCESS\n", GCPhys, *pu32Value, cbValue)); … … 1351 1351 PIOMMMIORANGE pRange = iomMMIOGetRange(&pVM->iom.s, GCPhys); 1352 1352 AssertMsgReturn(pRange, 1353 ("Handlers and page tables are out of sync or something! GCPhys=% VGp cbValue=%d\n", GCPhys, cbValue),1353 ("Handlers and page tables are out of sync or something! GCPhys=%RGp cbValue=%d\n", GCPhys, cbValue), 1354 1354 VERR_INTERNAL_ERROR); 1355 1355 #ifdef VBOX_WITH_STATISTICS … … 1742 1742 Assert(fPageFlags == (X86_PTE_RW | X86_PTE_P)); 1743 1743 1744 Log(("IOMMMIOModifyPage % VGp -> %VGp flags=%RX64\n", GCPhys, GCPhysRemapped, fPageFlags));1744 Log(("IOMMMIOModifyPage %RGp -> %RGp flags=%RX64\n", GCPhys, GCPhysRemapped, fPageFlags)); 1745 1745 1746 1746 /* … … 1749 1749 PIOMMMIORANGE pRange = iomMMIOGetRange(&pVM->iom.s, GCPhys); 1750 1750 AssertMsgReturn(pRange, 1751 ("Handlers and page tables are out of sync or something! GCPhys=% VGp\n", GCPhys),1751 ("Handlers and page tables are out of sync or something! GCPhys=%RGp\n", GCPhys), 1752 1752 VERR_INTERNAL_ERROR); 1753 1753 … … 1790 1790 uint32_t cb; 1791 1791 1792 Log(("IOMMMIOResetRegion % VGp\n", GCPhys));1792 Log(("IOMMMIOResetRegion %RGp\n", GCPhys)); 1793 1793 1794 1794 /* … … 1797 1797 PIOMMMIORANGE pRange = iomMMIOGetRange(&pVM->iom.s, GCPhys); 1798 1798 AssertMsgReturn(pRange, 1799 ("Handlers and page tables are out of sync or something! GCPhys=% VGp\n", GCPhys),1799 ("Handlers and page tables are out of sync or something! GCPhys=%RGp\n", GCPhys), 1800 1800 VERR_INTERNAL_ERROR); 1801 1801
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器