blob: c591a51886996e1bff5b8c1e9a95bff3e58365a6 [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;
Ian Rogers68d8b422014-07-17 11:09:10 -070046Mutex* Locks::jni_libraries_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080047Mutex* Locks::logging_lock_ = nullptr;
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070048Mutex* Locks::mem_maps_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070049Mutex* Locks::modify_ldt_lock_ = nullptr;
Yu Lieac44242015-06-29 10:50:03 +080050MutatorMutex* Locks::mutator_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070051Mutex* Locks::profiler_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070052Mutex* Locks::reference_processor_lock_ = nullptr;
53Mutex* Locks::reference_queue_cleared_references_lock_ = nullptr;
54Mutex* Locks::reference_queue_finalizer_references_lock_ = nullptr;
55Mutex* Locks::reference_queue_phantom_references_lock_ = nullptr;
56Mutex* Locks::reference_queue_soft_references_lock_ = nullptr;
57Mutex* Locks::reference_queue_weak_references_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080058Mutex* Locks::runtime_shutdown_lock_ = nullptr;
59Mutex* Locks::thread_list_lock_ = nullptr;
Mathieu Chartier91e56692015-03-03 13:51:04 -080060ConditionVariable* Locks::thread_exit_cond_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080061Mutex* Locks::thread_suspend_count_lock_ = nullptr;
62Mutex* Locks::trace_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080063Mutex* Locks::unexpected_signal_lock_ = nullptr;
Igor Murashkine2facc52015-07-10 13:49:08 -070064Mutex* Locks::lambda_table_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080065
66struct AllMutexData {
67 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
68 Atomic<const BaseMutex*> all_mutexes_guard;
69 // All created mutexes guarded by all_mutexes_guard_.
70 std::set<BaseMutex*>* all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070071 AllMutexData() : all_mutexes(nullptr) {}
Ian Rogers719d1a32014-03-06 12:13:39 -080072};
73static struct AllMutexData gAllMutexData[kAllMutexDataSize];
74
Ian Rogersc604d732012-10-14 16:09:54 -070075#if ART_USE_FUTEXES
76static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070077 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070078 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
79 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
80 if (result_ts->tv_nsec < 0) {
81 result_ts->tv_sec--;
82 result_ts->tv_nsec += one_sec;
83 } else if (result_ts->tv_nsec > one_sec) {
84 result_ts->tv_sec++;
85 result_ts->tv_nsec -= one_sec;
86 }
87 return result_ts->tv_sec < 0;
88}
89#endif
90
Ian Rogers6f3dbba2014-10-14 17:41:57 -070091class ScopedAllMutexesLock FINAL {
Ian Rogers56edc432013-01-18 16:51:51 -080092 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070093 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -070094 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -080095 NanoSleep(100);
96 }
97 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -070098
Ian Rogers56edc432013-01-18 16:51:51 -080099 ~ScopedAllMutexesLock() {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700100#if !defined(__clang__)
101 // TODO: remove this workaround target GCC/libc++/bionic bug "invalid failure memory model".
102 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakSequentiallyConsistent(mutex_, 0)) {
103#else
Ian Rogers3e5cf302014-05-20 16:40:37 -0700104 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700105#endif
Ian Rogers56edc432013-01-18 16:51:51 -0800106 NanoSleep(100);
107 }
108 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700109
Ian Rogers56edc432013-01-18 16:51:51 -0800110 private:
111 const BaseMutex* const mutex_;
112};
Ian Rogers56edc432013-01-18 16:51:51 -0800113
Ian Rogerscf7f1912014-10-22 22:06:39 -0700114// Scoped class that generates events at the beginning and end of lock contention.
115class ScopedContentionRecorder FINAL : public ValueObject {
116 public:
117 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid)
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700118 : mutex_(kLogLockContentions ? mutex : nullptr),
Ian Rogerscf7f1912014-10-22 22:06:39 -0700119 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
120 owner_tid_(kLogLockContentions ? owner_tid : 0),
121 start_nano_time_(kLogLockContentions ? NanoTime() : 0) {
122 if (ATRACE_ENABLED()) {
123 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")",
124 mutex->GetName(), owner_tid);
125 ATRACE_BEGIN(msg.c_str());
126 }
127 }
128
129 ~ScopedContentionRecorder() {
130 ATRACE_END();
131 if (kLogLockContentions) {
132 uint64_t end_nano_time = NanoTime();
133 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
134 }
135 }
136
137 private:
138 BaseMutex* const mutex_;
139 const uint64_t blocked_tid_;
140 const uint64_t owner_tid_;
141 const uint64_t start_nano_time_;
142};
143
Ian Rogers56edc432013-01-18 16:51:51 -0800144BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700145 if (kLogLockContentions) {
146 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700147 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700148 if (*all_mutexes_ptr == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700149 // We leak the global set of all mutexes to avoid ordering issues in global variable
150 // construction/destruction.
151 *all_mutexes_ptr = new std::set<BaseMutex*>();
152 }
153 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800154 }
Ian Rogers56edc432013-01-18 16:51:51 -0800155}
156
157BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700158 if (kLogLockContentions) {
159 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700160 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700161 }
Ian Rogers56edc432013-01-18 16:51:51 -0800162}
163
164void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700165 if (kLogLockContentions) {
166 os << "Mutex logging:\n";
167 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700168 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700169 if (all_mutexes == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700170 // No mutexes have been created yet during at startup.
171 return;
172 }
173 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700174 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700175 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
176 BaseMutex* mutex = *it;
177 if (mutex->HasEverContended()) {
178 mutex->Dump(os);
179 os << "\n";
180 }
181 }
182 os << "(Never contented)\n";
183 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
184 BaseMutex* mutex = *it;
185 if (!mutex->HasEverContended()) {
186 mutex->Dump(os);
187 os << "\n";
188 }
189 }
Ian Rogers56edc432013-01-18 16:51:51 -0800190 }
Ian Rogers56edc432013-01-18 16:51:51 -0800191}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700192
Ian Rogers81d425b2012-09-27 16:03:43 -0700193void BaseMutex::CheckSafeToWait(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700194 if (self == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700195 CheckUnattachedThread(level_);
196 return;
197 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700198 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700199 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
200 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700201 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800202 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700203 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700204 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogersf3d874c2014-07-17 18:52:42 -0700205 // We expect waits to happen while holding the thread list suspend thread lock.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700206 if (held_mutex != nullptr) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800207 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
208 << "(level " << LockLevel(i) << ") while performing wait on "
209 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700210 bad_mutexes_held = true;
211 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700212 }
213 }
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000214 if (gAborting == 0) { // Avoid recursive aborts.
215 CHECK(!bad_mutexes_held);
216 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700217 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700218}
219
Ian Rogers37f3c962014-07-17 11:25:30 -0700220void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700221 if (kLogLockContentions) {
222 // Atomically add value to wait_time.
Ian Rogers37f3c962014-07-17 11:25:30 -0700223 wait_time.FetchAndAddSequentiallyConsistent(value);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700224 }
225}
226
Brian Carlstrom0de79852013-07-25 22:29:58 -0700227void BaseMutex::RecordContention(uint64_t blocked_tid,
228 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700229 uint64_t nano_time_blocked) {
230 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700231 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700232 ++(data->contention_count);
233 data->AddToWaitTime(nano_time_blocked);
234 ContentionLogEntry* log = data->contention_log;
235 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700236 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700237 if (log[slot].blocked_tid == blocked_tid &&
238 log[slot].owner_tid == blocked_tid) {
239 ++log[slot].count;
240 } else {
241 uint32_t new_slot;
242 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700243 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700244 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700245 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700246 log[new_slot].blocked_tid = blocked_tid;
247 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700248 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700249 }
Ian Rogers56edc432013-01-18 16:51:51 -0800250 }
Ian Rogers56edc432013-01-18 16:51:51 -0800251}
252
Ian Rogers56edc432013-01-18 16:51:51 -0800253void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700254 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700255 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700256 const ContentionLogEntry* log = data->contention_log;
Ian Rogers37f3c962014-07-17 11:25:30 -0700257 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700258 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700259 if (contention_count == 0) {
260 os << "never contended";
261 } else {
262 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700263 << " total wait of contender " << PrettyDuration(wait_time)
264 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700265 SafeMap<uint64_t, size_t> most_common_blocker;
266 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700267 for (size_t i = 0; i < kContentionLogSize; ++i) {
268 uint64_t blocked_tid = log[i].blocked_tid;
269 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700270 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700271 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700272 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700273 if (it != most_common_blocked.end()) {
274 most_common_blocked.Overwrite(blocked_tid, it->second + count);
275 } else {
276 most_common_blocked.Put(blocked_tid, count);
277 }
278 it = most_common_blocker.find(owner_tid);
279 if (it != most_common_blocker.end()) {
280 most_common_blocker.Overwrite(owner_tid, it->second + count);
281 } else {
282 most_common_blocker.Put(owner_tid, count);
283 }
Ian Rogers56edc432013-01-18 16:51:51 -0800284 }
285 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700286 uint64_t max_tid = 0;
287 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700288 for (const auto& pair : most_common_blocked) {
289 if (pair.second > max_tid_count) {
290 max_tid = pair.first;
291 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700292 }
Ian Rogers56edc432013-01-18 16:51:51 -0800293 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700294 if (max_tid != 0) {
295 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800296 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700297 max_tid = 0;
298 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700299 for (const auto& pair : most_common_blocker) {
300 if (pair.second > max_tid_count) {
301 max_tid = pair.first;
302 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700303 }
304 }
305 if (max_tid != 0) {
306 os << " sample shows tid=" << max_tid << " owning during this time";
307 }
Ian Rogers56edc432013-01-18 16:51:51 -0800308 }
309 }
Ian Rogers56edc432013-01-18 16:51:51 -0800310}
311
312
Ian Rogers81d425b2012-09-27 16:03:43 -0700313Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700314 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700315#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700316 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700317 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700318#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700319 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700320#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700321 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700322}
323
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800324// Helper to ignore the lock requirement.
325static bool IsShuttingDown() NO_THREAD_SAFETY_ANALYSIS {
326 Runtime* runtime = Runtime::Current();
327 return runtime == nullptr || runtime->IsShuttingDownLocked();
328}
329
Elliott Hughes8daa0922011-09-11 13:46:25 -0700330Mutex::~Mutex() {
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800331 bool shutting_down = IsShuttingDown();
Ian Rogersc604d732012-10-14 16:09:54 -0700332#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700333 if (state_.LoadRelaxed() != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700334 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
335 } else {
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800336 if (exclusive_owner_ != 0) {
337 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found an owner on unlocked mutex "
338 << name_;
339 }
340 if (num_contenders_.LoadSequentiallyConsistent() != 0) {
341 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found a contender on mutex " << name_;
Mathieu Chartiercef50f02014-12-09 17:38:52 -0800342 }
Ian Rogersc604d732012-10-14 16:09:54 -0700343 }
344#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700345 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
346 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800347 int rc = pthread_mutex_destroy(&mutex_);
348 if (rc != 0) {
349 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800350 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700351 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Elliott Hughes6b355752012-01-13 16:49:08 -0800352 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
353 }
Ian Rogersc604d732012-10-14 16:09:54 -0700354#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700355}
356
Ian Rogers81d425b2012-09-27 16:03:43 -0700357void Mutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700358 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700359 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700360 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700361 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700362 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700363#if ART_USE_FUTEXES
364 bool done = false;
365 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700366 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700367 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700368 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
369 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700370 } else {
371 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700372 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800373 num_contenders_++;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700374 if (futex(state_.Address(), FUTEX_WAIT, 1, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700375 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
376 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
377 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700378 PLOG(FATAL) << "futex wait failed for " << name_;
379 }
380 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800381 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700382 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700383 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700384 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700385#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700386 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700387#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700388 DCHECK_EQ(exclusive_owner_, 0U);
389 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700390 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700391 }
392 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700393 if (kDebugLocking) {
394 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
395 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700396 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700397 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700398}
399
Ian Rogers81d425b2012-09-27 16:03:43 -0700400bool Mutex::ExclusiveTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700401 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700402 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700403 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700404 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700405 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700406#if ART_USE_FUTEXES
407 bool done = false;
408 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700409 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700410 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700411 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
412 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700413 } else {
414 return false;
415 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700416 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700417 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700418#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700419 int result = pthread_mutex_trylock(&mutex_);
420 if (result == EBUSY) {
421 return false;
422 }
423 if (result != 0) {
424 errno = result;
425 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
426 }
Ian Rogersc604d732012-10-14 16:09:54 -0700427#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700428 DCHECK_EQ(exclusive_owner_, 0U);
429 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700430 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700431 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700432 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700433 if (kDebugLocking) {
434 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
435 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700436 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700437 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700438 return true;
439}
440
Ian Rogers81d425b2012-09-27 16:03:43 -0700441void Mutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800442 if (kIsDebugBuild && self != nullptr && self != Thread::Current()) {
443 std::string name1 = "<null>";
444 std::string name2 = "<null>";
445 if (self != nullptr) {
446 self->GetThreadName(name1);
447 }
448 if (Thread::Current() != nullptr) {
449 Thread::Current()->GetThreadName(name2);
450 }
Mathieu Chartier4c101102015-01-27 17:14:16 -0800451 LOG(FATAL) << GetName() << " level=" << level_ << " self=" << name1
452 << " Thread::Current()=" << name2;
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800453 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700454 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700455 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700456 recursion_count_--;
457 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700458 if (kDebugLocking) {
459 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
460 << name_ << " " << recursion_count_;
461 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700462 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700463#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700464 bool done = false;
465 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700466 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700467 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700468 // We're no longer the owner.
469 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700470 // Change state to 0 and impose load/store ordering appropriate for lock release.
471 // Note, the relaxed loads below musn't reorder before the CompareExchange.
472 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
473 // a status bit into the state on contention.
474 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700475 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700476 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700477 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700478 futex(state_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700479 }
480 }
481 } else {
482 // Logging acquires the logging lock, avoid infinite recursion in that case.
483 if (this != Locks::logging_lock_) {
484 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
485 } else {
Ian Rogersc7dd2952014-10-21 23:31:19 -0700486 LogMessage::LogLine(__FILE__, __LINE__, INTERNAL_FATAL,
487 StringPrintf("Unexpected state_ %d in unlock for %s",
488 cur_state, name_).c_str());
Ian Rogersc5f17732014-06-05 20:48:42 -0700489 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700490 }
491 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700492 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700493#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700494 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700495 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700496#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700497 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700498}
499
Ian Rogers56edc432013-01-18 16:51:51 -0800500void Mutex::Dump(std::ostream& os) const {
501 os << (recursive_ ? "recursive " : "non-recursive ")
502 << name_
503 << " level=" << static_cast<int>(level_)
504 << " rec=" << recursion_count_
505 << " owner=" << GetExclusiveOwnerTid() << " ";
506 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700507}
508
509std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800510 mu.Dump(os);
511 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700512}
513
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700514ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
515 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700516#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700517 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700518#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700519{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700520#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700521 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700522#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700523 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700524}
525
526ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700527#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700528 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700529 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700530 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700531 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700532#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700533 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
534 // may still be using locks.
535 int rc = pthread_rwlock_destroy(&rwlock_);
536 if (rc != 0) {
537 errno = rc;
538 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700539 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700540 Runtime* runtime = Runtime::Current();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700541 bool shutting_down = runtime == nullptr || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700542 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800543 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700544#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700545}
546
Ian Rogers81d425b2012-09-27 16:03:43 -0700547void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700548 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700549 AssertNotExclusiveHeld(self);
550#if ART_USE_FUTEXES
551 bool done = false;
552 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700553 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700554 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700555 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
556 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700557 } else {
558 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700559 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700560 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700561 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700562 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
563 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
564 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700565 PLOG(FATAL) << "futex wait failed for " << name_;
566 }
567 }
Ian Rogersc7190692014-07-08 23:50:26 -0700568 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700569 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700570 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700571 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700572#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700573 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700574#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700575 DCHECK_EQ(exclusive_owner_, 0U);
576 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700577 RegisterAsLocked(self);
578 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700579}
580
Ian Rogers81d425b2012-09-27 16:03:43 -0700581void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700582 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700583 AssertExclusiveHeld(self);
584 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700585 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700586#if ART_USE_FUTEXES
587 bool done = false;
588 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700589 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700590 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700591 // We're no longer the owner.
592 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700593 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
594 // Note, the relaxed loads below musn't reorder before the CompareExchange.
595 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
596 // a status bit into the state on contention.
597 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
598 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700599 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700600 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
601 num_pending_writers_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700602 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700603 }
604 }
605 } else {
606 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
607 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700608 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700609#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700610 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700611 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700612#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700613}
614
Ian Rogers66aee5c2012-08-15 17:17:47 -0700615#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700616bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700617 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700618#if ART_USE_FUTEXES
619 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700620 timespec end_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800621 InitTimeSpec(true, CLOCK_MONOTONIC, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700622 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700623 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700624 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700625 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
626 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700627 } else {
628 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700629 timespec now_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800630 InitTimeSpec(true, CLOCK_MONOTONIC, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700631 timespec rel_ts;
632 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
633 return false; // Timed out.
634 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700635 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700636 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700637 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, nullptr, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700638 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700639 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700640 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700641 } else if ((errno != EAGAIN) && (errno != EINTR)) {
642 // EAGAIN and EINTR both indicate a spurious failure,
643 // recompute the relative time out from now and try again.
644 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700645 PLOG(FATAL) << "timed futex wait failed for " << name_;
646 }
647 }
Ian Rogersc7190692014-07-08 23:50:26 -0700648 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700649 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700650 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700651#else
Ian Rogersc604d732012-10-14 16:09:54 -0700652 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700653 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700654 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700655 if (result == ETIMEDOUT) {
656 return false;
657 }
658 if (result != 0) {
659 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700660 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700661 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700662#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700663 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700664 RegisterAsLocked(self);
665 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700666 return true;
667}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700668#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700669
Ian Rogers51d212e2014-10-23 17:48:20 -0700670#if ART_USE_FUTEXES
Ian Rogerscf7f1912014-10-22 22:06:39 -0700671void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) {
672 // Owner holds it exclusively, hang up.
673 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
674 ++num_pending_readers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700675 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Ian Rogerscf7f1912014-10-22 22:06:39 -0700676 if (errno != EAGAIN) {
677 PLOG(FATAL) << "futex wait failed for " << name_;
678 }
679 }
680 --num_pending_readers_;
681}
Ian Rogers51d212e2014-10-23 17:48:20 -0700682#endif
Ian Rogerscf7f1912014-10-22 22:06:39 -0700683
Ian Rogers81d425b2012-09-27 16:03:43 -0700684bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700685 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700686#if ART_USE_FUTEXES
687 bool done = false;
688 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700689 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700690 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700691 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
692 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700693 } else {
694 // Owner holds it exclusively.
695 return false;
696 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700697 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700698#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700699 int result = pthread_rwlock_tryrdlock(&rwlock_);
700 if (result == EBUSY) {
701 return false;
702 }
703 if (result != 0) {
704 errno = result;
705 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
706 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700707#endif
708 RegisterAsLocked(self);
709 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700710 return true;
711}
712
Ian Rogers81d425b2012-09-27 16:03:43 -0700713bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700714 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700715 bool result;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700716 if (UNLIKELY(self == nullptr)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700717 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700718 } else {
719 result = (self->GetHeldMutex(level_) == this);
720 }
721 return result;
722}
723
Ian Rogers56edc432013-01-18 16:51:51 -0800724void ReaderWriterMutex::Dump(std::ostream& os) const {
725 os << name_
726 << " level=" << static_cast<int>(level_)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700727 << " owner=" << GetExclusiveOwnerTid()
728#if ART_USE_FUTEXES
729 << " state=" << state_.LoadSequentiallyConsistent()
730 << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent()
731 << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent()
732#endif
733 << " ";
Ian Rogers56edc432013-01-18 16:51:51 -0800734 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700735}
736
737std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800738 mu.Dump(os);
739 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700740}
741
Yu Lieac44242015-06-29 10:50:03 +0800742std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu) {
743 mu.Dump(os);
744 return os;
745}
746
Ian Rogers23055dc2013-04-18 16:29:16 -0700747ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700748 : name_(name), guard_(guard) {
749#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700750 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700751 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700752#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000753 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700754 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000755#if !defined(__APPLE__)
756 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
Ian Rogers51d212e2014-10-23 17:48:20 -0700757 CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC));
Narayan Kamath51b71022014-03-04 11:57:09 +0000758#endif
759 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700760#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700761}
762
763ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800764#if ART_USE_FUTEXES
765 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800766 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700767 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800768 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
769 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800770 }
771#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700772 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
773 // may still be using condition variables.
774 int rc = pthread_cond_destroy(&cond_);
775 if (rc != 0) {
776 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700777 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700778 Runtime* runtime = Runtime::Current();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700779 bool shutting_down = (runtime == nullptr) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700780 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
781 }
Ian Rogersc604d732012-10-14 16:09:54 -0700782#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700783}
784
Ian Rogersc604d732012-10-14 16:09:54 -0700785void ConditionVariable::Broadcast(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700786 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700787 // TODO: enable below, there's a race in thread creation that causes false failures currently.
788 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700789 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700790#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800791 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800792 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700793 bool done = false;
794 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700795 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800796 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
797 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800798 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800799 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700800 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800801 if (!done) {
802 if (errno != EAGAIN) {
803 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
804 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800805 }
Ian Rogersc604d732012-10-14 16:09:54 -0700806 } while (!done);
807 }
808#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700809 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700810#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700811}
812
Ian Rogersc604d732012-10-14 16:09:54 -0700813void ConditionVariable::Signal(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700814 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700815 guard_.AssertExclusiveHeld(self);
816#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800817 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800818 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700819 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
820 // to avoid this, however, requeueing can only move all waiters.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700821 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800822 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800823 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700824 }
825#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700826 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700827#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700828}
829
Ian Rogersc604d732012-10-14 16:09:54 -0700830void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700831 guard_.CheckSafeToWait(self);
832 WaitHoldingLocks(self);
833}
834
835void ConditionVariable::WaitHoldingLocks(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700836 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700837 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700838 unsigned int old_recursion_count = guard_.recursion_count_;
839#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700840 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800841 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800842 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700843 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700844 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700845 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700846 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, nullptr, nullptr, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800847 // Futex failed, check it is an expected error.
848 // EAGAIN == EWOULDBLK, so we let the caller try again.
849 // EINTR implies a signal was sent to this thread.
850 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700851 PLOG(FATAL) << "futex wait failed for " << name_;
852 }
853 }
854 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800855 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700856 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800857 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700858 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800859 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700860#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700861 uint64_t old_owner = guard_.exclusive_owner_;
862 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700863 guard_.recursion_count_ = 0;
864 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700865 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700866#endif
867 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700868}
869
Ian Rogers7b078e82014-09-10 14:44:24 -0700870bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700871 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700872 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700873 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700874 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700875 unsigned int old_recursion_count = guard_.recursion_count_;
876#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700877 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800878 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700879 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800880 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800881 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700882 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700883 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700884 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700885 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, nullptr, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700886 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800887 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -0700888 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -0700889 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800890 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700891 } else {
892 PLOG(FATAL) << "timed futex wait failed for " << name_;
893 }
894 }
895 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800896 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700897 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800898 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700899 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800900 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700901#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000902#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700903 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700904#else
Ian Rogersc604d732012-10-14 16:09:54 -0700905 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700906#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700907 uint64_t old_owner = guard_.exclusive_owner_;
908 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700909 guard_.recursion_count_ = 0;
910 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700911 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000912 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -0700913 if (rc == ETIMEDOUT) {
914 timed_out = true;
915 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700916 errno = rc;
917 PLOG(FATAL) << "TimedWait failed for " << name_;
918 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700919 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700920#endif
921 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -0700922 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -0700923}
924
Ian Rogers719d1a32014-03-06 12:13:39 -0800925void Locks::Init() {
926 if (logging_lock_ != nullptr) {
927 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100928 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700929 DCHECK(modify_ldt_lock_ != nullptr);
930 } else {
931 DCHECK(modify_ldt_lock_ == nullptr);
932 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800933 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700934 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700935 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700936 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800937 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800938 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700939 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800940 DCHECK(heap_bitmap_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700941 DCHECK(intern_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -0700942 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800943 DCHECK(logging_lock_ != nullptr);
944 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700945 DCHECK(profiler_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800946 DCHECK(thread_list_lock_ != nullptr);
947 DCHECK(thread_suspend_count_lock_ != nullptr);
948 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800949 DCHECK(unexpected_signal_lock_ != nullptr);
Igor Murashkine2facc52015-07-10 13:49:08 -0700950 DCHECK(lambda_table_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800951 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700952 // Create global locks in level order from highest lock level to lowest.
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800953 LockLevel current_lock_level = kInstrumentEntrypointsLock;
954 DCHECK(instrument_entrypoints_lock_ == nullptr);
955 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800956
Chao-ying Fu9e369312014-05-21 11:20:52 -0700957 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Brian Carlstrom306db812014-09-05 13:01:41 -0700958 if (new_level >= current_lock_level) { \
959 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
960 fprintf(stderr, "New local level %d is not less than current level %d\n", \
961 new_level, current_lock_level); \
962 exit(1); \
963 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -0700964 current_lock_level = new_level;
965
966 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
967 DCHECK(mutator_lock_ == nullptr);
Yu Lieac44242015-06-29 10:50:03 +0800968 mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700969
970 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
971 DCHECK(heap_bitmap_lock_ == nullptr);
972 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
973
Jeff Hao69dbec62014-09-15 18:03:41 -0700974 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
975 DCHECK(trace_lock_ == nullptr);
976 trace_lock_ = new Mutex("trace lock", current_lock_level);
977
Chao-ying Fu9e369312014-05-21 11:20:52 -0700978 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
979 DCHECK(runtime_shutdown_lock_ == nullptr);
980 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
981
982 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
983 DCHECK(profiler_lock_ == nullptr);
984 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
985
Brian Carlstrom306db812014-09-05 13:01:41 -0700986 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
987 DCHECK(deoptimization_lock_ == nullptr);
988 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
989
990 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
991 DCHECK(alloc_tracker_lock_ == nullptr);
992 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
993
Chao-ying Fu9e369312014-05-21 11:20:52 -0700994 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
995 DCHECK(thread_list_lock_ == nullptr);
996 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
997
Ian Rogers68d8b422014-07-17 11:09:10 -0700998 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
999 DCHECK(jni_libraries_lock_ == nullptr);
1000 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
1001
Chao-ying Fu9e369312014-05-21 11:20:52 -07001002 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001003 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +02001004 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001005
1006 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001007 DCHECK(classlinker_classes_lock_ == nullptr);
1008 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -07001009 current_lock_level);
1010
Andreas Gampe74240812014-04-17 10:35:09 -07001011 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
1012 DCHECK(allocated_monitor_ids_lock_ == nullptr);
1013 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
1014
Chao-ying Fu9e369312014-05-21 11:20:52 -07001015 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
1016 DCHECK(allocated_thread_ids_lock_ == nullptr);
1017 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
1018
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +01001019 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001020 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
1021 DCHECK(modify_ldt_lock_ == nullptr);
1022 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
1023 }
1024
1025 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001026 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001027 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1028
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001029 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1030 DCHECK(reference_processor_lock_ == nullptr);
1031 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1032
1033 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1034 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1035 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1036
1037 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1038 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1039 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1040
1041 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1042 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1043 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1044
1045 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1046 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1047 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1048
1049 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1050 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1051 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1052
Igor Murashkine2facc52015-07-10 13:49:08 -07001053 UPDATE_CURRENT_LOCK_LEVEL(kLambdaTableLock);
1054 DCHECK(lambda_table_lock_ == nullptr);
1055 lambda_table_lock_ = new Mutex("lambda table lock", current_lock_level);
1056
Chao-ying Fu9e369312014-05-21 11:20:52 -07001057 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1058 DCHECK(abort_lock_ == nullptr);
1059 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1060
1061 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1062 DCHECK(thread_suspend_count_lock_ == nullptr);
1063 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1064
1065 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1066 DCHECK(unexpected_signal_lock_ == nullptr);
1067 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1068
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -07001069 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
1070 DCHECK(mem_maps_lock_ == nullptr);
1071 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
1072
Chao-ying Fu9e369312014-05-21 11:20:52 -07001073 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1074 DCHECK(logging_lock_ == nullptr);
1075 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1076
1077 #undef UPDATE_CURRENT_LOCK_LEVEL
Mathieu Chartier91e56692015-03-03 13:51:04 -08001078
1079 InitConditions();
Ian Rogers719d1a32014-03-06 12:13:39 -08001080 }
1081}
1082
Mathieu Chartier91e56692015-03-03 13:51:04 -08001083void Locks::InitConditions() {
1084 thread_exit_cond_ = new ConditionVariable("thread exit condition variable", *thread_list_lock_);
1085}
Ian Rogers719d1a32014-03-06 12:13:39 -08001086
Elliott Hughese62934d2012-04-09 11:24:29 -07001087} // namespace art