VirtualBox

Changeset 13827 in vbox for trunk/src/VBox/VMM/DBGFDisas.cpp


Ignore:
Timestamp:
Nov 5, 2008 1:31:18 AM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
38818
Message:

MM: Retired MMHyper2HC, MMHyperHC2GC and MMHyperGC2HC.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/DBGFDisas.cpp

    r13823 r13827  
    6262    /** The guest paging mode. */
    6363    PGMMODE         enmMode;
    64     /** Pointer to the current page - HC Ptr. */
    65     void const     *pvPageHC;
     64    /** Pointer to the current page - R3 Ptr. */
     65    void const     *pvPageR3;
    6666    /** Pointer to the current page - GC Ptr. */
    6767    RTGCPTR         pvPageGC;
     
    101101    pState->enmMode         = enmMode;
    102102    pState->pvPageGC        = 0;
    103     pState->pvPageHC        = NULL;
     103    pState->pvPageR3        = NULL;
    104104    pState->pVM             = pVM;
    105105    pState->fLocked         = false;
     
    189189
    190190        /* Need to update the page translation? */
    191         if (    !pState->pvPageHC
     191        if (    !pState->pvPageR3
    192192            ||  (GCPtr >> PAGE_SHIFT) != (pState->pvPageGC >> PAGE_SHIFT))
    193193        {
     
    198198            if (MMHyperIsInsideArea(pState->pVM, pState->pvPageGC))
    199199            {
    200                 pState->pvPageHC = MMHyperGC2HC(pState->pVM, pState->pvPageGC);
    201                 if (!pState->pvPageHC)
     200                pState->pvPageR3 = MMHyperRCToR3(pState->pVM, (RTRCPTR)pState->pvPageGC);
     201                if (!pState->pvPageR3)
    202202                    rc = VERR_INVALID_POINTER;
    203203            }
     
    208208
    209209                if (pState->enmMode <= PGMMODE_PROTECTED)
    210                     rc = PGMPhysGCPhys2CCPtrReadOnly(pState->pVM, pState->pvPageGC, &pState->pvPageHC, &pState->PageMapLock);
     210                    rc = PGMPhysGCPhys2CCPtrReadOnly(pState->pVM, pState->pvPageGC, &pState->pvPageR3, &pState->PageMapLock);
    211211                else
    212                     rc = PGMPhysGCPtr2CCPtrReadOnly(pState->pVM, pState->pvPageGC, &pState->pvPageHC, &pState->PageMapLock);
     212                    rc = PGMPhysGCPtr2CCPtrReadOnly(pState->pVM, pState->pvPageGC, &pState->pvPageR3, &pState->PageMapLock);
    213213                pState->fLocked = RT_SUCCESS_NP(rc);
    214214            }
    215215            if (RT_FAILURE(rc))
    216216            {
    217                 pState->pvPageHC = NULL;
     217                pState->pvPageR3 = NULL;
    218218                return rc;
    219219            }
     
    236236
    237237        /* read and advance */
    238         memcpy(pu8Dst, (char *)pState->pvPageHC + (GCPtr & PAGE_OFFSET_MASK), cb);
     238        memcpy(pu8Dst, (char *)pState->pvPageR3 + (GCPtr & PAGE_OFFSET_MASK), cb);
    239239        cbRead -= cb;
    240240        if (!cbRead)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette