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); |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 47 | static constexpr uint64_t kThreadSuspendTimeoutMs = 30 * 1000; // 30s. |
| 48 | // Use 0 since we want to yield to prevent blocking for an unpredictable amount of time. |
| 49 | static constexpr useconds_t kThreadSuspendInitialSleepUs = 0; |
| 50 | static constexpr useconds_t kThreadSuspendMaxYieldUs = 3000; |
| 51 | static constexpr useconds_t kThreadSuspendMaxSleepUs = 5000; |
Mathieu Chartier | 251755c | 2014-07-15 18:10:25 -0700 | [diff] [blame] | 52 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 53 | ThreadList::ThreadList() |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 54 | : suspend_all_count_(0), debug_suspend_all_count_(0), unregistering_count_(0), |
Mathieu Chartier | 70a596d | 2014-12-17 14:56:47 -0800 | [diff] [blame] | 55 | suspend_all_historam_("suspend all histogram", 16, 64) { |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 56 | CHECK(Monitor::IsValidLockWord(LockWord::FromThinLockId(kMaxThreadId, 1, 0U))); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | ThreadList::~ThreadList() { |
Elliott Hughes | e52e49b | 2012-04-02 16:05:44 -0700 | [diff] [blame] | 60 | // 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] | 61 | // We need to detach the current thread here in case there's another thread waiting to join with |
| 62 | // us. |
Mathieu Chartier | fec72f4 | 2014-10-09 12:57:58 -0700 | [diff] [blame] | 63 | 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 Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 70 | Runtime::Current()->DetachCurrentThread(); |
| 71 | } |
Elliott Hughes | 6a14433 | 2012-04-03 13:07:11 -0700 | [diff] [blame] | 72 | WaitForOtherNonDaemonThreadsToExit(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 73 | // TODO: there's an unaddressed race here where a thread may attach during shutdown, see |
| 74 | // Thread::Init. |
Elliott Hughes | 6a14433 | 2012-04-03 13:07:11 -0700 | [diff] [blame] | 75 | SuspendAllDaemonThreads(); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | bool ThreadList::Contains(Thread* thread) { |
| 79 | return find(list_.begin(), list_.end(), thread) != list_.end(); |
| 80 | } |
| 81 | |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 82 | bool ThreadList::Contains(pid_t tid) { |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 83 | for (const auto& thread : list_) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 84 | if (thread->GetTid() == tid) { |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 85 | return true; |
| 86 | } |
| 87 | } |
| 88 | return false; |
| 89 | } |
| 90 | |
Brian Carlstrom | 24a3c2e | 2011-10-17 18:07:52 -0700 | [diff] [blame] | 91 | pid_t ThreadList::GetLockOwner() { |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 92 | return Locks::thread_list_lock_->GetExclusiveOwnerTid(); |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 93 | } |
| 94 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 95 | void ThreadList::DumpNativeStacks(std::ostream& os) { |
| 96 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
| 97 | for (const auto& thread : list_) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 98 | os << "DUMPING THREAD " << thread->GetTid() << "\n"; |
Christopher Ferris | a2cee18 | 2014-04-16 19:13:59 -0700 | [diff] [blame] | 99 | DumpNativeStack(os, thread->GetTid(), "\t"); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 100 | os << "\n"; |
| 101 | } |
| 102 | } |
| 103 | |
Elliott Hughes | c967f78 | 2012-04-16 10:23:15 -0700 | [diff] [blame] | 104 | void ThreadList::DumpForSigQuit(std::ostream& os) { |
Mathieu Chartier | 70a596d | 2014-12-17 14:56:47 -0800 | [diff] [blame] | 105 | { |
| 106 | ScopedObjectAccess soa(Thread::Current()); |
Mathieu Chartier | 23f6e69 | 2014-12-18 18:24:39 -0800 | [diff] [blame] | 107 | // 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 Chartier | 70a596d | 2014-12-17 14:56:47 -0800 | [diff] [blame] | 113 | } |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 114 | Dump(os); |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 115 | DumpUnattachedThreads(os); |
| 116 | } |
| 117 | |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 118 | static 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 Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 121 | Thread::DumpState(os, NULL, tid); |
| 122 | DumpKernelStack(os, tid, " kernel: ", false); |
Brian Carlstrom | ed8b723 | 2012-06-27 17:54:47 -0700 | [diff] [blame] | 123 | // 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 Ferris | a2cee18 | 2014-04-16 19:13:59 -0700 | [diff] [blame] | 126 | DumpNativeStack(os, tid, " native: "); |
Brian Carlstrom | ed8b723 | 2012-06-27 17:54:47 -0700 | [diff] [blame] | 127 | } |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 128 | os << "\n"; |
| 129 | } |
| 130 | |
| 131 | void ThreadList::DumpUnattachedThreads(std::ostream& os) { |
| 132 | DIR* d = opendir("/proc/self/task"); |
| 133 | if (!d) { |
| 134 | return; |
| 135 | } |
| 136 | |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 137 | Thread* self = Thread::Current(); |
Elliott Hughes | 4696b5b | 2012-10-30 10:35:10 -0700 | [diff] [blame] | 138 | dirent* e; |
| 139 | while ((e = readdir(d)) != NULL) { |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 140 | char* end; |
Elliott Hughes | 4696b5b | 2012-10-30 10:35:10 -0700 | [diff] [blame] | 141 | pid_t tid = strtol(e->d_name, &end, 10); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 142 | if (!*end) { |
| 143 | bool contains; |
| 144 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 145 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 146 | contains = Contains(tid); |
| 147 | } |
| 148 | if (!contains) { |
| 149 | DumpUnattachedThread(os, tid); |
| 150 | } |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 151 | } |
| 152 | } |
| 153 | closedir(d); |
Elliott Hughes | ff73806 | 2012-02-03 15:00:42 -0800 | [diff] [blame] | 154 | } |
| 155 | |
Andreas Gampe | 4a3d19b | 2015-01-09 17:54:51 -0800 | [diff] [blame] | 156 | // Dump checkpoint timeout in milliseconds. Larger amount on the host, as dumping will invoke |
| 157 | // addr2line when available. |
Andreas Gampe | 1e4b0ca | 2015-01-14 09:06:32 -0800 | [diff] [blame] | 158 | static constexpr uint32_t kDumpWaitTimeout = kIsTargetBuild ? 10000 : 20000; |
Andreas Gampe | 4a3d19b | 2015-01-09 17:54:51 -0800 | [diff] [blame] | 159 | |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 160 | // A closure used by Thread::Dump. |
| 161 | class 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 Li | dd9943d | 2015-02-02 14:24:44 +0800 | [diff] [blame] | 180 | if (thread->GetState() == kRunnable) { |
| 181 | barrier_.Pass(self); |
| 182 | } |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 183 | } |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 184 | |
| 185 | void WaitForThreadsToRunThroughCheckpoint(size_t threads_running_checkpoint) { |
| 186 | Thread* self = Thread::Current(); |
| 187 | ScopedThreadStateChange tsc(self, kWaitingForCheckPointsToRun); |
Andreas Gampe | 1e4b0ca | 2015-01-14 09:06:32 -0800 | [diff] [blame] | 188 | bool timed_out = barrier_.Increment(self, threads_running_checkpoint, kDumpWaitTimeout); |
Ian Rogers | 2156ff1 | 2014-09-13 19:20:54 -0700 | [diff] [blame] | 189 | if (timed_out) { |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 190 | // Avoid a recursive abort. |
| 191 | LOG((kIsDebugBuild && (gAborting == 0)) ? FATAL : ERROR) |
| 192 | << "Unexpected time out during dump checkpoint."; |
Ian Rogers | 2156ff1 | 2014-09-13 19:20:54 -0700 | [diff] [blame] | 193 | } |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 194 | } |
| 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 | |
| 203 | void 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 Li | dd9943d | 2015-02-02 14:24:44 +0800 | [diff] [blame] | 210 | if (threads_running_checkpoint != 0) { |
| 211 | checkpoint.WaitForThreadsToRunThroughCheckpoint(threads_running_checkpoint); |
| 212 | } |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 213 | } |
| 214 | |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 215 | void 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 Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 218 | for (const auto& thread : list_) { |
jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 219 | if (thread != ignore1 && thread != ignore2) { |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 220 | CHECK(thread->IsSuspended()) |
| 221 | << "\nUnsuspended thread: <<" << *thread << "\n" |
| 222 | << "self: <<" << *Thread::Current(); |
| 223 | } |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 224 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 225 | } |
| 226 | |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 227 | #if HAVE_TIMED_RWLOCK |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 228 | // Attempt to rectify locks so that we dump thread list with required locks before exiting. |
Andreas Gampe | 794ad76 | 2015-02-23 08:12:24 -0800 | [diff] [blame] | 229 | NO_RETURN static void UnsafeLogFatalForThreadSuspendAllTimeout() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 230 | Runtime* runtime = Runtime::Current(); |
| 231 | std::ostringstream ss; |
| 232 | ss << "Thread suspend timeout\n"; |
Mathieu Chartier | 5869a2c | 2014-10-08 14:26:23 -0700 | [diff] [blame] | 233 | Locks::mutator_lock_->Dump(ss); |
| 234 | ss << "\n"; |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 235 | runtime->GetThreadList()->Dump(ss); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 236 | LOG(FATAL) << ss.str(); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 237 | exit(0); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 238 | } |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 239 | #endif |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 240 | |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 241 | // Unlike suspending all threads where we can wait to acquire the mutator_lock_, suspending an |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 242 | // 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. |
| 244 | static void ThreadSuspendSleep(useconds_t delay_us) { |
| 245 | if (delay_us == 0) { |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 246 | sched_yield(); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 247 | } else { |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 248 | usleep(delay_us); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 249 | } |
| 250 | } |
| 251 | |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 252 | size_t ThreadList::RunCheckpoint(Closure* checkpoint_function) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 253 | Thread* self = Thread::Current(); |
Mathieu Chartier | 6dda898 | 2014-03-06 11:11:48 -0800 | [diff] [blame] | 254 | Locks::mutator_lock_->AssertNotExclusiveHeld(self); |
| 255 | Locks::thread_list_lock_->AssertNotHeld(self); |
| 256 | Locks::thread_suspend_count_lock_->AssertNotHeld(self); |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 257 | if (kDebugLocking && gAborting == 0) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 258 | 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 267 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 268 | for (const auto& thread : list_) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 269 | if (thread != self) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 270 | while (true) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 271 | if (thread->RequestCheckpoint(checkpoint_function)) { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 272 | // This thread will run its checkpoint some time in the near future. |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 273 | count++; |
| 274 | break; |
| 275 | } else { |
| 276 | // We are probably suspended, try to make sure that we stay suspended. |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 277 | // The thread switched back to runnable. |
| 278 | if (thread->GetState() == kRunnable) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 279 | // Spurious fail, try again. |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 280 | 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 Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 295 | for (const auto& thread : suspended_count_modified_threads) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 296 | if (!thread->IsSuspended()) { |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 297 | 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 Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 304 | do { |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 305 | ThreadSuspendSleep(kThreadSuspendInitialSleepUs); |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 306 | } while (!thread->IsSuspended()); |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 307 | const uint64_t total_delay = NanoTime() - start_time; |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 308 | // Shouldn't need to wait for longer than 1000 microseconds. |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 309 | 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 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 | |
Mathieu Chartier | bf9fc58 | 2015-03-13 17:21:25 -0700 | [diff] [blame] | 451 | void ThreadList::SuspendAll(const char* cause) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 452 | Thread* self = Thread::Current(); |
| 453 | |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 454 | if (self != nullptr) { |
Mathieu Chartier | bf9fc58 | 2015-03-13 17:21:25 -0700 | [diff] [blame] | 455 | VLOG(threads) << *self << " SuspendAll for " << cause << " starting..."; |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 456 | } else { |
Mathieu Chartier | bf9fc58 | 2015-03-13 17:21:25 -0700 | [diff] [blame] | 457 | VLOG(threads) << "Thread[null] SuspendAll for " << cause << " starting..."; |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 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. |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 486 | if (!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, kThreadSuspendTimeoutMs, 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(); |
Mathieu Chartier | bf9fc58 | 2015-03-13 17:21:25 -0700 | [diff] [blame] | 506 | ATRACE_BEGIN((std::string("Mutator threads suspended for ") + cause).c_str()); |
Mathieu Chartier | 6f365cc | 2014-04-23 12:42:27 -0700 | [diff] [blame] | 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) { |
Mathieu Chartier | 3a958aa | 2015-02-04 12:52:34 -0800 | [diff] [blame] | 615 | const uint64_t start_time = NanoTime(); |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 616 | useconds_t sleep_us = kThreadSuspendInitialSleepUs; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 617 | *timed_out = false; |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 618 | Thread* const self = Thread::Current(); |
Mathieu Chartier | 82a800d | 2014-12-15 15:59:49 -0800 | [diff] [blame] | 619 | Thread* suspended_thread = nullptr; |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 620 | VLOG(threads) << "SuspendThreadByPeer starting"; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 621 | while (true) { |
| 622 | Thread* thread; |
| 623 | { |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 624 | // 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 629 | ScopedObjectAccess soa(self); |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 630 | MutexLock thread_list_mu(self, *Locks::thread_list_lock_); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 631 | thread = Thread::FromManagedThread(soa, peer); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 632 | if (thread == nullptr) { |
Mathieu Chartier | 82a800d | 2014-12-15 15:59:49 -0800 | [diff] [blame] | 633 | 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 640 | ThreadSuspendByPeerWarning(self, WARNING, "No such thread for suspend", peer); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 641 | return nullptr; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 642 | } |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 643 | if (!Contains(thread)) { |
Mathieu Chartier | 82a800d | 2014-12-15 15:59:49 -0800 | [diff] [blame] | 644 | CHECK(suspended_thread == nullptr); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 645 | VLOG(threads) << "SuspendThreadByPeer failed for unattached thread: " |
| 646 | << reinterpret_cast<void*>(thread); |
| 647 | return nullptr; |
| 648 | } |
| 649 | VLOG(threads) << "SuspendThreadByPeer found thread: " << *thread; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 650 | { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 651 | MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 652 | if (request_suspension) { |
Ian Rogers | 4ad5cd3 | 2014-11-11 23:08:07 -0800 | [diff] [blame] | 653 | 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 Chartier | 82a800d | 2014-12-15 15:59:49 -0800 | [diff] [blame] | 659 | CHECK(suspended_thread == nullptr); |
| 660 | suspended_thread = thread; |
| 661 | suspended_thread->ModifySuspendCount(self, +1, debug_suspension); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 662 | request_suspension = false; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 663 | } 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 Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 676 | VLOG(threads) << "SuspendThreadByPeer thread suspended: " << *thread; |
Mathieu Chartier | f0dc8b5 | 2014-12-17 10:13:30 -0800 | [diff] [blame] | 677 | 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 683 | return thread; |
| 684 | } |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 685 | const uint64_t total_delay = NanoTime() - start_time; |
| 686 | if (total_delay >= MsToNs(kThreadSuspendTimeoutMs)) { |
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; |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 694 | } 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 699 | } |
| 700 | } |
| 701 | // Release locks and come out of runnable state. |
| 702 | } |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 703 | 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 708 | } |
| 709 | } |
| 710 | |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 711 | static void ThreadSuspendByThreadIdWarning(LogSeverity severity, const char* message, |
| 712 | uint32_t thread_id) { |
| 713 | LOG(severity) << StringPrintf("%s: %d", message, thread_id); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 714 | } |
| 715 | |
| 716 | Thread* ThreadList::SuspendThreadByThreadId(uint32_t thread_id, bool debug_suspension, |
| 717 | bool* timed_out) { |
Mathieu Chartier | 3a958aa | 2015-02-04 12:52:34 -0800 | [diff] [blame] | 718 | const uint64_t start_time = NanoTime(); |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 719 | useconds_t sleep_us = kThreadSuspendInitialSleepUs; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 720 | *timed_out = false; |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 721 | Thread* suspended_thread = nullptr; |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 722 | Thread* const self = Thread::Current(); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 723 | CHECK_NE(thread_id, kInvalidThreadId); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 724 | VLOG(threads) << "SuspendThreadByThreadId starting"; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 725 | while (true) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 726 | { |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 727 | // 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 732 | ScopedObjectAccess soa(self); |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 733 | MutexLock thread_list_mu(self, *Locks::thread_list_lock_); |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 734 | Thread* thread = nullptr; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 735 | for (const auto& it : list_) { |
| 736 | if (it->GetThreadId() == thread_id) { |
| 737 | thread = it; |
| 738 | break; |
| 739 | } |
| 740 | } |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 741 | if (thread == nullptr) { |
| 742 | CHECK(suspended_thread == nullptr) << "Suspended thread " << suspended_thread |
| 743 | << " no longer in thread list"; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 744 | // 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 Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 746 | return nullptr; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 747 | } |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 748 | VLOG(threads) << "SuspendThreadByThreadId found thread: " << *thread; |
| 749 | DCHECK(Contains(thread)); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 750 | { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 751 | MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 752 | if (suspended_thread == nullptr) { |
Ian Rogers | 4ad5cd3 | 2014-11-11 23:08:07 -0800 | [diff] [blame] | 753 | 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 759 | thread->ModifySuspendCount(self, +1, debug_suspension); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 760 | suspended_thread = thread; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 761 | } else { |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 762 | CHECK_EQ(suspended_thread, thread); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 763 | // 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 Chartier | f0dc8b5 | 2014-12-17 10:13:30 -0800 | [diff] [blame] | 775 | 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 Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 781 | VLOG(threads) << "SuspendThreadByThreadId thread suspended: " << *thread; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 782 | return thread; |
| 783 | } |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 784 | const uint64_t total_delay = NanoTime() - start_time; |
| 785 | if (total_delay >= MsToNs(kThreadSuspendTimeoutMs)) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 786 | ThreadSuspendByThreadIdWarning(WARNING, "Thread suspension timed out", thread_id); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 787 | if (suspended_thread != nullptr) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 788 | thread->ModifySuspendCount(soa.Self(), -1, debug_suspension); |
| 789 | } |
| 790 | *timed_out = true; |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 791 | return nullptr; |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 792 | } 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 Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 797 | } |
| 798 | } |
| 799 | // Release locks and come out of runnable state. |
| 800 | } |
Mathieu Chartier | 9914386 | 2015-02-03 14:26:46 -0800 | [diff] [blame] | 801 | VLOG(threads) << "SuspendThreadByThreadId waiting to allow thread chance to suspend"; |
| 802 | ThreadSuspendSleep(sleep_us); |
| 803 | sleep_us = std::min(sleep_us * 2, kThreadSuspendMaxSleepUs); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 804 | } |
| 805 | } |
| 806 | |
| 807 | Thread* 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 Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 819 | void ThreadList::SuspendAllForDebugger() { |
| 820 | Thread* self = Thread::Current(); |
| 821 | Thread* debug_thread = Dbg::GetDebugThread(); |
| 822 | |
| 823 | VLOG(threads) << *self << " SuspendAllForDebugger starting..."; |
| 824 | |
| 825 | { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 826 | MutexLock thread_list_mu(self, *Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 827 | { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 828 | MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 829 | // Update global suspend all state for attaching threads. |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 830 | DCHECK_GE(suspend_all_count_, debug_suspend_all_count_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 831 | ++suspend_all_count_; |
| 832 | ++debug_suspend_all_count_; |
| 833 | // Increment everybody's suspend count (except our own). |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 834 | for (const auto& thread : list_) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 835 | if (thread == self || thread == debug_thread) { |
| 836 | continue; |
| 837 | } |
| 838 | VLOG(threads) << "requesting thread suspend: " << *thread; |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 839 | thread->ModifySuspendCount(self, +1, true); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 840 | } |
| 841 | } |
| 842 | } |
| 843 | |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 844 | // 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 Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 848 | if (!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0)) { |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 849 | UnsafeLogFatalForThreadSuspendAllTimeout(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 850 | } else { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 851 | Locks::mutator_lock_->ExclusiveUnlock(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 852 | } |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 853 | #else |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 854 | Locks::mutator_lock_->ExclusiveLock(self); |
| 855 | Locks::mutator_lock_->ExclusiveUnlock(self); |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 856 | #endif |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 857 | AssertThreadsAreSuspended(self, self, debug_thread); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 858 | |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 859 | VLOG(threads) << *self << " SuspendAllForDebugger complete"; |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 860 | } |
| 861 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 862 | void ThreadList::SuspendSelfForDebugger() { |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 863 | Thread* const self = Thread::Current(); |
| 864 | self->SetReadyForDebugInvoke(true); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 865 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 866 | // 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); |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 870 | CHECK_NE(self->GetState(), kRunnable); |
| 871 | Locks::mutator_lock_->AssertNotHeld(self); |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 872 | |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 873 | { |
| 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 Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 879 | CHECK_GT(self->GetSuspendCount(), 0); |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 880 | } |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 881 | |
Elliott Hughes | 1f729aa | 2012-03-02 13:55:41 -0800 | [diff] [blame] | 882 | VLOG(threads) << *self << " self-suspending (debugger)"; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 883 | |
Sebastien Hertz | 21e729c | 2014-02-18 14:16:00 +0100 | [diff] [blame] | 884 | // Tell JDWP we've completed invocation and are ready to suspend. |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 885 | DebugInvokeReq* const pReq = self->GetInvokeReq(); |
| 886 | if (pReq != nullptr) { |
| 887 | // Clear debug invoke request before signaling. |
| 888 | self->ClearDebugInvokeReq(); |
Sebastien Hertz | 21e729c | 2014-02-18 14:16:00 +0100 | [diff] [blame] | 889 | |
| 890 | VLOG(jdwp) << "invoke complete, signaling"; |
| 891 | MutexLock mu(self, pReq->lock); |
| 892 | pReq->cond.Signal(self); |
| 893 | } |
| 894 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 895 | // 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 | |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 900 | { |
| 901 | MutexLock mu(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 902 | while (self->GetSuspendCount() != 0) { |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 903 | Thread::resume_cond_->Wait(self); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 904 | if (self->GetSuspendCount() != 0) { |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 905 | // The condition was signaled but we're still suspended. This |
Sebastien Hertz | f272af4 | 2014-09-18 10:20:42 +0200 | [diff] [blame] | 906 | // 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 |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 909 | // dump event is pending (assuming SignalCatcher was resumed for |
| 910 | // just long enough to try to grab the thread-suspend lock). |
Sebastien Hertz | f272af4 | 2014-09-18 10:20:42 +0200 | [diff] [blame] | 911 | VLOG(jdwp) << *self << " still suspended after undo " |
| 912 | << "(suspend count=" << self->GetSuspendCount() << ", " |
| 913 | << "debug suspend count=" << self->GetDebugSuspendCount() << ")"; |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 914 | } |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 915 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 916 | CHECK_EQ(self->GetSuspendCount(), 0); |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 917 | } |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 918 | |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 919 | self->SetReadyForDebugInvoke(false); |
Elliott Hughes | 1f729aa | 2012-03-02 13:55:41 -0800 | [diff] [blame] | 920 | VLOG(threads) << *self << " self-reviving (debugger)"; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 921 | } |
| 922 | |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 923 | void ThreadList::ResumeAllForDebugger() { |
| 924 | Thread* self = Thread::Current(); |
| 925 | Thread* debug_thread = Dbg::GetDebugThread(); |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 926 | |
| 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 Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 933 | MutexLock thread_list_mu(self, *Locks::thread_list_lock_); |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 934 | { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 935 | MutexLock suspend_count_mu(self, *Locks::thread_suspend_count_lock_); |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 936 | // Update global suspend all state for attaching threads. |
| 937 | DCHECK_GE(suspend_all_count_, debug_suspend_all_count_); |
Sebastien Hertz | f9d233d | 2015-01-09 14:51:41 +0100 | [diff] [blame] | 938 | if (debug_suspend_all_count_ > 0) { |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 939 | --suspend_all_count_; |
| 940 | --debug_suspend_all_count_; |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 941 | } else { |
| 942 | // We've been asked to resume all threads without being asked to |
Sebastien Hertz | f9d233d | 2015-01-09 14:51:41 +0100 | [diff] [blame] | 943 | // 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 Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 947 | LOG(WARNING) << "Debugger attempted to resume all threads without " |
| 948 | << "having suspended them all before."; |
| 949 | } |
Sebastien Hertz | f9d233d | 2015-01-09 14:51:41 +0100 | [diff] [blame] | 950 | // 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 Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 962 | } |
| 963 | } |
| 964 | |
Sebastien Hertz | f9d233d | 2015-01-09 14:51:41 +0100 | [diff] [blame] | 965 | { |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 966 | 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 Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 973 | void ThreadList::UndoDebuggerSuspensions() { |
| 974 | Thread* self = Thread::Current(); |
| 975 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 976 | VLOG(threads) << *self << " UndoDebuggerSuspensions starting"; |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 977 | |
| 978 | { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 979 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 980 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 981 | // 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 Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 985 | for (const auto& thread : list_) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 986 | if (thread == self || thread->GetDebugSuspendCount() == 0) { |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 987 | continue; |
| 988 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 989 | thread->ModifySuspendCount(self, -thread->GetDebugSuspendCount(), true); |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 990 | } |
| 991 | } |
| 992 | |
| 993 | { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 994 | MutexLock mu(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 995 | Thread::resume_cond_->Broadcast(self); |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 996 | } |
| 997 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 998 | VLOG(threads) << "UndoDebuggerSuspensions(" << *self << ") complete"; |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 999 | } |
| 1000 | |
Elliott Hughes | e52e49b | 2012-04-02 16:05:44 -0700 | [diff] [blame] | 1001 | void ThreadList::WaitForOtherNonDaemonThreadsToExit() { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1002 | Thread* self = Thread::Current(); |
| 1003 | Locks::mutator_lock_->AssertNotHeld(self); |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1004 | while (true) { |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 1005 | { |
| 1006 | // No more threads can be born after we start to shutdown. |
| 1007 | MutexLock mu(self, *Locks::runtime_shutdown_lock_); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1008 | CHECK(Runtime::Current()->IsShuttingDownLocked()); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 1009 | CHECK_EQ(Runtime::Current()->NumberOfThreadsBeingBorn(), 0U); |
| 1010 | } |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 1011 | MutexLock mu(self, *Locks::thread_list_lock_); |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1012 | // 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 Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1022 | } |
| 1023 | } |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1024 | if (done) { |
| 1025 | break; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1026 | } |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1027 | // Wait for another thread to exit before re-checking. |
| 1028 | Locks::thread_exit_cond_->Wait(self); |
| 1029 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1030 | } |
| 1031 | |
| 1032 | void ThreadList::SuspendAllDaemonThreads() { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1033 | Thread* self = Thread::Current(); |
| 1034 | MutexLock mu(self, *Locks::thread_list_lock_); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1035 | { // Tell all the daemons it's time to suspend. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1036 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1037 | for (const auto& thread : list_) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1038 | // This is only run after all non-daemon threads have exited, so the remainder should all be |
| 1039 | // daemons. |
Ian Rogers | 7e76286 | 2012-10-22 15:45:08 -0700 | [diff] [blame] | 1040 | CHECK(thread->IsDaemon()) << *thread; |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1041 | if (thread != self) { |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 1042 | thread->ModifySuspendCount(self, +1, false); |
Elliott Hughes | e52e49b | 2012-04-02 16:05:44 -0700 | [diff] [blame] | 1043 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1044 | } |
| 1045 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1046 | // 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 Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1051 | for (const auto& thread : list_) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1052 | if (thread != self && thread->GetState() == kRunnable) { |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1053 | 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 Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1064 | LOG(ERROR) << "suspend all daemons failed"; |
| 1065 | } |
| 1066 | void 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 Rogers | 5a9ba01 | 2014-05-19 13:28:52 -0700 | [diff] [blame] | 1072 | LOG(INFO) << "ThreadList::Register() " << *self << "\n" << oss.str(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1073 | } |
| 1074 | |
| 1075 | // Atomically add self to the thread list and make its thread_suspend_count_ reflect ongoing |
| 1076 | // SuspendAll requests. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1077 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 1078 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1079 | CHECK_GE(suspend_all_count_, debug_suspend_all_count_); |
Ian Rogers | 2966e13 | 2014-04-02 08:34:36 -0700 | [diff] [blame] | 1080 | // 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 Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1084 | } |
Ian Rogers | 2966e13 | 2014-04-02 08:34:36 -0700 | [diff] [blame] | 1085 | for (int delta = suspend_all_count_ - debug_suspend_all_count_; delta > 0; delta--) { |
| 1086 | self->ModifySuspendCount(self, +1, false); |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 1087 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1088 | CHECK(!Contains(self)); |
| 1089 | list_.push_back(self); |
| 1090 | } |
| 1091 | |
| 1092 | void ThreadList::Unregister(Thread* self) { |
| 1093 | DCHECK_EQ(self, Thread::Current()); |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1094 | CHECK_NE(self->GetState(), kRunnable); |
| 1095 | Locks::mutator_lock_->AssertNotHeld(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1096 | |
| 1097 | VLOG(threads) << "ThreadList::Unregister() " << *self; |
| 1098 | |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1099 | { |
| 1100 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 1101 | ++unregistering_count_; |
| 1102 | } |
| 1103 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1104 | // Any time-consuming destruction, plus anything that can call back into managed code or |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1105 | // 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 Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1109 | self->Destroy(); |
| 1110 | |
Jeff Hao | e094b87 | 2014-10-14 13:12:01 -0700 | [diff] [blame] | 1111 | // If tracing, remember thread id and name before thread exits. |
| 1112 | Trace::StoreExitingThreadInfo(self); |
| 1113 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1114 | uint32_t thin_lock_id = self->GetThreadId(); |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1115 | while (true) { |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1116 | // 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 Rogers | 0878d65 | 2013-04-18 17:38:35 -0700 | [diff] [blame] | 1118 | // Note: deliberately not using MutexLock that could hold a stale self pointer. |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1119 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | a2af5c7 | 2014-09-15 15:17:07 -0700 | [diff] [blame] | 1120 | if (!Contains(self)) { |
Mathieu Chartier | 9db831a | 2015-02-24 17:20:30 -0800 | [diff] [blame] | 1121 | std::string thread_name; |
| 1122 | self->GetThreadName(thread_name); |
Ian Rogers | a2af5c7 | 2014-09-15 15:17:07 -0700 | [diff] [blame] | 1123 | std::ostringstream os; |
| 1124 | DumpNativeStack(os, GetTid(), " native: ", nullptr); |
Mathieu Chartier | 9db831a | 2015-02-24 17:20:30 -0800 | [diff] [blame] | 1125 | LOG(ERROR) << "Request to unregister unattached thread " << thread_name << "\n" << os.str(); |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1126 | break; |
Ian Rogers | a2af5c7 | 2014-09-15 15:17:07 -0700 | [diff] [blame] | 1127 | } else { |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1128 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | a2af5c7 | 2014-09-15 15:17:07 -0700 | [diff] [blame] | 1129 | if (!self->IsSuspended()) { |
| 1130 | list_.remove(self); |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1131 | break; |
Ian Rogers | a2af5c7 | 2014-09-15 15:17:07 -0700 | [diff] [blame] | 1132 | } |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1133 | } |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1134 | // We failed to remove the thread due to a suspend request, loop and try again. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1135 | } |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1136 | delete self; |
| 1137 | |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 1138 | // 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 Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1142 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1143 | // 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 Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1148 | MutexLock mu(nullptr, *Locks::thread_list_lock_); |
| 1149 | --unregistering_count_; |
| 1150 | Locks::thread_exit_cond_->Broadcast(nullptr); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1151 | } |
| 1152 | |
| 1153 | void ThreadList::ForEach(void (*callback)(Thread*, void*), void* context) { |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1154 | for (const auto& thread : list_) { |
| 1155 | callback(thread, context); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1156 | } |
| 1157 | } |
| 1158 | |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1159 | void ThreadList::VisitRoots(RootCallback* callback, void* arg) const { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1160 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1161 | for (const auto& thread : list_) { |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1162 | thread->VisitRoots(callback, arg); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1163 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1164 | } |
| 1165 | |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1166 | uint32_t ThreadList::AllocThreadId(Thread* self) { |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1167 | MutexLock mu(self, *Locks::allocated_thread_ids_lock_); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1168 | for (size_t i = 0; i < allocated_ids_.size(); ++i) { |
| 1169 | if (!allocated_ids_[i]) { |
| 1170 | allocated_ids_.set(i); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1171 | return i + 1; // Zero is reserved to mean "invalid". |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1172 | } |
| 1173 | } |
| 1174 | LOG(FATAL) << "Out of internal thread ids"; |
| 1175 | return 0; |
| 1176 | } |
| 1177 | |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 1178 | void ThreadList::ReleaseThreadId(Thread* self, uint32_t id) { |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1179 | MutexLock mu(self, *Locks::allocated_thread_ids_lock_); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1180 | --id; // Zero is reserved to mean "invalid". |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1181 | DCHECK(allocated_ids_[id]) << id; |
| 1182 | allocated_ids_.reset(id); |
| 1183 | } |
| 1184 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1185 | } // namespace art |