Changeset 16940 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Feb 19, 2009 9:43:49 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43090
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r16923 r16940 336 336 uShw.pv = PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage); 337 337 const unsigned iShw = off / sizeof(X86PTE); 338 LogFlow(("PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT iShw=%x\n", iShw)); 338 339 if (uShw.pPT->a[iShw].n.u1Present) 339 340 { … … 357 358 { 358 359 const unsigned iShw = (off / sizeof(X86PTE)) & (X86_PG_PAE_ENTRIES - 1); 360 LogFlow(("PGMPOOLKIND_PAE_PT_FOR_32BIT_PT iShw=%x\n", iShw)); 359 361 if (uShw.pPTPae->a[iShw].n.u1Present) 360 362 { … … 1144 1146 Assert(pCpu->mode == CPUMODE_32BIT); 1145 1147 1148 Log3(("pgmPoolAccessHandlerSTOSD\n")); 1149 1146 1150 /* 1147 1151 * Increment the modification counter and insert it into the list … … 1205 1209 PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, RTGCPTR pvFault) 1206 1210 { 1211 Log3(("pgmPoolAccessHandlerSimple\n")); 1207 1212 /* 1208 1213 * Increment the modification counter and insert it into the list
Note:
See TracChangeset
for help on using the changeset viewer.