blob: 9116097604fad91f86ca943ec8e5946eb53a866e [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
Andreas Gampe46ee31b2016-12-14 10:11:49 -080022#include "android-base/stringprintf.h"
23
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070024#include "atomic.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080025#include "base/logging.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010026#include "base/time_utils.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080027#include "base/systrace.h"
Ian Rogerscf7f1912014-10-22 22:06:39 -070028#include "base/value_object.h"
Ian Rogers693ff612013-02-01 10:56:12 -080029#include "mutex-inl.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070030#include "scoped_thread_state_change-inl.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070031#include "thread-inl.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070032
33namespace art {
34
Andreas Gampe46ee31b2016-12-14 10:11:49 -080035using android::base::StringPrintf;
36
David Sehrf42eb2c2016-10-19 13:20:45 -070037static Atomic<Locks::ClientCallback*> safe_to_call_abort_callback(nullptr);
38
Ian Rogers719d1a32014-03-06 12:13:39 -080039Mutex* Locks::abort_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070040Mutex* Locks::alloc_tracker_lock_ = nullptr;
Andreas Gampe74240812014-04-17 10:35:09 -070041Mutex* Locks::allocated_monitor_ids_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070042Mutex* Locks::allocated_thread_ids_lock_ = nullptr;
Sebastien Hertzed2be172014-08-19 15:33:43 +020043ReaderWriterMutex* Locks::breakpoint_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080044ReaderWriterMutex* Locks::classlinker_classes_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070045Mutex* Locks::deoptimization_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080046ReaderWriterMutex* Locks::heap_bitmap_lock_ = nullptr;
Mathieu Chartier9ef78b52014-09-25 17:03:12 -070047Mutex* Locks::instrument_entrypoints_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070048Mutex* Locks::intern_table_lock_ = nullptr;
Ian Rogers68d8b422014-07-17 11:09:10 -070049Mutex* Locks::jni_libraries_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080050Mutex* Locks::logging_lock_ = nullptr;
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070051Mutex* Locks::mem_maps_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070052Mutex* Locks::modify_ldt_lock_ = nullptr;
Yu Lieac44242015-06-29 10:50:03 +080053MutatorMutex* Locks::mutator_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070054Mutex* Locks::profiler_lock_ = nullptr;
Nicolas Geoffray340dafa2016-11-18 16:03:10 +000055ReaderWriterMutex* Locks::verifier_deps_lock_ = nullptr;
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -070056ReaderWriterMutex* Locks::oat_file_manager_lock_ = nullptr;
Richard Uhlera206c742016-05-24 15:04:22 -070057Mutex* Locks::host_dlopen_handles_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070058Mutex* Locks::reference_processor_lock_ = nullptr;
59Mutex* Locks::reference_queue_cleared_references_lock_ = nullptr;
60Mutex* Locks::reference_queue_finalizer_references_lock_ = nullptr;
61Mutex* Locks::reference_queue_phantom_references_lock_ = nullptr;
62Mutex* Locks::reference_queue_soft_references_lock_ = nullptr;
63Mutex* Locks::reference_queue_weak_references_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080064Mutex* Locks::runtime_shutdown_lock_ = nullptr;
Mingyao Yang063fc772016-08-02 11:02:54 -070065Mutex* Locks::cha_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080066Mutex* Locks::thread_list_lock_ = nullptr;
Mathieu Chartier91e56692015-03-03 13:51:04 -080067ConditionVariable* Locks::thread_exit_cond_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080068Mutex* Locks::thread_suspend_count_lock_ = nullptr;
69Mutex* Locks::trace_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080070Mutex* Locks::unexpected_signal_lock_ = nullptr;
Andreas Gampe5bdb6552015-07-22 23:44:55 -070071Uninterruptible Roles::uninterruptible_;
Andreas Gampe05a364c2016-10-14 13:27:12 -070072ReaderWriterMutex* Locks::jni_globals_lock_ = nullptr;
73Mutex* Locks::jni_weak_globals_lock_ = nullptr;
Andreas Gampecc1b5352016-12-01 16:58:38 -080074ReaderWriterMutex* Locks::dex_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080075
76struct AllMutexData {
77 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
78 Atomic<const BaseMutex*> all_mutexes_guard;
79 // All created mutexes guarded by all_mutexes_guard_.
80 std::set<BaseMutex*>* all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070081 AllMutexData() : all_mutexes(nullptr) {}
Ian Rogers719d1a32014-03-06 12:13:39 -080082};
83static struct AllMutexData gAllMutexData[kAllMutexDataSize];
84
Ian Rogersc604d732012-10-14 16:09:54 -070085#if ART_USE_FUTEXES
86static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070087 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070088 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
89 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
90 if (result_ts->tv_nsec < 0) {
91 result_ts->tv_sec--;
92 result_ts->tv_nsec += one_sec;
93 } else if (result_ts->tv_nsec > one_sec) {
94 result_ts->tv_sec++;
95 result_ts->tv_nsec -= one_sec;
96 }
97 return result_ts->tv_sec < 0;
98}
99#endif
100
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700101class ScopedAllMutexesLock FINAL {
Ian Rogers56edc432013-01-18 16:51:51 -0800102 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -0700103 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700104 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -0800105 NanoSleep(100);
106 }
107 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700108
Ian Rogers56edc432013-01-18 16:51:51 -0800109 ~ScopedAllMutexesLock() {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700110 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers56edc432013-01-18 16:51:51 -0800111 NanoSleep(100);
112 }
113 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700114
Ian Rogers56edc432013-01-18 16:51:51 -0800115 private:
116 const BaseMutex* const mutex_;
117};
Ian Rogers56edc432013-01-18 16:51:51 -0800118
Ian Rogerscf7f1912014-10-22 22:06:39 -0700119// Scoped class that generates events at the beginning and end of lock contention.
120class ScopedContentionRecorder FINAL : public ValueObject {
121 public:
122 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid)
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700123 : mutex_(kLogLockContentions ? mutex : nullptr),
Ian Rogerscf7f1912014-10-22 22:06:39 -0700124 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
125 owner_tid_(kLogLockContentions ? owner_tid : 0),
126 start_nano_time_(kLogLockContentions ? NanoTime() : 0) {
127 if (ATRACE_ENABLED()) {
128 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")",
129 mutex->GetName(), owner_tid);
130 ATRACE_BEGIN(msg.c_str());
131 }
132 }
133
134 ~ScopedContentionRecorder() {
135 ATRACE_END();
136 if (kLogLockContentions) {
137 uint64_t end_nano_time = NanoTime();
138 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
139 }
140 }
141
142 private:
143 BaseMutex* const mutex_;
144 const uint64_t blocked_tid_;
145 const uint64_t owner_tid_;
146 const uint64_t start_nano_time_;
147};
148
Ian Rogers56edc432013-01-18 16:51:51 -0800149BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700150 if (kLogLockContentions) {
151 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700152 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700153 if (*all_mutexes_ptr == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700154 // We leak the global set of all mutexes to avoid ordering issues in global variable
155 // construction/destruction.
156 *all_mutexes_ptr = new std::set<BaseMutex*>();
157 }
158 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800159 }
Ian Rogers56edc432013-01-18 16:51:51 -0800160}
161
162BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700163 if (kLogLockContentions) {
164 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700165 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700166 }
Ian Rogers56edc432013-01-18 16:51:51 -0800167}
168
169void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700170 if (kLogLockContentions) {
171 os << "Mutex logging:\n";
172 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700173 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700174 if (all_mutexes == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700175 // No mutexes have been created yet during at startup.
176 return;
177 }
178 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700179 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700180 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 }
187 os << "(Never contented)\n";
188 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
189 BaseMutex* mutex = *it;
190 if (!mutex->HasEverContended()) {
191 mutex->Dump(os);
192 os << "\n";
193 }
194 }
Ian Rogers56edc432013-01-18 16:51:51 -0800195 }
Ian Rogers56edc432013-01-18 16:51:51 -0800196}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700197
Ian Rogers81d425b2012-09-27 16:03:43 -0700198void BaseMutex::CheckSafeToWait(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700199 if (self == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700200 CheckUnattachedThread(level_);
201 return;
202 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700203 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700204 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
205 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700206 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800207 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700208 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700209 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogersf3d874c2014-07-17 18:52:42 -0700210 // We expect waits to happen while holding the thread list suspend thread lock.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700211 if (held_mutex != nullptr) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800212 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
213 << "(level " << LockLevel(i) << ") while performing wait on "
214 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700215 bad_mutexes_held = true;
216 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700217 }
218 }
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000219 if (gAborting == 0) { // Avoid recursive aborts.
220 CHECK(!bad_mutexes_held);
221 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700222 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700223}
224
Ian Rogers37f3c962014-07-17 11:25:30 -0700225void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700226 if (kLogLockContentions) {
227 // Atomically add value to wait_time.
Ian Rogers37f3c962014-07-17 11:25:30 -0700228 wait_time.FetchAndAddSequentiallyConsistent(value);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700229 }
230}
231
Brian Carlstrom0de79852013-07-25 22:29:58 -0700232void BaseMutex::RecordContention(uint64_t blocked_tid,
233 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700234 uint64_t nano_time_blocked) {
235 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700236 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700237 ++(data->contention_count);
238 data->AddToWaitTime(nano_time_blocked);
239 ContentionLogEntry* log = data->contention_log;
240 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700241 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700242 if (log[slot].blocked_tid == blocked_tid &&
243 log[slot].owner_tid == blocked_tid) {
244 ++log[slot].count;
245 } else {
246 uint32_t new_slot;
247 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700248 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700249 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700250 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700251 log[new_slot].blocked_tid = blocked_tid;
252 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700253 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700254 }
Ian Rogers56edc432013-01-18 16:51:51 -0800255 }
Ian Rogers56edc432013-01-18 16:51:51 -0800256}
257
Ian Rogers56edc432013-01-18 16:51:51 -0800258void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700259 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700260 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700261 const ContentionLogEntry* log = data->contention_log;
Ian Rogers37f3c962014-07-17 11:25:30 -0700262 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700263 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700264 if (contention_count == 0) {
265 os << "never contended";
266 } else {
267 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700268 << " total wait of contender " << PrettyDuration(wait_time)
269 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700270 SafeMap<uint64_t, size_t> most_common_blocker;
271 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700272 for (size_t i = 0; i < kContentionLogSize; ++i) {
273 uint64_t blocked_tid = log[i].blocked_tid;
274 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700275 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700276 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700277 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700278 if (it != most_common_blocked.end()) {
279 most_common_blocked.Overwrite(blocked_tid, it->second + count);
280 } else {
281 most_common_blocked.Put(blocked_tid, count);
282 }
283 it = most_common_blocker.find(owner_tid);
284 if (it != most_common_blocker.end()) {
285 most_common_blocker.Overwrite(owner_tid, it->second + count);
286 } else {
287 most_common_blocker.Put(owner_tid, count);
288 }
Ian Rogers56edc432013-01-18 16:51:51 -0800289 }
290 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700291 uint64_t max_tid = 0;
292 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700293 for (const auto& pair : most_common_blocked) {
294 if (pair.second > max_tid_count) {
295 max_tid = pair.first;
296 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700297 }
Ian Rogers56edc432013-01-18 16:51:51 -0800298 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700299 if (max_tid != 0) {
300 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800301 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700302 max_tid = 0;
303 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700304 for (const auto& pair : most_common_blocker) {
305 if (pair.second > max_tid_count) {
306 max_tid = pair.first;
307 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700308 }
309 }
310 if (max_tid != 0) {
311 os << " sample shows tid=" << max_tid << " owning during this time";
312 }
Ian Rogers56edc432013-01-18 16:51:51 -0800313 }
314 }
Ian Rogers56edc432013-01-18 16:51:51 -0800315}
316
317
Ian Rogers81d425b2012-09-27 16:03:43 -0700318Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700319 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700320#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700321 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700322 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700323#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700324 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700325#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700326 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700327}
328
David Sehrf42eb2c2016-10-19 13:20:45 -0700329// Helper to allow checking shutdown while locking for thread safety.
330static bool IsSafeToCallAbortSafe() {
331 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
332 return Locks::IsSafeToCallAbortRacy();
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800333}
334
Elliott Hughes8daa0922011-09-11 13:46:25 -0700335Mutex::~Mutex() {
David Sehrf42eb2c2016-10-19 13:20:45 -0700336 bool safe_to_call_abort = Locks::IsSafeToCallAbortRacy();
Ian Rogersc604d732012-10-14 16:09:54 -0700337#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700338 if (state_.LoadRelaxed() != 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700339 LOG(safe_to_call_abort ? FATAL : WARNING)
340 << "destroying mutex with owner: " << exclusive_owner_;
Ian Rogersc604d732012-10-14 16:09:54 -0700341 } else {
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800342 if (exclusive_owner_ != 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700343 LOG(safe_to_call_abort ? FATAL : WARNING)
344 << "unexpectedly found an owner on unlocked mutex " << name_;
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800345 }
346 if (num_contenders_.LoadSequentiallyConsistent() != 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700347 LOG(safe_to_call_abort ? FATAL : WARNING)
348 << "unexpectedly found a contender on mutex " << name_;
Mathieu Chartiercef50f02014-12-09 17:38:52 -0800349 }
Ian Rogersc604d732012-10-14 16:09:54 -0700350 }
351#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700352 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
353 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800354 int rc = pthread_mutex_destroy(&mutex_);
355 if (rc != 0) {
356 errno = rc;
David Sehrf42eb2c2016-10-19 13:20:45 -0700357 PLOG(safe_to_call_abort ? FATAL : WARNING)
358 << "pthread_mutex_destroy failed for " << name_;
Elliott Hughes6b355752012-01-13 16:49:08 -0800359 }
Ian Rogersc604d732012-10-14 16:09:54 -0700360#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700361}
362
Ian Rogers81d425b2012-09-27 16:03:43 -0700363void Mutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700364 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700365 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700366 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700367 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700368 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700369#if ART_USE_FUTEXES
370 bool done = false;
371 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700372 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700373 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700374 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
375 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700376 } else {
377 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700378 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800379 num_contenders_++;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700380 if (futex(state_.Address(), FUTEX_WAIT, 1, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700381 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
382 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
383 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700384 PLOG(FATAL) << "futex wait failed for " << name_;
385 }
386 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800387 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700388 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700389 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700390 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700391#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700392 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700393#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700394 DCHECK_EQ(exclusive_owner_, 0U);
395 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700396 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700397 }
398 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700399 if (kDebugLocking) {
400 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
401 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700402 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700403 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700404}
405
Ian Rogers81d425b2012-09-27 16:03:43 -0700406bool Mutex::ExclusiveTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700407 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700408 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700409 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700410 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700411 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700412#if ART_USE_FUTEXES
413 bool done = false;
414 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700415 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700416 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700417 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
418 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700419 } else {
420 return false;
421 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700422 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700423 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700424#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700425 int result = pthread_mutex_trylock(&mutex_);
426 if (result == EBUSY) {
427 return false;
428 }
429 if (result != 0) {
430 errno = result;
431 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
432 }
Ian Rogersc604d732012-10-14 16:09:54 -0700433#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700434 DCHECK_EQ(exclusive_owner_, 0U);
435 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700436 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700437 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700438 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700439 if (kDebugLocking) {
440 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
441 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700442 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700443 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700444 return true;
445}
446
Ian Rogers81d425b2012-09-27 16:03:43 -0700447void Mutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800448 if (kIsDebugBuild && self != nullptr && self != Thread::Current()) {
449 std::string name1 = "<null>";
450 std::string name2 = "<null>";
451 if (self != nullptr) {
452 self->GetThreadName(name1);
453 }
454 if (Thread::Current() != nullptr) {
455 Thread::Current()->GetThreadName(name2);
456 }
Mathieu Chartier4c101102015-01-27 17:14:16 -0800457 LOG(FATAL) << GetName() << " level=" << level_ << " self=" << name1
458 << " Thread::Current()=" << name2;
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800459 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700460 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700461 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700462 recursion_count_--;
463 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700464 if (kDebugLocking) {
465 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
466 << name_ << " " << recursion_count_;
467 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700468 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700469#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700470 bool done = false;
471 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700472 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700473 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700474 // We're no longer the owner.
475 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700476 // Change state to 0 and impose load/store ordering appropriate for lock release.
477 // Note, the relaxed loads below musn't reorder before the CompareExchange.
478 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
479 // a status bit into the state on contention.
480 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700481 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700482 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700483 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700484 futex(state_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700485 }
486 }
487 } else {
488 // Logging acquires the logging lock, avoid infinite recursion in that case.
489 if (this != Locks::logging_lock_) {
490 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
491 } else {
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700492 LogHelper::LogLineLowStack(__FILE__,
493 __LINE__,
494 ::android::base::FATAL_WITHOUT_ABORT,
495 StringPrintf("Unexpected state_ %d in unlock for %s",
496 cur_state, name_).c_str());
Ian Rogersc5f17732014-06-05 20:48:42 -0700497 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700498 }
499 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700500 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700501#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700502 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700503 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700504#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700505 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700506}
507
Ian Rogers56edc432013-01-18 16:51:51 -0800508void Mutex::Dump(std::ostream& os) const {
509 os << (recursive_ ? "recursive " : "non-recursive ")
510 << name_
511 << " level=" << static_cast<int>(level_)
512 << " rec=" << recursion_count_
513 << " owner=" << GetExclusiveOwnerTid() << " ";
514 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700515}
516
517std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800518 mu.Dump(os);
519 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700520}
521
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700522ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
523 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700524#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700525 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700526#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700527{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700528#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700529 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700530#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700531 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700532}
533
534ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700535#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700536 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700537 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700538 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700539 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700540#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700541 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
542 // may still be using locks.
543 int rc = pthread_rwlock_destroy(&rwlock_);
544 if (rc != 0) {
545 errno = rc;
David Sehrf42eb2c2016-10-19 13:20:45 -0700546 bool is_safe_to_call_abort = IsSafeToCallAbortSafe();
547 PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800548 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700549#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700550}
551
Ian Rogers81d425b2012-09-27 16:03:43 -0700552void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700553 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700554 AssertNotExclusiveHeld(self);
555#if ART_USE_FUTEXES
556 bool done = false;
557 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700558 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700559 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700560 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
561 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700562 } else {
563 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700564 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700565 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700566 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700567 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
568 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
569 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700570 PLOG(FATAL) << "futex wait failed for " << name_;
571 }
572 }
Ian Rogersc7190692014-07-08 23:50:26 -0700573 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700574 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700575 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700576 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700577#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700578 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700579#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700580 DCHECK_EQ(exclusive_owner_, 0U);
581 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700582 RegisterAsLocked(self);
583 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700584}
585
Ian Rogers81d425b2012-09-27 16:03:43 -0700586void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700587 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700588 AssertExclusiveHeld(self);
589 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700590 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700591#if ART_USE_FUTEXES
592 bool done = false;
593 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700594 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700595 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700596 // We're no longer the owner.
597 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700598 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
599 // Note, the relaxed loads below musn't reorder before the CompareExchange.
600 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
601 // a status bit into the state on contention.
602 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
603 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700604 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700605 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
606 num_pending_writers_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700607 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700608 }
609 }
610 } else {
611 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
612 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700613 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700614#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700615 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700616 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700617#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700618}
619
Ian Rogers66aee5c2012-08-15 17:17:47 -0700620#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700621bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700622 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700623#if ART_USE_FUTEXES
624 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700625 timespec end_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800626 InitTimeSpec(true, CLOCK_MONOTONIC, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700627 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700628 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700629 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700630 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
631 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700632 } else {
633 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700634 timespec now_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800635 InitTimeSpec(true, CLOCK_MONOTONIC, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700636 timespec rel_ts;
637 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
638 return false; // Timed out.
639 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700640 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700641 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700642 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, nullptr, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700643 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700644 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700645 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700646 } else if ((errno != EAGAIN) && (errno != EINTR)) {
647 // EAGAIN and EINTR both indicate a spurious failure,
648 // recompute the relative time out from now and try again.
649 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700650 PLOG(FATAL) << "timed futex wait failed for " << name_;
651 }
652 }
Ian Rogersc7190692014-07-08 23:50:26 -0700653 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700654 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700655 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700656#else
Ian Rogersc604d732012-10-14 16:09:54 -0700657 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700658 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700659 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700660 if (result == ETIMEDOUT) {
661 return false;
662 }
663 if (result != 0) {
664 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700665 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700666 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700667#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700668 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700669 RegisterAsLocked(self);
670 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700671 return true;
672}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700673#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700674
Ian Rogers51d212e2014-10-23 17:48:20 -0700675#if ART_USE_FUTEXES
Ian Rogerscf7f1912014-10-22 22:06:39 -0700676void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) {
677 // Owner holds it exclusively, hang up.
678 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
679 ++num_pending_readers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700680 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Daniel Colascione6f4d1022016-11-21 14:35:42 -0800681 if (errno != EAGAIN && errno != EINTR) {
Ian Rogerscf7f1912014-10-22 22:06:39 -0700682 PLOG(FATAL) << "futex wait failed for " << name_;
683 }
684 }
685 --num_pending_readers_;
686}
Ian Rogers51d212e2014-10-23 17:48:20 -0700687#endif
Ian Rogerscf7f1912014-10-22 22:06:39 -0700688
Ian Rogers81d425b2012-09-27 16:03:43 -0700689bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700690 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700691#if ART_USE_FUTEXES
692 bool done = false;
693 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700694 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700695 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700696 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
697 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700698 } else {
699 // Owner holds it exclusively.
700 return false;
701 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700702 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700703#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700704 int result = pthread_rwlock_tryrdlock(&rwlock_);
705 if (result == EBUSY) {
706 return false;
707 }
708 if (result != 0) {
709 errno = result;
710 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
711 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700712#endif
713 RegisterAsLocked(self);
714 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700715 return true;
716}
717
Ian Rogers81d425b2012-09-27 16:03:43 -0700718bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700719 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700720 bool result;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700721 if (UNLIKELY(self == nullptr)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700722 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700723 } else {
724 result = (self->GetHeldMutex(level_) == this);
725 }
726 return result;
727}
728
Ian Rogers56edc432013-01-18 16:51:51 -0800729void ReaderWriterMutex::Dump(std::ostream& os) const {
730 os << name_
731 << " level=" << static_cast<int>(level_)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700732 << " owner=" << GetExclusiveOwnerTid()
733#if ART_USE_FUTEXES
734 << " state=" << state_.LoadSequentiallyConsistent()
735 << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent()
736 << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent()
737#endif
738 << " ";
Ian Rogers56edc432013-01-18 16:51:51 -0800739 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700740}
741
742std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800743 mu.Dump(os);
744 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700745}
746
Yu Lieac44242015-06-29 10:50:03 +0800747std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu) {
748 mu.Dump(os);
749 return os;
750}
751
Ian Rogers23055dc2013-04-18 16:29:16 -0700752ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700753 : name_(name), guard_(guard) {
754#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700755 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700756 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700757#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000758 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700759 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000760#if !defined(__APPLE__)
761 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
Ian Rogers51d212e2014-10-23 17:48:20 -0700762 CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC));
Narayan Kamath51b71022014-03-04 11:57:09 +0000763#endif
764 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700765#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700766}
767
768ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800769#if ART_USE_FUTEXES
770 if (num_waiters_!= 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700771 bool is_safe_to_call_abort = IsSafeToCallAbortSafe();
772 LOG(is_safe_to_call_abort ? FATAL : WARNING)
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700773 << "ConditionVariable::~ConditionVariable for " << name_
Ian Rogersd45f2012012-11-28 11:46:23 -0800774 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800775 }
776#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700777 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
778 // may still be using condition variables.
779 int rc = pthread_cond_destroy(&cond_);
780 if (rc != 0) {
781 errno = rc;
David Sehrf42eb2c2016-10-19 13:20:45 -0700782 bool is_safe_to_call_abort = IsSafeToCallAbortSafe();
783 PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_cond_destroy failed for " << name_;
Elliott Hughese62934d2012-04-09 11:24:29 -0700784 }
Ian Rogersc604d732012-10-14 16:09:54 -0700785#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700786}
787
Ian Rogersc604d732012-10-14 16:09:54 -0700788void ConditionVariable::Broadcast(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700789 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700790 // TODO: enable below, there's a race in thread creation that causes false failures currently.
791 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700792 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700793#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800794 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800795 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700796 bool done = false;
797 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700798 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800799 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
800 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800801 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800802 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700803 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800804 if (!done) {
Daniel Colascione6f4d1022016-11-21 14:35:42 -0800805 if (errno != EAGAIN && errno != EINTR) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800806 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
807 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800808 }
Ian Rogersc604d732012-10-14 16:09:54 -0700809 } while (!done);
810 }
811#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700812 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700813#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700814}
815
Ian Rogersc604d732012-10-14 16:09:54 -0700816void ConditionVariable::Signal(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700817 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700818 guard_.AssertExclusiveHeld(self);
819#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800820 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800821 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700822 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
823 // to avoid this, however, requeueing can only move all waiters.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700824 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800825 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800826 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700827 }
828#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700829 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700830#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700831}
832
Ian Rogersc604d732012-10-14 16:09:54 -0700833void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700834 guard_.CheckSafeToWait(self);
835 WaitHoldingLocks(self);
836}
837
838void ConditionVariable::WaitHoldingLocks(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700839 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700840 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700841 unsigned int old_recursion_count = guard_.recursion_count_;
842#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700843 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800844 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800845 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700846 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700847 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700848 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700849 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, nullptr, nullptr, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800850 // Futex failed, check it is an expected error.
851 // EAGAIN == EWOULDBLK, so we let the caller try again.
852 // EINTR implies a signal was sent to this thread.
853 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700854 PLOG(FATAL) << "futex wait failed for " << name_;
855 }
856 }
Mathieu Chartier4d87df62016-01-07 15:14:19 -0800857 if (self != nullptr) {
858 JNIEnvExt* const env = self->GetJniEnv();
859 if (UNLIKELY(env != nullptr && env->runtime_deleted)) {
860 CHECK(self->IsDaemon());
861 // If the runtime has been deleted, then we cannot proceed. Just sleep forever. This may
862 // occur for user daemon threads that get a spurious wakeup. This occurs for test 132 with
863 // --host and --gdb.
864 // After we wake up, the runtime may have been shutdown, which means that this condition may
865 // have been deleted. It is not safe to retry the wait.
866 SleepForever();
867 }
868 }
Ian Rogersc604d732012-10-14 16:09:54 -0700869 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800870 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700871 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800872 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700873 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800874 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700875#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700876 uint64_t old_owner = guard_.exclusive_owner_;
877 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700878 guard_.recursion_count_ = 0;
879 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700880 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700881#endif
882 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700883}
884
Ian Rogers7b078e82014-09-10 14:44:24 -0700885bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700886 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700887 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700888 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700889 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700890 unsigned int old_recursion_count = guard_.recursion_count_;
891#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700892 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800893 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700894 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800895 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800896 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700897 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700898 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700899 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700900 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, nullptr, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700901 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800902 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -0700903 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -0700904 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800905 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700906 } else {
907 PLOG(FATAL) << "timed futex wait failed for " << name_;
908 }
909 }
910 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800911 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700912 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800913 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700914 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800915 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700916#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000917#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700918 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700919#else
Ian Rogersc604d732012-10-14 16:09:54 -0700920 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700921#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700922 uint64_t old_owner = guard_.exclusive_owner_;
923 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700924 guard_.recursion_count_ = 0;
925 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700926 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000927 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -0700928 if (rc == ETIMEDOUT) {
929 timed_out = true;
930 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700931 errno = rc;
932 PLOG(FATAL) << "TimedWait failed for " << name_;
933 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700934 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700935#endif
936 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -0700937 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -0700938}
939
Ian Rogers719d1a32014-03-06 12:13:39 -0800940void Locks::Init() {
941 if (logging_lock_ != nullptr) {
942 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100943 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700944 DCHECK(modify_ldt_lock_ != nullptr);
945 } else {
946 DCHECK(modify_ldt_lock_ == nullptr);
947 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800948 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700949 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700950 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700951 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800952 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800953 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700954 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800955 DCHECK(heap_bitmap_lock_ != nullptr);
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -0700956 DCHECK(oat_file_manager_lock_ != nullptr);
David Brazdilca3c8c32016-09-06 14:04:48 +0100957 DCHECK(verifier_deps_lock_ != nullptr);
Richard Uhlera206c742016-05-24 15:04:22 -0700958 DCHECK(host_dlopen_handles_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700959 DCHECK(intern_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -0700960 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800961 DCHECK(logging_lock_ != nullptr);
962 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700963 DCHECK(profiler_lock_ != nullptr);
Mingyao Yang063fc772016-08-02 11:02:54 -0700964 DCHECK(cha_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800965 DCHECK(thread_list_lock_ != nullptr);
966 DCHECK(thread_suspend_count_lock_ != nullptr);
967 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800968 DCHECK(unexpected_signal_lock_ != nullptr);
Andreas Gampecc1b5352016-12-01 16:58:38 -0800969 DCHECK(dex_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800970 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700971 // Create global locks in level order from highest lock level to lowest.
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800972 LockLevel current_lock_level = kInstrumentEntrypointsLock;
973 DCHECK(instrument_entrypoints_lock_ == nullptr);
974 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800975
Chao-ying Fu9e369312014-05-21 11:20:52 -0700976 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Chih-Hung Hsiehfba39972016-05-11 11:26:48 -0700977 if ((new_level) >= current_lock_level) { \
Brian Carlstrom306db812014-09-05 13:01:41 -0700978 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
979 fprintf(stderr, "New local level %d is not less than current level %d\n", \
980 new_level, current_lock_level); \
981 exit(1); \
982 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -0700983 current_lock_level = new_level;
984
985 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
986 DCHECK(mutator_lock_ == nullptr);
Yu Lieac44242015-06-29 10:50:03 +0800987 mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700988
989 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
990 DCHECK(heap_bitmap_lock_ == nullptr);
991 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
992
Jeff Hao69dbec62014-09-15 18:03:41 -0700993 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
994 DCHECK(trace_lock_ == nullptr);
995 trace_lock_ = new Mutex("trace lock", current_lock_level);
996
Chao-ying Fu9e369312014-05-21 11:20:52 -0700997 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
998 DCHECK(runtime_shutdown_lock_ == nullptr);
999 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
1000
1001 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
1002 DCHECK(profiler_lock_ == nullptr);
1003 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
1004
Brian Carlstrom306db812014-09-05 13:01:41 -07001005 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
1006 DCHECK(deoptimization_lock_ == nullptr);
1007 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
1008
1009 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
1010 DCHECK(alloc_tracker_lock_ == nullptr);
1011 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
1012
Chao-ying Fu9e369312014-05-21 11:20:52 -07001013 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
1014 DCHECK(thread_list_lock_ == nullptr);
1015 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
1016
Ian Rogers68d8b422014-07-17 11:09:10 -07001017 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
1018 DCHECK(jni_libraries_lock_ == nullptr);
1019 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
1020
Chao-ying Fu9e369312014-05-21 11:20:52 -07001021 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001022 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +02001023 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001024
Mingyao Yang063fc772016-08-02 11:02:54 -07001025 UPDATE_CURRENT_LOCK_LEVEL(kCHALock);
1026 DCHECK(cha_lock_ == nullptr);
1027 cha_lock_ = new Mutex("CHA lock", current_lock_level);
1028
Chao-ying Fu9e369312014-05-21 11:20:52 -07001029 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001030 DCHECK(classlinker_classes_lock_ == nullptr);
1031 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -07001032 current_lock_level);
1033
Andreas Gampe74240812014-04-17 10:35:09 -07001034 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
1035 DCHECK(allocated_monitor_ids_lock_ == nullptr);
1036 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
1037
Chao-ying Fu9e369312014-05-21 11:20:52 -07001038 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
1039 DCHECK(allocated_thread_ids_lock_ == nullptr);
1040 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
1041
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +01001042 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001043 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
1044 DCHECK(modify_ldt_lock_ == nullptr);
1045 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
1046 }
1047
Andreas Gampecc1b5352016-12-01 16:58:38 -08001048 UPDATE_CURRENT_LOCK_LEVEL(kDexLock);
1049 DCHECK(dex_lock_ == nullptr);
1050 dex_lock_ = new ReaderWriterMutex("ClassLinker dex lock", current_lock_level);
1051
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001052 UPDATE_CURRENT_LOCK_LEVEL(kOatFileManagerLock);
1053 DCHECK(oat_file_manager_lock_ == nullptr);
1054 oat_file_manager_lock_ = new ReaderWriterMutex("OatFile manager lock", current_lock_level);
1055
David Brazdilca3c8c32016-09-06 14:04:48 +01001056 UPDATE_CURRENT_LOCK_LEVEL(kVerifierDepsLock);
1057 DCHECK(verifier_deps_lock_ == nullptr);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001058 verifier_deps_lock_ = new ReaderWriterMutex("verifier deps lock", current_lock_level);
David Brazdilca3c8c32016-09-06 14:04:48 +01001059
Richard Uhlera206c742016-05-24 15:04:22 -07001060 UPDATE_CURRENT_LOCK_LEVEL(kHostDlOpenHandlesLock);
1061 DCHECK(host_dlopen_handles_lock_ == nullptr);
1062 host_dlopen_handles_lock_ = new Mutex("host dlopen handles lock", current_lock_level);
Mathieu Chartiere58991b2015-10-13 07:59:34 -07001063
Chao-ying Fu9e369312014-05-21 11:20:52 -07001064 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001065 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001066 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1067
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001068 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1069 DCHECK(reference_processor_lock_ == nullptr);
1070 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1071
1072 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1073 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1074 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1075
1076 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1077 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1078 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1079
1080 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1081 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1082 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1083
1084 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1085 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1086 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1087
1088 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1089 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1090 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1091
Andreas Gampe05a364c2016-10-14 13:27:12 -07001092 UPDATE_CURRENT_LOCK_LEVEL(kJniGlobalsLock);
1093 DCHECK(jni_globals_lock_ == nullptr);
1094 jni_globals_lock_ =
1095 new ReaderWriterMutex("JNI global reference table lock", current_lock_level);
1096
1097 UPDATE_CURRENT_LOCK_LEVEL(kJniWeakGlobalsLock);
1098 DCHECK(jni_weak_globals_lock_ == nullptr);
1099 jni_weak_globals_lock_ = new Mutex("JNI weak global reference table lock", current_lock_level);
1100
Chao-ying Fu9e369312014-05-21 11:20:52 -07001101 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1102 DCHECK(abort_lock_ == nullptr);
1103 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1104
1105 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1106 DCHECK(thread_suspend_count_lock_ == nullptr);
1107 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1108
1109 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1110 DCHECK(unexpected_signal_lock_ == nullptr);
1111 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1112
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -07001113 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
1114 DCHECK(mem_maps_lock_ == nullptr);
1115 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
1116
Chao-ying Fu9e369312014-05-21 11:20:52 -07001117 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1118 DCHECK(logging_lock_ == nullptr);
1119 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1120
1121 #undef UPDATE_CURRENT_LOCK_LEVEL
Mathieu Chartier91e56692015-03-03 13:51:04 -08001122
1123 InitConditions();
Ian Rogers719d1a32014-03-06 12:13:39 -08001124 }
1125}
1126
Mathieu Chartier91e56692015-03-03 13:51:04 -08001127void Locks::InitConditions() {
1128 thread_exit_cond_ = new ConditionVariable("thread exit condition variable", *thread_list_lock_);
1129}
Ian Rogers719d1a32014-03-06 12:13:39 -08001130
David Sehrf42eb2c2016-10-19 13:20:45 -07001131void Locks::SetClientCallback(ClientCallback* safe_to_call_abort_cb) {
1132 safe_to_call_abort_callback.StoreRelease(safe_to_call_abort_cb);
1133}
1134
1135// Helper to allow checking shutdown while ignoring locking requirements.
1136bool Locks::IsSafeToCallAbortRacy() {
1137 Locks::ClientCallback* safe_to_call_abort_cb = safe_to_call_abort_callback.LoadAcquire();
1138 return safe_to_call_abort_cb != nullptr && safe_to_call_abort_cb();
1139}
1140
Elliott Hughese62934d2012-04-09 11:24:29 -07001141} // namespace art