Changeset 31069 in vbox for trunk/src/VBox/VMM/PGMGstDefs.h
- Timestamp:
- Jul 23, 2010 3:49:30 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMGstDefs.h
r31066 r31069 82 82 # define PGSTPDE PSHWPDE 83 83 # define GST_PTE_PG_MASK SHW_PTE_PG_MASK 84 # define GST_IS_NX_ACTIVE(pVCpu) ( CPUMIsGuestNXEnabled(pVCpu)) /** @todo shadow this variable */84 # define GST_IS_NX_ACTIVE(pVCpu) (pgmGstIsNoExecuteActive(pVCpu)) 85 85 # if PGM_GST_TYPE == PGM_TYPE_PROT /* (comment at top of PGMAllBth.h) */ 86 86 # define BTH_IS_NP_ACTIVE(pVM) (pVM->pgm.s.fNestedPaging) … … 127 127 //# define GST_IS_BIG_PDPE_VALID(pVCpu, Pdpe) (false) 128 128 //# define GST_IS_PML4E_VALID(pVCpu, Pml4e) (false) 129 # define GST_IS_PSE_ACTIVE(pVCpu) (CPUMIsGuestPageSizeExtEnabled(pVCpu)) /** @todo ( (pVCpu)->pgm.s.fGst32BitPageSizeExtension ) */129 # define GST_IS_PSE_ACTIVE(pVCpu) pgmGstIsPageSizeExtActive(pVCpu) 130 130 # define GST_IS_NX_ACTIVE(pVCpu) (false) 131 131 # define BTH_IS_NP_ACTIVE(pVM) (false) … … 186 186 # define GST_PT_MASK X86_PT_PAE_MASK 187 187 # define GST_IS_PSE_ACTIVE(pVCpu) (true) 188 # define GST_IS_NX_ACTIVE(pVCpu) ( CPUMIsGuestNXEnabled(pVCpu)) /** @todo shadow this variable */188 # define GST_IS_NX_ACTIVE(pVCpu) (pgmGstIsNoExecuteActive(pVCpu)) 189 189 # define BTH_IS_NP_ACTIVE(pVM) (false) 190 190 #endif 191 191 192
Note:
See TracChangeset
for help on using the changeset viewer.