blob: c11e3d1e6ee4216598ac249a5487b8bface1bbc6 [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
David Sehrc431b9d2018-03-02 12:01:51 -080024#include "base/atomic.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080025#include "base/logging.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080026#include "base/systrace.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070027#include "base/time_utils.h"
Ian Rogerscf7f1912014-10-22 22:06:39 -070028#include "base/value_object.h"
Ian Rogers693ff612013-02-01 10:56:12 -080029#include "mutex-inl.h"
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;
Alex Light184f0752018-07-13 11:18:22 -070045Mutex* Locks::custom_tls_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070046Mutex* Locks::deoptimization_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080047ReaderWriterMutex* Locks::heap_bitmap_lock_ = nullptr;
Mathieu Chartier9ef78b52014-09-25 17:03:12 -070048Mutex* Locks::instrument_entrypoints_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070049Mutex* Locks::intern_table_lock_ = nullptr;
Andreas Gampec8089542017-01-16 12:41:12 -080050Mutex* Locks::jni_function_table_lock_ = nullptr;
Ian Rogers68d8b422014-07-17 11:09:10 -070051Mutex* Locks::jni_libraries_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080052Mutex* Locks::logging_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070053Mutex* Locks::modify_ldt_lock_ = nullptr;
Yu Lieac44242015-06-29 10:50:03 +080054MutatorMutex* Locks::mutator_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070055Mutex* Locks::profiler_lock_ = nullptr;
Nicolas Geoffray340dafa2016-11-18 16:03:10 +000056ReaderWriterMutex* Locks::verifier_deps_lock_ = nullptr;
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -070057ReaderWriterMutex* Locks::oat_file_manager_lock_ = nullptr;
Richard Uhlera206c742016-05-24 15:04:22 -070058Mutex* Locks::host_dlopen_handles_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070059Mutex* Locks::reference_processor_lock_ = nullptr;
60Mutex* Locks::reference_queue_cleared_references_lock_ = nullptr;
61Mutex* Locks::reference_queue_finalizer_references_lock_ = nullptr;
62Mutex* Locks::reference_queue_phantom_references_lock_ = nullptr;
63Mutex* Locks::reference_queue_soft_references_lock_ = nullptr;
64Mutex* Locks::reference_queue_weak_references_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080065Mutex* Locks::runtime_shutdown_lock_ = nullptr;
Mingyao Yang063fc772016-08-02 11:02:54 -070066Mutex* Locks::cha_lock_ = nullptr;
Igor Murashkin495e7832017-10-27 10:56:20 -070067Mutex* Locks::subtype_check_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080068Mutex* Locks::thread_list_lock_ = nullptr;
Mathieu Chartier91e56692015-03-03 13:51:04 -080069ConditionVariable* Locks::thread_exit_cond_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080070Mutex* Locks::thread_suspend_count_lock_ = nullptr;
71Mutex* Locks::trace_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080072Mutex* Locks::unexpected_signal_lock_ = nullptr;
Alex Light88fd7202017-06-30 08:31:59 -070073Mutex* Locks::user_code_suspension_lock_ = nullptr;
Andreas Gampe5bdb6552015-07-22 23:44:55 -070074Uninterruptible Roles::uninterruptible_;
Andreas Gampe05a364c2016-10-14 13:27:12 -070075ReaderWriterMutex* Locks::jni_globals_lock_ = nullptr;
76Mutex* Locks::jni_weak_globals_lock_ = nullptr;
Andreas Gampecc1b5352016-12-01 16:58:38 -080077ReaderWriterMutex* Locks::dex_lock_ = nullptr;
David Srbeckyfb3de3d2018-01-29 16:11:49 +000078Mutex* Locks::native_debug_interface_lock_ = nullptr;
Hiroshi Yamauchia2224042017-02-08 16:35:45 -080079std::vector<BaseMutex*> Locks::expected_mutexes_on_weak_ref_access_;
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -080080Atomic<const BaseMutex*> Locks::expected_mutexes_on_weak_ref_access_guard_;
Ian Rogers719d1a32014-03-06 12:13:39 -080081
82struct AllMutexData {
83 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
84 Atomic<const BaseMutex*> all_mutexes_guard;
85 // All created mutexes guarded by all_mutexes_guard_.
86 std::set<BaseMutex*>* all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070087 AllMutexData() : all_mutexes(nullptr) {}
Ian Rogers719d1a32014-03-06 12:13:39 -080088};
89static struct AllMutexData gAllMutexData[kAllMutexDataSize];
90
Ian Rogersc604d732012-10-14 16:09:54 -070091#if ART_USE_FUTEXES
92static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070093 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070094 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
95 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
96 if (result_ts->tv_nsec < 0) {
97 result_ts->tv_sec--;
98 result_ts->tv_nsec += one_sec;
99 } else if (result_ts->tv_nsec > one_sec) {
100 result_ts->tv_sec++;
101 result_ts->tv_nsec -= one_sec;
102 }
103 return result_ts->tv_sec < 0;
104}
105#endif
106
Hans Boehmae915a02017-12-12 11:05:32 -0800107// Wait for an amount of time that roughly increases in the argument i.
108// Spin for small arguments and yield/sleep for longer ones.
109static void BackOff(uint32_t i) {
110 static constexpr uint32_t kSpinMax = 10;
111 static constexpr uint32_t kYieldMax = 20;
112 if (i <= kSpinMax) {
113 // TODO: Esp. in very latency-sensitive cases, consider replacing this with an explicit
114 // test-and-test-and-set loop in the caller. Possibly skip entirely on a uniprocessor.
115 volatile uint32_t x = 0;
116 const uint32_t spin_count = 10 * i;
117 for (uint32_t spin = 0; spin < spin_count; ++spin) {
118 ++x; // Volatile; hence should not be optimized away.
119 }
120 // TODO: Consider adding x86 PAUSE and/or ARM YIELD here.
121 } else if (i <= kYieldMax) {
122 sched_yield();
123 } else {
124 NanoSleep(1000ull * (i - kYieldMax));
125 }
126}
127
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100128class ScopedAllMutexesLock final {
Ian Rogers56edc432013-01-18 16:51:51 -0800129 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -0700130 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Hans Boehmae915a02017-12-12 11:05:32 -0800131 for (uint32_t i = 0;
Orion Hodson88591fe2018-03-06 13:35:43 +0000132 !gAllMutexData->all_mutexes_guard.CompareAndSetWeakAcquire(nullptr, mutex);
Hans Boehmae915a02017-12-12 11:05:32 -0800133 ++i) {
134 BackOff(i);
Ian Rogers56edc432013-01-18 16:51:51 -0800135 }
136 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700137
Ian Rogers56edc432013-01-18 16:51:51 -0800138 ~ScopedAllMutexesLock() {
Orion Hodson88591fe2018-03-06 13:35:43 +0000139 DCHECK_EQ(gAllMutexData->all_mutexes_guard.load(std::memory_order_relaxed), mutex_);
140 gAllMutexData->all_mutexes_guard.store(nullptr, std::memory_order_release);
Ian Rogers56edc432013-01-18 16:51:51 -0800141 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700142
Ian Rogers56edc432013-01-18 16:51:51 -0800143 private:
144 const BaseMutex* const mutex_;
145};
Ian Rogers56edc432013-01-18 16:51:51 -0800146
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100147class Locks::ScopedExpectedMutexesOnWeakRefAccessLock final {
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -0800148 public:
149 explicit ScopedExpectedMutexesOnWeakRefAccessLock(const BaseMutex* mutex) : mutex_(mutex) {
Hans Boehmae915a02017-12-12 11:05:32 -0800150 for (uint32_t i = 0;
Orion Hodson88591fe2018-03-06 13:35:43 +0000151 !Locks::expected_mutexes_on_weak_ref_access_guard_.CompareAndSetWeakAcquire(nullptr,
152 mutex);
Hans Boehmae915a02017-12-12 11:05:32 -0800153 ++i) {
154 BackOff(i);
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -0800155 }
156 }
157
158 ~ScopedExpectedMutexesOnWeakRefAccessLock() {
Orion Hodson88591fe2018-03-06 13:35:43 +0000159 DCHECK_EQ(Locks::expected_mutexes_on_weak_ref_access_guard_.load(std::memory_order_relaxed),
160 mutex_);
161 Locks::expected_mutexes_on_weak_ref_access_guard_.store(nullptr, std::memory_order_release);
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -0800162 }
163
164 private:
165 const BaseMutex* const mutex_;
166};
167
Ian Rogerscf7f1912014-10-22 22:06:39 -0700168// Scoped class that generates events at the beginning and end of lock contention.
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100169class ScopedContentionRecorder final : public ValueObject {
Ian Rogerscf7f1912014-10-22 22:06:39 -0700170 public:
171 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid)
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700172 : mutex_(kLogLockContentions ? mutex : nullptr),
Ian Rogerscf7f1912014-10-22 22:06:39 -0700173 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
174 owner_tid_(kLogLockContentions ? owner_tid : 0),
175 start_nano_time_(kLogLockContentions ? NanoTime() : 0) {
176 if (ATRACE_ENABLED()) {
177 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")",
178 mutex->GetName(), owner_tid);
179 ATRACE_BEGIN(msg.c_str());
180 }
181 }
182
183 ~ScopedContentionRecorder() {
184 ATRACE_END();
185 if (kLogLockContentions) {
186 uint64_t end_nano_time = NanoTime();
187 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
188 }
189 }
190
191 private:
192 BaseMutex* const mutex_;
193 const uint64_t blocked_tid_;
194 const uint64_t owner_tid_;
195 const uint64_t start_nano_time_;
196};
197
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800198BaseMutex::BaseMutex(const char* name, LockLevel level)
Andreas Gampe5db8b7b2018-05-08 16:10:59 -0700199 : name_(name),
200 level_(level),
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800201 should_respond_to_empty_checkpoint_request_(false) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700202 if (kLogLockContentions) {
203 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700204 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700205 if (*all_mutexes_ptr == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700206 // We leak the global set of all mutexes to avoid ordering issues in global variable
207 // construction/destruction.
208 *all_mutexes_ptr = new std::set<BaseMutex*>();
209 }
210 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800211 }
Ian Rogers56edc432013-01-18 16:51:51 -0800212}
213
214BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700215 if (kLogLockContentions) {
216 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700217 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700218 }
Ian Rogers56edc432013-01-18 16:51:51 -0800219}
220
221void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700222 if (kLogLockContentions) {
223 os << "Mutex logging:\n";
224 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700225 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700226 if (all_mutexes == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700227 // No mutexes have been created yet during at startup.
228 return;
229 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700230 os << "(Contended)\n";
Andreas Gampec55bb392018-09-21 00:02:02 +0000231 for (const BaseMutex* mutex : *all_mutexes) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700232 if (mutex->HasEverContended()) {
233 mutex->Dump(os);
234 os << "\n";
235 }
236 }
237 os << "(Never contented)\n";
Andreas Gampec55bb392018-09-21 00:02:02 +0000238 for (const BaseMutex* mutex : *all_mutexes) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700239 if (!mutex->HasEverContended()) {
240 mutex->Dump(os);
241 os << "\n";
242 }
243 }
Ian Rogers56edc432013-01-18 16:51:51 -0800244 }
Ian Rogers56edc432013-01-18 16:51:51 -0800245}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700246
Ian Rogers81d425b2012-09-27 16:03:43 -0700247void BaseMutex::CheckSafeToWait(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700248 if (self == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700249 CheckUnattachedThread(level_);
250 return;
251 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700252 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700253 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
254 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700255 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800256 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700257 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700258 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Alex Light79400aa2017-07-18 15:34:21 -0700259 // We allow the thread to wait even if the user_code_suspension_lock_ is held so long as we
260 // are some thread's resume_cond_ (level_ == kThreadSuspendCountLock). This just means that
261 // gc or some other internal process is suspending the thread while it is trying to suspend
262 // some other thread. So long as the current thread is not being suspended by a
263 // SuspendReason::kForUserCode (which needs the user_code_suspension_lock_ to clear) this is
264 // fine.
265 if (held_mutex == Locks::user_code_suspension_lock_ && level_ == kThreadSuspendCountLock) {
266 // No thread safety analysis is fine since we have both the user_code_suspension_lock_
267 // from the line above and the ThreadSuspendCountLock since it is our level_. We use this
268 // lambda to avoid having to annotate the whole function as NO_THREAD_SAFETY_ANALYSIS.
269 auto is_suspending_for_user_code = [self]() NO_THREAD_SAFETY_ANALYSIS {
270 return self->GetUserCodeSuspendCount() != 0;
271 };
272 if (is_suspending_for_user_code()) {
273 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
274 << "(level " << LockLevel(i) << ") while performing wait on "
275 << "\"" << name_ << "\" (level " << level_ << ") "
276 << "with SuspendReason::kForUserCode pending suspensions";
277 bad_mutexes_held = true;
278 }
279 } else if (held_mutex != nullptr) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800280 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
281 << "(level " << LockLevel(i) << ") while performing wait on "
282 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700283 bad_mutexes_held = true;
284 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700285 }
286 }
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000287 if (gAborting == 0) { // Avoid recursive aborts.
Alex Light79400aa2017-07-18 15:34:21 -0700288 CHECK(!bad_mutexes_held) << this;
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000289 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700290 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700291}
292
Ian Rogers37f3c962014-07-17 11:25:30 -0700293void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700294 if (kLogLockContentions) {
295 // Atomically add value to wait_time.
Orion Hodson88591fe2018-03-06 13:35:43 +0000296 wait_time.fetch_add(value, std::memory_order_seq_cst);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700297 }
298}
299
Brian Carlstrom0de79852013-07-25 22:29:58 -0700300void BaseMutex::RecordContention(uint64_t blocked_tid,
301 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700302 uint64_t nano_time_blocked) {
303 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700304 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700305 ++(data->contention_count);
306 data->AddToWaitTime(nano_time_blocked);
307 ContentionLogEntry* log = data->contention_log;
308 // This code is intentionally racy as it is only used for diagnostics.
Orion Hodson88591fe2018-03-06 13:35:43 +0000309 int32_t slot = data->cur_content_log_entry.load(std::memory_order_relaxed);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700310 if (log[slot].blocked_tid == blocked_tid &&
311 log[slot].owner_tid == blocked_tid) {
312 ++log[slot].count;
313 } else {
314 uint32_t new_slot;
315 do {
Orion Hodson88591fe2018-03-06 13:35:43 +0000316 slot = data->cur_content_log_entry.load(std::memory_order_relaxed);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700317 new_slot = (slot + 1) % kContentionLogSize;
Orion Hodson4557b382018-01-03 11:47:54 +0000318 } while (!data->cur_content_log_entry.CompareAndSetWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700319 log[new_slot].blocked_tid = blocked_tid;
320 log[new_slot].owner_tid = owner_tid;
Orion Hodson88591fe2018-03-06 13:35:43 +0000321 log[new_slot].count.store(1, std::memory_order_relaxed);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700322 }
Ian Rogers56edc432013-01-18 16:51:51 -0800323 }
Ian Rogers56edc432013-01-18 16:51:51 -0800324}
325
Ian Rogers56edc432013-01-18 16:51:51 -0800326void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700327 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700328 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700329 const ContentionLogEntry* log = data->contention_log;
Orion Hodson88591fe2018-03-06 13:35:43 +0000330 uint64_t wait_time = data->wait_time.load(std::memory_order_relaxed);
331 uint32_t contention_count = data->contention_count.load(std::memory_order_relaxed);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700332 if (contention_count == 0) {
333 os << "never contended";
334 } else {
335 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700336 << " total wait of contender " << PrettyDuration(wait_time)
337 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700338 SafeMap<uint64_t, size_t> most_common_blocker;
339 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700340 for (size_t i = 0; i < kContentionLogSize; ++i) {
341 uint64_t blocked_tid = log[i].blocked_tid;
342 uint64_t owner_tid = log[i].owner_tid;
Orion Hodson88591fe2018-03-06 13:35:43 +0000343 uint32_t count = log[i].count.load(std::memory_order_relaxed);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700344 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700345 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700346 if (it != most_common_blocked.end()) {
347 most_common_blocked.Overwrite(blocked_tid, it->second + count);
348 } else {
349 most_common_blocked.Put(blocked_tid, count);
350 }
351 it = most_common_blocker.find(owner_tid);
352 if (it != most_common_blocker.end()) {
353 most_common_blocker.Overwrite(owner_tid, it->second + count);
354 } else {
355 most_common_blocker.Put(owner_tid, count);
356 }
Ian Rogers56edc432013-01-18 16:51:51 -0800357 }
358 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700359 uint64_t max_tid = 0;
360 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700361 for (const auto& pair : most_common_blocked) {
362 if (pair.second > max_tid_count) {
363 max_tid = pair.first;
364 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700365 }
Ian Rogers56edc432013-01-18 16:51:51 -0800366 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700367 if (max_tid != 0) {
368 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800369 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700370 max_tid = 0;
371 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700372 for (const auto& pair : most_common_blocker) {
373 if (pair.second > max_tid_count) {
374 max_tid = pair.first;
375 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700376 }
377 }
378 if (max_tid != 0) {
379 os << " sample shows tid=" << max_tid << " owning during this time";
380 }
Ian Rogers56edc432013-01-18 16:51:51 -0800381 }
382 }
Ian Rogers56edc432013-01-18 16:51:51 -0800383}
384
385
Ian Rogers81d425b2012-09-27 16:03:43 -0700386Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Andreas Gampe5db8b7b2018-05-08 16:10:59 -0700387 : BaseMutex(name, level), exclusive_owner_(0), recursion_count_(0), recursive_(recursive) {
Ian Rogersc604d732012-10-14 16:09:54 -0700388#if ART_USE_FUTEXES
Orion Hodson88591fe2018-03-06 13:35:43 +0000389 DCHECK_EQ(0, state_.load(std::memory_order_relaxed));
390 DCHECK_EQ(0, num_contenders_.load(std::memory_order_relaxed));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700391#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700392 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700393#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700394}
395
David Sehrf42eb2c2016-10-19 13:20:45 -0700396// Helper to allow checking shutdown while locking for thread safety.
397static bool IsSafeToCallAbortSafe() {
398 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
399 return Locks::IsSafeToCallAbortRacy();
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800400}
401
Elliott Hughes8daa0922011-09-11 13:46:25 -0700402Mutex::~Mutex() {
David Sehrf42eb2c2016-10-19 13:20:45 -0700403 bool safe_to_call_abort = Locks::IsSafeToCallAbortRacy();
Ian Rogersc604d732012-10-14 16:09:54 -0700404#if ART_USE_FUTEXES
Orion Hodson88591fe2018-03-06 13:35:43 +0000405 if (state_.load(std::memory_order_relaxed) != 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700406 LOG(safe_to_call_abort ? FATAL : WARNING)
Hans Boehm0882af22017-08-31 15:21:57 -0700407 << "destroying mutex with owner: " << GetExclusiveOwnerTid();
Ian Rogersc604d732012-10-14 16:09:54 -0700408 } else {
Hans Boehm0882af22017-08-31 15:21:57 -0700409 if (GetExclusiveOwnerTid() != 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700410 LOG(safe_to_call_abort ? FATAL : WARNING)
411 << "unexpectedly found an owner on unlocked mutex " << name_;
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800412 }
Orion Hodson88591fe2018-03-06 13:35:43 +0000413 if (num_contenders_.load(std::memory_order_seq_cst) != 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700414 LOG(safe_to_call_abort ? FATAL : WARNING)
415 << "unexpectedly found a contender on mutex " << name_;
Mathieu Chartiercef50f02014-12-09 17:38:52 -0800416 }
Ian Rogersc604d732012-10-14 16:09:54 -0700417 }
418#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700419 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
420 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800421 int rc = pthread_mutex_destroy(&mutex_);
422 if (rc != 0) {
423 errno = rc;
David Sehrf42eb2c2016-10-19 13:20:45 -0700424 PLOG(safe_to_call_abort ? FATAL : WARNING)
425 << "pthread_mutex_destroy failed for " << name_;
Elliott Hughes6b355752012-01-13 16:49:08 -0800426 }
Ian Rogersc604d732012-10-14 16:09:54 -0700427#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700428}
429
Ian Rogers81d425b2012-09-27 16:03:43 -0700430void Mutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700431 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700432 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700433 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700434 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700435 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700436#if ART_USE_FUTEXES
437 bool done = false;
438 do {
Orion Hodson88591fe2018-03-06 13:35:43 +0000439 int32_t cur_state = state_.load(std::memory_order_relaxed);
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700440 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700441 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
Orion Hodson4557b382018-01-03 11:47:54 +0000442 done = state_.CompareAndSetWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700443 } else {
444 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700445 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800446 num_contenders_++;
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800447 if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) {
448 self->CheckEmptyCheckpointFromMutex();
449 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700450 if (futex(state_.Address(), FUTEX_WAIT, 1, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700451 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
452 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
453 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700454 PLOG(FATAL) << "futex wait failed for " << name_;
455 }
456 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800457 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700458 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700459 } while (!done);
Orion Hodson88591fe2018-03-06 13:35:43 +0000460 DCHECK_EQ(state_.load(std::memory_order_relaxed), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700461#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700462 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700463#endif
Hans Boehm0882af22017-08-31 15:21:57 -0700464 DCHECK_EQ(GetExclusiveOwnerTid(), 0);
Orion Hodson88591fe2018-03-06 13:35:43 +0000465 exclusive_owner_.store(SafeGetTid(self), std::memory_order_relaxed);
Ian Rogers81d425b2012-09-27 16:03:43 -0700466 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700467 }
468 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700469 if (kDebugLocking) {
470 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
471 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700472 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700473 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700474}
475
Ian Rogers81d425b2012-09-27 16:03:43 -0700476bool Mutex::ExclusiveTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700477 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700478 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700479 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700480 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700481 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700482#if ART_USE_FUTEXES
483 bool done = false;
484 do {
Orion Hodson88591fe2018-03-06 13:35:43 +0000485 int32_t cur_state = state_.load(std::memory_order_relaxed);
Ian Rogersc604d732012-10-14 16:09:54 -0700486 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700487 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
Orion Hodson4557b382018-01-03 11:47:54 +0000488 done = state_.CompareAndSetWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700489 } else {
490 return false;
491 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700492 } while (!done);
Orion Hodson88591fe2018-03-06 13:35:43 +0000493 DCHECK_EQ(state_.load(std::memory_order_relaxed), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700494#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700495 int result = pthread_mutex_trylock(&mutex_);
496 if (result == EBUSY) {
497 return false;
498 }
499 if (result != 0) {
500 errno = result;
501 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
502 }
Ian Rogersc604d732012-10-14 16:09:54 -0700503#endif
Hans Boehm0882af22017-08-31 15:21:57 -0700504 DCHECK_EQ(GetExclusiveOwnerTid(), 0);
Orion Hodson88591fe2018-03-06 13:35:43 +0000505 exclusive_owner_.store(SafeGetTid(self), std::memory_order_relaxed);
Ian Rogers81d425b2012-09-27 16:03:43 -0700506 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700507 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700508 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700509 if (kDebugLocking) {
510 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
511 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700512 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700513 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700514 return true;
515}
516
Ian Rogers81d425b2012-09-27 16:03:43 -0700517void Mutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800518 if (kIsDebugBuild && self != nullptr && self != Thread::Current()) {
519 std::string name1 = "<null>";
520 std::string name2 = "<null>";
521 if (self != nullptr) {
522 self->GetThreadName(name1);
523 }
524 if (Thread::Current() != nullptr) {
525 Thread::Current()->GetThreadName(name2);
526 }
Mathieu Chartier4c101102015-01-27 17:14:16 -0800527 LOG(FATAL) << GetName() << " level=" << level_ << " self=" << name1
528 << " Thread::Current()=" << name2;
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800529 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700530 AssertHeld(self);
Hans Boehm0882af22017-08-31 15:21:57 -0700531 DCHECK_NE(GetExclusiveOwnerTid(), 0);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700532 recursion_count_--;
533 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700534 if (kDebugLocking) {
535 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
536 << name_ << " " << recursion_count_;
537 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700538 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700539#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700540 bool done = false;
541 do {
Orion Hodson88591fe2018-03-06 13:35:43 +0000542 int32_t cur_state = state_.load(std::memory_order_relaxed);
Ian Rogersc5f17732014-06-05 20:48:42 -0700543 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700544 // We're no longer the owner.
Orion Hodson88591fe2018-03-06 13:35:43 +0000545 exclusive_owner_.store(0 /* pid */, std::memory_order_relaxed);
Ian Rogersc7190692014-07-08 23:50:26 -0700546 // Change state to 0 and impose load/store ordering appropriate for lock release.
Orion Hodson4557b382018-01-03 11:47:54 +0000547 // Note, the relaxed loads below mustn't reorder before the CompareAndSet.
Ian Rogersc7190692014-07-08 23:50:26 -0700548 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
549 // a status bit into the state on contention.
Orion Hodson4557b382018-01-03 11:47:54 +0000550 done = state_.CompareAndSetWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700551 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700552 // Wake a contender.
Hyangseok Chae240a5642018-07-25 16:45:08 +0900553 if (UNLIKELY(num_contenders_.load(std::memory_order_seq_cst) > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700554 futex(state_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700555 }
556 }
557 } else {
558 // Logging acquires the logging lock, avoid infinite recursion in that case.
559 if (this != Locks::logging_lock_) {
560 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
561 } else {
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700562 LogHelper::LogLineLowStack(__FILE__,
563 __LINE__,
564 ::android::base::FATAL_WITHOUT_ABORT,
565 StringPrintf("Unexpected state_ %d in unlock for %s",
566 cur_state, name_).c_str());
Ian Rogersc5f17732014-06-05 20:48:42 -0700567 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700568 }
569 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700570 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700571#else
Orion Hodson88591fe2018-03-06 13:35:43 +0000572 exclusive_owner_.store(0 /* pid */, std::memory_order_relaxed);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700573 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700574#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700575 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700576}
577
Ian Rogers56edc432013-01-18 16:51:51 -0800578void Mutex::Dump(std::ostream& os) const {
579 os << (recursive_ ? "recursive " : "non-recursive ")
580 << name_
581 << " level=" << static_cast<int>(level_)
582 << " rec=" << recursion_count_
583 << " owner=" << GetExclusiveOwnerTid() << " ";
584 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700585}
586
587std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800588 mu.Dump(os);
589 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700590}
591
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800592void Mutex::WakeupToRespondToEmptyCheckpoint() {
593#if ART_USE_FUTEXES
594 // Wake up all the waiters so they will respond to the emtpy checkpoint.
595 DCHECK(should_respond_to_empty_checkpoint_request_);
Orion Hodson88591fe2018-03-06 13:35:43 +0000596 if (UNLIKELY(num_contenders_.load(std::memory_order_relaxed) > 0)) {
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800597 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
598 }
599#else
600 LOG(FATAL) << "Non futex case isn't supported.";
601#endif
602}
603
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700604ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
605 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700606#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700607 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700608#endif
Igor Murashkin5573c372017-11-16 13:34:30 -0800609{
Ian Rogers81d425b2012-09-27 16:03:43 -0700610#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700611 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700612#endif
Orion Hodson88591fe2018-03-06 13:35:43 +0000613 exclusive_owner_.store(0 /* pid */, std::memory_order_relaxed);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700614}
615
616ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700617#if ART_USE_FUTEXES
Orion Hodson88591fe2018-03-06 13:35:43 +0000618 CHECK_EQ(state_.load(std::memory_order_relaxed), 0);
Hans Boehm0882af22017-08-31 15:21:57 -0700619 CHECK_EQ(GetExclusiveOwnerTid(), 0);
Orion Hodson88591fe2018-03-06 13:35:43 +0000620 CHECK_EQ(num_pending_readers_.load(std::memory_order_relaxed), 0);
621 CHECK_EQ(num_pending_writers_.load(std::memory_order_relaxed), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700622#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700623 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
624 // may still be using locks.
625 int rc = pthread_rwlock_destroy(&rwlock_);
626 if (rc != 0) {
627 errno = rc;
David Sehrf42eb2c2016-10-19 13:20:45 -0700628 bool is_safe_to_call_abort = IsSafeToCallAbortSafe();
629 PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800630 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700631#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700632}
633
Ian Rogers81d425b2012-09-27 16:03:43 -0700634void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700635 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700636 AssertNotExclusiveHeld(self);
637#if ART_USE_FUTEXES
638 bool done = false;
639 do {
Orion Hodson88591fe2018-03-06 13:35:43 +0000640 int32_t cur_state = state_.load(std::memory_order_relaxed);
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700641 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700642 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
Orion Hodson4557b382018-01-03 11:47:54 +0000643 done = state_.CompareAndSetWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700644 } else {
645 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700646 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700647 ++num_pending_writers_;
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800648 if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) {
649 self->CheckEmptyCheckpointFromMutex();
650 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700651 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700652 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
653 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
654 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700655 PLOG(FATAL) << "futex wait failed for " << name_;
656 }
657 }
Ian Rogersc7190692014-07-08 23:50:26 -0700658 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700659 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700660 } while (!done);
Orion Hodson88591fe2018-03-06 13:35:43 +0000661 DCHECK_EQ(state_.load(std::memory_order_relaxed), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700662#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700663 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700664#endif
Hans Boehm0882af22017-08-31 15:21:57 -0700665 DCHECK_EQ(GetExclusiveOwnerTid(), 0);
Orion Hodson88591fe2018-03-06 13:35:43 +0000666 exclusive_owner_.store(SafeGetTid(self), std::memory_order_relaxed);
Ian Rogers81d425b2012-09-27 16:03:43 -0700667 RegisterAsLocked(self);
668 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700669}
670
Ian Rogers81d425b2012-09-27 16:03:43 -0700671void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700672 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700673 AssertExclusiveHeld(self);
674 RegisterAsUnlocked(self);
Hans Boehm0882af22017-08-31 15:21:57 -0700675 DCHECK_NE(GetExclusiveOwnerTid(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700676#if ART_USE_FUTEXES
677 bool done = false;
678 do {
Orion Hodson88591fe2018-03-06 13:35:43 +0000679 int32_t cur_state = state_.load(std::memory_order_relaxed);
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700680 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700681 // We're no longer the owner.
Orion Hodson88591fe2018-03-06 13:35:43 +0000682 exclusive_owner_.store(0 /* pid */, std::memory_order_relaxed);
Ian Rogersc7190692014-07-08 23:50:26 -0700683 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
Orion Hodson4557b382018-01-03 11:47:54 +0000684 // Note, the relaxed loads below musn't reorder before the CompareAndSet.
Ian Rogersc7190692014-07-08 23:50:26 -0700685 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
686 // a status bit into the state on contention.
Orion Hodson4557b382018-01-03 11:47:54 +0000687 done = state_.CompareAndSetWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
Ian Rogersc7190692014-07-08 23:50:26 -0700688 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700689 // Wake any waiters.
Hyangseok Chae240a5642018-07-25 16:45:08 +0900690 if (UNLIKELY(num_pending_readers_.load(std::memory_order_seq_cst) > 0 ||
691 num_pending_writers_.load(std::memory_order_seq_cst) > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700692 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700693 }
694 }
695 } else {
696 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
697 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700698 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700699#else
Orion Hodson88591fe2018-03-06 13:35:43 +0000700 exclusive_owner_.store(0 /* pid */, std::memory_order_relaxed);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700701 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700702#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700703}
704
Ian Rogers66aee5c2012-08-15 17:17:47 -0700705#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700706bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700707 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700708#if ART_USE_FUTEXES
709 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700710 timespec end_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800711 InitTimeSpec(true, CLOCK_MONOTONIC, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700712 do {
Orion Hodson88591fe2018-03-06 13:35:43 +0000713 int32_t cur_state = state_.load(std::memory_order_relaxed);
Ian Rogers81d425b2012-09-27 16:03:43 -0700714 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700715 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
Orion Hodson4557b382018-01-03 11:47:54 +0000716 done = state_.CompareAndSetWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700717 } else {
718 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700719 timespec now_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800720 InitTimeSpec(true, CLOCK_MONOTONIC, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700721 timespec rel_ts;
722 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
723 return false; // Timed out.
724 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700725 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700726 ++num_pending_writers_;
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800727 if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) {
728 self->CheckEmptyCheckpointFromMutex();
729 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700730 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, nullptr, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700731 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700732 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700733 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700734 } else if ((errno != EAGAIN) && (errno != EINTR)) {
735 // EAGAIN and EINTR both indicate a spurious failure,
736 // recompute the relative time out from now and try again.
737 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700738 PLOG(FATAL) << "timed futex wait failed for " << name_;
739 }
740 }
Ian Rogersc7190692014-07-08 23:50:26 -0700741 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700742 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700743 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700744#else
Ian Rogersc604d732012-10-14 16:09:54 -0700745 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700746 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700747 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700748 if (result == ETIMEDOUT) {
749 return false;
750 }
751 if (result != 0) {
752 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700753 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700754 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700755#endif
Orion Hodson88591fe2018-03-06 13:35:43 +0000756 exclusive_owner_.store(SafeGetTid(self), std::memory_order_relaxed);
Ian Rogers81d425b2012-09-27 16:03:43 -0700757 RegisterAsLocked(self);
758 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700759 return true;
760}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700761#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700762
Ian Rogers51d212e2014-10-23 17:48:20 -0700763#if ART_USE_FUTEXES
Ian Rogerscf7f1912014-10-22 22:06:39 -0700764void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) {
765 // Owner holds it exclusively, hang up.
Roland Levillaincd72dc92018-02-27 19:15:31 +0000766 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogerscf7f1912014-10-22 22:06:39 -0700767 ++num_pending_readers_;
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800768 if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) {
769 self->CheckEmptyCheckpointFromMutex();
770 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700771 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Daniel Colascione6f4d1022016-11-21 14:35:42 -0800772 if (errno != EAGAIN && errno != EINTR) {
Ian Rogerscf7f1912014-10-22 22:06:39 -0700773 PLOG(FATAL) << "futex wait failed for " << name_;
774 }
775 }
776 --num_pending_readers_;
777}
Ian Rogers51d212e2014-10-23 17:48:20 -0700778#endif
Ian Rogerscf7f1912014-10-22 22:06:39 -0700779
Ian Rogers81d425b2012-09-27 16:03:43 -0700780bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700781 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700782#if ART_USE_FUTEXES
783 bool done = false;
784 do {
Orion Hodson88591fe2018-03-06 13:35:43 +0000785 int32_t cur_state = state_.load(std::memory_order_relaxed);
Ian Rogers81d425b2012-09-27 16:03:43 -0700786 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700787 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
Orion Hodson4557b382018-01-03 11:47:54 +0000788 done = state_.CompareAndSetWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700789 } else {
790 // Owner holds it exclusively.
791 return false;
792 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700793 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700794#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700795 int result = pthread_rwlock_tryrdlock(&rwlock_);
796 if (result == EBUSY) {
797 return false;
798 }
799 if (result != 0) {
800 errno = result;
801 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
802 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700803#endif
804 RegisterAsLocked(self);
805 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700806 return true;
807}
808
Ian Rogers81d425b2012-09-27 16:03:43 -0700809bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700810 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700811 bool result;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700812 if (UNLIKELY(self == nullptr)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700813 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700814 } else {
815 result = (self->GetHeldMutex(level_) == this);
816 }
817 return result;
818}
819
Ian Rogers56edc432013-01-18 16:51:51 -0800820void ReaderWriterMutex::Dump(std::ostream& os) const {
821 os << name_
822 << " level=" << static_cast<int>(level_)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700823 << " owner=" << GetExclusiveOwnerTid()
824#if ART_USE_FUTEXES
Orion Hodson88591fe2018-03-06 13:35:43 +0000825 << " state=" << state_.load(std::memory_order_seq_cst)
826 << " num_pending_writers=" << num_pending_writers_.load(std::memory_order_seq_cst)
827 << " num_pending_readers=" << num_pending_readers_.load(std::memory_order_seq_cst)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700828#endif
829 << " ";
Ian Rogers56edc432013-01-18 16:51:51 -0800830 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700831}
832
833std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800834 mu.Dump(os);
835 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700836}
837
Yu Lieac44242015-06-29 10:50:03 +0800838std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu) {
839 mu.Dump(os);
840 return os;
841}
842
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800843void ReaderWriterMutex::WakeupToRespondToEmptyCheckpoint() {
844#if ART_USE_FUTEXES
845 // Wake up all the waiters so they will respond to the emtpy checkpoint.
846 DCHECK(should_respond_to_empty_checkpoint_request_);
Orion Hodson88591fe2018-03-06 13:35:43 +0000847 if (UNLIKELY(num_pending_readers_.load(std::memory_order_relaxed) > 0 ||
848 num_pending_writers_.load(std::memory_order_relaxed) > 0)) {
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800849 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
850 }
851#else
852 LOG(FATAL) << "Non futex case isn't supported.";
853#endif
854}
855
Ian Rogers23055dc2013-04-18 16:29:16 -0700856ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700857 : name_(name), guard_(guard) {
858#if ART_USE_FUTEXES
Orion Hodson88591fe2018-03-06 13:35:43 +0000859 DCHECK_EQ(0, sequence_.load(std::memory_order_relaxed));
Ian Rogersc604d732012-10-14 16:09:54 -0700860 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700861#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000862 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700863 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000864#if !defined(__APPLE__)
865 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
Ian Rogers51d212e2014-10-23 17:48:20 -0700866 CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC));
Narayan Kamath51b71022014-03-04 11:57:09 +0000867#endif
868 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700869#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700870}
871
872ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800873#if ART_USE_FUTEXES
874 if (num_waiters_!= 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700875 bool is_safe_to_call_abort = IsSafeToCallAbortSafe();
876 LOG(is_safe_to_call_abort ? FATAL : WARNING)
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700877 << "ConditionVariable::~ConditionVariable for " << name_
Ian Rogersd45f2012012-11-28 11:46:23 -0800878 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800879 }
880#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700881 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
882 // may still be using condition variables.
883 int rc = pthread_cond_destroy(&cond_);
884 if (rc != 0) {
885 errno = rc;
David Sehrf42eb2c2016-10-19 13:20:45 -0700886 bool is_safe_to_call_abort = IsSafeToCallAbortSafe();
887 PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_cond_destroy failed for " << name_;
Elliott Hughese62934d2012-04-09 11:24:29 -0700888 }
Ian Rogersc604d732012-10-14 16:09:54 -0700889#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700890}
891
Ian Rogersc604d732012-10-14 16:09:54 -0700892void ConditionVariable::Broadcast(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700893 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700894 // TODO: enable below, there's a race in thread creation that causes false failures currently.
895 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700896 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700897#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800898 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800899 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700900 bool done = false;
901 do {
Orion Hodson88591fe2018-03-06 13:35:43 +0000902 int32_t cur_sequence = sequence_.load(std::memory_order_relaxed);
Ian Rogersd45f2012012-11-28 11:46:23 -0800903 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
904 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800905 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800906 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700907 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800908 if (!done) {
Daniel Colascione6f4d1022016-11-21 14:35:42 -0800909 if (errno != EAGAIN && errno != EINTR) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800910 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
911 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800912 }
Ian Rogersc604d732012-10-14 16:09:54 -0700913 } while (!done);
914 }
915#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700916 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700917#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700918}
919
Ian Rogersc604d732012-10-14 16:09:54 -0700920void ConditionVariable::Signal(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700921 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700922 guard_.AssertExclusiveHeld(self);
923#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800924 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800925 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700926 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
927 // to avoid this, however, requeueing can only move all waiters.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700928 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800929 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800930 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700931 }
932#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700933 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700934#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700935}
936
Ian Rogersc604d732012-10-14 16:09:54 -0700937void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700938 guard_.CheckSafeToWait(self);
939 WaitHoldingLocks(self);
940}
941
942void ConditionVariable::WaitHoldingLocks(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700943 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700944 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700945 unsigned int old_recursion_count = guard_.recursion_count_;
946#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700947 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800948 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800949 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700950 guard_.recursion_count_ = 1;
Orion Hodson88591fe2018-03-06 13:35:43 +0000951 int32_t cur_sequence = sequence_.load(std::memory_order_relaxed);
Ian Rogersc604d732012-10-14 16:09:54 -0700952 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700953 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, nullptr, nullptr, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800954 // Futex failed, check it is an expected error.
955 // EAGAIN == EWOULDBLK, so we let the caller try again.
956 // EINTR implies a signal was sent to this thread.
957 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700958 PLOG(FATAL) << "futex wait failed for " << name_;
959 }
960 }
Mathieu Chartier4d87df62016-01-07 15:14:19 -0800961 if (self != nullptr) {
962 JNIEnvExt* const env = self->GetJniEnv();
Ian Rogers55256cb2017-12-21 17:07:11 -0800963 if (UNLIKELY(env != nullptr && env->IsRuntimeDeleted())) {
Mathieu Chartier4d87df62016-01-07 15:14:19 -0800964 CHECK(self->IsDaemon());
965 // If the runtime has been deleted, then we cannot proceed. Just sleep forever. This may
966 // occur for user daemon threads that get a spurious wakeup. This occurs for test 132 with
967 // --host and --gdb.
968 // After we wake up, the runtime may have been shutdown, which means that this condition may
969 // have been deleted. It is not safe to retry the wait.
970 SleepForever();
971 }
972 }
Ian Rogersc604d732012-10-14 16:09:54 -0700973 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800974 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700975 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800976 // We awoke and so no longer require awakes from the guard_'s unlock.
Orion Hodson88591fe2018-03-06 13:35:43 +0000977 CHECK_GE(guard_.num_contenders_.load(std::memory_order_relaxed), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800978 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700979#else
Hans Boehm0882af22017-08-31 15:21:57 -0700980 pid_t old_owner = guard_.GetExclusiveOwnerTid();
Orion Hodson88591fe2018-03-06 13:35:43 +0000981 guard_.exclusive_owner_.store(0 /* pid */, std::memory_order_relaxed);
Ian Rogersc604d732012-10-14 16:09:54 -0700982 guard_.recursion_count_ = 0;
983 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Orion Hodson88591fe2018-03-06 13:35:43 +0000984 guard_.exclusive_owner_.store(old_owner, std::memory_order_relaxed);
Ian Rogersc604d732012-10-14 16:09:54 -0700985#endif
986 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700987}
988
Ian Rogers7b078e82014-09-10 14:44:24 -0700989bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700990 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700991 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700992 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700993 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700994 unsigned int old_recursion_count = guard_.recursion_count_;
995#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700996 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800997 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700998 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800999 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -08001000 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -07001001 guard_.recursion_count_ = 1;
Orion Hodson88591fe2018-03-06 13:35:43 +00001002 int32_t cur_sequence = sequence_.load(std::memory_order_relaxed);
Ian Rogersc604d732012-10-14 16:09:54 -07001003 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001004 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, nullptr, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -07001005 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -08001006 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -07001007 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -07001008 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -08001009 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -07001010 } else {
1011 PLOG(FATAL) << "timed futex wait failed for " << name_;
1012 }
1013 }
1014 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -08001015 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -07001016 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -08001017 // We awoke and so no longer require awakes from the guard_'s unlock.
Orion Hodson88591fe2018-03-06 13:35:43 +00001018 CHECK_GE(guard_.num_contenders_.load(std::memory_order_relaxed), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -08001019 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -07001020#else
Narayan Kamath51b71022014-03-04 11:57:09 +00001021#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -07001022 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -07001023#else
Ian Rogersc604d732012-10-14 16:09:54 -07001024 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -07001025#endif
Hans Boehm0882af22017-08-31 15:21:57 -07001026 pid_t old_owner = guard_.GetExclusiveOwnerTid();
Orion Hodson88591fe2018-03-06 13:35:43 +00001027 guard_.exclusive_owner_.store(0 /* pid */, std::memory_order_relaxed);
Ian Rogersc604d732012-10-14 16:09:54 -07001028 guard_.recursion_count_ = 0;
1029 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -07001030 InitTimeSpec(true, clock, ms, ns, &ts);
Josh Gao2d899c42018-10-17 16:03:42 -07001031 int rc;
1032 while ((rc = pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts)) == EINTR) {
1033 continue;
1034 }
1035
Ian Rogers7b078e82014-09-10 14:44:24 -07001036 if (rc == ETIMEDOUT) {
1037 timed_out = true;
1038 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -07001039 errno = rc;
1040 PLOG(FATAL) << "TimedWait failed for " << name_;
1041 }
Orion Hodson88591fe2018-03-06 13:35:43 +00001042 guard_.exclusive_owner_.store(old_owner, std::memory_order_relaxed);
Ian Rogersc604d732012-10-14 16:09:54 -07001043#endif
1044 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -07001045 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -07001046}
1047
Ian Rogers719d1a32014-03-06 12:13:39 -08001048void Locks::Init() {
1049 if (logging_lock_ != nullptr) {
1050 // Already initialized.
Vladimir Marko33bff252017-11-01 14:35:42 +00001051 if (kRuntimeISA == InstructionSet::kX86 || kRuntimeISA == InstructionSet::kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001052 DCHECK(modify_ldt_lock_ != nullptr);
1053 } else {
1054 DCHECK(modify_ldt_lock_ == nullptr);
1055 }
Ian Rogers719d1a32014-03-06 12:13:39 -08001056 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001057 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -07001058 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001059 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001060 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001061 DCHECK(classlinker_classes_lock_ != nullptr);
Alex Light184f0752018-07-13 11:18:22 -07001062 DCHECK(custom_tls_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001063 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001064 DCHECK(heap_bitmap_lock_ != nullptr);
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001065 DCHECK(oat_file_manager_lock_ != nullptr);
David Brazdilca3c8c32016-09-06 14:04:48 +01001066 DCHECK(verifier_deps_lock_ != nullptr);
Richard Uhlera206c742016-05-24 15:04:22 -07001067 DCHECK(host_dlopen_handles_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001068 DCHECK(intern_table_lock_ != nullptr);
Andreas Gampec8089542017-01-16 12:41:12 -08001069 DCHECK(jni_function_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -07001070 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001071 DCHECK(logging_lock_ != nullptr);
1072 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001073 DCHECK(profiler_lock_ != nullptr);
Mingyao Yang063fc772016-08-02 11:02:54 -07001074 DCHECK(cha_lock_ != nullptr);
Igor Murashkin495e7832017-10-27 10:56:20 -07001075 DCHECK(subtype_check_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001076 DCHECK(thread_list_lock_ != nullptr);
1077 DCHECK(thread_suspend_count_lock_ != nullptr);
1078 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001079 DCHECK(unexpected_signal_lock_ != nullptr);
Alex Light88fd7202017-06-30 08:31:59 -07001080 DCHECK(user_code_suspension_lock_ != nullptr);
Andreas Gampecc1b5352016-12-01 16:58:38 -08001081 DCHECK(dex_lock_ != nullptr);
David Srbeckyfb3de3d2018-01-29 16:11:49 +00001082 DCHECK(native_debug_interface_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001083 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001084 // Create global locks in level order from highest lock level to lowest.
Ian Rogers4ad5cd32014-11-11 23:08:07 -08001085 LockLevel current_lock_level = kInstrumentEntrypointsLock;
1086 DCHECK(instrument_entrypoints_lock_ == nullptr);
1087 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -08001088
Chao-ying Fu9e369312014-05-21 11:20:52 -07001089 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Chih-Hung Hsiehfba39972016-05-11 11:26:48 -07001090 if ((new_level) >= current_lock_level) { \
Brian Carlstrom306db812014-09-05 13:01:41 -07001091 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
1092 fprintf(stderr, "New local level %d is not less than current level %d\n", \
1093 new_level, current_lock_level); \
1094 exit(1); \
1095 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -07001096 current_lock_level = new_level;
1097
Alex Light88fd7202017-06-30 08:31:59 -07001098 UPDATE_CURRENT_LOCK_LEVEL(kUserCodeSuspensionLock);
1099 DCHECK(user_code_suspension_lock_ == nullptr);
1100 user_code_suspension_lock_ = new Mutex("user code suspension lock", current_lock_level);
1101
Ian Rogersf3d874c2014-07-17 18:52:42 -07001102 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
1103 DCHECK(mutator_lock_ == nullptr);
Yu Lieac44242015-06-29 10:50:03 +08001104 mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001105
1106 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
1107 DCHECK(heap_bitmap_lock_ == nullptr);
1108 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
1109
Jeff Hao69dbec62014-09-15 18:03:41 -07001110 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
1111 DCHECK(trace_lock_ == nullptr);
1112 trace_lock_ = new Mutex("trace lock", current_lock_level);
1113
Chao-ying Fu9e369312014-05-21 11:20:52 -07001114 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
1115 DCHECK(runtime_shutdown_lock_ == nullptr);
1116 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
1117
1118 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
1119 DCHECK(profiler_lock_ == nullptr);
1120 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
1121
Brian Carlstrom306db812014-09-05 13:01:41 -07001122 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
1123 DCHECK(deoptimization_lock_ == nullptr);
1124 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
1125
1126 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
1127 DCHECK(alloc_tracker_lock_ == nullptr);
1128 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
1129
Chao-ying Fu9e369312014-05-21 11:20:52 -07001130 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
1131 DCHECK(thread_list_lock_ == nullptr);
1132 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
1133
Ian Rogers68d8b422014-07-17 11:09:10 -07001134 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
1135 DCHECK(jni_libraries_lock_ == nullptr);
1136 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
1137
Chao-ying Fu9e369312014-05-21 11:20:52 -07001138 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001139 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +02001140 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001141
Igor Murashkin495e7832017-10-27 10:56:20 -07001142 UPDATE_CURRENT_LOCK_LEVEL(kSubtypeCheckLock);
1143 DCHECK(subtype_check_lock_ == nullptr);
1144 subtype_check_lock_ = new Mutex("SubtypeCheck lock", current_lock_level);
1145
Chao-ying Fu9e369312014-05-21 11:20:52 -07001146 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001147 DCHECK(classlinker_classes_lock_ == nullptr);
1148 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -07001149 current_lock_level);
1150
Andreas Gampe74240812014-04-17 10:35:09 -07001151 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
1152 DCHECK(allocated_monitor_ids_lock_ == nullptr);
1153 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
1154
Chao-ying Fu9e369312014-05-21 11:20:52 -07001155 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
1156 DCHECK(allocated_thread_ids_lock_ == nullptr);
1157 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
1158
Vladimir Marko33bff252017-11-01 14:35:42 +00001159 if (kRuntimeISA == InstructionSet::kX86 || kRuntimeISA == InstructionSet::kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001160 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
1161 DCHECK(modify_ldt_lock_ == nullptr);
1162 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
1163 }
1164
Andreas Gampecc1b5352016-12-01 16:58:38 -08001165 UPDATE_CURRENT_LOCK_LEVEL(kDexLock);
1166 DCHECK(dex_lock_ == nullptr);
1167 dex_lock_ = new ReaderWriterMutex("ClassLinker dex lock", current_lock_level);
1168
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001169 UPDATE_CURRENT_LOCK_LEVEL(kOatFileManagerLock);
1170 DCHECK(oat_file_manager_lock_ == nullptr);
1171 oat_file_manager_lock_ = new ReaderWriterMutex("OatFile manager lock", current_lock_level);
1172
David Brazdilca3c8c32016-09-06 14:04:48 +01001173 UPDATE_CURRENT_LOCK_LEVEL(kVerifierDepsLock);
1174 DCHECK(verifier_deps_lock_ == nullptr);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001175 verifier_deps_lock_ = new ReaderWriterMutex("verifier deps lock", current_lock_level);
David Brazdilca3c8c32016-09-06 14:04:48 +01001176
Richard Uhlera206c742016-05-24 15:04:22 -07001177 UPDATE_CURRENT_LOCK_LEVEL(kHostDlOpenHandlesLock);
1178 DCHECK(host_dlopen_handles_lock_ == nullptr);
1179 host_dlopen_handles_lock_ = new Mutex("host dlopen handles lock", current_lock_level);
Mathieu Chartiere58991b2015-10-13 07:59:34 -07001180
Chao-ying Fu9e369312014-05-21 11:20:52 -07001181 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001182 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001183 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1184
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001185 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1186 DCHECK(reference_processor_lock_ == nullptr);
1187 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1188
1189 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1190 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1191 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1192
1193 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1194 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1195 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1196
1197 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1198 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1199 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1200
1201 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1202 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1203 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1204
1205 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1206 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1207 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1208
Andreas Gampe05a364c2016-10-14 13:27:12 -07001209 UPDATE_CURRENT_LOCK_LEVEL(kJniGlobalsLock);
1210 DCHECK(jni_globals_lock_ == nullptr);
1211 jni_globals_lock_ =
1212 new ReaderWriterMutex("JNI global reference table lock", current_lock_level);
1213
1214 UPDATE_CURRENT_LOCK_LEVEL(kJniWeakGlobalsLock);
1215 DCHECK(jni_weak_globals_lock_ == nullptr);
1216 jni_weak_globals_lock_ = new Mutex("JNI weak global reference table lock", current_lock_level);
1217
Andreas Gampec8089542017-01-16 12:41:12 -08001218 UPDATE_CURRENT_LOCK_LEVEL(kJniFunctionTableLock);
1219 DCHECK(jni_function_table_lock_ == nullptr);
1220 jni_function_table_lock_ = new Mutex("JNI function table lock", current_lock_level);
1221
Alex Light184f0752018-07-13 11:18:22 -07001222 UPDATE_CURRENT_LOCK_LEVEL(kCustomTlsLock);
1223 DCHECK(custom_tls_lock_ == nullptr);
1224 custom_tls_lock_ = new Mutex("Thread::custom_tls_ lock", current_lock_level);
1225
Alex Light33b7b5d2018-08-07 19:13:51 +00001226 UPDATE_CURRENT_LOCK_LEVEL(kCHALock);
1227 DCHECK(cha_lock_ == nullptr);
1228 cha_lock_ = new Mutex("CHA lock", current_lock_level);
1229
David Srbecky440a9b32018-02-15 17:47:29 +00001230 UPDATE_CURRENT_LOCK_LEVEL(kNativeDebugInterfaceLock);
1231 DCHECK(native_debug_interface_lock_ == nullptr);
1232 native_debug_interface_lock_ = new Mutex("Native debug interface lock", current_lock_level);
1233
Chao-ying Fu9e369312014-05-21 11:20:52 -07001234 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1235 DCHECK(abort_lock_ == nullptr);
1236 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1237
1238 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1239 DCHECK(thread_suspend_count_lock_ == nullptr);
1240 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1241
1242 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1243 DCHECK(unexpected_signal_lock_ == nullptr);
1244 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1245
1246 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1247 DCHECK(logging_lock_ == nullptr);
1248 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1249
1250 #undef UPDATE_CURRENT_LOCK_LEVEL
Mathieu Chartier91e56692015-03-03 13:51:04 -08001251
Hiroshi Yamauchia2224042017-02-08 16:35:45 -08001252 // List of mutexes that we may hold when accessing a weak ref.
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -08001253 AddToExpectedMutexesOnWeakRefAccess(dex_lock_, /*need_lock*/ false);
1254 AddToExpectedMutexesOnWeakRefAccess(classlinker_classes_lock_, /*need_lock*/ false);
1255 AddToExpectedMutexesOnWeakRefAccess(jni_libraries_lock_, /*need_lock*/ false);
Hiroshi Yamauchia2224042017-02-08 16:35:45 -08001256
Mathieu Chartier91e56692015-03-03 13:51:04 -08001257 InitConditions();
Ian Rogers719d1a32014-03-06 12:13:39 -08001258 }
1259}
1260
Mathieu Chartier91e56692015-03-03 13:51:04 -08001261void Locks::InitConditions() {
1262 thread_exit_cond_ = new ConditionVariable("thread exit condition variable", *thread_list_lock_);
1263}
Ian Rogers719d1a32014-03-06 12:13:39 -08001264
David Sehrf42eb2c2016-10-19 13:20:45 -07001265void Locks::SetClientCallback(ClientCallback* safe_to_call_abort_cb) {
Orion Hodson88591fe2018-03-06 13:35:43 +00001266 safe_to_call_abort_callback.store(safe_to_call_abort_cb, std::memory_order_release);
David Sehrf42eb2c2016-10-19 13:20:45 -07001267}
1268
1269// Helper to allow checking shutdown while ignoring locking requirements.
1270bool Locks::IsSafeToCallAbortRacy() {
Orion Hodson88591fe2018-03-06 13:35:43 +00001271 Locks::ClientCallback* safe_to_call_abort_cb =
1272 safe_to_call_abort_callback.load(std::memory_order_acquire);
David Sehrf42eb2c2016-10-19 13:20:45 -07001273 return safe_to_call_abort_cb != nullptr && safe_to_call_abort_cb();
1274}
1275
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -08001276void Locks::AddToExpectedMutexesOnWeakRefAccess(BaseMutex* mutex, bool need_lock) {
1277 if (need_lock) {
1278 ScopedExpectedMutexesOnWeakRefAccessLock mu(mutex);
1279 mutex->SetShouldRespondToEmptyCheckpointRequest(true);
1280 expected_mutexes_on_weak_ref_access_.push_back(mutex);
1281 } else {
1282 mutex->SetShouldRespondToEmptyCheckpointRequest(true);
1283 expected_mutexes_on_weak_ref_access_.push_back(mutex);
1284 }
1285}
1286
1287void Locks::RemoveFromExpectedMutexesOnWeakRefAccess(BaseMutex* mutex, bool need_lock) {
1288 if (need_lock) {
1289 ScopedExpectedMutexesOnWeakRefAccessLock mu(mutex);
1290 mutex->SetShouldRespondToEmptyCheckpointRequest(false);
1291 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_;
1292 auto it = std::find(list.begin(), list.end(), mutex);
1293 DCHECK(it != list.end());
1294 list.erase(it);
1295 } else {
1296 mutex->SetShouldRespondToEmptyCheckpointRequest(false);
1297 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_;
1298 auto it = std::find(list.begin(), list.end(), mutex);
1299 DCHECK(it != list.end());
1300 list.erase(it);
1301 }
1302}
1303
1304bool Locks::IsExpectedOnWeakRefAccess(BaseMutex* mutex) {
1305 ScopedExpectedMutexesOnWeakRefAccessLock mu(mutex);
1306 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_;
1307 return std::find(list.begin(), list.end(), mutex) != list.end();
1308}
1309
Elliott Hughese62934d2012-04-09 11:24:29 -07001310} // namespace art