Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1 | /* |
| 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 Chartier | 6f365cc | 2014-04-23 12:42:27 -0700 | [diff] [blame] | 19 | #define ATRACE_TAG ATRACE_TAG_DALVIK |
| 20 | |
| 21 | #include <cutils/trace.h> |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 22 | #include <dirent.h> |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 23 | #include <ScopedLocalRef.h> |
| 24 | #include <ScopedUtfChars.h> |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 25 | #include <sys/types.h> |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 26 | #include <unistd.h> |
| 27 | |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 28 | #include <sstream> |
| 29 | |
Mathieu Chartier | 70a596d | 2014-12-17 14:56:47 -0800 | [diff] [blame] | 30 | #include "base/histogram-inl.h" |
Elliott Hughes | 76b6167 | 2012-12-12 17:47:30 -0800 | [diff] [blame] | 31 | #include "base/mutex.h" |
Hiroshi Yamauchi | 967a0ad | 2013-09-10 16:24:21 -0700 | [diff] [blame] | 32 | #include "base/mutex-inl.h" |
Sameer Abu Asal | a843954 | 2013-02-14 16:06:42 -0800 | [diff] [blame] | 33 | #include "base/timing_logger.h" |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 34 | #include "debugger.h" |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 35 | #include "jni_internal.h" |
| 36 | #include "lock_word.h" |
| 37 | #include "monitor.h" |
| 38 | #include "scoped_thread_state_change.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 39 | #include "thread.h" |
Jeff Hao | e094b87 | 2014-10-14 13:12:01 -0700 | [diff] [blame] | 40 | #include "trace.h" |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 41 | #include "utils.h" |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 42 | #include "well_known_classes.h" |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 43 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 44 | namespace art { |
| 45 | |
Mathieu Chartier | 251755c | 2014-07-15 18:10:25 -0700 | [diff] [blame] | 46 | static constexpr uint64_t kLongThreadSuspendThreshold = MsToNs(5); |
| 47 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 48 | ThreadList::ThreadList() |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 49 | : suspend_all_count_(0), debug_suspend_all_count_(0), |
Mathieu Chartier | 70a596d | 2014-12-17 14:56:47 -0800 | [diff] [blame] | 50 | thread_exit_cond_("thread exit condition variable", *Locks::thread_list_lock_), |
| 51 | suspend_all_historam_("suspend all histogram", 16, 64) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 52 | CHECK(Monitor::IsValidLockWord(LockWord::FromThinLockId(kMaxThreadId, 1))); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | ThreadList::~ThreadList() { |
Elliott Hughes | e52e49b | 2012-04-02 16:05:44 -0700 | [diff] [blame] | 56 | // Detach the current thread if necessary. If we failed to start, there might not be any threads. |
Elliott Hughes | 6a14433 | 2012-04-03 13:07:11 -0700 | [diff] [blame] | 57 | // We need to detach the current thread here in case there's another thread waiting to join with |
| 58 | // us. |
Mathieu Chartier | fec72f4 | 2014-10-09 12:57:58 -0700 | [diff] [blame] | 59 | 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 Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 66 | Runtime::Current()->DetachCurrentThread(); |
| 67 | } |
Elliott Hughes | 6a14433 | 2012-04-03 13:07:11 -0700 | [diff] [blame] | 68 | |
| 69 | WaitForOtherNonDaemonThreadsToExit(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 70 | // TODO: there's an unaddressed race here where a thread may attach during shutdown, see |
| 71 | // Thread::Init. |
Elliott Hughes | 6a14433 | 2012-04-03 13:07:11 -0700 | [diff] [blame] | 72 | SuspendAllDaemonThreads(); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | bool ThreadList::Contains(Thread* thread) { |
| 76 | return find(list_.begin(), list_.end(), thread) != list_.end(); |
| 77 | } |
| 78 | |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 79 | bool ThreadList::Contains(pid_t tid) { |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 80 | for (const auto& thread : list_) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 81 | if (thread->GetTid() == tid) { |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 82 | return true; |
| 83 | } |
| 84 | } |
| 85 | return false; |
| 86 | } |
| 87 | |
Brian Carlstrom | 24a3c2e | 2011-10-17 18:07:52 -0700 | [diff] [blame] | 88 | pid_t ThreadList::GetLockOwner() { |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 89 | return Locks::thread_list_lock_->GetExclusiveOwnerTid(); |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 90 | } |
| 91 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 92 | void ThreadList::DumpNativeStacks(std::ostream& os) { |
| 93 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
| 94 | for (const auto& thread : list_) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 95 | os << "DUMPING THREAD " << thread->GetTid() << "\n"; |
Christopher Ferris | a2cee18 | 2014-04-16 19:13:59 -0700 | [diff] [blame] | 96 | DumpNativeStack(os, thread->GetTid(), "\t"); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 97 | os << "\n"; |
| 98 | } |
| 99 | } |
| 100 | |
Elliott Hughes | c967f78 | 2012-04-16 10:23:15 -0700 | [diff] [blame] | 101 | void ThreadList::DumpForSigQuit(std::ostream& os) { |
Mathieu Chartier | 70a596d | 2014-12-17 14:56:47 -0800 | [diff] [blame] | 102 | { |
| 103 | ScopedObjectAccess soa(Thread::Current()); |
Mathieu Chartier | 23f6e69 | 2014-12-18 18:24:39 -0800 | [diff] [blame] | 104 | // 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 Chartier | 70a596d | 2014-12-17 14:56:47 -0800 | [diff] [blame] | 110 | } |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 111 | Dump(os); |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 112 | DumpUnattachedThreads(os); |
| 113 | } |
| 114 | |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 115 | static 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 Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 118 | Thread::DumpState(os, NULL, tid); |
| 119 | DumpKernelStack(os, tid, " kernel: ", false); |
Brian Carlstrom | ed8b723 | 2012-06-27 17:54:47 -0700 | [diff] [blame] | 120 | // 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 Ferris | a2cee18 | 2014-04-16 19:13:59 -0700 | [diff] [blame] | 123 | DumpNativeStack(os, tid, " native: "); |
Brian Carlstrom | ed8b723 | 2012-06-27 17:54:47 -0700 | [diff] [blame] | 124 | } |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 125 | os << "\n"; |
| 126 | } |
| 127 | |
| 128 | void ThreadList::DumpUnattachedThreads(std::ostream& os) { |
| 129 | DIR* d = opendir("/proc/self/task"); |
| 130 | if (!d) { |
| 131 | return; |
| 132 | } |
| 133 | |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 134 | Thread* self = Thread::Current(); |
Elliott Hughes | 4696b5b | 2012-10-30 10:35:10 -0700 | [diff] [blame] | 135 | dirent* e; |
| 136 | while ((e = readdir(d)) != NULL) { |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 137 | char* end; |
Elliott Hughes | 4696b5b | 2012-10-30 10:35:10 -0700 | [diff] [blame] | 138 | pid_t tid = strtol(e->d_name, &end, 10); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 139 | if (!*end) { |
| 140 | bool contains; |
| 141 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 142 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 143 | contains = Contains(tid); |
| 144 | } |
| 145 | if (!contains) { |
| 146 | DumpUnattachedThread(os, tid); |
| 147 | } |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 148 | } |
| 149 | } |
| 150 | closedir(d); |
Elliott Hughes | ff73806 | 2012-02-03 15:00:42 -0800 | [diff] [blame] | 151 | } |
| 152 | |
Andreas Gampe | 4a3d19b | 2015-01-09 17:54:51 -0800 | [diff] [blame] | 153 | // Dump checkpoint timeout in milliseconds. Larger amount on the host, as dumping will invoke |
| 154 | // addr2line when available. |
Andreas Gampe | 1e4b0ca | 2015-01-14 09:06:32 -0800 | [diff] [blame] | 155 | static constexpr uint32_t kDumpWaitTimeout = kIsTargetBuild ? 10000 : 20000; |
Andreas Gampe | 4a3d19b | 2015-01-09 17:54:51 -0800 | [diff] [blame] | 156 | |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 157 | // A closure used by Thread::Dump. |
| 158 | class 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 Li | dd9943d | 2015-02-02 14:24:44 +0800 | [diff] [blame^] | 177 | if (thread->GetState() == kRunnable) { |
| 178 | barrier_.Pass(self); |
| 179 | } |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 180 | } |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 181 | |
| 182 | void WaitForThreadsToRunThroughCheckpoint(size_t threads_running_checkpoint) { |
| 183 | Thread* self = Thread::Current(); |
| 184 | ScopedThreadStateChange tsc(self, kWaitingForCheckPointsToRun); |
Andreas Gampe | 1e4b0ca | 2015-01-14 09:06:32 -0800 | [diff] [blame] | 185 | bool timed_out = barrier_.Increment(self, threads_running_checkpoint, kDumpWaitTimeout); |
Ian Rogers | 2156ff1 | 2014-09-13 19:20:54 -0700 | [diff] [blame] | 186 | if (timed_out) { |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 187 | // Avoid a recursive abort. |
| 188 | LOG((kIsDebugBuild && (gAborting == 0)) ? FATAL : ERROR) |
| 189 | << "Unexpected time out during dump checkpoint."; |
Ian Rogers | 2156ff1 | 2014-09-13 19:20:54 -0700 | [diff] [blame] | 190 | } |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 191 | } |
| 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 | |
| 200 | void 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 Li | dd9943d | 2015-02-02 14:24:44 +0800 | [diff] [blame^] | 207 | if (threads_running_checkpoint != 0) { |
| 208 | checkpoint.WaitForThreadsToRunThroughCheckpoint(threads_running_checkpoint); |
| 209 | } |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 210 | } |
| 211 | |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 212 | void 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 Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 215 | for (const auto& thread : list_) { |
jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 216 | if (thread != ignore1 && thread != ignore2) { |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 217 | CHECK(thread->IsSuspended()) |
| 218 | << "\nUnsuspended thread: <<" << *thread << "\n" |
| 219 | << "self: <<" << *Thread::Current(); |
| 220 | } |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 221 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 222 | } |
| 223 | |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 224 | #if HAVE_TIMED_RWLOCK |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 225 | // Attempt to rectify locks so that we dump thread list with required locks before exiting. |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 226 | static void UnsafeLogFatalForThreadSuspendAllTimeout() __attribute__((noreturn)); |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 227 | static void UnsafeLogFatalForThreadSuspendAllTimeout() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 228 | Runtime* runtime = Runtime::Current(); |
| 229 | std::ostringstream ss; |
| 230 | ss << "Thread suspend timeout\n"; |
Mathieu Chartier | 5869a2c | 2014-10-08 14:26:23 -0700 | [diff] [blame] | 231 | Locks::mutator_lock_->Dump(ss); |
| 232 | ss << "\n"; |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 233 | runtime->GetThreadList()->Dump(ss); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 234 | LOG(FATAL) << ss.str(); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 235 | exit(0); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 236 | } |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 237 | #endif |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 238 | |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 239 | // 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 Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 243 | static void ThreadSuspendSleep(useconds_t* delay_us, useconds_t* total_delay_us) { |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 244 | 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 Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 259 | size_t ThreadList::RunCheckpoint(Closure* checkpoint_function) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 260 | Thread* self = Thread::Current(); |
Mathieu Chartier | 6dda898 | 2014-03-06 11:11:48 -0800 | [diff] [blame] | 261 | Locks::mutator_lock_->AssertNotExclusiveHeld(self); |
| 262 | Locks::thread_list_lock_->AssertNotHeld(self); |
| 263 | Locks::thread_suspend_count_lock_->AssertNotHeld(self); |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 264 | if (kDebugLocking && gAborting == 0) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 265 | 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 274 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 275 | for (const auto& thread : list_) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 276 | if (thread != self) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 277 | while (true) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 278 | if (thread->RequestCheckpoint(checkpoint_function)) { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 279 | // This thread will run its checkpoint some time in the near future. |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 280 | count++; |
| 281 | break; |
| 282 | } else { |
| 283 | // We are probably suspended, try to make sure that we stay suspended. |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 284 | // The thread switched back to runnable. |
| 285 | if (thread->GetState() == kRunnable) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 286 | // Spurious fail, try again. |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 287 | 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 Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 302 | for (const auto& thread : suspended_count_modified_threads) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 303 | if (!thread->IsSuspended()) { |
| 304 | // Wait until the thread is suspended. |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 305 | useconds_t total_delay_us = 0; |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 306 | do { |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 307 | useconds_t delay_us = 100; |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 308 | ThreadSuspendSleep(&delay_us, &total_delay_us); |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 309 | } while (!thread->IsSuspended()); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 310 | // 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 Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 314 | } |
| 315 | } |
| 316 | // We know for sure that the thread is suspended at this point. |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 317 | checkpoint_function->Run(thread); |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 318 | { |
| 319 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 320 | thread->ModifySuspendCount(self, -1, false); |
| 321 | } |
| 322 | } |
| 323 | |
Mathieu Chartier | 664bebf | 2012-11-12 16:54:11 -0800 | [diff] [blame] | 324 | { |
| 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 Li | dd9943d | 2015-02-02 14:24:44 +0800 | [diff] [blame^] | 331 | return count; |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 332 | } |
| 333 | |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 334 | // Request that a checkpoint function be run on all active (non-suspended) |
| 335 | // threads. Returns the number of successful requests. |
| 336 | size_t ThreadList::RunCheckpointOnRunnableThreads(Closure* checkpoint_function) { |
| 337 | Thread* self = Thread::Current(); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 338 | 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 Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 342 | |
| 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 Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 362 | // 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. |
| 366 | size_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 Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 451 | void ThreadList::SuspendAll() { |
| 452 | Thread* self = Thread::Current(); |
| 453 | |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 454 | if (self != nullptr) { |
| 455 | VLOG(threads) << *self << " SuspendAll starting..."; |
| 456 | } else { |
| 457 | VLOG(threads) << "Thread[null] SuspendAll starting..."; |
| 458 | } |
Mathieu Chartier | 6f365cc | 2014-04-23 12:42:27 -0700 | [diff] [blame] | 459 | ATRACE_BEGIN("Suspending mutator threads"); |
Mathieu Chartier | 70a596d | 2014-12-17 14:56:47 -0800 | [diff] [blame] | 460 | const uint64_t start_time = NanoTime(); |
Mathieu Chartier | 6f365cc | 2014-04-23 12:42:27 -0700 | [diff] [blame] | 461 | |
Mathieu Chartier | 6dda898 | 2014-03-06 11:11:48 -0800 | [diff] [blame] | 462 | Locks::mutator_lock_->AssertNotHeld(self); |
| 463 | Locks::thread_list_lock_->AssertNotHeld(self); |
| 464 | Locks::thread_suspend_count_lock_->AssertNotHeld(self); |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 465 | if (kDebugLocking && self != nullptr) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 466 | CHECK_NE(self->GetState(), kRunnable); |
| 467 | } |
| 468 | { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 469 | MutexLock mu(self, *Locks::thread_list_lock_); |
Mathieu Chartier | 6dda898 | 2014-03-06 11:11:48 -0800 | [diff] [blame] | 470 | 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 Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 477 | } |
Mathieu Chartier | 6dda898 | 2014-03-06 11:11:48 -0800 | [diff] [blame] | 478 | VLOG(threads) << "requesting thread suspend: " << *thread; |
| 479 | thread->ModifySuspendCount(self, +1, false); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 480 | } |
| 481 | } |
| 482 | |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 483 | // 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 Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 486 | if (!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0)) { |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 487 | UnsafeLogFatalForThreadSuspendAllTimeout(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 488 | } |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 489 | #else |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 490 | Locks::mutator_lock_->ExclusiveLock(self); |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 491 | #endif |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 492 | |
Mathieu Chartier | 70a596d | 2014-12-17 14:56:47 -0800 | [diff] [blame] | 493 | 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 Chartier | 251755c | 2014-07-15 18:10:25 -0700 | [diff] [blame] | 498 | } |
| 499 | |
Mathieu Chartier | 6dda898 | 2014-03-06 11:11:48 -0800 | [diff] [blame] | 500 | if (kDebugLocking) { |
| 501 | // Debug check that all threads are suspended. |
| 502 | AssertThreadsAreSuspended(self, self); |
| 503 | } |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 504 | |
Mathieu Chartier | 6f365cc | 2014-04-23 12:42:27 -0700 | [diff] [blame] | 505 | ATRACE_END(); |
| 506 | ATRACE_BEGIN("Mutator threads suspended"); |
| 507 | |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 508 | if (self != nullptr) { |
| 509 | VLOG(threads) << *self << " SuspendAll complete"; |
| 510 | } else { |
| 511 | VLOG(threads) << "Thread[null] SuspendAll complete"; |
| 512 | } |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 513 | } |
| 514 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 515 | void ThreadList::ResumeAll() { |
| 516 | Thread* self = Thread::Current(); |
| 517 | |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 518 | if (self != nullptr) { |
| 519 | VLOG(threads) << *self << " ResumeAll starting"; |
| 520 | } else { |
| 521 | VLOG(threads) << "Thread[null] ResumeAll starting"; |
| 522 | } |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 523 | |
Mathieu Chartier | 6f365cc | 2014-04-23 12:42:27 -0700 | [diff] [blame] | 524 | ATRACE_END(); |
| 525 | ATRACE_BEGIN("Resuming mutator threads"); |
| 526 | |
Mathieu Chartier | 6dda898 | 2014-03-06 11:11:48 -0800 | [diff] [blame] | 527 | if (kDebugLocking) { |
| 528 | // Debug check that all threads are suspended. |
| 529 | AssertThreadsAreSuspended(self, self); |
| 530 | } |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 531 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 532 | Locks::mutator_lock_->ExclusiveUnlock(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 533 | { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 534 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 535 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 536 | // Update global suspend all state for attaching threads. |
| 537 | --suspend_all_count_; |
| 538 | // Decrement the suspend counts for all threads. |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 539 | for (const auto& thread : list_) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 540 | if (thread == self) { |
| 541 | continue; |
| 542 | } |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 543 | thread->ModifySuspendCount(self, -1, false); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 544 | } |
| 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 Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 548 | if (self != nullptr) { |
| 549 | VLOG(threads) << *self << " ResumeAll waking others"; |
| 550 | } else { |
| 551 | VLOG(threads) << "Thread[null] ResumeAll waking others"; |
| 552 | } |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 553 | Thread::resume_cond_->Broadcast(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 554 | } |
Mathieu Chartier | 6f365cc | 2014-04-23 12:42:27 -0700 | [diff] [blame] | 555 | ATRACE_END(); |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 556 | |
| 557 | if (self != nullptr) { |
| 558 | VLOG(threads) << *self << " ResumeAll complete"; |
| 559 | } else { |
| 560 | VLOG(threads) << "Thread[null] ResumeAll complete"; |
| 561 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 562 | } |
| 563 | |
| 564 | void ThreadList::Resume(Thread* thread, bool for_debugger) { |
Mathieu Chartier | f0dc8b5 | 2014-12-17 10:13:30 -0800 | [diff] [blame] | 565 | // This assumes there was an ATRACE_BEGIN when we suspended the thread. |
| 566 | ATRACE_END(); |
| 567 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 568 | Thread* self = Thread::Current(); |
| 569 | DCHECK_NE(thread, self); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 570 | VLOG(threads) << "Resume(" << reinterpret_cast<void*>(thread) << ") starting..." |
| 571 | << (for_debugger ? " (debugger)" : ""); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 572 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 573 | { |
| 574 | // To check Contains. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 575 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 576 | // To check IsSuspended. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 577 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 578 | DCHECK(thread->IsSuspended()); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 579 | if (!Contains(thread)) { |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 580 | // 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 Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 584 | return; |
| 585 | } |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 586 | thread->ModifySuspendCount(self, -1, for_debugger); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 587 | } |
| 588 | |
| 589 | { |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 590 | VLOG(threads) << "Resume(" << reinterpret_cast<void*>(thread) << ") waking others"; |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 591 | MutexLock mu(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 592 | Thread::resume_cond_->Broadcast(self); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 593 | } |
| 594 | |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 595 | VLOG(threads) << "Resume(" << reinterpret_cast<void*>(thread) << ") complete"; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 596 | } |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 597 | |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 598 | static void ThreadSuspendByPeerWarning(Thread* self, LogSeverity severity, const char* message, |
| 599 | jobject peer) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 600 | 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 Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 606 | LOG(severity) << message << ": " << peer; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 607 | env->ExceptionClear(); |
| 608 | } else { |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 609 | LOG(severity) << message << ": " << peer << ":" << scoped_name_chars.c_str(); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 610 | } |
| 611 | } |
| 612 | |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 613 | Thread* 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 618 | *timed_out = false; |
| 619 | Thread* self = Thread::Current(); |
Mathieu Chartier | 82a800d | 2014-12-15 15:59:49 -0800 | [diff] [blame] | 620 | Thread* suspended_thread = nullptr; |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 621 | VLOG(threads) << "SuspendThreadByPeer starting"; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 622 | while (true) { |
| 623 | Thread* thread; |
| 624 | { |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 625 | // 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 630 | ScopedObjectAccess soa(self); |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 631 | MutexLock thread_list_mu(self, *Locks::thread_list_lock_); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 632 | thread = Thread::FromManagedThread(soa, peer); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 633 | if (thread == nullptr) { |
Mathieu Chartier | 82a800d | 2014-12-15 15:59:49 -0800 | [diff] [blame] | 634 | 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 641 | ThreadSuspendByPeerWarning(self, WARNING, "No such thread for suspend", peer); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 642 | return nullptr; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 643 | } |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 644 | if (!Contains(thread)) { |
Mathieu Chartier | 82a800d | 2014-12-15 15:59:49 -0800 | [diff] [blame] | 645 | CHECK(suspended_thread == nullptr); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 646 | VLOG(threads) << "SuspendThreadByPeer failed for unattached thread: " |
| 647 | << reinterpret_cast<void*>(thread); |
| 648 | return nullptr; |
| 649 | } |
| 650 | VLOG(threads) << "SuspendThreadByPeer found thread: " << *thread; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 651 | { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 652 | MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 653 | if (request_suspension) { |
Ian Rogers | 4ad5cd3 | 2014-11-11 23:08:07 -0800 | [diff] [blame] | 654 | 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 Chartier | 82a800d | 2014-12-15 15:59:49 -0800 | [diff] [blame] | 660 | CHECK(suspended_thread == nullptr); |
| 661 | suspended_thread = thread; |
| 662 | suspended_thread->ModifySuspendCount(self, +1, debug_suspension); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 663 | request_suspension = false; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 664 | } 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 Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 677 | VLOG(threads) << "SuspendThreadByPeer thread suspended: " << *thread; |
Mathieu Chartier | f0dc8b5 | 2014-12-17 10:13:30 -0800 | [diff] [blame] | 678 | 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 684 | return thread; |
| 685 | } |
| 686 | if (total_delay_us >= kTimeoutUs) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 687 | ThreadSuspendByPeerWarning(self, FATAL, "Thread suspension timed out", peer); |
Mathieu Chartier | 82a800d | 2014-12-15 15:59:49 -0800 | [diff] [blame] | 688 | if (suspended_thread != nullptr) { |
| 689 | CHECK_EQ(suspended_thread, thread); |
| 690 | suspended_thread->ModifySuspendCount(soa.Self(), -1, debug_suspension); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 691 | } |
| 692 | *timed_out = true; |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 693 | return nullptr; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 694 | } |
| 695 | } |
| 696 | // Release locks and come out of runnable state. |
| 697 | } |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 698 | VLOG(threads) << "SuspendThreadByPeer sleeping to allow thread chance to suspend"; |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 699 | ThreadSuspendSleep(&delay_us, &total_delay_us); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 700 | } |
| 701 | } |
| 702 | |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 703 | static void ThreadSuspendByThreadIdWarning(LogSeverity severity, const char* message, |
| 704 | uint32_t thread_id) { |
| 705 | LOG(severity) << StringPrintf("%s: %d", message, thread_id); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 706 | } |
| 707 | |
| 708 | Thread* 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 713 | *timed_out = false; |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 714 | Thread* suspended_thread = nullptr; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 715 | Thread* self = Thread::Current(); |
| 716 | CHECK_NE(thread_id, kInvalidThreadId); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 717 | VLOG(threads) << "SuspendThreadByThreadId starting"; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 718 | while (true) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 719 | { |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 720 | // 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 725 | ScopedObjectAccess soa(self); |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 726 | MutexLock thread_list_mu(self, *Locks::thread_list_lock_); |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 727 | Thread* thread = nullptr; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 728 | for (const auto& it : list_) { |
| 729 | if (it->GetThreadId() == thread_id) { |
| 730 | thread = it; |
| 731 | break; |
| 732 | } |
| 733 | } |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 734 | if (thread == nullptr) { |
| 735 | CHECK(suspended_thread == nullptr) << "Suspended thread " << suspended_thread |
| 736 | << " no longer in thread list"; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 737 | // 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 Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 739 | return nullptr; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 740 | } |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 741 | VLOG(threads) << "SuspendThreadByThreadId found thread: " << *thread; |
| 742 | DCHECK(Contains(thread)); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 743 | { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 744 | MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 745 | if (suspended_thread == nullptr) { |
Ian Rogers | 4ad5cd3 | 2014-11-11 23:08:07 -0800 | [diff] [blame] | 746 | 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 752 | thread->ModifySuspendCount(self, +1, debug_suspension); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 753 | suspended_thread = thread; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 754 | } else { |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 755 | CHECK_EQ(suspended_thread, thread); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 756 | // 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 Chartier | f0dc8b5 | 2014-12-17 10:13:30 -0800 | [diff] [blame] | 768 | 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 Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 774 | VLOG(threads) << "SuspendThreadByThreadId thread suspended: " << *thread; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 775 | return thread; |
| 776 | } |
| 777 | if (total_delay_us >= kTimeoutUs) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 778 | ThreadSuspendByThreadIdWarning(WARNING, "Thread suspension timed out", thread_id); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 779 | if (suspended_thread != nullptr) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 780 | thread->ModifySuspendCount(soa.Self(), -1, debug_suspension); |
| 781 | } |
| 782 | *timed_out = true; |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 783 | return nullptr; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 784 | } |
| 785 | } |
| 786 | // Release locks and come out of runnable state. |
| 787 | } |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 788 | VLOG(threads) << "SuspendThreadByThreadId sleeping to allow thread chance to suspend"; |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 789 | ThreadSuspendSleep(&delay_us, &total_delay_us); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 790 | } |
| 791 | } |
| 792 | |
| 793 | Thread* 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 Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 805 | void ThreadList::SuspendAllForDebugger() { |
| 806 | Thread* self = Thread::Current(); |
| 807 | Thread* debug_thread = Dbg::GetDebugThread(); |
| 808 | |
| 809 | VLOG(threads) << *self << " SuspendAllForDebugger starting..."; |
| 810 | |
| 811 | { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 812 | MutexLock thread_list_mu(self, *Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 813 | { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 814 | MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 815 | // Update global suspend all state for attaching threads. |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 816 | DCHECK_GE(suspend_all_count_, debug_suspend_all_count_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 817 | ++suspend_all_count_; |
| 818 | ++debug_suspend_all_count_; |
| 819 | // Increment everybody's suspend count (except our own). |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 820 | for (const auto& thread : list_) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 821 | if (thread == self || thread == debug_thread) { |
| 822 | continue; |
| 823 | } |
| 824 | VLOG(threads) << "requesting thread suspend: " << *thread; |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 825 | thread->ModifySuspendCount(self, +1, true); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 826 | } |
| 827 | } |
| 828 | } |
| 829 | |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 830 | // 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 Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 834 | if (!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0)) { |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 835 | UnsafeLogFatalForThreadSuspendAllTimeout(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 836 | } else { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 837 | Locks::mutator_lock_->ExclusiveUnlock(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 838 | } |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 839 | #else |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 840 | Locks::mutator_lock_->ExclusiveLock(self); |
| 841 | Locks::mutator_lock_->ExclusiveUnlock(self); |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 842 | #endif |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 843 | AssertThreadsAreSuspended(self, self, debug_thread); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 844 | |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 845 | VLOG(threads) << *self << " SuspendAllForDebugger complete"; |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 846 | } |
| 847 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 848 | void ThreadList::SuspendSelfForDebugger() { |
| 849 | Thread* self = Thread::Current(); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 850 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 851 | // 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); |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 855 | CHECK_NE(self->GetState(), kRunnable); |
| 856 | Locks::mutator_lock_->AssertNotHeld(self); |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 857 | |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 858 | { |
| 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 Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 864 | CHECK_GT(self->GetSuspendCount(), 0); |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 865 | } |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 866 | |
Elliott Hughes | 1f729aa | 2012-03-02 13:55:41 -0800 | [diff] [blame] | 867 | VLOG(threads) << *self << " self-suspending (debugger)"; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 868 | |
Sebastien Hertz | 21e729c | 2014-02-18 14:16:00 +0100 | [diff] [blame] | 869 | // 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 Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 874 | pReq->Clear(); |
Sebastien Hertz | 21e729c | 2014-02-18 14:16:00 +0100 | [diff] [blame] | 875 | |
| 876 | VLOG(jdwp) << "invoke complete, signaling"; |
| 877 | MutexLock mu(self, pReq->lock); |
| 878 | pReq->cond.Signal(self); |
| 879 | } |
| 880 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 881 | // 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 | |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 886 | { |
| 887 | MutexLock mu(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 888 | while (self->GetSuspendCount() != 0) { |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 889 | Thread::resume_cond_->Wait(self); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 890 | if (self->GetSuspendCount() != 0) { |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 891 | // The condition was signaled but we're still suspended. This |
Sebastien Hertz | f272af4 | 2014-09-18 10:20:42 +0200 | [diff] [blame] | 892 | // 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 |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 895 | // dump event is pending (assuming SignalCatcher was resumed for |
| 896 | // just long enough to try to grab the thread-suspend lock). |
Sebastien Hertz | f272af4 | 2014-09-18 10:20:42 +0200 | [diff] [blame] | 897 | VLOG(jdwp) << *self << " still suspended after undo " |
| 898 | << "(suspend count=" << self->GetSuspendCount() << ", " |
| 899 | << "debug suspend count=" << self->GetDebugSuspendCount() << ")"; |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 900 | } |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 901 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 902 | CHECK_EQ(self->GetSuspendCount(), 0); |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 903 | } |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 904 | |
Elliott Hughes | 1f729aa | 2012-03-02 13:55:41 -0800 | [diff] [blame] | 905 | VLOG(threads) << *self << " self-reviving (debugger)"; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 906 | } |
| 907 | |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 908 | void ThreadList::ResumeAllForDebugger() { |
| 909 | Thread* self = Thread::Current(); |
| 910 | Thread* debug_thread = Dbg::GetDebugThread(); |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 911 | |
| 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 Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 918 | MutexLock thread_list_mu(self, *Locks::thread_list_lock_); |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 919 | { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 920 | MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_); |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 921 | // Update global suspend all state for attaching threads. |
| 922 | DCHECK_GE(suspend_all_count_, debug_suspend_all_count_); |
Sebastien Hertz | f9d233d | 2015-01-09 14:51:41 +0100 | [diff] [blame] | 923 | if (debug_suspend_all_count_ > 0) { |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 924 | --suspend_all_count_; |
| 925 | --debug_suspend_all_count_; |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 926 | } else { |
| 927 | // We've been asked to resume all threads without being asked to |
Sebastien Hertz | f9d233d | 2015-01-09 14:51:41 +0100 | [diff] [blame] | 928 | // 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 Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 932 | LOG(WARNING) << "Debugger attempted to resume all threads without " |
| 933 | << "having suspended them all before."; |
| 934 | } |
Sebastien Hertz | f9d233d | 2015-01-09 14:51:41 +0100 | [diff] [blame] | 935 | // 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 Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 947 | } |
| 948 | } |
| 949 | |
Sebastien Hertz | f9d233d | 2015-01-09 14:51:41 +0100 | [diff] [blame] | 950 | { |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 951 | 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 Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 958 | void ThreadList::UndoDebuggerSuspensions() { |
| 959 | Thread* self = Thread::Current(); |
| 960 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 961 | VLOG(threads) << *self << " UndoDebuggerSuspensions starting"; |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 962 | |
| 963 | { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 964 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 965 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 966 | // 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 Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 970 | for (const auto& thread : list_) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 971 | if (thread == self || thread->GetDebugSuspendCount() == 0) { |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 972 | continue; |
| 973 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 974 | thread->ModifySuspendCount(self, -thread->GetDebugSuspendCount(), true); |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 975 | } |
| 976 | } |
| 977 | |
| 978 | { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 979 | MutexLock mu(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 980 | Thread::resume_cond_->Broadcast(self); |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 981 | } |
| 982 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 983 | VLOG(threads) << "UndoDebuggerSuspensions(" << *self << ") complete"; |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 984 | } |
| 985 | |
Elliott Hughes | e52e49b | 2012-04-02 16:05:44 -0700 | [diff] [blame] | 986 | void ThreadList::WaitForOtherNonDaemonThreadsToExit() { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 987 | Thread* self = Thread::Current(); |
| 988 | Locks::mutator_lock_->AssertNotHeld(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 989 | bool all_threads_are_daemons; |
| 990 | do { |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 991 | { |
| 992 | // No more threads can be born after we start to shutdown. |
| 993 | MutexLock mu(self, *Locks::runtime_shutdown_lock_); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 994 | CHECK(Runtime::Current()->IsShuttingDownLocked()); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 995 | CHECK_EQ(Runtime::Current()->NumberOfThreadsBeingBorn(), 0U); |
| 996 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 997 | all_threads_are_daemons = true; |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 998 | MutexLock mu(self, *Locks::thread_list_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 999 | for (const auto& thread : list_) { |
Anwar Ghuloum | 9754368 | 2013-06-14 12:58:16 -0700 | [diff] [blame] | 1000 | if (thread != self && !thread->IsDaemon()) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1001 | 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 Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 1007 | thread_exit_cond_.Wait(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1008 | } |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 1009 | } while (!all_threads_are_daemons); |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1010 | } |
| 1011 | |
| 1012 | void ThreadList::SuspendAllDaemonThreads() { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1013 | Thread* self = Thread::Current(); |
| 1014 | MutexLock mu(self, *Locks::thread_list_lock_); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1015 | { // Tell all the daemons it's time to suspend. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1016 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1017 | for (const auto& thread : list_) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1018 | // This is only run after all non-daemon threads have exited, so the remainder should all be |
| 1019 | // daemons. |
Ian Rogers | 7e76286 | 2012-10-22 15:45:08 -0700 | [diff] [blame] | 1020 | CHECK(thread->IsDaemon()) << *thread; |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1021 | if (thread != self) { |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 1022 | thread->ModifySuspendCount(self, +1, false); |
Elliott Hughes | e52e49b | 2012-04-02 16:05:44 -0700 | [diff] [blame] | 1023 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1024 | } |
| 1025 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1026 | // 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 Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1031 | for (const auto& thread : list_) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1032 | if (thread != self && thread->GetState() == kRunnable) { |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1033 | 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 Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1044 | LOG(ERROR) << "suspend all daemons failed"; |
| 1045 | } |
| 1046 | void 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 Rogers | 5a9ba01 | 2014-05-19 13:28:52 -0700 | [diff] [blame] | 1052 | LOG(INFO) << "ThreadList::Register() " << *self << "\n" << oss.str(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1053 | } |
| 1054 | |
| 1055 | // Atomically add self to the thread list and make its thread_suspend_count_ reflect ongoing |
| 1056 | // SuspendAll requests. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1057 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 1058 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1059 | CHECK_GE(suspend_all_count_, debug_suspend_all_count_); |
Ian Rogers | 2966e13 | 2014-04-02 08:34:36 -0700 | [diff] [blame] | 1060 | // 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 Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1064 | } |
Ian Rogers | 2966e13 | 2014-04-02 08:34:36 -0700 | [diff] [blame] | 1065 | for (int delta = suspend_all_count_ - debug_suspend_all_count_; delta > 0; delta--) { |
| 1066 | self->ModifySuspendCount(self, +1, false); |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 1067 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1068 | CHECK(!Contains(self)); |
| 1069 | list_.push_back(self); |
| 1070 | } |
| 1071 | |
| 1072 | void ThreadList::Unregister(Thread* self) { |
| 1073 | DCHECK_EQ(self, Thread::Current()); |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1074 | CHECK_NE(self->GetState(), kRunnable); |
| 1075 | Locks::mutator_lock_->AssertNotHeld(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1076 | |
| 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 Hao | e094b87 | 2014-10-14 13:12:01 -0700 | [diff] [blame] | 1083 | // If tracing, remember thread id and name before thread exits. |
| 1084 | Trace::StoreExitingThreadInfo(self); |
| 1085 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1086 | uint32_t thin_lock_id = self->GetThreadId(); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 1087 | while (self != nullptr) { |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1088 | // 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 Rogers | 0878d65 | 2013-04-18 17:38:35 -0700 | [diff] [blame] | 1090 | // Note: deliberately not using MutexLock that could hold a stale self pointer. |
| 1091 | Locks::thread_list_lock_->ExclusiveLock(self); |
Ian Rogers | a2af5c7 | 2014-09-15 15:17:07 -0700 | [diff] [blame] | 1092 | 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 Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1106 | } |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1107 | Locks::thread_list_lock_->ExclusiveUnlock(self); |
| 1108 | if (removed) { |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1109 | delete self; |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 1110 | self = nullptr; |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1111 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1112 | } |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 1113 | // 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 Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1117 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1118 | // 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 Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1123 | MutexLock mu(NULL, *Locks::thread_list_lock_); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 1124 | thread_exit_cond_.Signal(NULL); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1125 | } |
| 1126 | |
| 1127 | void ThreadList::ForEach(void (*callback)(Thread*, void*), void* context) { |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1128 | for (const auto& thread : list_) { |
| 1129 | callback(thread, context); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1130 | } |
| 1131 | } |
| 1132 | |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1133 | void ThreadList::VisitRoots(RootCallback* callback, void* arg) const { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1134 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1135 | for (const auto& thread : list_) { |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1136 | thread->VisitRoots(callback, arg); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1137 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1138 | } |
| 1139 | |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1140 | uint32_t ThreadList::AllocThreadId(Thread* self) { |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1141 | MutexLock mu(self, *Locks::allocated_thread_ids_lock_); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1142 | for (size_t i = 0; i < allocated_ids_.size(); ++i) { |
| 1143 | if (!allocated_ids_[i]) { |
| 1144 | allocated_ids_.set(i); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1145 | return i + 1; // Zero is reserved to mean "invalid". |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1146 | } |
| 1147 | } |
| 1148 | LOG(FATAL) << "Out of internal thread ids"; |
| 1149 | return 0; |
| 1150 | } |
| 1151 | |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1152 | void ThreadList::ReleaseThreadId(Thread* self, uint32_t id) { |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1153 | MutexLock mu(self, *Locks::allocated_thread_ids_lock_); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1154 | --id; // Zero is reserved to mean "invalid". |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1155 | DCHECK(allocated_ids_[id]) << id; |
| 1156 | allocated_ids_.reset(id); |
| 1157 | } |
| 1158 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1159 | } // namespace art |