Changeset 101539 in vbox for trunk/src/VBox/VMM/VMMAll/EMAll.cpp
- Timestamp:
- Oct 22, 2023 2:43:09 AM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r99220 r101539 867 867 cbToRead = cbMinRead; 868 868 869 int rc = PGMPhysSimpleReadGCPtr(pVCpu, &pDis-> u.abInstr[offInstr], uSrcAddr, cbToRead);869 int rc = PGMPhysSimpleReadGCPtr(pVCpu, &pDis->Instr.ab[offInstr], uSrcAddr, cbToRead); 870 870 if (RT_FAILURE(rc)) 871 871 { … … 873 873 { 874 874 cbToRead = cbMinRead; 875 rc = PGMPhysSimpleReadGCPtr(pVCpu, &pDis-> u.abInstr[offInstr], uSrcAddr, cbToRead);875 rc = PGMPhysSimpleReadGCPtr(pVCpu, &pDis->Instr.ab[offInstr], uSrcAddr, cbToRead); 876 876 } 877 877 if (RT_FAILURE(rc)) … … 1020 1020 LogFlow(("EMInterpretInstructionDisasState %RGv\n", (RTGCPTR)rip)); 1021 1021 1022 VBOXSTRICTRC rc = IEMExecOneBypassWithPrefetchedByPC(pVCpu, rip, pDis-> u.abInstr, pDis->cbCachedInstr);1022 VBOXSTRICTRC rc = IEMExecOneBypassWithPrefetchedByPC(pVCpu, rip, pDis->Instr.ab, pDis->cbCachedInstr); 1023 1023 if (RT_UNLIKELY( rc == VERR_IEM_ASPECT_NOT_IMPLEMENTED 1024 1024 || rc == VERR_IEM_INSTR_NOT_IMPLEMENTED))
Note:
See TracChangeset
for help on using the changeset viewer.