Changeset 14154 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Nov 12, 2008 11:34:50 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39245
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r14153 r14154 3575 3575 # if !defined(IN_RING0) && PGM_GST_TYPE != PGM_TYPE_AMD64 3576 3576 # if PGM_GST_TYPE == PGM_TYPE_32BIT 3577 rc = PGMShwGetPage(pVM, (RTGCPTR)pPGM->pG uestPDRC, NULL, &HCPhysShw);3577 rc = PGMShwGetPage(pVM, (RTGCPTR)pPGM->pGst32BitPdRC, NULL, &HCPhysShw); 3578 3578 # else 3579 3579 rc = PGMShwGetPage(pVM, (RTGCPTR)pPGM->pGstPaePdptRC, NULL, &HCPhysShw); … … 3585 3585 # if PGM_GST_TYPE == PGM_TYPE_32BIT && defined(IN_RING3) 3586 3586 RTGCPHYS GCPhys; 3587 rc = PGMR3DbgR3Ptr2GCPhys(pVM, pPGM->pG uestPDR3, &GCPhys);3587 rc = PGMR3DbgR3Ptr2GCPhys(pVM, pPGM->pGst32BitPdR3, &GCPhys); 3588 3588 AssertRCReturn(rc, 1); 3589 3589 AssertMsgReturn((cr3 & GST_CR3_PAGE_MASK) == GCPhys, ("GCPhys=%RGp cr3=%RGp\n", GCPhys, (RTGCPHYS)cr3), false); -
trunk/src/VBox/VMM/VMMAll/PGMAllGst.h
r14153 r14154 444 444 PGM_INVL_PG(pVM->pgm.s.GCPtrCR3Mapping); 445 445 # if PGM_GST_TYPE == PGM_TYPE_32BIT 446 pVM->pgm.s.pG uestPDR3 = (R3PTRTYPE(PX86PD))HCPtrGuestCR3;446 pVM->pgm.s.pGst32BitPdR3 = (R3PTRTYPE(PX86PD))HCPtrGuestCR3; 447 447 # ifndef VBOX_WITH_2X_4GB_ADDR_SPACE 448 pVM->pgm.s.pG uestPDR0 = (R0PTRTYPE(PX86PD))HCPtrGuestCR3;448 pVM->pgm.s.pGst32BitPdR0 = (R0PTRTYPE(PX86PD))HCPtrGuestCR3; 449 449 # endif 450 pVM->pgm.s.pG uestPDRC = (RCPTRTYPE(PX86PD))pVM->pgm.s.GCPtrCR3Mapping;450 pVM->pgm.s.pGst32BitPdRC = (RCPTRTYPE(PX86PD))pVM->pgm.s.GCPtrCR3Mapping; 451 451 452 452 # elif PGM_GST_TYPE == PGM_TYPE_PAE … … 569 569 570 570 #if PGM_GST_TYPE == PGM_TYPE_32BIT 571 pVM->pgm.s.pG uestPDR3 = 0;571 pVM->pgm.s.pGst32BitPdR3 = 0; 572 572 #ifndef VBOX_WITH_2X_4GB_ADDR_SPACE 573 pVM->pgm.s.pG uestPDR0 = 0;574 #endif 575 pVM->pgm.s.pG uestPDRC = 0;573 pVM->pgm.s.pGst32BitPdR0 = 0; 574 #endif 575 pVM->pgm.s.pGst32BitPdRC = 0; 576 576 577 577 #elif PGM_GST_TYPE == PGM_TYPE_PAE
Note:
See TracChangeset
for help on using the changeset viewer.