Changeset 103152 in vbox
- Timestamp:
- Jan 31, 2024 3:43:28 PM (13 months ago)
- svn:sync-xref-src-repo-rev:
- 161403
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/IOM.cpp
r99051 r103152 176 176 * Info. 177 177 */ 178 #if !defined(VBOX_VMM_TARGET_ARMV8)179 178 DBGFR3InfoRegisterInternal(pVM, "ioport", "Dumps all IOPort ranges. No arguments.", &iomR3IoPortInfo); 180 #endif181 179 DBGFR3InfoRegisterInternal(pVM, "mmio", "Dumps all MMIO ranges. No arguments.", &iomR3MmioInfo); 182 180 … … 236 234 * regions and won't grow the table again. 237 235 */ 238 # if !defined(VBOX_VMM_TARGET_ARMV8)239 236 for (uint32_t i = 0; i < pVM->iom.s.cIoPortRegs; i++) 240 237 { … … 244 241 iomR3IoPortRegStats(pVM, pRegEntry); 245 242 } 246 # endif247 243 248 244 for (uint32_t i = 0; i < pVM->iom.s.cMmioRegs; i++) -
trunk/src/VBox/VMM/include/IOMInternal.h
r99051 r103152 574 574 575 575 #ifdef IN_RING3 576 # if !defined(VBOX_VMM_TARGET_ARMV8)577 576 DECLCALLBACK(void) iomR3IoPortInfo(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs); 578 577 void iomR3IoPortRegStats(PVM pVM, PIOMIOPORTENTRYR3 pRegEntry); 579 # endif580 578 DECLCALLBACK(void) iomR3MmioInfo(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs); 581 579 void iomR3MmioRegStats(PVM pVM, PIOMMMIOENTRYR3 pRegEntry);
Note:
See TracChangeset
for help on using the changeset viewer.