- Timestamp:
- Jul 9, 2008 9:05:42 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 33053
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r10368 r10397 2600 2600 { 2601 2601 case PGMPOOLKIND_ROOT_32BIT_PD: 2602 Assert(!(u.pau32[pUser->iUser] & PGM_PDFLAGS_MAPPING));2603 2602 Assert(pUser->iUserTable < X86_PG_ENTRIES); 2603 Assert(!(u.pau32[pUser->iUserTable] & PGM_PDFLAGS_MAPPING)); 2604 2604 break; 2605 2605 case PGMPOOLKIND_ROOT_PAE_PD: 2606 Assert(!(u.pau64[pUser->iUser] & PGM_PDFLAGS_MAPPING));2607 2606 Assert(pUser->iUserTable < 2048 && pUser->iUser == PGMPOOL_IDX_PAE_PD); 2607 Assert(!(u.pau64[pUser->iUserTable] & PGM_PDFLAGS_MAPPING)); 2608 2608 break; 2609 2609 case PGMPOOLKIND_ROOT_PDPT: 2610 Assert(pUser->iUserTable < 4); 2610 2611 Assert(!(u.pau64[pUser->iUserTable] & PGM_PLXFLAGS_PERMANENT)); 2611 Assert(pUser->iUserTable < 4);2612 2612 break; 2613 2613 case PGMPOOLKIND_PAE_PD_FOR_32BIT_PD: … … 2616 2616 break; 2617 2617 case PGMPOOLKIND_64BIT_PD_FOR_64BIT_PD: 2618 Assert(!(u.pau64[pUser->iUser] & PGM_PDFLAGS_MAPPING));2619 2618 Assert(pUser->iUserTable < X86_PG_PAE_ENTRIES); 2619 Assert(!(u.pau64[pUser->iUserTable] & PGM_PDFLAGS_MAPPING)); 2620 2620 break; 2621 2621 case PGMPOOLKIND_64BIT_PDPT_FOR_64BIT_PDPT: 2622 Assert(pUser->iUserTable < X86_PG_PAE_ENTRIES); 2622 2623 Assert(!(u.pau64[pUser->iUserTable] & PGM_PLXFLAGS_PERMANENT)); 2623 Assert(pUser->iUserTable < X86_PG_PAE_ENTRIES);2624 2624 break; 2625 2625 case PGMPOOLKIND_64BIT_PML4_FOR_64BIT_PML4:
Note:
See TracChangeset
for help on using the changeset viewer.