- Timestamp:
- Sep 26, 2008 4:13:09 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37112
- Location:
- trunk/src/VBox
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r11536 r12772 3216 3216 uint32_t b; 3217 3217 uint32_t write_mask, bit_mask, set_mask; 3218 uint32_t aVal[4]; /** @todo r=bird: Why is this an 32-bit array? */3218 uint32_t aVal[4]; 3219 3219 unsigned i; 3220 3220 NOREF(pvUser); -
trunk/src/VBox/VMM/IOM.cpp
r12721 r12772 119 119 *******************************************************************************/ 120 120 static void iomR3FlushCache(PVM pVM); 121 static DECLCALLBACK(int) iom r3RelocateIOPortCallback(PAVLROIOPORTNODECORE pNode, void *pvUser);122 static DECLCALLBACK(int) iom r3RelocateMMIOCallback(PAVLROGCPHYSNODECORE pNode, void *pvUser);121 static DECLCALLBACK(int) iomR3RelocateIOPortCallback(PAVLROIOPORTNODECORE pNode, void *pvUser); 122 static DECLCALLBACK(int) iomR3RelocateMMIOCallback(PAVLROGCPHYSNODECORE pNode, void *pvUser); 123 123 static DECLCALLBACK(void) iomR3IOPortInfo(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs); 124 124 static DECLCALLBACK(void) iomR3MMIOInfo(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs); … … 129 129 130 130 #ifdef VBOX_WITH_STATISTICS 131 static const char *iom r3IOPortGetStandardName(RTIOPORT Port);131 static const char *iomR3IOPortGetStandardName(RTIOPORT Port); 132 132 #endif 133 133 … … 157 157 * Allocate the trees structure. 158 158 */ 159 int rc = MMHyperAlloc(pVM, sizeof(*pVM->iom.s.pTreesHC), 0, MM_TAG_IOM, (void **)&pVM->iom.s.pTreesHC); 160 if (VBOX_SUCCESS(rc)) 161 { 162 pVM->iom.s.pTreesGC = MMHyperHC2GC(pVM, pVM->iom.s.pTreesHC); 163 pVM->iom.s.pfnMMIOHandlerGC = NIL_RTGCPTR; 159 int rc = MMHyperAlloc(pVM, sizeof(*pVM->iom.s.pTreesR3), 0, MM_TAG_IOM, (void **)&pVM->iom.s.pTreesR3); 160 if (RT_SUCCESS(rc)) 161 { 162 pVM->iom.s.pTreesRC = MMHyperR3ToRC(pVM, pVM->iom.s.pTreesR3); 163 pVM->iom.s.pTreesR0 = MMHyperR3ToR0(pVM, pVM->iom.s.pTreesR3); 164 pVM->iom.s.pfnMMIOHandlerRC = NIL_RTGCPTR; 164 165 pVM->iom.s.pfnMMIOHandlerR0 = NIL_RTR0PTR; 165 166 … … 173 174 * Statistics. 174 175 */ 175 STAM_REG(pVM, &pVM->iom.s.StatGCMMIOHandler, STAMTYPE_PROFILE, "/IOM/GC/MMIOHandler", STAMUNIT_TICKS_PER_CALL, "Profiling of the IOMGCMMIOHandler() body, only success calls."); 176 STAM_REG(pVM, &pVM->iom.s.StatGCMMIOFailures, STAMTYPE_COUNTER, "/IOM/GC/MMIOFailures", STAMUNIT_OCCURENCES, "Number of times IOMGCMMIOHandler() didn't service the request."); 177 STAM_REG(pVM, &pVM->iom.s.StatGCInstMov, STAMTYPE_PROFILE, "/IOM/GC/Inst/MOV", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOV instruction emulation."); 178 STAM_REG(pVM, &pVM->iom.s.StatGCInstCmp, STAMTYPE_PROFILE, "/IOM/GC/Inst/CMP", STAMUNIT_TICKS_PER_CALL, "Profiling of the CMP instruction emulation."); 179 STAM_REG(pVM, &pVM->iom.s.StatGCInstAnd, STAMTYPE_PROFILE, "/IOM/GC/Inst/AND", STAMUNIT_TICKS_PER_CALL, "Profiling of the AND instruction emulation."); 180 STAM_REG(pVM, &pVM->iom.s.StatGCInstOr, STAMTYPE_PROFILE, "/IOM/GC/Inst/OR", STAMUNIT_TICKS_PER_CALL, "Profiling of the OR instruction emulation."); 181 STAM_REG(pVM, &pVM->iom.s.StatGCInstXor, STAMTYPE_PROFILE, "/IOM/GC/Inst/XOR", STAMUNIT_TICKS_PER_CALL, "Profiling of the XOR instruction emulation."); 182 STAM_REG(pVM, &pVM->iom.s.StatGCInstBt, STAMTYPE_PROFILE, "/IOM/GC/Inst/BT", STAMUNIT_TICKS_PER_CALL, "Profiling of the BT instruction emulation."); 183 STAM_REG(pVM, &pVM->iom.s.StatGCInstTest, STAMTYPE_PROFILE, "/IOM/GC/Inst/TEST", STAMUNIT_TICKS_PER_CALL, "Profiling of the TEST instruction emulation."); 184 STAM_REG(pVM, &pVM->iom.s.StatGCInstXchg, STAMTYPE_PROFILE, "/IOM/GC/Inst/XCHG", STAMUNIT_TICKS_PER_CALL, "Profiling of the XCHG instruction emulation."); 185 STAM_REG(pVM, &pVM->iom.s.StatGCInstStos, STAMTYPE_PROFILE, "/IOM/GC/Inst/STOS", STAMUNIT_TICKS_PER_CALL, "Profiling of the STOS instruction emulation."); 186 STAM_REG(pVM, &pVM->iom.s.StatGCInstLods, STAMTYPE_PROFILE, "/IOM/GC/Inst/LODS", STAMUNIT_TICKS_PER_CALL, "Profiling of the LODS instruction emulation."); 187 STAM_REG(pVM, &pVM->iom.s.StatGCInstMovs, STAMTYPE_PROFILE, "/IOM/GC/Inst/MOVS", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOVS instruction emulation."); 188 STAM_REG(pVM, &pVM->iom.s.StatGCInstMovsToMMIO, STAMTYPE_PROFILE, "/IOM/GC/Inst/MOVS/ToMMIO", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOVS instruction emulation - Mem2MMIO."); 189 STAM_REG(pVM, &pVM->iom.s.StatGCInstMovsFromMMIO, STAMTYPE_PROFILE, "/IOM/GC/Inst/MOVS/FromMMIO", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOVS instruction emulation - MMIO2Mem."); 190 STAM_REG(pVM, &pVM->iom.s.StatGCInstMovsMMIO, STAMTYPE_PROFILE, "/IOM/GC/Inst/MOVS/MMIO2MMIO", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOVS instruction emulation - MMIO2MMIO."); 191 STAM_REG(pVM, &pVM->iom.s.StatGCInstOther, STAMTYPE_COUNTER, "/IOM/GC/Inst/Other", STAMUNIT_OCCURENCES, "Other instructions counter."); 192 STAM_REG(pVM, &pVM->iom.s.StatGCMMIO1Byte, STAMTYPE_COUNTER, "/IOM/GC/MMIO/Access1", STAMUNIT_OCCURENCES, "MMIO access by 1 byte counter."); 193 STAM_REG(pVM, &pVM->iom.s.StatGCMMIO2Bytes, STAMTYPE_COUNTER, "/IOM/GC/MMIO/Access2", STAMUNIT_OCCURENCES, "MMIO access by 2 bytes counter."); 194 STAM_REG(pVM, &pVM->iom.s.StatGCMMIO4Bytes, STAMTYPE_COUNTER, "/IOM/GC/MMIO/Access4", STAMUNIT_OCCURENCES, "MMIO access by 4 bytes counter."); 195 STAM_REG(pVM, &pVM->iom.s.StatGCMMIO8Bytes, STAMTYPE_COUNTER, "/IOM/GC/MMIO/Access8", STAMUNIT_OCCURENCES, "MMIO access by 8 bytes counter."); 196 STAM_REG(pVM, &pVM->iom.s.StatGCIOPortHandler, STAMTYPE_PROFILE, "/IOM/GC/PortIOHandler", STAMUNIT_TICKS_PER_CALL, "Profiling of the IOMGCPortIOHandler() body, only success calls."); 197 STAM_REG(pVM, &pVM->iom.s.StatGCInstIn, STAMTYPE_COUNTER, "/IOM/GC/Inst/In", STAMUNIT_OCCURENCES, "Counter of any IN instructions."); 198 STAM_REG(pVM, &pVM->iom.s.StatGCInstOut, STAMTYPE_COUNTER, "/IOM/GC/Inst/Out", STAMUNIT_OCCURENCES, "Counter of any OUT instructions."); 199 STAM_REG(pVM, &pVM->iom.s.StatGCInstIns, STAMTYPE_COUNTER, "/IOM/GC/Inst/Ins", STAMUNIT_OCCURENCES, "Counter of any INS instructions."); 200 STAM_REG(pVM, &pVM->iom.s.StatGCInstOuts, STAMTYPE_COUNTER, "/IOM/GC/Inst/Outs", STAMUNIT_OCCURENCES, "Counter of any OUTS instructions."); 176 STAM_REG(pVM, &pVM->iom.s.StatRZMMIOHandler, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler", STAMUNIT_TICKS_PER_CALL, "Profiling of the IOMMMIOHandler() body, only success calls."); 177 STAM_REG(pVM, &pVM->iom.s.StatRZMMIO1Byte, STAMTYPE_COUNTER, "/IOM/RZ-MMIOHandler/Access1", STAMUNIT_OCCURENCES, "MMIO access by 1 byte counter."); 178 STAM_REG(pVM, &pVM->iom.s.StatRZMMIO2Bytes, STAMTYPE_COUNTER, "/IOM/RZ-MMIOHandler/Access2", STAMUNIT_OCCURENCES, "MMIO access by 2 bytes counter."); 179 STAM_REG(pVM, &pVM->iom.s.StatRZMMIO4Bytes, STAMTYPE_COUNTER, "/IOM/RZ-MMIOHandler/Access4", STAMUNIT_OCCURENCES, "MMIO access by 4 bytes counter."); 180 STAM_REG(pVM, &pVM->iom.s.StatRZMMIO8Bytes, STAMTYPE_COUNTER, "/IOM/RZ-MMIOHandler/Access8", STAMUNIT_OCCURENCES, "MMIO access by 8 bytes counter."); 181 STAM_REG(pVM, &pVM->iom.s.StatRZMMIOFailures, STAMTYPE_COUNTER, "/IOM/RZ-MMIOHandler/MMIOFailures", STAMUNIT_OCCURENCES, "Number of times IOMMMIOHandler() didn't service the request."); 182 STAM_REG(pVM, &pVM->iom.s.StatRZInstMov, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/MOV", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOV instruction emulation."); 183 STAM_REG(pVM, &pVM->iom.s.StatRZInstCmp, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/CMP", STAMUNIT_TICKS_PER_CALL, "Profiling of the CMP instruction emulation."); 184 STAM_REG(pVM, &pVM->iom.s.StatRZInstAnd, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/AND", STAMUNIT_TICKS_PER_CALL, "Profiling of the AND instruction emulation."); 185 STAM_REG(pVM, &pVM->iom.s.StatRZInstOr, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/OR", STAMUNIT_TICKS_PER_CALL, "Profiling of the OR instruction emulation."); 186 STAM_REG(pVM, &pVM->iom.s.StatRZInstXor, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/XOR", STAMUNIT_TICKS_PER_CALL, "Profiling of the XOR instruction emulation."); 187 STAM_REG(pVM, &pVM->iom.s.StatRZInstBt, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/BT", STAMUNIT_TICKS_PER_CALL, "Profiling of the BT instruction emulation."); 188 STAM_REG(pVM, &pVM->iom.s.StatRZInstTest, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/TEST", STAMUNIT_TICKS_PER_CALL, "Profiling of the TEST instruction emulation."); 189 STAM_REG(pVM, &pVM->iom.s.StatRZInstXchg, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/XCHG", STAMUNIT_TICKS_PER_CALL, "Profiling of the XCHG instruction emulation."); 190 STAM_REG(pVM, &pVM->iom.s.StatRZInstStos, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/STOS", STAMUNIT_TICKS_PER_CALL, "Profiling of the STOS instruction emulation."); 191 STAM_REG(pVM, &pVM->iom.s.StatRZInstLods, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/LODS", STAMUNIT_TICKS_PER_CALL, "Profiling of the LODS instruction emulation."); 192 #ifdef IOM_WITH_MOVS_SUPPORT 193 STAM_REG(pVM, &pVM->iom.s.StatRZInstMovs, STAMTYPE_PROFILE_ADV, "/IOM/RZ-MMIOHandler/Inst/MOVS", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOVS instruction emulation."); 194 STAM_REG(pVM, &pVM->iom.s.StatRZInstMovsToMMIO, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/MOVS/ToMMIO", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOVS instruction emulation - Mem2MMIO."); 195 STAM_REG(pVM, &pVM->iom.s.StatRZInstMovsFromMMIO, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/MOVS/FromMMIO", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOVS instruction emulation - MMIO2Mem."); 196 STAM_REG(pVM, &pVM->iom.s.StatRZInstMovsMMIO, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/MOVS/MMIO2MMIO", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOVS instruction emulation - MMIO2MMIO."); 197 #endif 198 STAM_REG(pVM, &pVM->iom.s.StatRZInstOther, STAMTYPE_COUNTER, "/IOM/RZ-MMIOHandler/Inst/Other", STAMUNIT_OCCURENCES, "Other instructions counter."); 199 STAM_REG(pVM, &pVM->iom.s.StatR3MMIOHandler, STAMTYPE_COUNTER, "/IOM/R3-MMIOHandler", STAMUNIT_OCCURENCES, "Number of calls to IOMR3MMIOHandler."); 200 STAM_REG(pVM, &pVM->iom.s.StatInstIn, STAMTYPE_COUNTER, "/IOM/IOWork/In", STAMUNIT_OCCURENCES, "Counter of any IN instructions."); 201 STAM_REG(pVM, &pVM->iom.s.StatInstOut, STAMTYPE_COUNTER, "/IOM/IOWork/Out", STAMUNIT_OCCURENCES, "Counter of any OUT instructions."); 202 STAM_REG(pVM, &pVM->iom.s.StatInstIns, STAMTYPE_COUNTER, "/IOM/IOWork/Ins", STAMUNIT_OCCURENCES, "Counter of any INS instructions."); 203 STAM_REG(pVM, &pVM->iom.s.StatInstOuts, STAMTYPE_COUNTER, "/IOM/IOWork/Outs", STAMUNIT_OCCURENCES, "Counter of any OUTS instructions."); 201 204 } 202 205 … … 233 236 pVM->iom.s.pMMIOStatsLastR3 = NULL; 234 237 235 pVM->iom.s.pRangeLastRead GC = NIL_RTGCPTR;236 pVM->iom.s.pRangeLastWrite GC = NIL_RTGCPTR;237 pVM->iom.s.pStatsLastRead GC = NIL_RTGCPTR;238 pVM->iom.s.pStatsLastWrite GC = NIL_RTGCPTR;239 pVM->iom.s.pMMIORangeLast GC = NIL_RTGCPTR;240 pVM->iom.s.pMMIOStatsLast GC = NIL_RTGCPTR;238 pVM->iom.s.pRangeLastReadRC = NIL_RTRCPTR; 239 pVM->iom.s.pRangeLastWriteRC = NIL_RTRCPTR; 240 pVM->iom.s.pStatsLastReadRC = NIL_RTRCPTR; 241 pVM->iom.s.pStatsLastWriteRC = NIL_RTRCPTR; 242 pVM->iom.s.pMMIORangeLastRC = NIL_RTRCPTR; 243 pVM->iom.s.pMMIOStatsLastRC = NIL_RTRCPTR; 241 244 } 242 245 … … 270 273 * Apply relocations to the GC callbacks. 271 274 */ 272 pVM->iom.s.pTrees GC = MMHyperHC2GC(pVM, pVM->iom.s.pTreesHC);273 RTAvlroIOPortDoWithAll(&pVM->iom.s.pTrees HC->IOPortTreeGC, true, iomr3RelocateIOPortCallback, &offDelta);274 RTAvlroGCPhysDoWithAll(&pVM->iom.s.pTrees HC->MMIOTree, true, iomr3RelocateMMIOCallback,&offDelta);275 276 if (pVM->iom.s.pfnMMIOHandler GC)277 pVM->iom.s.pfnMMIOHandler GC += offDelta;275 pVM->iom.s.pTreesRC = MMHyperR3ToRC(pVM, pVM->iom.s.pTreesR3); 276 RTAvlroIOPortDoWithAll(&pVM->iom.s.pTreesR3->IOPortTreeRC, true, iomR3RelocateIOPortCallback, &offDelta); 277 RTAvlroGCPhysDoWithAll(&pVM->iom.s.pTreesR3->MMIOTree, true, iomR3RelocateMMIOCallback, &offDelta); 278 279 if (pVM->iom.s.pfnMMIOHandlerRC) 280 pVM->iom.s.pfnMMIOHandlerRC += offDelta; 278 281 279 282 /* 280 283 * Apply relocations to the cached GC handlers 281 284 */ 282 if (pVM->iom.s.pRangeLastRead GC)283 pVM->iom.s.pRangeLastRead GC += offDelta;284 if (pVM->iom.s.pRangeLastWrite GC)285 pVM->iom.s.pRangeLastWrite GC += offDelta;286 if (pVM->iom.s.pStatsLastRead GC)287 pVM->iom.s.pStatsLastRead GC += offDelta;288 if (pVM->iom.s.pStatsLastWrite GC)289 pVM->iom.s.pStatsLastWrite GC += offDelta;290 if (pVM->iom.s.pMMIORangeLast GC)291 pVM->iom.s.pMMIORangeLast GC += offDelta;292 if (pVM->iom.s.pMMIOStatsLast GC)293 pVM->iom.s.pMMIOStatsLast GC += offDelta;285 if (pVM->iom.s.pRangeLastReadRC) 286 pVM->iom.s.pRangeLastReadRC += offDelta; 287 if (pVM->iom.s.pRangeLastWriteRC) 288 pVM->iom.s.pRangeLastWriteRC += offDelta; 289 if (pVM->iom.s.pStatsLastReadRC) 290 pVM->iom.s.pStatsLastReadRC += offDelta; 291 if (pVM->iom.s.pStatsLastWriteRC) 292 pVM->iom.s.pStatsLastWriteRC += offDelta; 293 if (pVM->iom.s.pMMIORangeLastRC) 294 pVM->iom.s.pMMIORangeLastRC += offDelta; 295 if (pVM->iom.s.pMMIOStatsLastRC) 296 pVM->iom.s.pMMIOStatsLastRC += offDelta; 294 297 } 295 298 … … 299 302 * 300 303 * @returns 0 (continue enum) 301 * @param pNode Pointer to a IOMIOPORTRANGE GC node.304 * @param pNode Pointer to a IOMIOPORTRANGERC node. 302 305 * @param pvUser Pointer to the offDelta. This is a pointer to the delta since we're 303 306 * not certain the delta will fit in a void pointer for all possible configs. 304 307 */ 305 static DECLCALLBACK(int) iom r3RelocateIOPortCallback(PAVLROIOPORTNODECORE pNode, void *pvUser)306 { 307 PIOMIOPORTRANGE GC pRange = (PIOMIOPORTRANGEGC)pNode;308 static DECLCALLBACK(int) iomR3RelocateIOPortCallback(PAVLROIOPORTNODECORE pNode, void *pvUser) 309 { 310 PIOMIOPORTRANGERC pRange = (PIOMIOPORTRANGERC)pNode; 308 311 RTGCINTPTR offDelta = *(PRTGCINTPTR)pvUser; 309 312 … … 332 335 * not certain the delta will fit in a void pointer for all possible configs. 333 336 */ 334 static DECLCALLBACK(int) iom r3RelocateMMIOCallback(PAVLROGCPHYSNODECORE pNode, void *pvUser)337 static DECLCALLBACK(int) iomR3RelocateMMIOCallback(PAVLROGCPHYSNODECORE pNode, void *pvUser) 335 338 { 336 339 PIOMMMIORANGE pRange = (PIOMMMIORANGE)pNode; 337 340 RTGCINTPTR offDelta = *(PRTGCINTPTR)pvUser; 338 341 339 if (pRange->pDevIns GC)340 pRange->pDevIns GC += offDelta;341 if (pRange->pfnWriteCallback GC)342 pRange->pfnWriteCallback GC += offDelta;343 if (pRange->pfnReadCallback GC)344 pRange->pfnReadCallback GC += offDelta;345 if (pRange->pfnFillCallback GC)346 pRange->pfnFillCallback GC += offDelta;347 if (pRange->pvUser GC > _64K)348 pRange->pvUser GC += offDelta;342 if (pRange->pDevInsRC) 343 pRange->pDevInsRC += offDelta; 344 if (pRange->pfnWriteCallbackRC) 345 pRange->pfnWriteCallbackRC += offDelta; 346 if (pRange->pfnReadCallbackRC) 347 pRange->pfnReadCallbackRC += offDelta; 348 if (pRange->pfnFillCallbackRC) 349 pRange->pfnFillCallbackRC += offDelta; 350 if (pRange->pvUserRC > _64K) 351 pRange->pvUserRC += offDelta; 349 352 350 353 return 0; … … 370 373 } 371 374 372 373 375 #ifdef VBOX_WITH_STATISTICS 376 374 377 /** 375 378 * Create the statistics node for an I/O port. … … 381 384 * @param pszDesc Description. 382 385 */ 383 PIOMIOPORTSTATS iom r3IOPortStatsCreate(PVM pVM, RTIOPORT Port, const char *pszDesc)386 PIOMIOPORTSTATS iomR3IOPortStatsCreate(PVM pVM, RTIOPORT Port, const char *pszDesc) 384 387 { 385 388 /* check if it already exists. */ 386 PIOMIOPORTSTATS pPort = (PIOMIOPORTSTATS)RTAvloIOPortGet(&pVM->iom.s.pTrees HC->IOPortStatTree, Port);389 PIOMIOPORTSTATS pPort = (PIOMIOPORTSTATS)RTAvloIOPortGet(&pVM->iom.s.pTreesR3->IOPortStatTree, Port); 387 390 if (pPort) 388 391 return pPort; … … 391 394 int rc = MMHyperAlloc(pVM, sizeof(*pPort), 0, MM_TAG_IOM_STATS, (void **)&pPort); 392 395 AssertRC(rc); 393 if ( VBOX_SUCCESS(rc))396 if (RT_SUCCESS(rc)) 394 397 { 395 398 /* insert into the tree. */ 396 399 pPort->Core.Key = Port; 397 if (RTAvloIOPortInsert(&pVM->iom.s.pTrees HC->IOPortStatTree, &pPort->Core))400 if (RTAvloIOPortInsert(&pVM->iom.s.pTreesR3->IOPortStatTree, &pPort->Core)) 398 401 { 399 402 /* put a name on common ports. */ 400 403 if (!pszDesc) 401 pszDesc = iom r3IOPortGetStandardName(Port);404 pszDesc = iomR3IOPortGetStandardName(Port); 402 405 403 406 /* register the statistics counters. */ 404 char szName[64]; 405 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-R3", Port); 406 rc = STAMR3Register(pVM, &pPort->InR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc); 407 AssertRC(rc); 408 409 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-R3", Port); 410 rc = STAMR3Register(pVM, &pPort->OutR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc); 411 AssertRC(rc); 412 413 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-GC", Port); 414 rc = STAMR3Register(pVM, &pPort->InGC, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc); 415 AssertRC(rc); 416 417 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-GC", Port); 418 rc = STAMR3Register(pVM, &pPort->OutGC, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc); 419 AssertRC(rc); 420 421 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-GC-2-R3", Port); 422 rc = STAMR3Register(pVM, &pPort->InGCToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc); 423 AssertRC(rc); 424 425 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-GC-2-R3", Port); 426 rc = STAMR3Register(pVM, &pPort->OutGCToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc); 427 AssertRC(rc); 428 429 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-R0", Port); 430 rc = STAMR3Register(pVM, &pPort->InR0, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc); 431 AssertRC(rc); 432 433 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-R0", Port); 434 rc = STAMR3Register(pVM, &pPort->OutR0, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc); 435 AssertRC(rc); 436 437 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-R0-2-R3", Port); 438 rc = STAMR3Register(pVM, &pPort->InR0ToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc); 439 AssertRC(rc); 440 441 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-R0-2-R3", Port); 442 rc = STAMR3Register(pVM, &pPort->OutR0ToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc); 443 AssertRC(rc); 407 rc = STAMR3RegisterF(pVM, &pPort->InR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/Ports/%04x-In-R3", Port); AssertRC(rc); 408 rc = STAMR3RegisterF(pVM, &pPort->OutR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/Ports/%04x-Out-R3", Port); AssertRC(rc); 409 rc = STAMR3RegisterF(pVM, &pPort->InRZ, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/Ports/%04x-In-RZ", Port); AssertRC(rc); 410 rc = STAMR3RegisterF(pVM, &pPort->OutRZ, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/Ports/%04x-Out-RZ", Port); AssertRC(rc); 411 rc = STAMR3RegisterF(pVM, &pPort->InRZToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/Ports/%04x-In-RZ-2-R3", Port); AssertRC(rc); 412 rc = STAMR3RegisterF(pVM, &pPort->OutRZToR3,STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/Ports/%04x-Out-RZ-2-R3", Port); AssertRC(rc); 444 413 445 414 /* Profiling */ 446 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-R3/Prof", Port); 447 rc = STAMR3Register(pVM, &pPort->ProfInR3, STAMTYPE_PROFILE, STAMVISIBILITY_USED, szName, STAMUNIT_TICKS_PER_CALL, pszDesc); 448 AssertRC(rc); 449 450 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-R3/Prof", Port); 451 rc = STAMR3Register(pVM, &pPort->ProfOutR3, STAMTYPE_PROFILE, STAMVISIBILITY_USED, szName, STAMUNIT_TICKS_PER_CALL, pszDesc); 452 AssertRC(rc); 453 454 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-GC/Prof", Port); 455 rc = STAMR3Register(pVM, &pPort->ProfInGC, STAMTYPE_PROFILE, STAMVISIBILITY_USED, szName, STAMUNIT_TICKS_PER_CALL, pszDesc); 456 AssertRC(rc); 457 458 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-GC/Prof", Port); 459 rc = STAMR3Register(pVM, &pPort->ProfOutGC, STAMTYPE_PROFILE, STAMVISIBILITY_USED, szName, STAMUNIT_TICKS_PER_CALL, pszDesc); 460 AssertRC(rc); 461 462 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-R0/Prof", Port); 463 rc = STAMR3Register(pVM, &pPort->ProfInR0, STAMTYPE_PROFILE, STAMVISIBILITY_USED, szName, STAMUNIT_TICKS_PER_CALL, pszDesc); 464 AssertRC(rc); 465 466 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-R0/Prof", Port); 467 rc = STAMR3Register(pVM, &pPort->ProfOutR0, STAMTYPE_PROFILE, STAMVISIBILITY_USED, szName, STAMUNIT_TICKS_PER_CALL, pszDesc); 468 AssertRC(rc); 415 rc = STAMR3RegisterF(pVM, &pPort->ProfInR3, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc,"/IOM/Ports/%04x-In-R3/Prof", Port); AssertRC(rc); 416 rc = STAMR3RegisterF(pVM, &pPort->ProfOutR3,STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc,"/IOM/Ports/%04x-Out-R3/Prof", Port); AssertRC(rc); 417 rc = STAMR3RegisterF(pVM, &pPort->ProfInRZ, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc,"/IOM/Ports/%04x-In-RZ/Prof", Port); AssertRC(rc); 418 rc = STAMR3RegisterF(pVM, &pPort->ProfOutRZ,STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc,"/IOM/Ports/%04x-Out-RZ/Prof", Port); AssertRC(rc); 469 419 470 420 return pPort; … … 492 442 #endif 493 443 /* check if it already exists. */ 494 PIOMMMIOSTATS pStats = (PIOMMMIOSTATS)RTAvloGCPhysGet(&pVM->iom.s.pTrees HC->MMIOStatTree, GCPhys);444 PIOMMMIOSTATS pStats = (PIOMMMIOSTATS)RTAvloGCPhysGet(&pVM->iom.s.pTreesR3->MMIOStatTree, GCPhys); 495 445 if (pStats) 496 446 return pStats; … … 499 449 int rc = MMHyperAlloc(pVM, sizeof(*pStats), 0, MM_TAG_IOM_STATS, (void **)&pStats); 500 450 AssertRC(rc); 501 if ( VBOX_SUCCESS(rc))451 if (RT_SUCCESS(rc)) 502 452 { 503 453 /* insert into the tree. */ 504 454 pStats->Core.Key = GCPhys; 505 if (RTAvloGCPhysInsert(&pVM->iom.s.pTrees HC->MMIOStatTree, &pStats->Core))455 if (RTAvloGCPhysInsert(&pVM->iom.s.pTreesR3->MMIOStatTree, &pStats->Core)) 506 456 { 507 457 /* register the statistics counters. */ 508 rc = STAMR3RegisterF(pVM, &pStats->ReadR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-R3", GCPhys); 509 AssertRC(rc); 510 rc = STAMR3RegisterF(pVM, &pStats->WriteR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-R3", GCPhys); 511 AssertRC(rc); 512 rc = STAMR3RegisterF(pVM, &pStats->ReadGC, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-GC", GCPhys); 513 AssertRC(rc); 514 rc = STAMR3RegisterF(pVM, &pStats->WriteGC, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-GC", GCPhys); 515 AssertRC(rc); 516 rc = STAMR3RegisterF(pVM, &pStats->ReadGCToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-GC-2-R3", GCPhys); 517 AssertRC(rc); 518 rc = STAMR3RegisterF(pVM, &pStats->WriteGCToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-GC-2-R3", GCPhys); 519 AssertRC(rc); 520 rc = STAMR3RegisterF(pVM, &pStats->ReadR0, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-R0", GCPhys); 521 AssertRC(rc); 522 rc = STAMR3RegisterF(pVM, &pStats->WriteR0, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-R0", GCPhys); 523 AssertRC(rc); 524 rc = STAMR3RegisterF(pVM, &pStats->ReadR0ToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-R0-2-R3", GCPhys); 525 AssertRC(rc); 526 rc = STAMR3RegisterF(pVM, &pStats->WriteR0ToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-R0-2-R3", GCPhys); 527 AssertRC(rc); 458 rc = STAMR3RegisterF(pVM, &pStats->ReadR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-R3", GCPhys); AssertRC(rc); 459 rc = STAMR3RegisterF(pVM, &pStats->WriteR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-R3", GCPhys); AssertRC(rc); 460 rc = STAMR3RegisterF(pVM, &pStats->ReadRZ, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-RZ", GCPhys); AssertRC(rc); 461 rc = STAMR3RegisterF(pVM, &pStats->WriteRZ, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-RZ", GCPhys); AssertRC(rc); 462 rc = STAMR3RegisterF(pVM, &pStats->ReadRZToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-RZ-2-R3", GCPhys); AssertRC(rc); 463 rc = STAMR3RegisterF(pVM, &pStats->WriteRZToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-RZ-2-R3", GCPhys); AssertRC(rc); 528 464 529 465 /* Profiling */ 530 rc = STAMR3RegisterF(pVM, &pStats->ProfReadR3, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Read-R3/Prof", GCPhys); 531 AssertRC(rc); 532 rc = STAMR3RegisterF(pVM, &pStats->ProfWriteR3, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Write-R3/Prof", GCPhys); 533 AssertRC(rc); 534 rc = STAMR3RegisterF(pVM, &pStats->ProfReadGC, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Read-GC/Prof", GCPhys); 535 AssertRC(rc); 536 rc = STAMR3RegisterF(pVM, &pStats->ProfWriteGC, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Write-GC/Prof", GCPhys); 537 AssertRC(rc); 538 rc = STAMR3RegisterF(pVM, &pStats->ProfReadR0, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Read-R0/Prof", GCPhys); 539 AssertRC(rc); 540 rc = STAMR3RegisterF(pVM, &pStats->ProfWriteR0, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Write-R0/Prof", GCPhys); 541 AssertRC(rc); 466 rc = STAMR3RegisterF(pVM, &pStats->ProfReadR3, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Read-R3/Prof", GCPhys); AssertRC(rc); 467 rc = STAMR3RegisterF(pVM, &pStats->ProfWriteR3, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Write-R3/Prof", GCPhys); AssertRC(rc); 468 rc = STAMR3RegisterF(pVM, &pStats->ProfReadRZ, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Read-RZ/Prof", GCPhys); AssertRC(rc); 469 rc = STAMR3RegisterF(pVM, &pStats->ProfWriteRZ, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Write-RZ/Prof", GCPhys); AssertRC(rc); 542 470 543 471 return pStats; … … 548 476 return NULL; 549 477 } 478 550 479 #endif /* VBOX_WITH_STATISTICS */ 551 480 552 553 481 /** 554 482 * Registers a I/O port ring-3 handler. 555 483 * 556 484 * This API is called by PDM on behalf of a device. Devices must first register 557 * ring-3 ranges before any GC and R0 ranges can be registerd using IOMR3IOPortRegister GC()485 * ring-3 ranges before any GC and R0 ranges can be registerd using IOMR3IOPortRegisterRC() 558 486 * and IOMR3IOPortRegisterR0(). 559 487 * … … 610 538 PIOMIOPORTRANGER3 pRange; 611 539 int rc = MMHyperAlloc(pVM, sizeof(*pRange), 0, MM_TAG_IOM, (void **)&pRange); 612 if ( VBOX_SUCCESS(rc))540 if (RT_SUCCESS(rc)) 613 541 { 614 542 pRange->Core.Key = PortStart; … … 627 555 * Try Insert it. 628 556 */ 629 if (RTAvlroIOPortInsert(&pVM->iom.s.pTrees HC->IOPortTreeR3, &pRange->Core))557 if (RTAvlroIOPortInsert(&pVM->iom.s.pTreesR3->IOPortTreeR3, &pRange->Core)) 630 558 { 631 559 #ifdef VBOX_WITH_STATISTICS 632 560 for (unsigned iPort = 0; iPort < cPorts; iPort++) 633 iom r3IOPortStatsCreate(pVM, PortStart + iPort, pszDesc);561 iomR3IOPortStatsCreate(pVM, PortStart + iPort, pszDesc); 634 562 #endif 635 563 return VINF_SUCCESS; … … 648 576 649 577 /** 650 * Registers a Port IO GC handler.578 * Registers a I/O port RC handler. 651 579 * 652 580 * This API is called by PDM on behalf of a device. Devices must first register ring-3 ranges … … 667 595 * @param pszDesc Pointer to description string. This must not be freed. 668 596 */ 669 IOMR3DECL(int) IOMR3IOPortRegister GC(PVM pVM, PPDMDEVINS pDevIns, RTIOPORT PortStart, RTUINT cPorts, RTRCPTR pvUser,597 IOMR3DECL(int) IOMR3IOPortRegisterRC(PVM pVM, PPDMDEVINS pDevIns, RTIOPORT PortStart, RTUINT cPorts, RTRCPTR pvUser, 670 598 RCPTRTYPE(PFNIOMIOPORTOUT) pfnOutCallback, RCPTRTYPE(PFNIOMIOPORTIN) pfnInCallback, 671 599 RCPTRTYPE(PFNIOMIOPORTOUTSTRING) pfnOutStrCallback, RCPTRTYPE(PFNIOMIOPORTINSTRING) pfnInStrCallback, const char *pszDesc) 672 600 { 673 LogFlow(("IOMR3IOPortRegister GC: pDevIns=%p PortStart=%#x cPorts=%#x pvUser=%VRv pfnOutCallback=%VGv pfnInCallback=%VRv pfnOutStrCallback=%VRv pfnInStrCallback=%VRv pszDesc=%s\n",601 LogFlow(("IOMR3IOPortRegisterRC: pDevIns=%p PortStart=%#x cPorts=%#x pvUser=%VRv pfnOutCallback=%VGv pfnInCallback=%VRv pfnOutStrCallback=%VRv pfnInStrCallback=%VRv pszDesc=%s\n", 674 602 pDevIns, PortStart, cPorts, pvUser, pfnOutCallback, pfnInCallback, pfnOutStrCallback, pfnInStrCallback, pszDesc)); 675 603 … … 696 624 while (Port <= PortLast && Port >= PortStart) 697 625 { 698 PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.CTX SUFF(pTrees)->IOPortTreeR3, Port);626 PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.CTX_SUFF(pTrees)->IOPortTreeR3, Port); 699 627 if (!pRange) 700 628 { … … 706 634 if (pRange->pDevIns != pDevIns) 707 635 # else 708 if (pRange->pDevIns != MMHyper GC2HC(pVM, pDevIns))636 if (pRange->pDevIns != MMHyperRCToCC(pVM, pDevIns)) 709 637 # endif 710 638 { … … 722 650 * Allocate new range record and initialize it. 723 651 */ 724 PIOMIOPORTRANGE GC pRange;652 PIOMIOPORTRANGERC pRange; 725 653 int rc = MMHyperAlloc(pVM, sizeof(*pRange), 0, MM_TAG_IOM, (void **)&pRange); 726 if ( VBOX_SUCCESS(rc))654 if (RT_SUCCESS(rc)) 727 655 { 728 656 pRange->Core.Key = PortStart; … … 735 663 pRange->pfnOutStrCallback = pfnOutStrCallback; 736 664 pRange->pfnInStrCallback = pfnInStrCallback; 737 #ifdef IN_GC 738 pRange->pDevIns = pDevIns; 739 pRange->pszDesc = MMHyperGC2HC(pVM, (void *)pszDesc); 740 #else 741 pRange->pDevIns = MMHyperHC2GC(pVM, pDevIns); 665 pRange->pDevIns = MMHyperCCToRC(pVM, pDevIns); 742 666 pRange->pszDesc = pszDesc; 743 #endif744 667 745 668 /* 746 669 * Insert it. 747 670 */ 748 if (RTAvlroIOPortInsert(&pVM->iom.s.CTX SUFF(pTrees)->IOPortTreeGC, &pRange->Core))671 if (RTAvlroIOPortInsert(&pVM->iom.s.CTX_SUFF(pTrees)->IOPortTreeRC, &pRange->Core)) 749 672 return VINF_SUCCESS; 750 673 … … 809 732 while (Port <= PortLast && Port >= PortStart) 810 733 { 811 PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.CTX SUFF(pTrees)->IOPortTreeR3, Port);734 PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.CTX_SUFF(pTrees)->IOPortTreeR3, Port); 812 735 if (!pRange) 813 736 { … … 819 742 if (pRange->pDevIns != pDevIns) 820 743 # else 821 if (pRange->pDevIns != MMHyper GC2HC(pVM, pDevIns))744 if (pRange->pDevIns != MMHyperRCToCC(pVM, pDevIns)) 822 745 # endif 823 746 { … … 837 760 PIOMIOPORTRANGER0 pRange; 838 761 int rc = MMHyperAlloc(pVM, sizeof(*pRange), 0, MM_TAG_IOM, (void **)&pRange); 839 if ( VBOX_SUCCESS(rc))762 if (RT_SUCCESS(rc)) 840 763 { 841 764 pRange->Core.Key = PortStart; … … 848 771 pRange->pfnOutStrCallback = pfnOutStrCallback; 849 772 pRange->pfnInStrCallback = pfnInStrCallback; 850 #ifdef IN_GC851 pRange->pDevIns = MMHyperGCToR0(pVM, pDevIns);852 pRange->pszDesc = MMHyperGCToR3(pVM, (void *)pszDesc);853 #elif defined(IN_RING3)854 773 pRange->pDevIns = MMHyperR3ToR0(pVM, pDevIns); 855 774 pRange->pszDesc = pszDesc; 856 #else857 pRange->pDevIns = pDevIns;858 pRange->pszDesc = MMHyperR0ToR3(pVM, (RTR0PTR)pszDesc);859 #endif860 775 861 776 /* 862 777 * Insert it. 863 778 */ 864 if (RTAvlroIOPortInsert(&pVM->iom.s.CTX SUFF(pTrees)->IOPortTreeR0, &pRange->Core))779 if (RTAvlroIOPortInsert(&pVM->iom.s.CTX_SUFF(pTrees)->IOPortTreeR0, &pRange->Core)) 865 780 return VINF_SUCCESS; 866 781 … … 918 833 while (Port <= PortLast && Port >= PortStart) 919 834 { 920 PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.pTrees HC->IOPortTreeR3, Port);835 PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.pTreesR3->IOPortTreeR3, Port); 921 836 if (pRange) 922 837 { … … 936 851 937 852 /* 938 * Remove any GC ranges first.853 * Remove any RC ranges first. 939 854 */ 940 855 int rc = VINF_SUCCESS; … … 945 860 * Try find range. 946 861 */ 947 PIOMIOPORTRANGE GC pRange = (PIOMIOPORTRANGEGC)RTAvlroIOPortRangeGet(&pVM->iom.s.pTreesHC->IOPortTreeGC, Port);862 PIOMIOPORTRANGERC pRange = (PIOMIOPORTRANGERC)RTAvlroIOPortRangeGet(&pVM->iom.s.pTreesR3->IOPortTreeRC, Port); 948 863 if (pRange) 949 864 { … … 954 869 * Kick out the entire range. 955 870 */ 956 void *pv = RTAvlroIOPortRemove(&pVM->iom.s.pTrees HC->IOPortTreeGC, Port);871 void *pv = RTAvlroIOPortRemove(&pVM->iom.s.pTreesR3->IOPortTreeRC, Port); 957 872 Assert(pv == (void *)pRange); NOREF(pv); 958 873 Port += pRange->cPorts; … … 986 901 Assert(pRange->Core.KeyLast > PortLast && pRange->Core.Key < Port); 987 902 /* create tail. */ 988 PIOMIOPORTRANGE GC pRangeNew;903 PIOMIOPORTRANGERC pRangeNew; 989 904 int rc = MMHyperAlloc(pVM, sizeof(*pRangeNew), 0, MM_TAG_IOM, (void **)&pRangeNew); 990 if ( VBOX_FAILURE(rc))905 if (RT_FAILURE(rc)) 991 906 return rc; 992 907 … … 1001 916 1002 917 /* insert */ 1003 if (!RTAvlroIOPortInsert(&pVM->iom.s.pTrees HC->IOPortTreeGC, &pRangeNew->Core))918 if (!RTAvlroIOPortInsert(&pVM->iom.s.pTreesR3->IOPortTreeRC, &pRangeNew->Core)) 1004 919 { 1005 920 AssertMsgFailed(("This cannot happen!\n")); … … 1012 927 else /* next port */ 1013 928 Port++; 1014 } /* for all ports - GC. */929 } /* for all ports - RC. */ 1015 930 1016 931 … … 1025 940 * Try find range. 1026 941 */ 1027 PIOMIOPORTRANGER0 pRange = (PIOMIOPORTRANGER0)RTAvlroIOPortRangeGet(&pVM->iom.s.pTrees HC->IOPortTreeR0, Port);942 PIOMIOPORTRANGER0 pRange = (PIOMIOPORTRANGER0)RTAvlroIOPortRangeGet(&pVM->iom.s.pTreesR3->IOPortTreeR0, Port); 1028 943 if (pRange) 1029 944 { … … 1034 949 * Kick out the entire range. 1035 950 */ 1036 void *pv = RTAvlroIOPortRemove(&pVM->iom.s.pTrees HC->IOPortTreeR0, Port);951 void *pv = RTAvlroIOPortRemove(&pVM->iom.s.pTreesR3->IOPortTreeR0, Port); 1037 952 Assert(pv == (void *)pRange); NOREF(pv); 1038 953 Port += pRange->cPorts; … … 1068 983 PIOMIOPORTRANGER0 pRangeNew; 1069 984 int rc = MMHyperAlloc(pVM, sizeof(*pRangeNew), 0, MM_TAG_IOM, (void **)&pRangeNew); 1070 if ( VBOX_FAILURE(rc))985 if (RT_FAILURE(rc)) 1071 986 return rc; 1072 987 … … 1081 996 1082 997 /* insert */ 1083 if (!RTAvlroIOPortInsert(&pVM->iom.s.pTrees HC->IOPortTreeR0, &pRangeNew->Core))998 if (!RTAvlroIOPortInsert(&pVM->iom.s.pTreesR3->IOPortTreeR0, &pRangeNew->Core)) 1084 999 { 1085 1000 AssertMsgFailed(("This cannot happen!\n")); … … 1103 1018 * Try find range. 1104 1019 */ 1105 PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.pTrees HC->IOPortTreeR3, Port);1020 PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.pTreesR3->IOPortTreeR3, Port); 1106 1021 if (pRange) 1107 1022 { … … 1112 1027 * Kick out the entire range. 1113 1028 */ 1114 void *pv = RTAvlroIOPortRemove(&pVM->iom.s.pTrees HC->IOPortTreeR3, Port);1029 void *pv = RTAvlroIOPortRemove(&pVM->iom.s.pTreesR3->IOPortTreeR3, Port); 1115 1030 Assert(pv == (void *)pRange); NOREF(pv); 1116 1031 Port += pRange->cPorts; … … 1146 1061 PIOMIOPORTRANGER3 pRangeNew; 1147 1062 int rc = MMHyperAlloc(pVM, sizeof(*pRangeNew), 0, MM_TAG_IOM, (void **)&pRangeNew); 1148 if ( VBOX_FAILURE(rc))1063 if (RT_FAILURE(rc)) 1149 1064 return rc; 1150 1065 … … 1159 1074 1160 1075 /* insert */ 1161 if (!RTAvlroIOPortInsert(&pVM->iom.s.pTrees HC->IOPortTreeR3, &pRangeNew->Core))1076 if (!RTAvlroIOPortInsert(&pVM->iom.s.pTreesR3->IOPortTreeR3, &pRangeNew->Core)) 1162 1077 { 1163 1078 AssertMsgFailed(("This cannot happen!\n")); … … 1194 1109 case 1: *pu32 = 0xff; break; 1195 1110 case 2: *pu32 = 0xffff; break; 1196 case 4: *pu32 = 0xffffffff; break;1111 case 4: *pu32 = UINT32_C(0xffffffff); break; 1197 1112 default: 1198 1113 AssertReleaseMsgFailed(("cb=%d\n", cb)); … … 1287 1202 * @param pvUser Pointer to info output callback structure. 1288 1203 */ 1289 static DECLCALLBACK(int) iomR3IOPortInfoOne GC(PAVLROIOPORTNODECORE pNode, void *pvUser)1290 { 1291 PIOMIOPORTRANGE GC pRange = (PIOMIOPORTRANGEGC)pNode;1204 static DECLCALLBACK(int) iomR3IOPortInfoOneRC(PAVLROIOPORTNODECORE pNode, void *pvUser) 1205 { 1206 PIOMIOPORTRANGERC pRange = (PIOMIOPORTRANGERC)pNode; 1292 1207 PCDBGFINFOHLP pHlp = (PCDBGFINFOHLP)pvUser; 1293 1208 pHlp->pfnPrintf(pHlp, … … 1322 1237 sizeof(RTHCPTR) * 2, "Out ", 1323 1238 sizeof(RTHCPTR) * 2, "pvUser "); 1324 RTAvlroIOPortDoWithAll(&pVM->iom.s.pTrees HC->IOPortTreeR3, true, iomR3IOPortInfoOneR3, (void *)pHlp);1239 RTAvlroIOPortDoWithAll(&pVM->iom.s.pTreesR3->IOPortTreeR3, true, iomR3IOPortInfoOneR3, (void *)pHlp); 1325 1240 1326 1241 pHlp->pfnPrintf(pHlp, … … 1332 1247 sizeof(RTHCPTR) * 2, "Out ", 1333 1248 sizeof(RTHCPTR) * 2, "pvUser "); 1334 RTAvlroIOPortDoWithAll(&pVM->iom.s.pTrees HC->IOPortTreeR0, true, iomR3IOPortInfoOneR3, (void *)pHlp);1249 RTAvlroIOPortDoWithAll(&pVM->iom.s.pTreesR3->IOPortTreeR0, true, iomR3IOPortInfoOneR3, (void *)pHlp); 1335 1250 1336 1251 pHlp->pfnPrintf(pHlp, … … 1342 1257 sizeof(RTRCPTR) * 2, "Out ", 1343 1258 sizeof(RTRCPTR) * 2, "pvUser "); 1344 RTAvlroIOPortDoWithAll(&pVM->iom.s.pTrees HC->IOPortTreeGC, true, iomR3IOPortInfoOneGC, (void *)pHlp);1345 1346 if (pVM->iom.s.pRangeLastRead GC)1347 { 1348 PIOMIOPORTRANGE GC pRange = (PIOMIOPORTRANGEGC)MMHyperGC2HC(pVM, pVM->iom.s.pRangeLastReadGC);1349 pHlp->pfnPrintf(pHlp, " GC Read Ports: %#04x-%#04x %VRv %s\n",1350 pRange->Port, pRange->Port + pRange->cPorts, pVM->iom.s.pRangeLastRead GC, pRange->pszDesc);1351 } 1352 if (pVM->iom.s.pStatsLastRead GC)1353 { 1354 PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyper GC2HC(pVM, pVM->iom.s.pStatsLastReadGC);1355 pHlp->pfnPrintf(pHlp, " GC Read Stats: %#04x %VRv\n",1356 pRange->Core.Key, pVM->iom.s.pStatsLastRead GC);1357 } 1358 1359 if (pVM->iom.s.pRangeLastWrite GC)1360 { 1361 PIOMIOPORTRANGE GC pRange = (PIOMIOPORTRANGEGC)MMHyperGC2HC(pVM, pVM->iom.s.pRangeLastWriteGC);1362 pHlp->pfnPrintf(pHlp, " GC Write Ports: %#04x-%#04x %VRv %s\n",1363 pRange->Port, pRange->Port + pRange->cPorts, pVM->iom.s.pRangeLastWrite GC, pRange->pszDesc);1364 } 1365 if (pVM->iom.s.pStatsLastWrite GC)1366 { 1367 PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyper GC2HC(pVM, pVM->iom.s.pStatsLastWriteGC);1368 pHlp->pfnPrintf(pHlp, " GC Write Stats: %#04x %VRv\n",1369 pRange->Core.Key, pVM->iom.s.pStatsLastWrite GC);1259 RTAvlroIOPortDoWithAll(&pVM->iom.s.pTreesR3->IOPortTreeRC, true, iomR3IOPortInfoOneRC, (void *)pHlp); 1260 1261 if (pVM->iom.s.pRangeLastReadRC) 1262 { 1263 PIOMIOPORTRANGERC pRange = (PIOMIOPORTRANGERC)MMHyperRCToCC(pVM, pVM->iom.s.pRangeLastReadRC); 1264 pHlp->pfnPrintf(pHlp, "RC Read Ports: %#04x-%#04x %VRv %s\n", 1265 pRange->Port, pRange->Port + pRange->cPorts, pVM->iom.s.pRangeLastReadRC, pRange->pszDesc); 1266 } 1267 if (pVM->iom.s.pStatsLastReadRC) 1268 { 1269 PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyperRCToCC(pVM, pVM->iom.s.pStatsLastReadRC); 1270 pHlp->pfnPrintf(pHlp, "RC Read Stats: %#04x %VRv\n", 1271 pRange->Core.Key, pVM->iom.s.pStatsLastReadRC); 1272 } 1273 1274 if (pVM->iom.s.pRangeLastWriteRC) 1275 { 1276 PIOMIOPORTRANGERC pRange = (PIOMIOPORTRANGERC)MMHyperRCToCC(pVM, pVM->iom.s.pRangeLastWriteRC); 1277 pHlp->pfnPrintf(pHlp, "RC Write Ports: %#04x-%#04x %VRv %s\n", 1278 pRange->Port, pRange->Port + pRange->cPorts, pVM->iom.s.pRangeLastWriteRC, pRange->pszDesc); 1279 } 1280 if (pVM->iom.s.pStatsLastWriteRC) 1281 { 1282 PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyperRCToCC(pVM, pVM->iom.s.pStatsLastWriteRC); 1283 pHlp->pfnPrintf(pHlp, "RC Write Stats: %#04x %VRv\n", 1284 pRange->Core.Key, pVM->iom.s.pStatsLastWriteRC); 1370 1285 } 1371 1286 … … 1373 1288 { 1374 1289 PIOMIOPORTRANGER3 pRange = pVM->iom.s.pRangeLastReadR3; 1375 pHlp->pfnPrintf(pHlp, " HCRead Ports: %#04x-%#04x %VHv %s\n",1290 pHlp->pfnPrintf(pHlp, "R3 Read Ports: %#04x-%#04x %VHv %s\n", 1376 1291 pRange->Port, pRange->Port + pRange->cPorts, pRange, pRange->pszDesc); 1377 1292 } … … 1379 1294 { 1380 1295 PIOMIOPORTSTATS pRange = pVM->iom.s.pStatsLastReadR3; 1381 pHlp->pfnPrintf(pHlp, " HCRead Stats: %#04x %VHv\n",1296 pHlp->pfnPrintf(pHlp, "R3 Read Stats: %#04x %VHv\n", 1382 1297 pRange->Core.Key, pRange); 1383 1298 } … … 1386 1301 { 1387 1302 PIOMIOPORTRANGER3 pRange = pVM->iom.s.pRangeLastWriteR3; 1388 pHlp->pfnPrintf(pHlp, " HCWrite Ports: %#04x-%#04x %VHv %s\n",1303 pHlp->pfnPrintf(pHlp, "R3 Write Ports: %#04x-%#04x %VHv %s\n", 1389 1304 pRange->Port, pRange->Port + pRange->cPorts, pRange, pRange->pszDesc); 1390 1305 } … … 1392 1307 { 1393 1308 PIOMIOPORTSTATS pRange = pVM->iom.s.pStatsLastWriteR3; 1394 pHlp->pfnPrintf(pHlp, " HCWrite Stats: %#04x %VHv\n",1309 pHlp->pfnPrintf(pHlp, "R3 Write Stats: %#04x %VHv\n", 1395 1310 pRange->Core.Key, pRange); 1396 1311 } … … 1428 1343 * 1429 1344 * This API is called by PDM on behalf of a device. Devices must register ring-3 ranges 1430 * before any GC and R0 ranges can be registered using IOMR3MMIORegister GC() and IOMR3MMIORegisterR0().1345 * before any GC and R0 ranges can be registered using IOMR3MMIORegisterRC() and IOMR3MMIORegisterR0(). 1431 1346 * 1432 1347 * @returns VBox status code. … … 1464 1379 if (pVM->iom.s.pfnMMIOHandlerR0 == NIL_RTR0PTR) 1465 1380 { 1466 rc = PDMR3GetSymbolGCLazy(pVM, NULL, "IOMMMIOHandler", &pVM->iom.s.pfnMMIOHandler GC);1381 rc = PDMR3GetSymbolGCLazy(pVM, NULL, "IOMMMIOHandler", &pVM->iom.s.pfnMMIOHandlerRC); 1467 1382 AssertLogRelRCReturn(rc, rc); 1468 1383 rc = PDMR3GetSymbolR0Lazy(pVM, NULL, "IOMMMIOHandler", &pVM->iom.s.pfnMMIOHandlerR0); … … 1475 1390 PIOMMMIORANGE pRange; 1476 1391 rc = MMHyperAlloc(pVM, sizeof(*pRange), 0, MM_TAG_IOM, (void **)&pRange); 1477 if ( VBOX_SUCCESS(rc))1392 if (RT_SUCCESS(rc)) 1478 1393 { 1479 1394 pRange->Core.Key = GCPhysStart; … … 1495 1410 //pRange->pfnFillCallbackR0 = NIL_RTR0PTR; 1496 1411 1497 //pRange->pvUser GC = NIL_RTGCPTR;1498 //pRange->pDevIns GC = NIL_RTGCPTR;1499 //pRange->pfnReadCallback GC = NIL_RTGCPTR;1500 //pRange->pfnWriteCallback GC = NIL_RTGCPTR;1501 //pRange->pfnFillCallback GC = NIL_RTGCPTR;1412 //pRange->pvUserRC = NIL_RTRCPTR; 1413 //pRange->pDevInsRC = NIL_RTRCPTR; 1414 //pRange->pfnReadCallbackRC = NIL_RTRCPTR; 1415 //pRange->pfnWriteCallbackRC = NIL_RTRCPTR; 1416 //pRange->pfnFillCallbackRC = NIL_RTRCPTR; 1502 1417 1503 1418 /* … … 1507 1422 IOMR3MMIOHandler, pRange, 1508 1423 pVM->iom.s.pfnMMIOHandlerR0, MMHyperR3ToR0(pVM, pRange), 1509 pVM->iom.s.pfnMMIOHandler GC, MMHyperR3ToRC(pVM, pRange), pszDesc);1424 pVM->iom.s.pfnMMIOHandlerRC, MMHyperR3ToRC(pVM, pRange), pszDesc); 1510 1425 if (RT_SUCCESS(rc)) 1511 1426 { 1512 if (RTAvlroGCPhysInsert(&pVM->iom.s.pTrees HC->MMIOTree, &pRange->Core))1427 if (RTAvlroGCPhysInsert(&pVM->iom.s.pTreesR3->MMIOTree, &pRange->Core)) 1513 1428 return VINF_SUCCESS; 1514 1429 … … 1525 1440 1526 1441 /** 1527 * Registers a Memory Mapped I/O GC handler range.1442 * Registers a Memory Mapped I/O RC handler range. 1528 1443 * 1529 1444 * This API is called by PDM on behalf of a device. Devices must first register ring-3 ranges … … 1542 1457 * @param pfnFillCallback Pointer to function which is gonna handle Fill/memset operations. 1543 1458 */ 1544 IOMR3DECL(int) IOMR3MMIORegister GC(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, RTGCPTR pvUser,1459 IOMR3DECL(int) IOMR3MMIORegisterRC(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, RTGCPTR pvUser, 1545 1460 RCPTRTYPE(PFNIOMMMIOWRITE) pfnWriteCallback, RCPTRTYPE(PFNIOMMMIOREAD) pfnReadCallback, 1546 1461 RCPTRTYPE(PFNIOMMMIOFILL) pfnFillCallback) 1547 1462 { 1548 LogFlow(("IOMR3MMIORegister GC: pDevIns=%p GCPhysStart=%VGp cbRange=%#x pvUser=%VGv pfnWriteCallback=%#x pfnReadCallback=%#x pfnFillCallback=%#x\n",1463 LogFlow(("IOMR3MMIORegisterRC: pDevIns=%p GCPhysStart=%VGp cbRange=%#x pvUser=%VGv pfnWriteCallback=%#x pfnReadCallback=%#x pfnFillCallback=%#x\n", 1549 1464 pDevIns, GCPhysStart, cbRange, pvUser, pfnWriteCallback, pfnReadCallback, pfnFillCallback)); 1550 1465 … … 1567 1482 AssertReturn(pRange->cb == cbRange, VERR_IOM_INVALID_MMIO_RANGE); 1568 1483 1569 pRange->pvUser GC = pvUser;1570 pRange->pfnReadCallback GC = pfnReadCallback;1571 pRange->pfnWriteCallback GC= pfnWriteCallback;1572 pRange->pfnFillCallback GC = pfnFillCallback;1573 pRange->pDevIns GC = MMHyperCCToRC(pVM, pDevIns);1484 pRange->pvUserRC = pvUser; 1485 pRange->pfnReadCallbackRC = pfnReadCallback; 1486 pRange->pfnWriteCallbackRC= pfnWriteCallback; 1487 pRange->pfnFillCallbackRC = pfnFillCallback; 1488 pRange->pDevInsRC = MMHyperCCToRC(pVM, pDevIns); 1574 1489 1575 1490 return VINF_SUCCESS; … … 1687 1602 while (GCPhys <= GCPhysLast && GCPhys >= GCPhysStart) 1688 1603 { 1689 PIOMMMIORANGE pRange = (PIOMMMIORANGE)RTAvlroGCPhysRemove(&pVM->iom.s.pTrees HC->MMIOTree, GCPhys);1604 PIOMMMIORANGE pRange = (PIOMMMIORANGE)RTAvlroGCPhysRemove(&pVM->iom.s.pTreesR3->MMIOTree, GCPhys); 1690 1605 Assert(pRange); 1691 1606 Assert(pRange->Core.Key == GCPhys && pRange->Core.KeyLast <= GCPhysLast); … … 1717 1632 PCDBGFINFOHLP pHlp = (PCDBGFINFOHLP)pvUser; 1718 1633 pHlp->pfnPrintf(pHlp, 1719 "% VGp-%VGp %VHv %VHv %VHv %VHv %VHv %s\n",1634 "%RGp-%RGp %RHv %RHv %RHv %RHv %RHv %s\n", 1720 1635 pRange->Core.Key, 1721 1636 pRange->Core.KeyLast, … … 1727 1642 pRange->pszDesc); 1728 1643 pHlp->pfnPrintf(pHlp, 1729 "%*s % VHv %VHv %VHv %VHv %VHv\n",1644 "%*s %RHv %RHv %RHv %RHv %RHv\n", 1730 1645 sizeof(RTGCPHYS) * 2 * 2 + 1, "R0", 1731 1646 pRange->pDevInsR0, … … 1735 1650 pRange->pvUserR0); 1736 1651 pHlp->pfnPrintf(pHlp, 1737 "%*s % VRv %VRv %VRv %VRv %VRv\n",1738 sizeof(RTGCPHYS) * 2 * 2 + 1, " GC",1739 pRange->pDevIns GC,1740 pRange->pfnReadCallback GC,1741 pRange->pfnWriteCallback GC,1742 pRange->pfnFillCallback GC,1743 pRange->pvUser GC);1652 "%*s %RRv %RRv %RRv %RRv %RRv\n", 1653 sizeof(RTGCPHYS) * 2 * 2 + 1, "RC", 1654 pRange->pDevInsRC, 1655 pRange->pfnReadCallbackRC, 1656 pRange->pfnWriteCallbackRC, 1657 pRange->pfnFillCallbackRC, 1658 pRange->pvUserRC); 1744 1659 return 0; 1745 1660 } … … 1767 1682 sizeof(RTHCPTR) * 2, "pvUser ", 1768 1683 "Description"); 1769 RTAvlroGCPhysDoWithAll(&pVM->iom.s.pTrees HC->MMIOTree, true, iomR3MMIOInfoOne, (void *)pHlp);1684 RTAvlroGCPhysDoWithAll(&pVM->iom.s.pTreesR3->MMIOTree, true, iomR3MMIOInfoOne, (void *)pHlp); 1770 1685 } 1771 1686 … … 1780 1695 * @param Port The port to name. 1781 1696 */ 1782 static const char *iom r3IOPortGetStandardName(RTIOPORT Port)1697 static const char *iomR3IOPortGetStandardName(RTIOPORT Port) 1783 1698 { 1784 1699 switch (Port) -
trunk/src/VBox/VMM/IOMInternal.h
r12566 r12772 55 55 uint32_t u32Alignment; /**< Alignment padding. */ 56 56 57 /** Pointer to user argument . */57 /** Pointer to user argument - R3. */ 58 58 RTR3PTR pvUserR3; 59 /** Pointer to device instance . */59 /** Pointer to device instance - R3. */ 60 60 PPDMDEVINSR3 pDevInsR3; 61 /** Pointer to write callback function . */61 /** Pointer to write callback function - R3. */ 62 62 R3PTRTYPE(PFNIOMMMIOWRITE) pfnWriteCallbackR3; 63 /** Pointer to read callback function . */63 /** Pointer to read callback function - R3. */ 64 64 R3PTRTYPE(PFNIOMMMIOREAD) pfnReadCallbackR3; 65 /** Pointer to fill (memset) callback function . */65 /** Pointer to fill (memset) callback function - R3. */ 66 66 R3PTRTYPE(PFNIOMMMIOFILL) pfnFillCallbackR3; 67 67 68 /** Pointer to user argument . */68 /** Pointer to user argument - R0. */ 69 69 RTR0PTR pvUserR0; 70 /** Pointer to device instance . */70 /** Pointer to device instance - R0. */ 71 71 PPDMDEVINSR0 pDevInsR0; 72 /** Pointer to write callback function . */72 /** Pointer to write callback function - R0. */ 73 73 R0PTRTYPE(PFNIOMMMIOWRITE) pfnWriteCallbackR0; 74 /** Pointer to read callback function . */74 /** Pointer to read callback function - R0. */ 75 75 R0PTRTYPE(PFNIOMMMIOREAD) pfnReadCallbackR0; 76 /** Pointer to fill (memset) callback function . */76 /** Pointer to fill (memset) callback function - R0. */ 77 77 R0PTRTYPE(PFNIOMMMIOFILL) pfnFillCallbackR0; 78 78 79 /** Pointer to user argument . */80 R CPTRTYPE(void *) pvUserGC;81 /** Pointer to device instance . */82 PPDMDEVINSRC pDevIns GC;83 /** Pointer to write callback function . */84 RCPTRTYPE(PFNIOMMMIOWRITE) pfnWriteCallback GC;85 /** Pointer to read callback function . */86 RCPTRTYPE(PFNIOMMMIOREAD) pfnReadCallback GC;87 /** Pointer to fill (memset) callback function . */88 RCPTRTYPE(PFNIOMMMIOFILL) pfnFillCallback GC;79 /** Pointer to user argument - RC. */ 80 RTRCPTR pvUserRC; 81 /** Pointer to device instance - RC. */ 82 PPDMDEVINSRC pDevInsRC; 83 /** Pointer to write callback function - RC. */ 84 RCPTRTYPE(PFNIOMMMIOWRITE) pfnWriteCallbackRC; 85 /** Pointer to read callback function - RC. */ 86 RCPTRTYPE(PFNIOMMMIOREAD) pfnReadCallbackRC; 87 /** Pointer to fill (memset) callback function - RC. */ 88 RCPTRTYPE(PFNIOMMMIOFILL) pfnFillCallbackRC; 89 89 /** Alignment padding. */ 90 RTRCPTR GCPtrAlignment;90 RTRCPTR RCPtrAlignment; 91 91 92 92 /** Description / Name. For easing debugging. */ … … 101 101 * 102 102 * This is a simple way of making on demand statistics, however it's a 103 * bit free with the hypervisor heap memory. .103 * bit free with the hypervisor heap memory. 104 104 */ 105 105 typedef struct IOMMMIOSTATS … … 107 107 /** Avl node core with the address as Key. */ 108 108 AVLOGCPHYSNODECORE Core; 109 109 110 /** Number of reads to this address from R3. */ 110 111 STAMCOUNTER ReadR3; 112 /** Profiling read handler overhead in R3. */ 113 STAMPROFILEADV ProfReadR3; 114 111 115 /** Number of writes to this address from R3. */ 112 116 STAMCOUNTER WriteR3; 113 /** Number of reads to this address from R0. */114 STAMCOUNTER ReadR0;115 /** Number of writes to this address from R0. */116 STAMCOUNTER WriteR0;117 /** Number of reads to this address from GC. */118 STAMCOUNTER ReadGC;119 /** Number of writes to this address from GC. */120 STAMCOUNTER WriteGC;121 /** Profiling read handler overhead in R3. */122 STAMPROFILEADV ProfReadR3;123 117 /** Profiling write handler overhead in R3. */ 124 118 STAMPROFILEADV ProfWriteR3; 125 /** Profiling read handler overhead in R0. */ 126 STAMPROFILEADV ProfReadR0; 127 /** Profiling write handler overhead in R0. */ 128 STAMPROFILEADV ProfWriteR0; 129 /** Profiling read handler overhead in GC. */ 130 STAMPROFILEADV ProfReadGC; 131 /** Profiling write handler overhead in GC. */ 132 STAMPROFILEADV ProfWriteGC; 133 /** Number of reads to this address from R0 which was serviced in R3. */ 134 STAMCOUNTER ReadR0ToR3; 135 /** Number of writes to this address from R0 which was serviced in R3. */ 136 STAMCOUNTER WriteR0ToR3; 137 /** Number of reads to this address from GC which was serviced in R3. */ 138 STAMCOUNTER ReadGCToR3; 139 /** Number of writes to this address from GC which was serviced in R3. */ 140 STAMCOUNTER WriteGCToR3; 119 120 /** Number of reads to this address from R0/RC. */ 121 STAMCOUNTER ReadRZ; 122 /** Profiling read handler overhead in R0/RC. */ 123 STAMPROFILEADV ProfReadRZ; 124 /** Number of reads to this address from R0/RC which was serviced in R3. */ 125 STAMCOUNTER ReadRZToR3; 126 127 /** Number of writes to this address from R0/RC. */ 128 STAMCOUNTER WriteRZ; 129 /** Profiling write handler overhead in R0/RC. */ 130 STAMPROFILEADV ProfWriteRZ; 131 /** Number of writes to this address from R0/RC which was serviced in R3. */ 132 STAMCOUNTER WriteRZToR3; 141 133 } IOMMMIOSTATS; 142 134 /** Pointer to I/O port statistics. */ … … 209 201 210 202 /** 211 * I/O port range descriptor .212 */ 213 typedef struct IOMIOPORTRANGE GC203 * I/O port range descriptor, RC version. 204 */ 205 typedef struct IOMIOPORTRANGERC 214 206 { 215 207 /** Avl node core with Port as Key and Port + cPorts - 1 as KeyLast. */ … … 220 212 uint16_t cPorts; 221 213 /** Pointer to user argument. */ 222 R CPTRTYPE(void *)pvUser;214 RTRCPTR pvUser; 223 215 /** Pointer to the associated device instance. */ 224 216 RCPTRTYPE(PPDMDEVINS) pDevIns; … … 232 224 RCPTRTYPE(PFNIOMIOPORTINSTRING) pfnInStrCallback; 233 225 #if HC_ARCH_BITS == 64 234 RTRCPTR GCPtrAlignment; /**< pszDesc is 8 byte aligned. */226 RTRCPTR RCPtrAlignment; /**< pszDesc is 8 byte aligned. */ 235 227 #endif 236 228 /** Description / Name. For easing debugging. */ 237 229 R3PTRTYPE(const char *) pszDesc; 238 } IOMIOPORTRANGE GC;239 /** Pointer to I/O port range descriptor, GC version. */240 typedef IOMIOPORTRANGE GC *PIOMIOPORTRANGEGC;230 } IOMIOPORTRANGERC; 231 /** Pointer to I/O port range descriptor, RC version. */ 232 typedef IOMIOPORTRANGERC *PIOMIOPORTRANGERC; 241 233 242 234 … … 245 237 * 246 238 * This is a simple way of making on demand statistics, however it's a 247 * bit free with the hypervisor heap memory. .239 * bit free with the hypervisor heap memory. 248 240 */ 249 241 typedef struct IOMIOPORTSTATS … … 256 248 /** Number of INs to this port from R3. */ 257 249 STAMCOUNTER InR3; 250 /** Profiling IN handler overhead in R3. */ 251 STAMPROFILEADV ProfInR3; 258 252 /** Number of OUTs to this port from R3. */ 259 253 STAMCOUNTER OutR3; 260 /** Number of INs to this port from R0. */261 STAMCOUNTER InR0;262 /** Number of OUTs to this port from R0. */263 STAMCOUNTER OutR0;264 /** Number of INs to this port from GC. */265 STAMCOUNTER InGC;266 /** Number of OUTs to this port from GC. */267 STAMCOUNTER OutGC;268 /** Profiling IN handler overhead in R3. */269 STAMPROFILEADV ProfInR3;270 254 /** Profiling OUT handler overhead in R3. */ 271 255 STAMPROFILEADV ProfOutR3; 272 /** Profiling IN handler overhead in R0. */ 273 STAMPROFILEADV ProfInR0; 274 /** Profiling OUT handler overhead in R0. */ 275 STAMPROFILEADV ProfOutR0; 276 /** Profiling IN handler overhead in GC. */ 277 STAMPROFILEADV ProfInGC; 278 /** Profiling OUT handler overhead in GC. */ 279 STAMPROFILEADV ProfOutGC; 280 /** Number of INs to this port from R0 which was serviced in R3. */ 281 STAMCOUNTER InR0ToR3; 282 /** Number of OUTs to this port from R0 which was serviced in R3. */ 283 STAMCOUNTER OutR0ToR3; 284 /** Number of INs to this port from GC which was serviced in R3. */ 285 STAMCOUNTER InGCToR3; 286 /** Number of OUTs to this port from GC which was serviced in R3. */ 287 STAMCOUNTER OutGCToR3; 256 257 /** Number of INs to this port from R0/RC. */ 258 STAMCOUNTER InRZ; 259 /** Profiling IN handler overhead in R0/RC. */ 260 STAMPROFILEADV ProfInRZ; 261 /** Number of INs to this port from R0/RC which was serviced in R3. */ 262 STAMCOUNTER InRZToR3; 263 264 /** Number of OUTs to this port from R0/RC. */ 265 STAMCOUNTER OutRZ; 266 /** Profiling OUT handler overhead in R0/RC. */ 267 STAMPROFILEADV ProfOutRZ; 268 /** Number of OUTs to this port from R0/RC which was serviced in R3. */ 269 STAMCOUNTER OutRZToR3; 288 270 } IOMIOPORTSTATS; 289 271 /** Pointer to I/O port statistics. */ … … 295 277 * These are offset based the nodes and root must be in the same 296 278 * memory block in HC. The locations of IOM structure and the hypervisor heap 297 * are quite different in HC and GC.279 * are quite different in R3, R0 and RC. 298 280 */ 299 281 typedef struct IOMTREES … … 303 285 /** Tree containing I/O port range descriptors registered for R0 (IOMIOPORTRANGER0). */ 304 286 AVLROIOPORTTREE IOPortTreeR0; 305 /** Tree containing I/O port range descriptors registered for GC (IOMIOPORTRANGEGC). */306 AVLROIOPORTTREE IOPortTree GC;287 /** Tree containing I/O port range descriptors registered for RC (IOMIOPORTRANGERC). */ 288 AVLROIOPORTTREE IOPortTreeRC; 307 289 308 290 /** Tree containing the MMIO range descriptors (IOMMMIORANGE). */ … … 333 315 RTINT offVM; 334 316 335 /** Pointer to the trees - GC ptr. */ 336 RCPTRTYPE(PIOMTREES) pTreesGC; 337 /** Pointer to the trees - HC ptr. */ 338 R3R0PTRTYPE(PIOMTREES) pTreesHC; 317 /** Pointer to the trees - RC ptr. */ 318 RCPTRTYPE(PIOMTREES) pTreesRC; 319 /** Pointer to the trees - R3 ptr. */ 320 R3PTRTYPE(PIOMTREES) pTreesR3; 321 /** Pointer to the trees - R0 ptr. */ 322 R0PTRTYPE(PIOMTREES) pTreesR0; 339 323 340 324 /** The ring-0 address of IOMMMIOHandler. */ 341 325 R0PTRTYPE(PFNPGMR0PHYSHANDLER) pfnMMIOHandlerR0; 342 /** The GC address of IOMMMIOHandler. */343 RCPTRTYPE(PFNPGMGCPHYSHANDLER) pfnMMIOHandler GC;326 /** The RC address of IOMMMIOHandler. */ 327 RCPTRTYPE(PFNPGMGCPHYSHANDLER) pfnMMIOHandlerRC; 344 328 #if GC_ARCH_BITS == 64 345 329 RTRCPTR padding; 346 330 #endif 347 RTGCPTR Alignment;348 331 349 332 /** @name Caching of I/O Port and MMIO ranges and statistics. … … 364 347 R0PTRTYPE(PIOMMMIOSTATS) pMMIOStatsLastR0; 365 348 366 RCPTRTYPE(PIOMIOPORTRANGE GC) pRangeLastReadGC;367 RCPTRTYPE(PIOMIOPORTRANGE GC) pRangeLastWriteGC;368 RCPTRTYPE(PIOMIOPORTSTATS) pStatsLastRead GC;369 RCPTRTYPE(PIOMIOPORTSTATS) pStatsLastWrite GC;370 RCPTRTYPE(PIOMMMIORANGE) pMMIORangeLast GC;371 RCPTRTYPE(PIOMMMIOSTATS) pMMIOStatsLast GC;349 RCPTRTYPE(PIOMIOPORTRANGERC) pRangeLastReadRC; 350 RCPTRTYPE(PIOMIOPORTRANGERC) pRangeLastWriteRC; 351 RCPTRTYPE(PIOMIOPORTSTATS) pStatsLastReadRC; 352 RCPTRTYPE(PIOMIOPORTSTATS) pStatsLastWriteRC; 353 RCPTRTYPE(PIOMMMIORANGE) pMMIORangeLastRC; 354 RCPTRTYPE(PIOMMMIOSTATS) pMMIOStatsLastRC; 372 355 /** @} */ 373 356 374 357 /** @name I/O Port statistics. 375 358 * @{ */ 376 STAMPROFILE StatGCIOPortHandler; 377 378 STAMCOUNTER StatGCInstIn; 379 STAMCOUNTER StatGCInstOut; 380 STAMCOUNTER StatGCInstIns; 381 STAMCOUNTER StatGCInstOuts; 359 STAMCOUNTER StatInstIn; 360 STAMCOUNTER StatInstOut; 361 STAMCOUNTER StatInstIns; 362 STAMCOUNTER StatInstOuts; 382 363 /** @} */ 383 364 384 365 /** @name MMIO statistics. 385 366 * @{ */ 386 STAMPROFILE StatGCMMIOHandler; 387 STAMCOUNTER StatGCMMIOFailures; 388 389 STAMPROFILE StatGCInstMov; 390 STAMPROFILE StatGCInstCmp; 391 STAMPROFILE StatGCInstAnd; 392 STAMPROFILE StatGCInstOr; 393 STAMPROFILE StatGCInstXor; 394 STAMPROFILE StatGCInstBt; 395 STAMPROFILE StatGCInstTest; 396 STAMPROFILE StatGCInstXchg; 397 STAMPROFILE StatGCInstStos; 398 STAMPROFILE StatGCInstLods; 399 STAMPROFILE StatGCInstMovs; 400 STAMPROFILE StatGCInstMovsToMMIO; 401 STAMPROFILE StatGCInstMovsFromMMIO; 402 STAMPROFILE StatGCInstMovsMMIO; 403 STAMCOUNTER StatGCInstOther; 404 405 STAMCOUNTER StatGCMMIO1Byte; 406 STAMCOUNTER StatGCMMIO2Bytes; 407 STAMCOUNTER StatGCMMIO4Bytes; 408 STAMCOUNTER StatGCMMIO8Bytes; 409 410 RTUINT cMovsMaxBytes; 411 RTUINT cStosMaxBytes; 367 STAMPROFILE StatRZMMIOHandler; 368 STAMCOUNTER StatRZMMIOFailures; 369 370 STAMPROFILE StatRZInstMov; 371 STAMPROFILE StatRZInstCmp; 372 STAMPROFILE StatRZInstAnd; 373 STAMPROFILE StatRZInstOr; 374 STAMPROFILE StatRZInstXor; 375 STAMPROFILE StatRZInstBt; 376 STAMPROFILE StatRZInstTest; 377 STAMPROFILE StatRZInstXchg; 378 STAMPROFILE StatRZInstStos; 379 STAMPROFILE StatRZInstLods; 380 #ifdef IOM_WITH_MOVS_SUPPORT 381 STAMPROFILEADV StatRZInstMovs; 382 STAMPROFILE StatRZInstMovsToMMIO; 383 STAMPROFILE StatRZInstMovsFromMMIO; 384 STAMPROFILE StatRZInstMovsMMIO; 385 #endif 386 STAMCOUNTER StatRZInstOther; 387 388 STAMCOUNTER StatRZMMIO1Byte; 389 STAMCOUNTER StatRZMMIO2Bytes; 390 STAMCOUNTER StatRZMMIO4Bytes; 391 STAMCOUNTER StatRZMMIO8Bytes; 392 393 STAMCOUNTER StatR3MMIOHandler; 394 395 RTUINT cMovsMaxBytes; 396 RTUINT cStosMaxBytes; 412 397 /** @} */ 413 414 398 } IOM; 415 399 /** Pointer to IOM instance data. */ … … 420 404 421 405 #ifdef IN_IOM_R3 422 PIOMIOPORTSTATS iom r3IOPortStatsCreate(PVM pVM, RTIOPORT Port, const char *pszDesc);406 PIOMIOPORTSTATS iomR3IOPortStatsCreate(PVM pVM, RTIOPORT Port, const char *pszDesc); 423 407 PIOMMMIOSTATS iomR3MMIOStatsCreate(PVM pVM, RTGCPHYS GCPhys, const char *pszDesc); 424 408 #endif /* IN_IOM_R3 */ … … 455 439 #endif 456 440 441 457 442 /** 458 443 * Gets the I/O port range for the specified I/O port in the current context. … … 464 449 * @param Port Port to lookup. 465 450 */ 466 DECLINLINE(CTX ALLSUFF(PIOMIOPORTRANGE)) iomIOPortGetRange(PIOM pIOM, RTIOPORT Port)467 { 468 CTX ALLSUFF(PIOMIOPORTRANGE) pRange = (CTXALLSUFF(PIOMIOPORTRANGE))RTAvlroIOPortRangeGet(&pIOM->CTXSUFF(pTrees)->CTXALLSUFF(IOPortTree), Port);451 DECLINLINE(CTX_SUFF(PIOMIOPORTRANGE)) iomIOPortGetRange(PIOM pIOM, RTIOPORT Port) 452 { 453 CTX_SUFF(PIOMIOPORTRANGE) pRange = (CTX_SUFF(PIOMIOPORTRANGE))RTAvlroIOPortRangeGet(&pIOM->CTX_SUFF(pTrees)->CTX_SUFF(IOPortTree), Port); 469 454 return pRange; 470 455 } 471 456 457 472 458 /** 473 459 * Gets the I/O port range for the specified I/O port in the HC. … … 479 465 * @param Port Port to lookup. 480 466 */ 481 DECLINLINE(PIOMIOPORTRANGER3) iomIOPortGetRange HC(PIOM pIOM, RTIOPORT Port)482 { 483 PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pIOM->CTX SUFF(pTrees)->IOPortTreeR3, Port);467 DECLINLINE(PIOMIOPORTRANGER3) iomIOPortGetRangeR3(PIOM pIOM, RTIOPORT Port) 468 { 469 PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pIOM->CTX_SUFF(pTrees)->IOPortTreeR3, Port); 484 470 return pRange; 485 471 } … … 497 483 DECLINLINE(PIOMMMIORANGE) iomMMIOGetRange(PIOM pIOM, RTGCPHYS GCPhys) 498 484 { 499 PIOMMMIORANGE pRange = CTXALLSUFF(pIOM->pMMIORangeLast);485 PIOMMMIORANGE pRange = pIOM->CTX_SUFF(pMMIORangeLast); 500 486 if ( !pRange 501 487 || GCPhys - pRange->GCPhys >= pRange->cb) 502 CTXALLSUFF(pIOM->pMMIORangeLast) = pRange = (PIOMMMIORANGE)RTAvlroGCPhysRangeGet(&pIOM->CTXSUFF(pTrees)->MMIOTree, GCPhys);488 pIOM->CTX_SUFF(pMMIORangeLast) = pRange = (PIOMMMIORANGE)RTAvlroGCPhysRangeGet(&pIOM->CTX_SUFF(pTrees)->MMIOTree, GCPhys); 503 489 return pRange; 504 490 } … … 525 511 GCPhys = pRange->GCPhys; 526 512 527 PIOMMMIOSTATS pStats = CTXALLSUFF(pIOM->pMMIOStatsLast);513 PIOMMMIOSTATS pStats = pIOM->CTX_SUFF(pMMIOStatsLast); 528 514 if ( !pStats 529 515 || pStats->Core.Key != GCPhys) 530 516 { 531 pStats = (PIOMMMIOSTATS)RTAvloGCPhysGet(&pIOM->CTX SUFF(pTrees)->MMIOStatTree, GCPhys);517 pStats = (PIOMMMIOSTATS)RTAvloGCPhysGet(&pIOM->CTX_SUFF(pTrees)->MMIOStatTree, GCPhys); 532 518 # ifdef IN_RING3 533 519 if (!pStats) -
trunk/src/VBox/VMM/PDMDevice.cpp
r12687 r12772 1281 1281 1282 1282 if (VBOX_SUCCESS(rc)) 1283 rc = IOMR3IOPortRegister GC(pDevIns->Internal.s.pVMHC, pDevIns, Port, cPorts, pvUser, GCPtrOut, GCPtrIn, GCPtrOutStr, GCPtrInStr, pszDesc);1283 rc = IOMR3IOPortRegisterRC(pDevIns->Internal.s.pVMHC, pDevIns, Port, cPorts, pvUser, GCPtrOut, GCPtrIn, GCPtrOutStr, GCPtrInStr, pszDesc); 1284 1284 } 1285 1285 else … … 1412 1412 rc3 = PDMR3GetSymbolGCLazy(pDevIns->Internal.s.pVMHC, pDevIns->pDevReg->szGCMod, pszFill, &GCPtrFill); 1413 1413 if (VBOX_SUCCESS(rc) && VBOX_SUCCESS(rc2) && VBOX_SUCCESS(rc3)) 1414 rc = IOMR3MMIORegister GC(pDevIns->Internal.s.pVMHC, pDevIns, GCPhysStart, cbRange, pvUser, GCPtrWrite, GCPtrRead, GCPtrFill);1414 rc = IOMR3MMIORegisterRC(pDevIns->Internal.s.pVMHC, pDevIns, GCPhysStart, cbRange, pvUser, GCPtrWrite, GCPtrRead, GCPtrFill); 1415 1415 else 1416 1416 { -
trunk/src/VBox/VMM/VMMAll/IOMAll.cpp
r12703 r12772 61 61 } 62 62 63 if (pParam->flags & USE_REG_GEN32) 64 { 65 *pcbSize = 4; 66 DISFetchReg32(pRegFrame, pParam->base.reg_gen, (uint32_t *)pu64Data); 67 return true; 68 } 69 70 if (pParam->flags & USE_REG_GEN16) 71 { 72 *pcbSize = 2; 73 DISFetchReg16(pRegFrame, pParam->base.reg_gen, (uint16_t *)pu64Data); 74 return true; 75 } 76 77 if (pParam->flags & USE_REG_GEN8) 78 { 79 *pcbSize = 1; 80 DISFetchReg8(pRegFrame, pParam->base.reg_gen, (uint8_t *)pu64Data); 81 return true; 82 } 83 84 if (pParam->flags & USE_REG_GEN64) 85 { 63 /* divide and conquer */ 64 if (pParam->flags & (USE_REG_GEN64 | USE_REG_GEN32 | USE_REG_GEN16 | USE_REG_GEN8)) 65 { 66 if (pParam->flags & USE_REG_GEN32) 67 { 68 *pcbSize = 4; 69 DISFetchReg32(pRegFrame, pParam->base.reg_gen, (uint32_t *)pu64Data); 70 return true; 71 } 72 73 if (pParam->flags & USE_REG_GEN16) 74 { 75 *pcbSize = 2; 76 DISFetchReg16(pRegFrame, pParam->base.reg_gen, (uint16_t *)pu64Data); 77 return true; 78 } 79 80 if (pParam->flags & USE_REG_GEN8) 81 { 82 *pcbSize = 1; 83 DISFetchReg8(pRegFrame, pParam->base.reg_gen, (uint8_t *)pu64Data); 84 return true; 85 } 86 87 Assert(pParam->flags & USE_REG_GEN64); 86 88 *pcbSize = 8; 87 89 DISFetchReg64(pRegFrame, pParam->base.reg_gen, pu64Data); 88 90 return true; 89 91 } 90 91 if (pParam->flags & (USE_IMMEDIATE64|USE_IMMEDIATE64_SX8)) 92 { 93 *pcbSize = 8; 94 *pu64Data = pParam->parval; 95 return true; 96 } 97 98 if (pParam->flags & (USE_IMMEDIATE32|USE_IMMEDIATE32_SX8)) 99 { 100 *pcbSize = 4; 101 *pu64Data = (uint32_t)pParam->parval; 102 return true; 103 } 104 105 if (pParam->flags & (USE_IMMEDIATE16|USE_IMMEDIATE16_SX8)) 106 { 107 *pcbSize = 2; 108 *pu64Data = (uint16_t)pParam->parval; 109 return true; 110 } 111 112 if (pParam->flags & USE_IMMEDIATE8) 113 { 114 *pcbSize = 1; 115 *pu64Data = (uint8_t)pParam->parval; 116 return true; 117 } 118 119 if (pParam->flags & USE_REG_SEG) 120 { 121 *pcbSize = 2; 122 DISFetchRegSeg(pRegFrame, pParam->base.reg_seg, (RTSEL *)pu64Data); 123 return true; 124 } /* Else - error. */ 125 126 AssertFailed(); 127 *pcbSize = 0; 128 *pu64Data = 0; 129 return false; 92 else 93 { 94 if (pParam->flags & (USE_IMMEDIATE64 | USE_IMMEDIATE64_SX8)) 95 { 96 *pcbSize = 8; 97 *pu64Data = pParam->parval; 98 return true; 99 } 100 101 if (pParam->flags & (USE_IMMEDIATE32 | USE_IMMEDIATE32_SX8)) 102 { 103 *pcbSize = 4; 104 *pu64Data = (uint32_t)pParam->parval; 105 return true; 106 } 107 108 if (pParam->flags & (USE_IMMEDIATE16 | USE_IMMEDIATE16_SX8)) 109 { 110 *pcbSize = 2; 111 *pu64Data = (uint16_t)pParam->parval; 112 return true; 113 } 114 115 if (pParam->flags & USE_IMMEDIATE8) 116 { 117 *pcbSize = 1; 118 *pu64Data = (uint8_t)pParam->parval; 119 return true; 120 } 121 122 if (pParam->flags & USE_REG_SEG) 123 { 124 *pcbSize = 2; 125 DISFetchRegSeg(pRegFrame, pParam->base.reg_seg, (RTSEL *)pu64Data); 126 return true; 127 } /* Else - error. */ 128 129 AssertFailed(); 130 *pcbSize = 0; 131 *pu64Data = 0; 132 return false; 133 } 130 134 } 131 135 … … 182 186 } 183 187 184 /*185 * Internal - statistics only.186 */187 DECLINLINE(void) iomMMIOStatLength(PVM pVM, unsigned cb)188 {189 #ifdef VBOX_WITH_STATISTICS190 switch (cb)191 {192 case 1:193 STAM_COUNTER_INC(&pVM->iom.s.StatGCMMIO1Byte);194 break;195 case 2:196 STAM_COUNTER_INC(&pVM->iom.s.StatGCMMIO2Bytes);197 break;198 case 4:199 STAM_COUNTER_INC(&pVM->iom.s.StatGCMMIO4Bytes);200 break;201 default:202 /* No way. */203 AssertMsgFailed(("Invalid data length %d\n", cb));204 break;205 }206 #else207 NOREF(pVM); NOREF(cb);208 #endif209 }210 211 188 212 189 //#undef LOG_GROUP … … 234 211 * Get the statistics record. 235 212 */ 236 PIOMIOPORTSTATS pStats = CTXALLSUFF(pVM->iom.s.pStatsLastRead);213 PIOMIOPORTSTATS pStats = pVM->iom.s.CTX_SUFF(pStatsLastRead); 237 214 if (!pStats || pStats->Core.Key != Port) 238 215 { 239 pStats = (PIOMIOPORTSTATS)RTAvloIOPortGet(&pVM->iom.s.CTX SUFF(pTrees)->IOPortStatTree, Port);240 if (pStats) 241 CTXALLSUFF(pVM->iom.s.pStatsLastRead) = pStats;216 pStats = (PIOMIOPORTSTATS)RTAvloIOPortGet(&pVM->iom.s.CTX_SUFF(pTrees)->IOPortStatTree, Port); 217 if (pStats) 218 pVM->iom.s.CTX_SUFF(pStatsLastRead) = pStats; 242 219 } 243 220 #endif … … 246 223 * Get handler for current context. 247 224 */ 248 CTX ALLSUFF(PIOMIOPORTRANGE) pRange = CTXALLSUFF(pVM->iom.s.pRangeLastRead);225 CTX_SUFF(PIOMIOPORTRANGE) pRange = pVM->iom.s.CTX_SUFF(pRangeLastRead); 249 226 if ( !pRange 250 227 || (unsigned)Port - (unsigned)pRange->Port >= (unsigned)pRange->cPorts) … … 252 229 pRange = iomIOPortGetRange(&pVM->iom.s, Port); 253 230 if (pRange) 254 CTXALLSUFF(pVM->iom.s.pRangeLastRead) = pRange; 255 } 256 #ifdef IN_GC 257 AssertMsg(!pRange || MMHyperIsInsideArea(pVM, (RTGCPTR)(RTRCUINTPTR)pRange), ("pRange = %VGv\n", pRange)); /** @todo r=bird: there is a macro for this which skips the #if'ing. */ 258 #endif 259 231 pVM->iom.s.CTX_SUFF(pRangeLastRead) = pRange; 232 } 233 MMHYPER_RC_ASSERT_RCPTR(pVM, pRange); 260 234 if (pRange) 261 235 { … … 268 242 # ifdef VBOX_WITH_STATISTICS 269 243 if (pStats) 270 STAM_COUNTER_INC(&pStats->CTX ALLMID(In,ToR3));244 STAM_COUNTER_INC(&pStats->CTX_MID_Z(In,ToR3)); 271 245 # endif 272 246 return VINF_IOM_HC_IOPORT_READ; … … 276 250 #ifdef VBOX_WITH_STATISTICS 277 251 if (pStats) 278 STAM_PROFILE_ADV_START(&pStats->CTX ALLSUFF(ProfIn), a);252 STAM_PROFILE_ADV_START(&pStats->CTX_SUFF_Z(ProfIn), a); 279 253 #endif 280 254 int rc = pRange->pfnInCallback(pRange->pDevIns, pRange->pvUser, Port, pu32Value, cbValue); 281 255 #ifdef VBOX_WITH_STATISTICS 282 256 if (pStats) 283 STAM_PROFILE_ADV_STOP(&pStats->CTX ALLSUFF(ProfIn), a);257 STAM_PROFILE_ADV_STOP(&pStats->CTX_SUFF_Z(ProfIn), a); 284 258 if (rc == VINF_SUCCESS && pStats) 285 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(In));259 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(In)); 286 260 # ifndef IN_RING3 287 261 else if (rc == VINF_IOM_HC_IOPORT_READ && pStats) 288 STAM_COUNTER_INC(&pStats->CTX ALLMID(In,ToR3));262 STAM_COUNTER_INC(&pStats->CTX_MID_Z(In,ToR3)); 289 263 # endif 290 264 #endif … … 297 271 case 1: *(uint8_t *)pu32Value = 0xff; break; 298 272 case 2: *(uint16_t *)pu32Value = 0xffff; break; 299 case 4: *(uint32_t *)pu32Value = 0xffffffff; break;273 case 4: *(uint32_t *)pu32Value = UINT32_C(0xffffffff); break; 300 274 default: 301 275 AssertMsgFailed(("Invalid I/O port size %d. Port=%d\n", cbValue, Port)); … … 311 285 * Handler in ring-3? 312 286 */ 313 PIOMIOPORTRANGER3 pRangeR3 = iomIOPortGetRange HC(&pVM->iom.s, Port);287 PIOMIOPORTRANGER3 pRangeR3 = iomIOPortGetRangeR3(&pVM->iom.s, Port); 314 288 if (pRangeR3) 315 289 { 316 290 # ifdef VBOX_WITH_STATISTICS 317 291 if (pStats) 318 STAM_COUNTER_INC(&pStats->CTX ALLMID(In,ToR3));292 STAM_COUNTER_INC(&pStats->CTX_MID_Z(In,ToR3)); 319 293 # endif 320 294 return VINF_IOM_HC_IOPORT_READ; … … 327 301 #ifdef VBOX_WITH_STATISTICS 328 302 if (pStats) 329 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(In));303 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(In)); 330 304 else 331 305 { … … 334 308 return VINF_IOM_HC_IOPORT_READ; 335 309 # else 336 pStats = iom r3IOPortStatsCreate(pVM, Port, NULL);337 if (pStats) 338 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(In));310 pStats = iomR3IOPortStatsCreate(pVM, Port, NULL); 311 if (pStats) 312 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(In)); 339 313 # endif 340 314 } … … 346 320 case 1: *(uint8_t *)pu32Value = 0xff; break; 347 321 case 2: *(uint16_t *)pu32Value = 0xffff; break; 348 case 4: *(uint32_t *)pu32Value = 0xffffffff; break;322 case 4: *(uint32_t *)pu32Value = UINT32_C(0xffffffff); break; 349 323 default: 350 324 AssertMsgFailed(("Invalid I/O port size %d. Port=%d\n", cbValue, Port)); … … 381 355 * Get the statistics record. 382 356 */ 383 PIOMIOPORTSTATS pStats = CTXALLSUFF(pVM->iom.s.pStatsLastRead);357 PIOMIOPORTSTATS pStats = pVM->iom.s.CTX_SUFF(pStatsLastRead); 384 358 if (!pStats || pStats->Core.Key != Port) 385 359 { 386 pStats = (PIOMIOPORTSTATS)RTAvloIOPortGet(&pVM->iom.s.CTX SUFF(pTrees)->IOPortStatTree, Port);387 if (pStats) 388 CTXALLSUFF(pVM->iom.s.pStatsLastRead) = pStats;360 pStats = (PIOMIOPORTSTATS)RTAvloIOPortGet(&pVM->iom.s.CTX_SUFF(pTrees)->IOPortStatTree, Port); 361 if (pStats) 362 pVM->iom.s.CTX_SUFF(pStatsLastRead) = pStats; 389 363 } 390 364 #endif … … 393 367 * Get handler for current context. 394 368 */ 395 CTX ALLSUFF(PIOMIOPORTRANGE) pRange = CTXALLSUFF(pVM->iom.s.pRangeLastRead);369 CTX_SUFF(PIOMIOPORTRANGE) pRange = pVM->iom.s.CTX_SUFF(pRangeLastRead); 396 370 if ( !pRange 397 371 || (unsigned)Port - (unsigned)pRange->Port >= (unsigned)pRange->cPorts) … … 399 373 pRange = iomIOPortGetRange(&pVM->iom.s, Port); 400 374 if (pRange) 401 CTXALLSUFF(pVM->iom.s.pRangeLastRead) = pRange; 402 } 403 #ifdef IN_GC 404 Assert(!pRange || MMHyperIsInsideArea(pVM, (RTGCPTR)(RTRCUINTPTR)pRange)); /** @todo r=bird: there is a macro for this which skips the #if'ing. */ 405 #endif 406 375 pVM->iom.s.CTX_SUFF(pRangeLastRead) = pRange; 376 } 377 MMHYPER_RC_ASSERT_RCPTR(pVM, pRange); 407 378 if (pRange) 408 379 { … … 415 386 # ifdef VBOX_WITH_STATISTICS 416 387 if (pStats) 417 STAM_COUNTER_INC(&pStats->CTX ALLMID(In,ToR3));388 STAM_COUNTER_INC(&pStats->CTX_MID_Z(In,ToR3)); 418 389 # endif 419 390 return VINF_IOM_HC_IOPORT_READ; … … 423 394 #ifdef VBOX_WITH_STATISTICS 424 395 if (pStats) 425 STAM_PROFILE_ADV_START(&pStats->CTX ALLSUFF(ProfIn), a);396 STAM_PROFILE_ADV_START(&pStats->CTX_SUFF_Z(ProfIn), a); 426 397 #endif 427 398 … … 429 400 #ifdef VBOX_WITH_STATISTICS 430 401 if (pStats) 431 STAM_PROFILE_ADV_STOP(&pStats->CTX ALLSUFF(ProfIn), a);402 STAM_PROFILE_ADV_STOP(&pStats->CTX_SUFF_Z(ProfIn), a); 432 403 if (rc == VINF_SUCCESS && pStats) 433 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(In));404 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(In)); 434 405 # ifndef IN_RING3 435 406 else if (rc == VINF_IOM_HC_IOPORT_READ && pStats) 436 STAM_COUNTER_INC(&pStats->CTX ALLMID(In, ToR3));407 STAM_COUNTER_INC(&pStats->CTX_MID_Z(In, ToR3)); 437 408 # endif 438 409 #endif … … 446 417 * Handler in ring-3? 447 418 */ 448 PIOMIOPORTRANGER3 pRangeR3 = iomIOPortGetRange HC(&pVM->iom.s, Port);419 PIOMIOPORTRANGER3 pRangeR3 = iomIOPortGetRangeR3(&pVM->iom.s, Port); 449 420 if (pRangeR3) 450 421 { 451 422 # ifdef VBOX_WITH_STATISTICS 452 423 if (pStats) 453 STAM_COUNTER_INC(&pStats->CTX ALLMID(In,ToR3));424 STAM_COUNTER_INC(&pStats->CTX_MID_Z(In,ToR3)); 454 425 # endif 455 426 return VINF_IOM_HC_IOPORT_READ; … … 462 433 #ifdef VBOX_WITH_STATISTICS 463 434 if (pStats) 464 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(In));435 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(In)); 465 436 else 466 437 { … … 469 440 return VINF_IOM_HC_IOPORT_READ; 470 441 # else 471 pStats = iom r3IOPortStatsCreate(pVM, Port, NULL);472 if (pStats) 473 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(In));442 pStats = iomR3IOPortStatsCreate(pVM, Port, NULL); 443 if (pStats) 444 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(In)); 474 445 # endif 475 446 } … … 504 475 * Find the statistics record. 505 476 */ 506 PIOMIOPORTSTATS pStats = CTXALLSUFF(pVM->iom.s.pStatsLastWrite);477 PIOMIOPORTSTATS pStats = pVM->iom.s.CTX_SUFF(pStatsLastWrite); 507 478 if (!pStats || pStats->Core.Key != Port) 508 479 { 509 pStats = (PIOMIOPORTSTATS)RTAvloIOPortGet(&pVM->iom.s.CTX SUFF(pTrees)->IOPortStatTree, Port);510 if (pStats) 511 CTXALLSUFF(pVM->iom.s.pStatsLastWrite) = pStats;480 pStats = (PIOMIOPORTSTATS)RTAvloIOPortGet(&pVM->iom.s.CTX_SUFF(pTrees)->IOPortStatTree, Port); 481 if (pStats) 482 pVM->iom.s.CTX_SUFF(pStatsLastWrite) = pStats; 512 483 } 513 484 #endif … … 516 487 * Get handler for current context. 517 488 */ 518 CTX ALLSUFF(PIOMIOPORTRANGE) pRange = CTXALLSUFF(pVM->iom.s.pRangeLastWrite);489 CTX_SUFF(PIOMIOPORTRANGE) pRange = pVM->iom.s.CTX_SUFF(pRangeLastWrite); 519 490 if ( !pRange 520 491 || (unsigned)Port - (unsigned)pRange->Port >= (unsigned)pRange->cPorts) … … 522 493 pRange = iomIOPortGetRange(&pVM->iom.s, Port); 523 494 if (pRange) 524 CTXALLSUFF(pVM->iom.s.pRangeLastWrite) = pRange; 525 } 526 #ifdef IN_GC 527 Assert(!pRange || MMHyperIsInsideArea(pVM, (RTGCPTR)(RTRCUINTPTR)pRange)); 528 #endif 529 495 pVM->iom.s.CTX_SUFF(pRangeLastWrite) = pRange; 496 } 497 MMHYPER_RC_ASSERT_RCPTR(pVM, pRange); 530 498 if (pRange) 531 499 { … … 538 506 # ifdef VBOX_WITH_STATISTICS 539 507 if (pStats) 540 STAM_COUNTER_INC(&pStats->CTX ALLMID(Out,ToR3));508 STAM_COUNTER_INC(&pStats->CTX_MID_Z(Out,ToR3)); 541 509 # endif 542 510 return VINF_IOM_HC_IOPORT_WRITE; … … 546 514 #ifdef VBOX_WITH_STATISTICS 547 515 if (pStats) 548 STAM_PROFILE_ADV_START(&pStats->CTX ALLSUFF(ProfOut), a);516 STAM_PROFILE_ADV_START(&pStats->CTX_SUFF_Z(ProfOut), a); 549 517 #endif 550 518 int rc = pRange->pfnOutCallback(pRange->pDevIns, pRange->pvUser, Port, u32Value, cbValue); … … 552 520 #ifdef VBOX_WITH_STATISTICS 553 521 if (pStats) 554 STAM_PROFILE_ADV_STOP(&pStats->CTX ALLSUFF(ProfOut), a);522 STAM_PROFILE_ADV_STOP(&pStats->CTX_SUFF_Z(ProfOut), a); 555 523 if (rc == VINF_SUCCESS && pStats) 556 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(Out));524 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Out)); 557 525 # ifndef IN_RING3 558 526 else if (rc == VINF_IOM_HC_IOPORT_WRITE && pStats) 559 STAM_COUNTER_INC(&pStats->CTX ALLMID(Out, ToR3));527 STAM_COUNTER_INC(&pStats->CTX_MID_Z(Out, ToR3)); 560 528 # endif 561 529 #endif … … 568 536 * Handler in ring-3? 569 537 */ 570 PIOMIOPORTRANGER3 pRangeR3 = iomIOPortGetRange HC(&pVM->iom.s, Port);538 PIOMIOPORTRANGER3 pRangeR3 = iomIOPortGetRangeR3(&pVM->iom.s, Port); 571 539 if (pRangeR3) 572 540 { 573 541 # ifdef VBOX_WITH_STATISTICS 574 542 if (pStats) 575 STAM_COUNTER_INC(&pStats->CTX ALLMID(Out,ToR3));543 STAM_COUNTER_INC(&pStats->CTX_MID_Z(Out,ToR3)); 576 544 # endif 577 545 return VINF_IOM_HC_IOPORT_WRITE; … … 585 553 /* statistics. */ 586 554 if (pStats) 587 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(Out));555 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Out)); 588 556 else 589 557 { … … 592 560 return VINF_IOM_HC_IOPORT_WRITE; 593 561 # else 594 pStats = iom r3IOPortStatsCreate(pVM, Port, NULL);595 if (pStats) 596 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(Out));562 pStats = iomR3IOPortStatsCreate(pVM, Port, NULL); 563 if (pStats) 564 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Out)); 597 565 # endif 598 566 } … … 628 596 * Get the statistics record. 629 597 */ 630 PIOMIOPORTSTATS pStats = CTXALLSUFF(pVM->iom.s.pStatsLastWrite);598 PIOMIOPORTSTATS pStats = pVM->iom.s.CTX_SUFF(pStatsLastWrite); 631 599 if (!pStats || pStats->Core.Key != Port) 632 600 { 633 pStats = (PIOMIOPORTSTATS)RTAvloIOPortGet(&pVM->iom.s.CTX SUFF(pTrees)->IOPortStatTree, Port);634 if (pStats) 635 CTXALLSUFF(pVM->iom.s.pStatsLastWrite) = pStats;601 pStats = (PIOMIOPORTSTATS)RTAvloIOPortGet(&pVM->iom.s.CTX_SUFF(pTrees)->IOPortStatTree, Port); 602 if (pStats) 603 pVM->iom.s.CTX_SUFF(pStatsLastWrite) = pStats; 636 604 } 637 605 #endif … … 640 608 * Get handler for current context. 641 609 */ 642 CTX ALLSUFF(PIOMIOPORTRANGE) pRange = CTXALLSUFF(pVM->iom.s.pRangeLastWrite);610 CTX_SUFF(PIOMIOPORTRANGE) pRange = pVM->iom.s.CTX_SUFF(pRangeLastWrite); 643 611 if ( !pRange 644 612 || (unsigned)Port - (unsigned)pRange->Port >= (unsigned)pRange->cPorts) … … 646 614 pRange = iomIOPortGetRange(&pVM->iom.s, Port); 647 615 if (pRange) 648 CTXALLSUFF(pVM->iom.s.pRangeLastWrite) = pRange; 649 } 650 #ifdef IN_GC 651 Assert(!pRange || MMHyperIsInsideArea(pVM, (RTGCPTR)(RTRCUINTPTR)pRange)); /** @todo r=bird: there is a macro for this which skips the #if'ing. */ 652 #endif 653 616 pVM->iom.s.CTX_SUFF(pRangeLastWrite) = pRange; 617 } 618 MMHYPER_RC_ASSERT_RCPTR(pVM, pRange); 654 619 if (pRange) 655 620 { … … 662 627 # ifdef VBOX_WITH_STATISTICS 663 628 if (pStats) 664 STAM_COUNTER_INC(&pStats->CTX ALLMID(Out,ToR3));629 STAM_COUNTER_INC(&pStats->CTX_MID_Z(Out,ToR3)); 665 630 # endif 666 631 return VINF_IOM_HC_IOPORT_WRITE; … … 670 635 #ifdef VBOX_WITH_STATISTICS 671 636 if (pStats) 672 STAM_PROFILE_ADV_START(&pStats->CTX ALLSUFF(ProfOut), a);637 STAM_PROFILE_ADV_START(&pStats->CTX_SUFF_Z(ProfOut), a); 673 638 #endif 674 639 int rc = pRange->pfnOutStrCallback(pRange->pDevIns, pRange->pvUser, Port, pGCPtrSrc, pcTransfers, cb); 675 640 #ifdef VBOX_WITH_STATISTICS 676 641 if (pStats) 677 STAM_PROFILE_ADV_STOP(&pStats->CTX ALLSUFF(ProfOut), a);642 STAM_PROFILE_ADV_STOP(&pStats->CTX_SUFF_Z(ProfOut), a); 678 643 if (rc == VINF_SUCCESS && pStats) 679 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(Out));644 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Out)); 680 645 # ifndef IN_RING3 681 646 else if (rc == VINF_IOM_HC_IOPORT_WRITE && pStats) 682 STAM_COUNTER_INC(&pStats->CTX ALLMID(Out, ToR3));647 STAM_COUNTER_INC(&pStats->CTX_MID_Z(Out, ToR3)); 683 648 # endif 684 649 #endif … … 692 657 * Handler in ring-3? 693 658 */ 694 PIOMIOPORTRANGER3 pRangeR3 = iomIOPortGetRange HC(&pVM->iom.s, Port);659 PIOMIOPORTRANGER3 pRangeR3 = iomIOPortGetRangeR3(&pVM->iom.s, Port); 695 660 if (pRangeR3) 696 661 { 697 662 # ifdef VBOX_WITH_STATISTICS 698 663 if (pStats) 699 STAM_COUNTER_INC(&pStats->CTX ALLMID(Out,ToR3));664 STAM_COUNTER_INC(&pStats->CTX_MID_Z(Out,ToR3)); 700 665 # endif 701 666 return VINF_IOM_HC_IOPORT_WRITE; … … 708 673 #ifdef VBOX_WITH_STATISTICS 709 674 if (pStats) 710 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(Out));675 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Out)); 711 676 else 712 677 { … … 715 680 return VINF_IOM_HC_IOPORT_WRITE; 716 681 # else 717 pStats = iom r3IOPortStatsCreate(pVM, Port, NULL);718 if (pStats) 719 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(Out));682 pStats = iomR3IOPortStatsCreate(pVM, Port, NULL); 683 if (pStats) 684 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Out)); 720 685 # endif 721 686 } … … 764 729 bool fCanHaveIOBitmap; 765 730 int rc = SELMGetTSSInfo(pVM, &GCPtrTss, &cbTss, &fCanHaveIOBitmap); 766 if ( VBOX_FAILURE(rc))731 if (RT_FAILURE(rc)) 767 732 { 768 733 Log(("iomInterpretCheckPortIOAccess: Port=%RTiop cb=%d %Vrc -> #GP(0)\n", Port, cb, rc)); … … 823 788 return VINF_SUCCESS; 824 789 } 790 825 791 826 792 /** … … 844 810 { 845 811 #ifdef IN_GC 846 STAM_COUNTER_INC(&pVM->iom.s.Stat GCInstIn);812 STAM_COUNTER_INC(&pVM->iom.s.StatInstIn); 847 813 #endif 848 814 … … 864 830 * Attemp to read the port. 865 831 */ 866 uint32_t u32Data = ~0U;832 uint32_t u32Data = UINT32_C(0xffffffff); 867 833 rc = IOMIOPortRead(pVM, uPort, &u32Data, cbSize); 868 834 if (IOM_SUCCESS(rc)) … … 875 841 } 876 842 else 877 AssertMsg(rc == VINF_IOM_HC_IOPORT_READ || VBOX_FAILURE(rc), ("%Vrc\n", rc));843 AssertMsg(rc == VINF_IOM_HC_IOPORT_READ || RT_FAILURE(rc), ("%Vrc\n", rc)); 878 844 } 879 845 else 880 AssertMsg(rc == VINF_EM_RAW_GUEST_TRAP || rc == VINF_TRPM_XCPT_DISPATCHED || rc == VINF_TRPM_XCPT_DISPATCHED || VBOX_FAILURE(rc), ("%Vrc\n", rc));846 AssertMsg(rc == VINF_EM_RAW_GUEST_TRAP || rc == VINF_TRPM_XCPT_DISPATCHED || rc == VINF_TRPM_XCPT_DISPATCHED || RT_FAILURE(rc), ("%Vrc\n", rc)); 881 847 return rc; 882 848 } … … 903 869 { 904 870 #ifdef IN_GC 905 STAM_COUNTER_INC(&pVM->iom.s.Stat GCInstOut);871 STAM_COUNTER_INC(&pVM->iom.s.StatInstOut); 906 872 #endif 907 873 … … 926 892 */ 927 893 rc = IOMIOPortWrite(pVM, uPort, u64Data, cbSize); 928 AssertMsg(rc == VINF_SUCCESS || rc == VINF_IOM_HC_IOPORT_WRITE || (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST) || VBOX_FAILURE(rc), ("%Vrc\n", rc));894 AssertMsg(rc == VINF_SUCCESS || rc == VINF_IOM_HC_IOPORT_WRITE || (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST) || RT_FAILURE(rc), ("%Vrc\n", rc)); 929 895 } 930 896 else 931 AssertMsg(rc == VINF_EM_RAW_GUEST_TRAP || rc == VINF_TRPM_XCPT_DISPATCHED || rc == VINF_TRPM_XCPT_DISPATCHED || VBOX_FAILURE(rc), ("%Vrc\n", rc));897 AssertMsg(rc == VINF_EM_RAW_GUEST_TRAP || rc == VINF_TRPM_XCPT_DISPATCHED || rc == VINF_TRPM_XCPT_DISPATCHED || RT_FAILURE(rc), ("%Vrc\n", rc)); 932 898 return rc; 933 899 } -
trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp
r12688 r12772 1 1 /* $Id$ */ 2 2 /** @file 3 * IOM - Input / Output Monitor - Guest Context.3 * IOM - Input / Output Monitor - Any Context, MMIO & String I/O. 4 4 */ 5 5 … … 46 46 47 47 48 49 48 /******************************************************************************* 50 49 * Global Variables * … … 75 74 /** 76 75 * Wrapper which does the write and updates range statistics when such are enabled. 77 * @warning VBOX_SUCCESS(rc=VINF_IOM_HC_MMIO_WRITE) is TRUE!76 * @warning RT_SUCCESS(rc=VINF_IOM_HC_MMIO_WRITE) is TRUE! 78 77 */ 79 78 DECLINLINE(int) iomMMIODoWrite(PVM pVM, PIOMMMIORANGE pRange, RTGCPHYS GCPhysFault, const void *pvData, unsigned cb) … … 85 84 86 85 int rc; 87 if (RT_LIKELY(pRange->CTX ALLSUFF(pfnWriteCallback)))88 rc = pRange->CTX ALLSUFF(pfnWriteCallback)(pRange->CTXALLSUFF(pDevIns), pRange->CTXALLSUFF(pvUser), GCPhysFault, (void *)pvData, cb); /* @todo fix const!! */86 if (RT_LIKELY(pRange->CTX_SUFF(pfnWriteCallback))) 87 rc = pRange->CTX_SUFF(pfnWriteCallback)(pRange->CTX_SUFF(pDevIns), pRange->CTX_SUFF(pvUser), GCPhysFault, (void *)pvData, cb); /* @todo fix const!! */ 89 88 else 90 89 rc = VINF_SUCCESS; 91 90 if (rc != VINF_IOM_HC_MMIO_WRITE) 92 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(Write));91 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Write)); 93 92 return rc; 94 93 } 94 95 95 96 96 /** … … 105 105 106 106 int rc; 107 if (RT_LIKELY(pRange->CTX ALLSUFF(pfnReadCallback)))108 rc = pRange->CTX ALLSUFF(pfnReadCallback)(pRange->CTXALLSUFF(pDevIns), pRange->CTXALLSUFF(pvUser), GCPhysFault, pvData, cb);107 if (RT_LIKELY(pRange->CTX_SUFF(pfnReadCallback))) 108 rc = pRange->CTX_SUFF(pfnReadCallback)(pRange->CTX_SUFF(pDevIns), pRange->CTX_SUFF(pvUser), GCPhysFault, pvData, cb); 109 109 else 110 110 { 111 /** @todo r=bird: this is (probably) wrong, all bits should be set here I 112 * think. */ 111 113 switch (cb) 112 114 { … … 122 124 } 123 125 if (rc != VINF_IOM_HC_MMIO_READ) 124 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(Read));126 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Read)); 125 127 return rc; 126 128 } 127 129 128 /* 130 131 /** 129 132 * Internal - statistics only. 130 133 */ … … 135 138 { 136 139 case 1: 137 STAM_COUNTER_INC(&pVM->iom.s.Stat GCMMIO1Byte);140 STAM_COUNTER_INC(&pVM->iom.s.StatRZMMIO1Byte); 138 141 break; 139 142 case 2: 140 STAM_COUNTER_INC(&pVM->iom.s.Stat GCMMIO2Bytes);143 STAM_COUNTER_INC(&pVM->iom.s.StatRZMMIO2Bytes); 141 144 break; 142 145 case 4: 143 STAM_COUNTER_INC(&pVM->iom.s.Stat GCMMIO4Bytes);146 STAM_COUNTER_INC(&pVM->iom.s.StatRZMMIO4Bytes); 144 147 break; 145 148 case 8: 146 STAM_COUNTER_INC(&pVM->iom.s.Stat GCMMIO8Bytes);149 STAM_COUNTER_INC(&pVM->iom.s.StatRZMMIO8Bytes); 147 150 break; 148 151 default: … … 172 175 static int iomInterpretMOVxXRead(PVM pVM, PCPUMCTXCORE pRegFrame, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange, RTGCPHYS GCPhysFault) 173 176 { 174 Assert(pRange->CTX ALLSUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3);177 Assert(pRange->CTX_SUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3); 175 178 176 179 /* … … 231 234 static int iomInterpretMOVxXWrite(PVM pVM, PCPUMCTXCORE pRegFrame, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange, RTGCPHYS GCPhysFault) 232 235 { 233 Assert(pRange->CTX ALLSUFF(pfnWriteCallback) || !pRange->pfnWriteCallbackR3);236 Assert(pRange->CTX_SUFF(pfnWriteCallback) || !pRange->pfnWriteCallbackR3); 234 237 235 238 /* … … 271 274 272 275 273 #ifdef iom_MOVS_SUPPORT276 #ifdef IOM_WITH_MOVS_SUPPORT 274 277 /** 275 278 * [REP] MOVSB … … 288 291 * @param pCpu Disassembler CPU state. 289 292 * @param pRange Pointer MMIO range. 290 */ 291 static int iomInterpretMOVS(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange) 293 * @param ppStat Which sub-sample to attribute this call to. 294 */ 295 static int iomInterpretMOVS(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange, PSTAMPROFILE *ppStat) 292 296 { 293 297 /* … … 299 303 300 304 /* 301 * Get bytes/words/dwords count to copy.305 * Get bytes/words/dwords/qword count to copy. 302 306 */ 303 307 uint32_t cTransfers = 1; … … 343 347 * ds:esi (Virt Src) -> es:edi (Phys Dst) 344 348 */ 345 STAM_ PROFILE_START(&pVM->iom.s.StatGCInstMovsToMMIO, a2);349 STAM_STATS({ *ppStat = &pVM->iom.s.StatRZInstMovsToMMIO; }); 346 350 347 351 /* Check callback. */ 348 if (!pRange->CTXALLSUFF(pfnWriteCallback)) 349 { 350 STAM_PROFILE_STOP(&pVM->iom.s.StatGCInstMovsToMMIO, a2); 352 if (!pRange->CTX_SUFF(pfnWriteCallback)) 351 353 return VINF_IOM_HC_MMIO_WRITE; 352 }353 354 354 355 /* Convert source address ds:esi. */ … … 357 358 SELMTOFLAT_FLAGS_HYPER | SELMTOFLAT_FLAGS_NO_PL, 358 359 (PRTGCPTR)&pu8Virt); 359 if ( VBOX_SUCCESS(rc))360 if (RT_SUCCESS(rc)) 360 361 { 361 362 … … 365 366 { 366 367 Log(("MOVS will generate a trap -> recompiler, rc=%d\n", rc)); 367 STAM_PROFILE_STOP(&pVM->iom.s.StatGCInstMovsToMMIO, a2);368 368 return VINF_EM_RAW_EMULATE_INSTR; 369 369 } … … 396 396 if (pCpu->prefix & PREFIX_REP) 397 397 pRegFrame->ecx = cTransfers; 398 STAM_PROFILE_STOP(&pVM->iom.s.StatGCInstMovsToMMIO, a2);399 398 } 400 399 else … … 407 406 * ds:[eSI] (Phys Src) -> es:[eDI] (Virt Dst) 408 407 */ 408 STAM_STATS({ *ppStat = &pVM->iom.s.StatRZInstMovsFromMMIO; }); 409 409 410 /* Check callback. */ 410 if (!pRange-> pfnReadCallback)411 if (!pRange->CTX_SUFF(pfnReadCallback)) 411 412 return VINF_IOM_HC_MMIO_READ; 412 413 … … 416 417 SELMTOFLAT_FLAGS_HYPER | SELMTOFLAT_FLAGS_NO_PL, 417 418 (RTGCPTR *)&pu8Virt); 418 if ( VBOX_FAILURE(rc))419 if (RT_FAILURE(rc)) 419 420 return VINF_EM_RAW_GUEST_TRAP; 420 421 … … 424 425 rc = PGMGstGetPage(pVM, (RTGCPTR)pu8Virt, NULL, &PhysDst); 425 426 PhysDst |= (RTGCUINTPTR)pu8Virt & PAGE_OFFSET_MASK; 426 if ( VBOX_SUCCESS(rc)427 if ( RT_SUCCESS(rc) 427 428 && (pMMIODst = iomMMIOGetRange(&pVM->iom.s, PhysDst))) 428 429 { … … 430 431 * Extra: [MMIO] -> [MMIO] 431 432 */ 432 STAM_PROFILE_START(&pVM->iom.s.StatGCInstMovsMMIO, d); 433 STAM_PROFILE_START(&pVM->iom.s.StatGCInstMovsFromMMIO, c); 434 435 if (!pMMIODst->CTXALLSUFF(pfnWriteCallback) && pMMIODst->pfnWriteCallbackR3) 436 { 437 STAM_PROFILE_STOP(&pVM->iom.s.StatGCInstMovsMMIO, d); 438 STAM_PROFILE_STOP(&pVM->iom.s.StatGCInstMovsFromMMIO, c); 433 STAM_STATS({ *ppStat = &pVM->iom.s.StatRZInstMovsMMIO; }); 434 if (!pMMIODst->CTX_SUFF(pfnWriteCallback) && pMMIODst->pfnWriteCallbackR3) 439 435 return VINF_IOM_HC_MMIO_READ_WRITE; 440 }441 436 442 437 /* copy loop. */ … … 457 452 cTransfers--; 458 453 } 459 STAM_PROFILE_STOP(&pVM->iom.s.StatGCInstMovsMMIO, d);460 STAM_PROFILE_STOP(&pVM->iom.s.StatGCInstMovsFromMMIO, c);461 454 } 462 455 else … … 465 458 * Normal: [MMIO] -> [Mem] 466 459 */ 467 STAM_PROFILE_START(&pVM->iom.s.StatGCInstMovsFromMMIO, c);468 469 460 /* Access verification first; we currently can't recover properly from traps inside this instruction */ 470 461 rc = PGMVerifyAccess(pVM, pu8Virt, cTransfers * cb, X86_PTE_RW | ((cpl == 3) ? X86_PTE_US : 0)); … … 472 463 { 473 464 Log(("MOVS will generate a trap -> recompiler, rc=%d\n", rc)); 474 STAM_PROFILE_STOP(&pVM->iom.s.StatGCInstMovsFromMMIO, c);475 465 return VINF_EM_RAW_EMULATE_INSTR; 476 466 } … … 502 492 MMGCRamDeregisterTrapHandler(pVM); 503 493 #endif 504 STAM_PROFILE_STOP(&pVM->iom.s.StatGCInstMovsFromMMIO, c);505 494 } 506 495 … … 512 501 /* work statistics. */ 513 502 if (rc == VINF_SUCCESS) 514 {515 503 iomMMIOStatLength(pVM, cb); 516 }504 NOREF(ppStat); 517 505 return rc; 518 506 } 519 #endif 520 507 #endif /* IOM_WITH_MOVS_SUPPORT */ 521 508 522 509 … … 565 552 } 566 553 554 /** @todo r=bird: bounds checks! */ 555 567 556 /* 568 557 * Get data size. … … 581 570 uint32_t u32Data = pRegFrame->eax; 582 571 int rc; 583 if (pRange->CTX ALLSUFF(pfnFillCallback))572 if (pRange->CTX_SUFF(pfnFillCallback)) 584 573 { 585 574 /* … … 590 579 { 591 580 /* addr++ variant. */ 592 rc = pRange->CTX ALLSUFF(pfnFillCallback)(pRange->CTXALLSUFF(pDevIns), pRange->CTXALLSUFF(pvUser), Phys, u32Data, cb, cTransfers);581 rc = pRange->CTX_SUFF(pfnFillCallback)(pRange->CTX_SUFF(pDevIns), pRange->CTX_SUFF(pvUser), Phys, u32Data, cb, cTransfers); 593 582 if (rc == VINF_SUCCESS) 594 583 { … … 602 591 { 603 592 /* addr-- variant. */ 604 rc = pRange->CTX ALLSUFF(pfnFillCallback)(pRange->CTXALLSUFF(pDevIns), pRange->CTXALLSUFF(pvUser), (Phys - (cTransfers - 1)) << SIZE_2_SHIFT(cb), u32Data, cb, cTransfers);593 rc = pRange->CTX_SUFF(pfnFillCallback)(pRange->CTX_SUFF(pDevIns), pRange->CTX_SUFF(pvUser), (Phys - (cTransfers - 1)) << SIZE_2_SHIFT(cb), u32Data, cb, cTransfers); 605 594 if (rc == VINF_SUCCESS) 606 595 { … … 617 606 * Use the write callback. 618 607 */ 619 Assert(pRange->CTX ALLSUFF(pfnWriteCallback) || !pRange->pfnWriteCallbackR3);608 Assert(pRange->CTX_SUFF(pfnWriteCallback) || !pRange->pfnWriteCallbackR3); 620 609 621 610 /* fill loop. */ … … 663 652 static int iomInterpretLODS(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange) 664 653 { 665 Assert(pRange->CTX ALLSUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3);654 Assert(pRange->CTX_SUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3); 666 655 667 656 /* … … 711 700 static int iomInterpretCMP(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange) 712 701 { 713 Assert(pRange->CTX ALLSUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3);702 Assert(pRange->CTX_SUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3); 714 703 715 704 /* … … 787 776 { 788 777 /* and reg, [MMIO]. */ 789 Assert(pRange->CTX ALLSUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3);778 Assert(pRange->CTX_SUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3); 790 779 fAndWrite = false; 791 780 rc = iomMMIODoRead(pVM, pRange, GCPhysFault, &uData2, cb); … … 795 784 /* and [MMIO], reg|imm. */ 796 785 fAndWrite = true; 797 if ( (pRange->CTX ALLSUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3)798 && (pRange->CTX ALLSUFF(pfnWriteCallback) || !pRange->pfnWriteCallbackR3))786 if ( (pRange->CTX_SUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3) 787 && (pRange->CTX_SUFF(pfnWriteCallback) || !pRange->pfnWriteCallbackR3)) 799 788 rc = iomMMIODoRead(pVM, pRange, GCPhysFault, &uData1, cb); 800 789 else … … 835 824 } 836 825 826 837 827 /** 838 828 * TEST [MMIO], reg|imm … … 852 842 static int iomInterpretTEST(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange) 853 843 { 854 Assert(pRange->CTX ALLSUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3);844 Assert(pRange->CTX_SUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3); 855 845 856 846 unsigned cb = 0; … … 887 877 } 888 878 879 889 880 /** 890 881 * BT [MMIO], reg|imm … … 903 894 static int iomInterpretBT(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, PDISCPUSTATE pCpu, PIOMMMIORANGE pRange) 904 895 { 905 Assert(pRange->CTX ALLSUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3);896 Assert(pRange->CTX_SUFF(pfnReadCallback) || !pRange->pfnReadCallbackR3); 906 897 907 898 uint64_t uBit = 0; … … 954 945 { 955 946 /* Check for read & write handlers since IOMMMIOHandler doesn't cover this. */ 956 if ( (!pRange->CTX ALLSUFF(pfnReadCallback) && pRange->pfnReadCallbackR3)957 || (!pRange->CTX ALLSUFF(pfnWriteCallback) && pRange->pfnWriteCallbackR3))947 if ( (!pRange->CTX_SUFF(pfnReadCallback) && pRange->pfnReadCallbackR3) 948 || (!pRange->CTX_SUFF(pfnWriteCallback) && pRange->pfnWriteCallbackR3)) 958 949 return VINF_IOM_HC_MMIO_READ_WRITE; 959 950 … … 1014 1005 /** 1015 1006 * \#PF Handler callback for MMIO ranges. 1016 * Note: we are on ring0 in Hypervisor and interrupts are disabled.1017 1007 * 1018 1008 * @returns VBox status code (appropriate for GC return). … … 1026 1016 IOMDECL(int) IOMMMIOHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pCtxCore, RTGCPTR pvFault, RTGCPHYS GCPhysFault, void *pvUser) 1027 1017 { 1028 STAM_PROFILE_START(&pVM->iom.s.Stat GCMMIOHandler, a);1018 STAM_PROFILE_START(&pVM->iom.s.StatRZMMIOHandler, a); 1029 1019 Log(("IOMMMIOHandler: GCPhys=%RGp uErr=%#x pvFault=%VGv eip=%VGv\n", 1030 1020 GCPhysFault, (uint32_t)uErrorCode, pvFault, pCtxCore->rip)); … … 1044 1034 return VERR_NO_MEMORY; 1045 1035 # else 1046 STAM_PROFILE_STOP(&pVM->iom.s.Stat GCMMIOHandler, a);1047 STAM_COUNTER_INC(&pVM->iom.s.Stat GCMMIOFailures);1036 STAM_PROFILE_STOP(&pVM->iom.s.StatRZMMIOHandler, a); 1037 STAM_COUNTER_INC(&pVM->iom.s.StatRZMMIOFailures); 1048 1038 return uErrorCode & X86_TRAP_PF_RW ? VINF_IOM_HC_MMIO_WRITE : VINF_IOM_HC_MMIO_READ; 1049 1039 # endif … … 1056 1046 */ 1057 1047 if (uErrorCode & X86_TRAP_PF_RW 1058 ? !pRange->CTX ALLSUFF(pfnWriteCallback) && pRange->pfnWriteCallbackR31059 : !pRange->CTX ALLSUFF(pfnReadCallback) && pRange->pfnReadCallbackR3)1048 ? !pRange->CTX_SUFF(pfnWriteCallback) && pRange->pfnWriteCallbackR3 1049 : !pRange->CTX_SUFF(pfnReadCallback) && pRange->pfnReadCallbackR3) 1060 1050 { 1061 1051 # ifdef VBOX_WITH_STATISTICS 1062 1052 if (uErrorCode & X86_TRAP_PF_RW) 1063 STAM_COUNTER_INC(&pStats->CTX ALLMID(Write,ToR3));1053 STAM_COUNTER_INC(&pStats->CTX_MID_Z(Write,ToR3)); 1064 1054 else 1065 STAM_COUNTER_INC(&pStats->CTX ALLMID(Read,ToR3));1055 STAM_COUNTER_INC(&pStats->CTX_MID_Z(Read,ToR3)); 1066 1056 # endif 1067 1057 1068 STAM_PROFILE_STOP(&pVM->iom.s.Stat GCMMIOHandler, a);1069 STAM_COUNTER_INC(&pVM->iom.s.Stat GCMMIOFailures);1058 STAM_PROFILE_STOP(&pVM->iom.s.StatRZMMIOHandler, a); 1059 STAM_COUNTER_INC(&pVM->iom.s.StatRZMMIOFailures); 1070 1060 return uErrorCode & X86_TRAP_PF_RW ? VINF_IOM_HC_MMIO_WRITE : VINF_IOM_HC_MMIO_READ; 1071 1061 } … … 1085 1075 case OP_MOVSX: 1086 1076 { 1087 STAM_PROFILE_START(&pVM->iom.s.Stat GCInstMov, b);1077 STAM_PROFILE_START(&pVM->iom.s.StatRZInstMov, b); 1088 1078 if (uErrorCode & X86_TRAP_PF_RW) 1089 1079 rc = iomInterpretMOVxXWrite(pVM, pCtxCore, &Cpu, pRange, GCPhysFault); 1090 1080 else 1091 1081 rc = iomInterpretMOVxXRead(pVM, pCtxCore, &Cpu, pRange, GCPhysFault); 1092 STAM_PROFILE_STOP(&pVM->iom.s.Stat GCInstMov, b);1082 STAM_PROFILE_STOP(&pVM->iom.s.StatRZInstMov, b); 1093 1083 break; 1094 1084 } 1095 1085 1096 1086 1097 #ifdef iom_MOVS_SUPPORT1087 #ifdef IOM_WITH_MOVS_SUPPORT 1098 1088 case OP_MOVSB: 1099 1089 case OP_MOVSWD: 1100 STAM_PROFILE_START(&pVM->iom.s.StatGCInstMovs, c); 1101 rc = iomInterpretMOVS(pVM, uErrorCode, pCtxCore, GCPhysFault, &Cpu, pRange); 1102 STAM_PROFILE_STOP(&pVM->iom.s.StatGCInstMovs, c); 1103 break; 1090 { 1091 STAM_PROFILE_ADV_START(&pVM->iom.s.StatRZInstMovs, c); 1092 PSTAMPROFILE pStat = NULL; 1093 rc = iomInterpretMOVS(pVM, uErrorCode, pCtxCore, GCPhysFault, &Cpu, pRange, &pStat); 1094 STAM_PROFILE_ADV_STOP_EX(&pVM->iom.s.StatRZInstMovs, pStat, c); 1095 break; 1096 } 1104 1097 #endif 1105 1098 … … 1107 1100 case OP_STOSWD: 1108 1101 Assert(uErrorCode & X86_TRAP_PF_RW); 1109 STAM_PROFILE_START(&pVM->iom.s.Stat GCInstStos, d);1102 STAM_PROFILE_START(&pVM->iom.s.StatRZInstStos, d); 1110 1103 rc = iomInterpretSTOS(pVM, pCtxCore, GCPhysFault, &Cpu, pRange); 1111 STAM_PROFILE_STOP(&pVM->iom.s.Stat GCInstStos, d);1104 STAM_PROFILE_STOP(&pVM->iom.s.StatRZInstStos, d); 1112 1105 break; 1113 1106 … … 1115 1108 case OP_LODSWD: 1116 1109 Assert(!(uErrorCode & X86_TRAP_PF_RW)); 1117 STAM_PROFILE_START(&pVM->iom.s.Stat GCInstLods, e);1110 STAM_PROFILE_START(&pVM->iom.s.StatRZInstLods, e); 1118 1111 rc = iomInterpretLODS(pVM, pCtxCore, GCPhysFault, &Cpu, pRange); 1119 STAM_PROFILE_STOP(&pVM->iom.s.Stat GCInstLods, e);1112 STAM_PROFILE_STOP(&pVM->iom.s.StatRZInstLods, e); 1120 1113 break; 1121 1114 1122 1115 case OP_CMP: 1123 1116 Assert(!(uErrorCode & X86_TRAP_PF_RW)); 1124 STAM_PROFILE_START(&pVM->iom.s.Stat GCInstCmp, f);1117 STAM_PROFILE_START(&pVM->iom.s.StatRZInstCmp, f); 1125 1118 rc = iomInterpretCMP(pVM, pCtxCore, GCPhysFault, &Cpu, pRange); 1126 STAM_PROFILE_STOP(&pVM->iom.s.Stat GCInstCmp, f);1119 STAM_PROFILE_STOP(&pVM->iom.s.StatRZInstCmp, f); 1127 1120 break; 1128 1121 1129 1122 case OP_AND: 1130 STAM_PROFILE_START(&pVM->iom.s.Stat GCInstAnd, g);1123 STAM_PROFILE_START(&pVM->iom.s.StatRZInstAnd, g); 1131 1124 rc = iomInterpretOrXorAnd(pVM, pCtxCore, GCPhysFault, &Cpu, pRange, EMEmulateAnd); 1132 STAM_PROFILE_STOP(&pVM->iom.s.Stat GCInstAnd, g);1125 STAM_PROFILE_STOP(&pVM->iom.s.StatRZInstAnd, g); 1133 1126 break; 1134 1127 1135 1128 case OP_OR: 1136 STAM_PROFILE_START(&pVM->iom.s.Stat GCInstOr, k);1129 STAM_PROFILE_START(&pVM->iom.s.StatRZInstOr, k); 1137 1130 rc = iomInterpretOrXorAnd(pVM, pCtxCore, GCPhysFault, &Cpu, pRange, EMEmulateOr); 1138 STAM_PROFILE_STOP(&pVM->iom.s.Stat GCInstOr, k);1131 STAM_PROFILE_STOP(&pVM->iom.s.StatRZInstOr, k); 1139 1132 break; 1140 1133 1141 1134 case OP_XOR: 1142 STAM_PROFILE_START(&pVM->iom.s.Stat GCInstXor, m);1135 STAM_PROFILE_START(&pVM->iom.s.StatRZInstXor, m); 1143 1136 rc = iomInterpretOrXorAnd(pVM, pCtxCore, GCPhysFault, &Cpu, pRange, EMEmulateXor); 1144 STAM_PROFILE_STOP(&pVM->iom.s.Stat GCInstXor, m);1137 STAM_PROFILE_STOP(&pVM->iom.s.StatRZInstXor, m); 1145 1138 break; 1146 1139 1147 1140 case OP_TEST: 1148 1141 Assert(!(uErrorCode & X86_TRAP_PF_RW)); 1149 STAM_PROFILE_START(&pVM->iom.s.Stat GCInstTest, h);1142 STAM_PROFILE_START(&pVM->iom.s.StatRZInstTest, h); 1150 1143 rc = iomInterpretTEST(pVM, pCtxCore, GCPhysFault, &Cpu, pRange); 1151 STAM_PROFILE_STOP(&pVM->iom.s.Stat GCInstTest, h);1144 STAM_PROFILE_STOP(&pVM->iom.s.StatRZInstTest, h); 1152 1145 break; 1153 1146 1154 1147 case OP_BT: 1155 1148 Assert(!(uErrorCode & X86_TRAP_PF_RW)); 1156 STAM_PROFILE_START(&pVM->iom.s.Stat GCInstBt, l);1149 STAM_PROFILE_START(&pVM->iom.s.StatRZInstBt, l); 1157 1150 rc = iomInterpretBT(pVM, pCtxCore, GCPhysFault, &Cpu, pRange); 1158 STAM_PROFILE_STOP(&pVM->iom.s.Stat GCInstBt, l);1151 STAM_PROFILE_STOP(&pVM->iom.s.StatRZInstBt, l); 1159 1152 break; 1160 1153 1161 1154 case OP_XCHG: 1162 STAM_PROFILE_START(&pVM->iom.s.Stat GCInstXchg, i);1155 STAM_PROFILE_START(&pVM->iom.s.StatRZInstXchg, i); 1163 1156 rc = iomInterpretXCHG(pVM, pCtxCore, GCPhysFault, &Cpu, pRange); 1164 STAM_PROFILE_STOP(&pVM->iom.s.Stat GCInstXchg, i);1157 STAM_PROFILE_STOP(&pVM->iom.s.StatRZInstXchg, i); 1165 1158 break; 1166 1159 … … 1170 1163 */ 1171 1164 default: 1172 STAM_COUNTER_INC(&pVM->iom.s.Stat GCInstOther);1165 STAM_COUNTER_INC(&pVM->iom.s.StatRZInstOther); 1173 1166 rc = (uErrorCode & X86_TRAP_PF_RW) ? VINF_IOM_HC_MMIO_WRITE : VINF_IOM_HC_MMIO_READ; 1174 1167 break; … … 1182 1175 else 1183 1176 { 1184 STAM_COUNTER_INC(&pVM->iom.s.Stat GCMMIOFailures);1177 STAM_COUNTER_INC(&pVM->iom.s.StatRZMMIOFailures); 1185 1178 #if defined(VBOX_WITH_STATISTICS) && !defined(IN_RING3) 1186 1179 switch (rc) … … 1188 1181 case VINF_IOM_HC_MMIO_READ: 1189 1182 case VINF_IOM_HC_MMIO_READ_WRITE: 1190 STAM_COUNTER_INC(&pStats->CTX ALLMID(Read,ToR3));1183 STAM_COUNTER_INC(&pStats->CTX_MID_Z(Read,ToR3)); 1191 1184 break; 1192 1185 case VINF_IOM_HC_MMIO_WRITE: 1193 STAM_COUNTER_INC(&pStats->CTX ALLMID(Write,ToR3));1186 STAM_COUNTER_INC(&pStats->CTX_MID_Z(Write,ToR3)); 1194 1187 break; 1195 1188 } … … 1197 1190 } 1198 1191 1199 STAM_PROFILE_STOP(&pVM->iom.s.Stat GCMMIOHandler, a);1192 STAM_PROFILE_STOP(&pVM->iom.s.StatRZMMIOHandler, a); 1200 1193 return rc; 1201 1194 } … … 1220 1213 int rc; 1221 1214 PIOMMMIORANGE pRange = (PIOMMMIORANGE)pvUser; 1215 STAM_COUNTER_INC(&pVM->iom.s.StatR3MMIOHandler); 1216 1217 AssertMsg(cbBuf == 1 || cbBuf == 2 || cbBuf == 4 || cbBuf == 8, ("%zu\n", cbBuf)); 1222 1218 1223 1219 Assert(pRange); … … 1263 1259 # endif 1264 1260 #endif /* VBOX_WITH_STATISTICS */ 1265 if (pRange->CTX ALLSUFF(pfnReadCallback))1261 if (pRange->CTX_SUFF(pfnReadCallback)) 1266 1262 { 1267 1263 /* … … 1270 1266 #ifdef VBOX_WITH_STATISTICS 1271 1267 if (pStats) 1272 STAM_PROFILE_ADV_START(&pStats->CTX ALLSUFF(ProfRead), a);1273 #endif 1274 int rc = pRange->CTX ALLSUFF(pfnReadCallback)(pRange->CTXALLSUFF(pDevIns), pRange->CTXALLSUFF(pvUser), GCPhys, pu32Value, cbValue);1268 STAM_PROFILE_ADV_START(&pStats->CTX_SUFF_Z(ProfRead), a); 1269 #endif 1270 int rc = pRange->CTX_SUFF(pfnReadCallback)(pRange->CTX_SUFF(pDevIns), pRange->CTX_SUFF(pvUser), GCPhys, pu32Value, cbValue); 1275 1271 #ifdef VBOX_WITH_STATISTICS 1276 1272 if (pStats) 1277 STAM_PROFILE_ADV_STOP(&pStats->CTX ALLSUFF(ProfRead), a);1273 STAM_PROFILE_ADV_STOP(&pStats->CTX_SUFF_Z(ProfRead), a); 1278 1274 if (pStats && rc != VINF_IOM_HC_MMIO_READ) 1279 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(Read));1275 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Read)); 1280 1276 #endif 1281 1277 switch (rc) … … 1314 1310 if (pRange->pfnReadCallbackR3) 1315 1311 { 1316 STAM_COUNTER_INC(&pStats->CTX ALLMID(Read,ToR3));1312 STAM_COUNTER_INC(&pStats->CTX_MID_Z(Read,ToR3)); 1317 1313 return VINF_IOM_HC_MMIO_READ; 1318 1314 } … … 1324 1320 #ifdef VBOX_WITH_STATISTICS 1325 1321 if (pStats) 1326 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(Read));1322 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Read)); 1327 1323 #endif 1328 1324 /* Unassigned memory; this is actually not supposed to happen. */ … … 1373 1369 * to defer it to ring-3. 1374 1370 */ 1375 if (pRange->CTX ALLSUFF(pfnWriteCallback))1371 if (pRange->CTX_SUFF(pfnWriteCallback)) 1376 1372 { 1377 1373 #ifdef VBOX_WITH_STATISTICS 1378 1374 if (pStats) 1379 STAM_PROFILE_ADV_START(&pStats->CTX ALLSUFF(ProfWrite), a);1380 #endif 1381 int rc = pRange->CTX ALLSUFF(pfnWriteCallback)(pRange->CTXALLSUFF(pDevIns), pRange->CTXALLSUFF(pvUser), GCPhys, &u32Value, cbValue);1375 STAM_PROFILE_ADV_START(&pStats->CTX_SUFF_Z(ProfWrite), a); 1376 #endif 1377 int rc = pRange->CTX_SUFF(pfnWriteCallback)(pRange->CTX_SUFF(pDevIns), pRange->CTX_SUFF(pvUser), GCPhys, &u32Value, cbValue); 1382 1378 #ifdef VBOX_WITH_STATISTICS 1383 1379 if (pStats) 1384 STAM_PROFILE_ADV_STOP(&pStats->CTX ALLSUFF(ProfWrite), a);1380 STAM_PROFILE_ADV_STOP(&pStats->CTX_SUFF_Z(ProfWrite), a); 1385 1381 if (pStats && rc != VINF_IOM_HC_MMIO_WRITE) 1386 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(Write));1382 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Write)); 1387 1383 #endif 1388 1384 Log4(("IOMMMIOWrite: GCPhys=%RGp u32=%08RX32 cb=%d rc=%Vrc\n", GCPhys, u32Value, cbValue, rc)); … … 1392 1388 if (pRange->pfnWriteCallbackR3) 1393 1389 { 1394 STAM_COUNTER_INC(&pStats->CTX ALLMID(Write,ToR3));1390 STAM_COUNTER_INC(&pStats->CTX_MID_Z(Write,ToR3)); 1395 1391 return VINF_IOM_HC_MMIO_WRITE; 1396 1392 } … … 1402 1398 #ifdef VBOX_WITH_STATISTICS 1403 1399 if (pStats) 1404 STAM_COUNTER_INC(&pStats->CTX ALLSUFF(Write));1400 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Write)); 1405 1401 #endif 1406 1402 Log4(("IOMMMIOWrite: GCPhys=%RGp u32=%08RX32 cb=%d rc=%Vrc\n", GCPhys, u32Value, cbValue, VINF_SUCCESS)); … … 1435 1431 { 1436 1432 #ifdef VBOX_WITH_STATISTICS 1437 STAM_COUNTER_INC(&pVM->iom.s.Stat GCInstIns);1433 STAM_COUNTER_INC(&pVM->iom.s.StatInstIns); 1438 1434 #endif 1439 1435 … … 1471 1467 SELMTOFLAT_FLAGS_HYPER | SELMTOFLAT_FLAGS_NO_PL, 1472 1468 &GCPtrDst); 1473 if ( VBOX_FAILURE(rc))1469 if (RT_FAILURE(rc)) 1474 1470 { 1475 1471 Log(("INS destination address conversion failed -> fallback, rc=%d\n", rc)); … … 1523 1519 pRegFrame->ecx = cTransfers; 1524 1520 1525 AssertMsg(rc == VINF_SUCCESS || rc == VINF_IOM_HC_IOPORT_READ || (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST) || VBOX_FAILURE(rc), ("%Vrc\n", rc));1521 AssertMsg(rc == VINF_SUCCESS || rc == VINF_IOM_HC_IOPORT_READ || (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST) || RT_FAILURE(rc), ("%Vrc\n", rc)); 1526 1522 return rc; 1527 1523 } … … 1563 1559 if (RT_UNLIKELY(rc != VINF_SUCCESS)) 1564 1560 { 1565 AssertMsg(rc == VINF_EM_RAW_GUEST_TRAP || rc == VINF_TRPM_XCPT_DISPATCHED || rc == VINF_TRPM_XCPT_DISPATCHED || VBOX_FAILURE(rc), ("%Vrc\n", rc));1561 AssertMsg(rc == VINF_EM_RAW_GUEST_TRAP || rc == VINF_TRPM_XCPT_DISPATCHED || rc == VINF_TRPM_XCPT_DISPATCHED || RT_FAILURE(rc), ("%Vrc\n", rc)); 1566 1562 return rc; 1567 1563 } … … 1596 1592 { 1597 1593 #ifdef VBOX_WITH_STATISTICS 1598 STAM_COUNTER_INC(&pVM->iom.s.Stat GCInstOuts);1594 STAM_COUNTER_INC(&pVM->iom.s.StatInstOuts); 1599 1595 #endif 1600 1596 … … 1631 1627 SELMTOFLAT_FLAGS_HYPER | SELMTOFLAT_FLAGS_NO_PL, 1632 1628 &GCPtrSrc); 1633 if ( VBOX_FAILURE(rc))1629 if (RT_FAILURE(rc)) 1634 1630 { 1635 1631 Log(("OUTS source address conversion failed -> fallback, rc=%Vrc\n", rc)); … … 1686 1682 pRegFrame->ecx = cTransfers; 1687 1683 1688 AssertMsg(rc == VINF_SUCCESS || rc == VINF_IOM_HC_IOPORT_WRITE || (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST) || VBOX_FAILURE(rc), ("%Vrc\n", rc));1684 AssertMsg(rc == VINF_SUCCESS || rc == VINF_IOM_HC_IOPORT_WRITE || (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST) || RT_FAILURE(rc), ("%Vrc\n", rc)); 1689 1685 return rc; 1690 1686 } … … 1728 1724 if (RT_UNLIKELY(rc != VINF_SUCCESS)) 1729 1725 { 1730 AssertMsg(rc == VINF_EM_RAW_GUEST_TRAP || rc == VINF_TRPM_XCPT_DISPATCHED || rc == VINF_TRPM_XCPT_DISPATCHED || VBOX_FAILURE(rc), ("%Vrc\n", rc));1726 AssertMsg(rc == VINF_EM_RAW_GUEST_TRAP || rc == VINF_TRPM_XCPT_DISPATCHED || rc == VINF_TRPM_XCPT_DISPATCHED || RT_FAILURE(rc), ("%Vrc\n", rc)); 1731 1727 return rc; 1732 1728 } -
trunk/src/VBox/VMM/testcase/tstVMStructGC.cpp
r12688 r12772 127 127 128 128 GEN_CHECK_SIZE(IOM); 129 GEN_CHECK_OFF(IOM, pTreesRC); 130 GEN_CHECK_OFF(IOM, pTreesR3); 131 GEN_CHECK_OFF(IOM, pTreesR0); 129 132 GEN_CHECK_OFF(IOM, pMMIORangeLastR3); 130 133 GEN_CHECK_OFF(IOM, pMMIOStatsLastR3); 131 134 GEN_CHECK_OFF(IOM, pMMIORangeLastR0); 132 135 GEN_CHECK_OFF(IOM, pMMIOStatsLastR0); 133 GEN_CHECK_OFF(IOM, pMMIORangeLast GC);134 GEN_CHECK_OFF(IOM, pMMIOStatsLast GC);136 GEN_CHECK_OFF(IOM, pMMIORangeLastRC); 137 GEN_CHECK_OFF(IOM, pMMIOStatsLastRC); 135 138 GEN_CHECK_OFF(IOM, pRangeLastReadR0); 136 GEN_CHECK_OFF(IOM, pRangeLastRead GC);139 GEN_CHECK_OFF(IOM, pRangeLastReadRC); 137 140 138 141 GEN_CHECK_SIZE(IOMMMIORANGE); … … 150 153 GEN_CHECK_OFF(IOMMMIORANGE, pfnReadCallbackR0); 151 154 GEN_CHECK_OFF(IOMMMIORANGE, pfnFillCallbackR0); 152 GEN_CHECK_OFF(IOMMMIORANGE, pvUser GC);153 GEN_CHECK_OFF(IOMMMIORANGE, pDevIns GC);154 GEN_CHECK_OFF(IOMMMIORANGE, pfnWriteCallback GC);155 GEN_CHECK_OFF(IOMMMIORANGE, pfnReadCallback GC);156 GEN_CHECK_OFF(IOMMMIORANGE, pfnFillCallback GC);155 GEN_CHECK_OFF(IOMMMIORANGE, pvUserRC); 156 GEN_CHECK_OFF(IOMMMIORANGE, pDevInsRC); 157 GEN_CHECK_OFF(IOMMMIORANGE, pfnWriteCallbackRC); 158 GEN_CHECK_OFF(IOMMMIORANGE, pfnReadCallbackRC); 159 GEN_CHECK_OFF(IOMMMIORANGE, pfnFillCallbackRC); 157 160 158 161 GEN_CHECK_SIZE(IOMMMIOSTATS); … … 166 169 GEN_CHECK_OFF(IOMIOPORTRANGER0, pszDesc); 167 170 168 GEN_CHECK_SIZE(IOMIOPORTRANGE GC);169 GEN_CHECK_OFF(IOMIOPORTRANGE GC, Port);170 GEN_CHECK_OFF(IOMIOPORTRANGE GC, cPorts);171 GEN_CHECK_OFF(IOMIOPORTRANGE GC, pvUser);172 GEN_CHECK_OFF(IOMIOPORTRANGE GC, pDevIns);173 GEN_CHECK_OFF(IOMIOPORTRANGE GC, pszDesc);171 GEN_CHECK_SIZE(IOMIOPORTRANGERC); 172 GEN_CHECK_OFF(IOMIOPORTRANGERC, Port); 173 GEN_CHECK_OFF(IOMIOPORTRANGERC, cPorts); 174 GEN_CHECK_OFF(IOMIOPORTRANGERC, pvUser); 175 GEN_CHECK_OFF(IOMIOPORTRANGERC, pDevIns); 176 GEN_CHECK_OFF(IOMIOPORTRANGERC, pszDesc); 174 177 175 178 GEN_CHECK_SIZE(IOMIOPORTSTATS); … … 179 182 GEN_CHECK_OFF(IOMTREES, IOPortTreeR3); 180 183 GEN_CHECK_OFF(IOMTREES, IOPortTreeR0); 181 GEN_CHECK_OFF(IOMTREES, IOPortTree GC);184 GEN_CHECK_OFF(IOMTREES, IOPortTreeRC); 182 185 GEN_CHECK_OFF(IOMTREES, MMIOTree); 183 186 GEN_CHECK_OFF(IOMTREES, IOPortStatTree);
Note:
See TracChangeset
for help on using the changeset viewer.