blob: a2a8fe88286638103106be2c2c26f54f8ee1f93d [file] [log] [blame]
Elliott Hughes8daa0922011-09-11 13:46:25 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "thread_list.h"
18
Elliott Hughesabbe07d2012-06-05 17:42:23 -070019#include <dirent.h>
20#include <sys/types.h>
Elliott Hughes038a8062011-09-18 14:12:41 -070021#include <unistd.h>
22
Elliott Hughes475fc232011-10-25 15:00:35 -070023#include "debugger.h"
Ian Rogers66aee5c2012-08-15 17:17:47 -070024#include "mutex.h"
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070025#include "timing_logger.h"
Elliott Hughesabbe07d2012-06-05 17:42:23 -070026#include "utils.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070027
Elliott Hughes8daa0922011-09-11 13:46:25 -070028namespace art {
29
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -080030ThreadList::ThreadList()
Elliott Hughese52e49b2012-04-02 16:05:44 -070031 : allocated_ids_lock_("allocated thread ids lock"),
Ian Rogers00f7d0e2012-07-19 15:28:27 -070032 suspend_all_count_(0), debug_suspend_all_count_(0),
Ian Rogersc604d732012-10-14 16:09:54 -070033 thread_exit_cond_("thread exit condition variable", *Locks::thread_list_lock_) {
Elliott Hughes8daa0922011-09-11 13:46:25 -070034}
35
36ThreadList::~ThreadList() {
Elliott Hughese52e49b2012-04-02 16:05:44 -070037 // Detach the current thread if necessary. If we failed to start, there might not be any threads.
Elliott Hughes6a144332012-04-03 13:07:11 -070038 // We need to detach the current thread here in case there's another thread waiting to join with
39 // us.
Elliott Hughes8daa0922011-09-11 13:46:25 -070040 if (Contains(Thread::Current())) {
41 Runtime::Current()->DetachCurrentThread();
42 }
Elliott Hughes6a144332012-04-03 13:07:11 -070043
44 WaitForOtherNonDaemonThreadsToExit();
Ian Rogers00f7d0e2012-07-19 15:28:27 -070045 // TODO: there's an unaddressed race here where a thread may attach during shutdown, see
46 // Thread::Init.
Elliott Hughes6a144332012-04-03 13:07:11 -070047 SuspendAllDaemonThreads();
Elliott Hughes8daa0922011-09-11 13:46:25 -070048}
49
50bool ThreadList::Contains(Thread* thread) {
51 return find(list_.begin(), list_.end(), thread) != list_.end();
52}
53
Elliott Hughesabbe07d2012-06-05 17:42:23 -070054bool ThreadList::Contains(pid_t tid) {
55 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
56 if ((*it)->tid_ == tid) {
57 return true;
58 }
59 }
60 return false;
61}
62
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -070063pid_t ThreadList::GetLockOwner() {
Ian Rogersb726dcb2012-09-05 08:57:23 -070064 return Locks::thread_list_lock_->GetExclusiveOwnerTid();
Elliott Hughesaccd83d2011-10-17 14:25:58 -070065}
66
Elliott Hughesc967f782012-04-16 10:23:15 -070067void ThreadList::DumpForSigQuit(std::ostream& os) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070068 {
Ian Rogers50b35e22012-10-04 10:09:15 -070069 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070070 DumpLocked(os);
71 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -070072 DumpUnattachedThreads(os);
73}
74
75static void DumpUnattachedThread(std::ostream& os, pid_t tid) {
76 Thread::DumpState(os, NULL, tid);
77 DumpKernelStack(os, tid, " kernel: ", false);
Brian Carlstromed8b7232012-06-27 17:54:47 -070078 // TODO: Reenable this when the native code in system_server can handle it.
79 // Currently "adb shell kill -3 `pid system_server`" will cause it to exit.
80 if (false) {
81 DumpNativeStack(os, tid, " native: ", false);
82 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -070083 os << "\n";
84}
85
86void ThreadList::DumpUnattachedThreads(std::ostream& os) {
87 DIR* d = opendir("/proc/self/task");
88 if (!d) {
89 return;
90 }
91
Ian Rogers50b35e22012-10-04 10:09:15 -070092 Thread* self = Thread::Current();
Elliott Hughes4696b5b2012-10-30 10:35:10 -070093 dirent* e;
94 while ((e = readdir(d)) != NULL) {
Elliott Hughesabbe07d2012-06-05 17:42:23 -070095 char* end;
Elliott Hughes4696b5b2012-10-30 10:35:10 -070096 pid_t tid = strtol(e->d_name, &end, 10);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070097 if (!*end) {
98 bool contains;
99 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700100 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700101 contains = Contains(tid);
102 }
103 if (!contains) {
104 DumpUnattachedThread(os, tid);
105 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700106 }
107 }
108 closedir(d);
Elliott Hughesff738062012-02-03 15:00:42 -0800109}
110
111void ThreadList::DumpLocked(std::ostream& os) {
Elliott Hughes8daa0922011-09-11 13:46:25 -0700112 os << "DALVIK THREADS (" << list_.size() << "):\n";
Elliott Hughes8daa0922011-09-11 13:46:25 -0700113 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
114 (*it)->Dump(os);
115 os << "\n";
116 }
117}
118
Ian Rogers50b35e22012-10-04 10:09:15 -0700119void ThreadList::AssertThreadsAreSuspended(Thread* self, Thread* ignore1, Thread* ignore2) {
120 MutexLock mu(self, *Locks::thread_list_lock_);
121 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Elliott Hughes8d768a92011-09-14 16:35:25 -0700122 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
123 Thread* thread = *it;
jeffhao725a9572012-11-13 18:20:12 -0800124 if (thread != ignore1 && thread != ignore2) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700125 CHECK(thread->IsSuspended())
126 << "\nUnsuspended thread: <<" << *thread << "\n"
127 << "self: <<" << *Thread::Current();
128 }
Elliott Hughes8d768a92011-09-14 16:35:25 -0700129 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700130}
131
Ian Rogers66aee5c2012-08-15 17:17:47 -0700132#if HAVE_TIMED_RWLOCK
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700133// Attempt to rectify locks so that we dump thread list with required locks before exiting.
Ian Rogers81d425b2012-09-27 16:03:43 -0700134static void UnsafeLogFatalForThreadSuspendAllTimeout(Thread* self) NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700135 Runtime* runtime = Runtime::Current();
136 std::ostringstream ss;
137 ss << "Thread suspend timeout\n";
138 runtime->DumpLockHolders(ss);
139 ss << "\n";
Ian Rogers81d425b2012-09-27 16:03:43 -0700140 Locks::mutator_lock_->SharedTryLock(self);
141 if (!Locks::mutator_lock_->IsSharedHeld(self)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700142 LOG(WARNING) << "Dumping thread list without holding mutator_lock_";
143 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700144 Locks::thread_list_lock_->TryLock(self);
145 if (!Locks::thread_list_lock_->IsExclusiveHeld(self)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700146 LOG(WARNING) << "Dumping thread list without holding thread_list_lock_";
147 }
148 runtime->GetThreadList()->DumpLocked(ss);
149 LOG(FATAL) << ss.str();
150}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700151#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700152
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700153size_t ThreadList::RunCheckpoint(Closure* checkpoint_function) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700154 Thread* self = Thread::Current();
155 if (kIsDebugBuild) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800156 Locks::mutator_lock_->AssertNotExclusiveHeld(self);
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700157 Locks::thread_list_lock_->AssertNotHeld(self);
158 Locks::thread_suspend_count_lock_->AssertNotHeld(self);
159 CHECK_NE(self->GetState(), kRunnable);
160 }
161
162 std::vector<Thread*> suspended_count_modified_threads;
163 size_t count = 0;
164 {
165 // Call a checkpoint function for each thread, threads which are suspend get their checkpoint
166 // manually called.
167 MutexLock mu(self, *Locks::thread_list_lock_);
168 // TODO: C++0x auto.
169 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
170 Thread* thread = *it;
171 if (thread != self) {
172 for (;;) {
173 if (thread->RequestCheckpoint(checkpoint_function)) {
174 // This thread will run it's checkpoint some time in the near future.
175 count++;
176 break;
177 } else {
178 // We are probably suspended, try to make sure that we stay suspended.
179 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
180 // The thread switched back to runnable.
181 if (thread->GetState() == kRunnable) {
182 continue;
183 }
184 thread->ModifySuspendCount(self, +1, false);
185 suspended_count_modified_threads.push_back(thread);
186 break;
187 }
188 }
189 }
190 }
191 }
192
193 // Run the checkpoint on ourself while we wait for threads to suspend.
194 checkpoint_function->Run(self);
195
196 // Run the checkpoint on the suspended threads.
197 for (size_t i = 0; i < suspended_count_modified_threads.size(); ++i) {
198 Thread* thread = suspended_count_modified_threads[i];
199 if (!thread->IsSuspended()) {
200 // Wait until the thread is suspended.
201 uint64_t start = NanoTime();
202 do {
203 // Sleep for 100us.
204 usleep(100);
205 } while (!thread->IsSuspended());
206 uint64_t end = NanoTime();
207 // Shouldn't need to wait for longer than 1 millisecond.
208 const uint64_t threshold = 1;
209 if (NsToMs(end - start) > threshold) {
Brian Carlstrombcc29262012-11-02 11:36:03 -0700210 LOG(INFO) << "Warning: waited longer than " << threshold << " ms for thread suspend"
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700211 << std::endl;
212 }
213 }
214 // We know for sure that the thread is suspended at this point.
215 thread->RunCheckpointFunction();
216 {
217 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
218 thread->ModifySuspendCount(self, -1, false);
219 }
220 }
221
Mathieu Chartier664bebf2012-11-12 16:54:11 -0800222 {
223 // Imitate ResumeAll, threads may be waiting on Thread::resume_cond_ since we raised their
224 // suspend count. Now the suspend_count_ is lowered so we must do the broadcast.
225 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
226 Thread::resume_cond_->Broadcast(self);
227 }
228
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700229 // Add one for self.
230 return count + suspended_count_modified_threads.size() + 1;
231}
232
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700233void ThreadList::SuspendAll() {
234 Thread* self = Thread::Current();
235
236 VLOG(threads) << *self << " SuspendAll starting...";
237
238 if (kIsDebugBuild) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700239 Locks::mutator_lock_->AssertNotHeld(self);
240 Locks::thread_list_lock_->AssertNotHeld(self);
241 Locks::thread_suspend_count_lock_->AssertNotHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700242 CHECK_NE(self->GetState(), kRunnable);
243 }
244 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700245 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700246 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700247 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700248 // Update global suspend all state for attaching threads.
249 ++suspend_all_count_;
250 // Increment everybody's suspend count (except our own).
251 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
252 Thread* thread = *it;
253 if (thread == self) {
254 continue;
255 }
256 VLOG(threads) << "requesting thread suspend: " << *thread;
Ian Rogers01ae5802012-09-28 16:14:01 -0700257 thread->ModifySuspendCount(self, +1, false);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700258 }
259 }
260 }
261
Ian Rogers66aee5c2012-08-15 17:17:47 -0700262 // Block on the mutator lock until all Runnable threads release their share of access.
263#if HAVE_TIMED_RWLOCK
264 // Timeout if we wait more than 30 seconds.
Ian Rogersc604d732012-10-14 16:09:54 -0700265 if (UNLIKELY(!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0))) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700266 UnsafeLogFatalForThreadSuspendAllTimeout(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700267 }
Ian Rogers66aee5c2012-08-15 17:17:47 -0700268#else
Ian Rogers81d425b2012-09-27 16:03:43 -0700269 Locks::mutator_lock_->ExclusiveLock(self);
Ian Rogers66aee5c2012-08-15 17:17:47 -0700270#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700271
272 // Debug check that all threads are suspended.
Ian Rogers50b35e22012-10-04 10:09:15 -0700273 AssertThreadsAreSuspended(self, self);
Elliott Hughes8d768a92011-09-14 16:35:25 -0700274
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800275 VLOG(threads) << *self << " SuspendAll complete";
Elliott Hughes8d768a92011-09-14 16:35:25 -0700276}
277
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700278void ThreadList::ResumeAll() {
279 Thread* self = Thread::Current();
280
281 VLOG(threads) << *self << " ResumeAll starting";
Ian Rogers01ae5802012-09-28 16:14:01 -0700282
283 // Debug check that all threads are suspended.
Ian Rogers50b35e22012-10-04 10:09:15 -0700284 AssertThreadsAreSuspended(self, self);
Ian Rogers01ae5802012-09-28 16:14:01 -0700285
Ian Rogers81d425b2012-09-27 16:03:43 -0700286 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700287 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700288 MutexLock mu(self, *Locks::thread_list_lock_);
289 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700290 // Update global suspend all state for attaching threads.
291 --suspend_all_count_;
292 // Decrement the suspend counts for all threads.
293 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
294 Thread* thread = *it;
295 if (thread == self) {
296 continue;
297 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700298 thread->ModifySuspendCount(self, -1, false);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700299 }
300
301 // Broadcast a notification to all suspended threads, some or all of
302 // which may choose to wake up. No need to wait for them.
303 VLOG(threads) << *self << " ResumeAll waking others";
Ian Rogersc604d732012-10-14 16:09:54 -0700304 Thread::resume_cond_->Broadcast(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700305 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700306 VLOG(threads) << *self << " ResumeAll complete";
307}
308
309void ThreadList::Resume(Thread* thread, bool for_debugger) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700310 Thread* self = Thread::Current();
311 DCHECK_NE(thread, self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700312 VLOG(threads) << "Resume(" << *thread << ") starting..." << (for_debugger ? " (debugger)" : "");
Elliott Hughes01158d72011-09-19 19:47:10 -0700313
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700314 {
315 // To check Contains.
Ian Rogers81d425b2012-09-27 16:03:43 -0700316 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700317 // To check IsSuspended.
Ian Rogers81d425b2012-09-27 16:03:43 -0700318 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
319 DCHECK(thread->IsSuspended());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700320 if (!Contains(thread)) {
321 return;
322 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700323 thread->ModifySuspendCount(self, -1, for_debugger);
Elliott Hughes01158d72011-09-19 19:47:10 -0700324 }
325
326 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700327 VLOG(threads) << "Resume(" << *thread << ") waking others";
Ian Rogers81d425b2012-09-27 16:03:43 -0700328 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -0700329 Thread::resume_cond_->Broadcast(self);
Elliott Hughes01158d72011-09-19 19:47:10 -0700330 }
331
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700332 VLOG(threads) << "Resume(" << *thread << ") complete";
333}
Elliott Hughes01158d72011-09-19 19:47:10 -0700334
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700335void ThreadList::SuspendAllForDebugger() {
336 Thread* self = Thread::Current();
337 Thread* debug_thread = Dbg::GetDebugThread();
338
339 VLOG(threads) << *self << " SuspendAllForDebugger starting...";
340
341 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700342 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700343 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700344 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700345 // Update global suspend all state for attaching threads.
346 ++suspend_all_count_;
347 ++debug_suspend_all_count_;
348 // Increment everybody's suspend count (except our own).
349 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
350 Thread* thread = *it;
351 if (thread == self || thread == debug_thread) {
352 continue;
353 }
354 VLOG(threads) << "requesting thread suspend: " << *thread;
Ian Rogers01ae5802012-09-28 16:14:01 -0700355 thread->ModifySuspendCount(self, +1, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700356 }
357 }
358 }
359
Ian Rogers66aee5c2012-08-15 17:17:47 -0700360 // Block on the mutator lock until all Runnable threads release their share of access then
361 // immediately unlock again.
362#if HAVE_TIMED_RWLOCK
363 // Timeout if we wait more than 30 seconds.
Ian Rogersc604d732012-10-14 16:09:54 -0700364 if (!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700365 UnsafeLogFatalForThreadSuspendAllTimeout(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700366 } else {
Ian Rogers81d425b2012-09-27 16:03:43 -0700367 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700368 }
Ian Rogers66aee5c2012-08-15 17:17:47 -0700369#else
Ian Rogers81d425b2012-09-27 16:03:43 -0700370 Locks::mutator_lock_->ExclusiveLock(self);
371 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers66aee5c2012-08-15 17:17:47 -0700372#endif
Ian Rogers50b35e22012-10-04 10:09:15 -0700373 AssertThreadsAreSuspended(self, self, debug_thread);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700374
375 VLOG(threads) << *self << " SuspendAll complete";
Elliott Hughes01158d72011-09-19 19:47:10 -0700376}
377
Elliott Hughes475fc232011-10-25 15:00:35 -0700378void ThreadList::SuspendSelfForDebugger() {
379 Thread* self = Thread::Current();
Elliott Hughes01158d72011-09-19 19:47:10 -0700380
Elliott Hughes475fc232011-10-25 15:00:35 -0700381 // The debugger thread must not suspend itself due to debugger activity!
382 Thread* debug_thread = Dbg::GetDebugThread();
383 CHECK(debug_thread != NULL);
384 CHECK(self != debug_thread);
385
386 // Collisions with other suspends aren't really interesting. We want
387 // to ensure that we're the only one fiddling with the suspend count
388 // though.
Ian Rogers81d425b2012-09-27 16:03:43 -0700389 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogers01ae5802012-09-28 16:14:01 -0700390 self->ModifySuspendCount(self, +1, true);
Elliott Hughes475fc232011-10-25 15:00:35 -0700391
392 // Suspend ourselves.
393 CHECK_GT(self->suspend_count_, 0);
Elliott Hughes34e06962012-04-09 13:55:55 -0700394 self->SetState(kSuspended);
Elliott Hughes1f729aa2012-03-02 13:55:41 -0800395 VLOG(threads) << *self << " self-suspending (debugger)";
Elliott Hughes475fc232011-10-25 15:00:35 -0700396
397 // Tell JDWP that we've completed suspension. The JDWP thread can't
398 // tell us to resume before we're fully asleep because we hold the
399 // suspend count lock.
400 Dbg::ClearWaitForEventThread();
401
402 while (self->suspend_count_ != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700403 Thread::resume_cond_->Wait(self);
Elliott Hughes475fc232011-10-25 15:00:35 -0700404 if (self->suspend_count_ != 0) {
405 // The condition was signaled but we're still suspended. This
406 // can happen if the debugger lets go while a SIGQUIT thread
407 // dump event is pending (assuming SignalCatcher was resumed for
408 // just long enough to try to grab the thread-suspend lock).
409 LOG(DEBUG) << *self << " still suspended after undo "
410 << "(suspend count=" << self->suspend_count_ << ")";
411 }
412 }
413 CHECK_EQ(self->suspend_count_, 0);
Elliott Hughes34e06962012-04-09 13:55:55 -0700414 self->SetState(kRunnable);
Elliott Hughes1f729aa2012-03-02 13:55:41 -0800415 VLOG(threads) << *self << " self-reviving (debugger)";
Elliott Hughes475fc232011-10-25 15:00:35 -0700416}
417
Elliott Hughes234ab152011-10-26 14:02:26 -0700418void ThreadList::UndoDebuggerSuspensions() {
419 Thread* self = Thread::Current();
420
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800421 VLOG(threads) << *self << " UndoDebuggerSuspensions starting";
Elliott Hughes234ab152011-10-26 14:02:26 -0700422
423 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700424 MutexLock mu(self, *Locks::thread_list_lock_);
425 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700426 // Update global suspend all state for attaching threads.
427 suspend_all_count_ -= debug_suspend_all_count_;
428 debug_suspend_all_count_ = 0;
429 // Update running threads.
Elliott Hughes234ab152011-10-26 14:02:26 -0700430 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
431 Thread* thread = *it;
432 if (thread == self || thread->debug_suspend_count_ == 0) {
433 continue;
434 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700435 thread->ModifySuspendCount(self, -thread->debug_suspend_count_, true);
Elliott Hughes234ab152011-10-26 14:02:26 -0700436 }
437 }
438
439 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700440 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -0700441 Thread::resume_cond_->Broadcast(self);
Elliott Hughes234ab152011-10-26 14:02:26 -0700442 }
443
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800444 VLOG(threads) << "UndoDebuggerSuspensions(" << *self << ") complete";
Elliott Hughes234ab152011-10-26 14:02:26 -0700445}
446
Elliott Hughese52e49b2012-04-02 16:05:44 -0700447void ThreadList::WaitForOtherNonDaemonThreadsToExit() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700448 Thread* self = Thread::Current();
449 Locks::mutator_lock_->AssertNotHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700450 bool all_threads_are_daemons;
451 do {
Ian Rogers120f1c72012-09-28 17:17:10 -0700452 {
453 // No more threads can be born after we start to shutdown.
454 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
455 CHECK(Runtime::Current()->IsShuttingDown());
456 CHECK_EQ(Runtime::Current()->NumberOfThreadsBeingBorn(), 0U);
457 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700458 all_threads_are_daemons = true;
Ian Rogers120f1c72012-09-28 17:17:10 -0700459 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700460 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
461 // TODO: there's a race here with thread exit that's being worked around by checking if the
462 // thread has a peer.
463 Thread* thread = *it;
Ian Rogers81d425b2012-09-27 16:03:43 -0700464 if (thread != self && thread->HasPeer() && !thread->IsDaemon()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700465 all_threads_are_daemons = false;
466 break;
467 }
468 }
469 if (!all_threads_are_daemons) {
470 // Wait for another thread to exit before re-checking.
Ian Rogersc604d732012-10-14 16:09:54 -0700471 thread_exit_cond_.Wait(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700472 }
473 } while(!all_threads_are_daemons);
Elliott Hughes038a8062011-09-18 14:12:41 -0700474}
475
476void ThreadList::SuspendAllDaemonThreads() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700477 Thread* self = Thread::Current();
478 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700479 { // Tell all the daemons it's time to suspend.
Ian Rogers81d425b2012-09-27 16:03:43 -0700480 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Elliott Hughes038a8062011-09-18 14:12:41 -0700481 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
482 Thread* thread = *it;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700483 // This is only run after all non-daemon threads have exited, so the remainder should all be
484 // daemons.
Ian Rogers7e762862012-10-22 15:45:08 -0700485 CHECK(thread->IsDaemon()) << *thread;
Ian Rogers81d425b2012-09-27 16:03:43 -0700486 if (thread != self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700487 thread->ModifySuspendCount(self, +1, false);
Elliott Hughese52e49b2012-04-02 16:05:44 -0700488 }
Elliott Hughes038a8062011-09-18 14:12:41 -0700489 }
490 }
Elliott Hughes038a8062011-09-18 14:12:41 -0700491 // Give the threads a chance to suspend, complaining if they're slow.
492 bool have_complained = false;
493 for (int i = 0; i < 10; ++i) {
494 usleep(200 * 1000);
495 bool all_suspended = true;
496 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
497 Thread* thread = *it;
Ian Rogers81d425b2012-09-27 16:03:43 -0700498 if (thread != self && thread->GetState() == kRunnable) {
Elliott Hughes038a8062011-09-18 14:12:41 -0700499 if (!have_complained) {
500 LOG(WARNING) << "daemon thread not yet suspended: " << *thread;
501 have_complained = true;
502 }
503 all_suspended = false;
504 }
505 }
506 if (all_suspended) {
507 return;
508 }
509 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700510 LOG(ERROR) << "suspend all daemons failed";
511}
512void ThreadList::Register(Thread* self) {
513 DCHECK_EQ(self, Thread::Current());
514
515 if (VLOG_IS_ON(threads)) {
516 std::ostringstream oss;
517 self->ShortDump(oss); // We don't hold the mutator_lock_ yet and so cannot call Dump.
518 LOG(INFO) << "ThreadList::Register() " << *self << "\n" << oss;
519 }
520
521 // Atomically add self to the thread list and make its thread_suspend_count_ reflect ongoing
522 // SuspendAll requests.
Ian Rogers81d425b2012-09-27 16:03:43 -0700523 MutexLock mu(self, *Locks::thread_list_lock_);
524 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700525 self->suspend_count_ = suspend_all_count_;
526 self->debug_suspend_count_ = debug_suspend_all_count_;
Ian Rogers01ae5802012-09-28 16:14:01 -0700527 if (self->suspend_count_ > 0) {
528 self->AtomicSetFlag(kSuspendRequest);
529 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700530 CHECK(!Contains(self));
531 list_.push_back(self);
532}
533
534void ThreadList::Unregister(Thread* self) {
535 DCHECK_EQ(self, Thread::Current());
536
537 VLOG(threads) << "ThreadList::Unregister() " << *self;
538
539 // Any time-consuming destruction, plus anything that can call back into managed code or
540 // suspend and so on, must happen at this point, and not in ~Thread.
541 self->Destroy();
542
543 {
544 // Remove this thread from the list.
Ian Rogers81d425b2012-09-27 16:03:43 -0700545 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700546 CHECK(Contains(self));
547 list_.remove(self);
548 }
549
550 // Delete the Thread* and release the thin lock id.
551 uint32_t thin_lock_id = self->thin_lock_id_;
552 ReleaseThreadId(thin_lock_id);
553 delete self;
554
555 // Clear the TLS data, so that the underlying native thread is recognizably detached.
556 // (It may wish to reattach later.)
557 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, NULL), "detach self");
558
559 // Signal that a thread just detached.
Ian Rogers81d425b2012-09-27 16:03:43 -0700560 MutexLock mu(NULL, *Locks::thread_list_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -0700561 thread_exit_cond_.Signal(NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700562}
563
564void ThreadList::ForEach(void (*callback)(Thread*, void*), void* context) {
565 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
566 callback(*it, context);
567 }
568}
569
570void ThreadList::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
Ian Rogers81d425b2012-09-27 16:03:43 -0700571 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700572 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
573 (*it)->VisitRoots(visitor, arg);
574 }
Elliott Hughes038a8062011-09-18 14:12:41 -0700575}
576
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700577void ThreadList::VerifyRoots(Heap::VerifyRootVisitor* visitor, void* arg) const {
578 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
579 for (It it = list_.begin(), end = list_.end(); it != end; ++it) {
580 (*it)->VerifyRoots(visitor, arg);
581 }
582}
583
Elliott Hughes8daa0922011-09-11 13:46:25 -0700584uint32_t ThreadList::AllocThreadId() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700585 MutexLock mu(Thread::Current(), allocated_ids_lock_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700586 for (size_t i = 0; i < allocated_ids_.size(); ++i) {
587 if (!allocated_ids_[i]) {
588 allocated_ids_.set(i);
589 return i + 1; // Zero is reserved to mean "invalid".
590 }
591 }
592 LOG(FATAL) << "Out of internal thread ids";
593 return 0;
594}
595
596void ThreadList::ReleaseThreadId(uint32_t id) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700597 MutexLock mu(Thread::Current(), allocated_ids_lock_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700598 --id; // Zero is reserved to mean "invalid".
599 DCHECK(allocated_ids_[id]) << id;
600 allocated_ids_.reset(id);
601}
602
603} // namespace art