Changeset 98970 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Mar 15, 2023 8:56:57 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 156319
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/Makefile.kmk
r98960 r98970 347 347 VBoxVMM.d \ 348 348 VMMR3/VMMR3VTable.cpp \ 349 VMMR3/APIC.cpp \350 349 VMMR3/CFGM.cpp \ 351 VMMR3/CPUM.cpp \ 352 VMMR3/CPUMR3CpuId.cpp \ 353 VMMR3/CPUMR3Db.cpp \ 354 VMMR3/CPUMDbg.cpp \ 350 VMMR3/CPUM-armv8.cpp \ 355 351 VMMR3/DBGF.cpp \ 356 352 VMMR3/DBGFAddr.cpp \ … … 358 354 VMMR3/DBGFR3Bp.cpp \ 359 355 VMMR3/DBGFR3BugCheck.cpp \ 360 VMMR3/DBGFCoreWrite.cpp \361 356 VMMR3/DBGFCpu.cpp \ 362 357 VMMR3/DBGFDisas.cpp \ -
trunk/src/VBox/VMM/VMMR3/DBGFR3Bp.cpp
r98103 r98970 162 162 #define LOG_GROUP LOG_GROUP_DBGF 163 163 #define VMCPU_INCL_CPUM_GST_CTX 164 #include <VBox/vmm/cpum.h> 164 165 #include <VBox/vmm/dbgf.h> 165 166 #include <VBox/vmm/selm.h> … … 1775 1776 RT_NOREF(pvUser); 1776 1777 1778 #if defined(VBOX_VMM_TARGET_ARMV8) 1779 RT_NOREF(pVM, pVCpu); 1780 AssertReleaseFailed(); 1781 return VERR_NOT_IMPLEMENTED; 1782 #else 1777 1783 /* 1778 1784 * CPU 0 updates the enabled hardware breakpoint counts. … … 1794 1800 1795 1801 return CPUMRecalcHyperDRx(pVCpu, UINT8_MAX); 1802 #endif 1796 1803 } 1797 1804 … … 1980 1987 { 1981 1988 uint8_t abInstr[DBGF_BP_INSN_MAX]; 1982 RTGCPTR const GCPtrInstr = pVCpu->cpum.GstCtx.rip + pVCpu->cpum.GstCtx.cs.u64Base;1989 RTGCPTR const GCPtrInstr = CPUMGetGuestFlatPC(pVCpu); 1983 1990 int rc = PGMPhysSimpleReadGCPtr(pVCpu, &abInstr[0], GCPtrInstr, sizeof(abInstr)); 1984 1991 AssertRC(rc);
Note:
See TracChangeset
for help on using the changeset viewer.