Changeset 17294 in vbox for trunk/src/VBox
- Timestamp:
- Mar 3, 2009 3:51:21 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43660
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/Makefile.kmk
r16959 r17294 500 500 501 501 # Alias the PGM templates to the object in which they are defined. 502 PGMInternal.o \ 502 503 PGMBth.o PGMGst.o PGMShw.o \ 503 504 PGMBth.obj PGMGst.obj PGMShw.obj: PGM.o -
trunk/src/VBox/VMM/PGMInternal.h
r17290 r17294 579 579 /** The physical address and a whole lot of other stuff. All bits are used! */ 580 580 RTHCPHYS HCPhys; 581 #define HCPhysX HCPhys /**< Temporary while in the process of eliminating direct access to PGMPAGE::HCPhys. */ 581 582 /** The page state. */ 582 583 uint32_t u2StateX : 2; … … 586 587 uint32_t fSomethingElse : 1; 587 588 /** The Page ID. 588 * @todo Merge with HCPhys once we've liberated HCPhysof its stuff.589 * The HCPhys willbe 100% static. */589 * @todo Merge with HCPhysX once we've liberated HCPhysX of its stuff. 590 * The HCPhysX will then be 100% static. */ 590 591 uint32_t idPageX : 28; 591 592 /** The page type (PGMPAGETYPE). */ … … 612 613 #define PGM_PAGE_CLEAR(pPage) \ 613 614 do { \ 614 (pPage)->HCPhys 615 (pPage)->HCPhysX = 0; \ 615 616 (pPage)->u2StateX = 0; \ 616 617 (pPage)->fWrittenToX = 0; \ … … 627 628 #define PGM_PAGE_INIT(pPage, _HCPhys, _idPage, _uType, _uState) \ 628 629 do { \ 629 (pPage)->HCPhys 630 (pPage)->HCPhysX = (_HCPhys); \ 630 631 (pPage)->u2StateX = (_uState); \ 631 632 (pPage)->fWrittenToX = 0; \ … … 695 696 * @param pPage Pointer to the physical guest page tracking structure. 696 697 */ 697 #define PGM_PAGE_GET_HCPHYS(pPage) ( (pPage)->HCPhys & UINT64_C(0x0000fffffffff000) )698 #define PGM_PAGE_GET_HCPHYS(pPage) ( (pPage)->HCPhysX & UINT64_C(0x0000fffffffff000) ) 698 699 699 700 /** … … 703 704 */ 704 705 #define PGM_PAGE_SET_HCPHYS(pPage, _HCPhys) \ 705 do { (pPage)->HCPhys = (((pPage)->HCPhys) & UINT64_C(0xffff000000000fff)) \706 | ((_HCPhys) & UINT64_C(0x0000fffffffff000)); } while (0)706 do { (pPage)->HCPhysX = (((pPage)->HCPhys) & UINT64_C(0xffff000000000fff)) \ 707 | ((_HCPhys) & UINT64_C(0x0000fffffffff000)); } while (0) 707 708 708 709 /** … … 713 714 #define PGM_PAGE_GET_PAGEID(pPage) ( (pPage)->idPageX ) 714 715 /* later: 715 #define PGM_PAGE_GET_PAGEID(pPage) ( ((uint32_t)(pPage)->HCPhys >> (48 - 12))716 | ((uint32_t)(pPage)->HCPhys & 0xfff) )716 #define PGM_PAGE_GET_PAGEID(pPage) ( ((uint32_t)(pPage)->HCPhysX >> (48 - 12)) 717 | ((uint32_t)(pPage)->HCPhysX & 0xfff) ) 717 718 */ 718 719 /** … … 722 723 #define PGM_PAGE_SET_PAGEID(pPage, _idPage) do { (pPage)->idPageX = (_idPage); } while (0) 723 724 /* later: 724 #define PGM_PAGE_SET_PAGEID(pPage, _idPage) do { (pPage)->HCPhys = (((pPage)->HCPhys) & UINT64_C(0x0000fffffffff000)) \725 | ((_idPage) & 0xfff) \726 | (((_idPage) & 0x0ffff000) << (48-12)); } while (0)725 #define PGM_PAGE_SET_PAGEID(pPage, _idPage) do { (pPage)->HCPhysX = (((pPage)->HCPhysX) & UINT64_C(0x0000fffffffff000)) \ 726 | ((_idPage) & 0xfff) \ 727 | (((_idPage) & 0x0ffff000) << (48-12)); } while (0) 727 728 */ 728 729 … … 735 736 /* later: 736 737 #if GMM_CHUNKID_SHIFT == 12 737 # define PGM_PAGE_GET_CHUNKID(pPage) ( (uint32_t)((pPage)->HCPhys >> 48) )738 # define PGM_PAGE_GET_CHUNKID(pPage) ( (uint32_t)((pPage)->HCPhysX >> 48) ) 738 739 #elif GMM_CHUNKID_SHIFT > 12 739 # define PGM_PAGE_GET_CHUNKID(pPage) ( (uint32_t)((pPage)->HCPhys >> (48 + (GMM_CHUNKID_SHIFT - 12)) )740 # define PGM_PAGE_GET_CHUNKID(pPage) ( (uint32_t)((pPage)->HCPhysX >> (48 + (GMM_CHUNKID_SHIFT - 12)) ) 740 741 #elif GMM_CHUNKID_SHIFT < 12 741 # define PGM_PAGE_GET_CHUNKID(pPage) ( ( (uint32_t)((pPage)->HCPhys >> 48) << (12 - GMM_CHUNKID_SHIFT) ) \742 | ( (uint32_t)((pPage)->HCPhys & 0xfff) >> GMM_CHUNKID_SHIFT ) )742 # define PGM_PAGE_GET_CHUNKID(pPage) ( ( (uint32_t)((pPage)->HCPhysX >> 48) << (12 - GMM_CHUNKID_SHIFT) ) \ 743 | ( (uint32_t)((pPage)->HCPhysX & 0xfff) >> GMM_CHUNKID_SHIFT ) ) 743 744 #else 744 745 # error "GMM_CHUNKID_SHIFT isn't defined or something." … … 754 755 /* later: 755 756 #if GMM_CHUNKID_SHIFT <= 12 756 # define PGM_PAGE_GET_PAGE_IN_CHUNK(pPage) ( (uint32_t)((pPage)->HCPhys & GMM_PAGEID_IDX_MASK) )757 # define PGM_PAGE_GET_PAGE_IN_CHUNK(pPage) ( (uint32_t)((pPage)->HCPhysX & GMM_PAGEID_IDX_MASK) ) 757 758 #else 758 # define PGM_PAGE_GET_PAGE_IN_CHUNK(pPage) ( (uint32_t)((pPage)->HCPhys & 0xfff) \759 | ( (uint32_t)((pPage)->HCPhys >> 48) & (RT_BIT_32(GMM_CHUNKID_SHIFT - 12) - 1) ) )759 # define PGM_PAGE_GET_PAGE_IN_CHUNK(pPage) ( (uint32_t)((pPage)->HCPhysX & 0xfff) \ 760 | ( (uint32_t)((pPage)->HCPhysX >> 48) & (RT_BIT_32(GMM_CHUNKID_SHIFT - 12) - 1) ) ) 760 761 #endif 761 762 */ … … 782 783 (pPage)->u3Type = (_enmType); \ 783 784 if ((_enmType) == PGMPAGETYPE_ROM) \ 784 (pPage)->HCPhys |= MM_RAM_FLAGS_ROM; \785 (pPage)->HCPhysX |= MM_RAM_FLAGS_ROM; \ 785 786 else if ((_enmType) == PGMPAGETYPE_ROM_SHADOW) \ 786 (pPage)->HCPhys |= MM_RAM_FLAGS_ROM | MM_RAM_FLAGS_MMIO2; \787 (pPage)->HCPhysX |= MM_RAM_FLAGS_ROM | MM_RAM_FLAGS_MMIO2; \ 787 788 else if ((_enmType) == PGMPAGETYPE_MMIO2) \ 788 (pPage)->HCPhys |= MM_RAM_FLAGS_MMIO2; \789 (pPage)->HCPhysX |= MM_RAM_FLAGS_MMIO2; \ 789 790 } while (0) 790 791 #endif … … 796 797 * @param pPage Pointer to the physical guest page tracking structure. 797 798 */ 798 #define PGM_PAGE_IS_RESERVED(pPage) ( !!((pPage)->HCPhys & MM_RAM_FLAGS_RESERVED) )799 #define PGM_PAGE_IS_RESERVED(pPage) ( !!((pPage)->HCPhysX & MM_RAM_FLAGS_RESERVED) ) 799 800 800 801 /** … … 803 804 * @param pPage Pointer to the physical guest page tracking structure. 804 805 */ 805 #define PGM_PAGE_IS_MMIO(pPage) ( !!((pPage)->HCPhys & MM_RAM_FLAGS_MMIO) )806 #define PGM_PAGE_IS_MMIO(pPage) ( !!((pPage)->HCPhysX & MM_RAM_FLAGS_MMIO) ) 806 807 807 808 /** … … 967 968 */ 968 969 #define PGM_PAGE_GET_TRACKING(pPage) \ 969 ( *((uint16_t *)&(pPage)->HCPhys + 3) )970 ( *((uint16_t *)&(pPage)->HCPhysX + 3) ) 970 971 971 972 /** @def PGM_PAGE_SET_TRACKING … … 975 976 */ 976 977 #define PGM_PAGE_SET_TRACKING(pPage, u16TrackingData) \ 977 do { *((uint16_t *)&(pPage)->HCPhys + 3) = (u16TrackingData); } while (0)978 do { *((uint16_t *)&(pPage)->HCPhysX + 3) = (u16TrackingData); } while (0) 978 979 979 980 /** @def PGM_PAGE_GET_TD_CREFS … … 3481 3482 3482 3483 #endif /* VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0 */ 3483 3484 3484 #if defined(IN_RC) || defined(VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0) 3485 3485 3486 /** 3486 3487 * Maps the page into current context (RC and maybe R0). … … 3528 3529 return pv; 3529 3530 } 3531 3530 3532 #endif /* VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0 || IN_RC */ 3531 3532 3533 3533 3534 #ifndef IN_RC … … 3560 3561 #endif /* !IN_RC */ 3561 3562 3562 #if !defined(IN_RC) && !defined(VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0)3563 3564 # ifndef VBOX_WITH_NEW_PHYS_CODE3565 /**3566 * Convert GC Phys to HC Virt.3567 *3568 * @returns VBox status.3569 * @param pPGM PGM handle.3570 * @param GCPhys The GC physical address.3571 * @param pHCPtr Where to store the corresponding HC virtual address.3572 *3573 * @deprecated This will be eliminated by PGMPhysGCPhys2CCPtr. Only user is3574 * pgmPoolMonitorGCPtr2CCPtr.3575 */3576 DECLINLINE(int) pgmRamGCPhys2HCPtr(PPGM pPGM, RTGCPHYS GCPhys, PRTHCPTR pHCPtr)3577 {3578 PPGMRAMRANGE pRam;3579 PPGMPAGE pPage;3580 int rc = pgmPhysGetPageAndRangeEx(pPGM, GCPhys, &pPage, &pRam);3581 if (RT_FAILURE(rc))3582 {3583 *pHCPtr = 0; /* Shut up silly GCC warnings. */3584 return rc;3585 }3586 RTGCPHYS off = GCPhys - pRam->GCPhys;3587 3588 if (pRam->fFlags & MM_RAM_FLAGS_DYNAMIC_ALLOC)3589 {3590 unsigned iChunk = off >> PGM_DYNAMIC_CHUNK_SHIFT;3591 *pHCPtr = (RTHCPTR)(pRam->paChunkR3Ptrs[iChunk] + (off & PGM_DYNAMIC_CHUNK_OFFSET_MASK));3592 return VINF_SUCCESS;3593 }3594 if (pRam->pvR3)3595 {3596 *pHCPtr = (RTHCPTR)((RTHCUINTPTR)pRam->pvR3 + off);3597 return VINF_SUCCESS;3598 }3599 *pHCPtr = 0; /* Shut up silly GCC warnings. */3600 return VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS;3601 }3602 # endif /* !VBOX_WITH_NEW_PHYS_CODE */3603 #endif /* !IN_RC && !defined(VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0) */3604 3563 3605 3564 /** … … 3614 3573 * @deprecated Will go away or be changed. Only user is MapCR3. MapCR3 will have to do ring-3 3615 3574 * and ring-0 locking of the CR3 in a lazy fashion I'm fear... or perhaps not. we'll see. 3616 */ 3617 DECLINLINE(int) pgmRamGCPhys2HCPtrAndHCPhysWithFlags(PPGM pPGM, RTGCPHYS GCPhys, PRTHCPTR pHCPtr, PRTHCPHYS pHCPhys) 3575 * Either way, we have to make sure the page is writable in MapCR3. 3576 */ 3577 DECLINLINE(int) pgmRamGCPhys2HCPtrAndHCPhys(PPGM pPGM, RTGCPHYS GCPhys, PRTHCPTR pHCPtr, PRTHCPHYS pHCPhys) 3618 3578 { 3619 3579 PPGMRAMRANGE pRam; … … 3628 3588 RTGCPHYS off = GCPhys - pRam->GCPhys; 3629 3589 3630 *pHCPhys = pPage->HCPhys; /** @todo PAGE FLAGS */3590 *pHCPhys = PGM_PAGE_GET_HCPHYS(pPage); 3631 3591 if (pRam->fFlags & MM_RAM_FLAGS_DYNAMIC_ALLOC) 3632 3592 { … … 3647 3607 *pHCPtr = 0; 3648 3608 return VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS; 3649 }3650 3651 3652 /**3653 * Clears flags associated with a RAM address.3654 *3655 * @returns VBox status code.3656 * @param pPGM PGM handle.3657 * @param GCPhys Guest context physical address.3658 * @param fFlags fFlags to clear. (Bits 0-11.)3659 */3660 DECLINLINE(int) pgmRamFlagsClearByGCPhys(PPGM pPGM, RTGCPHYS GCPhys, unsigned fFlags)3661 {3662 PPGMPAGE pPage;3663 int rc = pgmPhysGetPageEx(pPGM, GCPhys, &pPage);3664 if (RT_FAILURE(rc))3665 return rc;3666 3667 fFlags &= ~X86_PTE_PAE_PG_MASK;3668 pPage->HCPhys &= ~(RTHCPHYS)fFlags; /** @todo PAGE FLAGS */3669 return VINF_SUCCESS;3670 }3671 3672 3673 /**3674 * Clears flags associated with a RAM address.3675 *3676 * @returns VBox status code.3677 * @param pPGM PGM handle.3678 * @param GCPhys Guest context physical address.3679 * @param fFlags fFlags to clear. (Bits 0-11.)3680 * @param ppRamHint Where to read and store the ram list hint.3681 * The caller initializes this to NULL before the call.3682 */3683 DECLINLINE(int) pgmRamFlagsClearByGCPhysWithHint(PPGM pPGM, RTGCPHYS GCPhys, unsigned fFlags, PPGMRAMRANGE *ppRamHint)3684 {3685 PPGMPAGE pPage;3686 int rc = pgmPhysGetPageWithHintEx(pPGM, GCPhys, &pPage, ppRamHint);3687 if (RT_FAILURE(rc))3688 return rc;3689 3690 fFlags &= ~X86_PTE_PAE_PG_MASK;3691 pPage->HCPhys &= ~(RTHCPHYS)fFlags; /** @todo PAGE FLAGS */3692 return VINF_SUCCESS;3693 }3694 3695 3696 /**3697 * Sets (bitwise OR) flags associated with a RAM address.3698 *3699 * @returns VBox status code.3700 * @param pPGM PGM handle.3701 * @param GCPhys Guest context physical address.3702 * @param fFlags fFlags to set clear. (Bits 0-11.)3703 */3704 DECLINLINE(int) pgmRamFlagsSetByGCPhys(PPGM pPGM, RTGCPHYS GCPhys, unsigned fFlags)3705 {3706 PPGMPAGE pPage;3707 int rc = pgmPhysGetPageEx(pPGM, GCPhys, &pPage);3708 if (RT_FAILURE(rc))3709 return rc;3710 3711 fFlags &= ~X86_PTE_PAE_PG_MASK;3712 pPage->HCPhys |= fFlags; /** @todo PAGE FLAGS */3713 return VINF_SUCCESS;3714 }3715 3716 3717 /**3718 * Sets (bitwise OR) flags associated with a RAM address.3719 *3720 * @returns VBox status code.3721 * @param pPGM PGM handle.3722 * @param GCPhys Guest context physical address.3723 * @param fFlags fFlags to set clear. (Bits 0-11.)3724 * @param ppRamHint Where to read and store the ram list hint.3725 * The caller initializes this to NULL before the call.3726 */3727 DECLINLINE(int) pgmRamFlagsSetByGCPhysWithHint(PPGM pPGM, RTGCPHYS GCPhys, unsigned fFlags, PPGMRAMRANGE *ppRamHint)3728 {3729 PPGMPAGE pPage;3730 int rc = pgmPhysGetPageWithHintEx(pPGM, GCPhys, &pPage, ppRamHint);3731 if (RT_FAILURE(rc))3732 return rc;3733 3734 fFlags &= ~X86_PTE_PAE_PG_MASK;3735 pPage->HCPhys |= fFlags; /** @todo PAGE FLAGS */3736 return VINF_SUCCESS;3737 3609 } 3738 3610 … … 4267 4139 4268 4140 #endif /* !IN_RC */ 4269 4270 4141 4271 4142 /** … … 4392 4263 } 4393 4264 4265 4394 4266 /** 4395 4267 * Gets the shadow page directory for the specified address, PAE. … … 4417 4289 #endif 4418 4290 } 4291 4419 4292 4420 4293 /** … … 4456 4329 4457 4330 #ifndef IN_RC 4331 4458 4332 /** 4459 4333 * Gets the shadow page map level-4 pointer. … … 4552 4426 4553 4427 #endif /* !IN_RC */ 4554 4555 /**4556 * Checks if any of the specified page flags are set for the given page.4557 *4558 * @returns true if any of the flags are set.4559 * @returns false if all the flags are clear.4560 * @param pPGM PGM handle.4561 * @param GCPhys The GC physical address.4562 * @param fFlags The flags to check for.4563 */4564 DECLINLINE(bool) pgmRamTestFlags(PPGM pPGM, RTGCPHYS GCPhys, uint64_t fFlags)4565 {4566 PPGMPAGE pPage = pgmPhysGetPage(pPGM, GCPhys);4567 return pPage4568 && (pPage->HCPhys & fFlags) != 0; /** @todo PAGE FLAGS */4569 }4570 4571 4428 4572 4429 /** … … 4815 4672 4816 4673 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY 4674 4817 4675 /** 4818 4676 * Locks a page to prevent flushing (important for cr3 root pages or shadow pae pd pages). … … 4829 4687 } 4830 4688 4689 4831 4690 /** 4832 4691 * Unlocks a page to allow flushing again … … 4842 4701 return VINF_SUCCESS; 4843 4702 } 4703 4844 4704 4845 4705 /** … … 4860 4720 return false; 4861 4721 } 4862 #endif 4722 4723 #endif /* VBOX_WITH_PGMPOOL_PAGING_ONLY */ 4863 4724 4864 4725 /** … … 4868 4729 * @param pVM VM handle. 4869 4730 */ 4870 4871 4731 DECLINLINE(bool) pgmMapAreMappingsEnabled(PPGM pPGM) 4872 4732 { -
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r17290 r17294 4495 4495 RTHCPHYS HCPhysGuestCR3; 4496 4496 RTHCPTR HCPtrGuestCR3; 4497 int rc = pgmRamGCPhys2HCPtrAndHCPhys WithFlags(&pVM->pgm.s, GCPhysCR3 & GST_CR3_PAGE_MASK, &HCPtrGuestCR3, &HCPhysGuestCR3);4497 int rc = pgmRamGCPhys2HCPtrAndHCPhys(&pVM->pgm.s, GCPhysCR3 & GST_CR3_PAGE_MASK, &HCPtrGuestCR3, &HCPhysGuestCR3); 4498 4498 if (RT_SUCCESS(rc)) 4499 4499 { … … 4532 4532 RTHCPHYS HCPhys; 4533 4533 RTGCPHYS GCPhys = pGuestPDPT->a[i].u & X86_PDPE_PG_MASK; 4534 int rc2 = pgmRamGCPhys2HCPtrAndHCPhys WithFlags(&pVM->pgm.s, GCPhys, &HCPtr, &HCPhys);4534 int rc2 = pgmRamGCPhys2HCPtrAndHCPhys(&pVM->pgm.s, GCPhys, &HCPtr, &HCPhys); 4535 4535 if (RT_SUCCESS(rc2)) 4536 4536 { 4537 rc = PGMMap(pVM, GCPtr, HCPhys & X86_PTE_PAE_PG_MASK, PAGE_SIZE, 0);4537 rc = PGMMap(pVM, GCPtr, HCPhys, PAGE_SIZE, 0); 4538 4538 AssertRCReturn(rc, rc); 4539 4539
Note:
See TracChangeset
for help on using the changeset viewer.