Changeset 13827 in vbox for trunk/src/VBox/VMM/DBGFDisas.cpp
- Timestamp:
- Nov 5, 2008 1:31:18 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38818
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/DBGFDisas.cpp
r13823 r13827 62 62 /** The guest paging mode. */ 63 63 PGMMODE enmMode; 64 /** Pointer to the current page - HCPtr. */65 void const *pvPage HC;64 /** Pointer to the current page - R3 Ptr. */ 65 void const *pvPageR3; 66 66 /** Pointer to the current page - GC Ptr. */ 67 67 RTGCPTR pvPageGC; … … 101 101 pState->enmMode = enmMode; 102 102 pState->pvPageGC = 0; 103 pState->pvPage HC= NULL;103 pState->pvPageR3 = NULL; 104 104 pState->pVM = pVM; 105 105 pState->fLocked = false; … … 189 189 190 190 /* Need to update the page translation? */ 191 if ( !pState->pvPage HC191 if ( !pState->pvPageR3 192 192 || (GCPtr >> PAGE_SHIFT) != (pState->pvPageGC >> PAGE_SHIFT)) 193 193 { … … 198 198 if (MMHyperIsInsideArea(pState->pVM, pState->pvPageGC)) 199 199 { 200 pState->pvPage HC = MMHyperGC2HC(pState->pVM,pState->pvPageGC);201 if (!pState->pvPage HC)200 pState->pvPageR3 = MMHyperRCToR3(pState->pVM, (RTRCPTR)pState->pvPageGC); 201 if (!pState->pvPageR3) 202 202 rc = VERR_INVALID_POINTER; 203 203 } … … 208 208 209 209 if (pState->enmMode <= PGMMODE_PROTECTED) 210 rc = PGMPhysGCPhys2CCPtrReadOnly(pState->pVM, pState->pvPageGC, &pState->pvPage HC, &pState->PageMapLock);210 rc = PGMPhysGCPhys2CCPtrReadOnly(pState->pVM, pState->pvPageGC, &pState->pvPageR3, &pState->PageMapLock); 211 211 else 212 rc = PGMPhysGCPtr2CCPtrReadOnly(pState->pVM, pState->pvPageGC, &pState->pvPage HC, &pState->PageMapLock);212 rc = PGMPhysGCPtr2CCPtrReadOnly(pState->pVM, pState->pvPageGC, &pState->pvPageR3, &pState->PageMapLock); 213 213 pState->fLocked = RT_SUCCESS_NP(rc); 214 214 } 215 215 if (RT_FAILURE(rc)) 216 216 { 217 pState->pvPage HC= NULL;217 pState->pvPageR3 = NULL; 218 218 return rc; 219 219 } … … 236 236 237 237 /* read and advance */ 238 memcpy(pu8Dst, (char *)pState->pvPage HC+ (GCPtr & PAGE_OFFSET_MASK), cb);238 memcpy(pu8Dst, (char *)pState->pvPageR3 + (GCPtr & PAGE_OFFSET_MASK), cb); 239 239 cbRead -= cb; 240 240 if (!cbRead)
Note:
See TracChangeset
for help on using the changeset viewer.