diff options
-rw-r--r-- | lldb/include/lldb/Host/common/NativeThreadProtocol.h | 8 | ||||
-rw-r--r-- | lldb/source/Host/common/NativeThreadProtocol.cpp | 33 |
2 files changed, 0 insertions, 41 deletions
diff --git a/lldb/include/lldb/Host/common/NativeThreadProtocol.h b/lldb/include/lldb/Host/common/NativeThreadProtocol.h index 5609cdda4ee..6f4452c688e 100644 --- a/lldb/include/lldb/Host/common/NativeThreadProtocol.h +++ b/lldb/include/lldb/Host/common/NativeThreadProtocol.h @@ -32,14 +32,6 @@ public: virtual NativeRegisterContext &GetRegisterContext() = 0; - virtual Status ReadRegister(uint32_t reg, RegisterValue ®_value); - - virtual Status WriteRegister(uint32_t reg, const RegisterValue ®_value); - - virtual Status SaveAllRegisters(lldb::DataBufferSP &data_sp); - - virtual Status RestoreAllRegisters(lldb::DataBufferSP &data_sp); - virtual bool GetStopReason(ThreadStopInfo &stop_info, std::string &description) = 0; diff --git a/lldb/source/Host/common/NativeThreadProtocol.cpp b/lldb/source/Host/common/NativeThreadProtocol.cpp index 3f3915e006d..0c648e40eb5 100644 --- a/lldb/source/Host/common/NativeThreadProtocol.cpp +++ b/lldb/source/Host/common/NativeThreadProtocol.cpp @@ -19,36 +19,3 @@ using namespace lldb_private; NativeThreadProtocol::NativeThreadProtocol(NativeProcessProtocol &process, lldb::tid_t tid) : m_process(process), m_tid(tid) {} - -Status NativeThreadProtocol::ReadRegister(uint32_t reg, - RegisterValue ®_value) { - NativeRegisterContext ®ister_context = GetRegisterContext(); - - const RegisterInfo *const reg_info = - register_context.GetRegisterInfoAtIndex(reg); - if (!reg_info) - return Status("no register info for reg num %" PRIu32, reg); - - return register_context.ReadRegister(reg_info, reg_value); - ; -} - -Status NativeThreadProtocol::WriteRegister(uint32_t reg, - const RegisterValue ®_value) { - NativeRegisterContext& register_context = GetRegisterContext(); - - const RegisterInfo *const reg_info = - register_context.GetRegisterInfoAtIndex(reg); - if (!reg_info) - return Status("no register info for reg num %" PRIu32, reg); - - return register_context.WriteRegister(reg_info, reg_value); -} - -Status NativeThreadProtocol::SaveAllRegisters(lldb::DataBufferSP &data_sp) { - return GetRegisterContext().WriteAllRegisterValues(data_sp); -} - -Status NativeThreadProtocol::RestoreAllRegisters(lldb::DataBufferSP &data_sp) { - return GetRegisterContext().ReadAllRegisterValues(data_sp); -} |