diff options
Diffstat (limited to 'contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h')
-rw-r--r-- | contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h b/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h index f0ead4c38c23..c1ea1cc79055 100644 --- a/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h +++ b/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h @@ -158,9 +158,11 @@ public: Status DisableBreakpointSite(BreakpointSite *bp_site) override; // Process Watchpoints - Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override; + Status EnableWatchpoint(lldb::WatchpointSP wp_sp, + bool notify = true) override; - Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override; + Status DisableWatchpoint(lldb::WatchpointSP wp_sp, + bool notify = true) override; std::optional<uint32_t> GetWatchpointSlotCount() override; @@ -470,6 +472,9 @@ private: void DidForkSwitchSoftwareBreakpoints(bool enable); void DidForkSwitchHardwareTraps(bool enable); + void ParseExpeditedRegisters(ExpeditedRegisterMap &expedited_register_map, + lldb::ThreadSP thread_sp); + // Lists of register fields generated from the remote's target XML. // Pointers to these RegisterFlags will be set in the register info passed // back to the upper levels of lldb. Doing so is safe because this class will |