blob: 560bcc1a1dffc79e14dc21c1798b706e4bbc8a35 [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);
Mathieu Chartier99143862015-02-03 14:26:46 -080047static constexpr uint64_t kThreadSuspendTimeoutMs = 30 * 1000; // 30s.
48// Use 0 since we want to yield to prevent blocking for an unpredictable amount of time.
49static constexpr useconds_t kThreadSuspendInitialSleepUs = 0;
50static constexpr useconds_t kThreadSuspendMaxYieldUs = 3000;
51static constexpr useconds_t kThreadSuspendMaxSleepUs = 5000;
Mathieu Chartier251755c2014-07-15 18:10:25 -070052
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -080053ThreadList::ThreadList()
Mathieu Chartier91e56692015-03-03 13:51:04 -080054 : suspend_all_count_(0), debug_suspend_all_count_(0), unregistering_count_(0),
Mathieu Chartier70a596d2014-12-17 14:56:47 -080055 suspend_all_historam_("suspend all histogram", 16, 64) {
Hiroshi Yamauchie15ea082015-02-09 17:11:42 -080056 CHECK(Monitor::IsValidLockWord(LockWord::FromThinLockId(kMaxThreadId, 1, 0U)));
Elliott Hughes8daa0922011-09-11 13:46:25 -070057}
58
59ThreadList::~ThreadList() {
Elliott Hughese52e49b2012-04-02 16:05:44 -070060 // Detach the current thread if necessary. If we failed to start, there might not be any threads.
Elliott Hughes6a144332012-04-03 13:07:11 -070061 // We need to detach the current thread here in case there's another thread waiting to join with
62 // us.
Mathieu Chartierfec72f42014-10-09 12:57:58 -070063 bool contains = false;
64 {
65 Thread* self = Thread::Current();
66 MutexLock mu(self, *Locks::thread_list_lock_);
67 contains = Contains(self);
68 }
69 if (contains) {
Elliott Hughes8daa0922011-09-11 13:46:25 -070070 Runtime::Current()->DetachCurrentThread();
71 }
Elliott Hughes6a144332012-04-03 13:07:11 -070072 WaitForOtherNonDaemonThreadsToExit();
Ian Rogers00f7d0e2012-07-19 15:28:27 -070073 // TODO: there's an unaddressed race here where a thread may attach during shutdown, see
74 // Thread::Init.
Elliott Hughes6a144332012-04-03 13:07:11 -070075 SuspendAllDaemonThreads();
Elliott Hughes8daa0922011-09-11 13:46:25 -070076}
77
78bool ThreadList::Contains(Thread* thread) {
79 return find(list_.begin(), list_.end(), thread) != list_.end();
80}
81
Elliott Hughesabbe07d2012-06-05 17:42:23 -070082bool ThreadList::Contains(pid_t tid) {
Mathieu Chartier02e25112013-08-14 16:14:24 -070083 for (const auto& thread : list_) {
Ian Rogersdd7624d2014-03-14 17:43:00 -070084 if (thread->GetTid() == tid) {
Elliott Hughesabbe07d2012-06-05 17:42:23 -070085 return true;
86 }
87 }
88 return false;
89}
90
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -070091pid_t ThreadList::GetLockOwner() {
Ian Rogersb726dcb2012-09-05 08:57:23 -070092 return Locks::thread_list_lock_->GetExclusiveOwnerTid();
Elliott Hughesaccd83d2011-10-17 14:25:58 -070093}
94
Mathieu Chartier590fee92013-09-13 13:46:47 -070095void ThreadList::DumpNativeStacks(std::ostream& os) {
96 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
97 for (const auto& thread : list_) {
Ian Rogersdd7624d2014-03-14 17:43:00 -070098 os << "DUMPING THREAD " << thread->GetTid() << "\n";
Christopher Ferrisa2cee182014-04-16 19:13:59 -070099 DumpNativeStack(os, thread->GetTid(), "\t");
Mathieu Chartier590fee92013-09-13 13:46:47 -0700100 os << "\n";
101 }
102}
103
Elliott Hughesc967f782012-04-16 10:23:15 -0700104void ThreadList::DumpForSigQuit(std::ostream& os) {
Mathieu Chartier70a596d2014-12-17 14:56:47 -0800105 {
106 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier23f6e692014-12-18 18:24:39 -0800107 // Only print if we have samples.
108 if (suspend_all_historam_.SampleSize() > 0) {
109 Histogram<uint64_t>::CumulativeData data;
110 suspend_all_historam_.CreateHistogram(&data);
111 suspend_all_historam_.PrintConfidenceIntervals(os, 0.99, data); // Dump time to suspend.
112 }
Mathieu Chartier70a596d2014-12-17 14:56:47 -0800113 }
Ian Rogers7b078e82014-09-10 14:44:24 -0700114 Dump(os);
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700115 DumpUnattachedThreads(os);
116}
117
Ian Rogerscfaa4552012-11-26 21:00:08 -0800118static void DumpUnattachedThread(std::ostream& os, pid_t tid) NO_THREAD_SAFETY_ANALYSIS {
119 // TODO: No thread safety analysis as DumpState with a NULL thread won't access fields, should
120 // refactor DumpState to avoid skipping analysis.
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700121 Thread::DumpState(os, NULL, tid);
122 DumpKernelStack(os, tid, " kernel: ", false);
Brian Carlstromed8b7232012-06-27 17:54:47 -0700123 // TODO: Reenable this when the native code in system_server can handle it.
124 // Currently "adb shell kill -3 `pid system_server`" will cause it to exit.
125 if (false) {
Christopher Ferrisa2cee182014-04-16 19:13:59 -0700126 DumpNativeStack(os, tid, " native: ");
Brian Carlstromed8b7232012-06-27 17:54:47 -0700127 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700128 os << "\n";
129}
130
131void ThreadList::DumpUnattachedThreads(std::ostream& os) {
132 DIR* d = opendir("/proc/self/task");
133 if (!d) {
134 return;
135 }
136
Ian Rogers50b35e22012-10-04 10:09:15 -0700137 Thread* self = Thread::Current();
Elliott Hughes4696b5b2012-10-30 10:35:10 -0700138 dirent* e;
139 while ((e = readdir(d)) != NULL) {
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700140 char* end;
Elliott Hughes4696b5b2012-10-30 10:35:10 -0700141 pid_t tid = strtol(e->d_name, &end, 10);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700142 if (!*end) {
143 bool contains;
144 {
Ian Rogers50b35e22012-10-04 10:09:15 -0700145 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700146 contains = Contains(tid);
147 }
148 if (!contains) {
149 DumpUnattachedThread(os, tid);
150 }
Elliott Hughesabbe07d2012-06-05 17:42:23 -0700151 }
152 }
153 closedir(d);
Elliott Hughesff738062012-02-03 15:00:42 -0800154}
155
Andreas Gampe4a3d19b2015-01-09 17:54:51 -0800156// Dump checkpoint timeout in milliseconds. Larger amount on the host, as dumping will invoke
157// addr2line when available.
Andreas Gampe1e4b0ca2015-01-14 09:06:32 -0800158static constexpr uint32_t kDumpWaitTimeout = kIsTargetBuild ? 10000 : 20000;
Andreas Gampe4a3d19b2015-01-09 17:54:51 -0800159
Ian Rogers7b078e82014-09-10 14:44:24 -0700160// A closure used by Thread::Dump.
161class DumpCheckpoint FINAL : public Closure {
162 public:
163 explicit DumpCheckpoint(std::ostream* os) : os_(os), barrier_(0) {}
164
165 void Run(Thread* thread) OVERRIDE {
166 // Note thread and self may not be equal if thread was already suspended at the point of the
167 // request.
168 Thread* self = Thread::Current();
169 std::ostringstream local_os;
170 {
171 ScopedObjectAccess soa(self);
172 thread->Dump(local_os);
173 }
174 local_os << "\n";
175 {
176 // Use the logging lock to ensure serialization when writing to the common ostream.
177 MutexLock mu(self, *Locks::logging_lock_);
178 *os_ << local_os.str();
179 }
Lei Lidd9943d2015-02-02 14:24:44 +0800180 if (thread->GetState() == kRunnable) {
181 barrier_.Pass(self);
182 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700183 }
Ian Rogers7b078e82014-09-10 14:44:24 -0700184
185 void WaitForThreadsToRunThroughCheckpoint(size_t threads_running_checkpoint) {
186 Thread* self = Thread::Current();
187 ScopedThreadStateChange tsc(self, kWaitingForCheckPointsToRun);
Andreas Gampe1e4b0ca2015-01-14 09:06:32 -0800188 bool timed_out = barrier_.Increment(self, threads_running_checkpoint, kDumpWaitTimeout);
Ian Rogers2156ff12014-09-13 19:20:54 -0700189 if (timed_out) {
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000190 // Avoid a recursive abort.
191 LOG((kIsDebugBuild && (gAborting == 0)) ? FATAL : ERROR)
192 << "Unexpected time out during dump checkpoint.";
Ian Rogers2156ff12014-09-13 19:20:54 -0700193 }
Ian Rogers7b078e82014-09-10 14:44:24 -0700194 }
195
196 private:
197 // The common stream that will accumulate all the dumps.
198 std::ostream* const os_;
199 // The barrier to be passed through and for the requestor to wait upon.
200 Barrier barrier_;
201};
202
203void ThreadList::Dump(std::ostream& os) {
204 {
205 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
206 os << "DALVIK THREADS (" << list_.size() << "):\n";
207 }
208 DumpCheckpoint checkpoint(&os);
209 size_t threads_running_checkpoint = RunCheckpoint(&checkpoint);
Lei Lidd9943d2015-02-02 14:24:44 +0800210 if (threads_running_checkpoint != 0) {
211 checkpoint.WaitForThreadsToRunThroughCheckpoint(threads_running_checkpoint);
212 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700213}
214
Ian Rogers50b35e22012-10-04 10:09:15 -0700215void ThreadList::AssertThreadsAreSuspended(Thread* self, Thread* ignore1, Thread* ignore2) {
216 MutexLock mu(self, *Locks::thread_list_lock_);
217 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700218 for (const auto& thread : list_) {
jeffhao725a9572012-11-13 18:20:12 -0800219 if (thread != ignore1 && thread != ignore2) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700220 CHECK(thread->IsSuspended())
221 << "\nUnsuspended thread: <<" << *thread << "\n"
222 << "self: <<" << *Thread::Current();
223 }
Elliott Hughes8d768a92011-09-14 16:35:25 -0700224 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700225}
226
Ian Rogers66aee5c2012-08-15 17:17:47 -0700227#if HAVE_TIMED_RWLOCK
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700228// Attempt to rectify locks so that we dump thread list with required locks before exiting.
Andreas Gampe794ad762015-02-23 08:12:24 -0800229NO_RETURN static void UnsafeLogFatalForThreadSuspendAllTimeout() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700230 Runtime* runtime = Runtime::Current();
231 std::ostringstream ss;
232 ss << "Thread suspend timeout\n";
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700233 Locks::mutator_lock_->Dump(ss);
234 ss << "\n";
Ian Rogers7b078e82014-09-10 14:44:24 -0700235 runtime->GetThreadList()->Dump(ss);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700236 LOG(FATAL) << ss.str();
Ian Rogers719d1a32014-03-06 12:13:39 -0800237 exit(0);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700238}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700239#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700240
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800241// Unlike suspending all threads where we can wait to acquire the mutator_lock_, suspending an
Mathieu Chartier99143862015-02-03 14:26:46 -0800242// individual thread requires polling. delay_us is the requested sleep wait. If delay_us is 0 then
243// we use sched_yield instead of calling usleep.
244static void ThreadSuspendSleep(useconds_t delay_us) {
245 if (delay_us == 0) {
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800246 sched_yield();
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800247 } else {
Mathieu Chartier99143862015-02-03 14:26:46 -0800248 usleep(delay_us);
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800249 }
250}
251
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700252size_t ThreadList::RunCheckpoint(Closure* checkpoint_function) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700253 Thread* self = Thread::Current();
Mathieu Chartier6dda8982014-03-06 11:11:48 -0800254 Locks::mutator_lock_->AssertNotExclusiveHeld(self);
255 Locks::thread_list_lock_->AssertNotHeld(self);
256 Locks::thread_suspend_count_lock_->AssertNotHeld(self);
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000257 if (kDebugLocking && gAborting == 0) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700258 CHECK_NE(self->GetState(), kRunnable);
259 }
260
261 std::vector<Thread*> suspended_count_modified_threads;
262 size_t count = 0;
263 {
264 // Call a checkpoint function for each thread, threads which are suspend get their checkpoint
265 // manually called.
266 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700267 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700268 for (const auto& thread : list_) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700269 if (thread != self) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700270 while (true) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700271 if (thread->RequestCheckpoint(checkpoint_function)) {
Dave Allison0aded082013-11-07 13:15:11 -0800272 // This thread will run its checkpoint some time in the near future.
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700273 count++;
274 break;
275 } else {
276 // We are probably suspended, try to make sure that we stay suspended.
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700277 // The thread switched back to runnable.
278 if (thread->GetState() == kRunnable) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700279 // Spurious fail, try again.
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700280 continue;
281 }
282 thread->ModifySuspendCount(self, +1, false);
283 suspended_count_modified_threads.push_back(thread);
284 break;
285 }
286 }
287 }
288 }
289 }
290
291 // Run the checkpoint on ourself while we wait for threads to suspend.
292 checkpoint_function->Run(self);
293
294 // Run the checkpoint on the suspended threads.
Mathieu Chartier02e25112013-08-14 16:14:24 -0700295 for (const auto& thread : suspended_count_modified_threads) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700296 if (!thread->IsSuspended()) {
Mathieu Chartier99143862015-02-03 14:26:46 -0800297 if (ATRACE_ENABLED()) {
298 std::ostringstream oss;
299 thread->ShortDump(oss);
300 ATRACE_BEGIN((std::string("Waiting for suspension of thread ") + oss.str()).c_str());
301 }
302 // Busy wait until the thread is suspended.
303 const uint64_t start_time = NanoTime();
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700304 do {
Mathieu Chartier99143862015-02-03 14:26:46 -0800305 ThreadSuspendSleep(kThreadSuspendInitialSleepUs);
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700306 } while (!thread->IsSuspended());
Mathieu Chartier99143862015-02-03 14:26:46 -0800307 const uint64_t total_delay = NanoTime() - start_time;
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800308 // Shouldn't need to wait for longer than 1000 microseconds.
Mathieu Chartier99143862015-02-03 14:26:46 -0800309 constexpr uint64_t kLongWaitThreshold = MsToNs(1);
310 ATRACE_END();
311 if (UNLIKELY(total_delay > kLongWaitThreshold)) {
312 LOG(WARNING) << "Long wait of " << PrettyDuration(total_delay) << " for "
313 << *thread << " suspension!";
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
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700451void ThreadList::SuspendAll(const char* cause) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700452 Thread* self = Thread::Current();
453
Jeff Haoc5d824a2014-07-28 18:35:38 -0700454 if (self != nullptr) {
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700455 VLOG(threads) << *self << " SuspendAll for " << cause << " starting...";
Jeff Haoc5d824a2014-07-28 18:35:38 -0700456 } else {
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700457 VLOG(threads) << "Thread[null] SuspendAll for " << cause << " starting...";
Jeff Haoc5d824a2014-07-28 18:35:38 -0700458 }
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.
Mathieu Chartier99143862015-02-03 14:26:46 -0800486 if (!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, kThreadSuspendTimeoutMs, 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();
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700506 ATRACE_BEGIN((std::string("Mutator threads suspended for ") + cause).c_str());
Mathieu Chartier6f365cc2014-04-23 12:42:27 -0700507
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) {
Mathieu Chartier3a958aa2015-02-04 12:52:34 -0800615 const uint64_t start_time = NanoTime();
Mathieu Chartier99143862015-02-03 14:26:46 -0800616 useconds_t sleep_us = kThreadSuspendInitialSleepUs;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700617 *timed_out = false;
Mathieu Chartier99143862015-02-03 14:26:46 -0800618 Thread* const self = Thread::Current();
Mathieu Chartier82a800d2014-12-15 15:59:49 -0800619 Thread* suspended_thread = nullptr;
Brian Carlstromba32de42014-08-27 23:43:46 -0700620 VLOG(threads) << "SuspendThreadByPeer starting";
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700621 while (true) {
622 Thread* thread;
623 {
Ian Rogersf3d874c2014-07-17 18:52:42 -0700624 // Note: this will transition to runnable and potentially suspend. We ensure only one thread
625 // is requesting another suspend, to avoid deadlock, by requiring this function be called
626 // holding Locks::thread_list_suspend_thread_lock_. Its important this thread suspend rather
627 // than request thread suspension, to avoid potential cycles in threads requesting each other
628 // suspend.
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700629 ScopedObjectAccess soa(self);
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800630 MutexLock thread_list_mu(self, *Locks::thread_list_lock_);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700631 thread = Thread::FromManagedThread(soa, peer);
Brian Carlstromba32de42014-08-27 23:43:46 -0700632 if (thread == nullptr) {
Mathieu Chartier82a800d2014-12-15 15:59:49 -0800633 if (suspended_thread != nullptr) {
634 MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_);
635 // If we incremented the suspend count but the thread reset its peer, we need to
636 // re-decrement it since it is shutting down and may deadlock the runtime in
637 // ThreadList::WaitForOtherNonDaemonThreadsToExit.
638 suspended_thread->ModifySuspendCount(soa.Self(), -1, debug_suspension);
639 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700640 ThreadSuspendByPeerWarning(self, WARNING, "No such thread for suspend", peer);
Brian Carlstromba32de42014-08-27 23:43:46 -0700641 return nullptr;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700642 }
Brian Carlstromba32de42014-08-27 23:43:46 -0700643 if (!Contains(thread)) {
Mathieu Chartier82a800d2014-12-15 15:59:49 -0800644 CHECK(suspended_thread == nullptr);
Brian Carlstromba32de42014-08-27 23:43:46 -0700645 VLOG(threads) << "SuspendThreadByPeer failed for unattached thread: "
646 << reinterpret_cast<void*>(thread);
647 return nullptr;
648 }
649 VLOG(threads) << "SuspendThreadByPeer found thread: " << *thread;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700650 {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800651 MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700652 if (request_suspension) {
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800653 if (self->GetSuspendCount() > 0) {
654 // We hold the suspend count lock but another thread is trying to suspend us. Its not
655 // safe to try to suspend another thread in case we get a cycle. Start the loop again
656 // which will allow this thread to be suspended.
657 continue;
658 }
Mathieu Chartier82a800d2014-12-15 15:59:49 -0800659 CHECK(suspended_thread == nullptr);
660 suspended_thread = thread;
661 suspended_thread->ModifySuspendCount(self, +1, debug_suspension);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700662 request_suspension = false;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700663 } else {
664 // If the caller isn't requesting suspension, a suspension should have already occurred.
665 CHECK_GT(thread->GetSuspendCount(), 0);
666 }
667 // IsSuspended on the current thread will fail as the current thread is changed into
668 // Runnable above. As the suspend count is now raised if this is the current thread
669 // it will self suspend on transition to Runnable, making it hard to work with. It's simpler
670 // to just explicitly handle the current thread in the callers to this code.
671 CHECK_NE(thread, self) << "Attempt to suspend the current thread for the debugger";
672 // If thread is suspended (perhaps it was already not Runnable but didn't have a suspend
673 // count, or else we've waited and it has self suspended) or is the current thread, we're
674 // done.
675 if (thread->IsSuspended()) {
Brian Carlstromba32de42014-08-27 23:43:46 -0700676 VLOG(threads) << "SuspendThreadByPeer thread suspended: " << *thread;
Mathieu Chartierf0dc8b52014-12-17 10:13:30 -0800677 if (ATRACE_ENABLED()) {
678 std::string name;
679 thread->GetThreadName(name);
680 ATRACE_BEGIN(StringPrintf("SuspendThreadByPeer suspended %s for peer=%p", name.c_str(),
681 peer).c_str());
682 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700683 return thread;
684 }
Mathieu Chartier99143862015-02-03 14:26:46 -0800685 const uint64_t total_delay = NanoTime() - start_time;
686 if (total_delay >= MsToNs(kThreadSuspendTimeoutMs)) {
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;
Mathieu Chartier99143862015-02-03 14:26:46 -0800694 } else if (sleep_us == 0 &&
695 total_delay > static_cast<uint64_t>(kThreadSuspendMaxYieldUs) * 1000) {
696 // We have spun for kThreadSuspendMaxYieldUs time, switch to sleeps to prevent
697 // excessive CPU usage.
698 sleep_us = kThreadSuspendMaxYieldUs / 2;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700699 }
700 }
701 // Release locks and come out of runnable state.
702 }
Mathieu Chartier99143862015-02-03 14:26:46 -0800703 VLOG(threads) << "SuspendThreadByPeer waiting to allow thread chance to suspend";
704 ThreadSuspendSleep(sleep_us);
705 // This may stay at 0 if sleep_us == 0, but this is WAI since we want to avoid using usleep at
706 // all if possible. This shouldn't be an issue since time to suspend should always be small.
707 sleep_us = std::min(sleep_us * 2, kThreadSuspendMaxSleepUs);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700708 }
709}
710
Ian Rogersc7dd2952014-10-21 23:31:19 -0700711static void ThreadSuspendByThreadIdWarning(LogSeverity severity, const char* message,
712 uint32_t thread_id) {
713 LOG(severity) << StringPrintf("%s: %d", message, thread_id);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700714}
715
716Thread* ThreadList::SuspendThreadByThreadId(uint32_t thread_id, bool debug_suspension,
717 bool* timed_out) {
Mathieu Chartier3a958aa2015-02-04 12:52:34 -0800718 const uint64_t start_time = NanoTime();
Mathieu Chartier99143862015-02-03 14:26:46 -0800719 useconds_t sleep_us = kThreadSuspendInitialSleepUs;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700720 *timed_out = false;
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800721 Thread* suspended_thread = nullptr;
Mathieu Chartier99143862015-02-03 14:26:46 -0800722 Thread* const self = Thread::Current();
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700723 CHECK_NE(thread_id, kInvalidThreadId);
Brian Carlstromba32de42014-08-27 23:43:46 -0700724 VLOG(threads) << "SuspendThreadByThreadId starting";
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700725 while (true) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700726 {
Ian Rogersf3d874c2014-07-17 18:52:42 -0700727 // Note: this will transition to runnable and potentially suspend. We ensure only one thread
728 // is requesting another suspend, to avoid deadlock, by requiring this function be called
729 // holding Locks::thread_list_suspend_thread_lock_. Its important this thread suspend rather
730 // than request thread suspension, to avoid potential cycles in threads requesting each other
731 // suspend.
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700732 ScopedObjectAccess soa(self);
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800733 MutexLock thread_list_mu(self, *Locks::thread_list_lock_);
Ian Rogersf3d874c2014-07-17 18:52:42 -0700734 Thread* thread = nullptr;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700735 for (const auto& it : list_) {
736 if (it->GetThreadId() == thread_id) {
737 thread = it;
738 break;
739 }
740 }
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800741 if (thread == nullptr) {
742 CHECK(suspended_thread == nullptr) << "Suspended thread " << suspended_thread
743 << " no longer in thread list";
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700744 // There's a race in inflating a lock and the owner giving up ownership and then dying.
745 ThreadSuspendByThreadIdWarning(WARNING, "No such thread id for suspend", thread_id);
Brian Carlstromba32de42014-08-27 23:43:46 -0700746 return nullptr;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700747 }
Brian Carlstromba32de42014-08-27 23:43:46 -0700748 VLOG(threads) << "SuspendThreadByThreadId found thread: " << *thread;
749 DCHECK(Contains(thread));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700750 {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800751 MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_);
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800752 if (suspended_thread == nullptr) {
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800753 if (self->GetSuspendCount() > 0) {
754 // We hold the suspend count lock but another thread is trying to suspend us. Its not
755 // safe to try to suspend another thread in case we get a cycle. Start the loop again
756 // which will allow this thread to be suspended.
757 continue;
758 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700759 thread->ModifySuspendCount(self, +1, debug_suspension);
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800760 suspended_thread = thread;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700761 } else {
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800762 CHECK_EQ(suspended_thread, thread);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700763 // If the caller isn't requesting suspension, a suspension should have already occurred.
764 CHECK_GT(thread->GetSuspendCount(), 0);
765 }
766 // IsSuspended on the current thread will fail as the current thread is changed into
767 // Runnable above. As the suspend count is now raised if this is the current thread
768 // it will self suspend on transition to Runnable, making it hard to work with. It's simpler
769 // to just explicitly handle the current thread in the callers to this code.
770 CHECK_NE(thread, self) << "Attempt to suspend the current thread for the debugger";
771 // If thread is suspended (perhaps it was already not Runnable but didn't have a suspend
772 // count, or else we've waited and it has self suspended) or is the current thread, we're
773 // done.
774 if (thread->IsSuspended()) {
Mathieu Chartierf0dc8b52014-12-17 10:13:30 -0800775 if (ATRACE_ENABLED()) {
776 std::string name;
777 thread->GetThreadName(name);
778 ATRACE_BEGIN(StringPrintf("SuspendThreadByThreadId suspended %s id=%d",
779 name.c_str(), thread_id).c_str());
780 }
Brian Carlstromba32de42014-08-27 23:43:46 -0700781 VLOG(threads) << "SuspendThreadByThreadId thread suspended: " << *thread;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700782 return thread;
783 }
Mathieu Chartier99143862015-02-03 14:26:46 -0800784 const uint64_t total_delay = NanoTime() - start_time;
785 if (total_delay >= MsToNs(kThreadSuspendTimeoutMs)) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700786 ThreadSuspendByThreadIdWarning(WARNING, "Thread suspension timed out", thread_id);
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -0800787 if (suspended_thread != nullptr) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700788 thread->ModifySuspendCount(soa.Self(), -1, debug_suspension);
789 }
790 *timed_out = true;
Brian Carlstromba32de42014-08-27 23:43:46 -0700791 return nullptr;
Mathieu Chartier99143862015-02-03 14:26:46 -0800792 } else if (sleep_us == 0 &&
793 total_delay > static_cast<uint64_t>(kThreadSuspendMaxYieldUs) * 1000) {
794 // We have spun for kThreadSuspendMaxYieldUs time, switch to sleeps to prevent
795 // excessive CPU usage.
796 sleep_us = kThreadSuspendMaxYieldUs / 2;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700797 }
798 }
799 // Release locks and come out of runnable state.
800 }
Mathieu Chartier99143862015-02-03 14:26:46 -0800801 VLOG(threads) << "SuspendThreadByThreadId waiting to allow thread chance to suspend";
802 ThreadSuspendSleep(sleep_us);
803 sleep_us = std::min(sleep_us * 2, kThreadSuspendMaxSleepUs);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700804 }
805}
806
807Thread* ThreadList::FindThreadByThreadId(uint32_t thin_lock_id) {
808 Thread* self = Thread::Current();
809 MutexLock mu(self, *Locks::thread_list_lock_);
810 for (const auto& thread : list_) {
811 if (thread->GetThreadId() == thin_lock_id) {
812 CHECK(thread == self || thread->IsSuspended());
813 return thread;
814 }
815 }
816 return NULL;
817}
818
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700819void ThreadList::SuspendAllForDebugger() {
820 Thread* self = Thread::Current();
821 Thread* debug_thread = Dbg::GetDebugThread();
822
823 VLOG(threads) << *self << " SuspendAllForDebugger starting...";
824
825 {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800826 MutexLock thread_list_mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700827 {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800828 MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700829 // Update global suspend all state for attaching threads.
Sebastien Hertz253fa552014-10-14 17:27:15 +0200830 DCHECK_GE(suspend_all_count_, debug_suspend_all_count_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700831 ++suspend_all_count_;
832 ++debug_suspend_all_count_;
833 // Increment everybody's suspend count (except our own).
Mathieu Chartier02e25112013-08-14 16:14:24 -0700834 for (const auto& thread : list_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700835 if (thread == self || thread == debug_thread) {
836 continue;
837 }
838 VLOG(threads) << "requesting thread suspend: " << *thread;
Ian Rogers01ae5802012-09-28 16:14:01 -0700839 thread->ModifySuspendCount(self, +1, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700840 }
841 }
842 }
843
Ian Rogers66aee5c2012-08-15 17:17:47 -0700844 // Block on the mutator lock until all Runnable threads release their share of access then
845 // immediately unlock again.
846#if HAVE_TIMED_RWLOCK
847 // Timeout if we wait more than 30 seconds.
Ian Rogersc604d732012-10-14 16:09:54 -0700848 if (!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0)) {
Sebastien Hertzbae182c2013-12-17 10:42:03 +0100849 UnsafeLogFatalForThreadSuspendAllTimeout();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700850 } else {
Ian Rogers81d425b2012-09-27 16:03:43 -0700851 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700852 }
Ian Rogers66aee5c2012-08-15 17:17:47 -0700853#else
Ian Rogers81d425b2012-09-27 16:03:43 -0700854 Locks::mutator_lock_->ExclusiveLock(self);
855 Locks::mutator_lock_->ExclusiveUnlock(self);
Ian Rogers66aee5c2012-08-15 17:17:47 -0700856#endif
Ian Rogers50b35e22012-10-04 10:09:15 -0700857 AssertThreadsAreSuspended(self, self, debug_thread);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700858
Sebastien Hertzed2be172014-08-19 15:33:43 +0200859 VLOG(threads) << *self << " SuspendAllForDebugger complete";
Elliott Hughes01158d72011-09-19 19:47:10 -0700860}
861
Elliott Hughes475fc232011-10-25 15:00:35 -0700862void ThreadList::SuspendSelfForDebugger() {
Sebastien Hertz1558b572015-02-25 15:05:59 +0100863 Thread* const self = Thread::Current();
864 self->SetReadyForDebugInvoke(true);
Elliott Hughes01158d72011-09-19 19:47:10 -0700865
Elliott Hughes475fc232011-10-25 15:00:35 -0700866 // The debugger thread must not suspend itself due to debugger activity!
867 Thread* debug_thread = Dbg::GetDebugThread();
868 CHECK(debug_thread != NULL);
869 CHECK(self != debug_thread);
jeffhaoa77f0f62012-12-05 17:19:31 -0800870 CHECK_NE(self->GetState(), kRunnable);
871 Locks::mutator_lock_->AssertNotHeld(self);
Elliott Hughes475fc232011-10-25 15:00:35 -0700872
jeffhaoa77f0f62012-12-05 17:19:31 -0800873 {
874 // Collisions with other suspends aren't really interesting. We want
875 // to ensure that we're the only one fiddling with the suspend count
876 // though.
877 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
878 self->ModifySuspendCount(self, +1, true);
Ian Rogersdd7624d2014-03-14 17:43:00 -0700879 CHECK_GT(self->GetSuspendCount(), 0);
jeffhaoa77f0f62012-12-05 17:19:31 -0800880 }
Elliott Hughes475fc232011-10-25 15:00:35 -0700881
Elliott Hughes1f729aa2012-03-02 13:55:41 -0800882 VLOG(threads) << *self << " self-suspending (debugger)";
Elliott Hughes475fc232011-10-25 15:00:35 -0700883
Sebastien Hertz21e729c2014-02-18 14:16:00 +0100884 // Tell JDWP we've completed invocation and are ready to suspend.
Sebastien Hertz1558b572015-02-25 15:05:59 +0100885 DebugInvokeReq* const pReq = self->GetInvokeReq();
886 if (pReq != nullptr) {
887 // Clear debug invoke request before signaling.
888 self->ClearDebugInvokeReq();
Sebastien Hertz21e729c2014-02-18 14:16:00 +0100889
890 VLOG(jdwp) << "invoke complete, signaling";
891 MutexLock mu(self, pReq->lock);
892 pReq->cond.Signal(self);
893 }
894
Elliott Hughes475fc232011-10-25 15:00:35 -0700895 // Tell JDWP that we've completed suspension. The JDWP thread can't
896 // tell us to resume before we're fully asleep because we hold the
897 // suspend count lock.
898 Dbg::ClearWaitForEventThread();
899
jeffhaoa77f0f62012-12-05 17:19:31 -0800900 {
901 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogersdd7624d2014-03-14 17:43:00 -0700902 while (self->GetSuspendCount() != 0) {
jeffhaoa77f0f62012-12-05 17:19:31 -0800903 Thread::resume_cond_->Wait(self);
Ian Rogersdd7624d2014-03-14 17:43:00 -0700904 if (self->GetSuspendCount() != 0) {
jeffhaoa77f0f62012-12-05 17:19:31 -0800905 // The condition was signaled but we're still suspended. This
Sebastien Hertzf272af42014-09-18 10:20:42 +0200906 // can happen when we suspend then resume all threads to
907 // update instrumentation or compute monitor info. This can
908 // also happen if the debugger lets go while a SIGQUIT thread
jeffhaoa77f0f62012-12-05 17:19:31 -0800909 // dump event is pending (assuming SignalCatcher was resumed for
910 // just long enough to try to grab the thread-suspend lock).
Sebastien Hertzf272af42014-09-18 10:20:42 +0200911 VLOG(jdwp) << *self << " still suspended after undo "
912 << "(suspend count=" << self->GetSuspendCount() << ", "
913 << "debug suspend count=" << self->GetDebugSuspendCount() << ")";
jeffhaoa77f0f62012-12-05 17:19:31 -0800914 }
Elliott Hughes475fc232011-10-25 15:00:35 -0700915 }
Ian Rogersdd7624d2014-03-14 17:43:00 -0700916 CHECK_EQ(self->GetSuspendCount(), 0);
Elliott Hughes475fc232011-10-25 15:00:35 -0700917 }
jeffhaoa77f0f62012-12-05 17:19:31 -0800918
Sebastien Hertz1558b572015-02-25 15:05:59 +0100919 self->SetReadyForDebugInvoke(false);
Elliott Hughes1f729aa2012-03-02 13:55:41 -0800920 VLOG(threads) << *self << " self-reviving (debugger)";
Elliott Hughes475fc232011-10-25 15:00:35 -0700921}
922
Sebastien Hertz253fa552014-10-14 17:27:15 +0200923void ThreadList::ResumeAllForDebugger() {
924 Thread* self = Thread::Current();
925 Thread* debug_thread = Dbg::GetDebugThread();
Sebastien Hertz253fa552014-10-14 17:27:15 +0200926
927 VLOG(threads) << *self << " ResumeAllForDebugger starting...";
928
929 // Threads can't resume if we exclusively hold the mutator lock.
930 Locks::mutator_lock_->AssertNotExclusiveHeld(self);
931
932 {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800933 MutexLock thread_list_mu(self, *Locks::thread_list_lock_);
Sebastien Hertz253fa552014-10-14 17:27:15 +0200934 {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800935 MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_);
Sebastien Hertz253fa552014-10-14 17:27:15 +0200936 // Update global suspend all state for attaching threads.
937 DCHECK_GE(suspend_all_count_, debug_suspend_all_count_);
Sebastien Hertzf9d233d2015-01-09 14:51:41 +0100938 if (debug_suspend_all_count_ > 0) {
Sebastien Hertz253fa552014-10-14 17:27:15 +0200939 --suspend_all_count_;
940 --debug_suspend_all_count_;
Sebastien Hertz253fa552014-10-14 17:27:15 +0200941 } else {
942 // We've been asked to resume all threads without being asked to
Sebastien Hertzf9d233d2015-01-09 14:51:41 +0100943 // suspend them all before. That may happen if a debugger tries
944 // to resume some suspended threads (with suspend count == 1)
945 // at once with a VirtualMachine.Resume command. Let's print a
946 // warning.
Sebastien Hertz253fa552014-10-14 17:27:15 +0200947 LOG(WARNING) << "Debugger attempted to resume all threads without "
948 << "having suspended them all before.";
949 }
Sebastien Hertzf9d233d2015-01-09 14:51:41 +0100950 // Decrement everybody's suspend count (except our own).
951 for (const auto& thread : list_) {
952 if (thread == self || thread == debug_thread) {
953 continue;
954 }
955 if (thread->GetDebugSuspendCount() == 0) {
956 // This thread may have been individually resumed with ThreadReference.Resume.
957 continue;
958 }
959 VLOG(threads) << "requesting thread resume: " << *thread;
960 thread->ModifySuspendCount(self, -1, true);
961 }
Sebastien Hertz253fa552014-10-14 17:27:15 +0200962 }
963 }
964
Sebastien Hertzf9d233d2015-01-09 14:51:41 +0100965 {
Sebastien Hertz253fa552014-10-14 17:27:15 +0200966 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
967 Thread::resume_cond_->Broadcast(self);
968 }
969
970 VLOG(threads) << *self << " ResumeAllForDebugger complete";
971}
972
Elliott Hughes234ab152011-10-26 14:02:26 -0700973void ThreadList::UndoDebuggerSuspensions() {
974 Thread* self = Thread::Current();
975
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800976 VLOG(threads) << *self << " UndoDebuggerSuspensions starting";
Elliott Hughes234ab152011-10-26 14:02:26 -0700977
978 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700979 MutexLock mu(self, *Locks::thread_list_lock_);
980 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700981 // Update global suspend all state for attaching threads.
982 suspend_all_count_ -= debug_suspend_all_count_;
983 debug_suspend_all_count_ = 0;
984 // Update running threads.
Mathieu Chartier02e25112013-08-14 16:14:24 -0700985 for (const auto& thread : list_) {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700986 if (thread == self || thread->GetDebugSuspendCount() == 0) {
Elliott Hughes234ab152011-10-26 14:02:26 -0700987 continue;
988 }
Ian Rogersdd7624d2014-03-14 17:43:00 -0700989 thread->ModifySuspendCount(self, -thread->GetDebugSuspendCount(), true);
Elliott Hughes234ab152011-10-26 14:02:26 -0700990 }
991 }
992
993 {
Ian Rogers81d425b2012-09-27 16:03:43 -0700994 MutexLock mu(self, *Locks::thread_suspend_count_lock_);
Ian Rogersc604d732012-10-14 16:09:54 -0700995 Thread::resume_cond_->Broadcast(self);
Elliott Hughes234ab152011-10-26 14:02:26 -0700996 }
997
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800998 VLOG(threads) << "UndoDebuggerSuspensions(" << *self << ") complete";
Elliott Hughes234ab152011-10-26 14:02:26 -0700999}
1000
Elliott Hughese52e49b2012-04-02 16:05:44 -07001001void ThreadList::WaitForOtherNonDaemonThreadsToExit() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001002 Thread* self = Thread::Current();
1003 Locks::mutator_lock_->AssertNotHeld(self);
Mathieu Chartier91e56692015-03-03 13:51:04 -08001004 while (true) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001005 {
1006 // No more threads can be born after we start to shutdown.
1007 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001008 CHECK(Runtime::Current()->IsShuttingDownLocked());
Ian Rogers120f1c72012-09-28 17:17:10 -07001009 CHECK_EQ(Runtime::Current()->NumberOfThreadsBeingBorn(), 0U);
1010 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001011 MutexLock mu(self, *Locks::thread_list_lock_);
Mathieu Chartier91e56692015-03-03 13:51:04 -08001012 // Also wait for any threads that are unregistering to finish. This is required so that no
1013 // threads access the thread list after it is deleted. TODO: This may not work for user daemon
1014 // threads since they could unregister at the wrong time.
1015 bool done = unregistering_count_ == 0;
1016 if (done) {
1017 for (const auto& thread : list_) {
1018 if (thread != self && !thread->IsDaemon()) {
1019 done = false;
1020 break;
1021 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001022 }
1023 }
Mathieu Chartier91e56692015-03-03 13:51:04 -08001024 if (done) {
1025 break;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001026 }
Mathieu Chartier91e56692015-03-03 13:51:04 -08001027 // Wait for another thread to exit before re-checking.
1028 Locks::thread_exit_cond_->Wait(self);
1029 }
Elliott Hughes038a8062011-09-18 14:12:41 -07001030}
1031
1032void ThreadList::SuspendAllDaemonThreads() {
Ian Rogers81d425b2012-09-27 16:03:43 -07001033 Thread* self = Thread::Current();
1034 MutexLock mu(self, *Locks::thread_list_lock_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001035 { // Tell all the daemons it's time to suspend.
Ian Rogers81d425b2012-09-27 16:03:43 -07001036 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001037 for (const auto& thread : list_) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001038 // This is only run after all non-daemon threads have exited, so the remainder should all be
1039 // daemons.
Ian Rogers7e762862012-10-22 15:45:08 -07001040 CHECK(thread->IsDaemon()) << *thread;
Ian Rogers81d425b2012-09-27 16:03:43 -07001041 if (thread != self) {
Ian Rogers01ae5802012-09-28 16:14:01 -07001042 thread->ModifySuspendCount(self, +1, false);
Elliott Hughese52e49b2012-04-02 16:05:44 -07001043 }
Elliott Hughes038a8062011-09-18 14:12:41 -07001044 }
1045 }
Elliott Hughes038a8062011-09-18 14:12:41 -07001046 // Give the threads a chance to suspend, complaining if they're slow.
1047 bool have_complained = false;
1048 for (int i = 0; i < 10; ++i) {
1049 usleep(200 * 1000);
1050 bool all_suspended = true;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001051 for (const auto& thread : list_) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001052 if (thread != self && thread->GetState() == kRunnable) {
Elliott Hughes038a8062011-09-18 14:12:41 -07001053 if (!have_complained) {
1054 LOG(WARNING) << "daemon thread not yet suspended: " << *thread;
1055 have_complained = true;
1056 }
1057 all_suspended = false;
1058 }
1059 }
1060 if (all_suspended) {
1061 return;
1062 }
1063 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001064 LOG(ERROR) << "suspend all daemons failed";
1065}
1066void ThreadList::Register(Thread* self) {
1067 DCHECK_EQ(self, Thread::Current());
1068
1069 if (VLOG_IS_ON(threads)) {
1070 std::ostringstream oss;
1071 self->ShortDump(oss); // We don't hold the mutator_lock_ yet and so cannot call Dump.
Ian Rogers5a9ba012014-05-19 13:28:52 -07001072 LOG(INFO) << "ThreadList::Register() " << *self << "\n" << oss.str();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001073 }
1074
1075 // Atomically add self to the thread list and make its thread_suspend_count_ reflect ongoing
1076 // SuspendAll requests.
Ian Rogers81d425b2012-09-27 16:03:43 -07001077 MutexLock mu(self, *Locks::thread_list_lock_);
1078 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogersdd7624d2014-03-14 17:43:00 -07001079 CHECK_GE(suspend_all_count_, debug_suspend_all_count_);
Ian Rogers2966e132014-04-02 08:34:36 -07001080 // Modify suspend count in increments of 1 to maintain invariants in ModifySuspendCount. While
1081 // this isn't particularly efficient the suspend counts are most commonly 0 or 1.
1082 for (int delta = debug_suspend_all_count_; delta > 0; delta--) {
1083 self->ModifySuspendCount(self, +1, true);
Ian Rogersdd7624d2014-03-14 17:43:00 -07001084 }
Ian Rogers2966e132014-04-02 08:34:36 -07001085 for (int delta = suspend_all_count_ - debug_suspend_all_count_; delta > 0; delta--) {
1086 self->ModifySuspendCount(self, +1, false);
Ian Rogers01ae5802012-09-28 16:14:01 -07001087 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001088 CHECK(!Contains(self));
1089 list_.push_back(self);
1090}
1091
1092void ThreadList::Unregister(Thread* self) {
1093 DCHECK_EQ(self, Thread::Current());
Ian Rogers68d8b422014-07-17 11:09:10 -07001094 CHECK_NE(self->GetState(), kRunnable);
1095 Locks::mutator_lock_->AssertNotHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001096
1097 VLOG(threads) << "ThreadList::Unregister() " << *self;
1098
Mathieu Chartier91e56692015-03-03 13:51:04 -08001099 {
1100 MutexLock mu(self, *Locks::thread_list_lock_);
1101 ++unregistering_count_;
1102 }
1103
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001104 // Any time-consuming destruction, plus anything that can call back into managed code or
Mathieu Chartier91e56692015-03-03 13:51:04 -08001105 // suspend and so on, must happen at this point, and not in ~Thread. The self->Destroy is what
1106 // causes the threads to join. It is important to do this after incrementing unregistering_count_
1107 // since we want the runtime to wait for the daemon threads to exit before deleting the thread
1108 // list.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001109 self->Destroy();
1110
Jeff Haoe094b872014-10-14 13:12:01 -07001111 // If tracing, remember thread id and name before thread exits.
1112 Trace::StoreExitingThreadInfo(self);
1113
Ian Rogersdd7624d2014-03-14 17:43:00 -07001114 uint32_t thin_lock_id = self->GetThreadId();
Mathieu Chartier91e56692015-03-03 13:51:04 -08001115 while (true) {
Ian Rogerscfaa4552012-11-26 21:00:08 -08001116 // Remove and delete the Thread* while holding the thread_list_lock_ and
1117 // thread_suspend_count_lock_ so that the unregistering thread cannot be suspended.
Ian Rogers0878d652013-04-18 17:38:35 -07001118 // Note: deliberately not using MutexLock that could hold a stale self pointer.
Mathieu Chartier91e56692015-03-03 13:51:04 -08001119 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogersa2af5c72014-09-15 15:17:07 -07001120 if (!Contains(self)) {
Mathieu Chartier9db831a2015-02-24 17:20:30 -08001121 std::string thread_name;
1122 self->GetThreadName(thread_name);
Ian Rogersa2af5c72014-09-15 15:17:07 -07001123 std::ostringstream os;
1124 DumpNativeStack(os, GetTid(), " native: ", nullptr);
Mathieu Chartier9db831a2015-02-24 17:20:30 -08001125 LOG(ERROR) << "Request to unregister unattached thread " << thread_name << "\n" << os.str();
Mathieu Chartier91e56692015-03-03 13:51:04 -08001126 break;
Ian Rogersa2af5c72014-09-15 15:17:07 -07001127 } else {
Mathieu Chartier91e56692015-03-03 13:51:04 -08001128 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
Ian Rogersa2af5c72014-09-15 15:17:07 -07001129 if (!self->IsSuspended()) {
1130 list_.remove(self);
Mathieu Chartier91e56692015-03-03 13:51:04 -08001131 break;
Ian Rogersa2af5c72014-09-15 15:17:07 -07001132 }
Ian Rogers68d8b422014-07-17 11:09:10 -07001133 }
Mathieu Chartier91e56692015-03-03 13:51:04 -08001134 // We failed to remove the thread due to a suspend request, loop and try again.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001135 }
Mathieu Chartier91e56692015-03-03 13:51:04 -08001136 delete self;
1137
Mathieu Chartier5f51d4b2013-12-03 14:24:05 -08001138 // Release the thread ID after the thread is finished and deleted to avoid cases where we can
1139 // temporarily have multiple threads with the same thread id. When this occurs, it causes
1140 // problems in FindThreadByThreadId / SuspendThreadByThreadId.
1141 ReleaseThreadId(nullptr, thin_lock_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001142
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001143 // Clear the TLS data, so that the underlying native thread is recognizably detached.
1144 // (It may wish to reattach later.)
1145 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, NULL), "detach self");
1146
1147 // Signal that a thread just detached.
Mathieu Chartier91e56692015-03-03 13:51:04 -08001148 MutexLock mu(nullptr, *Locks::thread_list_lock_);
1149 --unregistering_count_;
1150 Locks::thread_exit_cond_->Broadcast(nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001151}
1152
1153void ThreadList::ForEach(void (*callback)(Thread*, void*), void* context) {
Mathieu Chartier02e25112013-08-14 16:14:24 -07001154 for (const auto& thread : list_) {
1155 callback(thread, context);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001156 }
1157}
1158
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001159void ThreadList::VisitRoots(RootVisitor* visitor) const {
Ian Rogers81d425b2012-09-27 16:03:43 -07001160 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001161 for (const auto& thread : list_) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001162 thread->VisitRoots(visitor);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001163 }
Elliott Hughes038a8062011-09-18 14:12:41 -07001164}
1165
Ian Rogerscfaa4552012-11-26 21:00:08 -08001166uint32_t ThreadList::AllocThreadId(Thread* self) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001167 MutexLock mu(self, *Locks::allocated_thread_ids_lock_);
Elliott Hughes8daa0922011-09-11 13:46:25 -07001168 for (size_t i = 0; i < allocated_ids_.size(); ++i) {
1169 if (!allocated_ids_[i]) {
1170 allocated_ids_.set(i);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001171 return i + 1; // Zero is reserved to mean "invalid".
Elliott Hughes8daa0922011-09-11 13:46:25 -07001172 }
1173 }
1174 LOG(FATAL) << "Out of internal thread ids";
1175 return 0;
1176}
1177
Ian Rogerscfaa4552012-11-26 21:00:08 -08001178void ThreadList::ReleaseThreadId(Thread* self, uint32_t id) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001179 MutexLock mu(self, *Locks::allocated_thread_ids_lock_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001180 --id; // Zero is reserved to mean "invalid".
Elliott Hughes8daa0922011-09-11 13:46:25 -07001181 DCHECK(allocated_ids_[id]) << id;
1182 allocated_ids_.reset(id);
1183}
1184
Elliott Hughes8daa0922011-09-11 13:46:25 -07001185} // namespace art