blob: 30bfb4a79629b11a7a9fa69ce1f33034d2b1cbdf [file] [log] [blame]
Elliott Hughes8daa0922011-09-11 13:46:25 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "mutex.h"
18
19#include <errno.h>
Ian Rogersc604d732012-10-14 16:09:54 -070020#include <sys/time.h>
Elliott Hughes8daa0922011-09-11 13:46:25 -070021
Ian Rogerscf7f1912014-10-22 22:06:39 -070022#define ATRACE_TAG ATRACE_TAG_DALVIK
23#include "cutils/trace.h"
24
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070025#include "atomic.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080026#include "base/logging.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010027#include "base/time_utils.h"
Ian Rogerscf7f1912014-10-22 22:06:39 -070028#include "base/value_object.h"
Ian Rogers693ff612013-02-01 10:56:12 -080029#include "mutex-inl.h"
Elliott Hughes6b355752012-01-13 16:49:08 -080030#include "runtime.h"
Ian Rogersc604d732012-10-14 16:09:54 -070031#include "scoped_thread_state_change.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070032#include "thread-inl.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070033
34namespace art {
35
Ian Rogers719d1a32014-03-06 12:13:39 -080036Mutex* Locks::abort_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070037Mutex* Locks::alloc_tracker_lock_ = nullptr;
Andreas Gampe74240812014-04-17 10:35:09 -070038Mutex* Locks::allocated_monitor_ids_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070039Mutex* Locks::allocated_thread_ids_lock_ = nullptr;
Sebastien Hertzed2be172014-08-19 15:33:43 +020040ReaderWriterMutex* Locks::breakpoint_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080041ReaderWriterMutex* Locks::classlinker_classes_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070042Mutex* Locks::deoptimization_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080043ReaderWriterMutex* Locks::heap_bitmap_lock_ = nullptr;
Mathieu Chartier9ef78b52014-09-25 17:03:12 -070044Mutex* Locks::instrument_entrypoints_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070045Mutex* Locks::intern_table_lock_ = nullptr;
Jeff Haoa2c38642015-09-17 17:29:01 -070046Mutex* Locks::interpreter_string_init_map_lock_ = nullptr;
Ian Rogers68d8b422014-07-17 11:09:10 -070047Mutex* Locks::jni_libraries_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080048Mutex* Locks::logging_lock_ = nullptr;
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070049Mutex* Locks::mem_maps_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070050Mutex* Locks::modify_ldt_lock_ = nullptr;
Yu Lieac44242015-06-29 10:50:03 +080051MutatorMutex* Locks::mutator_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070052Mutex* Locks::profiler_lock_ = nullptr;
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -070053ReaderWriterMutex* Locks::oat_file_manager_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070054Mutex* Locks::reference_processor_lock_ = nullptr;
55Mutex* Locks::reference_queue_cleared_references_lock_ = nullptr;
56Mutex* Locks::reference_queue_finalizer_references_lock_ = nullptr;
57Mutex* Locks::reference_queue_phantom_references_lock_ = nullptr;
58Mutex* Locks::reference_queue_soft_references_lock_ = nullptr;
59Mutex* Locks::reference_queue_weak_references_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080060Mutex* Locks::runtime_shutdown_lock_ = nullptr;
61Mutex* Locks::thread_list_lock_ = nullptr;
Mathieu Chartier91e56692015-03-03 13:51:04 -080062ConditionVariable* Locks::thread_exit_cond_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080063Mutex* Locks::thread_suspend_count_lock_ = nullptr;
64Mutex* Locks::trace_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080065Mutex* Locks::unexpected_signal_lock_ = nullptr;
Igor Murashkine2facc52015-07-10 13:49:08 -070066Mutex* Locks::lambda_table_lock_ = nullptr;
Andreas Gampe5bdb6552015-07-22 23:44:55 -070067Uninterruptible Roles::uninterruptible_;
Ian Rogers719d1a32014-03-06 12:13:39 -080068
69struct AllMutexData {
70 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
71 Atomic<const BaseMutex*> all_mutexes_guard;
72 // All created mutexes guarded by all_mutexes_guard_.
73 std::set<BaseMutex*>* all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070074 AllMutexData() : all_mutexes(nullptr) {}
Ian Rogers719d1a32014-03-06 12:13:39 -080075};
76static struct AllMutexData gAllMutexData[kAllMutexDataSize];
77
Ian Rogersc604d732012-10-14 16:09:54 -070078#if ART_USE_FUTEXES
79static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070080 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070081 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
82 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
83 if (result_ts->tv_nsec < 0) {
84 result_ts->tv_sec--;
85 result_ts->tv_nsec += one_sec;
86 } else if (result_ts->tv_nsec > one_sec) {
87 result_ts->tv_sec++;
88 result_ts->tv_nsec -= one_sec;
89 }
90 return result_ts->tv_sec < 0;
91}
92#endif
93
Ian Rogers6f3dbba2014-10-14 17:41:57 -070094class ScopedAllMutexesLock FINAL {
Ian Rogers56edc432013-01-18 16:51:51 -080095 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070096 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -070097 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -080098 NanoSleep(100);
99 }
100 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700101
Ian Rogers56edc432013-01-18 16:51:51 -0800102 ~ScopedAllMutexesLock() {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700103#if !defined(__clang__)
104 // TODO: remove this workaround target GCC/libc++/bionic bug "invalid failure memory model".
105 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakSequentiallyConsistent(mutex_, 0)) {
106#else
Ian Rogers3e5cf302014-05-20 16:40:37 -0700107 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700108#endif
Ian Rogers56edc432013-01-18 16:51:51 -0800109 NanoSleep(100);
110 }
111 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700112
Ian Rogers56edc432013-01-18 16:51:51 -0800113 private:
114 const BaseMutex* const mutex_;
115};
Ian Rogers56edc432013-01-18 16:51:51 -0800116
Ian Rogerscf7f1912014-10-22 22:06:39 -0700117// Scoped class that generates events at the beginning and end of lock contention.
118class ScopedContentionRecorder FINAL : public ValueObject {
119 public:
120 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid)
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700121 : mutex_(kLogLockContentions ? mutex : nullptr),
Ian Rogerscf7f1912014-10-22 22:06:39 -0700122 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
123 owner_tid_(kLogLockContentions ? owner_tid : 0),
124 start_nano_time_(kLogLockContentions ? NanoTime() : 0) {
125 if (ATRACE_ENABLED()) {
126 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")",
127 mutex->GetName(), owner_tid);
128 ATRACE_BEGIN(msg.c_str());
129 }
130 }
131
132 ~ScopedContentionRecorder() {
133 ATRACE_END();
134 if (kLogLockContentions) {
135 uint64_t end_nano_time = NanoTime();
136 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
137 }
138 }
139
140 private:
141 BaseMutex* const mutex_;
142 const uint64_t blocked_tid_;
143 const uint64_t owner_tid_;
144 const uint64_t start_nano_time_;
145};
146
Ian Rogers56edc432013-01-18 16:51:51 -0800147BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700148 if (kLogLockContentions) {
149 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700150 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700151 if (*all_mutexes_ptr == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700152 // We leak the global set of all mutexes to avoid ordering issues in global variable
153 // construction/destruction.
154 *all_mutexes_ptr = new std::set<BaseMutex*>();
155 }
156 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800157 }
Ian Rogers56edc432013-01-18 16:51:51 -0800158}
159
160BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700161 if (kLogLockContentions) {
162 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700163 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700164 }
Ian Rogers56edc432013-01-18 16:51:51 -0800165}
166
167void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700168 if (kLogLockContentions) {
169 os << "Mutex logging:\n";
170 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700171 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700172 if (all_mutexes == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700173 // No mutexes have been created yet during at startup.
174 return;
175 }
176 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700177 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700178 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
179 BaseMutex* mutex = *it;
180 if (mutex->HasEverContended()) {
181 mutex->Dump(os);
182 os << "\n";
183 }
184 }
185 os << "(Never contented)\n";
186 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
187 BaseMutex* mutex = *it;
188 if (!mutex->HasEverContended()) {
189 mutex->Dump(os);
190 os << "\n";
191 }
192 }
Ian Rogers56edc432013-01-18 16:51:51 -0800193 }
Ian Rogers56edc432013-01-18 16:51:51 -0800194}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700195
Ian Rogers81d425b2012-09-27 16:03:43 -0700196void BaseMutex::CheckSafeToWait(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700197 if (self == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700198 CheckUnattachedThread(level_);
199 return;
200 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700201 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700202 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
203 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700204 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800205 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700206 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700207 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogersf3d874c2014-07-17 18:52:42 -0700208 // We expect waits to happen while holding the thread list suspend thread lock.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700209 if (held_mutex != nullptr) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800210 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
211 << "(level " << LockLevel(i) << ") while performing wait on "
212 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700213 bad_mutexes_held = true;
214 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700215 }
216 }
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000217 if (gAborting == 0) { // Avoid recursive aborts.
218 CHECK(!bad_mutexes_held);
219 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700220 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700221}
222
Ian Rogers37f3c962014-07-17 11:25:30 -0700223void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700224 if (kLogLockContentions) {
225 // Atomically add value to wait_time.
Ian Rogers37f3c962014-07-17 11:25:30 -0700226 wait_time.FetchAndAddSequentiallyConsistent(value);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700227 }
228}
229
Brian Carlstrom0de79852013-07-25 22:29:58 -0700230void BaseMutex::RecordContention(uint64_t blocked_tid,
231 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700232 uint64_t nano_time_blocked) {
233 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700234 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700235 ++(data->contention_count);
236 data->AddToWaitTime(nano_time_blocked);
237 ContentionLogEntry* log = data->contention_log;
238 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700239 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700240 if (log[slot].blocked_tid == blocked_tid &&
241 log[slot].owner_tid == blocked_tid) {
242 ++log[slot].count;
243 } else {
244 uint32_t new_slot;
245 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700246 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700247 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700248 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700249 log[new_slot].blocked_tid = blocked_tid;
250 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700251 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700252 }
Ian Rogers56edc432013-01-18 16:51:51 -0800253 }
Ian Rogers56edc432013-01-18 16:51:51 -0800254}
255
Ian Rogers56edc432013-01-18 16:51:51 -0800256void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700257 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700258 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700259 const ContentionLogEntry* log = data->contention_log;
Ian Rogers37f3c962014-07-17 11:25:30 -0700260 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700261 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700262 if (contention_count == 0) {
263 os << "never contended";
264 } else {
265 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700266 << " total wait of contender " << PrettyDuration(wait_time)
267 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700268 SafeMap<uint64_t, size_t> most_common_blocker;
269 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700270 for (size_t i = 0; i < kContentionLogSize; ++i) {
271 uint64_t blocked_tid = log[i].blocked_tid;
272 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700273 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700274 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700275 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700276 if (it != most_common_blocked.end()) {
277 most_common_blocked.Overwrite(blocked_tid, it->second + count);
278 } else {
279 most_common_blocked.Put(blocked_tid, count);
280 }
281 it = most_common_blocker.find(owner_tid);
282 if (it != most_common_blocker.end()) {
283 most_common_blocker.Overwrite(owner_tid, it->second + count);
284 } else {
285 most_common_blocker.Put(owner_tid, count);
286 }
Ian Rogers56edc432013-01-18 16:51:51 -0800287 }
288 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700289 uint64_t max_tid = 0;
290 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700291 for (const auto& pair : most_common_blocked) {
292 if (pair.second > max_tid_count) {
293 max_tid = pair.first;
294 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700295 }
Ian Rogers56edc432013-01-18 16:51:51 -0800296 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700297 if (max_tid != 0) {
298 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800299 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700300 max_tid = 0;
301 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700302 for (const auto& pair : most_common_blocker) {
303 if (pair.second > max_tid_count) {
304 max_tid = pair.first;
305 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700306 }
307 }
308 if (max_tid != 0) {
309 os << " sample shows tid=" << max_tid << " owning during this time";
310 }
Ian Rogers56edc432013-01-18 16:51:51 -0800311 }
312 }
Ian Rogers56edc432013-01-18 16:51:51 -0800313}
314
315
Ian Rogers81d425b2012-09-27 16:03:43 -0700316Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700317 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700318#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700319 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700320 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700321#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700322 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700323#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700324 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700325}
326
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800327// Helper to ignore the lock requirement.
328static bool IsShuttingDown() NO_THREAD_SAFETY_ANALYSIS {
329 Runtime* runtime = Runtime::Current();
330 return runtime == nullptr || runtime->IsShuttingDownLocked();
331}
332
Elliott Hughes8daa0922011-09-11 13:46:25 -0700333Mutex::~Mutex() {
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800334 bool shutting_down = IsShuttingDown();
Ian Rogersc604d732012-10-14 16:09:54 -0700335#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700336 if (state_.LoadRelaxed() != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700337 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
338 } else {
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800339 if (exclusive_owner_ != 0) {
340 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found an owner on unlocked mutex "
341 << name_;
342 }
343 if (num_contenders_.LoadSequentiallyConsistent() != 0) {
344 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found a contender on mutex " << name_;
Mathieu Chartiercef50f02014-12-09 17:38:52 -0800345 }
Ian Rogersc604d732012-10-14 16:09:54 -0700346 }
347#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700348 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
349 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800350 int rc = pthread_mutex_destroy(&mutex_);
351 if (rc != 0) {
352 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800353 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700354 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Elliott Hughes6b355752012-01-13 16:49:08 -0800355 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
356 }
Ian Rogersc604d732012-10-14 16:09:54 -0700357#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700358}
359
Ian Rogers81d425b2012-09-27 16:03:43 -0700360void Mutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700361 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700362 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700363 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700364 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700365 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700366#if ART_USE_FUTEXES
367 bool done = false;
368 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700369 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700370 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700371 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
372 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700373 } else {
374 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700375 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800376 num_contenders_++;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700377 if (futex(state_.Address(), FUTEX_WAIT, 1, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700378 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
379 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
380 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700381 PLOG(FATAL) << "futex wait failed for " << name_;
382 }
383 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800384 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700385 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700386 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700387 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700388#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700389 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700390#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700391 DCHECK_EQ(exclusive_owner_, 0U);
392 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700393 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700394 }
395 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700396 if (kDebugLocking) {
397 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
398 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700399 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700400 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700401}
402
Ian Rogers81d425b2012-09-27 16:03:43 -0700403bool Mutex::ExclusiveTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700404 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700405 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700406 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700407 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700408 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700409#if ART_USE_FUTEXES
410 bool done = false;
411 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700412 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700413 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700414 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
415 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700416 } else {
417 return false;
418 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700419 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700420 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700421#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700422 int result = pthread_mutex_trylock(&mutex_);
423 if (result == EBUSY) {
424 return false;
425 }
426 if (result != 0) {
427 errno = result;
428 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
429 }
Ian Rogersc604d732012-10-14 16:09:54 -0700430#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700431 DCHECK_EQ(exclusive_owner_, 0U);
432 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700433 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700434 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700435 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700436 if (kDebugLocking) {
437 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
438 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700439 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700440 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700441 return true;
442}
443
Ian Rogers81d425b2012-09-27 16:03:43 -0700444void Mutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800445 if (kIsDebugBuild && self != nullptr && self != Thread::Current()) {
446 std::string name1 = "<null>";
447 std::string name2 = "<null>";
448 if (self != nullptr) {
449 self->GetThreadName(name1);
450 }
451 if (Thread::Current() != nullptr) {
452 Thread::Current()->GetThreadName(name2);
453 }
Mathieu Chartier4c101102015-01-27 17:14:16 -0800454 LOG(FATAL) << GetName() << " level=" << level_ << " self=" << name1
455 << " Thread::Current()=" << name2;
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800456 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700457 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700458 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700459 recursion_count_--;
460 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700461 if (kDebugLocking) {
462 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
463 << name_ << " " << recursion_count_;
464 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700465 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700466#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700467 bool done = false;
468 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700469 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700470 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700471 // We're no longer the owner.
472 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700473 // Change state to 0 and impose load/store ordering appropriate for lock release.
474 // Note, the relaxed loads below musn't reorder before the CompareExchange.
475 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
476 // a status bit into the state on contention.
477 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700478 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700479 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700480 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700481 futex(state_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700482 }
483 }
484 } else {
485 // Logging acquires the logging lock, avoid infinite recursion in that case.
486 if (this != Locks::logging_lock_) {
487 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
488 } else {
Ian Rogersc7dd2952014-10-21 23:31:19 -0700489 LogMessage::LogLine(__FILE__, __LINE__, INTERNAL_FATAL,
490 StringPrintf("Unexpected state_ %d in unlock for %s",
491 cur_state, name_).c_str());
Ian Rogersc5f17732014-06-05 20:48:42 -0700492 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700493 }
494 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700495 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700496#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700497 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700498 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700499#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700500 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700501}
502
Ian Rogers56edc432013-01-18 16:51:51 -0800503void Mutex::Dump(std::ostream& os) const {
504 os << (recursive_ ? "recursive " : "non-recursive ")
505 << name_
506 << " level=" << static_cast<int>(level_)
507 << " rec=" << recursion_count_
508 << " owner=" << GetExclusiveOwnerTid() << " ";
509 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700510}
511
512std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800513 mu.Dump(os);
514 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700515}
516
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700517ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
518 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700519#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700520 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700521#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700522{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700523#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700524 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700525#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700526 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700527}
528
529ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700530#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700531 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700532 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700533 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700534 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700535#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700536 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
537 // may still be using locks.
538 int rc = pthread_rwlock_destroy(&rwlock_);
539 if (rc != 0) {
540 errno = rc;
541 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700542 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700543 Runtime* runtime = Runtime::Current();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700544 bool shutting_down = runtime == nullptr || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700545 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800546 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700547#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700548}
549
Ian Rogers81d425b2012-09-27 16:03:43 -0700550void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700551 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700552 AssertNotExclusiveHeld(self);
553#if ART_USE_FUTEXES
554 bool done = false;
555 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700556 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700557 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700558 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
559 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700560 } else {
561 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700562 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700563 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700564 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700565 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
566 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
567 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700568 PLOG(FATAL) << "futex wait failed for " << name_;
569 }
570 }
Ian Rogersc7190692014-07-08 23:50:26 -0700571 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700572 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700573 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700574 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700575#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700576 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700577#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700578 DCHECK_EQ(exclusive_owner_, 0U);
579 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700580 RegisterAsLocked(self);
581 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700582}
583
Ian Rogers81d425b2012-09-27 16:03:43 -0700584void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700585 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700586 AssertExclusiveHeld(self);
587 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700588 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700589#if ART_USE_FUTEXES
590 bool done = false;
591 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700592 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700593 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700594 // We're no longer the owner.
595 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700596 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
597 // Note, the relaxed loads below musn't reorder before the CompareExchange.
598 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
599 // a status bit into the state on contention.
600 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
601 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700602 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700603 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
604 num_pending_writers_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700605 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700606 }
607 }
608 } else {
609 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
610 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700611 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700612#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700613 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700614 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700615#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700616}
617
Ian Rogers66aee5c2012-08-15 17:17:47 -0700618#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700619bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700620 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700621#if ART_USE_FUTEXES
622 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700623 timespec end_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800624 InitTimeSpec(true, CLOCK_MONOTONIC, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700625 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700626 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700627 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700628 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
629 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700630 } else {
631 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700632 timespec now_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800633 InitTimeSpec(true, CLOCK_MONOTONIC, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700634 timespec rel_ts;
635 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
636 return false; // Timed out.
637 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700638 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700639 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700640 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, nullptr, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700641 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700642 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700643 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700644 } else if ((errno != EAGAIN) && (errno != EINTR)) {
645 // EAGAIN and EINTR both indicate a spurious failure,
646 // recompute the relative time out from now and try again.
647 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700648 PLOG(FATAL) << "timed futex wait failed for " << name_;
649 }
650 }
Ian Rogersc7190692014-07-08 23:50:26 -0700651 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700652 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700653 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700654#else
Ian Rogersc604d732012-10-14 16:09:54 -0700655 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700656 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700657 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700658 if (result == ETIMEDOUT) {
659 return false;
660 }
661 if (result != 0) {
662 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700663 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700664 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700665#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700666 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700667 RegisterAsLocked(self);
668 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700669 return true;
670}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700671#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700672
Ian Rogers51d212e2014-10-23 17:48:20 -0700673#if ART_USE_FUTEXES
Ian Rogerscf7f1912014-10-22 22:06:39 -0700674void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) {
675 // Owner holds it exclusively, hang up.
676 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
677 ++num_pending_readers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700678 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Ian Rogerscf7f1912014-10-22 22:06:39 -0700679 if (errno != EAGAIN) {
680 PLOG(FATAL) << "futex wait failed for " << name_;
681 }
682 }
683 --num_pending_readers_;
684}
Ian Rogers51d212e2014-10-23 17:48:20 -0700685#endif
Ian Rogerscf7f1912014-10-22 22:06:39 -0700686
Ian Rogers81d425b2012-09-27 16:03:43 -0700687bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700688 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700689#if ART_USE_FUTEXES
690 bool done = false;
691 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700692 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700693 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700694 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
695 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700696 } else {
697 // Owner holds it exclusively.
698 return false;
699 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700700 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700701#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700702 int result = pthread_rwlock_tryrdlock(&rwlock_);
703 if (result == EBUSY) {
704 return false;
705 }
706 if (result != 0) {
707 errno = result;
708 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
709 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700710#endif
711 RegisterAsLocked(self);
712 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700713 return true;
714}
715
Ian Rogers81d425b2012-09-27 16:03:43 -0700716bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700717 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700718 bool result;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700719 if (UNLIKELY(self == nullptr)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700720 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700721 } else {
722 result = (self->GetHeldMutex(level_) == this);
723 }
724 return result;
725}
726
Ian Rogers56edc432013-01-18 16:51:51 -0800727void ReaderWriterMutex::Dump(std::ostream& os) const {
728 os << name_
729 << " level=" << static_cast<int>(level_)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700730 << " owner=" << GetExclusiveOwnerTid()
731#if ART_USE_FUTEXES
732 << " state=" << state_.LoadSequentiallyConsistent()
733 << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent()
734 << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent()
735#endif
736 << " ";
Ian Rogers56edc432013-01-18 16:51:51 -0800737 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700738}
739
740std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800741 mu.Dump(os);
742 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700743}
744
Yu Lieac44242015-06-29 10:50:03 +0800745std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu) {
746 mu.Dump(os);
747 return os;
748}
749
Ian Rogers23055dc2013-04-18 16:29:16 -0700750ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700751 : name_(name), guard_(guard) {
752#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700753 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700754 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700755#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000756 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700757 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000758#if !defined(__APPLE__)
759 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
Ian Rogers51d212e2014-10-23 17:48:20 -0700760 CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC));
Narayan Kamath51b71022014-03-04 11:57:09 +0000761#endif
762 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700763#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700764}
765
766ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800767#if ART_USE_FUTEXES
768 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800769 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700770 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800771 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
772 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800773 }
774#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700775 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
776 // may still be using condition variables.
777 int rc = pthread_cond_destroy(&cond_);
778 if (rc != 0) {
779 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700780 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700781 Runtime* runtime = Runtime::Current();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700782 bool shutting_down = (runtime == nullptr) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700783 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
784 }
Ian Rogersc604d732012-10-14 16:09:54 -0700785#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700786}
787
Ian Rogersc604d732012-10-14 16:09:54 -0700788void ConditionVariable::Broadcast(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700789 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700790 // TODO: enable below, there's a race in thread creation that causes false failures currently.
791 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700792 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700793#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800794 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800795 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700796 bool done = false;
797 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700798 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800799 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
800 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800801 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800802 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700803 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800804 if (!done) {
805 if (errno != EAGAIN) {
806 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
807 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800808 }
Ian Rogersc604d732012-10-14 16:09:54 -0700809 } while (!done);
810 }
811#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700812 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700813#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700814}
815
Ian Rogersc604d732012-10-14 16:09:54 -0700816void ConditionVariable::Signal(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700817 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700818 guard_.AssertExclusiveHeld(self);
819#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800820 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800821 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700822 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
823 // to avoid this, however, requeueing can only move all waiters.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700824 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800825 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800826 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700827 }
828#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700829 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700830#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700831}
832
Ian Rogersc604d732012-10-14 16:09:54 -0700833void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700834 guard_.CheckSafeToWait(self);
835 WaitHoldingLocks(self);
836}
837
838void ConditionVariable::WaitHoldingLocks(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700839 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700840 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700841 unsigned int old_recursion_count = guard_.recursion_count_;
842#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700843 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800844 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800845 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700846 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700847 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700848 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700849 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, nullptr, nullptr, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800850 // Futex failed, check it is an expected error.
851 // EAGAIN == EWOULDBLK, so we let the caller try again.
852 // EINTR implies a signal was sent to this thread.
853 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700854 PLOG(FATAL) << "futex wait failed for " << name_;
855 }
856 }
857 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800858 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700859 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800860 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700861 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800862 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700863#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700864 uint64_t old_owner = guard_.exclusive_owner_;
865 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700866 guard_.recursion_count_ = 0;
867 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700868 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700869#endif
870 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700871}
872
Ian Rogers7b078e82014-09-10 14:44:24 -0700873bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700874 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700875 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700876 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700877 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700878 unsigned int old_recursion_count = guard_.recursion_count_;
879#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700880 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800881 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700882 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800883 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800884 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700885 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700886 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700887 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700888 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, nullptr, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700889 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800890 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -0700891 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -0700892 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800893 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700894 } else {
895 PLOG(FATAL) << "timed futex wait failed for " << name_;
896 }
897 }
898 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800899 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700900 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800901 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700902 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800903 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700904#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000905#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700906 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700907#else
Ian Rogersc604d732012-10-14 16:09:54 -0700908 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700909#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700910 uint64_t old_owner = guard_.exclusive_owner_;
911 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700912 guard_.recursion_count_ = 0;
913 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700914 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000915 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -0700916 if (rc == ETIMEDOUT) {
917 timed_out = true;
918 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700919 errno = rc;
920 PLOG(FATAL) << "TimedWait failed for " << name_;
921 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700922 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700923#endif
924 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -0700925 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -0700926}
927
Ian Rogers719d1a32014-03-06 12:13:39 -0800928void Locks::Init() {
929 if (logging_lock_ != nullptr) {
930 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100931 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700932 DCHECK(modify_ldt_lock_ != nullptr);
933 } else {
934 DCHECK(modify_ldt_lock_ == nullptr);
935 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800936 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700937 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700938 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700939 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800940 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800941 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700942 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800943 DCHECK(heap_bitmap_lock_ != nullptr);
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -0700944 DCHECK(oat_file_manager_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700945 DCHECK(intern_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -0700946 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800947 DCHECK(logging_lock_ != nullptr);
948 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700949 DCHECK(profiler_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800950 DCHECK(thread_list_lock_ != nullptr);
951 DCHECK(thread_suspend_count_lock_ != nullptr);
952 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800953 DCHECK(unexpected_signal_lock_ != nullptr);
Igor Murashkine2facc52015-07-10 13:49:08 -0700954 DCHECK(lambda_table_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800955 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700956 // Create global locks in level order from highest lock level to lowest.
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800957 LockLevel current_lock_level = kInstrumentEntrypointsLock;
958 DCHECK(instrument_entrypoints_lock_ == nullptr);
959 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800960
Chao-ying Fu9e369312014-05-21 11:20:52 -0700961 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Brian Carlstrom306db812014-09-05 13:01:41 -0700962 if (new_level >= current_lock_level) { \
963 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
964 fprintf(stderr, "New local level %d is not less than current level %d\n", \
965 new_level, current_lock_level); \
966 exit(1); \
967 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -0700968 current_lock_level = new_level;
969
970 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
971 DCHECK(mutator_lock_ == nullptr);
Yu Lieac44242015-06-29 10:50:03 +0800972 mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700973
974 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
975 DCHECK(heap_bitmap_lock_ == nullptr);
976 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
977
Jeff Hao69dbec62014-09-15 18:03:41 -0700978 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
979 DCHECK(trace_lock_ == nullptr);
980 trace_lock_ = new Mutex("trace lock", current_lock_level);
981
Chao-ying Fu9e369312014-05-21 11:20:52 -0700982 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
983 DCHECK(runtime_shutdown_lock_ == nullptr);
984 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
985
986 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
987 DCHECK(profiler_lock_ == nullptr);
988 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
989
Brian Carlstrom306db812014-09-05 13:01:41 -0700990 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
991 DCHECK(deoptimization_lock_ == nullptr);
992 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
993
994 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
995 DCHECK(alloc_tracker_lock_ == nullptr);
996 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
997
Jeff Haoa2c38642015-09-17 17:29:01 -0700998 UPDATE_CURRENT_LOCK_LEVEL(kInterpreterStringInitMapLock);
999 DCHECK(interpreter_string_init_map_lock_ == nullptr);
1000 interpreter_string_init_map_lock_ = new Mutex("Interpreter String initializer reference map lock", current_lock_level);
1001
Chao-ying Fu9e369312014-05-21 11:20:52 -07001002 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
1003 DCHECK(thread_list_lock_ == nullptr);
1004 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
1005
Ian Rogers68d8b422014-07-17 11:09:10 -07001006 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
1007 DCHECK(jni_libraries_lock_ == nullptr);
1008 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
1009
Chao-ying Fu9e369312014-05-21 11:20:52 -07001010 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001011 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +02001012 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001013
1014 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001015 DCHECK(classlinker_classes_lock_ == nullptr);
1016 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -07001017 current_lock_level);
1018
Andreas Gampe74240812014-04-17 10:35:09 -07001019 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
1020 DCHECK(allocated_monitor_ids_lock_ == nullptr);
1021 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
1022
Chao-ying Fu9e369312014-05-21 11:20:52 -07001023 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
1024 DCHECK(allocated_thread_ids_lock_ == nullptr);
1025 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
1026
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +01001027 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001028 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
1029 DCHECK(modify_ldt_lock_ == nullptr);
1030 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
1031 }
1032
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001033 UPDATE_CURRENT_LOCK_LEVEL(kOatFileManagerLock);
1034 DCHECK(oat_file_manager_lock_ == nullptr);
1035 oat_file_manager_lock_ = new ReaderWriterMutex("OatFile manager lock", current_lock_level);
1036
Chao-ying Fu9e369312014-05-21 11:20:52 -07001037 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001038 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001039 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1040
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001041 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1042 DCHECK(reference_processor_lock_ == nullptr);
1043 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1044
1045 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1046 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1047 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1048
1049 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1050 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1051 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1052
1053 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1054 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1055 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1056
1057 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1058 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1059 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1060
1061 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1062 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1063 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1064
Igor Murashkine2facc52015-07-10 13:49:08 -07001065 UPDATE_CURRENT_LOCK_LEVEL(kLambdaTableLock);
1066 DCHECK(lambda_table_lock_ == nullptr);
1067 lambda_table_lock_ = new Mutex("lambda table lock", current_lock_level);
1068
Chao-ying Fu9e369312014-05-21 11:20:52 -07001069 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1070 DCHECK(abort_lock_ == nullptr);
1071 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1072
1073 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1074 DCHECK(thread_suspend_count_lock_ == nullptr);
1075 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1076
1077 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1078 DCHECK(unexpected_signal_lock_ == nullptr);
1079 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1080
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -07001081 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
1082 DCHECK(mem_maps_lock_ == nullptr);
1083 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
1084
Chao-ying Fu9e369312014-05-21 11:20:52 -07001085 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1086 DCHECK(logging_lock_ == nullptr);
1087 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1088
1089 #undef UPDATE_CURRENT_LOCK_LEVEL
Mathieu Chartier91e56692015-03-03 13:51:04 -08001090
1091 InitConditions();
Ian Rogers719d1a32014-03-06 12:13:39 -08001092 }
1093}
1094
Mathieu Chartier91e56692015-03-03 13:51:04 -08001095void Locks::InitConditions() {
1096 thread_exit_cond_ = new ConditionVariable("thread exit condition variable", *thread_list_lock_);
1097}
Ian Rogers719d1a32014-03-06 12:13:39 -08001098
Elliott Hughese62934d2012-04-09 11:24:29 -07001099} // namespace art