Changeset 97145 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Oct 14, 2022 6:05:15 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154118
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PGMInternal.h
r97043 r97145 1946 1946 /** Shw: EPT page table; Gst: EPT page table. */ 1947 1947 PGMPOOLKIND_EPT_PT_FOR_EPT_PT, 1948 /** Shw: EPT page table; Gst: 2MB page. */ 1949 PGMPOOLKIND_EPT_PT_FOR_EPT_2MB, 1948 1950 /** Shw: EPT page directory table; Gst: EPT page directory. */ 1949 1951 PGMPOOLKIND_EPT_PD_FOR_EPT_PD, … … 2344 2346 #define PGMPOOL_PAGE_IS_NESTED(a_pPage) PGMPOOL_PAGE_IS_KIND_NESTED((a_pPage)->enmKind) 2345 2347 #define PGMPOOL_PAGE_IS_KIND_NESTED(a_enmKind) ( (a_enmKind) == PGMPOOLKIND_EPT_PT_FOR_EPT_PT \ 2348 || (a_enmKind) == PGMPOOLKIND_EPT_PT_FOR_EPT_2MB \ 2346 2349 || (a_enmKind) == PGMPOOLKIND_EPT_PD_FOR_EPT_PD \ 2347 2350 || (a_enmKind) == PGMPOOLKIND_EPT_PDPT_FOR_EPT_PDPT \ … … 3576 3579 /** Mask containing the EPT PDE bits we shadow. */ 3577 3580 uint64_t fGstEptShadowedPdeMask; 3581 /** Mask containing the EPT PDE (2M) bits we shadow. */ 3582 uint64_t fGstEptShadowedBigPdeMask; 3578 3583 /** Mask containing the EPT PDPTE bits we shadow. */ 3579 3584 uint64_t fGstEptShadowedPdpteMask;
Note:
See TracChangeset
for help on using the changeset viewer.