VirtualBox

Changeset 80180 in vbox for trunk/src/VBox/VMM/include


Ignore:
Timestamp:
Aug 7, 2019 10:49:36 AM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
132621
Message:

Backing out r132620.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/include/PGMInternal.h

    r80179 r80180  
    21872187    /** The VM handle - R0 Ptr. */
    21882188    PVMR0                       pVMR0;
     2189    /** The VM handle - RC Ptr. */
     2190    PVMRC                       pVMRC;
    21892191    /** The max pool size. This includes the special IDs. */
    21902192    uint16_t                    cMaxPages;
     
    22012203    /** The number of present page table entries in the entire pool. */
    22022204    uint32_t                    cPresent;
     2205    /** Pointer to the array of user nodes - RC pointer. */
     2206    RCPTRTYPE(PPGMPOOLUSER)     paUsersRC;
    22032207    /** Pointer to the array of user nodes - R3 pointer. */
    22042208    R3PTRTYPE(PPGMPOOLUSER)     paUsersR3;
     
    22092213    /** The number of user nodes we've allocated. */
    22102214    uint16_t                    cMaxPhysExts;
    2211     uint32_t                    u32Padding0b;
     2215    /** Pointer to the array of physical xref extent - RC pointer. */
     2216    RCPTRTYPE(PPGMPOOLPHYSEXT)  paPhysExtsRC;
    22122217    /** Pointer to the array of physical xref extent nodes - R3 pointer. */
    22132218    R3PTRTYPE(PPGMPOOLPHYSEXT)  paPhysExtsR3;
     
    31943199    R0PTRTYPE(PPGMREGMMIORANGE)     apMmio2RangesR0[PGM_MMIO2_MAX_RANGES];
    31953200
     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
    31963229#ifndef PGM_WITHOUT_MAPPINGS
    31973230    /** Pointer to the 5 page CR3 content mapping.
     
    32463279    uint32_t                        cDeprecatedPageLocks;
    32473280    /** Alignment padding. */
    3248     uint32_t                        au32Alignment2[1];
     3281    uint32_t                        au32Alignment2[3];
    32493282
    32503283
     
    34333466    R3PTRTYPE(PGMSTATS *)           pStatsR3;
    34343467    R0PTRTYPE(PGMSTATS *)           pStatsR0;
     3468    RCPTRTYPE(PGMSTATS *)           pStatsRC;
     3469    RTRCPTR                         RCPtrAlignment;
    34353470    /** @} */
    34363471#endif
     
    37193754    R0PTRTYPE(PX86PD)               pGst32BitPdR0;
    37203755#endif
     3756    /** The guest's page directory, static RC mapping. */
     3757    RCPTRTYPE(PX86PD)               pGst32BitPdRC;
    37213758    /** Mask containing the MBZ bits of a big page PDE. */
    37223759    uint32_t                        fGst32BitMbzBigPdeMask;
     
    37293766    /** @name PAE Guest Paging.
    37303767     * @{ */
     3768    /** The guest's page directory pointer table, static RC mapping. */
     3769    RCPTRTYPE(PX86PDPT)             pGstPaePdptRC;
    37313770    /** The guest's page directory pointer table, R3 pointer. */
    37323771    R3PTRTYPE(PX86PDPT)             pGstPaePdptR3;
     
    37453784    R0PTRTYPE(PX86PDPAE)            apGstPaePDsR0[4];
    37463785#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];
    37473790    /** The physical addresses of the guest page directories (PAE) pointed to by apGstPagePDsHC/GC.
    37483791     * @todo Remove this and use aGstPaePdpeRegs instead? */
     
    38063849    /** Pointer to the page of the current active CR3 - R0 Ptr. */
    38073850    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;
    38083855    /** @} */
    38093856
     
    38293876    /** @name Statistics
    38303877     * @{ */
     3878    /** RC: Pointer to the statistics. */
     3879    RCPTRTYPE(PGMCPUSTATS *)        pStatsRC;
     3880    /** RC: Which statistic this \#PF should be attributed to. */
     3881    RCPTRTYPE(PSTAMPROFILE)         pStatTrap0eAttributionRC;
    38313882    /** R0: Pointer to the statistics. */
    38323883    R0PTRTYPE(PGMCPUSTATS *)        pStatsR0;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette