Changeset 91931 in vbox
- Timestamp:
- Oct 21, 2021 10:15:38 AM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/VMM/include/PGMInternal.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PGMInternal.h
r91929 r91931 2356 2356 #if 0 2357 2357 /** Effective execute bit (!NX). */ 2358 #define PGMPTWALK_EFF_X RT_BIT_32(0)2358 #define PGMPTWALK_EFF_X UINT32_C(1) 2359 2359 /** Effective read+write access bit. */ 2360 #define PGMPTWALK_EFF_RW X86_PTE_RW2360 #define PGMPTWALK_EFF_RW X86_PTE_RW 2361 2361 /** Effective user-mode access bit. */ 2362 #define PGMPTWALK_EFF_US X86_PTE_US2362 #define PGMPTWALK_EFF_US X86_PTE_US 2363 2363 /** Effective write through cache bit. */ 2364 #define PGMPTWALK_EFF_PWT X86_PTE_PWT2364 #define PGMPTWALK_EFF_PWT X86_PTE_PWT 2365 2365 /** Effective cache disabled bit. */ 2366 #define PGMPTWALK_EFF_PCD X86_PTE_PCD2366 #define PGMPTWALK_EFF_PCD X86_PTE_PCD 2367 2367 /** Effective accessed bit. */ 2368 #define PGMPTWALK_EFF_A X86_PTE_A2368 #define PGMPTWALK_EFF_A X86_PTE_A 2369 2369 /** The dirty bit of the final entry. */ 2370 #define PGMPTWALK_EFF_D X86_PTE_D2370 #define PGMPTWALK_EFF_D X86_PTE_D 2371 2371 /** The PAT bit of the final entry. */ 2372 #define PGMPTWALK_EFF_PAT X86_PTE_PAT2372 #define PGMPTWALK_EFF_PAT X86_PTE_PAT 2373 2373 /** The global bit of the final entry. */ 2374 #define PGMPTWALK_EFF_G X86_PTE_G2374 #define PGMPTWALK_EFF_G X86_PTE_G 2375 2375 #endif 2376 2376 /** Effective execute bit (!NX). */
Note:
See TracChangeset
for help on using the changeset viewer.

