Changeset 93554 in vbox for trunk/src/VBox/VMM/VMMR3/CPUM.cpp
- Timestamp:
- Feb 2, 2022 10:57:02 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149688
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r93515 r93554 4175 4175 */ 4176 4176 if ( !pState->pvPageR3 4177 || (GCPtr >> PAGE_SHIFT) != (pState->pvPageGC >>PAGE_SHIFT))4177 || (GCPtr >> GUEST_PAGE_SHIFT) != (pState->pvPageGC >> GUEST_PAGE_SHIFT)) 4178 4178 { 4179 4179 /* translate the address */ … … 4203 4203 * Calc how much we can read. 4204 4204 */ 4205 uint32_t cb = PAGE_SIZE - (GCPtr &PAGE_OFFSET_MASK);4205 uint32_t cb = GUEST_PAGE_SIZE - (GCPtr & GUEST_PAGE_OFFSET_MASK); 4206 4206 if (!pState->f64Bits) 4207 4207 { … … 4216 4216 * Read and advance or exit. 4217 4217 */ 4218 memcpy(&pDis->abInstr[offInstr], (uint8_t *)pState->pvPageR3 + (GCPtr & PAGE_OFFSET_MASK), cb);4218 memcpy(&pDis->abInstr[offInstr], (uint8_t *)pState->pvPageR3 + (GCPtr & GUEST_PAGE_OFFSET_MASK), cb); 4219 4219 offInstr += (uint8_t)cb; 4220 4220 if (cb >= cbMinRead)
Note:
See TracChangeset
for help on using the changeset viewer.