blob: 43c38c436352389137dda6a4fd660646b117a6a8 [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
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070022#include "atomic.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080023#include "base/logging.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010024#include "base/time_utils.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080025#include "base/systrace.h"
Ian Rogerscf7f1912014-10-22 22:06:39 -070026#include "base/value_object.h"
Ian Rogers693ff612013-02-01 10:56:12 -080027#include "mutex-inl.h"
Elliott Hughes6b355752012-01-13 16:49:08 -080028#include "runtime.h"
Ian Rogersc604d732012-10-14 16:09:54 -070029#include "scoped_thread_state_change.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070030#include "thread-inl.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070031
32namespace art {
33
Ian Rogers719d1a32014-03-06 12:13:39 -080034Mutex* Locks::abort_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070035Mutex* Locks::alloc_tracker_lock_ = nullptr;
Andreas Gampe74240812014-04-17 10:35:09 -070036Mutex* Locks::allocated_monitor_ids_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070037Mutex* Locks::allocated_thread_ids_lock_ = nullptr;
Sebastien Hertzed2be172014-08-19 15:33:43 +020038ReaderWriterMutex* Locks::breakpoint_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080039ReaderWriterMutex* Locks::classlinker_classes_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070040Mutex* Locks::deoptimization_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080041ReaderWriterMutex* Locks::heap_bitmap_lock_ = nullptr;
Mathieu Chartier9ef78b52014-09-25 17:03:12 -070042Mutex* Locks::instrument_entrypoints_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070043Mutex* Locks::intern_table_lock_ = nullptr;
Jeff Haoa2c38642015-09-17 17:29:01 -070044Mutex* Locks::interpreter_string_init_map_lock_ = nullptr;
Ian Rogers68d8b422014-07-17 11:09:10 -070045Mutex* Locks::jni_libraries_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080046Mutex* Locks::logging_lock_ = nullptr;
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070047Mutex* Locks::mem_maps_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070048Mutex* Locks::modify_ldt_lock_ = nullptr;
Yu Lieac44242015-06-29 10:50:03 +080049MutatorMutex* Locks::mutator_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070050Mutex* Locks::profiler_lock_ = nullptr;
David Brazdilca3c8c32016-09-06 14:04:48 +010051Mutex* Locks::verifier_deps_lock_ = nullptr;
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -070052ReaderWriterMutex* Locks::oat_file_manager_lock_ = nullptr;
Richard Uhlera206c742016-05-24 15:04:22 -070053Mutex* Locks::host_dlopen_handles_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070054Mutex* Locks::reference_processor_lock_ = nullptr;
55Mutex* Locks::reference_queue_cleared_references_lock_ = nullptr;
56Mutex* Locks::reference_queue_finalizer_references_lock_ = nullptr;
57Mutex* Locks::reference_queue_phantom_references_lock_ = nullptr;
58Mutex* Locks::reference_queue_soft_references_lock_ = nullptr;
59Mutex* Locks::reference_queue_weak_references_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080060Mutex* Locks::runtime_shutdown_lock_ = nullptr;
61Mutex* Locks::thread_list_lock_ = nullptr;
Mathieu Chartier91e56692015-03-03 13:51:04 -080062ConditionVariable* Locks::thread_exit_cond_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080063Mutex* Locks::thread_suspend_count_lock_ = nullptr;
64Mutex* Locks::trace_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080065Mutex* Locks::unexpected_signal_lock_ = nullptr;
Andreas Gampe5bdb6552015-07-22 23:44:55 -070066Uninterruptible Roles::uninterruptible_;
Ian Rogers719d1a32014-03-06 12:13:39 -080067
68struct AllMutexData {
69 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
70 Atomic<const BaseMutex*> all_mutexes_guard;
71 // All created mutexes guarded by all_mutexes_guard_.
72 std::set<BaseMutex*>* all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070073 AllMutexData() : all_mutexes(nullptr) {}
Ian Rogers719d1a32014-03-06 12:13:39 -080074};
75static struct AllMutexData gAllMutexData[kAllMutexDataSize];
76
Ian Rogersc604d732012-10-14 16:09:54 -070077#if ART_USE_FUTEXES
78static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070079 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070080 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
81 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
82 if (result_ts->tv_nsec < 0) {
83 result_ts->tv_sec--;
84 result_ts->tv_nsec += one_sec;
85 } else if (result_ts->tv_nsec > one_sec) {
86 result_ts->tv_sec++;
87 result_ts->tv_nsec -= one_sec;
88 }
89 return result_ts->tv_sec < 0;
90}
91#endif
92
Ian Rogers6f3dbba2014-10-14 17:41:57 -070093class ScopedAllMutexesLock FINAL {
Ian Rogers56edc432013-01-18 16:51:51 -080094 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070095 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -070096 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -080097 NanoSleep(100);
98 }
99 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700100
Ian Rogers56edc432013-01-18 16:51:51 -0800101 ~ScopedAllMutexesLock() {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700102 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers56edc432013-01-18 16:51:51 -0800103 NanoSleep(100);
104 }
105 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700106
Ian Rogers56edc432013-01-18 16:51:51 -0800107 private:
108 const BaseMutex* const mutex_;
109};
Ian Rogers56edc432013-01-18 16:51:51 -0800110
Ian Rogerscf7f1912014-10-22 22:06:39 -0700111// Scoped class that generates events at the beginning and end of lock contention.
112class ScopedContentionRecorder FINAL : public ValueObject {
113 public:
114 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid)
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700115 : mutex_(kLogLockContentions ? mutex : nullptr),
Ian Rogerscf7f1912014-10-22 22:06:39 -0700116 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
117 owner_tid_(kLogLockContentions ? owner_tid : 0),
118 start_nano_time_(kLogLockContentions ? NanoTime() : 0) {
119 if (ATRACE_ENABLED()) {
120 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")",
121 mutex->GetName(), owner_tid);
122 ATRACE_BEGIN(msg.c_str());
123 }
124 }
125
126 ~ScopedContentionRecorder() {
127 ATRACE_END();
128 if (kLogLockContentions) {
129 uint64_t end_nano_time = NanoTime();
130 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
131 }
132 }
133
134 private:
135 BaseMutex* const mutex_;
136 const uint64_t blocked_tid_;
137 const uint64_t owner_tid_;
138 const uint64_t start_nano_time_;
139};
140
Ian Rogers56edc432013-01-18 16:51:51 -0800141BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700142 if (kLogLockContentions) {
143 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700144 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700145 if (*all_mutexes_ptr == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700146 // We leak the global set of all mutexes to avoid ordering issues in global variable
147 // construction/destruction.
148 *all_mutexes_ptr = new std::set<BaseMutex*>();
149 }
150 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800151 }
Ian Rogers56edc432013-01-18 16:51:51 -0800152}
153
154BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700155 if (kLogLockContentions) {
156 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700157 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700158 }
Ian Rogers56edc432013-01-18 16:51:51 -0800159}
160
161void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700162 if (kLogLockContentions) {
163 os << "Mutex logging:\n";
164 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700165 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700166 if (all_mutexes == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700167 // No mutexes have been created yet during at startup.
168 return;
169 }
170 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700171 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700172 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
173 BaseMutex* mutex = *it;
174 if (mutex->HasEverContended()) {
175 mutex->Dump(os);
176 os << "\n";
177 }
178 }
179 os << "(Never contented)\n";
180 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
181 BaseMutex* mutex = *it;
182 if (!mutex->HasEverContended()) {
183 mutex->Dump(os);
184 os << "\n";
185 }
186 }
Ian Rogers56edc432013-01-18 16:51:51 -0800187 }
Ian Rogers56edc432013-01-18 16:51:51 -0800188}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700189
Ian Rogers81d425b2012-09-27 16:03:43 -0700190void BaseMutex::CheckSafeToWait(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700191 if (self == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700192 CheckUnattachedThread(level_);
193 return;
194 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700195 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700196 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
197 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700198 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800199 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700200 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700201 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogersf3d874c2014-07-17 18:52:42 -0700202 // We expect waits to happen while holding the thread list suspend thread lock.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700203 if (held_mutex != nullptr) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800204 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
205 << "(level " << LockLevel(i) << ") while performing wait on "
206 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700207 bad_mutexes_held = true;
208 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700209 }
210 }
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000211 if (gAborting == 0) { // Avoid recursive aborts.
212 CHECK(!bad_mutexes_held);
213 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700214 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700215}
216
Ian Rogers37f3c962014-07-17 11:25:30 -0700217void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700218 if (kLogLockContentions) {
219 // Atomically add value to wait_time.
Ian Rogers37f3c962014-07-17 11:25:30 -0700220 wait_time.FetchAndAddSequentiallyConsistent(value);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700221 }
222}
223
Brian Carlstrom0de79852013-07-25 22:29:58 -0700224void BaseMutex::RecordContention(uint64_t blocked_tid,
225 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700226 uint64_t nano_time_blocked) {
227 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700228 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700229 ++(data->contention_count);
230 data->AddToWaitTime(nano_time_blocked);
231 ContentionLogEntry* log = data->contention_log;
232 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700233 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700234 if (log[slot].blocked_tid == blocked_tid &&
235 log[slot].owner_tid == blocked_tid) {
236 ++log[slot].count;
237 } else {
238 uint32_t new_slot;
239 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700240 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700241 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700242 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700243 log[new_slot].blocked_tid = blocked_tid;
244 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700245 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700246 }
Ian Rogers56edc432013-01-18 16:51:51 -0800247 }
Ian Rogers56edc432013-01-18 16:51:51 -0800248}
249
Ian Rogers56edc432013-01-18 16:51:51 -0800250void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700251 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700252 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700253 const ContentionLogEntry* log = data->contention_log;
Ian Rogers37f3c962014-07-17 11:25:30 -0700254 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700255 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700256 if (contention_count == 0) {
257 os << "never contended";
258 } else {
259 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700260 << " total wait of contender " << PrettyDuration(wait_time)
261 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700262 SafeMap<uint64_t, size_t> most_common_blocker;
263 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700264 for (size_t i = 0; i < kContentionLogSize; ++i) {
265 uint64_t blocked_tid = log[i].blocked_tid;
266 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700267 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700268 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700269 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700270 if (it != most_common_blocked.end()) {
271 most_common_blocked.Overwrite(blocked_tid, it->second + count);
272 } else {
273 most_common_blocked.Put(blocked_tid, count);
274 }
275 it = most_common_blocker.find(owner_tid);
276 if (it != most_common_blocker.end()) {
277 most_common_blocker.Overwrite(owner_tid, it->second + count);
278 } else {
279 most_common_blocker.Put(owner_tid, count);
280 }
Ian Rogers56edc432013-01-18 16:51:51 -0800281 }
282 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700283 uint64_t max_tid = 0;
284 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700285 for (const auto& pair : most_common_blocked) {
286 if (pair.second > max_tid_count) {
287 max_tid = pair.first;
288 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700289 }
Ian Rogers56edc432013-01-18 16:51:51 -0800290 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700291 if (max_tid != 0) {
292 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800293 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700294 max_tid = 0;
295 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700296 for (const auto& pair : most_common_blocker) {
297 if (pair.second > max_tid_count) {
298 max_tid = pair.first;
299 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700300 }
301 }
302 if (max_tid != 0) {
303 os << " sample shows tid=" << max_tid << " owning during this time";
304 }
Ian Rogers56edc432013-01-18 16:51:51 -0800305 }
306 }
Ian Rogers56edc432013-01-18 16:51:51 -0800307}
308
309
Ian Rogers81d425b2012-09-27 16:03:43 -0700310Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700311 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700312#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700313 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700314 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700315#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700316 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700317#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700318 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700319}
320
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800321// Helper to ignore the lock requirement.
322static bool IsShuttingDown() NO_THREAD_SAFETY_ANALYSIS {
323 Runtime* runtime = Runtime::Current();
324 return runtime == nullptr || runtime->IsShuttingDownLocked();
325}
326
Elliott Hughes8daa0922011-09-11 13:46:25 -0700327Mutex::~Mutex() {
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800328 bool shutting_down = IsShuttingDown();
Ian Rogersc604d732012-10-14 16:09:54 -0700329#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700330 if (state_.LoadRelaxed() != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700331 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
332 } else {
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800333 if (exclusive_owner_ != 0) {
334 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found an owner on unlocked mutex "
335 << name_;
336 }
337 if (num_contenders_.LoadSequentiallyConsistent() != 0) {
338 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found a contender on mutex " << name_;
Mathieu Chartiercef50f02014-12-09 17:38:52 -0800339 }
Ian Rogersc604d732012-10-14 16:09:54 -0700340 }
341#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700342 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
343 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800344 int rc = pthread_mutex_destroy(&mutex_);
345 if (rc != 0) {
346 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800347 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700348 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Elliott Hughes6b355752012-01-13 16:49:08 -0800349 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
350 }
Ian Rogersc604d732012-10-14 16:09:54 -0700351#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700352}
353
Ian Rogers81d425b2012-09-27 16:03:43 -0700354void Mutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700355 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700356 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700357 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700358 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700359 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700360#if ART_USE_FUTEXES
361 bool done = false;
362 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700363 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700364 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700365 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
366 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700367 } else {
368 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700369 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800370 num_contenders_++;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700371 if (futex(state_.Address(), FUTEX_WAIT, 1, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700372 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
373 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
374 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700375 PLOG(FATAL) << "futex wait failed for " << name_;
376 }
377 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800378 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700379 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700380 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700381 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700382#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700383 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700384#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700385 DCHECK_EQ(exclusive_owner_, 0U);
386 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700387 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700388 }
389 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700390 if (kDebugLocking) {
391 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
392 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700393 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700394 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700395}
396
Ian Rogers81d425b2012-09-27 16:03:43 -0700397bool Mutex::ExclusiveTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700398 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700399 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700400 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700401 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700402 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700403#if ART_USE_FUTEXES
404 bool done = false;
405 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700406 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700407 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700408 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
409 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700410 } else {
411 return false;
412 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700413 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700414 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700415#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700416 int result = pthread_mutex_trylock(&mutex_);
417 if (result == EBUSY) {
418 return false;
419 }
420 if (result != 0) {
421 errno = result;
422 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
423 }
Ian Rogersc604d732012-10-14 16:09:54 -0700424#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700425 DCHECK_EQ(exclusive_owner_, 0U);
426 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700427 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700428 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700429 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700430 if (kDebugLocking) {
431 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
432 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700433 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700434 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700435 return true;
436}
437
Ian Rogers81d425b2012-09-27 16:03:43 -0700438void Mutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800439 if (kIsDebugBuild && self != nullptr && self != Thread::Current()) {
440 std::string name1 = "<null>";
441 std::string name2 = "<null>";
442 if (self != nullptr) {
443 self->GetThreadName(name1);
444 }
445 if (Thread::Current() != nullptr) {
446 Thread::Current()->GetThreadName(name2);
447 }
Mathieu Chartier4c101102015-01-27 17:14:16 -0800448 LOG(FATAL) << GetName() << " level=" << level_ << " self=" << name1
449 << " Thread::Current()=" << name2;
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800450 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700451 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700452 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700453 recursion_count_--;
454 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700455 if (kDebugLocking) {
456 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
457 << name_ << " " << recursion_count_;
458 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700459 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700460#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700461 bool done = false;
462 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700463 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700464 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700465 // We're no longer the owner.
466 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700467 // Change state to 0 and impose load/store ordering appropriate for lock release.
468 // Note, the relaxed loads below musn't reorder before the CompareExchange.
469 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
470 // a status bit into the state on contention.
471 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700472 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700473 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700474 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700475 futex(state_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700476 }
477 }
478 } else {
479 // Logging acquires the logging lock, avoid infinite recursion in that case.
480 if (this != Locks::logging_lock_) {
481 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
482 } else {
Ian Rogersc7dd2952014-10-21 23:31:19 -0700483 LogMessage::LogLine(__FILE__, __LINE__, INTERNAL_FATAL,
484 StringPrintf("Unexpected state_ %d in unlock for %s",
485 cur_state, name_).c_str());
Ian Rogersc5f17732014-06-05 20:48:42 -0700486 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700487 }
488 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700489 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700490#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700491 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700492 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700493#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700494 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700495}
496
Ian Rogers56edc432013-01-18 16:51:51 -0800497void Mutex::Dump(std::ostream& os) const {
498 os << (recursive_ ? "recursive " : "non-recursive ")
499 << name_
500 << " level=" << static_cast<int>(level_)
501 << " rec=" << recursion_count_
502 << " owner=" << GetExclusiveOwnerTid() << " ";
503 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700504}
505
506std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800507 mu.Dump(os);
508 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700509}
510
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700511ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
512 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700513#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700514 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700515#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700516{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700517#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700518 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700519#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700520 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700521}
522
523ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700524#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700525 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700526 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700527 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700528 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700529#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700530 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
531 // may still be using locks.
532 int rc = pthread_rwlock_destroy(&rwlock_);
533 if (rc != 0) {
534 errno = rc;
535 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700536 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700537 Runtime* runtime = Runtime::Current();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700538 bool shutting_down = runtime == nullptr || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700539 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800540 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700541#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700542}
543
Ian Rogers81d425b2012-09-27 16:03:43 -0700544void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700545 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700546 AssertNotExclusiveHeld(self);
547#if ART_USE_FUTEXES
548 bool done = false;
549 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700550 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700551 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700552 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
553 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700554 } else {
555 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700556 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700557 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700558 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700559 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
560 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
561 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700562 PLOG(FATAL) << "futex wait failed for " << name_;
563 }
564 }
Ian Rogersc7190692014-07-08 23:50:26 -0700565 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700566 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700567 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700568 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700569#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700570 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700571#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700572 DCHECK_EQ(exclusive_owner_, 0U);
573 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700574 RegisterAsLocked(self);
575 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700576}
577
Ian Rogers81d425b2012-09-27 16:03:43 -0700578void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700579 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700580 AssertExclusiveHeld(self);
581 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700582 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700583#if ART_USE_FUTEXES
584 bool done = false;
585 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700586 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700587 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700588 // We're no longer the owner.
589 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700590 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
591 // Note, the relaxed loads below musn't reorder before the CompareExchange.
592 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
593 // a status bit into the state on contention.
594 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
595 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700596 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700597 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
598 num_pending_writers_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700599 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700600 }
601 }
602 } else {
603 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
604 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700605 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700606#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700607 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700608 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700609#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700610}
611
Ian Rogers66aee5c2012-08-15 17:17:47 -0700612#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700613bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700614 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700615#if ART_USE_FUTEXES
616 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700617 timespec end_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800618 InitTimeSpec(true, CLOCK_MONOTONIC, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700619 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700620 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700621 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700622 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
623 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700624 } else {
625 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700626 timespec now_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800627 InitTimeSpec(true, CLOCK_MONOTONIC, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700628 timespec rel_ts;
629 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
630 return false; // Timed out.
631 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700632 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700633 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700634 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, nullptr, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700635 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700636 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700637 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700638 } else if ((errno != EAGAIN) && (errno != EINTR)) {
639 // EAGAIN and EINTR both indicate a spurious failure,
640 // recompute the relative time out from now and try again.
641 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700642 PLOG(FATAL) << "timed futex wait failed for " << name_;
643 }
644 }
Ian Rogersc7190692014-07-08 23:50:26 -0700645 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700646 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700647 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700648#else
Ian Rogersc604d732012-10-14 16:09:54 -0700649 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700650 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700651 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700652 if (result == ETIMEDOUT) {
653 return false;
654 }
655 if (result != 0) {
656 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700657 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700658 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700659#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700660 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700661 RegisterAsLocked(self);
662 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700663 return true;
664}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700665#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700666
Ian Rogers51d212e2014-10-23 17:48:20 -0700667#if ART_USE_FUTEXES
Ian Rogerscf7f1912014-10-22 22:06:39 -0700668void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) {
669 // Owner holds it exclusively, hang up.
670 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
671 ++num_pending_readers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700672 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Ian Rogerscf7f1912014-10-22 22:06:39 -0700673 if (errno != EAGAIN) {
674 PLOG(FATAL) << "futex wait failed for " << name_;
675 }
676 }
677 --num_pending_readers_;
678}
Ian Rogers51d212e2014-10-23 17:48:20 -0700679#endif
Ian Rogerscf7f1912014-10-22 22:06:39 -0700680
Ian Rogers81d425b2012-09-27 16:03:43 -0700681bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700682 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700683#if ART_USE_FUTEXES
684 bool done = false;
685 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700686 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700687 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700688 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
689 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700690 } else {
691 // Owner holds it exclusively.
692 return false;
693 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700694 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700695#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700696 int result = pthread_rwlock_tryrdlock(&rwlock_);
697 if (result == EBUSY) {
698 return false;
699 }
700 if (result != 0) {
701 errno = result;
702 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
703 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700704#endif
705 RegisterAsLocked(self);
706 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700707 return true;
708}
709
Ian Rogers81d425b2012-09-27 16:03:43 -0700710bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700711 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700712 bool result;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700713 if (UNLIKELY(self == nullptr)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700714 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700715 } else {
716 result = (self->GetHeldMutex(level_) == this);
717 }
718 return result;
719}
720
Ian Rogers56edc432013-01-18 16:51:51 -0800721void ReaderWriterMutex::Dump(std::ostream& os) const {
722 os << name_
723 << " level=" << static_cast<int>(level_)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700724 << " owner=" << GetExclusiveOwnerTid()
725#if ART_USE_FUTEXES
726 << " state=" << state_.LoadSequentiallyConsistent()
727 << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent()
728 << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent()
729#endif
730 << " ";
Ian Rogers56edc432013-01-18 16:51:51 -0800731 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700732}
733
734std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800735 mu.Dump(os);
736 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700737}
738
Yu Lieac44242015-06-29 10:50:03 +0800739std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu) {
740 mu.Dump(os);
741 return os;
742}
743
Ian Rogers23055dc2013-04-18 16:29:16 -0700744ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700745 : name_(name), guard_(guard) {
746#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700747 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700748 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700749#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000750 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700751 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000752#if !defined(__APPLE__)
753 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
Ian Rogers51d212e2014-10-23 17:48:20 -0700754 CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC));
Narayan Kamath51b71022014-03-04 11:57:09 +0000755#endif
756 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700757#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700758}
759
760ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800761#if ART_USE_FUTEXES
762 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800763 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700764 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800765 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
766 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800767 }
768#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700769 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
770 // may still be using condition variables.
771 int rc = pthread_cond_destroy(&cond_);
772 if (rc != 0) {
773 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700774 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700775 Runtime* runtime = Runtime::Current();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700776 bool shutting_down = (runtime == nullptr) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700777 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
778 }
Ian Rogersc604d732012-10-14 16:09:54 -0700779#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700780}
781
Ian Rogersc604d732012-10-14 16:09:54 -0700782void ConditionVariable::Broadcast(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700783 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700784 // TODO: enable below, there's a race in thread creation that causes false failures currently.
785 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700786 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700787#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800788 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800789 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700790 bool done = false;
791 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700792 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800793 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
794 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800795 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800796 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700797 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800798 if (!done) {
799 if (errno != EAGAIN) {
800 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
801 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800802 }
Ian Rogersc604d732012-10-14 16:09:54 -0700803 } while (!done);
804 }
805#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700806 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700807#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700808}
809
Ian Rogersc604d732012-10-14 16:09:54 -0700810void ConditionVariable::Signal(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700811 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700812 guard_.AssertExclusiveHeld(self);
813#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800814 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800815 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700816 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
817 // to avoid this, however, requeueing can only move all waiters.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700818 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800819 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800820 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700821 }
822#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700823 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700824#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700825}
826
Ian Rogersc604d732012-10-14 16:09:54 -0700827void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700828 guard_.CheckSafeToWait(self);
829 WaitHoldingLocks(self);
830}
831
832void ConditionVariable::WaitHoldingLocks(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700833 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700834 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700835 unsigned int old_recursion_count = guard_.recursion_count_;
836#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700837 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800838 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800839 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700840 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700841 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700842 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700843 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, nullptr, nullptr, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800844 // Futex failed, check it is an expected error.
845 // EAGAIN == EWOULDBLK, so we let the caller try again.
846 // EINTR implies a signal was sent to this thread.
847 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700848 PLOG(FATAL) << "futex wait failed for " << name_;
849 }
850 }
Mathieu Chartier4d87df62016-01-07 15:14:19 -0800851 if (self != nullptr) {
852 JNIEnvExt* const env = self->GetJniEnv();
853 if (UNLIKELY(env != nullptr && env->runtime_deleted)) {
854 CHECK(self->IsDaemon());
855 // If the runtime has been deleted, then we cannot proceed. Just sleep forever. This may
856 // occur for user daemon threads that get a spurious wakeup. This occurs for test 132 with
857 // --host and --gdb.
858 // After we wake up, the runtime may have been shutdown, which means that this condition may
859 // have been deleted. It is not safe to retry the wait.
860 SleepForever();
861 }
862 }
Ian Rogersc604d732012-10-14 16:09:54 -0700863 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800864 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700865 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800866 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700867 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800868 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700869#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700870 uint64_t old_owner = guard_.exclusive_owner_;
871 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700872 guard_.recursion_count_ = 0;
873 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700874 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700875#endif
876 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700877}
878
Ian Rogers7b078e82014-09-10 14:44:24 -0700879bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700880 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700881 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700882 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700883 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700884 unsigned int old_recursion_count = guard_.recursion_count_;
885#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700886 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800887 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700888 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800889 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800890 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700891 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700892 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700893 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700894 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, nullptr, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700895 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800896 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -0700897 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -0700898 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800899 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700900 } else {
901 PLOG(FATAL) << "timed futex wait failed for " << name_;
902 }
903 }
904 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800905 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700906 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800907 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700908 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800909 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700910#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000911#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700912 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700913#else
Ian Rogersc604d732012-10-14 16:09:54 -0700914 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700915#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700916 uint64_t old_owner = guard_.exclusive_owner_;
917 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700918 guard_.recursion_count_ = 0;
919 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700920 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000921 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -0700922 if (rc == ETIMEDOUT) {
923 timed_out = true;
924 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700925 errno = rc;
926 PLOG(FATAL) << "TimedWait failed for " << name_;
927 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700928 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700929#endif
930 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -0700931 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -0700932}
933
Ian Rogers719d1a32014-03-06 12:13:39 -0800934void Locks::Init() {
935 if (logging_lock_ != nullptr) {
936 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100937 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700938 DCHECK(modify_ldt_lock_ != nullptr);
939 } else {
940 DCHECK(modify_ldt_lock_ == nullptr);
941 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800942 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700943 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700944 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700945 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800946 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800947 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700948 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800949 DCHECK(heap_bitmap_lock_ != nullptr);
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -0700950 DCHECK(oat_file_manager_lock_ != nullptr);
David Brazdilca3c8c32016-09-06 14:04:48 +0100951 DCHECK(verifier_deps_lock_ != nullptr);
Richard Uhlera206c742016-05-24 15:04:22 -0700952 DCHECK(host_dlopen_handles_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700953 DCHECK(intern_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -0700954 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800955 DCHECK(logging_lock_ != nullptr);
956 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700957 DCHECK(profiler_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800958 DCHECK(thread_list_lock_ != nullptr);
959 DCHECK(thread_suspend_count_lock_ != nullptr);
960 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800961 DCHECK(unexpected_signal_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800962 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700963 // Create global locks in level order from highest lock level to lowest.
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800964 LockLevel current_lock_level = kInstrumentEntrypointsLock;
965 DCHECK(instrument_entrypoints_lock_ == nullptr);
966 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800967
Chao-ying Fu9e369312014-05-21 11:20:52 -0700968 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Chih-Hung Hsiehfba39972016-05-11 11:26:48 -0700969 if ((new_level) >= current_lock_level) { \
Brian Carlstrom306db812014-09-05 13:01:41 -0700970 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
971 fprintf(stderr, "New local level %d is not less than current level %d\n", \
972 new_level, current_lock_level); \
973 exit(1); \
974 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -0700975 current_lock_level = new_level;
976
977 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
978 DCHECK(mutator_lock_ == nullptr);
Yu Lieac44242015-06-29 10:50:03 +0800979 mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700980
981 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
982 DCHECK(heap_bitmap_lock_ == nullptr);
983 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
984
Jeff Hao69dbec62014-09-15 18:03:41 -0700985 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
986 DCHECK(trace_lock_ == nullptr);
987 trace_lock_ = new Mutex("trace lock", current_lock_level);
988
Chao-ying Fu9e369312014-05-21 11:20:52 -0700989 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
990 DCHECK(runtime_shutdown_lock_ == nullptr);
991 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
992
993 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
994 DCHECK(profiler_lock_ == nullptr);
995 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
996
Brian Carlstrom306db812014-09-05 13:01:41 -0700997 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
998 DCHECK(deoptimization_lock_ == nullptr);
999 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
1000
1001 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
1002 DCHECK(alloc_tracker_lock_ == nullptr);
1003 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
1004
Chao-ying Fu9e369312014-05-21 11:20:52 -07001005 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
1006 DCHECK(thread_list_lock_ == nullptr);
1007 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
1008
Ian Rogers68d8b422014-07-17 11:09:10 -07001009 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
1010 DCHECK(jni_libraries_lock_ == nullptr);
1011 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
1012
Chao-ying Fu9e369312014-05-21 11:20:52 -07001013 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001014 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +02001015 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001016
1017 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001018 DCHECK(classlinker_classes_lock_ == nullptr);
1019 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -07001020 current_lock_level);
1021
Andreas Gampe74240812014-04-17 10:35:09 -07001022 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
1023 DCHECK(allocated_monitor_ids_lock_ == nullptr);
1024 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
1025
Chao-ying Fu9e369312014-05-21 11:20:52 -07001026 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
1027 DCHECK(allocated_thread_ids_lock_ == nullptr);
1028 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
1029
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +01001030 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001031 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
1032 DCHECK(modify_ldt_lock_ == nullptr);
1033 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
1034 }
1035
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001036 UPDATE_CURRENT_LOCK_LEVEL(kOatFileManagerLock);
1037 DCHECK(oat_file_manager_lock_ == nullptr);
1038 oat_file_manager_lock_ = new ReaderWriterMutex("OatFile manager lock", current_lock_level);
1039
David Brazdilca3c8c32016-09-06 14:04:48 +01001040 UPDATE_CURRENT_LOCK_LEVEL(kVerifierDepsLock);
1041 DCHECK(verifier_deps_lock_ == nullptr);
1042 verifier_deps_lock_ = new Mutex("verifier deps lock", current_lock_level);
1043
Richard Uhlera206c742016-05-24 15:04:22 -07001044 UPDATE_CURRENT_LOCK_LEVEL(kHostDlOpenHandlesLock);
1045 DCHECK(host_dlopen_handles_lock_ == nullptr);
1046 host_dlopen_handles_lock_ = new Mutex("host dlopen handles lock", current_lock_level);
Mathieu Chartiere58991b2015-10-13 07:59:34 -07001047
Chao-ying Fu9e369312014-05-21 11:20:52 -07001048 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001049 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001050 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1051
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001052 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1053 DCHECK(reference_processor_lock_ == nullptr);
1054 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1055
1056 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1057 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1058 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1059
1060 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1061 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1062 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1063
1064 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1065 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1066 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1067
1068 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1069 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1070 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1071
1072 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1073 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1074 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1075
Chao-ying Fu9e369312014-05-21 11:20:52 -07001076 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1077 DCHECK(abort_lock_ == nullptr);
1078 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1079
1080 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1081 DCHECK(thread_suspend_count_lock_ == nullptr);
1082 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1083
1084 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1085 DCHECK(unexpected_signal_lock_ == nullptr);
1086 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1087
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -07001088 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
1089 DCHECK(mem_maps_lock_ == nullptr);
1090 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
1091
Chao-ying Fu9e369312014-05-21 11:20:52 -07001092 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1093 DCHECK(logging_lock_ == nullptr);
1094 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1095
1096 #undef UPDATE_CURRENT_LOCK_LEVEL
Mathieu Chartier91e56692015-03-03 13:51:04 -08001097
1098 InitConditions();
Ian Rogers719d1a32014-03-06 12:13:39 -08001099 }
1100}
1101
Mathieu Chartier91e56692015-03-03 13:51:04 -08001102void Locks::InitConditions() {
1103 thread_exit_cond_ = new ConditionVariable("thread exit condition variable", *thread_list_lock_);
1104}
Ian Rogers719d1a32014-03-06 12:13:39 -08001105
Elliott Hughese62934d2012-04-09 11:24:29 -07001106} // namespace art