Changeset 107033 in vbox for trunk/src/VBox/VMM/VMMR3/NEMR3Native-win-armv8.cpp
- Timestamp:
- Nov 18, 2024 3:28:18 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/NEMR3Native-win-armv8.cpp
r107026 r107033 2275 2275 uint32_t u32Val1 = 0; 2276 2276 uint32_t u32Val2 = 0; 2277 rcStrict = PGMPhysRead(pVM, GCPhys DataAbrt, &u32Val1, sizeof(u32Val1), PGMACCESSORIGIN_HM);2277 rcStrict = PGMPhysRead(pVM, GCPhys, &u32Val1, sizeof(u32Val1), PGMACCESSORIGIN_HM); 2278 2278 if (rcStrict == VINF_SUCCESS) 2279 rcStrict = PGMPhysRead(pVM, GCPhys DataAbrt+ sizeof(uint32_t), &u32Val2, sizeof(u32Val2), PGMACCESSORIGIN_HM);2279 rcStrict = PGMPhysRead(pVM, GCPhys + sizeof(uint32_t), &u32Val2, sizeof(u32Val2), PGMACCESSORIGIN_HM); 2280 2280 Log4(("MmioExit/%u: %08RX64: READ %#RGp LB %u -> %.*Rhxs %.*Rhxs rcStrict=%Rrc\n", 2281 pVCpu->idCpu, pVCpu->cpum.GstCtx.Pc.u64, GCPhys DataAbrt, 2 * sizeof(uint32_t), sizeof(u32Val1),2281 pVCpu->idCpu, pVCpu->cpum.GstCtx.Pc.u64, GCPhys, 2 * sizeof(uint32_t), sizeof(u32Val1), 2282 2282 &u32Val1, sizeof(u32Val2), &u32Val2, VBOXSTRICTRC_VAL(rcStrict) )); 2283 2283 if (rcStrict == VINF_SUCCESS)
Note:
See TracChangeset
for help on using the changeset viewer.