- Timestamp:
- Feb 10, 2009 12:24:56 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r16599 r16624 898 898 Assert(pGstPdpe); 899 899 900 GCPdPt = pGstPdpe->u & X86_PDPE_PG_MASK; 901 enmKind = (CPUMGetGuestCR4(pVM) & X86_CR4_PAE) ? PGMPOOLKIND_PAE_PD_FOR_PAE_PD : PGMPOOLKIND_PAE_PD_FOR_32BIT_PD; 900 if (CPUMGetGuestCR4(pVM) & X86_CR4_PAE) 901 { 902 GCPdPt = pGstPdpe->u & X86_PDPE_PG_MASK; 903 enmKind = PGMPOOLKIND_PAE_PD_FOR_PAE_PD; 904 } 905 else 906 { 907 GCPdPt = CPUMGetGuestCR3(pVM); 908 enmKind = PGMPOOLKIND_PAE_PD_FOR_32BIT_PD; 909 } 902 910 } 903 911
Note:
See TracChangeset
for help on using the changeset viewer.