blob: 70bd3984157b3fccfcbfd8048d69009e81d06428 [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 Chartiere58991b2015-10-13 07:59:34 -070054ReaderWriterMutex* Locks::oat_file_count_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070055Mutex* Locks::reference_processor_lock_ = nullptr;
56Mutex* Locks::reference_queue_cleared_references_lock_ = nullptr;
57Mutex* Locks::reference_queue_finalizer_references_lock_ = nullptr;
58Mutex* Locks::reference_queue_phantom_references_lock_ = nullptr;
59Mutex* Locks::reference_queue_soft_references_lock_ = nullptr;
60Mutex* Locks::reference_queue_weak_references_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080061Mutex* Locks::runtime_shutdown_lock_ = nullptr;
62Mutex* Locks::thread_list_lock_ = nullptr;
Mathieu Chartier91e56692015-03-03 13:51:04 -080063ConditionVariable* Locks::thread_exit_cond_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080064Mutex* Locks::thread_suspend_count_lock_ = nullptr;
65Mutex* Locks::trace_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080066Mutex* Locks::unexpected_signal_lock_ = nullptr;
Igor Murashkine2facc52015-07-10 13:49:08 -070067Mutex* Locks::lambda_table_lock_ = nullptr;
Andreas Gampe5bdb6552015-07-22 23:44:55 -070068Uninterruptible Roles::uninterruptible_;
Ian Rogers719d1a32014-03-06 12:13:39 -080069
70struct AllMutexData {
71 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
72 Atomic<const BaseMutex*> all_mutexes_guard;
73 // All created mutexes guarded by all_mutexes_guard_.
74 std::set<BaseMutex*>* all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070075 AllMutexData() : all_mutexes(nullptr) {}
Ian Rogers719d1a32014-03-06 12:13:39 -080076};
77static struct AllMutexData gAllMutexData[kAllMutexDataSize];
78
Ian Rogersc604d732012-10-14 16:09:54 -070079#if ART_USE_FUTEXES
80static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070081 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070082 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
83 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
84 if (result_ts->tv_nsec < 0) {
85 result_ts->tv_sec--;
86 result_ts->tv_nsec += one_sec;
87 } else if (result_ts->tv_nsec > one_sec) {
88 result_ts->tv_sec++;
89 result_ts->tv_nsec -= one_sec;
90 }
91 return result_ts->tv_sec < 0;
92}
93#endif
94
Ian Rogers6f3dbba2014-10-14 17:41:57 -070095class ScopedAllMutexesLock FINAL {
Ian Rogers56edc432013-01-18 16:51:51 -080096 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070097 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -070098 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -080099 NanoSleep(100);
100 }
101 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700102
Ian Rogers56edc432013-01-18 16:51:51 -0800103 ~ScopedAllMutexesLock() {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700104#if !defined(__clang__)
105 // TODO: remove this workaround target GCC/libc++/bionic bug "invalid failure memory model".
106 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakSequentiallyConsistent(mutex_, 0)) {
107#else
Ian Rogers3e5cf302014-05-20 16:40:37 -0700108 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700109#endif
Ian Rogers56edc432013-01-18 16:51:51 -0800110 NanoSleep(100);
111 }
112 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700113
Ian Rogers56edc432013-01-18 16:51:51 -0800114 private:
115 const BaseMutex* const mutex_;
116};
Ian Rogers56edc432013-01-18 16:51:51 -0800117
Ian Rogerscf7f1912014-10-22 22:06:39 -0700118// Scoped class that generates events at the beginning and end of lock contention.
119class ScopedContentionRecorder FINAL : public ValueObject {
120 public:
121 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid)
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700122 : mutex_(kLogLockContentions ? mutex : nullptr),
Ian Rogerscf7f1912014-10-22 22:06:39 -0700123 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
124 owner_tid_(kLogLockContentions ? owner_tid : 0),
125 start_nano_time_(kLogLockContentions ? NanoTime() : 0) {
126 if (ATRACE_ENABLED()) {
127 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")",
128 mutex->GetName(), owner_tid);
129 ATRACE_BEGIN(msg.c_str());
130 }
131 }
132
133 ~ScopedContentionRecorder() {
134 ATRACE_END();
135 if (kLogLockContentions) {
136 uint64_t end_nano_time = NanoTime();
137 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
138 }
139 }
140
141 private:
142 BaseMutex* const mutex_;
143 const uint64_t blocked_tid_;
144 const uint64_t owner_tid_;
145 const uint64_t start_nano_time_;
146};
147
Ian Rogers56edc432013-01-18 16:51:51 -0800148BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700149 if (kLogLockContentions) {
150 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700151 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700152 if (*all_mutexes_ptr == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700153 // We leak the global set of all mutexes to avoid ordering issues in global variable
154 // construction/destruction.
155 *all_mutexes_ptr = new std::set<BaseMutex*>();
156 }
157 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800158 }
Ian Rogers56edc432013-01-18 16:51:51 -0800159}
160
161BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700162 if (kLogLockContentions) {
163 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700164 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700165 }
Ian Rogers56edc432013-01-18 16:51:51 -0800166}
167
168void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700169 if (kLogLockContentions) {
170 os << "Mutex logging:\n";
171 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700172 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700173 if (all_mutexes == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700174 // No mutexes have been created yet during at startup.
175 return;
176 }
177 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700178 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700179 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
180 BaseMutex* mutex = *it;
181 if (mutex->HasEverContended()) {
182 mutex->Dump(os);
183 os << "\n";
184 }
185 }
186 os << "(Never contented)\n";
187 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
188 BaseMutex* mutex = *it;
189 if (!mutex->HasEverContended()) {
190 mutex->Dump(os);
191 os << "\n";
192 }
193 }
Ian Rogers56edc432013-01-18 16:51:51 -0800194 }
Ian Rogers56edc432013-01-18 16:51:51 -0800195}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700196
Ian Rogers81d425b2012-09-27 16:03:43 -0700197void BaseMutex::CheckSafeToWait(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700198 if (self == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700199 CheckUnattachedThread(level_);
200 return;
201 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700202 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700203 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
204 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700205 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800206 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700207 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700208 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogersf3d874c2014-07-17 18:52:42 -0700209 // We expect waits to happen while holding the thread list suspend thread lock.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700210 if (held_mutex != nullptr) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800211 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
212 << "(level " << LockLevel(i) << ") while performing wait on "
213 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700214 bad_mutexes_held = true;
215 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700216 }
217 }
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000218 if (gAborting == 0) { // Avoid recursive aborts.
219 CHECK(!bad_mutexes_held);
220 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700221 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700222}
223
Ian Rogers37f3c962014-07-17 11:25:30 -0700224void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700225 if (kLogLockContentions) {
226 // Atomically add value to wait_time.
Ian Rogers37f3c962014-07-17 11:25:30 -0700227 wait_time.FetchAndAddSequentiallyConsistent(value);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700228 }
229}
230
Brian Carlstrom0de79852013-07-25 22:29:58 -0700231void BaseMutex::RecordContention(uint64_t blocked_tid,
232 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700233 uint64_t nano_time_blocked) {
234 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700235 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700236 ++(data->contention_count);
237 data->AddToWaitTime(nano_time_blocked);
238 ContentionLogEntry* log = data->contention_log;
239 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700240 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700241 if (log[slot].blocked_tid == blocked_tid &&
242 log[slot].owner_tid == blocked_tid) {
243 ++log[slot].count;
244 } else {
245 uint32_t new_slot;
246 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700247 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700248 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700249 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700250 log[new_slot].blocked_tid = blocked_tid;
251 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700252 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700253 }
Ian Rogers56edc432013-01-18 16:51:51 -0800254 }
Ian Rogers56edc432013-01-18 16:51:51 -0800255}
256
Ian Rogers56edc432013-01-18 16:51:51 -0800257void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700258 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700259 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700260 const ContentionLogEntry* log = data->contention_log;
Ian Rogers37f3c962014-07-17 11:25:30 -0700261 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700262 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700263 if (contention_count == 0) {
264 os << "never contended";
265 } else {
266 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700267 << " total wait of contender " << PrettyDuration(wait_time)
268 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700269 SafeMap<uint64_t, size_t> most_common_blocker;
270 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700271 for (size_t i = 0; i < kContentionLogSize; ++i) {
272 uint64_t blocked_tid = log[i].blocked_tid;
273 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700274 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700275 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700276 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700277 if (it != most_common_blocked.end()) {
278 most_common_blocked.Overwrite(blocked_tid, it->second + count);
279 } else {
280 most_common_blocked.Put(blocked_tid, count);
281 }
282 it = most_common_blocker.find(owner_tid);
283 if (it != most_common_blocker.end()) {
284 most_common_blocker.Overwrite(owner_tid, it->second + count);
285 } else {
286 most_common_blocker.Put(owner_tid, count);
287 }
Ian Rogers56edc432013-01-18 16:51:51 -0800288 }
289 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700290 uint64_t max_tid = 0;
291 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700292 for (const auto& pair : most_common_blocked) {
293 if (pair.second > max_tid_count) {
294 max_tid = pair.first;
295 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700296 }
Ian Rogers56edc432013-01-18 16:51:51 -0800297 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700298 if (max_tid != 0) {
299 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800300 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700301 max_tid = 0;
302 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700303 for (const auto& pair : most_common_blocker) {
304 if (pair.second > max_tid_count) {
305 max_tid = pair.first;
306 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700307 }
308 }
309 if (max_tid != 0) {
310 os << " sample shows tid=" << max_tid << " owning during this time";
311 }
Ian Rogers56edc432013-01-18 16:51:51 -0800312 }
313 }
Ian Rogers56edc432013-01-18 16:51:51 -0800314}
315
316
Ian Rogers81d425b2012-09-27 16:03:43 -0700317Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700318 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700319#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700320 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700321 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700322#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700323 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700324#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700325 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700326}
327
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800328// Helper to ignore the lock requirement.
329static bool IsShuttingDown() NO_THREAD_SAFETY_ANALYSIS {
330 Runtime* runtime = Runtime::Current();
331 return runtime == nullptr || runtime->IsShuttingDownLocked();
332}
333
Elliott Hughes8daa0922011-09-11 13:46:25 -0700334Mutex::~Mutex() {
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800335 bool shutting_down = IsShuttingDown();
Ian Rogersc604d732012-10-14 16:09:54 -0700336#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700337 if (state_.LoadRelaxed() != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700338 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
339 } else {
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800340 if (exclusive_owner_ != 0) {
341 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found an owner on unlocked mutex "
342 << name_;
343 }
344 if (num_contenders_.LoadSequentiallyConsistent() != 0) {
345 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found a contender on mutex " << name_;
Mathieu Chartiercef50f02014-12-09 17:38:52 -0800346 }
Ian Rogersc604d732012-10-14 16:09:54 -0700347 }
348#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700349 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
350 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800351 int rc = pthread_mutex_destroy(&mutex_);
352 if (rc != 0) {
353 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800354 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700355 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Elliott Hughes6b355752012-01-13 16:49:08 -0800356 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
357 }
Ian Rogersc604d732012-10-14 16:09:54 -0700358#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700359}
360
Ian Rogers81d425b2012-09-27 16:03:43 -0700361void Mutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700362 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700363 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700364 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700365 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700366 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700367#if ART_USE_FUTEXES
368 bool done = false;
369 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700370 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700371 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700372 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
373 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700374 } else {
375 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700376 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800377 num_contenders_++;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700378 if (futex(state_.Address(), FUTEX_WAIT, 1, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700379 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
380 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
381 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700382 PLOG(FATAL) << "futex wait failed for " << name_;
383 }
384 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800385 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700386 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700387 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700388 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700389#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700390 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700391#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700392 DCHECK_EQ(exclusive_owner_, 0U);
393 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700394 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700395 }
396 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700397 if (kDebugLocking) {
398 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
399 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700400 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700401 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700402}
403
Ian Rogers81d425b2012-09-27 16:03:43 -0700404bool Mutex::ExclusiveTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700405 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700406 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700407 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700408 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700409 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700410#if ART_USE_FUTEXES
411 bool done = false;
412 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700413 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700414 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700415 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
416 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700417 } else {
418 return false;
419 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700420 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700421 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700422#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700423 int result = pthread_mutex_trylock(&mutex_);
424 if (result == EBUSY) {
425 return false;
426 }
427 if (result != 0) {
428 errno = result;
429 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
430 }
Ian Rogersc604d732012-10-14 16:09:54 -0700431#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700432 DCHECK_EQ(exclusive_owner_, 0U);
433 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700434 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700435 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700436 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700437 if (kDebugLocking) {
438 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
439 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700440 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700441 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700442 return true;
443}
444
Ian Rogers81d425b2012-09-27 16:03:43 -0700445void Mutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800446 if (kIsDebugBuild && self != nullptr && self != Thread::Current()) {
447 std::string name1 = "<null>";
448 std::string name2 = "<null>";
449 if (self != nullptr) {
450 self->GetThreadName(name1);
451 }
452 if (Thread::Current() != nullptr) {
453 Thread::Current()->GetThreadName(name2);
454 }
Mathieu Chartier4c101102015-01-27 17:14:16 -0800455 LOG(FATAL) << GetName() << " level=" << level_ << " self=" << name1
456 << " Thread::Current()=" << name2;
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800457 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700458 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700459 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700460 recursion_count_--;
461 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700462 if (kDebugLocking) {
463 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
464 << name_ << " " << recursion_count_;
465 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700466 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700467#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700468 bool done = false;
469 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700470 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700471 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700472 // We're no longer the owner.
473 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700474 // Change state to 0 and impose load/store ordering appropriate for lock release.
475 // Note, the relaxed loads below musn't reorder before the CompareExchange.
476 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
477 // a status bit into the state on contention.
478 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700479 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700480 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700481 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700482 futex(state_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700483 }
484 }
485 } else {
486 // Logging acquires the logging lock, avoid infinite recursion in that case.
487 if (this != Locks::logging_lock_) {
488 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
489 } else {
Ian Rogersc7dd2952014-10-21 23:31:19 -0700490 LogMessage::LogLine(__FILE__, __LINE__, INTERNAL_FATAL,
491 StringPrintf("Unexpected state_ %d in unlock for %s",
492 cur_state, name_).c_str());
Ian Rogersc5f17732014-06-05 20:48:42 -0700493 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700494 }
495 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700496 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700497#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700498 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700499 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700500#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700501 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700502}
503
Ian Rogers56edc432013-01-18 16:51:51 -0800504void Mutex::Dump(std::ostream& os) const {
505 os << (recursive_ ? "recursive " : "non-recursive ")
506 << name_
507 << " level=" << static_cast<int>(level_)
508 << " rec=" << recursion_count_
509 << " owner=" << GetExclusiveOwnerTid() << " ";
510 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700511}
512
513std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800514 mu.Dump(os);
515 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700516}
517
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700518ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
519 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700520#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700521 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700522#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700523{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700524#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700525 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700526#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700527 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700528}
529
530ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700531#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700532 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700533 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700534 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700535 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700536#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700537 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
538 // may still be using locks.
539 int rc = pthread_rwlock_destroy(&rwlock_);
540 if (rc != 0) {
541 errno = rc;
542 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700543 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700544 Runtime* runtime = Runtime::Current();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700545 bool shutting_down = runtime == nullptr || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700546 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800547 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700548#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700549}
550
Ian Rogers81d425b2012-09-27 16:03:43 -0700551void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700552 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700553 AssertNotExclusiveHeld(self);
554#if ART_USE_FUTEXES
555 bool done = false;
556 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700557 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700558 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700559 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
560 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700561 } else {
562 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700563 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700564 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700565 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700566 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
567 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
568 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700569 PLOG(FATAL) << "futex wait failed for " << name_;
570 }
571 }
Ian Rogersc7190692014-07-08 23:50:26 -0700572 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700573 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700574 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700575 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700576#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700577 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700578#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700579 DCHECK_EQ(exclusive_owner_, 0U);
580 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700581 RegisterAsLocked(self);
582 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700583}
584
Ian Rogers81d425b2012-09-27 16:03:43 -0700585void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700586 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700587 AssertExclusiveHeld(self);
588 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700589 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700590#if ART_USE_FUTEXES
591 bool done = false;
592 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700593 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700594 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700595 // We're no longer the owner.
596 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700597 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
598 // Note, the relaxed loads below musn't reorder before the CompareExchange.
599 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
600 // a status bit into the state on contention.
601 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
602 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700603 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700604 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
605 num_pending_writers_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700606 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700607 }
608 }
609 } else {
610 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
611 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700612 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700613#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700614 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700615 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700616#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700617}
618
Ian Rogers66aee5c2012-08-15 17:17:47 -0700619#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700620bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700621 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700622#if ART_USE_FUTEXES
623 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700624 timespec end_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800625 InitTimeSpec(true, CLOCK_MONOTONIC, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700626 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700627 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700628 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700629 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
630 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700631 } else {
632 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700633 timespec now_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800634 InitTimeSpec(true, CLOCK_MONOTONIC, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700635 timespec rel_ts;
636 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
637 return false; // Timed out.
638 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700639 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700640 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700641 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, nullptr, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700642 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700643 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700644 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700645 } else if ((errno != EAGAIN) && (errno != EINTR)) {
646 // EAGAIN and EINTR both indicate a spurious failure,
647 // recompute the relative time out from now and try again.
648 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700649 PLOG(FATAL) << "timed futex wait failed for " << name_;
650 }
651 }
Ian Rogersc7190692014-07-08 23:50:26 -0700652 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700653 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700654 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700655#else
Ian Rogersc604d732012-10-14 16:09:54 -0700656 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700657 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700658 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700659 if (result == ETIMEDOUT) {
660 return false;
661 }
662 if (result != 0) {
663 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700664 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700665 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700666#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700667 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700668 RegisterAsLocked(self);
669 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700670 return true;
671}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700672#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700673
Ian Rogers51d212e2014-10-23 17:48:20 -0700674#if ART_USE_FUTEXES
Ian Rogerscf7f1912014-10-22 22:06:39 -0700675void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) {
676 // Owner holds it exclusively, hang up.
677 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
678 ++num_pending_readers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700679 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Ian Rogerscf7f1912014-10-22 22:06:39 -0700680 if (errno != EAGAIN) {
681 PLOG(FATAL) << "futex wait failed for " << name_;
682 }
683 }
684 --num_pending_readers_;
685}
Ian Rogers51d212e2014-10-23 17:48:20 -0700686#endif
Ian Rogerscf7f1912014-10-22 22:06:39 -0700687
Ian Rogers81d425b2012-09-27 16:03:43 -0700688bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700689 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700690#if ART_USE_FUTEXES
691 bool done = false;
692 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700693 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700694 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700695 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
696 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700697 } else {
698 // Owner holds it exclusively.
699 return false;
700 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700701 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700702#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700703 int result = pthread_rwlock_tryrdlock(&rwlock_);
704 if (result == EBUSY) {
705 return false;
706 }
707 if (result != 0) {
708 errno = result;
709 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
710 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700711#endif
712 RegisterAsLocked(self);
713 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700714 return true;
715}
716
Ian Rogers81d425b2012-09-27 16:03:43 -0700717bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700718 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700719 bool result;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700720 if (UNLIKELY(self == nullptr)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700721 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700722 } else {
723 result = (self->GetHeldMutex(level_) == this);
724 }
725 return result;
726}
727
Ian Rogers56edc432013-01-18 16:51:51 -0800728void ReaderWriterMutex::Dump(std::ostream& os) const {
729 os << name_
730 << " level=" << static_cast<int>(level_)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700731 << " owner=" << GetExclusiveOwnerTid()
732#if ART_USE_FUTEXES
733 << " state=" << state_.LoadSequentiallyConsistent()
734 << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent()
735 << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent()
736#endif
737 << " ";
Ian Rogers56edc432013-01-18 16:51:51 -0800738 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700739}
740
741std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800742 mu.Dump(os);
743 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700744}
745
Yu Lieac44242015-06-29 10:50:03 +0800746std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu) {
747 mu.Dump(os);
748 return os;
749}
750
Ian Rogers23055dc2013-04-18 16:29:16 -0700751ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700752 : name_(name), guard_(guard) {
753#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700754 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700755 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700756#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000757 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700758 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000759#if !defined(__APPLE__)
760 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
Ian Rogers51d212e2014-10-23 17:48:20 -0700761 CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC));
Narayan Kamath51b71022014-03-04 11:57:09 +0000762#endif
763 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700764#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700765}
766
767ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800768#if ART_USE_FUTEXES
769 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800770 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700771 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800772 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
773 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800774 }
775#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700776 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
777 // may still be using condition variables.
778 int rc = pthread_cond_destroy(&cond_);
779 if (rc != 0) {
780 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700781 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700782 Runtime* runtime = Runtime::Current();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700783 bool shutting_down = (runtime == nullptr) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700784 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
785 }
Ian Rogersc604d732012-10-14 16:09:54 -0700786#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700787}
788
Ian Rogersc604d732012-10-14 16:09:54 -0700789void ConditionVariable::Broadcast(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700790 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700791 // TODO: enable below, there's a race in thread creation that causes false failures currently.
792 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700793 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700794#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800795 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800796 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700797 bool done = false;
798 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700799 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800800 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
801 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800802 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800803 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700804 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800805 if (!done) {
806 if (errno != EAGAIN) {
807 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
808 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800809 }
Ian Rogersc604d732012-10-14 16:09:54 -0700810 } while (!done);
811 }
812#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700813 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700814#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700815}
816
Ian Rogersc604d732012-10-14 16:09:54 -0700817void ConditionVariable::Signal(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700818 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700819 guard_.AssertExclusiveHeld(self);
820#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800821 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800822 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700823 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
824 // to avoid this, however, requeueing can only move all waiters.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700825 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800826 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800827 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700828 }
829#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700830 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700831#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700832}
833
Ian Rogersc604d732012-10-14 16:09:54 -0700834void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700835 guard_.CheckSafeToWait(self);
836 WaitHoldingLocks(self);
837}
838
839void ConditionVariable::WaitHoldingLocks(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700840 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700841 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700842 unsigned int old_recursion_count = guard_.recursion_count_;
843#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700844 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800845 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800846 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700847 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700848 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700849 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700850 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, nullptr, nullptr, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800851 // Futex failed, check it is an expected error.
852 // EAGAIN == EWOULDBLK, so we let the caller try again.
853 // EINTR implies a signal was sent to this thread.
854 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700855 PLOG(FATAL) << "futex wait failed for " << name_;
856 }
857 }
858 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800859 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700860 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800861 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700862 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800863 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700864#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700865 uint64_t old_owner = guard_.exclusive_owner_;
866 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700867 guard_.recursion_count_ = 0;
868 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700869 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700870#endif
871 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700872}
873
Ian Rogers7b078e82014-09-10 14:44:24 -0700874bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700875 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700876 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700877 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700878 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700879 unsigned int old_recursion_count = guard_.recursion_count_;
880#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700881 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800882 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700883 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800884 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800885 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700886 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700887 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700888 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700889 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, nullptr, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700890 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800891 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -0700892 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -0700893 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800894 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700895 } else {
896 PLOG(FATAL) << "timed futex wait failed for " << name_;
897 }
898 }
899 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800900 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700901 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800902 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700903 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800904 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700905#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000906#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700907 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700908#else
Ian Rogersc604d732012-10-14 16:09:54 -0700909 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700910#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700911 uint64_t old_owner = guard_.exclusive_owner_;
912 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700913 guard_.recursion_count_ = 0;
914 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700915 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000916 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -0700917 if (rc == ETIMEDOUT) {
918 timed_out = true;
919 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700920 errno = rc;
921 PLOG(FATAL) << "TimedWait failed for " << name_;
922 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700923 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700924#endif
925 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -0700926 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -0700927}
928
Ian Rogers719d1a32014-03-06 12:13:39 -0800929void Locks::Init() {
930 if (logging_lock_ != nullptr) {
931 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100932 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700933 DCHECK(modify_ldt_lock_ != nullptr);
934 } else {
935 DCHECK(modify_ldt_lock_ == nullptr);
936 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800937 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700938 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700939 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700940 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800941 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800942 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700943 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800944 DCHECK(heap_bitmap_lock_ != nullptr);
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -0700945 DCHECK(oat_file_manager_lock_ != nullptr);
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700946 DCHECK(oat_file_count_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700947 DCHECK(intern_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -0700948 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800949 DCHECK(logging_lock_ != nullptr);
950 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700951 DCHECK(profiler_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800952 DCHECK(thread_list_lock_ != nullptr);
953 DCHECK(thread_suspend_count_lock_ != nullptr);
954 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800955 DCHECK(unexpected_signal_lock_ != nullptr);
Igor Murashkine2facc52015-07-10 13:49:08 -0700956 DCHECK(lambda_table_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800957 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700958 // Create global locks in level order from highest lock level to lowest.
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800959 LockLevel current_lock_level = kInstrumentEntrypointsLock;
960 DCHECK(instrument_entrypoints_lock_ == nullptr);
961 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800962
Chao-ying Fu9e369312014-05-21 11:20:52 -0700963 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Brian Carlstrom306db812014-09-05 13:01:41 -0700964 if (new_level >= current_lock_level) { \
965 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
966 fprintf(stderr, "New local level %d is not less than current level %d\n", \
967 new_level, current_lock_level); \
968 exit(1); \
969 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -0700970 current_lock_level = new_level;
971
972 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
973 DCHECK(mutator_lock_ == nullptr);
Yu Lieac44242015-06-29 10:50:03 +0800974 mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700975
976 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
977 DCHECK(heap_bitmap_lock_ == nullptr);
978 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
979
Jeff Hao69dbec62014-09-15 18:03:41 -0700980 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
981 DCHECK(trace_lock_ == nullptr);
982 trace_lock_ = new Mutex("trace lock", current_lock_level);
983
Chao-ying Fu9e369312014-05-21 11:20:52 -0700984 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
985 DCHECK(runtime_shutdown_lock_ == nullptr);
986 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
987
988 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
989 DCHECK(profiler_lock_ == nullptr);
990 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
991
Brian Carlstrom306db812014-09-05 13:01:41 -0700992 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
993 DCHECK(deoptimization_lock_ == nullptr);
994 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
995
996 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
997 DCHECK(alloc_tracker_lock_ == nullptr);
998 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
999
Jeff Haoa2c38642015-09-17 17:29:01 -07001000 UPDATE_CURRENT_LOCK_LEVEL(kInterpreterStringInitMapLock);
1001 DCHECK(interpreter_string_init_map_lock_ == nullptr);
1002 interpreter_string_init_map_lock_ = new Mutex("Interpreter String initializer reference map lock", current_lock_level);
1003
Chao-ying Fu9e369312014-05-21 11:20:52 -07001004 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
1005 DCHECK(thread_list_lock_ == nullptr);
1006 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
1007
Ian Rogers68d8b422014-07-17 11:09:10 -07001008 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
1009 DCHECK(jni_libraries_lock_ == nullptr);
1010 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
1011
Chao-ying Fu9e369312014-05-21 11:20:52 -07001012 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001013 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +02001014 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001015
1016 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001017 DCHECK(classlinker_classes_lock_ == nullptr);
1018 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -07001019 current_lock_level);
1020
Andreas Gampe74240812014-04-17 10:35:09 -07001021 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
1022 DCHECK(allocated_monitor_ids_lock_ == nullptr);
1023 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
1024
Chao-ying Fu9e369312014-05-21 11:20:52 -07001025 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
1026 DCHECK(allocated_thread_ids_lock_ == nullptr);
1027 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
1028
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +01001029 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001030 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
1031 DCHECK(modify_ldt_lock_ == nullptr);
1032 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
1033 }
1034
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001035 UPDATE_CURRENT_LOCK_LEVEL(kOatFileManagerLock);
1036 DCHECK(oat_file_manager_lock_ == nullptr);
1037 oat_file_manager_lock_ = new ReaderWriterMutex("OatFile manager lock", current_lock_level);
1038
Mathieu Chartiere58991b2015-10-13 07:59:34 -07001039 UPDATE_CURRENT_LOCK_LEVEL(kOatFileCountLock);
1040 DCHECK(oat_file_count_lock_ == nullptr);
1041 oat_file_count_lock_ = new ReaderWriterMutex("OatFile count lock", current_lock_level);
1042
Chao-ying Fu9e369312014-05-21 11:20:52 -07001043 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001044 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001045 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1046
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001047 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1048 DCHECK(reference_processor_lock_ == nullptr);
1049 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1050
1051 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1052 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1053 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1054
1055 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1056 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1057 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1058
1059 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1060 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1061 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1062
1063 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1064 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1065 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1066
1067 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1068 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1069 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1070
Igor Murashkine2facc52015-07-10 13:49:08 -07001071 UPDATE_CURRENT_LOCK_LEVEL(kLambdaTableLock);
1072 DCHECK(lambda_table_lock_ == nullptr);
1073 lambda_table_lock_ = new Mutex("lambda table lock", current_lock_level);
1074
Chao-ying Fu9e369312014-05-21 11:20:52 -07001075 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1076 DCHECK(abort_lock_ == nullptr);
1077 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1078
1079 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1080 DCHECK(thread_suspend_count_lock_ == nullptr);
1081 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1082
1083 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1084 DCHECK(unexpected_signal_lock_ == nullptr);
1085 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1086
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -07001087 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
1088 DCHECK(mem_maps_lock_ == nullptr);
1089 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
1090
Chao-ying Fu9e369312014-05-21 11:20:52 -07001091 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1092 DCHECK(logging_lock_ == nullptr);
1093 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1094
1095 #undef UPDATE_CURRENT_LOCK_LEVEL
Mathieu Chartier91e56692015-03-03 13:51:04 -08001096
1097 InitConditions();
Ian Rogers719d1a32014-03-06 12:13:39 -08001098 }
1099}
1100
Mathieu Chartier91e56692015-03-03 13:51:04 -08001101void Locks::InitConditions() {
1102 thread_exit_cond_ = new ConditionVariable("thread exit condition variable", *thread_list_lock_);
1103}
Ian Rogers719d1a32014-03-06 12:13:39 -08001104
Elliott Hughese62934d2012-04-09 11:24:29 -07001105} // namespace art