Changeset 80180 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Aug 7, 2019 10:49:36 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132621
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PGMInternal.h
r80179 r80180 2187 2187 /** The VM handle - R0 Ptr. */ 2188 2188 PVMR0 pVMR0; 2189 /** The VM handle - RC Ptr. */ 2190 PVMRC pVMRC; 2189 2191 /** The max pool size. This includes the special IDs. */ 2190 2192 uint16_t cMaxPages; … … 2201 2203 /** The number of present page table entries in the entire pool. */ 2202 2204 uint32_t cPresent; 2205 /** Pointer to the array of user nodes - RC pointer. */ 2206 RCPTRTYPE(PPGMPOOLUSER) paUsersRC; 2203 2207 /** Pointer to the array of user nodes - R3 pointer. */ 2204 2208 R3PTRTYPE(PPGMPOOLUSER) paUsersR3; … … 2209 2213 /** The number of user nodes we've allocated. */ 2210 2214 uint16_t cMaxPhysExts; 2211 uint32_t u32Padding0b; 2215 /** Pointer to the array of physical xref extent - RC pointer. */ 2216 RCPTRTYPE(PPGMPOOLPHYSEXT) paPhysExtsRC; 2212 2217 /** Pointer to the array of physical xref extent nodes - R3 pointer. */ 2213 2218 R3PTRTYPE(PPGMPOOLPHYSEXT) paPhysExtsR3; … … 3194 3199 R0PTRTYPE(PPGMREGMMIORANGE) apMmio2RangesR0[PGM_MMIO2_MAX_RANGES]; 3195 3200 3201 /** RAM range TLB for RC. */ 3202 RCPTRTYPE(PPGMRAMRANGE) apRamRangesTlbRC[PGM_RAMRANGE_TLB_ENTRIES]; 3203 /** RC pointer corresponding to PGM::pRamRangesXR3. */ 3204 RCPTRTYPE(PPGMRAMRANGE) pRamRangesXRC; 3205 /** Root of the RAM range search tree for raw-mode context. */ 3206 RCPTRTYPE(PPGMRAMRANGE) pRamRangeTreeRC; 3207 /** PGM offset based trees - RC Ptr. */ 3208 RCPTRTYPE(PPGMTREES) pTreesRC; 3209 /** Caching the last physical handler we looked up in RC. */ 3210 RCPTRTYPE(PPGMPHYSHANDLER) pLastPhysHandlerRC; 3211 /** Shadow Page Pool - RC Ptr. */ 3212 RCPTRTYPE(PPGMPOOL) pPoolRC; 3213 #ifndef PGM_WITHOUT_MAPPINGS 3214 /** Linked list of GC mappings - for RC. 3215 * The list is sorted ascending on address. */ 3216 RCPTRTYPE(PPGMMAPPING) pMappingsRC; 3217 RTRCPTR RCPtrAlignment0; 3218 #endif 3219 /** RC pointer corresponding to PGM::pRomRangesR3. */ 3220 RCPTRTYPE(PPGMROMRANGE) pRomRangesRC; 3221 #ifndef PGM_WITHOUT_MAPPINGS 3222 /** Pointer to the page table entries for the dynamic page mapping area - GCPtr. */ 3223 RCPTRTYPE(PX86PTE) paDynPageMap32BitPTEsGC; 3224 /** Pointer to the page table entries for the dynamic page mapping area - GCPtr. */ 3225 RCPTRTYPE(PPGMSHWPTEPAE) paDynPageMapPaePTEsGC; 3226 #endif 3227 3228 3196 3229 #ifndef PGM_WITHOUT_MAPPINGS 3197 3230 /** Pointer to the 5 page CR3 content mapping. … … 3246 3279 uint32_t cDeprecatedPageLocks; 3247 3280 /** Alignment padding. */ 3248 uint32_t au32Alignment2[ 1];3281 uint32_t au32Alignment2[3]; 3249 3282 3250 3283 … … 3433 3466 R3PTRTYPE(PGMSTATS *) pStatsR3; 3434 3467 R0PTRTYPE(PGMSTATS *) pStatsR0; 3468 RCPTRTYPE(PGMSTATS *) pStatsRC; 3469 RTRCPTR RCPtrAlignment; 3435 3470 /** @} */ 3436 3471 #endif … … 3719 3754 R0PTRTYPE(PX86PD) pGst32BitPdR0; 3720 3755 #endif 3756 /** The guest's page directory, static RC mapping. */ 3757 RCPTRTYPE(PX86PD) pGst32BitPdRC; 3721 3758 /** Mask containing the MBZ bits of a big page PDE. */ 3722 3759 uint32_t fGst32BitMbzBigPdeMask; … … 3729 3766 /** @name PAE Guest Paging. 3730 3767 * @{ */ 3768 /** The guest's page directory pointer table, static RC mapping. */ 3769 RCPTRTYPE(PX86PDPT) pGstPaePdptRC; 3731 3770 /** The guest's page directory pointer table, R3 pointer. */ 3732 3771 R3PTRTYPE(PX86PDPT) pGstPaePdptR3; … … 3745 3784 R0PTRTYPE(PX86PDPAE) apGstPaePDsR0[4]; 3746 3785 #endif 3786 /** The guest's page directories, static GC mapping. 3787 * Unlike the R3/R0 array the first entry can be accessed as a 2048 entry PD. 3788 * These don't have to be up-to-date - use pgmGstGetPaePD() to access them. */ 3789 RCPTRTYPE(PX86PDPAE) apGstPaePDsRC[4]; 3747 3790 /** The physical addresses of the guest page directories (PAE) pointed to by apGstPagePDsHC/GC. 3748 3791 * @todo Remove this and use aGstPaePdpeRegs instead? */ … … 3806 3849 /** Pointer to the page of the current active CR3 - R0 Ptr. */ 3807 3850 R0PTRTYPE(PPGMPOOLPAGE) pShwPageCR3R0; 3851 /** Pointer to the page of the current active CR3 - RC Ptr. */ 3852 RCPTRTYPE(PPGMPOOLPAGE) pShwPageCR3RC; 3853 /** Explicit alignment. */ 3854 RTRCPTR alignment6; 3808 3855 /** @} */ 3809 3856 … … 3829 3876 /** @name Statistics 3830 3877 * @{ */ 3878 /** RC: Pointer to the statistics. */ 3879 RCPTRTYPE(PGMCPUSTATS *) pStatsRC; 3880 /** RC: Which statistic this \#PF should be attributed to. */ 3881 RCPTRTYPE(PSTAMPROFILE) pStatTrap0eAttributionRC; 3831 3882 /** R0: Pointer to the statistics. */ 3832 3883 R0PTRTYPE(PGMCPUSTATS *) pStatsR0;
Note:
See TracChangeset
for help on using the changeset viewer.