<rdar://problem/13723772> Modified the lldb_private::Thread to work much better with the OperatingSystem plug-ins. Operating system plug-ins can now return have a "core" key/value pair in each thread dictionary for the OperatingSystemPython plug-ins which allows the core threads to be contained with memory threads. It also allows these memory threads to be stepped, resumed, and controlled just as if they were the actual backing threads themselves. A few things are introduced: - lldb_private::Thread now has a GetProtocolID() method which returns the thread protocol ID for a given thread. The protocol ID (Thread::GetProtocolID()) is usually the same as the thread id (Thread::GetID()), but it can differ when a memory thread has its own id, but is backed by an actual API thread. - Cleaned up the Thread::WillResume() code to do the mandatory parts in Thread::ShouldResume(), and let the thread subclasses override the Thread::WillResume() which is now just a notification. - Cleaned up ClearStackFrames() implementations so that fewer thread subclasses needed to override them - Changed the POSIXThread class a bit since it overrode Thread::WillResume(). It is doing the wrong thing by calling "Thread::SetResumeState()" on its own, this shouldn't be done by thread subclasses, but the current code might rely on it so I left it in with a TODO comment with an explanation. llvm-svn: 180886
108 lines
2.9 KiB
C++
108 lines
2.9 KiB
C++
//===-- POSIXThread.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_POSIXThread_H_
|
|
#define liblldb_POSIXThread_H_
|
|
|
|
// C Includes
|
|
// C++ Includes
|
|
#include <memory>
|
|
|
|
// Other libraries and framework includes
|
|
#include "lldb/Target/Thread.h"
|
|
#include "RegisterContextPOSIX.h"
|
|
|
|
class ProcessMessage;
|
|
class ProcessMonitor;
|
|
class RegisterContextPOSIX;
|
|
|
|
//------------------------------------------------------------------------------
|
|
// @class POSIXThread
|
|
// @brief Abstraction of a linux process (thread).
|
|
class POSIXThread
|
|
: public lldb_private::Thread
|
|
{
|
|
public:
|
|
POSIXThread(lldb_private::Process &process, lldb::tid_t tid);
|
|
|
|
virtual ~POSIXThread();
|
|
|
|
void
|
|
RefreshStateAfterStop();
|
|
|
|
virtual void
|
|
WillResume(lldb::StateType resume_state);
|
|
|
|
const char *
|
|
GetInfo();
|
|
|
|
virtual lldb::RegisterContextSP
|
|
GetRegisterContext();
|
|
|
|
virtual lldb::RegisterContextSP
|
|
CreateRegisterContextForFrame (lldb_private::StackFrame *frame);
|
|
|
|
//--------------------------------------------------------------------------
|
|
// These static functions provide a mapping from the register offset
|
|
// back to the register index or name for use in debugging or log
|
|
// output.
|
|
|
|
static unsigned
|
|
GetRegisterIndexFromOffset(unsigned offset);
|
|
|
|
static const char *
|
|
GetRegisterName(unsigned reg);
|
|
|
|
static const char *
|
|
GetRegisterNameFromOffset(unsigned offset);
|
|
|
|
//--------------------------------------------------------------------------
|
|
// These methods form a specialized interface to linux threads.
|
|
//
|
|
bool Resume();
|
|
|
|
void Notify(const ProcessMessage &message);
|
|
|
|
private:
|
|
RegisterContextPOSIX *
|
|
GetRegisterContextPOSIX ()
|
|
{
|
|
if (!m_reg_context_sp)
|
|
m_reg_context_sp = GetRegisterContext();
|
|
#if 0
|
|
return dynamic_cast<RegisterContextPOSIX*>(m_reg_context_sp.get());
|
|
#endif
|
|
return (RegisterContextPOSIX *)m_reg_context_sp.get();
|
|
}
|
|
|
|
std::unique_ptr<lldb_private::StackFrame> m_frame_ap;
|
|
|
|
lldb::BreakpointSiteSP m_breakpoint;
|
|
lldb::StopInfoSP m_stop_info;
|
|
|
|
ProcessMonitor &
|
|
GetMonitor();
|
|
|
|
lldb::StopInfoSP
|
|
GetPrivateStopReason();
|
|
|
|
void BreakNotify(const ProcessMessage &message);
|
|
void TraceNotify(const ProcessMessage &message);
|
|
void LimboNotify(const ProcessMessage &message);
|
|
void SignalNotify(const ProcessMessage &message);
|
|
void SignalDeliveredNotify(const ProcessMessage &message);
|
|
void CrashNotify(const ProcessMessage &message);
|
|
void ThreadNotify(const ProcessMessage &message);
|
|
|
|
lldb_private::Unwind *
|
|
GetUnwinder();
|
|
};
|
|
|
|
#endif // #ifndef liblldb_POSIXThread_H_
|