This change brings in lldb-gdbserver (llgs) specifically for Linux x86_64. (More architectures coming soon). Not every debugserver option is covered yet. Currently the lldb-gdbserver command line can start unattached, start attached to a pid (process-name attach not supported yet), or accept lldb attaching and launching a process or connecting by process id. The history of this large change can be found here: https://github.com/tfiala/lldb/tree/dev-tfiala-native-protocol-linux-x86_64 Until mid/late April, I was not sharing the work and continued to rebase it off of head (developed via id tfiala@google.com). I switched over to user todd.fiala@gmail.com in the middle, and once I went to github, I did merges rather than rebasing so I could share with others. llvm-svn: 212069
86 lines
2.3 KiB
C++
86 lines
2.3 KiB
C++
//===-- NativeThreadProtocol.h ----------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef liblldb_NativeThreadProtocol_h_
|
|
#define liblldb_NativeThreadProtocol_h_
|
|
|
|
#include <memory>
|
|
|
|
#include "lldb/lldb-private-forward.h"
|
|
#include "lldb/lldb-types.h"
|
|
#include "lldb/Host/Debug.h"
|
|
|
|
namespace lldb_private
|
|
{
|
|
//------------------------------------------------------------------
|
|
// NativeThreadProtocol
|
|
//------------------------------------------------------------------
|
|
class NativeThreadProtocol:
|
|
public std::enable_shared_from_this<NativeThreadProtocol>
|
|
{
|
|
public:
|
|
NativeThreadProtocol (NativeProcessProtocol *process, lldb::tid_t tid);
|
|
|
|
virtual ~NativeThreadProtocol()
|
|
{
|
|
}
|
|
|
|
virtual const char *
|
|
GetName() = 0;
|
|
|
|
virtual lldb::StateType
|
|
GetState () = 0;
|
|
|
|
virtual NativeRegisterContextSP
|
|
GetRegisterContext () = 0;
|
|
|
|
virtual Error
|
|
ReadRegister (uint32_t reg, RegisterValue ®_value);
|
|
|
|
virtual Error
|
|
WriteRegister (uint32_t reg, const RegisterValue ®_value);
|
|
|
|
virtual Error
|
|
SaveAllRegisters (lldb::DataBufferSP &data_sp);
|
|
|
|
virtual Error
|
|
RestoreAllRegisters (lldb::DataBufferSP &data_sp);
|
|
|
|
virtual bool
|
|
GetStopReason (ThreadStopInfo &stop_info) = 0;
|
|
|
|
virtual uint32_t
|
|
TranslateStopInfoToGdbSignal (const ThreadStopInfo &stop_info) const;
|
|
|
|
lldb::tid_t
|
|
GetID() const
|
|
{
|
|
return m_tid;
|
|
}
|
|
|
|
NativeProcessProtocolSP
|
|
GetProcess ();
|
|
|
|
// ---------------------------------------------------------------------
|
|
// Thread-specific watchpoints
|
|
// ---------------------------------------------------------------------
|
|
virtual Error
|
|
SetWatchpoint (lldb::addr_t addr, size_t size, uint32_t watch_flags, bool hardware) = 0;
|
|
|
|
virtual Error
|
|
RemoveWatchpoint (lldb::addr_t addr) = 0;
|
|
|
|
protected:
|
|
NativeProcessProtocolWP m_process_wp;
|
|
lldb::tid_t m_tid;
|
|
};
|
|
}
|
|
|
|
#endif // #ifndef liblldb_NativeThreadProtocol_h_
|