This renames the LLDB error class to Status, as discussed on the lldb-dev mailing list. A change of this magnitude cannot easily be done without find and replace, but that has potential to catch unwanted occurrences of common strings such as "Error". Every effort was made to find all the obvious things such as the word "Error" appearing in a string, etc, but it's possible there are still some lingering occurences left around. Hopefully nothing too serious. llvm-svn: 302872
69 lines
2.4 KiB
C++
69 lines
2.4 KiB
C++
//===-- NativeThreadProtocol.cpp --------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lldb/Host/common/NativeThreadProtocol.h"
|
|
|
|
#include "lldb/Host/common/NativeProcessProtocol.h"
|
|
#include "lldb/Host/common/NativeRegisterContext.h"
|
|
#include "lldb/Host/common/SoftwareBreakpoint.h"
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
|
|
NativeThreadProtocol::NativeThreadProtocol(NativeProcessProtocol *process,
|
|
lldb::tid_t tid)
|
|
: m_process_wp(process->shared_from_this()), m_tid(tid) {}
|
|
|
|
Status NativeThreadProtocol::ReadRegister(uint32_t reg,
|
|
RegisterValue ®_value) {
|
|
NativeRegisterContextSP register_context_sp = GetRegisterContext();
|
|
if (!register_context_sp)
|
|
return Status("no register context");
|
|
|
|
const RegisterInfo *const reg_info =
|
|
register_context_sp->GetRegisterInfoAtIndex(reg);
|
|
if (!reg_info)
|
|
return Status("no register info for reg num %" PRIu32, reg);
|
|
|
|
return register_context_sp->ReadRegister(reg_info, reg_value);
|
|
;
|
|
}
|
|
|
|
Status NativeThreadProtocol::WriteRegister(uint32_t reg,
|
|
const RegisterValue ®_value) {
|
|
NativeRegisterContextSP register_context_sp = GetRegisterContext();
|
|
if (!register_context_sp)
|
|
return Status("no register context");
|
|
|
|
const RegisterInfo *const reg_info =
|
|
register_context_sp->GetRegisterInfoAtIndex(reg);
|
|
if (!reg_info)
|
|
return Status("no register info for reg num %" PRIu32, reg);
|
|
|
|
return register_context_sp->WriteRegister(reg_info, reg_value);
|
|
}
|
|
|
|
Status NativeThreadProtocol::SaveAllRegisters(lldb::DataBufferSP &data_sp) {
|
|
NativeRegisterContextSP register_context_sp = GetRegisterContext();
|
|
if (!register_context_sp)
|
|
return Status("no register context");
|
|
return register_context_sp->WriteAllRegisterValues(data_sp);
|
|
}
|
|
|
|
Status NativeThreadProtocol::RestoreAllRegisters(lldb::DataBufferSP &data_sp) {
|
|
NativeRegisterContextSP register_context_sp = GetRegisterContext();
|
|
if (!register_context_sp)
|
|
return Status("no register context");
|
|
return register_context_sp->ReadAllRegisterValues(data_sp);
|
|
}
|
|
|
|
NativeProcessProtocolSP NativeThreadProtocol::GetProcess() {
|
|
return m_process_wp.lock();
|
|
}
|