Changeset 100705 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jul 26, 2023 12:57:59 PM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/NEMInternal.h
r100102 r100705 140 140 # define NEM_DARWIN_CPUMCTX_EXTRN_MASK_FOR_IEM_XCPT (IEM_CPUMCTX_EXTRN_XCPT_MASK | NEM_DARWIN_CPUMCTX_EXTRN_MASK_FOR_IEM) 141 141 142 143 # if defined(VBOX_VMM_TARGET_ARMV8) 144 /** 145 * MMIO2 tracking region. 146 */ 147 typedef struct 148 { 149 /* Start of the region. */ 150 RTGCPHYS GCPhysStart; 151 /** End of the region. */ 152 RTGCPHYS GCPhysLast; 153 /** Whether the region was accessed since last time. */ 154 bool fDirty; 155 } NEMHVMMIO2REGION; 156 /** Pointer to a MMIO2 tracking region. */ 157 typedef NEMHVMMIO2REGION *PNEMHVMMIO2REGION; 158 # endif 159 142 160 #endif 143 161 … … 293 311 /** The vTimer offset programmed. */ 294 312 uint64_t u64VTimerOff; 313 /** Dirty tracking slots. */ 314 NEMHVMMIO2REGION aMmio2DirtyTracking[8]; 295 315 /** @} */ 296 316 # else
Note:
See TracChangeset
for help on using the changeset viewer.