blob: 4fffdac9a34e125b8da0278a37058216ade8ee17 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- ThreadList.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#include <stdlib.h>
10
11#include <algorithm>
12
Greg Clayton2cad65a2010-09-03 17:10:42 +000013#include "lldb/Core/Log.h"
Andrew Kaylor29d65742013-05-10 17:19:04 +000014#include "lldb/Core/State.h"
Greg Clayton2cad65a2010-09-03 17:10:42 +000015#include "lldb/Target/RegisterContext.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000016#include "lldb/Target/ThreadList.h"
17#include "lldb/Target/Thread.h"
18#include "lldb/Target/ThreadPlan.h"
19#include "lldb/Target/Process.h"
20
21using namespace lldb;
22using namespace lldb_private;
23
24ThreadList::ThreadList (Process *process) :
25 m_process (process),
26 m_stop_id (0),
27 m_threads(),
Jim Ingham2976d002010-08-26 21:32:51 +000028 m_selected_tid (LLDB_INVALID_THREAD_ID)
Chris Lattner30fdc8d2010-06-08 16:52:24 +000029{
30}
31
32ThreadList::ThreadList (const ThreadList &rhs) :
Andrew Kaylorba4e61d2013-05-07 18:35:34 +000033 m_process (rhs.m_process),
34 m_stop_id (rhs.m_stop_id),
Chris Lattner30fdc8d2010-06-08 16:52:24 +000035 m_threads (),
Jim Ingham2976d002010-08-26 21:32:51 +000036 m_selected_tid ()
Chris Lattner30fdc8d2010-06-08 16:52:24 +000037{
38 // Use the assignment operator since it uses the mutex
39 *this = rhs;
40}
41
42const ThreadList&
43ThreadList::operator = (const ThreadList& rhs)
44{
45 if (this != &rhs)
46 {
47 // Lock both mutexes to make sure neither side changes anyone on us
48 // while the assignement occurs
Andrew Kaylorba4e61d2013-05-07 18:35:34 +000049 Mutex::Locker locker(GetMutex());
Chris Lattner30fdc8d2010-06-08 16:52:24 +000050 m_process = rhs.m_process;
51 m_stop_id = rhs.m_stop_id;
52 m_threads = rhs.m_threads;
Jim Ingham2976d002010-08-26 21:32:51 +000053 m_selected_tid = rhs.m_selected_tid;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000054 }
55 return *this;
56}
57
58
59ThreadList::~ThreadList()
60{
Greg Claytonac358da2013-03-28 18:33:53 +000061 // Clear the thread list. Clear will take the mutex lock
62 // which will ensure that if anyone is using the list
63 // they won't get it removed while using it.
64 Clear();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000065}
66
67
68uint32_t
69ThreadList::GetStopID () const
70{
71 return m_stop_id;
72}
73
74void
75ThreadList::SetStopID (uint32_t stop_id)
76{
77 m_stop_id = stop_id;
78}
79
80
81void
Greg Claytonc3776bf2012-02-09 06:16:32 +000082ThreadList::AddThread (const ThreadSP &thread_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +000083{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +000084 Mutex::Locker locker(GetMutex());
Chris Lattner30fdc8d2010-06-08 16:52:24 +000085 m_threads.push_back(thread_sp);
86}
87
Greg Claytone98008c2014-02-13 23:34:38 +000088void
89ThreadList::InsertThread (const lldb::ThreadSP &thread_sp, uint32_t idx)
90{
91 Mutex::Locker locker(GetMutex());
92 if (idx < m_threads.size())
93 m_threads.insert(m_threads.begin() + idx, thread_sp);
94 else
95 m_threads.push_back (thread_sp);
96}
97
98
Chris Lattner30fdc8d2010-06-08 16:52:24 +000099uint32_t
100ThreadList::GetSize (bool can_update)
101{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000102 Mutex::Locker locker(GetMutex());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000103 if (can_update)
104 m_process->UpdateThreadListIfNeeded();
105 return m_threads.size();
106}
107
108ThreadSP
109ThreadList::GetThreadAtIndex (uint32_t idx, bool can_update)
110{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000111 Mutex::Locker locker(GetMutex());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000112 if (can_update)
113 m_process->UpdateThreadListIfNeeded();
114
115 ThreadSP thread_sp;
116 if (idx < m_threads.size())
117 thread_sp = m_threads[idx];
118 return thread_sp;
119}
120
121ThreadSP
122ThreadList::FindThreadByID (lldb::tid_t tid, bool can_update)
123{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000124 Mutex::Locker locker(GetMutex());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000125
126 if (can_update)
127 m_process->UpdateThreadListIfNeeded();
128
129 ThreadSP thread_sp;
130 uint32_t idx = 0;
131 const uint32_t num_threads = m_threads.size();
132 for (idx = 0; idx < num_threads; ++idx)
133 {
134 if (m_threads[idx]->GetID() == tid)
135 {
136 thread_sp = m_threads[idx];
137 break;
138 }
139 }
140 return thread_sp;
141}
142
143ThreadSP
Greg Clayton160c9d82013-05-01 21:54:04 +0000144ThreadList::FindThreadByProtocolID (lldb::tid_t tid, bool can_update)
145{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000146 Mutex::Locker locker(GetMutex());
Greg Clayton160c9d82013-05-01 21:54:04 +0000147
148 if (can_update)
149 m_process->UpdateThreadListIfNeeded();
150
151 ThreadSP thread_sp;
152 uint32_t idx = 0;
153 const uint32_t num_threads = m_threads.size();
154 for (idx = 0; idx < num_threads; ++idx)
155 {
156 if (m_threads[idx]->GetProtocolID() == tid)
157 {
158 thread_sp = m_threads[idx];
159 break;
160 }
161 }
162 return thread_sp;
163}
164
165
166ThreadSP
Han Ming Ongc2c423e2013-01-08 22:10:01 +0000167ThreadList::RemoveThreadByID (lldb::tid_t tid, bool can_update)
168{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000169 Mutex::Locker locker(GetMutex());
Han Ming Ongc2c423e2013-01-08 22:10:01 +0000170
171 if (can_update)
172 m_process->UpdateThreadListIfNeeded();
173
174 ThreadSP thread_sp;
175 uint32_t idx = 0;
176 const uint32_t num_threads = m_threads.size();
177 for (idx = 0; idx < num_threads; ++idx)
178 {
179 if (m_threads[idx]->GetID() == tid)
180 {
181 thread_sp = m_threads[idx];
182 m_threads.erase(m_threads.begin()+idx);
183 break;
184 }
185 }
186 return thread_sp;
187}
188
189ThreadSP
Greg Clayton160c9d82013-05-01 21:54:04 +0000190ThreadList::RemoveThreadByProtocolID (lldb::tid_t tid, bool can_update)
191{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000192 Mutex::Locker locker(GetMutex());
Greg Clayton160c9d82013-05-01 21:54:04 +0000193
194 if (can_update)
195 m_process->UpdateThreadListIfNeeded();
196
197 ThreadSP thread_sp;
198 uint32_t idx = 0;
199 const uint32_t num_threads = m_threads.size();
200 for (idx = 0; idx < num_threads; ++idx)
201 {
202 if (m_threads[idx]->GetProtocolID() == tid)
203 {
204 thread_sp = m_threads[idx];
205 m_threads.erase(m_threads.begin()+idx);
206 break;
207 }
208 }
209 return thread_sp;
210}
211
212ThreadSP
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000213ThreadList::GetThreadSPForThreadPtr (Thread *thread_ptr)
214{
215 ThreadSP thread_sp;
216 if (thread_ptr)
217 {
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000218 Mutex::Locker locker(GetMutex());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000219
220 uint32_t idx = 0;
221 const uint32_t num_threads = m_threads.size();
222 for (idx = 0; idx < num_threads; ++idx)
223 {
224 if (m_threads[idx].get() == thread_ptr)
225 {
226 thread_sp = m_threads[idx];
227 break;
228 }
229 }
230 }
231 return thread_sp;
232}
233
234
235
236ThreadSP
237ThreadList::FindThreadByIndexID (uint32_t index_id, bool can_update)
238{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000239 Mutex::Locker locker(GetMutex());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000240
241 if (can_update)
242 m_process->UpdateThreadListIfNeeded();
243
244 ThreadSP thread_sp;
245 const uint32_t num_threads = m_threads.size();
246 for (uint32_t idx = 0; idx < num_threads; ++idx)
247 {
248 if (m_threads[idx]->GetIndexID() == index_id)
249 {
250 thread_sp = m_threads[idx];
251 break;
252 }
253 }
254 return thread_sp;
255}
256
257bool
258ThreadList::ShouldStop (Event *event_ptr)
259{
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000260 // Running events should never stop, obviously...
261
Greg Clayton5160ce52013-03-27 23:08:40 +0000262 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000263
Jim Inghamb42f3af2012-11-15 22:44:04 +0000264 // The ShouldStop method of the threads can do a whole lot of work,
265 // running breakpoint commands & conditions, etc. So we don't want
266 // to keep the ThreadList locked the whole time we are doing this.
267 // FIXME: It is possible that running code could cause new threads
268 // to be created. If that happens we will miss asking them whether
269 // then should stop. This is not a big deal, since we haven't had
270 // a chance to hang any interesting operations on those threads yet.
271
272 collection threads_copy;
273 {
274 // Scope for locker
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000275 Mutex::Locker locker(GetMutex());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000276
Jim Inghamb42f3af2012-11-15 22:44:04 +0000277 m_process->UpdateThreadListIfNeeded();
278 threads_copy = m_threads;
279 }
280
281 collection::iterator pos, end = threads_copy.end();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000282
Greg Clayton2cad65a2010-09-03 17:10:42 +0000283 if (log)
Jim Ingham10c4b242011-10-15 00:23:43 +0000284 {
285 log->PutCString("");
Daniel Malead01b2952012-11-29 21:49:15 +0000286 log->Printf ("ThreadList::%s: %" PRIu64 " threads", __FUNCTION__, (uint64_t)m_threads.size());
Jim Ingham10c4b242011-10-15 00:23:43 +0000287 }
Greg Clayton2cad65a2010-09-03 17:10:42 +0000288
Jim Inghama0079042013-03-21 21:46:56 +0000289 bool did_anybody_stop_for_a_reason = false;
Jim Ingham7bc34652013-04-16 22:53:24 +0000290 bool should_stop = false;
291
292 // Now we run through all the threads and get their stop info's. We want to make sure to do this first before
293 // we start running the ShouldStop, because one thread's ShouldStop could destroy information (like deleting a
294 // thread specific breakpoint another thread had stopped at) which could lead us to compute the StopInfo incorrectly.
295 // We don't need to use it here, we just want to make sure it gets computed.
296
297 for (pos = threads_copy.begin(); pos != end; ++pos)
298 {
299 ThreadSP thread_sp(*pos);
300 thread_sp->GetStopInfo();
301 }
Jim Inghama0079042013-03-21 21:46:56 +0000302
Jim Inghamb42f3af2012-11-15 22:44:04 +0000303 for (pos = threads_copy.begin(); pos != end; ++pos)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000304 {
305 ThreadSP thread_sp(*pos);
Greg Clayton2cad65a2010-09-03 17:10:42 +0000306
Jim Ingham39fdae72014-01-15 03:32:42 +0000307 // We should never get a stop for which no thread had a stop reason, but sometimes we do see this -
308 // for instance when we first connect to a remote stub. In that case we should stop, since we can't figure out
309 // the right thing to do and stopping gives the user control over what to do in this instance.
310 //
311 // Note, this causes a problem when you have a thread specific breakpoint, and a bunch of threads hit the breakpoint,
312 // but not the thread which we are waiting for. All the threads that are not "supposed" to hit the breakpoint
313 // are marked as having no stop reason, which is right, they should not show a stop reason. But that triggers this
314 // code and causes us to stop seemingly for no reason.
315 //
316 // Since the only way we ever saw this error was on first attach, I'm only going to trigger set did_anybody_stop_for_a_reason
317 // to true unless this is the first stop.
318 //
319 // If this becomes a problem, we'll have to have another StopReason like "StopInfoHidden" which will look invalid
320 // everywhere but at this check.
321
Ed Maste21afbe02014-01-17 17:31:06 +0000322 if (thread_sp->GetProcess()->GetStopID() > 1)
Jim Ingham39fdae72014-01-15 03:32:42 +0000323 did_anybody_stop_for_a_reason = true;
324 else
325 did_anybody_stop_for_a_reason |= thread_sp->ThreadStoppedForAReason();
Jim Inghama0079042013-03-21 21:46:56 +0000326
Jim Ingham10c4b242011-10-15 00:23:43 +0000327 const bool thread_should_stop = thread_sp->ShouldStop(event_ptr);
Greg Clayton2cad65a2010-09-03 17:10:42 +0000328 if (thread_should_stop)
329 should_stop |= true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000330 }
Jim Inghamb01e7422010-06-19 04:45:32 +0000331
Jim Inghama0079042013-03-21 21:46:56 +0000332 if (!should_stop && !did_anybody_stop_for_a_reason)
333 {
334 should_stop = true;
335 if (log)
336 log->Printf ("ThreadList::%s we stopped but no threads had a stop reason, overriding should_stop and stopping.", __FUNCTION__);
337 }
338
Greg Clayton2cad65a2010-09-03 17:10:42 +0000339 if (log)
Jim Ingham10c4b242011-10-15 00:23:43 +0000340 log->Printf ("ThreadList::%s overall should_stop = %i", __FUNCTION__, should_stop);
Greg Clayton2cad65a2010-09-03 17:10:42 +0000341
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000342 if (should_stop)
343 {
Jim Inghamb42f3af2012-11-15 22:44:04 +0000344 for (pos = threads_copy.begin(); pos != end; ++pos)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000345 {
346 ThreadSP thread_sp(*pos);
347 thread_sp->WillStop ();
348 }
349 }
350
351 return should_stop;
352}
353
354Vote
355ThreadList::ShouldReportStop (Event *event_ptr)
356{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000357 Mutex::Locker locker(GetMutex());
Greg Clayton2cad65a2010-09-03 17:10:42 +0000358
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000359 Vote result = eVoteNoOpinion;
360 m_process->UpdateThreadListIfNeeded();
361 collection::iterator pos, end = m_threads.end();
362
Greg Clayton5160ce52013-03-27 23:08:40 +0000363 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
Greg Clayton2cad65a2010-09-03 17:10:42 +0000364
365 if (log)
Daniel Malead01b2952012-11-29 21:49:15 +0000366 log->Printf ("ThreadList::%s %" PRIu64 " threads", __FUNCTION__, (uint64_t)m_threads.size());
Greg Clayton2cad65a2010-09-03 17:10:42 +0000367
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000368 // Run through the threads and ask whether we should report this event.
369 // For stopping, a YES vote wins over everything. A NO vote wins over NO opinion.
370 for (pos = m_threads.begin(); pos != end; ++pos)
371 {
372 ThreadSP thread_sp(*pos);
Jim Ingham92087d82012-01-31 23:09:20 +0000373 const Vote vote = thread_sp->ShouldReportStop (event_ptr);
374 switch (vote)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000375 {
Jim Ingham92087d82012-01-31 23:09:20 +0000376 case eVoteNoOpinion:
377 continue;
378
379 case eVoteYes:
380 result = eVoteYes;
381 break;
382
383 case eVoteNo:
384 if (result == eVoteNoOpinion)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000385 {
Jim Ingham92087d82012-01-31 23:09:20 +0000386 result = eVoteNo;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000387 }
Jim Ingham92087d82012-01-31 23:09:20 +0000388 else
389 {
390 if (log)
Daniel Malead01b2952012-11-29 21:49:15 +0000391 log->Printf ("ThreadList::%s thread 0x%4.4" PRIx64 ": voted %s, but lost out because result was %s",
Jim Ingham92087d82012-01-31 23:09:20 +0000392 __FUNCTION__,
393 thread_sp->GetID (),
394 GetVoteAsCString (vote),
395 GetVoteAsCString (result));
396 }
397 break;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000398 }
399 }
Greg Clayton2cad65a2010-09-03 17:10:42 +0000400 if (log)
Jim Ingham10c4b242011-10-15 00:23:43 +0000401 log->Printf ("ThreadList::%s returning %s", __FUNCTION__, GetVoteAsCString (result));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000402 return result;
403}
404
Jim Ingham221d51c2013-05-08 00:35:16 +0000405void
406ThreadList::SetShouldReportStop (Vote vote)
407{
408 Mutex::Locker locker(GetMutex());
409 m_process->UpdateThreadListIfNeeded();
410 collection::iterator pos, end = m_threads.end();
411 for (pos = m_threads.begin(); pos != end; ++pos)
412 {
413 ThreadSP thread_sp(*pos);
414 thread_sp->SetShouldReportStop (vote);
415 }
416}
417
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000418Vote
419ThreadList::ShouldReportRun (Event *event_ptr)
420{
Greg Clayton2cad65a2010-09-03 17:10:42 +0000421
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000422 Mutex::Locker locker(GetMutex());
Greg Clayton2cad65a2010-09-03 17:10:42 +0000423
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000424 Vote result = eVoteNoOpinion;
425 m_process->UpdateThreadListIfNeeded();
426 collection::iterator pos, end = m_threads.end();
427
428 // Run through the threads and ask whether we should report this event.
429 // The rule is NO vote wins over everything, a YES vote wins over no opinion.
430
Greg Clayton5160ce52013-03-27 23:08:40 +0000431 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
Jim Inghamce579832011-01-24 04:11:25 +0000432
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000433 for (pos = m_threads.begin(); pos != end; ++pos)
434 {
Jim Inghamce579832011-01-24 04:11:25 +0000435 if ((*pos)->GetResumeState () != eStateSuspended)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000436 {
Jim Inghamce579832011-01-24 04:11:25 +0000437 switch ((*pos)->ShouldReportRun (event_ptr))
438 {
439 case eVoteNoOpinion:
440 continue;
441 case eVoteYes:
442 if (result == eVoteNoOpinion)
443 result = eVoteYes;
444 break;
445 case eVoteNo:
Greg Claytonabcbc8a2011-01-24 05:36:47 +0000446 if (log)
Daniel Malead01b2952012-11-29 21:49:15 +0000447 log->Printf ("ThreadList::ShouldReportRun() thread %d (0x%4.4" PRIx64 ") says don't report.",
Greg Claytonabcbc8a2011-01-24 05:36:47 +0000448 (*pos)->GetIndexID(),
449 (*pos)->GetID());
Jim Inghamce579832011-01-24 04:11:25 +0000450 result = eVoteNo;
451 break;
452 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000453 }
454 }
455 return result;
456}
457
458void
459ThreadList::Clear()
460{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000461 Mutex::Locker locker(GetMutex());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000462 m_stop_id = 0;
463 m_threads.clear();
Jim Ingham2976d002010-08-26 21:32:51 +0000464 m_selected_tid = LLDB_INVALID_THREAD_ID;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000465}
466
467void
Greg Claytone1cd1be2012-01-29 20:56:30 +0000468ThreadList::Destroy()
469{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000470 Mutex::Locker locker(GetMutex());
Greg Claytone1cd1be2012-01-29 20:56:30 +0000471 const uint32_t num_threads = m_threads.size();
472 for (uint32_t idx = 0; idx < num_threads; ++idx)
473 {
474 m_threads[idx]->DestroyThread();
475 }
476}
477
478void
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000479ThreadList::RefreshStateAfterStop ()
480{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000481 Mutex::Locker locker(GetMutex());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000482
483 m_process->UpdateThreadListIfNeeded();
Jim Ingham1c823b42011-01-22 01:33:44 +0000484
Greg Clayton5160ce52013-03-27 23:08:40 +0000485 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
Jim Ingham10c4b242011-10-15 00:23:43 +0000486 if (log && log->GetVerbose())
Jim Ingham1c823b42011-01-22 01:33:44 +0000487 log->Printf ("Turning off notification of new threads while single stepping a thread.");
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000488
489 collection::iterator pos, end = m_threads.end();
490 for (pos = m_threads.begin(); pos != end; ++pos)
491 (*pos)->RefreshStateAfterStop ();
492}
493
494void
495ThreadList::DiscardThreadPlans ()
496{
497 // You don't need to update the thread list here, because only threads
498 // that you currently know about have any thread plans.
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000499 Mutex::Locker locker(GetMutex());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000500
501 collection::iterator pos, end = m_threads.end();
502 for (pos = m_threads.begin(); pos != end; ++pos)
503 (*pos)->DiscardThreadPlans (true);
504
505}
506
507bool
508ThreadList::WillResume ()
509{
510 // Run through the threads and perform their momentary actions.
511 // But we only do this for threads that are running, user suspended
512 // threads stay where they are.
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000513
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000514 Mutex::Locker locker(GetMutex());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000515 m_process->UpdateThreadListIfNeeded();
516
517 collection::iterator pos, end = m_threads.end();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000518
Jim Inghama3241c12010-07-14 02:27:20 +0000519 // See if any thread wants to run stopping others. If it does, then we won't
520 // setup the other threads for resume, since they aren't going to get a chance
521 // to run. This is necessary because the SetupForResume might add "StopOthers"
522 // plans which would then get to be part of the who-gets-to-run negotiation, but
523 // they're coming in after the fact, and the threads that are already set up should
524 // take priority.
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000525
Jim Inghama3241c12010-07-14 02:27:20 +0000526 bool wants_solo_run = false;
527
528 for (pos = m_threads.begin(); pos != end; ++pos)
529 {
530 if ((*pos)->GetResumeState() != eStateSuspended &&
531 (*pos)->GetCurrentPlan()->StopOthers())
532 {
Greg Clayton6e0ff1a2013-05-09 01:55:29 +0000533 if ((*pos)->IsOperatingSystemPluginThread() && !(*pos)->GetBackingThread())
534 continue;
Jim Inghama3241c12010-07-14 02:27:20 +0000535 wants_solo_run = true;
536 break;
537 }
538 }
539
Jim Ingham1c823b42011-01-22 01:33:44 +0000540 if (wants_solo_run)
541 {
Greg Clayton5160ce52013-03-27 23:08:40 +0000542 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
Jim Ingham10c4b242011-10-15 00:23:43 +0000543 if (log && log->GetVerbose())
Jim Ingham1c823b42011-01-22 01:33:44 +0000544 log->Printf ("Turning on notification of new threads while single stepping a thread.");
545 m_process->StartNoticingNewThreads();
546 }
547 else
548 {
Greg Clayton5160ce52013-03-27 23:08:40 +0000549 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP));
Jim Ingham10c4b242011-10-15 00:23:43 +0000550 if (log && log->GetVerbose())
Jim Ingham1c823b42011-01-22 01:33:44 +0000551 log->Printf ("Turning off notification of new threads while single stepping a thread.");
552 m_process->StopNoticingNewThreads();
553 }
Jim Inghama3241c12010-07-14 02:27:20 +0000554
555 // Give all the threads that are likely to run a last chance to set up their state before we
556 // negotiate who is actually going to get a chance to run...
557 // Don't set to resume suspended threads, and if any thread wanted to stop others, only
558 // call setup on the threads that request StopOthers...
559
560 for (pos = m_threads.begin(); pos != end; ++pos)
561 {
562 if ((*pos)->GetResumeState() != eStateSuspended
563 && (!wants_solo_run || (*pos)->GetCurrentPlan()->StopOthers()))
564 {
Greg Clayton6e0ff1a2013-05-09 01:55:29 +0000565 if ((*pos)->IsOperatingSystemPluginThread() && !(*pos)->GetBackingThread())
566 continue;
Jim Inghama3241c12010-07-14 02:27:20 +0000567 (*pos)->SetupForResume ();
568 }
569 }
570
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000571 // Now go through the threads and see if any thread wants to run just itself.
572 // if so then pick one and run it.
Jim Inghama3241c12010-07-14 02:27:20 +0000573
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000574 ThreadList run_me_only_list (m_process);
575
576 run_me_only_list.SetStopID(m_process->GetStopID());
577
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000578 bool run_only_current_thread = false;
579
580 for (pos = m_threads.begin(); pos != end; ++pos)
581 {
582 ThreadSP thread_sp(*pos);
Jim Inghamb15bfc72010-10-20 00:39:53 +0000583 if (thread_sp->GetResumeState() != eStateSuspended &&
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000584 thread_sp->GetCurrentPlan()->StopOthers())
585 {
Greg Clayton6e0ff1a2013-05-09 01:55:29 +0000586 if ((*pos)->IsOperatingSystemPluginThread() && !(*pos)->GetBackingThread())
587 continue;
588
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000589 // You can't say "stop others" and also want yourself to be suspended.
590 assert (thread_sp->GetCurrentPlan()->RunState() != eStateSuspended);
591
Jim Ingham2976d002010-08-26 21:32:51 +0000592 if (thread_sp == GetSelectedThread())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000593 {
594 run_only_current_thread = true;
595 run_me_only_list.Clear();
596 run_me_only_list.AddThread (thread_sp);
597 break;
598 }
599
600 run_me_only_list.AddThread (thread_sp);
601 }
602
603 }
604
Jim Ingham513c6bb2012-09-01 01:02:41 +0000605 bool need_to_resume = true;
606
Greg Clayton6e0ff1a2013-05-09 01:55:29 +0000607 if (run_me_only_list.GetSize (false) == 0)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000608 {
609 // Everybody runs as they wish:
610 for (pos = m_threads.begin(); pos != end; ++pos)
611 {
612 ThreadSP thread_sp(*pos);
Jim Inghamcb5d5a52012-05-31 20:47:56 +0000613 StateType run_state;
614 if (thread_sp->GetResumeState() != eStateSuspended)
615 run_state = thread_sp->GetCurrentPlan()->RunState();
616 else
617 run_state = eStateSuspended;
Greg Clayton160c9d82013-05-01 21:54:04 +0000618 if (!thread_sp->ShouldResume(run_state))
Jim Ingham513c6bb2012-09-01 01:02:41 +0000619 need_to_resume = false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000620 }
621 }
622 else
623 {
624 ThreadSP thread_to_run;
625
626 if (run_only_current_thread)
627 {
Jim Ingham2976d002010-08-26 21:32:51 +0000628 thread_to_run = GetSelectedThread();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000629 }
630 else if (run_me_only_list.GetSize (false) == 1)
631 {
632 thread_to_run = run_me_only_list.GetThreadAtIndex (0);
633 }
634 else
635 {
636 int random_thread = (int)
637 ((run_me_only_list.GetSize (false) * (double) rand ()) / (RAND_MAX + 1.0));
638 thread_to_run = run_me_only_list.GetThreadAtIndex (random_thread);
639 }
640
641 for (pos = m_threads.begin(); pos != end; ++pos)
642 {
643 ThreadSP thread_sp(*pos);
644 if (thread_sp == thread_to_run)
Jim Ingham513c6bb2012-09-01 01:02:41 +0000645 {
Greg Clayton160c9d82013-05-01 21:54:04 +0000646 if (!thread_sp->ShouldResume(thread_sp->GetCurrentPlan()->RunState()))
Jim Ingham513c6bb2012-09-01 01:02:41 +0000647 need_to_resume = false;
648 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000649 else
Greg Clayton160c9d82013-05-01 21:54:04 +0000650 thread_sp->ShouldResume (eStateSuspended);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000651 }
652 }
653
Jim Ingham513c6bb2012-09-01 01:02:41 +0000654 return need_to_resume;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000655}
656
657void
658ThreadList::DidResume ()
659{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000660 Mutex::Locker locker(GetMutex());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000661 collection::iterator pos, end = m_threads.end();
662 for (pos = m_threads.begin(); pos != end; ++pos)
663 {
664 // Don't clear out threads that aren't going to get a chance to run, rather
665 // leave their state for the next time around.
666 ThreadSP thread_sp(*pos);
667 if (thread_sp->GetResumeState() != eStateSuspended)
668 thread_sp->DidResume ();
669 }
670}
671
Andrew Kaylor29d65742013-05-10 17:19:04 +0000672void
673ThreadList::DidStop ()
674{
675 Mutex::Locker locker(GetMutex());
676 collection::iterator pos, end = m_threads.end();
677 for (pos = m_threads.begin(); pos != end; ++pos)
678 {
679 // Notify threads that the process just stopped.
680 // Note, this currently assumes that all threads in the list
681 // stop when the process stops. In the future we will want to support
682 // a debugging model where some threads continue to run while others
683 // are stopped. We either need to handle that somehow here or
684 // create a special thread list containing only threads which will
685 // stop in the code that calls this method (currently
686 // Process::SetPrivateState).
687 ThreadSP thread_sp(*pos);
688 if (StateIsRunningState(thread_sp->GetState()))
689 thread_sp->DidStop ();
690 }
691}
692
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000693ThreadSP
Jim Ingham2976d002010-08-26 21:32:51 +0000694ThreadList::GetSelectedThread ()
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000695{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000696 Mutex::Locker locker(GetMutex());
Johnny Chen943ddb72011-08-25 21:59:59 +0000697 ThreadSP thread_sp = FindThreadByID(m_selected_tid);
698 if (!thread_sp.get())
699 {
Jason Molenda354b9a62011-09-13 01:13:16 +0000700 if (m_threads.size() == 0)
701 return thread_sp;
Johnny Chen943ddb72011-08-25 21:59:59 +0000702 m_selected_tid = m_threads[0]->GetID();
703 thread_sp = m_threads[0];
704 }
705 return thread_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000706}
707
708bool
Jim Inghamc3faa192012-12-11 02:31:48 +0000709ThreadList::SetSelectedThreadByID (lldb::tid_t tid, bool notify)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000710{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000711 Mutex::Locker locker(GetMutex());
Jim Inghamb7f6b2f2011-09-08 22:13:49 +0000712 ThreadSP selected_thread_sp(FindThreadByID(tid));
713 if (selected_thread_sp)
714 {
Jim Ingham2976d002010-08-26 21:32:51 +0000715 m_selected_tid = tid;
Jim Inghamb7f6b2f2011-09-08 22:13:49 +0000716 selected_thread_sp->SetDefaultFileAndLineToSelectedFrame();
717 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000718 else
Jim Ingham2976d002010-08-26 21:32:51 +0000719 m_selected_tid = LLDB_INVALID_THREAD_ID;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000720
Jim Inghamc3faa192012-12-11 02:31:48 +0000721 if (notify)
722 NotifySelectedThreadChanged(m_selected_tid);
723
Jim Ingham2976d002010-08-26 21:32:51 +0000724 return m_selected_tid != LLDB_INVALID_THREAD_ID;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000725}
726
727bool
Jim Inghamc3faa192012-12-11 02:31:48 +0000728ThreadList::SetSelectedThreadByIndexID (uint32_t index_id, bool notify)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000729{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000730 Mutex::Locker locker(GetMutex());
Jim Inghamb7f6b2f2011-09-08 22:13:49 +0000731 ThreadSP selected_thread_sp (FindThreadByIndexID(index_id));
732 if (selected_thread_sp.get())
733 {
734 m_selected_tid = selected_thread_sp->GetID();
735 selected_thread_sp->SetDefaultFileAndLineToSelectedFrame();
736 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000737 else
Jim Ingham2976d002010-08-26 21:32:51 +0000738 m_selected_tid = LLDB_INVALID_THREAD_ID;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000739
Jim Inghamc3faa192012-12-11 02:31:48 +0000740 if (notify)
741 NotifySelectedThreadChanged(m_selected_tid);
742
Jim Ingham2976d002010-08-26 21:32:51 +0000743 return m_selected_tid != LLDB_INVALID_THREAD_ID;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000744}
745
Greg Clayton56d9a1b2011-08-22 02:49:39 +0000746void
Jim Inghamc3faa192012-12-11 02:31:48 +0000747ThreadList::NotifySelectedThreadChanged (lldb::tid_t tid)
748{
749 ThreadSP selected_thread_sp (FindThreadByID(tid));
750 if (selected_thread_sp->EventTypeHasListeners(Thread::eBroadcastBitThreadSelected))
751 selected_thread_sp->BroadcastEvent(Thread::eBroadcastBitThreadSelected,
752 new Thread::ThreadEventData(selected_thread_sp));
753}
754
755void
Greg Clayton56d9a1b2011-08-22 02:49:39 +0000756ThreadList::Update (ThreadList &rhs)
757{
758 if (this != &rhs)
759 {
760 // Lock both mutexes to make sure neither side changes anyone on us
761 // while the assignement occurs
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000762 Mutex::Locker locker(GetMutex());
Greg Clayton56d9a1b2011-08-22 02:49:39 +0000763 m_process = rhs.m_process;
764 m_stop_id = rhs.m_stop_id;
765 m_threads.swap(rhs.m_threads);
766 m_selected_tid = rhs.m_selected_tid;
Greg Claytone1cd1be2012-01-29 20:56:30 +0000767
768
769 // Now we look for threads that we are done with and
770 // make sure to clear them up as much as possible so
771 // anyone with a shared pointer will still have a reference,
772 // but the thread won't be of much use. Using std::weak_ptr
773 // for all backward references (such as a thread to a process)
774 // will eventually solve this issue for us, but for now, we
775 // need to work around the issue
776 collection::iterator rhs_pos, rhs_end = rhs.m_threads.end();
777 for (rhs_pos = rhs.m_threads.begin(); rhs_pos != rhs_end; ++rhs_pos)
778 {
779 const lldb::tid_t tid = (*rhs_pos)->GetID();
780 bool thread_is_alive = false;
781 const uint32_t num_threads = m_threads.size();
782 for (uint32_t idx = 0; idx < num_threads; ++idx)
783 {
784 if (m_threads[idx]->GetID() == tid)
785 {
786 thread_is_alive = true;
787 break;
788 }
789 }
790 if (!thread_is_alive)
791 (*rhs_pos)->DestroyThread();
792 }
Greg Clayton56d9a1b2011-08-22 02:49:39 +0000793 }
794}
795
Greg Claytonfa559e52012-05-18 02:38:05 +0000796void
797ThreadList::Flush ()
798{
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000799 Mutex::Locker locker(GetMutex());
Greg Claytonfa559e52012-05-18 02:38:05 +0000800 collection::iterator pos, end = m_threads.end();
801 for (pos = m_threads.begin(); pos != end; ++pos)
802 (*pos)->Flush ();
803}
Greg Clayton56d9a1b2011-08-22 02:49:39 +0000804
Andrew Kaylorba4e61d2013-05-07 18:35:34 +0000805Mutex &
806ThreadList::GetMutex ()
807{
808 return m_process->m_thread_mutex;
809}
810