blob: 9b404be500b97bc3d007acbea55a34e917065a7e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
//===-- 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_
|