blob: a8b1b08bcdbfab870f66fcd5a0ae3bd49c23060b [file] [log] [blame]
Greg Claytona63d08c2011-07-19 03:57:15 +00001//===-- ThreadKDP.cpp -------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10
11#include "ThreadKDP.h"
12
13#include "llvm/Support/MachO.h"
14
15#include "lldb/Core/ArchSpec.h"
16#include "lldb/Core/DataExtractor.h"
17#include "lldb/Core/StreamString.h"
18#include "lldb/Core/State.h"
19#include "lldb/Target/Process.h"
20#include "lldb/Target/RegisterContext.h"
21#include "lldb/Target/StopInfo.h"
22#include "lldb/Target/Target.h"
23#include "lldb/Target/Unwind.h"
Johnny Chen01a67862011-10-14 00:42:25 +000024#include "lldb/Breakpoint/Watchpoint.h"
Greg Claytona63d08c2011-07-19 03:57:15 +000025
26#include "ProcessKDP.h"
27#include "ProcessKDPLog.h"
28#include "RegisterContextKDP_arm.h"
29#include "RegisterContextKDP_i386.h"
30#include "RegisterContextKDP_x86_64.h"
Greg Clayton97d5cf02012-09-25 02:40:06 +000031#include "Plugins/Process/Utility/StopInfoMachException.h"
Greg Claytona63d08c2011-07-19 03:57:15 +000032
33using namespace lldb;
34using namespace lldb_private;
35
36//----------------------------------------------------------------------
37// Thread Registers
38//----------------------------------------------------------------------
39
Jim Ingham4f465cf2012-10-10 18:32:14 +000040ThreadKDP::ThreadKDP (Process &process, lldb::tid_t tid) :
41 Thread(process, tid),
Greg Claytona63d08c2011-07-19 03:57:15 +000042 m_thread_name (),
43 m_dispatch_queue_name (),
44 m_thread_dispatch_qaddr (LLDB_INVALID_ADDRESS)
45{
Greg Clayton1ac04c32012-02-21 00:09:25 +000046 ProcessKDPLog::LogIf(KDP_LOG_THREAD, "%p: ThreadKDP::ThreadKDP (tid = 0x%4.4x)", this, GetID());
Greg Claytona63d08c2011-07-19 03:57:15 +000047}
48
49ThreadKDP::~ThreadKDP ()
50{
Greg Clayton1ac04c32012-02-21 00:09:25 +000051 ProcessKDPLog::LogIf(KDP_LOG_THREAD, "%p: ThreadKDP::~ThreadKDP (tid = 0x%4.4x)", this, GetID());
Greg Claytona63d08c2011-07-19 03:57:15 +000052 DestroyThread();
53}
54
Greg Claytona63d08c2011-07-19 03:57:15 +000055const char *
56ThreadKDP::GetName ()
57{
58 if (m_thread_name.empty())
59 return NULL;
60 return m_thread_name.c_str();
61}
62
63const char *
64ThreadKDP::GetQueueName ()
65{
66 return NULL;
67}
68
69bool
70ThreadKDP::WillResume (StateType resume_state)
71{
Greg Claytona63d08c2011-07-19 03:57:15 +000072 // Call the Thread::WillResume first. If we stop at a signal, the stop info
73 // class for signal will set the resume signal that we need below. The signal
74 // stuff obeys the Process::UnixSignal defaults.
75 Thread::WillResume(resume_state);
76
Greg Clayton97d5cf02012-09-25 02:40:06 +000077 ClearStackFrames();
78
Greg Clayton5160ce52013-03-27 23:08:40 +000079 Log *log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STEP));
Greg Claytona63d08c2011-07-19 03:57:15 +000080 if (log)
Daniel Malead01b2952012-11-29 21:49:15 +000081 log->Printf ("Resuming thread: %4.4" PRIx64 " with state: %s.", GetID(), StateAsCString(resume_state));
Greg Claytona63d08c2011-07-19 03:57:15 +000082
Greg Claytona63d08c2011-07-19 03:57:15 +000083 return true;
84}
85
86void
87ThreadKDP::RefreshStateAfterStop()
88{
89 // Invalidate all registers in our register context. We don't set "force" to
90 // true because the stop reply packet might have had some register values
91 // that were expedited and these will already be copied into the register
92 // context by the time this function gets called. The KDPRegisterContext
93 // class has been made smart enough to detect when it needs to invalidate
94 // which registers are valid by putting hooks in the register read and
95 // register supply functions where they check the process stop ID and do
96 // the right thing.
97 const bool force = false;
Greg Clayton1afa68e2013-04-02 20:32:37 +000098 lldb::RegisterContextSP reg_ctx_sp (GetRegisterContext());
99 if (reg_ctx_sp)
100 reg_ctx_sp->InvalidateIfNeeded (force);
Greg Claytona63d08c2011-07-19 03:57:15 +0000101}
102
Greg Claytona63d08c2011-07-19 03:57:15 +0000103void
104ThreadKDP::ClearStackFrames ()
105{
106 Unwind *unwinder = GetUnwinder ();
107 if (unwinder)
108 unwinder->Clear();
109 Thread::ClearStackFrames();
110}
111
112
113bool
114ThreadKDP::ThreadIDIsValid (lldb::tid_t thread)
115{
116 return thread != 0;
117}
118
119void
120ThreadKDP::Dump(Log *log, uint32_t index)
121{
122}
123
124
125bool
126ThreadKDP::ShouldStop (bool &step_more)
127{
128 return true;
129}
130lldb::RegisterContextSP
131ThreadKDP::GetRegisterContext ()
132{
133 if (m_reg_context_sp.get() == NULL)
134 m_reg_context_sp = CreateRegisterContextForFrame (NULL);
135 return m_reg_context_sp;
136}
137
138lldb::RegisterContextSP
139ThreadKDP::CreateRegisterContextForFrame (StackFrame *frame)
140{
141 lldb::RegisterContextSP reg_ctx_sp;
142 uint32_t concrete_frame_idx = 0;
143
144 if (frame)
145 concrete_frame_idx = frame->GetConcreteFrameIndex ();
146
147 if (concrete_frame_idx == 0)
148 {
Greg Clayton1ac04c32012-02-21 00:09:25 +0000149 ProcessSP process_sp (CalculateProcess());
150 if (process_sp)
Greg Claytona63d08c2011-07-19 03:57:15 +0000151 {
Greg Clayton1ac04c32012-02-21 00:09:25 +0000152 switch (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().GetCPUType())
153 {
154 case llvm::MachO::CPUTypeARM:
155 reg_ctx_sp.reset (new RegisterContextKDP_arm (*this, concrete_frame_idx));
156 break;
157 case llvm::MachO::CPUTypeI386:
158 reg_ctx_sp.reset (new RegisterContextKDP_i386 (*this, concrete_frame_idx));
159 break;
160 case llvm::MachO::CPUTypeX86_64:
161 reg_ctx_sp.reset (new RegisterContextKDP_x86_64 (*this, concrete_frame_idx));
162 break;
163 default:
164 assert (!"Add CPU type support in KDP");
165 break;
166 }
Greg Claytona63d08c2011-07-19 03:57:15 +0000167 }
168 }
Greg Claytonb3ae8762013-04-12 20:07:46 +0000169 else
170 {
171 Unwind *unwinder = GetUnwinder ();
172 if (unwinder)
173 reg_ctx_sp = unwinder->CreateRegisterContextForFrame (frame);
174 }
Greg Claytona63d08c2011-07-19 03:57:15 +0000175 return reg_ctx_sp;
176}
177
178lldb::StopInfoSP
179ThreadKDP::GetPrivateStopReason ()
180{
Greg Clayton1ac04c32012-02-21 00:09:25 +0000181 ProcessSP process_sp (GetProcess());
182 if (process_sp)
Greg Claytona63d08c2011-07-19 03:57:15 +0000183 {
Greg Clayton1ac04c32012-02-21 00:09:25 +0000184 const uint32_t process_stop_id = process_sp->GetStopID();
185 if (m_thread_stop_reason_stop_id != process_stop_id ||
186 (m_actual_stop_info_sp && !m_actual_stop_info_sp->IsValid()))
187 {
Jim Ingham5d88a062012-10-16 00:09:33 +0000188 if (IsStillAtLastBreakpointHit())
189 return m_actual_stop_info_sp;
190
Greg Clayton97d5cf02012-09-25 02:40:06 +0000191 if (m_cached_stop_info_sp)
192 SetStopInfo (m_cached_stop_info_sp);
193 else
194 SetStopInfo(StopInfo::CreateStopReasonWithSignal (*this, SIGSTOP));
Greg Clayton1ac04c32012-02-21 00:09:25 +0000195 }
Greg Claytona63d08c2011-07-19 03:57:15 +0000196 }
197 return m_actual_stop_info_sp;
198}
199
Greg Clayton97d5cf02012-09-25 02:40:06 +0000200void
201ThreadKDP::SetStopInfoFrom_KDP_EXCEPTION (const DataExtractor &exc_reply_packet)
202{
Greg Claytonc7bece562013-01-25 18:06:21 +0000203 lldb::offset_t offset = 0;
Greg Clayton97d5cf02012-09-25 02:40:06 +0000204 uint8_t reply_command = exc_reply_packet.GetU8(&offset);
205 if (reply_command == CommunicationKDP::KDP_EXCEPTION)
206 {
207 offset = 8;
208 const uint32_t count = exc_reply_packet.GetU32 (&offset);
209 if (count >= 1)
210 {
211 //const uint32_t cpu = exc_reply_packet.GetU32 (&offset);
212 offset += 4; // Skip the useless CPU field
213 const uint32_t exc_type = exc_reply_packet.GetU32 (&offset);
214 const uint32_t exc_code = exc_reply_packet.GetU32 (&offset);
215 const uint32_t exc_subcode = exc_reply_packet.GetU32 (&offset);
216 // We have to make a copy of the stop info because the thread list
217 // will iterate through the threads and clear all stop infos..
218
219 // Let the StopInfoMachException::CreateStopReasonWithMachException()
220 // function update the PC if needed as we might hit a software breakpoint
221 // and need to decrement the PC (i386 and x86_64 need this) and KDP
222 // doesn't do this for us.
223 const bool pc_already_adjusted = false;
224 const bool adjust_pc_if_needed = true;
225
226 m_cached_stop_info_sp = StopInfoMachException::CreateStopReasonWithMachException (*this,
227 exc_type,
228 2,
229 exc_code,
230 exc_subcode,
231 0,
232 pc_already_adjusted,
233 adjust_pc_if_needed);
234 }
235 }
236}
Greg Claytona63d08c2011-07-19 03:57:15 +0000237