Changeset 31080 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Jul 24, 2010 5:25:32 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64027
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r31067 r31080 2006 2006 2007 2007 /** 2008 * Called whenever CR0 or CR4 in a way which may change 2009 * the paging mode. 2008 * Called whenever CR0 or CR4 in a way which may affect the paging mode. 2010 2009 * 2011 2010 * @returns VBox status code, with the following informational code for … … 2034 2033 enmGuestMode = PGMMODE_PROTECTED; 2035 2034 else if (!(cr4 & X86_CR4_PAE)) 2035 { 2036 bool const fPse = !!(cr4 & X86_CR4_PSE); 2037 if (pVCpu->pgm.s.fGst32BitPageSizeExtension != fPse) 2038 Log(("PGMChangeMode: CR4.PSE %d -> %d\n", pVCpu->pgm.s.fGst32BitPageSizeExtension, fPse)); 2039 pVCpu->pgm.s.fGst32BitPageSizeExtension = fPse; 2036 2040 enmGuestMode = PGMMODE_32_BIT; 2041 } 2037 2042 else if (!(efer & MSR_K6_EFER_LME)) 2038 2043 {
Note:
See TracChangeset
for help on using the changeset viewer.