VirtualBox

Changeset 93554 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Feb 2, 2022 10:57:02 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
149688
Message:

VMM: Changed PAGE_SIZE -> GUEST_PAGE_SIZE / HOST_PAGE_SIZE, PAGE_SHIFT -> GUEST_PAGE_SHIFT / HOST_PAGE_SHIFT, and PAGE_OFFSET_MASK -> GUEST_PAGE_OFFSET_MASK / HOST_PAGE_OFFSET_MASK. Also removed most usage of ASMMemIsZeroPage and ASMMemZeroPage since the host and guest page size doesn't need to be the same any more. Some work left to do in the page pool code. bugref:9898

Location:
trunk/include/VBox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/param.h

    r93115 r93554  
    3939 * @{
    4040 */
     41
     42/** The guest page size (x86). */
     43#define GUEST_PAGE_SIZE             0x1000
     44/** The guest page offset mask (x86).
     45 * @note If one-complementing this, always put a typecast after the operator! */
     46#define GUEST_PAGE_OFFSET_MASK      0xfff
     47/** The guest page shift (x86). */
     48#define GUEST_PAGE_SHIFT            12
     49
     50/** Host page size. */
     51#define HOST_PAGE_SIZE              PAGE_SIZE
     52/** Host page offset mask.
     53 * @note If one-complementing this, always put a typecast after the operator! */
     54#define HOST_PAGE_OFFSET_MASK       PAGE_OFFSET_MASK
     55/** Host page shift. */
     56#define HOST_PAGE_SHIFT             PAGE_SHIFT
     57
    4158
    4259/** The maximum number of pages that can be allocated and mapped
  • trunk/include/VBox/vmm/gmm.h

    r93115 r93554  
    8383/** The allocation chunk size. */
    8484#define GMM_CHUNK_SIZE                  (1U << GMM_CHUNK_SHIFT)
    85 /** The allocation chunk size in pages. */
    86 #define GMM_CHUNK_NUM_PAGES             (1U << (GMM_CHUNK_SHIFT - PAGE_SHIFT))
     85/** The allocation chunk size in (guest) pages. */
     86#define GMM_CHUNK_NUM_PAGES             (1U << (GMM_CHUNK_SHIFT - GUEST_PAGE_SHIFT))
    8787/** The shift factor for converting a page id into a chunk id. */
    88 #define GMM_CHUNKID_SHIFT               (GMM_CHUNK_SHIFT - PAGE_SHIFT)
     88#define GMM_CHUNKID_SHIFT               (GMM_CHUNK_SHIFT - GUEST_PAGE_SHIFT)
    8989/** The last valid Chunk ID value. */
    9090#define GMM_CHUNKID_LAST                (GMM_PAGEID_LAST >> GMM_CHUNKID_SHIFT)
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