Files
clang-p2996/lldb/source/Plugins/Process/Linux/LinuxThread.h
Greg Clayton 43b4e213cb First try at patching linux for the recent RegisterContext patch. Can someone
try and build this and let me know how it goes?

llvm-svn: 122981
2011-01-06 22:35:55 +00:00

95 lines
2.1 KiB
C++

//===-- LinuxThread.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_LinuxThread_H_
#define liblldb_LinuxThread_H_
// C Includes
// C++ Includes
#include <memory>
// Other libraries and framework includes
#include "lldb/Target/Thread.h"
class ProcessMonitor;
class RegisterContextLinux;
//------------------------------------------------------------------------------
// @class LinuxThread
// @brief Abstraction of a linux process (thread).
class LinuxThread
: public lldb_private::Thread
{
public:
LinuxThread(lldb_private::Process &process, lldb::tid_t tid);
void
RefreshStateAfterStop();
bool
WillResume(lldb::StateType resume_state);
const char *
GetInfo();
virtual lldb::RegisterContextSP
GetRegisterContext();
virtual bool
SaveFrameZeroState(RegisterCheckpoint &checkpoint);
virtual bool
RestoreSaveFrameZero(const RegisterCheckpoint &checkpoint);
virtual lldb::RegisterContextSP
CreateRegisterContextForFrame (StackFrame *frame);
//--------------------------------------------------------------------------
// These methods form a specialized interface to linux threads.
//
bool Resume();
void BreakNotify();
void TraceNotify();
void ExitNotify();
private:
RegisterContextLinux *
GetRegisterContextLinux ()
{
if (!m_reg_context_sp)
GetRegisterContext();
return (RegisterContextLinux *)m_reg_context_sp.get()
}
std::auto_ptr<lldb_private::StackFrame> m_frame_ap;
lldb::BreakpointSiteSP m_breakpoint;
enum Notification {
eNone,
eBreak,
eTrace,
eExit
};
Notification m_note;
ProcessMonitor &GetMonitor();
lldb::StopInfoSP
GetPrivateStopReason();
lldb_private::Unwind *
GetUnwinder();
};
#endif // #ifndef liblldb_LinuxThread_H_