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 | |
Elliott Hughes | 76b6167 | 2012-12-12 17:47:30 -0800 | [diff] [blame] | 28 | #include "base/mutex.h" |
Hiroshi Yamauchi | 967a0ad | 2013-09-10 16:24:21 -0700 | [diff] [blame] | 29 | #include "base/mutex-inl.h" |
Sameer Abu Asal | a843954 | 2013-02-14 16:06:42 -0800 | [diff] [blame] | 30 | #include "base/timing_logger.h" |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 31 | #include "debugger.h" |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 32 | #include "jni_internal.h" |
| 33 | #include "lock_word.h" |
| 34 | #include "monitor.h" |
| 35 | #include "scoped_thread_state_change.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 36 | #include "thread.h" |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 37 | #include "utils.h" |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 38 | #include "well_known_classes.h" |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 39 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 40 | namespace art { |
| 41 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 42 | ThreadList::ThreadList() |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame^] | 43 | : suspend_all_count_(0), debug_suspend_all_count_(0), |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 44 | thread_exit_cond_("thread exit condition variable", *Locks::thread_list_lock_) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 45 | CHECK(Monitor::IsValidLockWord(LockWord::FromThinLockId(kMaxThreadId, 1))); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | ThreadList::~ThreadList() { |
Elliott Hughes | e52e49b | 2012-04-02 16:05:44 -0700 | [diff] [blame] | 49 | // 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] | 50 | // We need to detach the current thread here in case there's another thread waiting to join with |
| 51 | // us. |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 52 | if (Contains(Thread::Current())) { |
| 53 | Runtime::Current()->DetachCurrentThread(); |
| 54 | } |
Elliott Hughes | 6a14433 | 2012-04-03 13:07:11 -0700 | [diff] [blame] | 55 | |
| 56 | WaitForOtherNonDaemonThreadsToExit(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 57 | // TODO: there's an unaddressed race here where a thread may attach during shutdown, see |
| 58 | // Thread::Init. |
Elliott Hughes | 6a14433 | 2012-04-03 13:07:11 -0700 | [diff] [blame] | 59 | SuspendAllDaemonThreads(); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | bool ThreadList::Contains(Thread* thread) { |
| 63 | return find(list_.begin(), list_.end(), thread) != list_.end(); |
| 64 | } |
| 65 | |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 66 | bool ThreadList::Contains(pid_t tid) { |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 67 | for (const auto& thread : list_) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 68 | if (thread->GetTid() == tid) { |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 69 | return true; |
| 70 | } |
| 71 | } |
| 72 | return false; |
| 73 | } |
| 74 | |
Brian Carlstrom | 24a3c2e | 2011-10-17 18:07:52 -0700 | [diff] [blame] | 75 | pid_t ThreadList::GetLockOwner() { |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 76 | return Locks::thread_list_lock_->GetExclusiveOwnerTid(); |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 79 | void ThreadList::DumpNativeStacks(std::ostream& os) { |
| 80 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
| 81 | for (const auto& thread : list_) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 82 | os << "DUMPING THREAD " << thread->GetTid() << "\n"; |
Christopher Ferris | a2cee18 | 2014-04-16 19:13:59 -0700 | [diff] [blame] | 83 | DumpNativeStack(os, thread->GetTid(), "\t"); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 84 | os << "\n"; |
| 85 | } |
| 86 | } |
| 87 | |
Elliott Hughes | c967f78 | 2012-04-16 10:23:15 -0700 | [diff] [blame] | 88 | void ThreadList::DumpForSigQuit(std::ostream& os) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 89 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 90 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 91 | DumpLocked(os); |
| 92 | } |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 93 | DumpUnattachedThreads(os); |
| 94 | } |
| 95 | |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 96 | static void DumpUnattachedThread(std::ostream& os, pid_t tid) NO_THREAD_SAFETY_ANALYSIS { |
| 97 | // TODO: No thread safety analysis as DumpState with a NULL thread won't access fields, should |
| 98 | // refactor DumpState to avoid skipping analysis. |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 99 | Thread::DumpState(os, NULL, tid); |
| 100 | DumpKernelStack(os, tid, " kernel: ", false); |
Brian Carlstrom | ed8b723 | 2012-06-27 17:54:47 -0700 | [diff] [blame] | 101 | // TODO: Reenable this when the native code in system_server can handle it. |
| 102 | // Currently "adb shell kill -3 `pid system_server`" will cause it to exit. |
| 103 | if (false) { |
Christopher Ferris | a2cee18 | 2014-04-16 19:13:59 -0700 | [diff] [blame] | 104 | DumpNativeStack(os, tid, " native: "); |
Brian Carlstrom | ed8b723 | 2012-06-27 17:54:47 -0700 | [diff] [blame] | 105 | } |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 106 | os << "\n"; |
| 107 | } |
| 108 | |
| 109 | void ThreadList::DumpUnattachedThreads(std::ostream& os) { |
| 110 | DIR* d = opendir("/proc/self/task"); |
| 111 | if (!d) { |
| 112 | return; |
| 113 | } |
| 114 | |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 115 | Thread* self = Thread::Current(); |
Elliott Hughes | 4696b5b | 2012-10-30 10:35:10 -0700 | [diff] [blame] | 116 | dirent* e; |
| 117 | while ((e = readdir(d)) != NULL) { |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 118 | char* end; |
Elliott Hughes | 4696b5b | 2012-10-30 10:35:10 -0700 | [diff] [blame] | 119 | pid_t tid = strtol(e->d_name, &end, 10); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 120 | if (!*end) { |
| 121 | bool contains; |
| 122 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 123 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 124 | contains = Contains(tid); |
| 125 | } |
| 126 | if (!contains) { |
| 127 | DumpUnattachedThread(os, tid); |
| 128 | } |
Elliott Hughes | abbe07d | 2012-06-05 17:42:23 -0700 | [diff] [blame] | 129 | } |
| 130 | } |
| 131 | closedir(d); |
Elliott Hughes | ff73806 | 2012-02-03 15:00:42 -0800 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | void ThreadList::DumpLocked(std::ostream& os) { |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 135 | os << "DALVIK THREADS (" << list_.size() << "):\n"; |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 136 | for (const auto& thread : list_) { |
| 137 | thread->Dump(os); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 138 | os << "\n"; |
| 139 | } |
| 140 | } |
| 141 | |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 142 | void ThreadList::AssertThreadsAreSuspended(Thread* self, Thread* ignore1, Thread* ignore2) { |
| 143 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 144 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 145 | for (const auto& thread : list_) { |
jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 146 | if (thread != ignore1 && thread != ignore2) { |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 147 | CHECK(thread->IsSuspended()) |
| 148 | << "\nUnsuspended thread: <<" << *thread << "\n" |
| 149 | << "self: <<" << *Thread::Current(); |
| 150 | } |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 151 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 154 | #if HAVE_TIMED_RWLOCK |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 155 | // Attempt to rectify locks so that we dump thread list with required locks before exiting. |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 156 | static void UnsafeLogFatalForThreadSuspendAllTimeout(Thread* self) NO_THREAD_SAFETY_ANALYSIS __attribute__((noreturn)); |
| 157 | static void UnsafeLogFatalForThreadSuspendAllTimeout(Thread* self) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 158 | Runtime* runtime = Runtime::Current(); |
| 159 | std::ostringstream ss; |
| 160 | ss << "Thread suspend timeout\n"; |
| 161 | runtime->DumpLockHolders(ss); |
| 162 | ss << "\n"; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 163 | runtime->GetThreadList()->DumpLocked(ss); |
| 164 | LOG(FATAL) << ss.str(); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 165 | exit(0); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 166 | } |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 167 | #endif |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 168 | |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 169 | // Unlike suspending all threads where we can wait to acquire the mutator_lock_, suspending an |
| 170 | // individual thread requires polling. delay_us is the requested sleep and total_delay_us |
| 171 | // accumulates the total time spent sleeping for timeouts. The first sleep is just a yield, |
| 172 | // subsequently sleeps increase delay_us from 1ms to 500ms by doubling. |
| 173 | static void ThreadSuspendSleep(Thread* self, useconds_t* delay_us, useconds_t* total_delay_us, |
| 174 | bool holding_locks) { |
| 175 | if (!holding_locks) { |
| 176 | for (int i = kLockLevelCount - 1; i >= 0; --i) { |
| 177 | BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i)); |
| 178 | if (held_mutex != NULL) { |
| 179 | LOG(FATAL) << "Holding " << held_mutex->GetName() << " while sleeping for thread suspension"; |
| 180 | } |
| 181 | } |
| 182 | } |
| 183 | useconds_t new_delay_us = (*delay_us) * 2; |
| 184 | CHECK_GE(new_delay_us, *delay_us); |
| 185 | if (new_delay_us < 500000) { // Don't allow sleeping to be more than 0.5s. |
| 186 | *delay_us = new_delay_us; |
| 187 | } |
| 188 | if (*delay_us == 0) { |
| 189 | sched_yield(); |
| 190 | // Default to 1 milliseconds (note that this gets multiplied by 2 before the first sleep). |
| 191 | *delay_us = 500; |
| 192 | } else { |
| 193 | usleep(*delay_us); |
| 194 | *total_delay_us += *delay_us; |
| 195 | } |
| 196 | } |
| 197 | |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 198 | size_t ThreadList::RunCheckpoint(Closure* checkpoint_function) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 199 | Thread* self = Thread::Current(); |
Mathieu Chartier | 6dda898 | 2014-03-06 11:11:48 -0800 | [diff] [blame] | 200 | Locks::mutator_lock_->AssertNotExclusiveHeld(self); |
| 201 | Locks::thread_list_lock_->AssertNotHeld(self); |
| 202 | Locks::thread_suspend_count_lock_->AssertNotHeld(self); |
| 203 | if (kDebugLocking) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 204 | CHECK_NE(self->GetState(), kRunnable); |
| 205 | } |
| 206 | |
| 207 | std::vector<Thread*> suspended_count_modified_threads; |
| 208 | size_t count = 0; |
| 209 | { |
| 210 | // Call a checkpoint function for each thread, threads which are suspend get their checkpoint |
| 211 | // manually called. |
| 212 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 213 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 214 | for (const auto& thread : list_) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 215 | if (thread != self) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 216 | while (true) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 217 | if (thread->RequestCheckpoint(checkpoint_function)) { |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 218 | // This thread will run its checkpoint some time in the near future. |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 219 | count++; |
| 220 | break; |
| 221 | } else { |
| 222 | // We are probably suspended, try to make sure that we stay suspended. |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 223 | // The thread switched back to runnable. |
| 224 | if (thread->GetState() == kRunnable) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 225 | // Spurious fail, try again. |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 226 | continue; |
| 227 | } |
| 228 | thread->ModifySuspendCount(self, +1, false); |
| 229 | suspended_count_modified_threads.push_back(thread); |
| 230 | break; |
| 231 | } |
| 232 | } |
| 233 | } |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | // Run the checkpoint on ourself while we wait for threads to suspend. |
| 238 | checkpoint_function->Run(self); |
| 239 | |
| 240 | // Run the checkpoint on the suspended threads. |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 241 | for (const auto& thread : suspended_count_modified_threads) { |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 242 | if (!thread->IsSuspended()) { |
| 243 | // Wait until the thread is suspended. |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 244 | useconds_t total_delay_us = 0; |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 245 | do { |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 246 | useconds_t delay_us = 100; |
| 247 | ThreadSuspendSleep(self, &delay_us, &total_delay_us, true); |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 248 | } while (!thread->IsSuspended()); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 249 | // Shouldn't need to wait for longer than 1000 microseconds. |
| 250 | constexpr useconds_t kLongWaitThresholdUS = 1000; |
| 251 | if (UNLIKELY(total_delay_us > kLongWaitThresholdUS)) { |
| 252 | LOG(WARNING) << "Waited " << total_delay_us << " us for thread suspend!"; |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 253 | } |
| 254 | } |
| 255 | // We know for sure that the thread is suspended at this point. |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 256 | checkpoint_function->Run(thread); |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 257 | { |
| 258 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 259 | thread->ModifySuspendCount(self, -1, false); |
| 260 | } |
| 261 | } |
| 262 | |
Mathieu Chartier | 664bebf | 2012-11-12 16:54:11 -0800 | [diff] [blame] | 263 | { |
| 264 | // Imitate ResumeAll, threads may be waiting on Thread::resume_cond_ since we raised their |
| 265 | // suspend count. Now the suspend_count_ is lowered so we must do the broadcast. |
| 266 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 267 | Thread::resume_cond_->Broadcast(self); |
| 268 | } |
| 269 | |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 270 | // Add one for self. |
| 271 | return count + suspended_count_modified_threads.size() + 1; |
| 272 | } |
| 273 | |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 274 | // Request that a checkpoint function be run on all active (non-suspended) |
| 275 | // threads. Returns the number of successful requests. |
| 276 | size_t ThreadList::RunCheckpointOnRunnableThreads(Closure* checkpoint_function) { |
| 277 | Thread* self = Thread::Current(); |
| 278 | if (kIsDebugBuild) { |
| 279 | Locks::mutator_lock_->AssertNotExclusiveHeld(self); |
| 280 | Locks::thread_list_lock_->AssertNotHeld(self); |
| 281 | Locks::thread_suspend_count_lock_->AssertNotHeld(self); |
| 282 | CHECK_NE(self->GetState(), kRunnable); |
| 283 | } |
| 284 | |
| 285 | size_t count = 0; |
| 286 | { |
| 287 | // Call a checkpoint function for each non-suspended thread. |
| 288 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 289 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 290 | for (const auto& thread : list_) { |
| 291 | if (thread != self) { |
| 292 | if (thread->RequestCheckpoint(checkpoint_function)) { |
| 293 | // This thread will run its checkpoint some time in the near future. |
| 294 | count++; |
| 295 | } |
| 296 | } |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | // Return the number of threads that will run the checkpoint function. |
| 301 | return count; |
| 302 | } |
| 303 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 304 | void ThreadList::SuspendAll() { |
| 305 | Thread* self = Thread::Current(); |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 306 | DCHECK(self != nullptr); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 307 | |
| 308 | VLOG(threads) << *self << " SuspendAll starting..."; |
| 309 | |
Mathieu Chartier | 6f365cc | 2014-04-23 12:42:27 -0700 | [diff] [blame] | 310 | ATRACE_BEGIN("Suspending mutator threads"); |
| 311 | |
Mathieu Chartier | 6dda898 | 2014-03-06 11:11:48 -0800 | [diff] [blame] | 312 | Locks::mutator_lock_->AssertNotHeld(self); |
| 313 | Locks::thread_list_lock_->AssertNotHeld(self); |
| 314 | Locks::thread_suspend_count_lock_->AssertNotHeld(self); |
| 315 | if (kDebugLocking) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 316 | CHECK_NE(self->GetState(), kRunnable); |
| 317 | } |
| 318 | { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 319 | MutexLock mu(self, *Locks::thread_list_lock_); |
Mathieu Chartier | 6dda898 | 2014-03-06 11:11:48 -0800 | [diff] [blame] | 320 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 321 | // Update global suspend all state for attaching threads. |
| 322 | ++suspend_all_count_; |
| 323 | // Increment everybody's suspend count (except our own). |
| 324 | for (const auto& thread : list_) { |
| 325 | if (thread == self) { |
| 326 | continue; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 327 | } |
Mathieu Chartier | 6dda898 | 2014-03-06 11:11:48 -0800 | [diff] [blame] | 328 | VLOG(threads) << "requesting thread suspend: " << *thread; |
| 329 | thread->ModifySuspendCount(self, +1, false); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 330 | } |
| 331 | } |
| 332 | |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 333 | // Block on the mutator lock until all Runnable threads release their share of access. |
| 334 | #if HAVE_TIMED_RWLOCK |
| 335 | // Timeout if we wait more than 30 seconds. |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 336 | if (!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0)) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 337 | UnsafeLogFatalForThreadSuspendAllTimeout(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 338 | } |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 339 | #else |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 340 | Locks::mutator_lock_->ExclusiveLock(self); |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 341 | #endif |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 342 | |
Mathieu Chartier | 6dda898 | 2014-03-06 11:11:48 -0800 | [diff] [blame] | 343 | if (kDebugLocking) { |
| 344 | // Debug check that all threads are suspended. |
| 345 | AssertThreadsAreSuspended(self, self); |
| 346 | } |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 347 | |
Mathieu Chartier | 6f365cc | 2014-04-23 12:42:27 -0700 | [diff] [blame] | 348 | ATRACE_END(); |
| 349 | ATRACE_BEGIN("Mutator threads suspended"); |
| 350 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 351 | VLOG(threads) << *self << " SuspendAll complete"; |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 352 | } |
| 353 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 354 | void ThreadList::ResumeAll() { |
| 355 | Thread* self = Thread::Current(); |
| 356 | |
| 357 | VLOG(threads) << *self << " ResumeAll starting"; |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 358 | |
Mathieu Chartier | 6f365cc | 2014-04-23 12:42:27 -0700 | [diff] [blame] | 359 | ATRACE_END(); |
| 360 | ATRACE_BEGIN("Resuming mutator threads"); |
| 361 | |
Mathieu Chartier | 6dda898 | 2014-03-06 11:11:48 -0800 | [diff] [blame] | 362 | if (kDebugLocking) { |
| 363 | // Debug check that all threads are suspended. |
| 364 | AssertThreadsAreSuspended(self, self); |
| 365 | } |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 366 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 367 | Locks::mutator_lock_->ExclusiveUnlock(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 368 | { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 369 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 370 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 371 | // Update global suspend all state for attaching threads. |
| 372 | --suspend_all_count_; |
| 373 | // Decrement the suspend counts for all threads. |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 374 | for (const auto& thread : list_) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 375 | if (thread == self) { |
| 376 | continue; |
| 377 | } |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 378 | thread->ModifySuspendCount(self, -1, false); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | // Broadcast a notification to all suspended threads, some or all of |
| 382 | // which may choose to wake up. No need to wait for them. |
| 383 | VLOG(threads) << *self << " ResumeAll waking others"; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 384 | Thread::resume_cond_->Broadcast(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 385 | } |
Mathieu Chartier | 6f365cc | 2014-04-23 12:42:27 -0700 | [diff] [blame] | 386 | ATRACE_END(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 387 | VLOG(threads) << *self << " ResumeAll complete"; |
| 388 | } |
| 389 | |
| 390 | void ThreadList::Resume(Thread* thread, bool for_debugger) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 391 | Thread* self = Thread::Current(); |
| 392 | DCHECK_NE(thread, self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 393 | VLOG(threads) << "Resume(" << *thread << ") starting..." << (for_debugger ? " (debugger)" : ""); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 394 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 395 | { |
| 396 | // To check Contains. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 397 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 398 | // To check IsSuspended. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 399 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
| 400 | DCHECK(thread->IsSuspended()); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 401 | if (!Contains(thread)) { |
| 402 | return; |
| 403 | } |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 404 | thread->ModifySuspendCount(self, -1, for_debugger); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 405 | } |
| 406 | |
| 407 | { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 408 | VLOG(threads) << "Resume(" << *thread << ") waking others"; |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 409 | MutexLock mu(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 410 | Thread::resume_cond_->Broadcast(self); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 411 | } |
| 412 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 413 | VLOG(threads) << "Resume(" << *thread << ") complete"; |
| 414 | } |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 415 | |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 416 | static void ThreadSuspendByPeerWarning(Thread* self, int level, const char* message, jobject peer) { |
| 417 | JNIEnvExt* env = self->GetJniEnv(); |
| 418 | ScopedLocalRef<jstring> |
| 419 | scoped_name_string(env, (jstring)env->GetObjectField(peer, |
| 420 | WellKnownClasses::java_lang_Thread_name)); |
| 421 | ScopedUtfChars scoped_name_chars(env, scoped_name_string.get()); |
| 422 | if (scoped_name_chars.c_str() == NULL) { |
| 423 | LOG(level) << message << ": " << peer; |
| 424 | env->ExceptionClear(); |
| 425 | } else { |
| 426 | LOG(level) << message << ": " << peer << ":" << scoped_name_chars.c_str(); |
| 427 | } |
| 428 | } |
| 429 | |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 430 | Thread* ThreadList::SuspendThreadByPeer(jobject peer, bool request_suspension, |
| 431 | bool debug_suspension, bool* timed_out) { |
| 432 | static const useconds_t kTimeoutUs = 30 * 1000000; // 30s. |
| 433 | useconds_t total_delay_us = 0; |
| 434 | useconds_t delay_us = 0; |
| 435 | bool did_suspend_request = false; |
| 436 | *timed_out = false; |
| 437 | Thread* self = Thread::Current(); |
| 438 | while (true) { |
| 439 | Thread* thread; |
| 440 | { |
| 441 | ScopedObjectAccess soa(self); |
| 442 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 443 | thread = Thread::FromManagedThread(soa, peer); |
| 444 | if (thread == NULL) { |
| 445 | ThreadSuspendByPeerWarning(self, WARNING, "No such thread for suspend", peer); |
| 446 | return NULL; |
| 447 | } |
| 448 | { |
| 449 | MutexLock mu(self, *Locks::thread_suspend_count_lock_); |
| 450 | if (request_suspension) { |
| 451 | thread->ModifySuspendCount(self, +1, debug_suspension); |
| 452 | request_suspension = false; |
| 453 | did_suspend_request = true; |
| 454 | } else { |
| 455 | // If the caller isn't requesting suspension, a suspension should have already occurred. |
| 456 | CHECK_GT(thread->GetSuspendCount(), 0); |
| 457 | } |
| 458 | // IsSuspended on the current thread will fail as the current thread is changed into |
| 459 | // Runnable above. As the suspend count is now raised if this is the current thread |
| 460 | // it will self suspend on transition to Runnable, making it hard to work with. It's simpler |
| 461 | // to just explicitly handle the current thread in the callers to this code. |
| 462 | CHECK_NE(thread, self) << "Attempt to suspend the current thread for the debugger"; |
| 463 | // If thread is suspended (perhaps it was already not Runnable but didn't have a suspend |
| 464 | // count, or else we've waited and it has self suspended) or is the current thread, we're |
| 465 | // done. |
| 466 | if (thread->IsSuspended()) { |
| 467 | return thread; |
| 468 | } |
| 469 | if (total_delay_us >= kTimeoutUs) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 470 | ThreadSuspendByPeerWarning(self, FATAL, "Thread suspension timed out", peer); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 471 | if (did_suspend_request) { |
| 472 | thread->ModifySuspendCount(soa.Self(), -1, debug_suspension); |
| 473 | } |
| 474 | *timed_out = true; |
| 475 | return NULL; |
| 476 | } |
| 477 | } |
| 478 | // Release locks and come out of runnable state. |
| 479 | } |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 480 | ThreadSuspendSleep(self, &delay_us, &total_delay_us, false); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 481 | } |
| 482 | } |
| 483 | |
| 484 | static void ThreadSuspendByThreadIdWarning(int level, const char* message, uint32_t thread_id) { |
| 485 | LOG(level) << StringPrintf("%s: %d", message, thread_id); |
| 486 | } |
| 487 | |
| 488 | Thread* ThreadList::SuspendThreadByThreadId(uint32_t thread_id, bool debug_suspension, |
| 489 | bool* timed_out) { |
| 490 | static const useconds_t kTimeoutUs = 30 * 1000000; // 30s. |
| 491 | useconds_t total_delay_us = 0; |
| 492 | useconds_t delay_us = 0; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 493 | *timed_out = false; |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 494 | Thread* suspended_thread = nullptr; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 495 | Thread* self = Thread::Current(); |
| 496 | CHECK_NE(thread_id, kInvalidThreadId); |
| 497 | while (true) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 498 | { |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 499 | Thread* thread = NULL; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 500 | ScopedObjectAccess soa(self); |
| 501 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 502 | for (const auto& it : list_) { |
| 503 | if (it->GetThreadId() == thread_id) { |
| 504 | thread = it; |
| 505 | break; |
| 506 | } |
| 507 | } |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 508 | if (thread == nullptr) { |
| 509 | CHECK(suspended_thread == nullptr) << "Suspended thread " << suspended_thread |
| 510 | << " no longer in thread list"; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 511 | // There's a race in inflating a lock and the owner giving up ownership and then dying. |
| 512 | ThreadSuspendByThreadIdWarning(WARNING, "No such thread id for suspend", thread_id); |
| 513 | return NULL; |
| 514 | } |
| 515 | { |
| 516 | MutexLock mu(self, *Locks::thread_suspend_count_lock_); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 517 | if (suspended_thread == nullptr) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 518 | thread->ModifySuspendCount(self, +1, debug_suspension); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 519 | suspended_thread = thread; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 520 | } else { |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 521 | CHECK_EQ(suspended_thread, thread); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 522 | // If the caller isn't requesting suspension, a suspension should have already occurred. |
| 523 | CHECK_GT(thread->GetSuspendCount(), 0); |
| 524 | } |
| 525 | // IsSuspended on the current thread will fail as the current thread is changed into |
| 526 | // Runnable above. As the suspend count is now raised if this is the current thread |
| 527 | // it will self suspend on transition to Runnable, making it hard to work with. It's simpler |
| 528 | // to just explicitly handle the current thread in the callers to this code. |
| 529 | CHECK_NE(thread, self) << "Attempt to suspend the current thread for the debugger"; |
| 530 | // If thread is suspended (perhaps it was already not Runnable but didn't have a suspend |
| 531 | // count, or else we've waited and it has self suspended) or is the current thread, we're |
| 532 | // done. |
| 533 | if (thread->IsSuspended()) { |
| 534 | return thread; |
| 535 | } |
| 536 | if (total_delay_us >= kTimeoutUs) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 537 | ThreadSuspendByThreadIdWarning(WARNING, "Thread suspension timed out", thread_id); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 538 | if (suspended_thread != nullptr) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 539 | thread->ModifySuspendCount(soa.Self(), -1, debug_suspension); |
| 540 | } |
| 541 | *timed_out = true; |
| 542 | return NULL; |
| 543 | } |
| 544 | } |
| 545 | // Release locks and come out of runnable state. |
| 546 | } |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 547 | ThreadSuspendSleep(self, &delay_us, &total_delay_us, false); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 548 | } |
| 549 | } |
| 550 | |
| 551 | Thread* ThreadList::FindThreadByThreadId(uint32_t thin_lock_id) { |
| 552 | Thread* self = Thread::Current(); |
| 553 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 554 | for (const auto& thread : list_) { |
| 555 | if (thread->GetThreadId() == thin_lock_id) { |
| 556 | CHECK(thread == self || thread->IsSuspended()); |
| 557 | return thread; |
| 558 | } |
| 559 | } |
| 560 | return NULL; |
| 561 | } |
| 562 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 563 | void ThreadList::SuspendAllForDebugger() { |
| 564 | Thread* self = Thread::Current(); |
| 565 | Thread* debug_thread = Dbg::GetDebugThread(); |
| 566 | |
| 567 | VLOG(threads) << *self << " SuspendAllForDebugger starting..."; |
| 568 | |
| 569 | { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 570 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 571 | { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 572 | MutexLock mu(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 573 | // Update global suspend all state for attaching threads. |
| 574 | ++suspend_all_count_; |
| 575 | ++debug_suspend_all_count_; |
| 576 | // Increment everybody's suspend count (except our own). |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 577 | for (const auto& thread : list_) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 578 | if (thread == self || thread == debug_thread) { |
| 579 | continue; |
| 580 | } |
| 581 | VLOG(threads) << "requesting thread suspend: " << *thread; |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 582 | thread->ModifySuspendCount(self, +1, true); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 583 | } |
| 584 | } |
| 585 | } |
| 586 | |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 587 | // Block on the mutator lock until all Runnable threads release their share of access then |
| 588 | // immediately unlock again. |
| 589 | #if HAVE_TIMED_RWLOCK |
| 590 | // Timeout if we wait more than 30 seconds. |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 591 | if (!Locks::mutator_lock_->ExclusiveLockWithTimeout(self, 30 * 1000, 0)) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 592 | UnsafeLogFatalForThreadSuspendAllTimeout(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 593 | } else { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 594 | Locks::mutator_lock_->ExclusiveUnlock(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 595 | } |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 596 | #else |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 597 | Locks::mutator_lock_->ExclusiveLock(self); |
| 598 | Locks::mutator_lock_->ExclusiveUnlock(self); |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 599 | #endif |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 600 | AssertThreadsAreSuspended(self, self, debug_thread); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 601 | |
| 602 | VLOG(threads) << *self << " SuspendAll complete"; |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 603 | } |
| 604 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 605 | void ThreadList::SuspendSelfForDebugger() { |
| 606 | Thread* self = Thread::Current(); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 607 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 608 | // The debugger thread must not suspend itself due to debugger activity! |
| 609 | Thread* debug_thread = Dbg::GetDebugThread(); |
| 610 | CHECK(debug_thread != NULL); |
| 611 | CHECK(self != debug_thread); |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 612 | CHECK_NE(self->GetState(), kRunnable); |
| 613 | Locks::mutator_lock_->AssertNotHeld(self); |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 614 | |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 615 | { |
| 616 | // Collisions with other suspends aren't really interesting. We want |
| 617 | // to ensure that we're the only one fiddling with the suspend count |
| 618 | // though. |
| 619 | MutexLock mu(self, *Locks::thread_suspend_count_lock_); |
| 620 | self->ModifySuspendCount(self, +1, true); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 621 | CHECK_GT(self->GetSuspendCount(), 0); |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 622 | } |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 623 | |
Elliott Hughes | 1f729aa | 2012-03-02 13:55:41 -0800 | [diff] [blame] | 624 | VLOG(threads) << *self << " self-suspending (debugger)"; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 625 | |
Sebastien Hertz | 21e729c | 2014-02-18 14:16:00 +0100 | [diff] [blame] | 626 | // Tell JDWP we've completed invocation and are ready to suspend. |
| 627 | DebugInvokeReq* pReq = self->GetInvokeReq(); |
| 628 | DCHECK(pReq != NULL); |
| 629 | if (pReq->invoke_needed) { |
| 630 | // Clear this before signaling. |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 631 | pReq->Clear(); |
Sebastien Hertz | 21e729c | 2014-02-18 14:16:00 +0100 | [diff] [blame] | 632 | |
| 633 | VLOG(jdwp) << "invoke complete, signaling"; |
| 634 | MutexLock mu(self, pReq->lock); |
| 635 | pReq->cond.Signal(self); |
| 636 | } |
| 637 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 638 | // Tell JDWP that we've completed suspension. The JDWP thread can't |
| 639 | // tell us to resume before we're fully asleep because we hold the |
| 640 | // suspend count lock. |
| 641 | Dbg::ClearWaitForEventThread(); |
| 642 | |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 643 | { |
| 644 | MutexLock mu(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 645 | while (self->GetSuspendCount() != 0) { |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 646 | Thread::resume_cond_->Wait(self); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 647 | if (self->GetSuspendCount() != 0) { |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 648 | // The condition was signaled but we're still suspended. This |
| 649 | // can happen if the debugger lets go while a SIGQUIT thread |
| 650 | // dump event is pending (assuming SignalCatcher was resumed for |
| 651 | // just long enough to try to grab the thread-suspend lock). |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 652 | LOG(WARNING) << *self << " still suspended after undo " |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 653 | << "(suspend count=" << self->GetSuspendCount() << ")"; |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 654 | } |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 655 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 656 | CHECK_EQ(self->GetSuspendCount(), 0); |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 657 | } |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 658 | |
Elliott Hughes | 1f729aa | 2012-03-02 13:55:41 -0800 | [diff] [blame] | 659 | VLOG(threads) << *self << " self-reviving (debugger)"; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 660 | } |
| 661 | |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 662 | void ThreadList::UndoDebuggerSuspensions() { |
| 663 | Thread* self = Thread::Current(); |
| 664 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 665 | VLOG(threads) << *self << " UndoDebuggerSuspensions starting"; |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 666 | |
| 667 | { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 668 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 669 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 670 | // Update global suspend all state for attaching threads. |
| 671 | suspend_all_count_ -= debug_suspend_all_count_; |
| 672 | debug_suspend_all_count_ = 0; |
| 673 | // Update running threads. |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 674 | for (const auto& thread : list_) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 675 | if (thread == self || thread->GetDebugSuspendCount() == 0) { |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 676 | continue; |
| 677 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 678 | thread->ModifySuspendCount(self, -thread->GetDebugSuspendCount(), true); |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 679 | } |
| 680 | } |
| 681 | |
| 682 | { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 683 | MutexLock mu(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 684 | Thread::resume_cond_->Broadcast(self); |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 685 | } |
| 686 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 687 | VLOG(threads) << "UndoDebuggerSuspensions(" << *self << ") complete"; |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 688 | } |
| 689 | |
Elliott Hughes | e52e49b | 2012-04-02 16:05:44 -0700 | [diff] [blame] | 690 | void ThreadList::WaitForOtherNonDaemonThreadsToExit() { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 691 | Thread* self = Thread::Current(); |
| 692 | Locks::mutator_lock_->AssertNotHeld(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 693 | bool all_threads_are_daemons; |
| 694 | do { |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 695 | { |
| 696 | // No more threads can be born after we start to shutdown. |
| 697 | MutexLock mu(self, *Locks::runtime_shutdown_lock_); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 698 | CHECK(Runtime::Current()->IsShuttingDownLocked()); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 699 | CHECK_EQ(Runtime::Current()->NumberOfThreadsBeingBorn(), 0U); |
| 700 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 701 | all_threads_are_daemons = true; |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 702 | MutexLock mu(self, *Locks::thread_list_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 703 | for (const auto& thread : list_) { |
Anwar Ghuloum | 9754368 | 2013-06-14 12:58:16 -0700 | [diff] [blame] | 704 | if (thread != self && !thread->IsDaemon()) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 705 | all_threads_are_daemons = false; |
| 706 | break; |
| 707 | } |
| 708 | } |
| 709 | if (!all_threads_are_daemons) { |
| 710 | // Wait for another thread to exit before re-checking. |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 711 | thread_exit_cond_.Wait(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 712 | } |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 713 | } while (!all_threads_are_daemons); |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 714 | } |
| 715 | |
| 716 | void ThreadList::SuspendAllDaemonThreads() { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 717 | Thread* self = Thread::Current(); |
| 718 | MutexLock mu(self, *Locks::thread_list_lock_); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 719 | { // Tell all the daemons it's time to suspend. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 720 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 721 | for (const auto& thread : list_) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 722 | // This is only run after all non-daemon threads have exited, so the remainder should all be |
| 723 | // daemons. |
Ian Rogers | 7e76286 | 2012-10-22 15:45:08 -0700 | [diff] [blame] | 724 | CHECK(thread->IsDaemon()) << *thread; |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 725 | if (thread != self) { |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 726 | thread->ModifySuspendCount(self, +1, false); |
Elliott Hughes | e52e49b | 2012-04-02 16:05:44 -0700 | [diff] [blame] | 727 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 728 | } |
| 729 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 730 | // Give the threads a chance to suspend, complaining if they're slow. |
| 731 | bool have_complained = false; |
| 732 | for (int i = 0; i < 10; ++i) { |
| 733 | usleep(200 * 1000); |
| 734 | bool all_suspended = true; |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 735 | for (const auto& thread : list_) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 736 | if (thread != self && thread->GetState() == kRunnable) { |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 737 | if (!have_complained) { |
| 738 | LOG(WARNING) << "daemon thread not yet suspended: " << *thread; |
| 739 | have_complained = true; |
| 740 | } |
| 741 | all_suspended = false; |
| 742 | } |
| 743 | } |
| 744 | if (all_suspended) { |
| 745 | return; |
| 746 | } |
| 747 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 748 | LOG(ERROR) << "suspend all daemons failed"; |
| 749 | } |
| 750 | void ThreadList::Register(Thread* self) { |
| 751 | DCHECK_EQ(self, Thread::Current()); |
| 752 | |
| 753 | if (VLOG_IS_ON(threads)) { |
| 754 | std::ostringstream oss; |
| 755 | 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] | 756 | LOG(INFO) << "ThreadList::Register() " << *self << "\n" << oss.str(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 757 | } |
| 758 | |
| 759 | // Atomically add self to the thread list and make its thread_suspend_count_ reflect ongoing |
| 760 | // SuspendAll requests. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 761 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 762 | MutexLock mu2(self, *Locks::thread_suspend_count_lock_); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 763 | CHECK_GE(suspend_all_count_, debug_suspend_all_count_); |
Ian Rogers | 2966e13 | 2014-04-02 08:34:36 -0700 | [diff] [blame] | 764 | // Modify suspend count in increments of 1 to maintain invariants in ModifySuspendCount. While |
| 765 | // this isn't particularly efficient the suspend counts are most commonly 0 or 1. |
| 766 | for (int delta = debug_suspend_all_count_; delta > 0; delta--) { |
| 767 | self->ModifySuspendCount(self, +1, true); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 768 | } |
Ian Rogers | 2966e13 | 2014-04-02 08:34:36 -0700 | [diff] [blame] | 769 | for (int delta = suspend_all_count_ - debug_suspend_all_count_; delta > 0; delta--) { |
| 770 | self->ModifySuspendCount(self, +1, false); |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 771 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 772 | CHECK(!Contains(self)); |
| 773 | list_.push_back(self); |
| 774 | } |
| 775 | |
| 776 | void ThreadList::Unregister(Thread* self) { |
| 777 | DCHECK_EQ(self, Thread::Current()); |
| 778 | |
| 779 | VLOG(threads) << "ThreadList::Unregister() " << *self; |
| 780 | |
| 781 | // Any time-consuming destruction, plus anything that can call back into managed code or |
| 782 | // suspend and so on, must happen at this point, and not in ~Thread. |
| 783 | self->Destroy(); |
| 784 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 785 | uint32_t thin_lock_id = self->GetThreadId(); |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 786 | while (self != nullptr) { |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 787 | // Remove and delete the Thread* while holding the thread_list_lock_ and |
| 788 | // thread_suspend_count_lock_ so that the unregistering thread cannot be suspended. |
Ian Rogers | 0878d65 | 2013-04-18 17:38:35 -0700 | [diff] [blame] | 789 | // Note: deliberately not using MutexLock that could hold a stale self pointer. |
| 790 | Locks::thread_list_lock_->ExclusiveLock(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 791 | CHECK(Contains(self)); |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 792 | // Note: we don't take the thread_suspend_count_lock_ here as to be suspending a thread other |
| 793 | // than yourself you need to hold the thread_list_lock_ (see Thread::ModifySuspendCount). |
| 794 | if (!self->IsSuspended()) { |
| 795 | list_.remove(self); |
| 796 | delete self; |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 797 | self = nullptr; |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 798 | } |
Ian Rogers | 0878d65 | 2013-04-18 17:38:35 -0700 | [diff] [blame] | 799 | Locks::thread_list_lock_->ExclusiveUnlock(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 800 | } |
Mathieu Chartier | 5f51d4b | 2013-12-03 14:24:05 -0800 | [diff] [blame] | 801 | // Release the thread ID after the thread is finished and deleted to avoid cases where we can |
| 802 | // temporarily have multiple threads with the same thread id. When this occurs, it causes |
| 803 | // problems in FindThreadByThreadId / SuspendThreadByThreadId. |
| 804 | ReleaseThreadId(nullptr, thin_lock_id); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 805 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 806 | // Clear the TLS data, so that the underlying native thread is recognizably detached. |
| 807 | // (It may wish to reattach later.) |
| 808 | CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, NULL), "detach self"); |
| 809 | |
| 810 | // Signal that a thread just detached. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 811 | MutexLock mu(NULL, *Locks::thread_list_lock_); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 812 | thread_exit_cond_.Signal(NULL); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 813 | } |
| 814 | |
| 815 | void ThreadList::ForEach(void (*callback)(Thread*, void*), void* context) { |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 816 | for (const auto& thread : list_) { |
| 817 | callback(thread, context); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 818 | } |
| 819 | } |
| 820 | |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 821 | void ThreadList::VisitRoots(RootCallback* callback, void* arg) const { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 822 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 823 | for (const auto& thread : list_) { |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 824 | thread->VisitRoots(callback, arg); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 825 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 826 | } |
| 827 | |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 828 | class VerifyRootWrapperArg { |
| 829 | public: |
| 830 | VerifyRootWrapperArg(VerifyRootCallback* callback, void* arg) : callback_(callback), arg_(arg) { |
| 831 | } |
| 832 | VerifyRootCallback* const callback_; |
| 833 | void* const arg_; |
Mathieu Chartier | 423d2a3 | 2013-09-12 17:33:56 -0700 | [diff] [blame] | 834 | }; |
| 835 | |
Mathieu Chartier | 815873e | 2014-02-13 18:02:13 -0800 | [diff] [blame] | 836 | static void VerifyRootWrapperCallback(mirror::Object** root, void* arg, uint32_t /*thread_id*/, |
Mathieu Chartier | 7bf9f19 | 2014-04-04 11:09:41 -0700 | [diff] [blame] | 837 | RootType root_type) { |
Mathieu Chartier | 423d2a3 | 2013-09-12 17:33:56 -0700 | [diff] [blame] | 838 | VerifyRootWrapperArg* wrapperArg = reinterpret_cast<VerifyRootWrapperArg*>(arg); |
Mathieu Chartier | 7bf9f19 | 2014-04-04 11:09:41 -0700 | [diff] [blame] | 839 | wrapperArg->callback_(*root, wrapperArg->arg_, 0, NULL, root_type); |
Mathieu Chartier | 423d2a3 | 2013-09-12 17:33:56 -0700 | [diff] [blame] | 840 | } |
| 841 | |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 842 | void ThreadList::VerifyRoots(VerifyRootCallback* callback, void* arg) const { |
| 843 | VerifyRootWrapperArg wrapper(callback, arg); |
Mathieu Chartier | 6f1c949 | 2012-10-15 12:08:41 -0700 | [diff] [blame] | 844 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 845 | for (const auto& thread : list_) { |
Mathieu Chartier | 423d2a3 | 2013-09-12 17:33:56 -0700 | [diff] [blame] | 846 | thread->VisitRoots(VerifyRootWrapperCallback, &wrapper); |
Mathieu Chartier | 6f1c949 | 2012-10-15 12:08:41 -0700 | [diff] [blame] | 847 | } |
| 848 | } |
| 849 | |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 850 | uint32_t ThreadList::AllocThreadId(Thread* self) { |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame^] | 851 | MutexLock mu(self, *Locks::allocated_thread_ids_lock_); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 852 | for (size_t i = 0; i < allocated_ids_.size(); ++i) { |
| 853 | if (!allocated_ids_[i]) { |
| 854 | allocated_ids_.set(i); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 855 | return i + 1; // Zero is reserved to mean "invalid". |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 856 | } |
| 857 | } |
| 858 | LOG(FATAL) << "Out of internal thread ids"; |
| 859 | return 0; |
| 860 | } |
| 861 | |
Ian Rogers | cfaa455 | 2012-11-26 21:00:08 -0800 | [diff] [blame] | 862 | void ThreadList::ReleaseThreadId(Thread* self, uint32_t id) { |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame^] | 863 | MutexLock mu(self, *Locks::allocated_thread_ids_lock_); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 864 | --id; // Zero is reserved to mean "invalid". |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 865 | DCHECK(allocated_ids_[id]) << id; |
| 866 | allocated_ids_.reset(id); |
| 867 | } |
| 868 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 869 | } // namespace art |