Changeset 91271 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Sep 16, 2021 7:42:37 AM (3 years ago)
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/CPUMInternal.h
r91266 r91271 115 115 * @{ */ 116 116 /** The current saved state version. */ 117 #define CPUM_SAVED_STATE_VERSION CPUM_SAVED_STATE_VERSION_HWVIRT_VMX_2 117 #define CPUM_SAVED_STATE_VERSION CPUM_SAVED_STATE_VERSION_PAE_PDPES 118 /** The saved state version with PAE PDPEs added. */ 119 #define CPUM_SAVED_STATE_VERSION_PAE_PDPES 21 118 120 /** The saved state version with more virtual VMCS fields and CPUMCTX VMX fields. */ 119 121 #define CPUM_SAVED_STATE_VERSION_HWVIRT_VMX_2 20 -
trunk/src/VBox/VMM/include/CPUMInternal.mac
r91266 r91271 224 224 alignb 8 225 225 .Guest.fExtrn resq 1 226 .Guest.aPaePdpes resq 4 226 227 alignb 8 227 228 .Guest.hwvirt.svm.uMsrHSavePa resq 1 -
trunk/src/VBox/VMM/include/PGMInternal.h
r91250 r91271 3554 3554 /** The physical addresses of the guest page directories (PAE) pointed to by apGstPagePDsHC/GC. */ 3555 3555 RTGCPHYS aGCPhysGstPaePDs[4]; 3556 /** The values of the 4 PDPE CPU registers (PAE).3557 * @todo Not really maintained by PGM atm, only by VT-x in EPT mode. Should3558 * load on cr3 load and use instead of guest memory version like real3559 * HW. We probably should move these to the CPUMCTX and treat them3560 * like the rest of the register wrt exporting to VT-x and import back. */3561 X86PDPE aGstPaePdpeRegs[4];3562 3556 /** The physical addresses of the monitored guest page directories (PAE). */ 3563 3557 RTGCPHYS aGCPhysGstPaePDsMonitored[4];
Note:
See TracChangeset
for help on using the changeset viewer.