[lldb] [llvm] [lldb][Windows] WoA HW Watchpoint support in LLDB (PR #108072)
David Spickett via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 27 03:39:30 PST 2025
================
@@ -110,8 +110,8 @@ NativeRegisterContextWindows::CreateHostNativeRegisterContextWindows(
NativeRegisterContextWindows_x86_64::NativeRegisterContextWindows_x86_64(
const ArchSpec &target_arch, NativeThreadProtocol &native_thread)
- : NativeRegisterContextWindows(native_thread,
- CreateRegisterInfoInterface(target_arch)) {}
+ : NativeRegisterContextRegisterInfo(
+ native_thread, CreateRegisterInfoInterface(target_arch)) {}
----------------
DavidSpickett wrote:
So for i386 and x86_64, you've made these changes to keep them building, but this does not enable writing the watchpoints, correct?
For arm64, you've hooked up the debug register read and write, so there they do work now.
https://github.com/llvm/llvm-project/pull/108072
More information about the llvm-commits
mailing list