Changeset 62289 in vbox for trunk/src/VBox
- Timestamp:
- Jul 16, 2016 1:19:42 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMInternal.h
r62171 r62289 329 329 #define IEMTLBE_F_PG_NO_WRITE RT_BIT_64(3) /**< Phys page: Not writable (access handler, ROM, whatever). */ 330 330 #define IEMTLBE_F_PG_NO_READ RT_BIT_64(4) /**< Phys page: Not readable (MMIO / access handler, ROM) */ 331 #define IEMTLBE_F_ UNUSED RT_BIT_64(5) /**< Currently unused. */331 #define IEMTLBE_F_PATCH_CODE RT_BIT_64(5) /**< Code TLB: Patch code (PATM). */ 332 332 #define IEMTLBE_F_PT_NO_DIRTY RT_BIT_64(6) /**< Page tables: Not dirty (needs to be made dirty on write). */ 333 333 #define IEMTLBE_F_NO_MAPPINGR3 RT_BIT_64(7) /**< TLB entry: The IEMTLBENTRY::pMappingR3 member is invalid. */ 334 #define IEMTLBE_F_PHYS_REV UINT64_C(0xffffffffffffff00) /**< Physical revision mask. */ 334 335 /** @} */ 335 336 … … 386 387 } IEMTLB; 387 388 AssertCompileSizeAlignment(IEMTLB, 64); 389 /** IEMTLB::uTlbRevision increment. */ 390 #define IEMTLB_REVISION_INCR RT_BIT_64(36) 391 /** IEMTLB::uTlbPhysRev increment. */ 392 #define IEMTLB_PHYS_REV_INCR RT_BIT_64(8) 388 393 389 394
Note:
See TracChangeset
for help on using the changeset viewer.