blob: d311945180092ea2742e1857863375248d884197 [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>
Ian Rogersd9c4fc92013-10-01 19:45:43 -070020#include <ScopedLocalRef.h>
21#include <ScopedUtfChars.h>
Elliott Hughesabbe07d2012-06-05 17:42:23 -070022#include <sys/types.h>
Elliott Hughes038a8062011-09-18 14:12:41 -070023#include <unistd.h>
24
Elliott Hughes76b61672012-12-12 17:47:30 -080025#include "base/mutex.h"
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -070026#include "base/mutex-inl.h"
Sameer Abu Asala8439542013-02-14 16:06:42 -080027#include "base/timing_logger.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070028#include "debugger.h"
Ian Rogersd9c4fc92013-10-01 19:45:43 -070029#include "jni_internal.h"
30#include "lock_word.h"
31#include "monitor.h"
32#include "scoped_thread_state_change.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080033#include "thread.h"
Elliott Hughesabbe07d2012-06-05 17:42:23 -070034#include "utils.h"
Ian Rogersd9c4fc92013-10-01 19:45:43 -070035#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070036
Elliott Hughes8daa0922011-09-11 13:46:25 -070037namespace art {
38
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -080039ThreadList::ThreadList()
Elliott Hughese52e49b2012-04-02 16:05:44 -070040 : allocated_ids_lock_("allocated thread ids lock"),
Ian Rogers00f7d0e2012-07-19 15:28:27 -070041 suspend_all_count_(0), debug_suspend_all_count_(0),
Ian Rogersc604d732012-10-14 16:09:54 -070042 thread_exit_cond_("thread exit condition variable", *Locks::thread_list_lock_) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -070043 CHECK(Monitor::IsValidLockWord(LockWord::FromThinLockId(kMaxThreadId, 1)));
Elliott Hughes8daa0922011-09-11 13:46:25 -070044}
45
46ThreadList::~ThreadList() {
Elliott Hughese52e49b2012-04-02 16:05:44 -070047 // Detach the current thread if necessary. If we failed to start, there might not be any threads.
Elliott Hughes6a144332012-04-03 13:07:11 -070048 // We need to detach the current thread here in case there's another thread waiting to join with
49 // us.
Elliott Hughes8daa0922011-09-11 13:46:25 -070050 if (Contains(Thread::Current())) {
51 Runtime::Current()->DetachCurrentThread();
52 }
Elliott Hughes6a144332012-04-03 13:07:11 -070053
54 WaitForOtherNonDaemonThreadsToExit();
Ian Rogers00f7d0e2012-07-19 15:28:27 -070055 // TODO: there's an unaddressed race here where a thread may attach during shutdown, see
56 // Thread::Init.
Elliott Hughes6a144332012-04-03 13:07:11 -070057 SuspendAllDaemonThreads();
Elliott Hughes8daa0922011-09-11 13:46:25 -070058}
59
60bool ThreadList::Contains(Thread* thread) {
61 return find(list_.begin(), list_.end(), thread) != list_.end();
62}
63
Elliott Hughesabbe07d2012-06-05 17:42:23 -070064bool ThreadList::Contains(pid_t tid) {
Mathieu Chartier02e25112013-08-14 16:14:24 -070065 for (const auto& thread : list_) {
66 if (thread->tid_ == tid) {
Elliott Hughesabbe07d2012-06-05 17:42:23 -070067 return true;
68 }
69 }
70 return false;
71}
72
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -070073pid_t ThreadList::GetLockOwner() {
Ian Rogersb726dcb2012-09-05 08:57:23 -070074 return Locks::thread_list_lock_->GetExclusiveOwnerTid();
Elliott Hughesaccd83d2011-10-17 14:25:58 -070075}
76
Mathieu Chartier590fee92013-09-13 13:46:47 -070077void ThreadList::DumpNativeStacks(std::ostream& os) {
78 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
79 for (const auto& thread : list_) {
80 os << "DUMPING THREAD " << thread->tid_ << "\n";
81 DumpNativeStack(os, thread->tid_, "\t", true);
82 os << "\n";
83 }
84}
85
Elliott Hughesc967f782012-04-16 10:23:15 -070086void ThreadList::DumpForSigQuit(std::ostream& os) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070087 {
Ian Rogers50b35e22012-10-04 10:09:15 -070088 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070089 DumpLocked(os);
90 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -070091 DumpUnattachedThreads(os);
92}
93
Ian Rogerscfaa4552012-11-26 21:00:08 -080094static void DumpUnattachedThread(std::ostream& os, pid_t tid) NO_THREAD_SAFETY_ANALYSIS {
95 // TODO: No thread safety analysis as DumpState with a NULL thread won't access fields, should
96 // refactor DumpState to avoid skipping analysis.
Elliott Hughesabbe07d2012-06-05 17:42:23 -070097 Thread::DumpState(os, NULL, tid);
98 DumpKernelStack(os, tid, " kernel: ", false);
Brian Carlstromed8b7232012-06-27 17:54:47 -070099 // TODO: Reenable this when the native code in system_server can handle it.
100 // Currently "adb shell kill -3 `pid system_server`" will cause it to exit.
101 if (false) {
102 DumpNativeStack(os, tid, " native: ", false);
103 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700104 os << "\n";
105}
106
107void ThreadList::DumpUnattachedThreads(std::ostream& os) {
108 DIR* d = opendir("/proc/self/task");
109 if (!d) {
110 return;
111 }
112
Ian Rogers50b35e22012-10-04 10:09:15 -0700113 Thread* self = Thread::Current();
Elliott Hughes4696b5b2012-10-30 10:35:10 -0700114 dirent* e;
115 while ((e = readdir(d)) != NULL) {
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700116 char* end;
Elliott Hughes4696b5b2012-10-30 10:35:10 -0700117 pid_t tid = strtol(e->d_name, &end, 10);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700118 if (!*end) {
119 bool contains;
120 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700121 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700122 contains = Contains(tid);
123 }
124 if (!contains) {
125 DumpUnattachedThread(os, tid);
126 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700127 }
128 }
129 closedir(d);
Elliott Hughesff738062012-02-03 15:00:42 -0800130}
131
132void ThreadList::DumpLocked(std::ostream& os) {
Elliott Hughes8daa0922011-09-11 13:46:25 -0700133 os << "DALVIK THREADS (" << list_.size() << "):\n";
Mathieu Chartier02e25112013-08-14 16:14:24 -0700134 for (const auto& thread : list_) {
135 thread->Dump(os);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700136 os << "\n";
137 }
138}
139
Ian Rogers50b35e22012-10-04 10:09:15 -0700140void ThreadList::AssertThreadsAreSuspended(Thread* self, Thread* ignore1, Thread* ignore2) {
141 MutexLock mu(self, *Locks::thread_list_lock_);
142 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700143 for (const auto& thread : list_) {
jeffhao725a9572012-11-13 18:20:12 -0800144 if (thread != ignore1 && thread != ignore2) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700145 CHECK(thread->IsSuspended())
146 << "\nUnsuspended thread: <<" << *thread << "\n"
147 << "self: <<" << *Thread::Current();
148 }
Elliott Hughes8d768a92011-09-14 16:35:25 -0700149 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700150}
151
Ian Rogers66aee5c2012-08-15 17:17:47 -0700152#if HAVE_TIMED_RWLOCK
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700153// Attempt to rectify locks so that we dump thread list with required locks before exiting.
Ian Rogers81d425b2012-09-27 16:03:43 -0700154static void UnsafeLogFatalForThreadSuspendAllTimeout(Thread* self) NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700155 Runtime* runtime = Runtime::Current();
156 std::ostringstream ss;
157 ss << "Thread suspend timeout\n";
158 runtime->DumpLockHolders(ss);
159 ss << "\n";
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700160 runtime->GetThreadList()->DumpLocked(ss);
161 LOG(FATAL) << ss.str();
162}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700163#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700164
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800165// Unlike suspending all threads where we can wait to acquire the mutator_lock_, suspending an
166// individual thread requires polling. delay_us is the requested sleep and total_delay_us
167// accumulates the total time spent sleeping for timeouts. The first sleep is just a yield,
168// subsequently sleeps increase delay_us from 1ms to 500ms by doubling.
169static void ThreadSuspendSleep(Thread* self, useconds_t* delay_us, useconds_t* total_delay_us,
170 bool holding_locks) {
171 if (!holding_locks) {
172 for (int i = kLockLevelCount - 1; i >= 0; --i) {
173 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
174 if (held_mutex != NULL) {
175 LOG(FATAL) << "Holding " << held_mutex->GetName() << " while sleeping for thread suspension";
176 }
177 }
178 }
179 useconds_t new_delay_us = (*delay_us) * 2;
180 CHECK_GE(new_delay_us, *delay_us);
181 if (new_delay_us < 500000) { // Don't allow sleeping to be more than 0.5s.
182 *delay_us = new_delay_us;
183 }
184 if (*delay_us == 0) {
185 sched_yield();
186 // Default to 1 milliseconds (note that this gets multiplied by 2 before the first sleep).
187 *delay_us = 500;
188 } else {
189 usleep(*delay_us);
190 *total_delay_us += *delay_us;
191 }
192}
193
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700194size_t ThreadList::RunCheckpoint(Closure* checkpoint_function) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700195 Thread* self = Thread::Current();
196 if (kIsDebugBuild) {
Mathieu Chartier2b82db42012-11-14 17:29:05 -0800197 Locks::mutator_lock_->AssertNotExclusiveHeld(self);
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700198 Locks::thread_list_lock_->AssertNotHeld(self);
199 Locks::thread_suspend_count_lock_->AssertNotHeld(self);
200 CHECK_NE(self->GetState(), kRunnable);
201 }
202
203 std::vector<Thread*> suspended_count_modified_threads;
204 size_t count = 0;
205 {
206 // Call a checkpoint function for each thread, threads which are suspend get their checkpoint
207 // manually called.
208 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700209 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700210 for (const auto& thread : list_) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700211 if (thread != self) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700212 while (true) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700213 if (thread->RequestCheckpoint(checkpoint_function)) {
Dave Allison0aded082013-11-07 13:15:11 -0800214 // This thread will run its checkpoint some time in the near future.
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700215 count++;
216 break;
217 } else {
218 // We are probably suspended, try to make sure that we stay suspended.
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700219 // The thread switched back to runnable.
220 if (thread->GetState() == kRunnable) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700221 // Spurious fail, try again.
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700222 continue;
223 }
224 thread->ModifySuspendCount(self, +1, false);
225 suspended_count_modified_threads.push_back(thread);
226 break;
227 }
228 }
229 }
230 }
231 }
232
233 // Run the checkpoint on ourself while we wait for threads to suspend.
234 checkpoint_function->Run(self);
235
236 // Run the checkpoint on the suspended threads.
Mathieu Chartier02e25112013-08-14 16:14:24 -0700237 for (const auto& thread : suspended_count_modified_threads) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700238 if (!thread->IsSuspended()) {
239 // Wait until the thread is suspended.
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800240 useconds_t total_delay_us = 0;
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700241 do {
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800242 useconds_t delay_us = 100;
243 ThreadSuspendSleep(self, &delay_us, &total_delay_us, true);
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700244 } while (!thread->IsSuspended());
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800245 // Shouldn't need to wait for longer than 1000 microseconds.
246 constexpr useconds_t kLongWaitThresholdUS = 1000;
247 if (UNLIKELY(total_delay_us > kLongWaitThresholdUS)) {
248 LOG(WARNING) << "Waited " << total_delay_us << " us for thread suspend!";
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700249 }
250 }
251 // We know for sure that the thread is suspended at this point.
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700252 checkpoint_function->Run(thread);
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700253 {
254 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
255 thread->ModifySuspendCount(self, -1, false);
256 }
257 }
258
Mathieu Chartier664bebf2012-11-12 16:54:11 -0800259 {
260 // Imitate ResumeAll, threads may be waiting on Thread::resume_cond_ since we raised their
261 // suspend count. Now the suspend_count_ is lowered so we must do the broadcast.
262 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
263 Thread::resume_cond_->Broadcast(self);
264 }
265
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700266 // Add one for self.
267 return count + suspended_count_modified_threads.size() + 1;
268}
269
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700270void ThreadList::SuspendAll() {
271 Thread* self = Thread::Current();
Brian Carlstrom6449c622014-02-10 23:48:36 -0800272 DCHECK(self != nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700273
274 VLOG(threads) << *self << " SuspendAll starting...";
275
276 if (kIsDebugBuild) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700277 Locks::mutator_lock_->AssertNotHeld(self);
278 Locks::thread_list_lock_->AssertNotHeld(self);
279 Locks::thread_suspend_count_lock_->AssertNotHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700280 CHECK_NE(self->GetState(), kRunnable);
281 }
282 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700283 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700284 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700285 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700286 // Update global suspend all state for attaching threads.
287 ++suspend_all_count_;
288 // Increment everybody's suspend count (except our own).
Mathieu Chartier02e25112013-08-14 16:14:24 -0700289 for (const auto& thread : list_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700290 if (thread == self) {
291 continue;
292 }
293 VLOG(threads) << "requesting thread suspend: " << *thread;
Ian Rogers01ae5802012-09-28 16:14:01 -0700294 thread->ModifySuspendCount(self, +1, false);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700295 }
296 }
297 }
298
Ian Rogers66aee5c2012-08-15 17:17:47 -0700299 // Block on the mutator lock until all Runnable threads release their share of access.
300#if HAVE_TIMED_RWLOCK
301 // Timeout if we wait more than 30 seconds.
Ian Rogersc604d732012-10-14 16:09:54 -0700302 if (UNLIKELY(!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0))) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700303 UnsafeLogFatalForThreadSuspendAllTimeout(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700304 }
Ian Rogers66aee5c2012-08-15 17:17:47 -0700305#else
Ian Rogers81d425b2012-09-27 16:03:43 -0700306 Locks::mutator_lock_->ExclusiveLock(self);
Ian Rogers66aee5c2012-08-15 17:17:47 -0700307#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700308
309 // Debug check that all threads are suspended.
Ian Rogers50b35e22012-10-04 10:09:15 -0700310 AssertThreadsAreSuspended(self, self);
Elliott Hughes8d768a92011-09-14 16:35:25 -0700311
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800312 VLOG(threads) << *self << " SuspendAll complete";
Elliott Hughes8d768a92011-09-14 16:35:25 -0700313}
314
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700315void ThreadList::ResumeAll() {
316 Thread* self = Thread::Current();
317
318 VLOG(threads) << *self << " ResumeAll starting";
Ian Rogers01ae5802012-09-28 16:14:01 -0700319
320 // Debug check that all threads are suspended.
Ian Rogers50b35e22012-10-04 10:09:15 -0700321 AssertThreadsAreSuspended(self, self);
Ian Rogers01ae5802012-09-28 16:14:01 -0700322
Ian Rogers81d425b2012-09-27 16:03:43 -0700323 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700324 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700325 MutexLock mu(self, *Locks::thread_list_lock_);
326 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700327 // Update global suspend all state for attaching threads.
328 --suspend_all_count_;
329 // Decrement the suspend counts for all threads.
Mathieu Chartier02e25112013-08-14 16:14:24 -0700330 for (const auto& thread : list_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700331 if (thread == self) {
332 continue;
333 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700334 thread->ModifySuspendCount(self, -1, false);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700335 }
336
337 // Broadcast a notification to all suspended threads, some or all of
338 // which may choose to wake up. No need to wait for them.
339 VLOG(threads) << *self << " ResumeAll waking others";
Ian Rogersc604d732012-10-14 16:09:54 -0700340 Thread::resume_cond_->Broadcast(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700341 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700342 VLOG(threads) << *self << " ResumeAll complete";
343}
344
345void ThreadList::Resume(Thread* thread, bool for_debugger) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700346 Thread* self = Thread::Current();
347 DCHECK_NE(thread, self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700348 VLOG(threads) << "Resume(" << *thread << ") starting..." << (for_debugger ? " (debugger)" : "");
Elliott Hughes01158d72011-09-19 19:47:10 -0700349
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700350 {
351 // To check Contains.
Ian Rogers81d425b2012-09-27 16:03:43 -0700352 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700353 // To check IsSuspended.
Ian Rogers81d425b2012-09-27 16:03:43 -0700354 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
355 DCHECK(thread->IsSuspended());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700356 if (!Contains(thread)) {
357 return;
358 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700359 thread->ModifySuspendCount(self, -1, for_debugger);
Elliott Hughes01158d72011-09-19 19:47:10 -0700360 }
361
362 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700363 VLOG(threads) << "Resume(" << *thread << ") waking others";
Ian Rogers81d425b2012-09-27 16:03:43 -0700364 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -0700365 Thread::resume_cond_->Broadcast(self);
Elliott Hughes01158d72011-09-19 19:47:10 -0700366 }
367
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700368 VLOG(threads) << "Resume(" << *thread << ") complete";
369}
Elliott Hughes01158d72011-09-19 19:47:10 -0700370
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700371static void ThreadSuspendByPeerWarning(Thread* self, int level, const char* message, jobject peer) {
372 JNIEnvExt* env = self->GetJniEnv();
373 ScopedLocalRef<jstring>
374 scoped_name_string(env, (jstring)env->GetObjectField(peer,
375 WellKnownClasses::java_lang_Thread_name));
376 ScopedUtfChars scoped_name_chars(env, scoped_name_string.get());
377 if (scoped_name_chars.c_str() == NULL) {
378 LOG(level) << message << ": " << peer;
379 env->ExceptionClear();
380 } else {
381 LOG(level) << message << ": " << peer << ":" << scoped_name_chars.c_str();
382 }
383}
384
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700385Thread* ThreadList::SuspendThreadByPeer(jobject peer, bool request_suspension,
386 bool debug_suspension, bool* timed_out) {
387 static const useconds_t kTimeoutUs = 30 * 1000000; // 30s.
388 useconds_t total_delay_us = 0;
389 useconds_t delay_us = 0;
390 bool did_suspend_request = false;
391 *timed_out = false;
392 Thread* self = Thread::Current();
393 while (true) {
394 Thread* thread;
395 {
396 ScopedObjectAccess soa(self);
397 MutexLock mu(self, *Locks::thread_list_lock_);
398 thread = Thread::FromManagedThread(soa, peer);
399 if (thread == NULL) {
400 ThreadSuspendByPeerWarning(self, WARNING, "No such thread for suspend", peer);
401 return NULL;
402 }
403 {
404 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
405 if (request_suspension) {
406 thread->ModifySuspendCount(self, +1, debug_suspension);
407 request_suspension = false;
408 did_suspend_request = true;
409 } else {
410 // If the caller isn't requesting suspension, a suspension should have already occurred.
411 CHECK_GT(thread->GetSuspendCount(), 0);
412 }
413 // IsSuspended on the current thread will fail as the current thread is changed into
414 // Runnable above. As the suspend count is now raised if this is the current thread
415 // it will self suspend on transition to Runnable, making it hard to work with. It's simpler
416 // to just explicitly handle the current thread in the callers to this code.
417 CHECK_NE(thread, self) << "Attempt to suspend the current thread for the debugger";
418 // If thread is suspended (perhaps it was already not Runnable but didn't have a suspend
419 // count, or else we've waited and it has self suspended) or is the current thread, we're
420 // done.
421 if (thread->IsSuspended()) {
422 return thread;
423 }
424 if (total_delay_us >= kTimeoutUs) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700425 ThreadSuspendByPeerWarning(self, FATAL, "Thread suspension timed out", peer);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700426 if (did_suspend_request) {
427 thread->ModifySuspendCount(soa.Self(), -1, debug_suspension);
428 }
429 *timed_out = true;
430 return NULL;
431 }
432 }
433 // Release locks and come out of runnable state.
434 }
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800435 ThreadSuspendSleep(self, &delay_us, &total_delay_us, false);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700436 }
437}
438
439static void ThreadSuspendByThreadIdWarning(int level, const char* message, uint32_t thread_id) {
440 LOG(level) << StringPrintf("%s: %d", message, thread_id);
441}
442
443Thread* ThreadList::SuspendThreadByThreadId(uint32_t thread_id, bool debug_suspension,
444 bool* timed_out) {
445 static const useconds_t kTimeoutUs = 30 * 1000000; // 30s.
446 useconds_t total_delay_us = 0;
447 useconds_t delay_us = 0;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700448 *timed_out = false;
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800449 Thread* suspended_thread = nullptr;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700450 Thread* self = Thread::Current();
451 CHECK_NE(thread_id, kInvalidThreadId);
452 while (true) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700453 {
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800454 Thread* thread = NULL;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700455 ScopedObjectAccess soa(self);
456 MutexLock mu(self, *Locks::thread_list_lock_);
457 for (const auto& it : list_) {
458 if (it->GetThreadId() == thread_id) {
459 thread = it;
460 break;
461 }
462 }
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800463 if (thread == nullptr) {
464 CHECK(suspended_thread == nullptr) << "Suspended thread " << suspended_thread
465 << " no longer in thread list";
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700466 // There's a race in inflating a lock and the owner giving up ownership and then dying.
467 ThreadSuspendByThreadIdWarning(WARNING, "No such thread id for suspend", thread_id);
468 return NULL;
469 }
470 {
471 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800472 if (suspended_thread == nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700473 thread->ModifySuspendCount(self, +1, debug_suspension);
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800474 suspended_thread = thread;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700475 } else {
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800476 CHECK_EQ(suspended_thread, thread);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700477 // If the caller isn't requesting suspension, a suspension should have already occurred.
478 CHECK_GT(thread->GetSuspendCount(), 0);
479 }
480 // IsSuspended on the current thread will fail as the current thread is changed into
481 // Runnable above. As the suspend count is now raised if this is the current thread
482 // it will self suspend on transition to Runnable, making it hard to work with. It's simpler
483 // to just explicitly handle the current thread in the callers to this code.
484 CHECK_NE(thread, self) << "Attempt to suspend the current thread for the debugger";
485 // If thread is suspended (perhaps it was already not Runnable but didn't have a suspend
486 // count, or else we've waited and it has self suspended) or is the current thread, we're
487 // done.
488 if (thread->IsSuspended()) {
489 return thread;
490 }
491 if (total_delay_us >= kTimeoutUs) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700492 ThreadSuspendByThreadIdWarning(WARNING, "Thread suspension timed out", thread_id);
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800493 if (suspended_thread != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700494 thread->ModifySuspendCount(soa.Self(), -1, debug_suspension);
495 }
496 *timed_out = true;
497 return NULL;
498 }
499 }
500 // Release locks and come out of runnable state.
501 }
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800502 ThreadSuspendSleep(self, &delay_us, &total_delay_us, false);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700503 }
504}
505
506Thread* ThreadList::FindThreadByThreadId(uint32_t thin_lock_id) {
507 Thread* self = Thread::Current();
508 MutexLock mu(self, *Locks::thread_list_lock_);
509 for (const auto& thread : list_) {
510 if (thread->GetThreadId() == thin_lock_id) {
511 CHECK(thread == self || thread->IsSuspended());
512 return thread;
513 }
514 }
515 return NULL;
516}
517
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700518void ThreadList::SuspendAllForDebugger() {
519 Thread* self = Thread::Current();
520 Thread* debug_thread = Dbg::GetDebugThread();
521
522 VLOG(threads) << *self << " SuspendAllForDebugger starting...";
523
524 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700525 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700526 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700527 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700528 // Update global suspend all state for attaching threads.
529 ++suspend_all_count_;
530 ++debug_suspend_all_count_;
531 // Increment everybody's suspend count (except our own).
Mathieu Chartier02e25112013-08-14 16:14:24 -0700532 for (const auto& thread : list_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700533 if (thread == self || thread == debug_thread) {
534 continue;
535 }
536 VLOG(threads) << "requesting thread suspend: " << *thread;
Ian Rogers01ae5802012-09-28 16:14:01 -0700537 thread->ModifySuspendCount(self, +1, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700538 }
539 }
540 }
541
Ian Rogers66aee5c2012-08-15 17:17:47 -0700542 // Block on the mutator lock until all Runnable threads release their share of access then
543 // immediately unlock again.
544#if HAVE_TIMED_RWLOCK
545 // Timeout if we wait more than 30 seconds.
Ian Rogersc604d732012-10-14 16:09:54 -0700546 if (!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700547 UnsafeLogFatalForThreadSuspendAllTimeout(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700548 } else {
Ian Rogers81d425b2012-09-27 16:03:43 -0700549 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700550 }
Ian Rogers66aee5c2012-08-15 17:17:47 -0700551#else
Ian Rogers81d425b2012-09-27 16:03:43 -0700552 Locks::mutator_lock_->ExclusiveLock(self);
553 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers66aee5c2012-08-15 17:17:47 -0700554#endif
Ian Rogers50b35e22012-10-04 10:09:15 -0700555 AssertThreadsAreSuspended(self, self, debug_thread);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700556
557 VLOG(threads) << *self << " SuspendAll complete";
Elliott Hughes01158d72011-09-19 19:47:10 -0700558}
559
Elliott Hughes475fc232011-10-25 15:00:35 -0700560void ThreadList::SuspendSelfForDebugger() {
561 Thread* self = Thread::Current();
Elliott Hughes01158d72011-09-19 19:47:10 -0700562
Elliott Hughes475fc232011-10-25 15:00:35 -0700563 // The debugger thread must not suspend itself due to debugger activity!
564 Thread* debug_thread = Dbg::GetDebugThread();
565 CHECK(debug_thread != NULL);
566 CHECK(self != debug_thread);
jeffhaoa77f0f62012-12-05 17:19:31 -0800567 CHECK_NE(self->GetState(), kRunnable);
568 Locks::mutator_lock_->AssertNotHeld(self);
Elliott Hughes475fc232011-10-25 15:00:35 -0700569
jeffhaoa77f0f62012-12-05 17:19:31 -0800570 {
571 // Collisions with other suspends aren't really interesting. We want
572 // to ensure that we're the only one fiddling with the suspend count
573 // though.
574 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
575 self->ModifySuspendCount(self, +1, true);
576 CHECK_GT(self->suspend_count_, 0);
577 }
Elliott Hughes475fc232011-10-25 15:00:35 -0700578
Elliott Hughes1f729aa2012-03-02 13:55:41 -0800579 VLOG(threads) << *self << " self-suspending (debugger)";
Elliott Hughes475fc232011-10-25 15:00:35 -0700580
Sebastien Hertz21e729c2014-02-18 14:16:00 +0100581 // Tell JDWP we've completed invocation and are ready to suspend.
582 DebugInvokeReq* pReq = self->GetInvokeReq();
583 DCHECK(pReq != NULL);
584 if (pReq->invoke_needed) {
585 // Clear this before signaling.
586 pReq->invoke_needed = false;
587
588 VLOG(jdwp) << "invoke complete, signaling";
589 MutexLock mu(self, pReq->lock);
590 pReq->cond.Signal(self);
591 }
592
Elliott Hughes475fc232011-10-25 15:00:35 -0700593 // Tell JDWP that we've completed suspension. The JDWP thread can't
594 // tell us to resume before we're fully asleep because we hold the
595 // suspend count lock.
596 Dbg::ClearWaitForEventThread();
597
jeffhaoa77f0f62012-12-05 17:19:31 -0800598 {
599 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
600 while (self->suspend_count_ != 0) {
601 Thread::resume_cond_->Wait(self);
602 if (self->suspend_count_ != 0) {
603 // The condition was signaled but we're still suspended. This
604 // can happen if the debugger lets go while a SIGQUIT thread
605 // dump event is pending (assuming SignalCatcher was resumed for
606 // just long enough to try to grab the thread-suspend lock).
607 LOG(DEBUG) << *self << " still suspended after undo "
608 << "(suspend count=" << self->suspend_count_ << ")";
609 }
Elliott Hughes475fc232011-10-25 15:00:35 -0700610 }
jeffhaoa77f0f62012-12-05 17:19:31 -0800611 CHECK_EQ(self->suspend_count_, 0);
Elliott Hughes475fc232011-10-25 15:00:35 -0700612 }
jeffhaoa77f0f62012-12-05 17:19:31 -0800613
Elliott Hughes1f729aa2012-03-02 13:55:41 -0800614 VLOG(threads) << *self << " self-reviving (debugger)";
Elliott Hughes475fc232011-10-25 15:00:35 -0700615}
616
Elliott Hughes234ab152011-10-26 14:02:26 -0700617void ThreadList::UndoDebuggerSuspensions() {
618 Thread* self = Thread::Current();
619
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800620 VLOG(threads) << *self << " UndoDebuggerSuspensions starting";
Elliott Hughes234ab152011-10-26 14:02:26 -0700621
622 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700623 MutexLock mu(self, *Locks::thread_list_lock_);
624 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700625 // Update global suspend all state for attaching threads.
626 suspend_all_count_ -= debug_suspend_all_count_;
627 debug_suspend_all_count_ = 0;
628 // Update running threads.
Mathieu Chartier02e25112013-08-14 16:14:24 -0700629 for (const auto& thread : list_) {
Elliott Hughes234ab152011-10-26 14:02:26 -0700630 if (thread == self || thread->debug_suspend_count_ == 0) {
631 continue;
632 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700633 thread->ModifySuspendCount(self, -thread->debug_suspend_count_, true);
Elliott Hughes234ab152011-10-26 14:02:26 -0700634 }
635 }
636
637 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700638 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -0700639 Thread::resume_cond_->Broadcast(self);
Elliott Hughes234ab152011-10-26 14:02:26 -0700640 }
641
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800642 VLOG(threads) << "UndoDebuggerSuspensions(" << *self << ") complete";
Elliott Hughes234ab152011-10-26 14:02:26 -0700643}
644
Elliott Hughese52e49b2012-04-02 16:05:44 -0700645void ThreadList::WaitForOtherNonDaemonThreadsToExit() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700646 Thread* self = Thread::Current();
647 Locks::mutator_lock_->AssertNotHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700648 bool all_threads_are_daemons;
649 do {
Ian Rogers120f1c72012-09-28 17:17:10 -0700650 {
651 // No more threads can be born after we start to shutdown.
652 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700653 CHECK(Runtime::Current()->IsShuttingDownLocked());
Ian Rogers120f1c72012-09-28 17:17:10 -0700654 CHECK_EQ(Runtime::Current()->NumberOfThreadsBeingBorn(), 0U);
655 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700656 all_threads_are_daemons = true;
Ian Rogers120f1c72012-09-28 17:17:10 -0700657 MutexLock mu(self, *Locks::thread_list_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700658 for (const auto& thread : list_) {
Anwar Ghuloum97543682013-06-14 12:58:16 -0700659 if (thread != self && !thread->IsDaemon()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700660 all_threads_are_daemons = false;
661 break;
662 }
663 }
664 if (!all_threads_are_daemons) {
665 // Wait for another thread to exit before re-checking.
Ian Rogersc604d732012-10-14 16:09:54 -0700666 thread_exit_cond_.Wait(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700667 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700668 } while (!all_threads_are_daemons);
Elliott Hughes038a8062011-09-18 14:12:41 -0700669}
670
671void ThreadList::SuspendAllDaemonThreads() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700672 Thread* self = Thread::Current();
673 MutexLock mu(self, *Locks::thread_list_lock_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700674 { // Tell all the daemons it's time to suspend.
Ian Rogers81d425b2012-09-27 16:03:43 -0700675 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700676 for (const auto& thread : list_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700677 // This is only run after all non-daemon threads have exited, so the remainder should all be
678 // daemons.
Ian Rogers7e762862012-10-22 15:45:08 -0700679 CHECK(thread->IsDaemon()) << *thread;
Ian Rogers81d425b2012-09-27 16:03:43 -0700680 if (thread != self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700681 thread->ModifySuspendCount(self, +1, false);
Elliott Hughese52e49b2012-04-02 16:05:44 -0700682 }
Elliott Hughes038a8062011-09-18 14:12:41 -0700683 }
684 }
Elliott Hughes038a8062011-09-18 14:12:41 -0700685 // Give the threads a chance to suspend, complaining if they're slow.
686 bool have_complained = false;
687 for (int i = 0; i < 10; ++i) {
688 usleep(200 * 1000);
689 bool all_suspended = true;
Mathieu Chartier02e25112013-08-14 16:14:24 -0700690 for (const auto& thread : list_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700691 if (thread != self && thread->GetState() == kRunnable) {
Elliott Hughes038a8062011-09-18 14:12:41 -0700692 if (!have_complained) {
693 LOG(WARNING) << "daemon thread not yet suspended: " << *thread;
694 have_complained = true;
695 }
696 all_suspended = false;
697 }
698 }
699 if (all_suspended) {
700 return;
701 }
702 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700703 LOG(ERROR) << "suspend all daemons failed";
704}
705void ThreadList::Register(Thread* self) {
706 DCHECK_EQ(self, Thread::Current());
707
708 if (VLOG_IS_ON(threads)) {
709 std::ostringstream oss;
710 self->ShortDump(oss); // We don't hold the mutator_lock_ yet and so cannot call Dump.
711 LOG(INFO) << "ThreadList::Register() " << *self << "\n" << oss;
712 }
713
714 // Atomically add self to the thread list and make its thread_suspend_count_ reflect ongoing
715 // SuspendAll requests.
Ian Rogers81d425b2012-09-27 16:03:43 -0700716 MutexLock mu(self, *Locks::thread_list_lock_);
717 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700718 self->suspend_count_ = suspend_all_count_;
719 self->debug_suspend_count_ = debug_suspend_all_count_;
Ian Rogers01ae5802012-09-28 16:14:01 -0700720 if (self->suspend_count_ > 0) {
721 self->AtomicSetFlag(kSuspendRequest);
722 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700723 CHECK(!Contains(self));
724 list_.push_back(self);
725}
726
727void ThreadList::Unregister(Thread* self) {
728 DCHECK_EQ(self, Thread::Current());
729
730 VLOG(threads) << "ThreadList::Unregister() " << *self;
731
732 // Any time-consuming destruction, plus anything that can call back into managed code or
733 // suspend and so on, must happen at this point, and not in ~Thread.
734 self->Destroy();
735
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700736 uint32_t thin_lock_id = self->thin_lock_thread_id_;
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800737 while (self != nullptr) {
Ian Rogerscfaa4552012-11-26 21:00:08 -0800738 // Remove and delete the Thread* while holding the thread_list_lock_ and
739 // thread_suspend_count_lock_ so that the unregistering thread cannot be suspended.
Ian Rogers0878d652013-04-18 17:38:35 -0700740 // Note: deliberately not using MutexLock that could hold a stale self pointer.
741 Locks::thread_list_lock_->ExclusiveLock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700742 CHECK(Contains(self));
Ian Rogerscfaa4552012-11-26 21:00:08 -0800743 // Note: we don't take the thread_suspend_count_lock_ here as to be suspending a thread other
744 // than yourself you need to hold the thread_list_lock_ (see Thread::ModifySuspendCount).
745 if (!self->IsSuspended()) {
746 list_.remove(self);
747 delete self;
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800748 self = nullptr;
Ian Rogerscfaa4552012-11-26 21:00:08 -0800749 }
Ian Rogers0878d652013-04-18 17:38:35 -0700750 Locks::thread_list_lock_->ExclusiveUnlock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700751 }
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800752 // Release the thread ID after the thread is finished and deleted to avoid cases where we can
753 // temporarily have multiple threads with the same thread id. When this occurs, it causes
754 // problems in FindThreadByThreadId / SuspendThreadByThreadId.
755 ReleaseThreadId(nullptr, thin_lock_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700756
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700757 // Clear the TLS data, so that the underlying native thread is recognizably detached.
758 // (It may wish to reattach later.)
759 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, NULL), "detach self");
760
761 // Signal that a thread just detached.
Ian Rogers81d425b2012-09-27 16:03:43 -0700762 MutexLock mu(NULL, *Locks::thread_list_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -0700763 thread_exit_cond_.Signal(NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700764}
765
766void ThreadList::ForEach(void (*callback)(Thread*, void*), void* context) {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700767 for (const auto& thread : list_) {
768 callback(thread, context);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700769 }
770}
771
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800772void ThreadList::VisitRoots(RootCallback* callback, void* arg) const {
Ian Rogers81d425b2012-09-27 16:03:43 -0700773 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700774 for (const auto& thread : list_) {
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800775 thread->VisitRoots(callback, arg);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700776 }
Elliott Hughes038a8062011-09-18 14:12:41 -0700777}
778
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800779class VerifyRootWrapperArg {
780 public:
781 VerifyRootWrapperArg(VerifyRootCallback* callback, void* arg) : callback_(callback), arg_(arg) {
782 }
783 VerifyRootCallback* const callback_;
784 void* const arg_;
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700785};
786
Mathieu Chartier815873e2014-02-13 18:02:13 -0800787static void VerifyRootWrapperCallback(mirror::Object** root, void* arg, uint32_t /*thread_id*/,
788 RootType /*root_type*/) {
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700789 VerifyRootWrapperArg* wrapperArg = reinterpret_cast<VerifyRootWrapperArg*>(arg);
Mathieu Chartier815873e2014-02-13 18:02:13 -0800790 wrapperArg->callback_(*root, wrapperArg->arg_, 0, NULL);
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700791}
792
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800793void ThreadList::VerifyRoots(VerifyRootCallback* callback, void* arg) const {
794 VerifyRootWrapperArg wrapper(callback, arg);
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700795 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700796 for (const auto& thread : list_) {
Mathieu Chartier423d2a32013-09-12 17:33:56 -0700797 thread->VisitRoots(VerifyRootWrapperCallback, &wrapper);
Mathieu Chartier6f1c9492012-10-15 12:08:41 -0700798 }
799}
800
Ian Rogerscfaa4552012-11-26 21:00:08 -0800801uint32_t ThreadList::AllocThreadId(Thread* self) {
802 MutexLock mu(self, allocated_ids_lock_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700803 for (size_t i = 0; i < allocated_ids_.size(); ++i) {
804 if (!allocated_ids_[i]) {
805 allocated_ids_.set(i);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700806 return i + 1; // Zero is reserved to mean "invalid".
Elliott Hughes8daa0922011-09-11 13:46:25 -0700807 }
808 }
809 LOG(FATAL) << "Out of internal thread ids";
810 return 0;
811}
812
Ian Rogerscfaa4552012-11-26 21:00:08 -0800813void ThreadList::ReleaseThreadId(Thread* self, uint32_t id) {
814 MutexLock mu(self, allocated_ids_lock_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700815 --id; // Zero is reserved to mean "invalid".
Elliott Hughes8daa0922011-09-11 13:46:25 -0700816 DCHECK(allocated_ids_[id]) << id;
817 allocated_ids_.reset(id);
818}
819
Elliott Hughes8daa0922011-09-11 13:46:25 -0700820} // namespace art