| 426 | | pgmPoolFree(pPool->CTXSUFF(pVM), uShw.pPDPae->a[iShw].u & X86_PDE_PAE_PG_MASK, pPage->idx, iShw); |
|---|
| | 426 | pgmPoolFree(pPool->CTXSUFF(pVM), |
|---|
| | 427 | uShw.pPDPae->a[iShw].u & X86_PDE_PAE_PG_MASK, |
|---|
| | 428 | /* Note: hardcoded PAE implementation dependency */ |
|---|
| | 429 | (pPage->enmKind == PGMPOOLKIND_PAE_PD_FOR_PAE_PD) ? PGMPOOL_IDX_PAE_PD : pPage->idx, |
|---|
| | 430 | (pPage->enmKind == PGMPOOLKIND_PAE_PD_FOR_PAE_PD) ? iShw + (pPage->idx - PGMPOOL_IDX_PAE_PD_0) * X86_PG_PAE_ENTRIES : iShw); |
|---|
| 447 | | pgmPoolFree(pPool->CTXSUFF(pVM), uShw.pPDPae->a[iShw2].u & X86_PDE_PAE_PG_MASK, pPage->idx, iShw2); |
|---|
| | 451 | pgmPoolFree(pPool->CTXSUFF(pVM), |
|---|
| | 452 | uShw.pPDPae->a[iShw2].u & X86_PDE_PAE_PG_MASK, |
|---|
| | 453 | /* Note: hardcoded PAE implementation dependency */ |
|---|
| | 454 | (pPage->enmKind == PGMPOOLKIND_PAE_PD_FOR_PAE_PD) ? PGMPOOL_IDX_PAE_PD : pPage->idx, |
|---|
| | 455 | (pPage->enmKind == PGMPOOLKIND_PAE_PD_FOR_PAE_PD) ? iShw2 + (pPage->idx - PGMPOOL_IDX_PAE_PD_0) * X86_PG_PAE_ENTRIES : iShw2); |
|---|