blob: 6cef5b1fa2d2730a5287f0050e8beecfb2f4a58a (
plain)
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
86
87
88
89
90
91
92
93
94
95
96
97
|
//===-- 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 "NativeThreadProtocol.h"
#include "NativeProcessProtocol.h"
#include "lldb/Target/NativeRegisterContext.h"
#include "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)
{
}
Error
NativeThreadProtocol::ReadRegister (uint32_t reg, RegisterValue ®_value)
{
NativeRegisterContextSP register_context_sp = GetRegisterContext ();
if (!register_context_sp)
return Error ("no register context");
const RegisterInfo *const reg_info = register_context_sp->GetRegisterInfoAtIndex (reg);
if (!reg_info)
return Error ("no register info for reg num %" PRIu32, reg);
return register_context_sp->ReadRegister (reg_info, reg_value);;
}
Error
NativeThreadProtocol::WriteRegister (uint32_t reg, const RegisterValue ®_value)
{
NativeRegisterContextSP register_context_sp = GetRegisterContext ();
if (!register_context_sp)
return Error ("no register context");
const RegisterInfo *const reg_info = register_context_sp->GetRegisterInfoAtIndex (reg);
if (!reg_info)
return Error ("no register info for reg num %" PRIu32, reg);
return register_context_sp->WriteRegister (reg_info, reg_value);
}
Error
NativeThreadProtocol::SaveAllRegisters (lldb::DataBufferSP &data_sp)
{
NativeRegisterContextSP register_context_sp = GetRegisterContext ();
if (!register_context_sp)
return Error ("no register context");
return register_context_sp->WriteAllRegisterValues (data_sp);
}
Error
NativeThreadProtocol::RestoreAllRegisters (lldb::DataBufferSP &data_sp)
{
NativeRegisterContextSP register_context_sp = GetRegisterContext ();
if (!register_context_sp)
return Error ("no register context");
return register_context_sp->ReadAllRegisterValues (data_sp);
}
NativeProcessProtocolSP
NativeThreadProtocol::GetProcess ()
{
return m_process_wp.lock ();
}
uint32_t
NativeThreadProtocol::TranslateStopInfoToGdbSignal (const ThreadStopInfo &stop_info) const
{
// Default: no translation. Do the real translation where there
// is access to the host signal numbers.
switch (stop_info.reason)
{
case eStopReasonSignal:
return stop_info.details.signal.signo;
break;
case eStopReasonException:
// FIXME verify the way to specify pass-thru here.
return static_cast<uint32_t> (stop_info.details.exception.type);
break;
default:
assert (0 && "unexpected stop_info.reason found");
return 0;
}
}
|