blob: ef24efcd94aef463e451458b78f580a97cb8f5f4 [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
Mathieu Chartier6f365cc2014-04-23 12:42:27 -070019#define ATRACE_TAG ATRACE_TAG_DALVIK
20
21#include <cutils/trace.h>
Elliott Hughesabbe07d2012-06-05 17:42:23 -070022#include <dirent.h>
Ian Rogersd9c4fc92013-10-01 19:45:43 -070023#include <ScopedLocalRef.h>
24#include <ScopedUtfChars.h>
Elliott Hughesabbe07d2012-06-05 17:42:23 -070025#include <sys/types.h>
Elliott Hughes038a8062011-09-18 14:12:41 -070026#include <unistd.h>
27
Ian Rogersc7dd2952014-10-21 23:31:19 -070028#include <sstream>
29
Mathieu Chartier70a596d2014-12-17 14:56:47 -080030#include "base/histogram-inl.h"
Elliott Hughes76b61672012-12-12 17:47:30 -080031#include "base/mutex.h"
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -070032#include "base/mutex-inl.h"
Sameer Abu Asala8439542013-02-14 16:06:42 -080033#include "base/timing_logger.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070034#include "debugger.h"
Ian Rogersd9c4fc92013-10-01 19:45:43 -070035#include "jni_internal.h"
36#include "lock_word.h"
37#include "monitor.h"
38#include "scoped_thread_state_change.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039#include "thread.h"
Jeff Haoe094b872014-10-14 13:12:01 -070040#include "trace.h"
Elliott Hughesabbe07d2012-06-05 17:42:23 -070041#include "utils.h"
Ian Rogersd9c4fc92013-10-01 19:45:43 -070042#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070043
Elliott Hughes8daa0922011-09-11 13:46:25 -070044namespace art {
45
Mathieu Chartier251755c2014-07-15 18:10:25 -070046static constexpr uint64_t kLongThreadSuspendThreshold = MsToNs(5);
47
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -080048ThreadList::ThreadList()
Chao-ying Fu9e369312014-05-21 11:20:52 -070049 : suspend_all_count_(0), debug_suspend_all_count_(0),
Mathieu Chartier70a596d2014-12-17 14:56:47 -080050 thread_exit_cond_("thread exit condition variable", *Locks::thread_list_lock_),
51 suspend_all_historam_("suspend all histogram", 16, 64) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -070052 CHECK(Monitor::IsValidLockWord(LockWord::FromThinLockId(kMaxThreadId, 1)));
Elliott Hughes8daa0922011-09-11 13:46:25 -070053}
54
55ThreadList::~ThreadList() {
Elliott Hughese52e49b2012-04-02 16:05:44 -070056 // Detach the current thread if necessary. If we failed to start, there might not be any threads.
Elliott Hughes6a144332012-04-03 13:07:11 -070057 // We need to detach the current thread here in case there's another thread waiting to join with
58 // us.
Mathieu Chartierfec72f42014-10-09 12:57:58 -070059 bool contains = false;
60 {
61 Thread* self = Thread::Current();
62 MutexLock mu(self, *Locks::thread_list_lock_);
63 contains = Contains(self);
64 }
65 if (contains) {
Elliott Hughes8daa0922011-09-11 13:46:25 -070066 Runtime::Current()->DetachCurrentThread();
67 }
Elliott Hughes6a144332012-04-03 13:07:11 -070068
69 WaitForOtherNonDaemonThreadsToExit();
Ian Rogers00f7d0e2012-07-19 15:28:27 -070070 // TODO: there's an unaddressed race here where a thread may attach during shutdown, see
71 // Thread::Init.
Elliott Hughes6a144332012-04-03 13:07:11 -070072 SuspendAllDaemonThreads();
Elliott Hughes8daa0922011-09-11 13:46:25 -070073}
74
75bool ThreadList::Contains(Thread* thread) {
76 return find(list_.begin(), list_.end(), thread) != list_.end();
77}
78
Elliott Hughesabbe07d2012-06-05 17:42:23 -070079bool ThreadList::Contains(pid_t tid) {
Mathieu Chartier02e25112013-08-14 16:14:24 -070080 for (const auto& thread : list_) {
Ian Rogersdd7624d2014-03-14 17:43:00 -070081 if (thread->GetTid() == tid) {
Elliott Hughesabbe07d2012-06-05 17:42:23 -070082 return true;
83 }
84 }
85 return false;
86}
87
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -070088pid_t ThreadList::GetLockOwner() {
Ian Rogersb726dcb2012-09-05 08:57:23 -070089 return Locks::thread_list_lock_->GetExclusiveOwnerTid();
Elliott Hughesaccd83d2011-10-17 14:25:58 -070090}
91
Mathieu Chartier590fee92013-09-13 13:46:47 -070092void ThreadList::DumpNativeStacks(std::ostream& os) {
93 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
94 for (const auto& thread : list_) {
Ian Rogersdd7624d2014-03-14 17:43:00 -070095 os << "DUMPING THREAD " << thread->GetTid() << "\n";
Christopher Ferrisa2cee182014-04-16 19:13:59 -070096 DumpNativeStack(os, thread->GetTid(), "\t");
Mathieu Chartier590fee92013-09-13 13:46:47 -070097 os << "\n";
98 }
99}
100
Elliott Hughesc967f782012-04-16 10:23:15 -0700101void ThreadList::DumpForSigQuit(std::ostream& os) {
Mathieu Chartier70a596d2014-12-17 14:56:47 -0800102 {
103 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier23f6e692014-12-18 18:24:39 -0800104 // Only print if we have samples.
105 if (suspend_all_historam_.SampleSize() > 0) {
106 Histogram<uint64_t>::CumulativeData data;
107 suspend_all_historam_.CreateHistogram(&data);
108 suspend_all_historam_.PrintConfidenceIntervals(os, 0.99, data); // Dump time to suspend.
109 }
Mathieu Chartier70a596d2014-12-17 14:56:47 -0800110 }
Ian Rogers7b078e82014-09-10 14:44:24 -0700111 Dump(os);
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700112 DumpUnattachedThreads(os);
113}
114
Ian Rogerscfaa4552012-11-26 21:00:08 -0800115static void DumpUnattachedThread(std::ostream& os, pid_t tid) NO_THREAD_SAFETY_ANALYSIS {
116 // TODO: No thread safety analysis as DumpState with a NULL thread won't access fields, should
117 // refactor DumpState to avoid skipping analysis.
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700118 Thread::DumpState(os, NULL, tid);
119 DumpKernelStack(os, tid, " kernel: ", false);
Brian Carlstromed8b7232012-06-27 17:54:47 -0700120 // TODO: Reenable this when the native code in system_server can handle it.
121 // Currently "adb shell kill -3 `pid system_server`" will cause it to exit.
122 if (false) {
Christopher Ferrisa2cee182014-04-16 19:13:59 -0700123 DumpNativeStack(os, tid, " native: ");
Brian Carlstromed8b7232012-06-27 17:54:47 -0700124 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700125 os << "\n";
126}
127
128void ThreadList::DumpUnattachedThreads(std::ostream& os) {
129 DIR* d = opendir("/proc/self/task");
130 if (!d) {
131 return;
132 }
133
Ian Rogers50b35e22012-10-04 10:09:15 -0700134 Thread* self = Thread::Current();
Elliott Hughes4696b5b2012-10-30 10:35:10 -0700135 dirent* e;
136 while ((e = readdir(d)) != NULL) {
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700137 char* end;
Elliott Hughes4696b5b2012-10-30 10:35:10 -0700138 pid_t tid = strtol(e->d_name, &end, 10);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700139 if (!*end) {
140 bool contains;
141 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700142 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700143 contains = Contains(tid);
144 }
145 if (!contains) {
146 DumpUnattachedThread(os, tid);
147 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700148 }
149 }
150 closedir(d);
Elliott Hughesff738062012-02-03 15:00:42 -0800151}
152
Andreas Gampe4a3d19b2015-01-09 17:54:51 -0800153// Dump checkpoint timeout in milliseconds. Larger amount on the host, as dumping will invoke
154// addr2line when available.
Andreas Gampe1e4b0ca2015-01-14 09:06:32 -0800155static constexpr uint32_t kDumpWaitTimeout = kIsTargetBuild ? 10000 : 20000;
Andreas Gampe4a3d19b2015-01-09 17:54:51 -0800156
Ian Rogers7b078e82014-09-10 14:44:24 -0700157// A closure used by Thread::Dump.
158class DumpCheckpoint FINAL : public Closure {
159 public:
160 explicit DumpCheckpoint(std::ostream* os) : os_(os), barrier_(0) {}
161
162 void Run(Thread* thread) OVERRIDE {
163 // Note thread and self may not be equal if thread was already suspended at the point of the
164 // request.
165 Thread* self = Thread::Current();
166 std::ostringstream local_os;
167 {
168 ScopedObjectAccess soa(self);
169 thread->Dump(local_os);
170 }
171 local_os << "\n";
172 {
173 // Use the logging lock to ensure serialization when writing to the common ostream.
174 MutexLock mu(self, *Locks::logging_lock_);
175 *os_ << local_os.str();
176 }
Lei Lidd9943d2015-02-02 14:24:44 +0800177 if (thread->GetState() == kRunnable) {
178 barrier_.Pass(self);
179 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700180 }
Ian Rogers7b078e82014-09-10 14:44:24 -0700181
182 void WaitForThreadsToRunThroughCheckpoint(size_t threads_running_checkpoint) {
183 Thread* self = Thread::Current();
184 ScopedThreadStateChange tsc(self, kWaitingForCheckPointsToRun);
Andreas Gampe1e4b0ca2015-01-14 09:06:32 -0800185 bool timed_out = barrier_.Increment(self, threads_running_checkpoint, kDumpWaitTimeout);
Ian Rogers2156ff12014-09-13 19:20:54 -0700186 if (timed_out) {
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000187 // Avoid a recursive abort.
188 LOG((kIsDebugBuild && (gAborting == 0)) ? FATAL : ERROR)
189 << "Unexpected time out during dump checkpoint.";
Ian Rogers2156ff12014-09-13 19:20:54 -0700190 }
Ian Rogers7b078e82014-09-10 14:44:24 -0700191 }
192
193 private:
194 // The common stream that will accumulate all the dumps.
195 std::ostream* const os_;
196 // The barrier to be passed through and for the requestor to wait upon.
197 Barrier barrier_;
198};
199
200void ThreadList::Dump(std::ostream& os) {
201 {
202 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
203 os << "DALVIK THREADS (" << list_.size() << "):\n";
204 }
205 DumpCheckpoint checkpoint(&os);
206 size_t threads_running_checkpoint = RunCheckpoint(&checkpoint);
Lei Lidd9943d2015-02-02 14:24:44 +0800207 if (threads_running_checkpoint != 0) {
208 checkpoint.WaitForThreadsToRunThroughCheckpoint(threads_running_checkpoint);
209 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700210}
211
Ian Rogers50b35e22012-10-04 10:09:15 -0700212void ThreadList::AssertThreadsAreSuspended(Thread* self, Thread* ignore1, Thread* ignore2) {
213 MutexLock mu(self, *Locks::thread_list_lock_);
214 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700215 for (const auto& thread : list_) {
jeffhao725a9572012-11-13 18:20:12 -0800216 if (thread != ignore1 && thread != ignore2) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700217 CHECK(thread->IsSuspended())
218 << "\nUnsuspended thread: <<" << *thread << "\n"
219 << "self: <<" << *Thread::Current();
220 }
Elliott Hughes8d768a92011-09-14 16:35:25 -0700221 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700222}
223
Ian Rogers66aee5c2012-08-15 17:17:47 -0700224#if HAVE_TIMED_RWLOCK
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700225// Attempt to rectify locks so that we dump thread list with required locks before exiting.
Ian Rogers7b078e82014-09-10 14:44:24 -0700226static void UnsafeLogFatalForThreadSuspendAllTimeout() __attribute__((noreturn));
Sebastien Hertzbae182c2013-12-17 10:42:03 +0100227static void UnsafeLogFatalForThreadSuspendAllTimeout() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700228 Runtime* runtime = Runtime::Current();
229 std::ostringstream ss;
230 ss << "Thread suspend timeout\n";
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700231 Locks::mutator_lock_->Dump(ss);
232 ss << "\n";
Ian Rogers7b078e82014-09-10 14:44:24 -0700233 runtime->GetThreadList()->Dump(ss);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700234 LOG(FATAL) << ss.str();
Ian Rogers719d1a32014-03-06 12:13:39 -0800235 exit(0);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700236}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700237#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700238
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800239// Unlike suspending all threads where we can wait to acquire the mutator_lock_, suspending an
240// individual thread requires polling. delay_us is the requested sleep and total_delay_us
241// accumulates the total time spent sleeping for timeouts. The first sleep is just a yield,
242// subsequently sleeps increase delay_us from 1ms to 500ms by doubling.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700243static void ThreadSuspendSleep(useconds_t* delay_us, useconds_t* total_delay_us) {
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800244 useconds_t new_delay_us = (*delay_us) * 2;
245 CHECK_GE(new_delay_us, *delay_us);
246 if (new_delay_us < 500000) { // Don't allow sleeping to be more than 0.5s.
247 *delay_us = new_delay_us;
248 }
249 if (*delay_us == 0) {
250 sched_yield();
251 // Default to 1 milliseconds (note that this gets multiplied by 2 before the first sleep).
252 *delay_us = 500;
253 } else {
254 usleep(*delay_us);
255 *total_delay_us += *delay_us;
256 }
257}
258
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700259size_t ThreadList::RunCheckpoint(Closure* checkpoint_function) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700260 Thread* self = Thread::Current();
Mathieu Chartier6dda8982014-03-06 11:11:48 -0800261 Locks::mutator_lock_->AssertNotExclusiveHeld(self);
262 Locks::thread_list_lock_->AssertNotHeld(self);
263 Locks::thread_suspend_count_lock_->AssertNotHeld(self);
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000264 if (kDebugLocking && gAborting == 0) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700265 CHECK_NE(self->GetState(), kRunnable);
266 }
267
268 std::vector<Thread*> suspended_count_modified_threads;
269 size_t count = 0;
270 {
271 // Call a checkpoint function for each thread, threads which are suspend get their checkpoint
272 // manually called.
273 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700274 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700275 for (const auto& thread : list_) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700276 if (thread != self) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700277 while (true) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700278 if (thread->RequestCheckpoint(checkpoint_function)) {
Dave Allison0aded082013-11-07 13:15:11 -0800279 // This thread will run its checkpoint some time in the near future.
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700280 count++;
281 break;
282 } else {
283 // We are probably suspended, try to make sure that we stay suspended.
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700284 // The thread switched back to runnable.
285 if (thread->GetState() == kRunnable) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700286 // Spurious fail, try again.
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700287 continue;
288 }
289 thread->ModifySuspendCount(self, +1, false);
290 suspended_count_modified_threads.push_back(thread);
291 break;
292 }
293 }
294 }
295 }
296 }
297
298 // Run the checkpoint on ourself while we wait for threads to suspend.
299 checkpoint_function->Run(self);
300
301 // Run the checkpoint on the suspended threads.
Mathieu Chartier02e25112013-08-14 16:14:24 -0700302 for (const auto& thread : suspended_count_modified_threads) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700303 if (!thread->IsSuspended()) {
304 // Wait until the thread is suspended.
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800305 useconds_t total_delay_us = 0;
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700306 do {
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800307 useconds_t delay_us = 100;
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700308 ThreadSuspendSleep(&delay_us, &total_delay_us);
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700309 } while (!thread->IsSuspended());
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800310 // Shouldn't need to wait for longer than 1000 microseconds.
311 constexpr useconds_t kLongWaitThresholdUS = 1000;
312 if (UNLIKELY(total_delay_us > kLongWaitThresholdUS)) {
313 LOG(WARNING) << "Waited " << total_delay_us << " us for thread suspend!";
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700314 }
315 }
316 // We know for sure that the thread is suspended at this point.
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700317 checkpoint_function->Run(thread);
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700318 {
319 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
320 thread->ModifySuspendCount(self, -1, false);
321 }
322 }
323
Mathieu Chartier664bebf2012-11-12 16:54:11 -0800324 {
325 // Imitate ResumeAll, threads may be waiting on Thread::resume_cond_ since we raised their
326 // suspend count. Now the suspend_count_ is lowered so we must do the broadcast.
327 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
328 Thread::resume_cond_->Broadcast(self);
329 }
330
Lei Lidd9943d2015-02-02 14:24:44 +0800331 return count;
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700332}
333
Dave Allison39c3bfb2014-01-28 18:33:52 -0800334// Request that a checkpoint function be run on all active (non-suspended)
335// threads. Returns the number of successful requests.
336size_t ThreadList::RunCheckpointOnRunnableThreads(Closure* checkpoint_function) {
337 Thread* self = Thread::Current();
Ian Rogers7b078e82014-09-10 14:44:24 -0700338 Locks::mutator_lock_->AssertNotExclusiveHeld(self);
339 Locks::thread_list_lock_->AssertNotHeld(self);
340 Locks::thread_suspend_count_lock_->AssertNotHeld(self);
341 CHECK_NE(self->GetState(), kRunnable);
Dave Allison39c3bfb2014-01-28 18:33:52 -0800342
343 size_t count = 0;
344 {
345 // Call a checkpoint function for each non-suspended thread.
346 MutexLock mu(self, *Locks::thread_list_lock_);
347 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
348 for (const auto& thread : list_) {
349 if (thread != self) {
350 if (thread->RequestCheckpoint(checkpoint_function)) {
351 // This thread will run its checkpoint some time in the near future.
352 count++;
353 }
354 }
355 }
356 }
357
358 // Return the number of threads that will run the checkpoint function.
359 return count;
360}
361
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -0800362// A checkpoint/suspend-all hybrid to switch thread roots from
363// from-space to to-space refs. Used to synchronize threads at a point
364// to mark the initiation of marking while maintaining the to-space
365// invariant.
366size_t ThreadList::FlipThreadRoots(Closure* thread_flip_visitor, Closure* flip_callback,
367 gc::collector::GarbageCollector* collector) {
368 TimingLogger::ScopedTiming split("ThreadListFlip", collector->GetTimings());
369 const uint64_t start_time = NanoTime();
370 Thread* self = Thread::Current();
371 Locks::mutator_lock_->AssertNotHeld(self);
372 Locks::thread_list_lock_->AssertNotHeld(self);
373 Locks::thread_suspend_count_lock_->AssertNotHeld(self);
374 CHECK_NE(self->GetState(), kRunnable);
375
376 std::vector<Thread*> runnable_threads;
377 std::vector<Thread*> other_threads;
378
379 // Suspend all threads once.
380 {
381 MutexLock mu(self, *Locks::thread_list_lock_);
382 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
383 // Update global suspend all state for attaching threads.
384 ++suspend_all_count_;
385 // Increment everybody's suspend count (except our own).
386 for (const auto& thread : list_) {
387 if (thread == self) {
388 continue;
389 }
390 thread->ModifySuspendCount(self, +1, false);
391 }
392 }
393
394 // Run the flip callback for the collector.
395 Locks::mutator_lock_->ExclusiveLock(self);
396 flip_callback->Run(self);
397 Locks::mutator_lock_->ExclusiveUnlock(self);
398 collector->RegisterPause(NanoTime() - start_time);
399
400 // Resume runnable threads.
401 {
402 MutexLock mu(self, *Locks::thread_list_lock_);
403 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
404 --suspend_all_count_;
405 for (const auto& thread : list_) {
406 if (thread == self) {
407 continue;
408 }
409 // Set the flip function for both runnable and suspended threads
410 // because Thread::DumpState/DumpJavaStack() (invoked by a
411 // checkpoint) may cause the flip function to be run for a
412 // runnable/suspended thread before a runnable threads runs it
413 // for itself or we run it for a suspended thread below.
414 thread->SetFlipFunction(thread_flip_visitor);
415 if (thread->IsSuspendedAtSuspendCheck()) {
416 // The thread will resume right after the broadcast.
417 thread->ModifySuspendCount(self, -1, false);
418 runnable_threads.push_back(thread);
419 } else {
420 other_threads.push_back(thread);
421 }
422 }
423 Thread::resume_cond_->Broadcast(self);
424 }
425
426 // Run the closure on the other threads and let them resume.
427 {
428 ReaderMutexLock mu(self, *Locks::mutator_lock_);
429 for (const auto& thread : other_threads) {
430 Closure* flip_func = thread->GetFlipFunction();
431 if (flip_func != nullptr) {
432 flip_func->Run(thread);
433 }
434 }
435 // Run it for self.
436 thread_flip_visitor->Run(self);
437 }
438
439 // Resume other threads.
440 {
441 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
442 for (const auto& thread : other_threads) {
443 thread->ModifySuspendCount(self, -1, false);
444 }
445 Thread::resume_cond_->Broadcast(self);
446 }
447
448 return runnable_threads.size() + other_threads.size() + 1; // +1 for self.
449}
450
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700451void ThreadList::SuspendAll() {
452 Thread* self = Thread::Current();
453
Jeff Haoc5d824a2014-07-28 18:35:38 -0700454 if (self != nullptr) {
455 VLOG(threads) << *self << " SuspendAll starting...";
456 } else {
457 VLOG(threads) << "Thread[null] SuspendAll starting...";
458 }
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700459 ATRACE_BEGIN("Suspending mutator threads");
Mathieu Chartier70a596d2014-12-17 14:56:47 -0800460 const uint64_t start_time = NanoTime();
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700461
Mathieu Chartier6dda8982014-03-06 11:11:48 -0800462 Locks::mutator_lock_->AssertNotHeld(self);
463 Locks::thread_list_lock_->AssertNotHeld(self);
464 Locks::thread_suspend_count_lock_->AssertNotHeld(self);
Jeff Haoc5d824a2014-07-28 18:35:38 -0700465 if (kDebugLocking && self != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700466 CHECK_NE(self->GetState(), kRunnable);
467 }
468 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700469 MutexLock mu(self, *Locks::thread_list_lock_);
Mathieu Chartier6dda8982014-03-06 11:11:48 -0800470 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
471 // Update global suspend all state for attaching threads.
472 ++suspend_all_count_;
473 // Increment everybody's suspend count (except our own).
474 for (const auto& thread : list_) {
475 if (thread == self) {
476 continue;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700477 }
Mathieu Chartier6dda8982014-03-06 11:11:48 -0800478 VLOG(threads) << "requesting thread suspend: " << *thread;
479 thread->ModifySuspendCount(self, +1, false);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700480 }
481 }
482
Ian Rogers66aee5c2012-08-15 17:17:47 -0700483 // Block on the mutator lock until all Runnable threads release their share of access.
484#if HAVE_TIMED_RWLOCK
485 // Timeout if we wait more than 30 seconds.
Ian Rogers719d1a32014-03-06 12:13:39 -0800486 if (!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0)) {
Sebastien Hertzbae182c2013-12-17 10:42:03 +0100487 UnsafeLogFatalForThreadSuspendAllTimeout();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700488 }
Ian Rogers66aee5c2012-08-15 17:17:47 -0700489#else
Ian Rogers81d425b2012-09-27 16:03:43 -0700490 Locks::mutator_lock_->ExclusiveLock(self);
Ian Rogers66aee5c2012-08-15 17:17:47 -0700491#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700492
Mathieu Chartier70a596d2014-12-17 14:56:47 -0800493 const uint64_t end_time = NanoTime();
494 const uint64_t suspend_time = end_time - start_time;
495 suspend_all_historam_.AdjustAndAddValue(suspend_time);
496 if (suspend_time > kLongThreadSuspendThreshold) {
497 LOG(WARNING) << "Suspending all threads took: " << PrettyDuration(suspend_time);
Mathieu Chartier251755c2014-07-15 18:10:25 -0700498 }
499
Mathieu Chartier6dda8982014-03-06 11:11:48 -0800500 if (kDebugLocking) {
501 // Debug check that all threads are suspended.
502 AssertThreadsAreSuspended(self, self);
503 }
Elliott Hughes8d768a92011-09-14 16:35:25 -0700504
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700505 ATRACE_END();
506 ATRACE_BEGIN("Mutator threads suspended");
507
Jeff Haoc5d824a2014-07-28 18:35:38 -0700508 if (self != nullptr) {
509 VLOG(threads) << *self << " SuspendAll complete";
510 } else {
511 VLOG(threads) << "Thread[null] SuspendAll complete";
512 }
Elliott Hughes8d768a92011-09-14 16:35:25 -0700513}
514
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700515void ThreadList::ResumeAll() {
516 Thread* self = Thread::Current();
517
Jeff Haoc5d824a2014-07-28 18:35:38 -0700518 if (self != nullptr) {
519 VLOG(threads) << *self << " ResumeAll starting";
520 } else {
521 VLOG(threads) << "Thread[null] ResumeAll starting";
522 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700523
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700524 ATRACE_END();
525 ATRACE_BEGIN("Resuming mutator threads");
526
Mathieu Chartier6dda8982014-03-06 11:11:48 -0800527 if (kDebugLocking) {
528 // Debug check that all threads are suspended.
529 AssertThreadsAreSuspended(self, self);
530 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700531
Ian Rogers81d425b2012-09-27 16:03:43 -0700532 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700533 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700534 MutexLock mu(self, *Locks::thread_list_lock_);
535 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700536 // Update global suspend all state for attaching threads.
537 --suspend_all_count_;
538 // Decrement the suspend counts for all threads.
Mathieu Chartier02e25112013-08-14 16:14:24 -0700539 for (const auto& thread : list_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700540 if (thread == self) {
541 continue;
542 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700543 thread->ModifySuspendCount(self, -1, false);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700544 }
545
546 // Broadcast a notification to all suspended threads, some or all of
547 // which may choose to wake up. No need to wait for them.
Jeff Haoc5d824a2014-07-28 18:35:38 -0700548 if (self != nullptr) {
549 VLOG(threads) << *self << " ResumeAll waking others";
550 } else {
551 VLOG(threads) << "Thread[null] ResumeAll waking others";
552 }
Ian Rogersc604d732012-10-14 16:09:54 -0700553 Thread::resume_cond_->Broadcast(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700554 }
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700555 ATRACE_END();
Jeff Haoc5d824a2014-07-28 18:35:38 -0700556
557 if (self != nullptr) {
558 VLOG(threads) << *self << " ResumeAll complete";
559 } else {
560 VLOG(threads) << "Thread[null] ResumeAll complete";
561 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700562}
563
564void ThreadList::Resume(Thread* thread, bool for_debugger) {
Mathieu Chartierf0dc8b52014-12-17 10:13:30 -0800565 // This assumes there was an ATRACE_BEGIN when we suspended the thread.
566 ATRACE_END();
567
Ian Rogers81d425b2012-09-27 16:03:43 -0700568 Thread* self = Thread::Current();
569 DCHECK_NE(thread, self);
Brian Carlstromba32de42014-08-27 23:43:46 -0700570 VLOG(threads) << "Resume(" << reinterpret_cast<void*>(thread) << ") starting..."
571 << (for_debugger ? " (debugger)" : "");
Elliott Hughes01158d72011-09-19 19:47:10 -0700572
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700573 {
574 // To check Contains.
Ian Rogers81d425b2012-09-27 16:03:43 -0700575 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700576 // To check IsSuspended.
Ian Rogers81d425b2012-09-27 16:03:43 -0700577 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
578 DCHECK(thread->IsSuspended());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700579 if (!Contains(thread)) {
Brian Carlstromba32de42014-08-27 23:43:46 -0700580 // We only expect threads within the thread-list to have been suspended otherwise we can't
581 // stop such threads from delete-ing themselves.
582 LOG(ERROR) << "Resume(" << reinterpret_cast<void*>(thread)
583 << ") thread not within thread list";
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700584 return;
585 }
Ian Rogers01ae5802012-09-28 16:14:01 -0700586 thread->ModifySuspendCount(self, -1, for_debugger);
Elliott Hughes01158d72011-09-19 19:47:10 -0700587 }
588
589 {
Brian Carlstromba32de42014-08-27 23:43:46 -0700590 VLOG(threads) << "Resume(" << reinterpret_cast<void*>(thread) << ") waking others";
Ian Rogers81d425b2012-09-27 16:03:43 -0700591 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -0700592 Thread::resume_cond_->Broadcast(self);
Elliott Hughes01158d72011-09-19 19:47:10 -0700593 }
594
Brian Carlstromba32de42014-08-27 23:43:46 -0700595 VLOG(threads) << "Resume(" << reinterpret_cast<void*>(thread) << ") complete";
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700596}
Elliott Hughes01158d72011-09-19 19:47:10 -0700597
Ian Rogersc7dd2952014-10-21 23:31:19 -0700598static void ThreadSuspendByPeerWarning(Thread* self, LogSeverity severity, const char* message,
599 jobject peer) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700600 JNIEnvExt* env = self->GetJniEnv();
601 ScopedLocalRef<jstring>
602 scoped_name_string(env, (jstring)env->GetObjectField(peer,
603 WellKnownClasses::java_lang_Thread_name));
604 ScopedUtfChars scoped_name_chars(env, scoped_name_string.get());
605 if (scoped_name_chars.c_str() == NULL) {
Ian Rogersc7dd2952014-10-21 23:31:19 -0700606 LOG(severity) << message << ": " << peer;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700607 env->ExceptionClear();
608 } else {
Ian Rogersc7dd2952014-10-21 23:31:19 -0700609 LOG(severity) << message << ": " << peer << ":" << scoped_name_chars.c_str();
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700610 }
611}
612
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700613Thread* ThreadList::SuspendThreadByPeer(jobject peer, bool request_suspension,
614 bool debug_suspension, bool* timed_out) {
615 static const useconds_t kTimeoutUs = 30 * 1000000; // 30s.
616 useconds_t total_delay_us = 0;
617 useconds_t delay_us = 0;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700618 *timed_out = false;
619 Thread* self = Thread::Current();
Mathieu Chartier82a800d2014-12-15 15:59:49 -0800620 Thread* suspended_thread = nullptr;
Brian Carlstromba32de42014-08-27 23:43:46 -0700621 VLOG(threads) << "SuspendThreadByPeer starting";
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700622 while (true) {
623 Thread* thread;
624 {
Ian Rogersf3d874c2014-07-17 18:52:42 -0700625 // Note: this will transition to runnable and potentially suspend. We ensure only one thread
626 // is requesting another suspend, to avoid deadlock, by requiring this function be called
627 // holding Locks::thread_list_suspend_thread_lock_. Its important this thread suspend rather
628 // than request thread suspension, to avoid potential cycles in threads requesting each other
629 // suspend.
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700630 ScopedObjectAccess soa(self);
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800631 MutexLock thread_list_mu(self, *Locks::thread_list_lock_);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700632 thread = Thread::FromManagedThread(soa, peer);
Brian Carlstromba32de42014-08-27 23:43:46 -0700633 if (thread == nullptr) {
Mathieu Chartier82a800d2014-12-15 15:59:49 -0800634 if (suspended_thread != nullptr) {
635 MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_);
636 // If we incremented the suspend count but the thread reset its peer, we need to
637 // re-decrement it since it is shutting down and may deadlock the runtime in
638 // ThreadList::WaitForOtherNonDaemonThreadsToExit.
639 suspended_thread->ModifySuspendCount(soa.Self(), -1, debug_suspension);
640 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700641 ThreadSuspendByPeerWarning(self, WARNING, "No such thread for suspend", peer);
Brian Carlstromba32de42014-08-27 23:43:46 -0700642 return nullptr;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700643 }
Brian Carlstromba32de42014-08-27 23:43:46 -0700644 if (!Contains(thread)) {
Mathieu Chartier82a800d2014-12-15 15:59:49 -0800645 CHECK(suspended_thread == nullptr);
Brian Carlstromba32de42014-08-27 23:43:46 -0700646 VLOG(threads) << "SuspendThreadByPeer failed for unattached thread: "
647 << reinterpret_cast<void*>(thread);
648 return nullptr;
649 }
650 VLOG(threads) << "SuspendThreadByPeer found thread: " << *thread;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700651 {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800652 MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700653 if (request_suspension) {
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800654 if (self->GetSuspendCount() > 0) {
655 // We hold the suspend count lock but another thread is trying to suspend us. Its not
656 // safe to try to suspend another thread in case we get a cycle. Start the loop again
657 // which will allow this thread to be suspended.
658 continue;
659 }
Mathieu Chartier82a800d2014-12-15 15:59:49 -0800660 CHECK(suspended_thread == nullptr);
661 suspended_thread = thread;
662 suspended_thread->ModifySuspendCount(self, +1, debug_suspension);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700663 request_suspension = false;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700664 } else {
665 // If the caller isn't requesting suspension, a suspension should have already occurred.
666 CHECK_GT(thread->GetSuspendCount(), 0);
667 }
668 // IsSuspended on the current thread will fail as the current thread is changed into
669 // Runnable above. As the suspend count is now raised if this is the current thread
670 // it will self suspend on transition to Runnable, making it hard to work with. It's simpler
671 // to just explicitly handle the current thread in the callers to this code.
672 CHECK_NE(thread, self) << "Attempt to suspend the current thread for the debugger";
673 // If thread is suspended (perhaps it was already not Runnable but didn't have a suspend
674 // count, or else we've waited and it has self suspended) or is the current thread, we're
675 // done.
676 if (thread->IsSuspended()) {
Brian Carlstromba32de42014-08-27 23:43:46 -0700677 VLOG(threads) << "SuspendThreadByPeer thread suspended: " << *thread;
Mathieu Chartierf0dc8b52014-12-17 10:13:30 -0800678 if (ATRACE_ENABLED()) {
679 std::string name;
680 thread->GetThreadName(name);
681 ATRACE_BEGIN(StringPrintf("SuspendThreadByPeer suspended %s for peer=%p", name.c_str(),
682 peer).c_str());
683 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700684 return thread;
685 }
686 if (total_delay_us >= kTimeoutUs) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700687 ThreadSuspendByPeerWarning(self, FATAL, "Thread suspension timed out", peer);
Mathieu Chartier82a800d2014-12-15 15:59:49 -0800688 if (suspended_thread != nullptr) {
689 CHECK_EQ(suspended_thread, thread);
690 suspended_thread->ModifySuspendCount(soa.Self(), -1, debug_suspension);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700691 }
692 *timed_out = true;
Brian Carlstromba32de42014-08-27 23:43:46 -0700693 return nullptr;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700694 }
695 }
696 // Release locks and come out of runnable state.
697 }
Brian Carlstromba32de42014-08-27 23:43:46 -0700698 VLOG(threads) << "SuspendThreadByPeer sleeping to allow thread chance to suspend";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700699 ThreadSuspendSleep(&delay_us, &total_delay_us);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700700 }
701}
702
Ian Rogersc7dd2952014-10-21 23:31:19 -0700703static void ThreadSuspendByThreadIdWarning(LogSeverity severity, const char* message,
704 uint32_t thread_id) {
705 LOG(severity) << StringPrintf("%s: %d", message, thread_id);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700706}
707
708Thread* ThreadList::SuspendThreadByThreadId(uint32_t thread_id, bool debug_suspension,
709 bool* timed_out) {
710 static const useconds_t kTimeoutUs = 30 * 1000000; // 30s.
711 useconds_t total_delay_us = 0;
712 useconds_t delay_us = 0;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700713 *timed_out = false;
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800714 Thread* suspended_thread = nullptr;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700715 Thread* self = Thread::Current();
716 CHECK_NE(thread_id, kInvalidThreadId);
Brian Carlstromba32de42014-08-27 23:43:46 -0700717 VLOG(threads) << "SuspendThreadByThreadId starting";
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700718 while (true) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700719 {
Ian Rogersf3d874c2014-07-17 18:52:42 -0700720 // Note: this will transition to runnable and potentially suspend. We ensure only one thread
721 // is requesting another suspend, to avoid deadlock, by requiring this function be called
722 // holding Locks::thread_list_suspend_thread_lock_. Its important this thread suspend rather
723 // than request thread suspension, to avoid potential cycles in threads requesting each other
724 // suspend.
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700725 ScopedObjectAccess soa(self);
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800726 MutexLock thread_list_mu(self, *Locks::thread_list_lock_);
Ian Rogersf3d874c2014-07-17 18:52:42 -0700727 Thread* thread = nullptr;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700728 for (const auto& it : list_) {
729 if (it->GetThreadId() == thread_id) {
730 thread = it;
731 break;
732 }
733 }
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800734 if (thread == nullptr) {
735 CHECK(suspended_thread == nullptr) << "Suspended thread " << suspended_thread
736 << " no longer in thread list";
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700737 // There's a race in inflating a lock and the owner giving up ownership and then dying.
738 ThreadSuspendByThreadIdWarning(WARNING, "No such thread id for suspend", thread_id);
Brian Carlstromba32de42014-08-27 23:43:46 -0700739 return nullptr;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700740 }
Brian Carlstromba32de42014-08-27 23:43:46 -0700741 VLOG(threads) << "SuspendThreadByThreadId found thread: " << *thread;
742 DCHECK(Contains(thread));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700743 {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800744 MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_);
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800745 if (suspended_thread == nullptr) {
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800746 if (self->GetSuspendCount() > 0) {
747 // We hold the suspend count lock but another thread is trying to suspend us. Its not
748 // safe to try to suspend another thread in case we get a cycle. Start the loop again
749 // which will allow this thread to be suspended.
750 continue;
751 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700752 thread->ModifySuspendCount(self, +1, debug_suspension);
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800753 suspended_thread = thread;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700754 } else {
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800755 CHECK_EQ(suspended_thread, thread);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700756 // If the caller isn't requesting suspension, a suspension should have already occurred.
757 CHECK_GT(thread->GetSuspendCount(), 0);
758 }
759 // IsSuspended on the current thread will fail as the current thread is changed into
760 // Runnable above. As the suspend count is now raised if this is the current thread
761 // it will self suspend on transition to Runnable, making it hard to work with. It's simpler
762 // to just explicitly handle the current thread in the callers to this code.
763 CHECK_NE(thread, self) << "Attempt to suspend the current thread for the debugger";
764 // If thread is suspended (perhaps it was already not Runnable but didn't have a suspend
765 // count, or else we've waited and it has self suspended) or is the current thread, we're
766 // done.
767 if (thread->IsSuspended()) {
Mathieu Chartierf0dc8b52014-12-17 10:13:30 -0800768 if (ATRACE_ENABLED()) {
769 std::string name;
770 thread->GetThreadName(name);
771 ATRACE_BEGIN(StringPrintf("SuspendThreadByThreadId suspended %s id=%d",
772 name.c_str(), thread_id).c_str());
773 }
Brian Carlstromba32de42014-08-27 23:43:46 -0700774 VLOG(threads) << "SuspendThreadByThreadId thread suspended: " << *thread;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700775 return thread;
776 }
777 if (total_delay_us >= kTimeoutUs) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700778 ThreadSuspendByThreadIdWarning(WARNING, "Thread suspension timed out", thread_id);
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800779 if (suspended_thread != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700780 thread->ModifySuspendCount(soa.Self(), -1, debug_suspension);
781 }
782 *timed_out = true;
Brian Carlstromba32de42014-08-27 23:43:46 -0700783 return nullptr;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700784 }
785 }
786 // Release locks and come out of runnable state.
787 }
Brian Carlstromba32de42014-08-27 23:43:46 -0700788 VLOG(threads) << "SuspendThreadByThreadId sleeping to allow thread chance to suspend";
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700789 ThreadSuspendSleep(&delay_us, &total_delay_us);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700790 }
791}
792
793Thread* ThreadList::FindThreadByThreadId(uint32_t thin_lock_id) {
794 Thread* self = Thread::Current();
795 MutexLock mu(self, *Locks::thread_list_lock_);
796 for (const auto& thread : list_) {
797 if (thread->GetThreadId() == thin_lock_id) {
798 CHECK(thread == self || thread->IsSuspended());
799 return thread;
800 }
801 }
802 return NULL;
803}
804
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700805void ThreadList::SuspendAllForDebugger() {
806 Thread* self = Thread::Current();
807 Thread* debug_thread = Dbg::GetDebugThread();
808
809 VLOG(threads) << *self << " SuspendAllForDebugger starting...";
810
811 {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800812 MutexLock thread_list_mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700813 {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800814 MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700815 // Update global suspend all state for attaching threads.
Sebastien Hertz253fa552014-10-14 17:27:15 +0200816 DCHECK_GE(suspend_all_count_, debug_suspend_all_count_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700817 ++suspend_all_count_;
818 ++debug_suspend_all_count_;
819 // Increment everybody's suspend count (except our own).
Mathieu Chartier02e25112013-08-14 16:14:24 -0700820 for (const auto& thread : list_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700821 if (thread == self || thread == debug_thread) {
822 continue;
823 }
824 VLOG(threads) << "requesting thread suspend: " << *thread;
Ian Rogers01ae5802012-09-28 16:14:01 -0700825 thread->ModifySuspendCount(self, +1, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700826 }
827 }
828 }
829
Ian Rogers66aee5c2012-08-15 17:17:47 -0700830 // Block on the mutator lock until all Runnable threads release their share of access then
831 // immediately unlock again.
832#if HAVE_TIMED_RWLOCK
833 // Timeout if we wait more than 30 seconds.
Ian Rogersc604d732012-10-14 16:09:54 -0700834 if (!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0)) {
Sebastien Hertzbae182c2013-12-17 10:42:03 +0100835 UnsafeLogFatalForThreadSuspendAllTimeout();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700836 } else {
Ian Rogers81d425b2012-09-27 16:03:43 -0700837 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700838 }
Ian Rogers66aee5c2012-08-15 17:17:47 -0700839#else
Ian Rogers81d425b2012-09-27 16:03:43 -0700840 Locks::mutator_lock_->ExclusiveLock(self);
841 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers66aee5c2012-08-15 17:17:47 -0700842#endif
Ian Rogers50b35e22012-10-04 10:09:15 -0700843 AssertThreadsAreSuspended(self, self, debug_thread);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700844
Sebastien Hertzed2be172014-08-19 15:33:43 +0200845 VLOG(threads) << *self << " SuspendAllForDebugger complete";
Elliott Hughes01158d72011-09-19 19:47:10 -0700846}
847
Elliott Hughes475fc232011-10-25 15:00:35 -0700848void ThreadList::SuspendSelfForDebugger() {
849 Thread* self = Thread::Current();
Elliott Hughes01158d72011-09-19 19:47:10 -0700850
Elliott Hughes475fc232011-10-25 15:00:35 -0700851 // The debugger thread must not suspend itself due to debugger activity!
852 Thread* debug_thread = Dbg::GetDebugThread();
853 CHECK(debug_thread != NULL);
854 CHECK(self != debug_thread);
jeffhaoa77f0f62012-12-05 17:19:31 -0800855 CHECK_NE(self->GetState(), kRunnable);
856 Locks::mutator_lock_->AssertNotHeld(self);
Elliott Hughes475fc232011-10-25 15:00:35 -0700857
jeffhaoa77f0f62012-12-05 17:19:31 -0800858 {
859 // Collisions with other suspends aren't really interesting. We want
860 // to ensure that we're the only one fiddling with the suspend count
861 // though.
862 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
863 self->ModifySuspendCount(self, +1, true);
Ian Rogersdd7624d2014-03-14 17:43:00 -0700864 CHECK_GT(self->GetSuspendCount(), 0);
jeffhaoa77f0f62012-12-05 17:19:31 -0800865 }
Elliott Hughes475fc232011-10-25 15:00:35 -0700866
Elliott Hughes1f729aa2012-03-02 13:55:41 -0800867 VLOG(threads) << *self << " self-suspending (debugger)";
Elliott Hughes475fc232011-10-25 15:00:35 -0700868
Sebastien Hertz21e729c2014-02-18 14:16:00 +0100869 // Tell JDWP we've completed invocation and are ready to suspend.
870 DebugInvokeReq* pReq = self->GetInvokeReq();
871 DCHECK(pReq != NULL);
872 if (pReq->invoke_needed) {
873 // Clear this before signaling.
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200874 pReq->Clear();
Sebastien Hertz21e729c2014-02-18 14:16:00 +0100875
876 VLOG(jdwp) << "invoke complete, signaling";
877 MutexLock mu(self, pReq->lock);
878 pReq->cond.Signal(self);
879 }
880
Elliott Hughes475fc232011-10-25 15:00:35 -0700881 // Tell JDWP that we've completed suspension. The JDWP thread can't
882 // tell us to resume before we're fully asleep because we hold the
883 // suspend count lock.
884 Dbg::ClearWaitForEventThread();
885
jeffhaoa77f0f62012-12-05 17:19:31 -0800886 {
887 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogersdd7624d2014-03-14 17:43:00 -0700888 while (self->GetSuspendCount() != 0) {
jeffhaoa77f0f62012-12-05 17:19:31 -0800889 Thread::resume_cond_->Wait(self);
Ian Rogersdd7624d2014-03-14 17:43:00 -0700890 if (self->GetSuspendCount() != 0) {
jeffhaoa77f0f62012-12-05 17:19:31 -0800891 // The condition was signaled but we're still suspended. This
Sebastien Hertzf272af42014-09-18 10:20:42 +0200892 // can happen when we suspend then resume all threads to
893 // update instrumentation or compute monitor info. This can
894 // also happen if the debugger lets go while a SIGQUIT thread
jeffhaoa77f0f62012-12-05 17:19:31 -0800895 // dump event is pending (assuming SignalCatcher was resumed for
896 // just long enough to try to grab the thread-suspend lock).
Sebastien Hertzf272af42014-09-18 10:20:42 +0200897 VLOG(jdwp) << *self << " still suspended after undo "
898 << "(suspend count=" << self->GetSuspendCount() << ", "
899 << "debug suspend count=" << self->GetDebugSuspendCount() << ")";
jeffhaoa77f0f62012-12-05 17:19:31 -0800900 }
Elliott Hughes475fc232011-10-25 15:00:35 -0700901 }
Ian Rogersdd7624d2014-03-14 17:43:00 -0700902 CHECK_EQ(self->GetSuspendCount(), 0);
Elliott Hughes475fc232011-10-25 15:00:35 -0700903 }
jeffhaoa77f0f62012-12-05 17:19:31 -0800904
Elliott Hughes1f729aa2012-03-02 13:55:41 -0800905 VLOG(threads) << *self << " self-reviving (debugger)";
Elliott Hughes475fc232011-10-25 15:00:35 -0700906}
907
Sebastien Hertz253fa552014-10-14 17:27:15 +0200908void ThreadList::ResumeAllForDebugger() {
909 Thread* self = Thread::Current();
910 Thread* debug_thread = Dbg::GetDebugThread();
Sebastien Hertz253fa552014-10-14 17:27:15 +0200911
912 VLOG(threads) << *self << " ResumeAllForDebugger starting...";
913
914 // Threads can't resume if we exclusively hold the mutator lock.
915 Locks::mutator_lock_->AssertNotExclusiveHeld(self);
916
917 {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800918 MutexLock thread_list_mu(self, *Locks::thread_list_lock_);
Sebastien Hertz253fa552014-10-14 17:27:15 +0200919 {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800920 MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_);
Sebastien Hertz253fa552014-10-14 17:27:15 +0200921 // Update global suspend all state for attaching threads.
922 DCHECK_GE(suspend_all_count_, debug_suspend_all_count_);
Sebastien Hertzf9d233d2015-01-09 14:51:41 +0100923 if (debug_suspend_all_count_ > 0) {
Sebastien Hertz253fa552014-10-14 17:27:15 +0200924 --suspend_all_count_;
925 --debug_suspend_all_count_;
Sebastien Hertz253fa552014-10-14 17:27:15 +0200926 } else {
927 // We've been asked to resume all threads without being asked to
Sebastien Hertzf9d233d2015-01-09 14:51:41 +0100928 // suspend them all before. That may happen if a debugger tries
929 // to resume some suspended threads (with suspend count == 1)
930 // at once with a VirtualMachine.Resume command. Let's print a
931 // warning.
Sebastien Hertz253fa552014-10-14 17:27:15 +0200932 LOG(WARNING) << "Debugger attempted to resume all threads without "
933 << "having suspended them all before.";
934 }
Sebastien Hertzf9d233d2015-01-09 14:51:41 +0100935 // Decrement everybody's suspend count (except our own).
936 for (const auto& thread : list_) {
937 if (thread == self || thread == debug_thread) {
938 continue;
939 }
940 if (thread->GetDebugSuspendCount() == 0) {
941 // This thread may have been individually resumed with ThreadReference.Resume.
942 continue;
943 }
944 VLOG(threads) << "requesting thread resume: " << *thread;
945 thread->ModifySuspendCount(self, -1, true);
946 }
Sebastien Hertz253fa552014-10-14 17:27:15 +0200947 }
948 }
949
Sebastien Hertzf9d233d2015-01-09 14:51:41 +0100950 {
Sebastien Hertz253fa552014-10-14 17:27:15 +0200951 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
952 Thread::resume_cond_->Broadcast(self);
953 }
954
955 VLOG(threads) << *self << " ResumeAllForDebugger complete";
956}
957
Elliott Hughes234ab152011-10-26 14:02:26 -0700958void ThreadList::UndoDebuggerSuspensions() {
959 Thread* self = Thread::Current();
960
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800961 VLOG(threads) << *self << " UndoDebuggerSuspensions starting";
Elliott Hughes234ab152011-10-26 14:02:26 -0700962
963 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700964 MutexLock mu(self, *Locks::thread_list_lock_);
965 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700966 // Update global suspend all state for attaching threads.
967 suspend_all_count_ -= debug_suspend_all_count_;
968 debug_suspend_all_count_ = 0;
969 // Update running threads.
Mathieu Chartier02e25112013-08-14 16:14:24 -0700970 for (const auto& thread : list_) {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700971 if (thread == self || thread->GetDebugSuspendCount() == 0) {
Elliott Hughes234ab152011-10-26 14:02:26 -0700972 continue;
973 }
Ian Rogersdd7624d2014-03-14 17:43:00 -0700974 thread->ModifySuspendCount(self, -thread->GetDebugSuspendCount(), true);
Elliott Hughes234ab152011-10-26 14:02:26 -0700975 }
976 }
977
978 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700979 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -0700980 Thread::resume_cond_->Broadcast(self);
Elliott Hughes234ab152011-10-26 14:02:26 -0700981 }
982
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800983 VLOG(threads) << "UndoDebuggerSuspensions(" << *self << ") complete";
Elliott Hughes234ab152011-10-26 14:02:26 -0700984}
985
Elliott Hughese52e49b2012-04-02 16:05:44 -0700986void ThreadList::WaitForOtherNonDaemonThreadsToExit() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700987 Thread* self = Thread::Current();
988 Locks::mutator_lock_->AssertNotHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700989 bool all_threads_are_daemons;
990 do {
Ian Rogers120f1c72012-09-28 17:17:10 -0700991 {
992 // No more threads can be born after we start to shutdown.
993 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700994 CHECK(Runtime::Current()->IsShuttingDownLocked());
Ian Rogers120f1c72012-09-28 17:17:10 -0700995 CHECK_EQ(Runtime::Current()->NumberOfThreadsBeingBorn(), 0U);
996 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700997 all_threads_are_daemons = true;
Ian Rogers120f1c72012-09-28 17:17:10 -0700998 MutexLock mu(self, *Locks::thread_list_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700999 for (const auto& thread : list_) {
Anwar Ghuloum97543682013-06-14 12:58:16 -07001000 if (thread != self && !thread->IsDaemon()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001001 all_threads_are_daemons = false;
1002 break;
1003 }
1004 }
1005 if (!all_threads_are_daemons) {
1006 // Wait for another thread to exit before re-checking.
Ian Rogersc604d732012-10-14 16:09:54 -07001007 thread_exit_cond_.Wait(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001008 }
Brian Carlstromdf629502013-07-17 22:39:56 -07001009 } while (!all_threads_are_daemons);
Elliott Hughes038a8062011-09-18 14:12:41 -07001010}
1011
1012void ThreadList::SuspendAllDaemonThreads() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001013 Thread* self = Thread::Current();
1014 MutexLock mu(self, *Locks::thread_list_lock_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001015 { // Tell all the daemons it's time to suspend.
Ian Rogers81d425b2012-09-27 16:03:43 -07001016 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001017 for (const auto& thread : list_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001018 // This is only run after all non-daemon threads have exited, so the remainder should all be
1019 // daemons.
Ian Rogers7e762862012-10-22 15:45:08 -07001020 CHECK(thread->IsDaemon()) << *thread;
Ian Rogers81d425b2012-09-27 16:03:43 -07001021 if (thread != self) {
Ian Rogers01ae5802012-09-28 16:14:01 -07001022 thread->ModifySuspendCount(self, +1, false);
Elliott Hughese52e49b2012-04-02 16:05:44 -07001023 }
Elliott Hughes038a8062011-09-18 14:12:41 -07001024 }
1025 }
Elliott Hughes038a8062011-09-18 14:12:41 -07001026 // Give the threads a chance to suspend, complaining if they're slow.
1027 bool have_complained = false;
1028 for (int i = 0; i < 10; ++i) {
1029 usleep(200 * 1000);
1030 bool all_suspended = true;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001031 for (const auto& thread : list_) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001032 if (thread != self && thread->GetState() == kRunnable) {
Elliott Hughes038a8062011-09-18 14:12:41 -07001033 if (!have_complained) {
1034 LOG(WARNING) << "daemon thread not yet suspended: " << *thread;
1035 have_complained = true;
1036 }
1037 all_suspended = false;
1038 }
1039 }
1040 if (all_suspended) {
1041 return;
1042 }
1043 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001044 LOG(ERROR) << "suspend all daemons failed";
1045}
1046void ThreadList::Register(Thread* self) {
1047 DCHECK_EQ(self, Thread::Current());
1048
1049 if (VLOG_IS_ON(threads)) {
1050 std::ostringstream oss;
1051 self->ShortDump(oss); // We don't hold the mutator_lock_ yet and so cannot call Dump.
Ian Rogers5a9ba012014-05-19 13:28:52 -07001052 LOG(INFO) << "ThreadList::Register() " << *self << "\n" << oss.str();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001053 }
1054
1055 // Atomically add self to the thread list and make its thread_suspend_count_ reflect ongoing
1056 // SuspendAll requests.
Ian Rogers81d425b2012-09-27 16:03:43 -07001057 MutexLock mu(self, *Locks::thread_list_lock_);
1058 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogersdd7624d2014-03-14 17:43:00 -07001059 CHECK_GE(suspend_all_count_, debug_suspend_all_count_);
Ian Rogers2966e132014-04-02 08:34:36 -07001060 // Modify suspend count in increments of 1 to maintain invariants in ModifySuspendCount. While
1061 // this isn't particularly efficient the suspend counts are most commonly 0 or 1.
1062 for (int delta = debug_suspend_all_count_; delta > 0; delta--) {
1063 self->ModifySuspendCount(self, +1, true);
Ian Rogersdd7624d2014-03-14 17:43:00 -07001064 }
Ian Rogers2966e132014-04-02 08:34:36 -07001065 for (int delta = suspend_all_count_ - debug_suspend_all_count_; delta > 0; delta--) {
1066 self->ModifySuspendCount(self, +1, false);
Ian Rogers01ae5802012-09-28 16:14:01 -07001067 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001068 CHECK(!Contains(self));
1069 list_.push_back(self);
1070}
1071
1072void ThreadList::Unregister(Thread* self) {
1073 DCHECK_EQ(self, Thread::Current());
Ian Rogers68d8b422014-07-17 11:09:10 -07001074 CHECK_NE(self->GetState(), kRunnable);
1075 Locks::mutator_lock_->AssertNotHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001076
1077 VLOG(threads) << "ThreadList::Unregister() " << *self;
1078
1079 // Any time-consuming destruction, plus anything that can call back into managed code or
1080 // suspend and so on, must happen at this point, and not in ~Thread.
1081 self->Destroy();
1082
Jeff Haoe094b872014-10-14 13:12:01 -07001083 // If tracing, remember thread id and name before thread exits.
1084 Trace::StoreExitingThreadInfo(self);
1085
Ian Rogersdd7624d2014-03-14 17:43:00 -07001086 uint32_t thin_lock_id = self->GetThreadId();
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -08001087 while (self != nullptr) {
Ian Rogerscfaa4552012-11-26 21:00:08 -08001088 // Remove and delete the Thread* while holding the thread_list_lock_ and
1089 // thread_suspend_count_lock_ so that the unregistering thread cannot be suspended.
Ian Rogers0878d652013-04-18 17:38:35 -07001090 // Note: deliberately not using MutexLock that could hold a stale self pointer.
1091 Locks::thread_list_lock_->ExclusiveLock(self);
Ian Rogersa2af5c72014-09-15 15:17:07 -07001092 bool removed = true;
1093 if (!Contains(self)) {
1094 std::ostringstream os;
1095 DumpNativeStack(os, GetTid(), " native: ", nullptr);
1096 LOG(ERROR) << "Request to unregister unattached thread\n" << os.str();
1097 } else {
1098 Locks::thread_suspend_count_lock_->ExclusiveLock(self);
1099 if (!self->IsSuspended()) {
1100 list_.remove(self);
1101 } else {
1102 // We failed to remove the thread due to a suspend request, loop and try again.
1103 removed = false;
1104 }
1105 Locks::thread_suspend_count_lock_->ExclusiveUnlock(self);
Ian Rogers68d8b422014-07-17 11:09:10 -07001106 }
Ian Rogers68d8b422014-07-17 11:09:10 -07001107 Locks::thread_list_lock_->ExclusiveUnlock(self);
1108 if (removed) {
Ian Rogerscfaa4552012-11-26 21:00:08 -08001109 delete self;
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -08001110 self = nullptr;
Ian Rogerscfaa4552012-11-26 21:00:08 -08001111 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001112 }
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -08001113 // Release the thread ID after the thread is finished and deleted to avoid cases where we can
1114 // temporarily have multiple threads with the same thread id. When this occurs, it causes
1115 // problems in FindThreadByThreadId / SuspendThreadByThreadId.
1116 ReleaseThreadId(nullptr, thin_lock_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001117
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001118 // Clear the TLS data, so that the underlying native thread is recognizably detached.
1119 // (It may wish to reattach later.)
1120 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, NULL), "detach self");
1121
1122 // Signal that a thread just detached.
Ian Rogers81d425b2012-09-27 16:03:43 -07001123 MutexLock mu(NULL, *Locks::thread_list_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -07001124 thread_exit_cond_.Signal(NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001125}
1126
1127void ThreadList::ForEach(void (*callback)(Thread*, void*), void* context) {
Mathieu Chartier02e25112013-08-14 16:14:24 -07001128 for (const auto& thread : list_) {
1129 callback(thread, context);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001130 }
1131}
1132
Mathieu Chartier83c8ee02014-01-28 14:50:23 -08001133void ThreadList::VisitRoots(RootCallback* callback, void* arg) const {
Ian Rogers81d425b2012-09-27 16:03:43 -07001134 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001135 for (const auto& thread : list_) {
Mathieu Chartier83c8ee02014-01-28 14:50:23 -08001136 thread->VisitRoots(callback, arg);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001137 }
Elliott Hughes038a8062011-09-18 14:12:41 -07001138}
1139
Ian Rogerscfaa4552012-11-26 21:00:08 -08001140uint32_t ThreadList::AllocThreadId(Thread* self) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001141 MutexLock mu(self, *Locks::allocated_thread_ids_lock_);
Elliott Hughes8daa0922011-09-11 13:46:25 -07001142 for (size_t i = 0; i < allocated_ids_.size(); ++i) {
1143 if (!allocated_ids_[i]) {
1144 allocated_ids_.set(i);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001145 return i + 1; // Zero is reserved to mean "invalid".
Elliott Hughes8daa0922011-09-11 13:46:25 -07001146 }
1147 }
1148 LOG(FATAL) << "Out of internal thread ids";
1149 return 0;
1150}
1151
Ian Rogerscfaa4552012-11-26 21:00:08 -08001152void ThreadList::ReleaseThreadId(Thread* self, uint32_t id) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001153 MutexLock mu(self, *Locks::allocated_thread_ids_lock_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001154 --id; // Zero is reserved to mean "invalid".
Elliott Hughes8daa0922011-09-11 13:46:25 -07001155 DCHECK(allocated_ids_[id]) << id;
1156 allocated_ids_.reset(id);
1157}
1158
Elliott Hughes8daa0922011-09-11 13:46:25 -07001159} // namespace art