Changeset 96981 in vbox
- Timestamp:
- Oct 4, 2022 1:06:45 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 153904
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PGMInternal.h
r96980 r96981 656 656 /** 1:0 - The physical handler state (PGM_PAGE_HNDL_PHYS_STATE_*). */ 657 657 uint64_t u2HandlerPhysStateY : 2; 658 /** 3:2 - Paging structure needed to map the page 658 /** 2 - Don't apply the physical handler in HM mode (nested APIC hack). */ 659 uint64_t fHandlerPhysNotInHm : 1; 660 /** 3 - Flag indicating that a write monitored page was written to 661 * when set. */ 662 uint64_t fWrittenToY : 1; 663 /** 7:4 - Unused. */ 664 uint64_t u2Unused0 : 4; 665 /** 9:8 - Paging structure needed to map the page 659 666 * (PGM_PAGE_PDE_TYPE_*). */ 660 667 uint64_t u2PDETypeY : 2; 661 /** 4 - Don't apply the physical handler in HM mode (nested APIC hack). */662 uint64_t fHandlerPhysNotInHm : 1;663 /** 5 - Flag indicating that a write monitored page was written to664 * when set. */665 uint64_t fWrittenToY : 1;666 /** 7:6 - Unused. */667 uint64_t u2Unused0 : 2;668 /** 9:8 - Unused (was used by PGM_PAGE_HNDL_VIRT_STATE_*). */669 uint64_t u2Unused1 : 2;670 668 /** 11:10 - NEM state bits. */ 671 669 uint64_t u2NemStateY : 2;
Note:
See TracChangeset
for help on using the changeset viewer.