Changeset 97197 in vbox for trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
- Timestamp:
- Oct 18, 2022 11:09:55 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 154172
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
r97193 r97197 200 200 * @remarks The @a uUser argument is the PGMROMRANGE::GCPhys value. 201 201 */ 202 DECLCALLBACK(VBOXSTRICTRC) pgmPhysRomWritePfHandler(PVMCC pVM, PVMCPUCC pVCpu, RTGCUINT uErrorCode, PCPUMCTX CORE pRegFrame,202 DECLCALLBACK(VBOXSTRICTRC) pgmPhysRomWritePfHandler(PVMCC pVM, PVMCPUCC pVCpu, RTGCUINT uErrorCode, PCPUMCTX pCtx, 203 203 RTGCPTR pvFault, RTGCPHYS GCPhysFault, uint64_t uUser) 204 204 … … 234 234 * adding this kind of detection to DIS or EM. */ 235 235 case OP_MOV: 236 p RegFrame->rip += cbOp;236 pCtx->rip += cbOp; 237 237 STAM_COUNTER_INC(&pVCpu->pgm.s.Stats.StatRZGuestROMWriteHandled); 238 238 return VINF_SUCCESS; … … 435 435 * @remarks The @a uUser is the MMIO2 index. 436 436 */ 437 DECLCALLBACK(VBOXSTRICTRC) pgmPhysMmio2WritePfHandler(PVMCC pVM, PVMCPUCC pVCpu, RTGCUINT uErrorCode, PCPUMCTX CORE pRegFrame,437 DECLCALLBACK(VBOXSTRICTRC) pgmPhysMmio2WritePfHandler(PVMCC pVM, PVMCPUCC pVCpu, RTGCUINT uErrorCode, PCPUMCTX pCtx, 438 438 RTGCPTR pvFault, RTGCPHYS GCPhysFault, uint64_t uUser) 439 439 { 440 RT_NOREF(pVCpu, uErrorCode, p RegFrame);440 RT_NOREF(pVCpu, uErrorCode, pCtx); 441 441 VBOXSTRICTRC rcStrict = PGM_LOCK(pVM); /* We should already have it, but just make sure we do. */ 442 442 if (RT_SUCCESS(rcStrict))
Note:
See TracChangeset
for help on using the changeset viewer.