blob: ce452cbcf6eafea09637355d140ee27bd007293f [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"
Mathieu Chartier0795f232016-09-27 18:43:30 -070028#include "scoped_thread_state_change-inl.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070029#include "thread-inl.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070030
31namespace art {
32
David Sehrf42eb2c2016-10-19 13:20:45 -070033static Atomic<Locks::ClientCallback*> safe_to_call_abort_callback(nullptr);
34
Ian Rogers719d1a32014-03-06 12:13:39 -080035Mutex* Locks::abort_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070036Mutex* Locks::alloc_tracker_lock_ = nullptr;
Andreas Gampe74240812014-04-17 10:35:09 -070037Mutex* Locks::allocated_monitor_ids_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070038Mutex* Locks::allocated_thread_ids_lock_ = nullptr;
Sebastien Hertzed2be172014-08-19 15:33:43 +020039ReaderWriterMutex* Locks::breakpoint_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080040ReaderWriterMutex* Locks::classlinker_classes_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070041Mutex* Locks::deoptimization_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080042ReaderWriterMutex* Locks::heap_bitmap_lock_ = nullptr;
Mathieu Chartier9ef78b52014-09-25 17:03:12 -070043Mutex* Locks::instrument_entrypoints_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070044Mutex* Locks::intern_table_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;
Nicolas Geoffray340dafa2016-11-18 16:03:10 +000051ReaderWriterMutex* 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;
Mingyao Yang063fc772016-08-02 11:02:54 -070061Mutex* Locks::cha_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080062Mutex* Locks::thread_list_lock_ = nullptr;
Mathieu Chartier91e56692015-03-03 13:51:04 -080063ConditionVariable* Locks::thread_exit_cond_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080064Mutex* Locks::thread_suspend_count_lock_ = nullptr;
65Mutex* Locks::trace_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080066Mutex* Locks::unexpected_signal_lock_ = nullptr;
Andreas Gampe5bdb6552015-07-22 23:44:55 -070067Uninterruptible Roles::uninterruptible_;
Andreas Gampe05a364c2016-10-14 13:27:12 -070068ReaderWriterMutex* Locks::jni_globals_lock_ = nullptr;
69Mutex* Locks::jni_weak_globals_lock_ = nullptr;
Andreas Gampecc1b5352016-12-01 16:58:38 -080070ReaderWriterMutex* Locks::dex_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080071
72struct AllMutexData {
73 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
74 Atomic<const BaseMutex*> all_mutexes_guard;
75 // All created mutexes guarded by all_mutexes_guard_.
76 std::set<BaseMutex*>* all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070077 AllMutexData() : all_mutexes(nullptr) {}
Ian Rogers719d1a32014-03-06 12:13:39 -080078};
79static struct AllMutexData gAllMutexData[kAllMutexDataSize];
80
Ian Rogersc604d732012-10-14 16:09:54 -070081#if ART_USE_FUTEXES
82static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070083 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070084 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
85 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
86 if (result_ts->tv_nsec < 0) {
87 result_ts->tv_sec--;
88 result_ts->tv_nsec += one_sec;
89 } else if (result_ts->tv_nsec > one_sec) {
90 result_ts->tv_sec++;
91 result_ts->tv_nsec -= one_sec;
92 }
93 return result_ts->tv_sec < 0;
94}
95#endif
96
Ian Rogers6f3dbba2014-10-14 17:41:57 -070097class ScopedAllMutexesLock FINAL {
Ian Rogers56edc432013-01-18 16:51:51 -080098 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070099 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700100 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -0800101 NanoSleep(100);
102 }
103 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700104
Ian Rogers56edc432013-01-18 16:51:51 -0800105 ~ScopedAllMutexesLock() {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700106 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers56edc432013-01-18 16:51:51 -0800107 NanoSleep(100);
108 }
109 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700110
Ian Rogers56edc432013-01-18 16:51:51 -0800111 private:
112 const BaseMutex* const mutex_;
113};
Ian Rogers56edc432013-01-18 16:51:51 -0800114
Ian Rogerscf7f1912014-10-22 22:06:39 -0700115// Scoped class that generates events at the beginning and end of lock contention.
116class ScopedContentionRecorder FINAL : public ValueObject {
117 public:
118 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid)
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700119 : mutex_(kLogLockContentions ? mutex : nullptr),
Ian Rogerscf7f1912014-10-22 22:06:39 -0700120 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
121 owner_tid_(kLogLockContentions ? owner_tid : 0),
122 start_nano_time_(kLogLockContentions ? NanoTime() : 0) {
123 if (ATRACE_ENABLED()) {
124 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")",
125 mutex->GetName(), owner_tid);
126 ATRACE_BEGIN(msg.c_str());
127 }
128 }
129
130 ~ScopedContentionRecorder() {
131 ATRACE_END();
132 if (kLogLockContentions) {
133 uint64_t end_nano_time = NanoTime();
134 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
135 }
136 }
137
138 private:
139 BaseMutex* const mutex_;
140 const uint64_t blocked_tid_;
141 const uint64_t owner_tid_;
142 const uint64_t start_nano_time_;
143};
144
Ian Rogers56edc432013-01-18 16:51:51 -0800145BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700146 if (kLogLockContentions) {
147 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700148 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700149 if (*all_mutexes_ptr == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700150 // We leak the global set of all mutexes to avoid ordering issues in global variable
151 // construction/destruction.
152 *all_mutexes_ptr = new std::set<BaseMutex*>();
153 }
154 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800155 }
Ian Rogers56edc432013-01-18 16:51:51 -0800156}
157
158BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700159 if (kLogLockContentions) {
160 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700161 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700162 }
Ian Rogers56edc432013-01-18 16:51:51 -0800163}
164
165void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700166 if (kLogLockContentions) {
167 os << "Mutex logging:\n";
168 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700169 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700170 if (all_mutexes == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700171 // No mutexes have been created yet during at startup.
172 return;
173 }
174 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700175 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700176 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
177 BaseMutex* mutex = *it;
178 if (mutex->HasEverContended()) {
179 mutex->Dump(os);
180 os << "\n";
181 }
182 }
183 os << "(Never contented)\n";
184 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
185 BaseMutex* mutex = *it;
186 if (!mutex->HasEverContended()) {
187 mutex->Dump(os);
188 os << "\n";
189 }
190 }
Ian Rogers56edc432013-01-18 16:51:51 -0800191 }
Ian Rogers56edc432013-01-18 16:51:51 -0800192}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700193
Ian Rogers81d425b2012-09-27 16:03:43 -0700194void BaseMutex::CheckSafeToWait(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700195 if (self == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700196 CheckUnattachedThread(level_);
197 return;
198 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700199 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700200 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
201 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700202 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800203 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700204 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700205 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogersf3d874c2014-07-17 18:52:42 -0700206 // We expect waits to happen while holding the thread list suspend thread lock.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700207 if (held_mutex != nullptr) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800208 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
209 << "(level " << LockLevel(i) << ") while performing wait on "
210 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700211 bad_mutexes_held = true;
212 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700213 }
214 }
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000215 if (gAborting == 0) { // Avoid recursive aborts.
216 CHECK(!bad_mutexes_held);
217 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700218 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700219}
220
Ian Rogers37f3c962014-07-17 11:25:30 -0700221void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700222 if (kLogLockContentions) {
223 // Atomically add value to wait_time.
Ian Rogers37f3c962014-07-17 11:25:30 -0700224 wait_time.FetchAndAddSequentiallyConsistent(value);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700225 }
226}
227
Brian Carlstrom0de79852013-07-25 22:29:58 -0700228void BaseMutex::RecordContention(uint64_t blocked_tid,
229 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700230 uint64_t nano_time_blocked) {
231 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700232 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700233 ++(data->contention_count);
234 data->AddToWaitTime(nano_time_blocked);
235 ContentionLogEntry* log = data->contention_log;
236 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700237 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700238 if (log[slot].blocked_tid == blocked_tid &&
239 log[slot].owner_tid == blocked_tid) {
240 ++log[slot].count;
241 } else {
242 uint32_t new_slot;
243 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700244 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700245 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700246 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700247 log[new_slot].blocked_tid = blocked_tid;
248 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700249 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700250 }
Ian Rogers56edc432013-01-18 16:51:51 -0800251 }
Ian Rogers56edc432013-01-18 16:51:51 -0800252}
253
Ian Rogers56edc432013-01-18 16:51:51 -0800254void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700255 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700256 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700257 const ContentionLogEntry* log = data->contention_log;
Ian Rogers37f3c962014-07-17 11:25:30 -0700258 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700259 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700260 if (contention_count == 0) {
261 os << "never contended";
262 } else {
263 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700264 << " total wait of contender " << PrettyDuration(wait_time)
265 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700266 SafeMap<uint64_t, size_t> most_common_blocker;
267 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700268 for (size_t i = 0; i < kContentionLogSize; ++i) {
269 uint64_t blocked_tid = log[i].blocked_tid;
270 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700271 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700272 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700273 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700274 if (it != most_common_blocked.end()) {
275 most_common_blocked.Overwrite(blocked_tid, it->second + count);
276 } else {
277 most_common_blocked.Put(blocked_tid, count);
278 }
279 it = most_common_blocker.find(owner_tid);
280 if (it != most_common_blocker.end()) {
281 most_common_blocker.Overwrite(owner_tid, it->second + count);
282 } else {
283 most_common_blocker.Put(owner_tid, count);
284 }
Ian Rogers56edc432013-01-18 16:51:51 -0800285 }
286 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700287 uint64_t max_tid = 0;
288 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700289 for (const auto& pair : most_common_blocked) {
290 if (pair.second > max_tid_count) {
291 max_tid = pair.first;
292 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700293 }
Ian Rogers56edc432013-01-18 16:51:51 -0800294 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700295 if (max_tid != 0) {
296 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800297 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700298 max_tid = 0;
299 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700300 for (const auto& pair : most_common_blocker) {
301 if (pair.second > max_tid_count) {
302 max_tid = pair.first;
303 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700304 }
305 }
306 if (max_tid != 0) {
307 os << " sample shows tid=" << max_tid << " owning during this time";
308 }
Ian Rogers56edc432013-01-18 16:51:51 -0800309 }
310 }
Ian Rogers56edc432013-01-18 16:51:51 -0800311}
312
313
Ian Rogers81d425b2012-09-27 16:03:43 -0700314Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700315 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700316#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700317 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700318 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700319#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700320 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700321#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700322 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700323}
324
David Sehrf42eb2c2016-10-19 13:20:45 -0700325// Helper to allow checking shutdown while locking for thread safety.
326static bool IsSafeToCallAbortSafe() {
327 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
328 return Locks::IsSafeToCallAbortRacy();
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800329}
330
Elliott Hughes8daa0922011-09-11 13:46:25 -0700331Mutex::~Mutex() {
David Sehrf42eb2c2016-10-19 13:20:45 -0700332 bool safe_to_call_abort = Locks::IsSafeToCallAbortRacy();
Ian Rogersc604d732012-10-14 16:09:54 -0700333#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700334 if (state_.LoadRelaxed() != 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700335 LOG(safe_to_call_abort ? FATAL : WARNING)
336 << "destroying mutex with owner: " << exclusive_owner_;
Ian Rogersc604d732012-10-14 16:09:54 -0700337 } else {
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800338 if (exclusive_owner_ != 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700339 LOG(safe_to_call_abort ? FATAL : WARNING)
340 << "unexpectedly found an owner on unlocked mutex " << name_;
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800341 }
342 if (num_contenders_.LoadSequentiallyConsistent() != 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700343 LOG(safe_to_call_abort ? FATAL : WARNING)
344 << "unexpectedly found a contender on mutex " << name_;
Mathieu Chartiercef50f02014-12-09 17:38:52 -0800345 }
Ian Rogersc604d732012-10-14 16:09:54 -0700346 }
347#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700348 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
349 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800350 int rc = pthread_mutex_destroy(&mutex_);
351 if (rc != 0) {
352 errno = rc;
David Sehrf42eb2c2016-10-19 13:20:45 -0700353 PLOG(safe_to_call_abort ? FATAL : WARNING)
354 << "pthread_mutex_destroy failed for " << name_;
Elliott Hughes6b355752012-01-13 16:49:08 -0800355 }
Ian Rogersc604d732012-10-14 16:09:54 -0700356#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700357}
358
Ian Rogers81d425b2012-09-27 16:03:43 -0700359void Mutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700360 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700361 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700362 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700363 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700364 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700365#if ART_USE_FUTEXES
366 bool done = false;
367 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700368 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700369 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700370 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
371 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700372 } else {
373 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700374 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800375 num_contenders_++;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700376 if (futex(state_.Address(), FUTEX_WAIT, 1, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700377 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
378 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
379 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700380 PLOG(FATAL) << "futex wait failed for " << name_;
381 }
382 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800383 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700384 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700385 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700386 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700387#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700388 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700389#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700390 DCHECK_EQ(exclusive_owner_, 0U);
391 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700392 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700393 }
394 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700395 if (kDebugLocking) {
396 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
397 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700398 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700399 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700400}
401
Ian Rogers81d425b2012-09-27 16:03:43 -0700402bool Mutex::ExclusiveTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700403 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700404 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700405 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700406 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700407 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700408#if ART_USE_FUTEXES
409 bool done = false;
410 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700411 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700412 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700413 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
414 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700415 } else {
416 return false;
417 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700418 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700419 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700420#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700421 int result = pthread_mutex_trylock(&mutex_);
422 if (result == EBUSY) {
423 return false;
424 }
425 if (result != 0) {
426 errno = result;
427 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
428 }
Ian Rogersc604d732012-10-14 16:09:54 -0700429#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700430 DCHECK_EQ(exclusive_owner_, 0U);
431 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700432 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700433 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700434 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700435 if (kDebugLocking) {
436 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
437 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700438 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700439 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700440 return true;
441}
442
Ian Rogers81d425b2012-09-27 16:03:43 -0700443void Mutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800444 if (kIsDebugBuild && self != nullptr && self != Thread::Current()) {
445 std::string name1 = "<null>";
446 std::string name2 = "<null>";
447 if (self != nullptr) {
448 self->GetThreadName(name1);
449 }
450 if (Thread::Current() != nullptr) {
451 Thread::Current()->GetThreadName(name2);
452 }
Mathieu Chartier4c101102015-01-27 17:14:16 -0800453 LOG(FATAL) << GetName() << " level=" << level_ << " self=" << name1
454 << " Thread::Current()=" << name2;
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800455 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700456 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700457 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700458 recursion_count_--;
459 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700460 if (kDebugLocking) {
461 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
462 << name_ << " " << recursion_count_;
463 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700464 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700465#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700466 bool done = false;
467 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700468 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700469 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700470 // We're no longer the owner.
471 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700472 // Change state to 0 and impose load/store ordering appropriate for lock release.
473 // Note, the relaxed loads below musn't reorder before the CompareExchange.
474 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
475 // a status bit into the state on contention.
476 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700477 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700478 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700479 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700480 futex(state_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700481 }
482 }
483 } else {
484 // Logging acquires the logging lock, avoid infinite recursion in that case.
485 if (this != Locks::logging_lock_) {
486 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
487 } else {
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700488 LogHelper::LogLineLowStack(__FILE__,
489 __LINE__,
490 ::android::base::FATAL_WITHOUT_ABORT,
491 StringPrintf("Unexpected state_ %d in unlock for %s",
492 cur_state, name_).c_str());
Ian Rogersc5f17732014-06-05 20:48:42 -0700493 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700494 }
495 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700496 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700497#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700498 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700499 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700500#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700501 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700502}
503
Ian Rogers56edc432013-01-18 16:51:51 -0800504void Mutex::Dump(std::ostream& os) const {
505 os << (recursive_ ? "recursive " : "non-recursive ")
506 << name_
507 << " level=" << static_cast<int>(level_)
508 << " rec=" << recursion_count_
509 << " owner=" << GetExclusiveOwnerTid() << " ";
510 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700511}
512
513std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800514 mu.Dump(os);
515 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700516}
517
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700518ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
519 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700520#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700521 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700522#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700523{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700524#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700525 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700526#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700527 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700528}
529
530ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700531#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700532 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700533 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700534 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700535 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700536#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700537 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
538 // may still be using locks.
539 int rc = pthread_rwlock_destroy(&rwlock_);
540 if (rc != 0) {
541 errno = rc;
David Sehrf42eb2c2016-10-19 13:20:45 -0700542 bool is_safe_to_call_abort = IsSafeToCallAbortSafe();
543 PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800544 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700545#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700546}
547
Ian Rogers81d425b2012-09-27 16:03:43 -0700548void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700549 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700550 AssertNotExclusiveHeld(self);
551#if ART_USE_FUTEXES
552 bool done = false;
553 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700554 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700555 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700556 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
557 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700558 } else {
559 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700560 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700561 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700562 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700563 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
564 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
565 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700566 PLOG(FATAL) << "futex wait failed for " << name_;
567 }
568 }
Ian Rogersc7190692014-07-08 23:50:26 -0700569 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700570 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700571 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700572 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700573#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700574 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700575#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700576 DCHECK_EQ(exclusive_owner_, 0U);
577 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700578 RegisterAsLocked(self);
579 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700580}
581
Ian Rogers81d425b2012-09-27 16:03:43 -0700582void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700583 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700584 AssertExclusiveHeld(self);
585 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700586 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700587#if ART_USE_FUTEXES
588 bool done = false;
589 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700590 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700591 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700592 // We're no longer the owner.
593 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700594 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
595 // Note, the relaxed loads below musn't reorder before the CompareExchange.
596 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
597 // a status bit into the state on contention.
598 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
599 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700600 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700601 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
602 num_pending_writers_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700603 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700604 }
605 }
606 } else {
607 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
608 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700609 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700610#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700611 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700612 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700613#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700614}
615
Ian Rogers66aee5c2012-08-15 17:17:47 -0700616#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700617bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700618 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700619#if ART_USE_FUTEXES
620 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700621 timespec end_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800622 InitTimeSpec(true, CLOCK_MONOTONIC, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700623 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700624 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700625 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700626 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
627 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700628 } else {
629 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700630 timespec now_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800631 InitTimeSpec(true, CLOCK_MONOTONIC, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700632 timespec rel_ts;
633 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
634 return false; // Timed out.
635 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700636 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700637 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700638 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, nullptr, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700639 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700640 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700641 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700642 } else if ((errno != EAGAIN) && (errno != EINTR)) {
643 // EAGAIN and EINTR both indicate a spurious failure,
644 // recompute the relative time out from now and try again.
645 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700646 PLOG(FATAL) << "timed futex wait failed for " << name_;
647 }
648 }
Ian Rogersc7190692014-07-08 23:50:26 -0700649 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700650 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700651 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700652#else
Ian Rogersc604d732012-10-14 16:09:54 -0700653 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700654 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700655 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700656 if (result == ETIMEDOUT) {
657 return false;
658 }
659 if (result != 0) {
660 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700661 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700662 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700663#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700664 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700665 RegisterAsLocked(self);
666 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700667 return true;
668}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700669#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700670
Ian Rogers51d212e2014-10-23 17:48:20 -0700671#if ART_USE_FUTEXES
Ian Rogerscf7f1912014-10-22 22:06:39 -0700672void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) {
673 // Owner holds it exclusively, hang up.
674 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
675 ++num_pending_readers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700676 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Daniel Colascione6f4d1022016-11-21 14:35:42 -0800677 if (errno != EAGAIN && errno != EINTR) {
Ian Rogerscf7f1912014-10-22 22:06:39 -0700678 PLOG(FATAL) << "futex wait failed for " << name_;
679 }
680 }
681 --num_pending_readers_;
682}
Ian Rogers51d212e2014-10-23 17:48:20 -0700683#endif
Ian Rogerscf7f1912014-10-22 22:06:39 -0700684
Ian Rogers81d425b2012-09-27 16:03:43 -0700685bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700686 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700687#if ART_USE_FUTEXES
688 bool done = false;
689 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700690 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700691 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700692 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
693 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700694 } else {
695 // Owner holds it exclusively.
696 return false;
697 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700698 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700699#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700700 int result = pthread_rwlock_tryrdlock(&rwlock_);
701 if (result == EBUSY) {
702 return false;
703 }
704 if (result != 0) {
705 errno = result;
706 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
707 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700708#endif
709 RegisterAsLocked(self);
710 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700711 return true;
712}
713
Ian Rogers81d425b2012-09-27 16:03:43 -0700714bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700715 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700716 bool result;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700717 if (UNLIKELY(self == nullptr)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700718 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700719 } else {
720 result = (self->GetHeldMutex(level_) == this);
721 }
722 return result;
723}
724
Ian Rogers56edc432013-01-18 16:51:51 -0800725void ReaderWriterMutex::Dump(std::ostream& os) const {
726 os << name_
727 << " level=" << static_cast<int>(level_)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700728 << " owner=" << GetExclusiveOwnerTid()
729#if ART_USE_FUTEXES
730 << " state=" << state_.LoadSequentiallyConsistent()
731 << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent()
732 << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent()
733#endif
734 << " ";
Ian Rogers56edc432013-01-18 16:51:51 -0800735 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700736}
737
738std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800739 mu.Dump(os);
740 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700741}
742
Yu Lieac44242015-06-29 10:50:03 +0800743std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu) {
744 mu.Dump(os);
745 return os;
746}
747
Ian Rogers23055dc2013-04-18 16:29:16 -0700748ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700749 : name_(name), guard_(guard) {
750#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700751 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700752 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700753#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000754 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700755 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000756#if !defined(__APPLE__)
757 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
Ian Rogers51d212e2014-10-23 17:48:20 -0700758 CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC));
Narayan Kamath51b71022014-03-04 11:57:09 +0000759#endif
760 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700761#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700762}
763
764ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800765#if ART_USE_FUTEXES
766 if (num_waiters_!= 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700767 bool is_safe_to_call_abort = IsSafeToCallAbortSafe();
768 LOG(is_safe_to_call_abort ? FATAL : WARNING)
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700769 << "ConditionVariable::~ConditionVariable for " << name_
Ian Rogersd45f2012012-11-28 11:46:23 -0800770 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800771 }
772#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700773 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
774 // may still be using condition variables.
775 int rc = pthread_cond_destroy(&cond_);
776 if (rc != 0) {
777 errno = rc;
David Sehrf42eb2c2016-10-19 13:20:45 -0700778 bool is_safe_to_call_abort = IsSafeToCallAbortSafe();
779 PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_cond_destroy failed for " << name_;
Elliott Hughese62934d2012-04-09 11:24:29 -0700780 }
Ian Rogersc604d732012-10-14 16:09:54 -0700781#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700782}
783
Ian Rogersc604d732012-10-14 16:09:54 -0700784void ConditionVariable::Broadcast(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700785 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700786 // TODO: enable below, there's a race in thread creation that causes false failures currently.
787 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700788 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700789#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800790 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800791 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700792 bool done = false;
793 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700794 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800795 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
796 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800797 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800798 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700799 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800800 if (!done) {
Daniel Colascione6f4d1022016-11-21 14:35:42 -0800801 if (errno != EAGAIN && errno != EINTR) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800802 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
803 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800804 }
Ian Rogersc604d732012-10-14 16:09:54 -0700805 } while (!done);
806 }
807#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700808 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700809#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700810}
811
Ian Rogersc604d732012-10-14 16:09:54 -0700812void ConditionVariable::Signal(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700813 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700814 guard_.AssertExclusiveHeld(self);
815#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800816 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800817 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700818 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
819 // to avoid this, however, requeueing can only move all waiters.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700820 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800821 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800822 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700823 }
824#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700825 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700826#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700827}
828
Ian Rogersc604d732012-10-14 16:09:54 -0700829void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700830 guard_.CheckSafeToWait(self);
831 WaitHoldingLocks(self);
832}
833
834void ConditionVariable::WaitHoldingLocks(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700835 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700836 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700837 unsigned int old_recursion_count = guard_.recursion_count_;
838#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700839 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800840 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800841 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700842 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700843 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700844 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700845 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, nullptr, nullptr, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800846 // Futex failed, check it is an expected error.
847 // EAGAIN == EWOULDBLK, so we let the caller try again.
848 // EINTR implies a signal was sent to this thread.
849 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700850 PLOG(FATAL) << "futex wait failed for " << name_;
851 }
852 }
Mathieu Chartier4d87df62016-01-07 15:14:19 -0800853 if (self != nullptr) {
854 JNIEnvExt* const env = self->GetJniEnv();
855 if (UNLIKELY(env != nullptr && env->runtime_deleted)) {
856 CHECK(self->IsDaemon());
857 // If the runtime has been deleted, then we cannot proceed. Just sleep forever. This may
858 // occur for user daemon threads that get a spurious wakeup. This occurs for test 132 with
859 // --host and --gdb.
860 // After we wake up, the runtime may have been shutdown, which means that this condition may
861 // have been deleted. It is not safe to retry the wait.
862 SleepForever();
863 }
864 }
Ian Rogersc604d732012-10-14 16:09:54 -0700865 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800866 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700867 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800868 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700869 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800870 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700871#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700872 uint64_t old_owner = guard_.exclusive_owner_;
873 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700874 guard_.recursion_count_ = 0;
875 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700876 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700877#endif
878 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700879}
880
Ian Rogers7b078e82014-09-10 14:44:24 -0700881bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700882 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700883 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700884 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700885 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700886 unsigned int old_recursion_count = guard_.recursion_count_;
887#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700888 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800889 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700890 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800891 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800892 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700893 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700894 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700895 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700896 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, nullptr, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700897 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800898 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -0700899 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -0700900 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800901 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700902 } else {
903 PLOG(FATAL) << "timed futex wait failed for " << name_;
904 }
905 }
906 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800907 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700908 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800909 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700910 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800911 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700912#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000913#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700914 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700915#else
Ian Rogersc604d732012-10-14 16:09:54 -0700916 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700917#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700918 uint64_t old_owner = guard_.exclusive_owner_;
919 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700920 guard_.recursion_count_ = 0;
921 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700922 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000923 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -0700924 if (rc == ETIMEDOUT) {
925 timed_out = true;
926 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700927 errno = rc;
928 PLOG(FATAL) << "TimedWait failed for " << name_;
929 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700930 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700931#endif
932 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -0700933 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -0700934}
935
Ian Rogers719d1a32014-03-06 12:13:39 -0800936void Locks::Init() {
937 if (logging_lock_ != nullptr) {
938 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100939 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700940 DCHECK(modify_ldt_lock_ != nullptr);
941 } else {
942 DCHECK(modify_ldt_lock_ == nullptr);
943 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800944 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700945 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700946 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700947 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800948 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800949 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700950 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800951 DCHECK(heap_bitmap_lock_ != nullptr);
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -0700952 DCHECK(oat_file_manager_lock_ != nullptr);
David Brazdilca3c8c32016-09-06 14:04:48 +0100953 DCHECK(verifier_deps_lock_ != nullptr);
Richard Uhlera206c742016-05-24 15:04:22 -0700954 DCHECK(host_dlopen_handles_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700955 DCHECK(intern_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -0700956 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800957 DCHECK(logging_lock_ != nullptr);
958 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700959 DCHECK(profiler_lock_ != nullptr);
Mingyao Yang063fc772016-08-02 11:02:54 -0700960 DCHECK(cha_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800961 DCHECK(thread_list_lock_ != nullptr);
962 DCHECK(thread_suspend_count_lock_ != nullptr);
963 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800964 DCHECK(unexpected_signal_lock_ != nullptr);
Andreas Gampecc1b5352016-12-01 16:58:38 -0800965 DCHECK(dex_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800966 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700967 // Create global locks in level order from highest lock level to lowest.
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800968 LockLevel current_lock_level = kInstrumentEntrypointsLock;
969 DCHECK(instrument_entrypoints_lock_ == nullptr);
970 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800971
Chao-ying Fu9e369312014-05-21 11:20:52 -0700972 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Chih-Hung Hsiehfba39972016-05-11 11:26:48 -0700973 if ((new_level) >= current_lock_level) { \
Brian Carlstrom306db812014-09-05 13:01:41 -0700974 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
975 fprintf(stderr, "New local level %d is not less than current level %d\n", \
976 new_level, current_lock_level); \
977 exit(1); \
978 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -0700979 current_lock_level = new_level;
980
981 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
982 DCHECK(mutator_lock_ == nullptr);
Yu Lieac44242015-06-29 10:50:03 +0800983 mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700984
985 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
986 DCHECK(heap_bitmap_lock_ == nullptr);
987 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
988
Jeff Hao69dbec62014-09-15 18:03:41 -0700989 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
990 DCHECK(trace_lock_ == nullptr);
991 trace_lock_ = new Mutex("trace lock", current_lock_level);
992
Chao-ying Fu9e369312014-05-21 11:20:52 -0700993 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
994 DCHECK(runtime_shutdown_lock_ == nullptr);
995 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
996
997 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
998 DCHECK(profiler_lock_ == nullptr);
999 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
1000
Brian Carlstrom306db812014-09-05 13:01:41 -07001001 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
1002 DCHECK(deoptimization_lock_ == nullptr);
1003 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
1004
1005 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
1006 DCHECK(alloc_tracker_lock_ == nullptr);
1007 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
1008
Chao-ying Fu9e369312014-05-21 11:20:52 -07001009 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
1010 DCHECK(thread_list_lock_ == nullptr);
1011 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
1012
Ian Rogers68d8b422014-07-17 11:09:10 -07001013 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
1014 DCHECK(jni_libraries_lock_ == nullptr);
1015 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
1016
Chao-ying Fu9e369312014-05-21 11:20:52 -07001017 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001018 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +02001019 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001020
Mingyao Yang063fc772016-08-02 11:02:54 -07001021 UPDATE_CURRENT_LOCK_LEVEL(kCHALock);
1022 DCHECK(cha_lock_ == nullptr);
1023 cha_lock_ = new Mutex("CHA lock", current_lock_level);
1024
Chao-ying Fu9e369312014-05-21 11:20:52 -07001025 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001026 DCHECK(classlinker_classes_lock_ == nullptr);
1027 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -07001028 current_lock_level);
1029
Andreas Gampe74240812014-04-17 10:35:09 -07001030 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
1031 DCHECK(allocated_monitor_ids_lock_ == nullptr);
1032 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
1033
Chao-ying Fu9e369312014-05-21 11:20:52 -07001034 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
1035 DCHECK(allocated_thread_ids_lock_ == nullptr);
1036 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
1037
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +01001038 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001039 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
1040 DCHECK(modify_ldt_lock_ == nullptr);
1041 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
1042 }
1043
Andreas Gampecc1b5352016-12-01 16:58:38 -08001044 UPDATE_CURRENT_LOCK_LEVEL(kDexLock);
1045 DCHECK(dex_lock_ == nullptr);
1046 dex_lock_ = new ReaderWriterMutex("ClassLinker dex lock", current_lock_level);
1047
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001048 UPDATE_CURRENT_LOCK_LEVEL(kOatFileManagerLock);
1049 DCHECK(oat_file_manager_lock_ == nullptr);
1050 oat_file_manager_lock_ = new ReaderWriterMutex("OatFile manager lock", current_lock_level);
1051
David Brazdilca3c8c32016-09-06 14:04:48 +01001052 UPDATE_CURRENT_LOCK_LEVEL(kVerifierDepsLock);
1053 DCHECK(verifier_deps_lock_ == nullptr);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001054 verifier_deps_lock_ = new ReaderWriterMutex("verifier deps lock", current_lock_level);
David Brazdilca3c8c32016-09-06 14:04:48 +01001055
Richard Uhlera206c742016-05-24 15:04:22 -07001056 UPDATE_CURRENT_LOCK_LEVEL(kHostDlOpenHandlesLock);
1057 DCHECK(host_dlopen_handles_lock_ == nullptr);
1058 host_dlopen_handles_lock_ = new Mutex("host dlopen handles lock", current_lock_level);
Mathieu Chartiere58991b2015-10-13 07:59:34 -07001059
Chao-ying Fu9e369312014-05-21 11:20:52 -07001060 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001061 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001062 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1063
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001064 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1065 DCHECK(reference_processor_lock_ == nullptr);
1066 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1067
1068 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1069 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1070 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1071
1072 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1073 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1074 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1075
1076 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1077 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1078 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1079
1080 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1081 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1082 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1083
1084 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1085 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1086 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1087
Andreas Gampe05a364c2016-10-14 13:27:12 -07001088 UPDATE_CURRENT_LOCK_LEVEL(kJniGlobalsLock);
1089 DCHECK(jni_globals_lock_ == nullptr);
1090 jni_globals_lock_ =
1091 new ReaderWriterMutex("JNI global reference table lock", current_lock_level);
1092
1093 UPDATE_CURRENT_LOCK_LEVEL(kJniWeakGlobalsLock);
1094 DCHECK(jni_weak_globals_lock_ == nullptr);
1095 jni_weak_globals_lock_ = new Mutex("JNI weak global reference table lock", current_lock_level);
1096
Chao-ying Fu9e369312014-05-21 11:20:52 -07001097 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1098 DCHECK(abort_lock_ == nullptr);
1099 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1100
1101 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1102 DCHECK(thread_suspend_count_lock_ == nullptr);
1103 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1104
1105 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1106 DCHECK(unexpected_signal_lock_ == nullptr);
1107 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1108
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -07001109 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
1110 DCHECK(mem_maps_lock_ == nullptr);
1111 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
1112
Chao-ying Fu9e369312014-05-21 11:20:52 -07001113 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1114 DCHECK(logging_lock_ == nullptr);
1115 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1116
1117 #undef UPDATE_CURRENT_LOCK_LEVEL
Mathieu Chartier91e56692015-03-03 13:51:04 -08001118
1119 InitConditions();
Ian Rogers719d1a32014-03-06 12:13:39 -08001120 }
1121}
1122
Mathieu Chartier91e56692015-03-03 13:51:04 -08001123void Locks::InitConditions() {
1124 thread_exit_cond_ = new ConditionVariable("thread exit condition variable", *thread_list_lock_);
1125}
Ian Rogers719d1a32014-03-06 12:13:39 -08001126
David Sehrf42eb2c2016-10-19 13:20:45 -07001127void Locks::SetClientCallback(ClientCallback* safe_to_call_abort_cb) {
1128 safe_to_call_abort_callback.StoreRelease(safe_to_call_abort_cb);
1129}
1130
1131// Helper to allow checking shutdown while ignoring locking requirements.
1132bool Locks::IsSafeToCallAbortRacy() {
1133 Locks::ClientCallback* safe_to_call_abort_cb = safe_to_call_abort_callback.LoadAcquire();
1134 return safe_to_call_abort_cb != nullptr && safe_to_call_abort_cb();
1135}
1136
Elliott Hughese62934d2012-04-09 11:24:29 -07001137} // namespace art