blob: 8a24daacb337de53729db76d6f98e668d6a430f2 [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"
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;
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;
Andreas Gampec8089542017-01-16 12:41:12 -080049Mutex* Locks::jni_function_table_lock_ = nullptr;
Ian Rogers68d8b422014-07-17 11:09:10 -070050Mutex* Locks::jni_libraries_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080051Mutex* Locks::logging_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;
Igor Murashkin495e7832017-10-27 10:56:20 -070066Mutex* Locks::subtype_check_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080067Mutex* Locks::thread_list_lock_ = nullptr;
Mathieu Chartier91e56692015-03-03 13:51:04 -080068ConditionVariable* Locks::thread_exit_cond_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080069Mutex* Locks::thread_suspend_count_lock_ = nullptr;
70Mutex* Locks::trace_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080071Mutex* Locks::unexpected_signal_lock_ = nullptr;
Alex Light88fd7202017-06-30 08:31:59 -070072Mutex* Locks::user_code_suspension_lock_ = nullptr;
Andreas Gampe5bdb6552015-07-22 23:44:55 -070073Uninterruptible Roles::uninterruptible_;
Andreas Gampe05a364c2016-10-14 13:27:12 -070074ReaderWriterMutex* Locks::jni_globals_lock_ = nullptr;
75Mutex* Locks::jni_weak_globals_lock_ = nullptr;
Andreas Gampecc1b5352016-12-01 16:58:38 -080076ReaderWriterMutex* Locks::dex_lock_ = nullptr;
David Srbeckyfb3de3d2018-01-29 16:11:49 +000077Mutex* Locks::native_debug_interface_lock_ = nullptr;
Hiroshi Yamauchia2224042017-02-08 16:35:45 -080078std::vector<BaseMutex*> Locks::expected_mutexes_on_weak_ref_access_;
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -080079Atomic<const BaseMutex*> Locks::expected_mutexes_on_weak_ref_access_guard_;
Ian Rogers719d1a32014-03-06 12:13:39 -080080
81struct AllMutexData {
82 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
83 Atomic<const BaseMutex*> all_mutexes_guard;
84 // All created mutexes guarded by all_mutexes_guard_.
85 std::set<BaseMutex*>* all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070086 AllMutexData() : all_mutexes(nullptr) {}
Ian Rogers719d1a32014-03-06 12:13:39 -080087};
88static struct AllMutexData gAllMutexData[kAllMutexDataSize];
89
Ian Rogersc604d732012-10-14 16:09:54 -070090#if ART_USE_FUTEXES
91static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070092 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070093 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
94 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
95 if (result_ts->tv_nsec < 0) {
96 result_ts->tv_sec--;
97 result_ts->tv_nsec += one_sec;
98 } else if (result_ts->tv_nsec > one_sec) {
99 result_ts->tv_sec++;
100 result_ts->tv_nsec -= one_sec;
101 }
102 return result_ts->tv_sec < 0;
103}
104#endif
105
Hans Boehmae915a02017-12-12 11:05:32 -0800106// Wait for an amount of time that roughly increases in the argument i.
107// Spin for small arguments and yield/sleep for longer ones.
108static void BackOff(uint32_t i) {
109 static constexpr uint32_t kSpinMax = 10;
110 static constexpr uint32_t kYieldMax = 20;
111 if (i <= kSpinMax) {
112 // TODO: Esp. in very latency-sensitive cases, consider replacing this with an explicit
113 // test-and-test-and-set loop in the caller. Possibly skip entirely on a uniprocessor.
114 volatile uint32_t x = 0;
115 const uint32_t spin_count = 10 * i;
116 for (uint32_t spin = 0; spin < spin_count; ++spin) {
117 ++x; // Volatile; hence should not be optimized away.
118 }
119 // TODO: Consider adding x86 PAUSE and/or ARM YIELD here.
120 } else if (i <= kYieldMax) {
121 sched_yield();
122 } else {
123 NanoSleep(1000ull * (i - kYieldMax));
124 }
125}
126
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700127class ScopedAllMutexesLock FINAL {
Ian Rogers56edc432013-01-18 16:51:51 -0800128 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -0700129 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Hans Boehmae915a02017-12-12 11:05:32 -0800130 for (uint32_t i = 0;
Orion Hodson4557b382018-01-03 11:47:54 +0000131 !gAllMutexData->all_mutexes_guard.CompareAndSetWeakAcquire(0, mutex);
Hans Boehmae915a02017-12-12 11:05:32 -0800132 ++i) {
133 BackOff(i);
Ian Rogers56edc432013-01-18 16:51:51 -0800134 }
135 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700136
Ian Rogers56edc432013-01-18 16:51:51 -0800137 ~ScopedAllMutexesLock() {
Hans Boehmae915a02017-12-12 11:05:32 -0800138 DCHECK_EQ(gAllMutexData->all_mutexes_guard.LoadRelaxed(), mutex_);
139 gAllMutexData->all_mutexes_guard.StoreRelease(0);
Ian Rogers56edc432013-01-18 16:51:51 -0800140 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700141
Ian Rogers56edc432013-01-18 16:51:51 -0800142 private:
143 const BaseMutex* const mutex_;
144};
Ian Rogers56edc432013-01-18 16:51:51 -0800145
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -0800146class Locks::ScopedExpectedMutexesOnWeakRefAccessLock FINAL {
147 public:
148 explicit ScopedExpectedMutexesOnWeakRefAccessLock(const BaseMutex* mutex) : mutex_(mutex) {
Hans Boehmae915a02017-12-12 11:05:32 -0800149 for (uint32_t i = 0;
Orion Hodson4557b382018-01-03 11:47:54 +0000150 !Locks::expected_mutexes_on_weak_ref_access_guard_.CompareAndSetWeakAcquire(0, mutex);
Hans Boehmae915a02017-12-12 11:05:32 -0800151 ++i) {
152 BackOff(i);
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -0800153 }
154 }
155
156 ~ScopedExpectedMutexesOnWeakRefAccessLock() {
Hans Boehmae915a02017-12-12 11:05:32 -0800157 DCHECK_EQ(Locks::expected_mutexes_on_weak_ref_access_guard_.LoadRelaxed(), mutex_);
158 Locks::expected_mutexes_on_weak_ref_access_guard_.StoreRelease(0);
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -0800159 }
160
161 private:
162 const BaseMutex* const mutex_;
163};
164
Ian Rogerscf7f1912014-10-22 22:06:39 -0700165// Scoped class that generates events at the beginning and end of lock contention.
166class ScopedContentionRecorder FINAL : public ValueObject {
167 public:
168 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid)
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700169 : mutex_(kLogLockContentions ? mutex : nullptr),
Ian Rogerscf7f1912014-10-22 22:06:39 -0700170 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
171 owner_tid_(kLogLockContentions ? owner_tid : 0),
172 start_nano_time_(kLogLockContentions ? NanoTime() : 0) {
173 if (ATRACE_ENABLED()) {
174 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")",
175 mutex->GetName(), owner_tid);
176 ATRACE_BEGIN(msg.c_str());
177 }
178 }
179
180 ~ScopedContentionRecorder() {
181 ATRACE_END();
182 if (kLogLockContentions) {
183 uint64_t end_nano_time = NanoTime();
184 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
185 }
186 }
187
188 private:
189 BaseMutex* const mutex_;
190 const uint64_t blocked_tid_;
191 const uint64_t owner_tid_;
192 const uint64_t start_nano_time_;
193};
194
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800195BaseMutex::BaseMutex(const char* name, LockLevel level)
196 : level_(level),
197 name_(name),
198 should_respond_to_empty_checkpoint_request_(false) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700199 if (kLogLockContentions) {
200 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700201 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700202 if (*all_mutexes_ptr == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700203 // We leak the global set of all mutexes to avoid ordering issues in global variable
204 // construction/destruction.
205 *all_mutexes_ptr = new std::set<BaseMutex*>();
206 }
207 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800208 }
Ian Rogers56edc432013-01-18 16:51:51 -0800209}
210
211BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700212 if (kLogLockContentions) {
213 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700214 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700215 }
Ian Rogers56edc432013-01-18 16:51:51 -0800216}
217
218void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700219 if (kLogLockContentions) {
220 os << "Mutex logging:\n";
221 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700222 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700223 if (all_mutexes == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700224 // No mutexes have been created yet during at startup.
225 return;
226 }
227 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700228 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700229 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
230 BaseMutex* mutex = *it;
231 if (mutex->HasEverContended()) {
232 mutex->Dump(os);
233 os << "\n";
234 }
235 }
236 os << "(Never contented)\n";
237 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
238 BaseMutex* mutex = *it;
239 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.
Ian Rogers37f3c962014-07-17 11:25:30 -0700296 wait_time.FetchAndAddSequentiallyConsistent(value);
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.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700309 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
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 {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700316 slot = data->cur_content_log_entry.LoadRelaxed();
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;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700321 log[new_slot].count.StoreRelaxed(1);
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;
Ian Rogers37f3c962014-07-17 11:25:30 -0700330 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700331 uint32_t contention_count = data->contention_count.LoadRelaxed();
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;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700343 uint32_t count = log[i].count.LoadRelaxed();
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)
Hans Boehm0882af22017-08-31 15:21:57 -0700387 : BaseMutex(name, level), exclusive_owner_(0), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700388#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700389 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700390 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
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
Ian Rogersc7190692014-07-08 23:50:26 -0700405 if (state_.LoadRelaxed() != 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 }
413 if (num_contenders_.LoadSequentiallyConsistent() != 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 {
Ian Rogersc7190692014-07-08 23:50:26 -0700439 int32_t cur_state = state_.LoadRelaxed();
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);
Ian Rogersc7190692014-07-08 23:50:26 -0700460 DCHECK_EQ(state_.LoadRelaxed(), 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);
465 exclusive_owner_.StoreRelaxed(SafeGetTid(self));
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 {
Ian Rogersc7190692014-07-08 23:50:26 -0700485 int32_t cur_state = state_.LoadRelaxed();
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);
Ian Rogersc7190692014-07-08 23:50:26 -0700493 DCHECK_EQ(state_.LoadRelaxed(), 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);
505 exclusive_owner_.StoreRelaxed(SafeGetTid(self));
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 {
Ian Rogersc7190692014-07-08 23:50:26 -0700542 int32_t cur_state = state_.LoadRelaxed();
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.
Hans Boehm0882af22017-08-31 15:21:57 -0700545 exclusive_owner_.StoreRelaxed(0);
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.
Ian Rogersc5f17732014-06-05 20:48:42 -0700553 if (UNLIKELY(num_contenders_.LoadRelaxed() > 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
Hans Boehm0882af22017-08-31 15:21:57 -0700572 exclusive_owner_.StoreRelaxed(0);
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_);
596 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
597 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
Hans Boehm0882af22017-08-31 15:21:57 -0700613 exclusive_owner_.StoreRelaxed(0);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700614}
615
616ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700617#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700618 CHECK_EQ(state_.LoadRelaxed(), 0);
Hans Boehm0882af22017-08-31 15:21:57 -0700619 CHECK_EQ(GetExclusiveOwnerTid(), 0);
Ian Rogersc7190692014-07-08 23:50:26 -0700620 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700621 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 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 {
Ian Rogersc7190692014-07-08 23:50:26 -0700640 int32_t cur_state = state_.LoadRelaxed();
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);
Ian Rogersc7190692014-07-08 23:50:26 -0700661 DCHECK_EQ(state_.LoadRelaxed(), -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);
666 exclusive_owner_.StoreRelaxed(SafeGetTid(self));
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 {
Ian Rogersc7190692014-07-08 23:50:26 -0700679 int32_t cur_state = state_.LoadRelaxed();
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.
Hans Boehm0882af22017-08-31 15:21:57 -0700682 exclusive_owner_.StoreRelaxed(0);
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.
Ian Rogersc7190692014-07-08 23:50:26 -0700690 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
691 num_pending_writers_.LoadRelaxed() > 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
Hans Boehm0882af22017-08-31 15:21:57 -0700700 exclusive_owner_.StoreRelaxed(0);
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 {
Ian Rogersc7190692014-07-08 23:50:26 -0700713 int32_t cur_state = state_.LoadRelaxed();
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
Hans Boehm0882af22017-08-31 15:21:57 -0700756 exclusive_owner_.StoreRelaxed(SafeGetTid(self));
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.
766 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
767 ++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 {
Ian Rogersc7190692014-07-08 23:50:26 -0700785 int32_t cur_state = state_.LoadRelaxed();
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
825 << " state=" << state_.LoadSequentiallyConsistent()
826 << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent()
827 << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent()
828#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_);
847 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
848 num_pending_writers_.LoadRelaxed() > 0)) {
849 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
Ian Rogers3e5cf302014-05-20 16:40:37 -0700859 DCHECK_EQ(0, sequence_.LoadRelaxed());
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 {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700902 int32_t cur_sequence = sequence_.LoadRelaxed();
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;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700951 int32_t cur_sequence = sequence_.LoadRelaxed();
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.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700977 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 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();
Hans Boehm04bb35a2017-09-19 11:01:40 -0700981 guard_.exclusive_owner_.StoreRelaxed(0);
Ian Rogersc604d732012-10-14 16:09:54 -0700982 guard_.recursion_count_ = 0;
983 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Hans Boehm0882af22017-08-31 15:21:57 -0700984 guard_.exclusive_owner_.StoreRelaxed(old_owner);
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;
Ian Rogers3e5cf302014-05-20 16:40:37 -07001002 int32_t cur_sequence = sequence_.LoadRelaxed();
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.
Ian Rogers3e5cf302014-05-20 16:40:37 -07001018 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 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();
1027 guard_.exclusive_owner_.StoreRelaxed(0);
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);
Narayan Kamath51b71022014-03-04 11:57:09 +00001031 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -07001032 if (rc == ETIMEDOUT) {
1033 timed_out = true;
1034 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -07001035 errno = rc;
1036 PLOG(FATAL) << "TimedWait failed for " << name_;
1037 }
Hans Boehm0882af22017-08-31 15:21:57 -07001038 guard_.exclusive_owner_.StoreRelaxed(old_owner);
Ian Rogersc604d732012-10-14 16:09:54 -07001039#endif
1040 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -07001041 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -07001042}
1043
Ian Rogers719d1a32014-03-06 12:13:39 -08001044void Locks::Init() {
1045 if (logging_lock_ != nullptr) {
1046 // Already initialized.
Vladimir Marko33bff252017-11-01 14:35:42 +00001047 if (kRuntimeISA == InstructionSet::kX86 || kRuntimeISA == InstructionSet::kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001048 DCHECK(modify_ldt_lock_ != nullptr);
1049 } else {
1050 DCHECK(modify_ldt_lock_ == nullptr);
1051 }
Ian Rogers719d1a32014-03-06 12:13:39 -08001052 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001053 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -07001054 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001055 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001056 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001057 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001058 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001059 DCHECK(heap_bitmap_lock_ != nullptr);
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001060 DCHECK(oat_file_manager_lock_ != nullptr);
David Brazdilca3c8c32016-09-06 14:04:48 +01001061 DCHECK(verifier_deps_lock_ != nullptr);
Richard Uhlera206c742016-05-24 15:04:22 -07001062 DCHECK(host_dlopen_handles_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001063 DCHECK(intern_table_lock_ != nullptr);
Andreas Gampec8089542017-01-16 12:41:12 -08001064 DCHECK(jni_function_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -07001065 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001066 DCHECK(logging_lock_ != nullptr);
1067 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001068 DCHECK(profiler_lock_ != nullptr);
Mingyao Yang063fc772016-08-02 11:02:54 -07001069 DCHECK(cha_lock_ != nullptr);
Igor Murashkin495e7832017-10-27 10:56:20 -07001070 DCHECK(subtype_check_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001071 DCHECK(thread_list_lock_ != nullptr);
1072 DCHECK(thread_suspend_count_lock_ != nullptr);
1073 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001074 DCHECK(unexpected_signal_lock_ != nullptr);
Alex Light88fd7202017-06-30 08:31:59 -07001075 DCHECK(user_code_suspension_lock_ != nullptr);
Andreas Gampecc1b5352016-12-01 16:58:38 -08001076 DCHECK(dex_lock_ != nullptr);
David Srbeckyfb3de3d2018-01-29 16:11:49 +00001077 DCHECK(native_debug_interface_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001078 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001079 // Create global locks in level order from highest lock level to lowest.
Ian Rogers4ad5cd32014-11-11 23:08:07 -08001080 LockLevel current_lock_level = kInstrumentEntrypointsLock;
1081 DCHECK(instrument_entrypoints_lock_ == nullptr);
1082 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -08001083
Chao-ying Fu9e369312014-05-21 11:20:52 -07001084 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Chih-Hung Hsiehfba39972016-05-11 11:26:48 -07001085 if ((new_level) >= current_lock_level) { \
Brian Carlstrom306db812014-09-05 13:01:41 -07001086 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
1087 fprintf(stderr, "New local level %d is not less than current level %d\n", \
1088 new_level, current_lock_level); \
1089 exit(1); \
1090 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -07001091 current_lock_level = new_level;
1092
Alex Light88fd7202017-06-30 08:31:59 -07001093 UPDATE_CURRENT_LOCK_LEVEL(kUserCodeSuspensionLock);
1094 DCHECK(user_code_suspension_lock_ == nullptr);
1095 user_code_suspension_lock_ = new Mutex("user code suspension lock", current_lock_level);
1096
Ian Rogersf3d874c2014-07-17 18:52:42 -07001097 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
1098 DCHECK(mutator_lock_ == nullptr);
Yu Lieac44242015-06-29 10:50:03 +08001099 mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001100
1101 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
1102 DCHECK(heap_bitmap_lock_ == nullptr);
1103 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
1104
Jeff Hao69dbec62014-09-15 18:03:41 -07001105 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
1106 DCHECK(trace_lock_ == nullptr);
1107 trace_lock_ = new Mutex("trace lock", current_lock_level);
1108
Chao-ying Fu9e369312014-05-21 11:20:52 -07001109 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
1110 DCHECK(runtime_shutdown_lock_ == nullptr);
1111 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
1112
1113 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
1114 DCHECK(profiler_lock_ == nullptr);
1115 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
1116
Brian Carlstrom306db812014-09-05 13:01:41 -07001117 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
1118 DCHECK(deoptimization_lock_ == nullptr);
1119 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
1120
1121 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
1122 DCHECK(alloc_tracker_lock_ == nullptr);
1123 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
1124
Chao-ying Fu9e369312014-05-21 11:20:52 -07001125 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
1126 DCHECK(thread_list_lock_ == nullptr);
1127 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
1128
Ian Rogers68d8b422014-07-17 11:09:10 -07001129 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
1130 DCHECK(jni_libraries_lock_ == nullptr);
1131 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
1132
Chao-ying Fu9e369312014-05-21 11:20:52 -07001133 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001134 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +02001135 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001136
Igor Murashkin495e7832017-10-27 10:56:20 -07001137 UPDATE_CURRENT_LOCK_LEVEL(kSubtypeCheckLock);
1138 DCHECK(subtype_check_lock_ == nullptr);
1139 subtype_check_lock_ = new Mutex("SubtypeCheck lock", current_lock_level);
1140
Mingyao Yang063fc772016-08-02 11:02:54 -07001141 UPDATE_CURRENT_LOCK_LEVEL(kCHALock);
1142 DCHECK(cha_lock_ == nullptr);
1143 cha_lock_ = new Mutex("CHA lock", current_lock_level);
1144
Chao-ying Fu9e369312014-05-21 11:20:52 -07001145 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001146 DCHECK(classlinker_classes_lock_ == nullptr);
1147 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -07001148 current_lock_level);
1149
Andreas Gampe74240812014-04-17 10:35:09 -07001150 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
1151 DCHECK(allocated_monitor_ids_lock_ == nullptr);
1152 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
1153
Chao-ying Fu9e369312014-05-21 11:20:52 -07001154 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
1155 DCHECK(allocated_thread_ids_lock_ == nullptr);
1156 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
1157
Vladimir Marko33bff252017-11-01 14:35:42 +00001158 if (kRuntimeISA == InstructionSet::kX86 || kRuntimeISA == InstructionSet::kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001159 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
1160 DCHECK(modify_ldt_lock_ == nullptr);
1161 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
1162 }
1163
Andreas Gampecc1b5352016-12-01 16:58:38 -08001164 UPDATE_CURRENT_LOCK_LEVEL(kDexLock);
1165 DCHECK(dex_lock_ == nullptr);
1166 dex_lock_ = new ReaderWriterMutex("ClassLinker dex lock", current_lock_level);
1167
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001168 UPDATE_CURRENT_LOCK_LEVEL(kOatFileManagerLock);
1169 DCHECK(oat_file_manager_lock_ == nullptr);
1170 oat_file_manager_lock_ = new ReaderWriterMutex("OatFile manager lock", current_lock_level);
1171
David Brazdilca3c8c32016-09-06 14:04:48 +01001172 UPDATE_CURRENT_LOCK_LEVEL(kVerifierDepsLock);
1173 DCHECK(verifier_deps_lock_ == nullptr);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001174 verifier_deps_lock_ = new ReaderWriterMutex("verifier deps lock", current_lock_level);
David Brazdilca3c8c32016-09-06 14:04:48 +01001175
Richard Uhlera206c742016-05-24 15:04:22 -07001176 UPDATE_CURRENT_LOCK_LEVEL(kHostDlOpenHandlesLock);
1177 DCHECK(host_dlopen_handles_lock_ == nullptr);
1178 host_dlopen_handles_lock_ = new Mutex("host dlopen handles lock", current_lock_level);
Mathieu Chartiere58991b2015-10-13 07:59:34 -07001179
Chao-ying Fu9e369312014-05-21 11:20:52 -07001180 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001181 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001182 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1183
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001184 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1185 DCHECK(reference_processor_lock_ == nullptr);
1186 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1187
1188 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1189 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1190 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1191
1192 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1193 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1194 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1195
1196 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1197 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1198 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1199
1200 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1201 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1202 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1203
1204 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1205 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1206 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1207
Andreas Gampe05a364c2016-10-14 13:27:12 -07001208 UPDATE_CURRENT_LOCK_LEVEL(kJniGlobalsLock);
1209 DCHECK(jni_globals_lock_ == nullptr);
1210 jni_globals_lock_ =
1211 new ReaderWriterMutex("JNI global reference table lock", current_lock_level);
1212
1213 UPDATE_CURRENT_LOCK_LEVEL(kJniWeakGlobalsLock);
1214 DCHECK(jni_weak_globals_lock_ == nullptr);
1215 jni_weak_globals_lock_ = new Mutex("JNI weak global reference table lock", current_lock_level);
1216
Andreas Gampec8089542017-01-16 12:41:12 -08001217 UPDATE_CURRENT_LOCK_LEVEL(kJniFunctionTableLock);
1218 DCHECK(jni_function_table_lock_ == nullptr);
1219 jni_function_table_lock_ = new Mutex("JNI function table lock", current_lock_level);
1220
David Srbecky440a9b32018-02-15 17:47:29 +00001221 UPDATE_CURRENT_LOCK_LEVEL(kNativeDebugInterfaceLock);
1222 DCHECK(native_debug_interface_lock_ == nullptr);
1223 native_debug_interface_lock_ = new Mutex("Native debug interface lock", current_lock_level);
1224
Chao-ying Fu9e369312014-05-21 11:20:52 -07001225 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1226 DCHECK(abort_lock_ == nullptr);
1227 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1228
1229 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1230 DCHECK(thread_suspend_count_lock_ == nullptr);
1231 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1232
1233 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1234 DCHECK(unexpected_signal_lock_ == nullptr);
1235 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1236
1237 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1238 DCHECK(logging_lock_ == nullptr);
1239 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1240
1241 #undef UPDATE_CURRENT_LOCK_LEVEL
Mathieu Chartier91e56692015-03-03 13:51:04 -08001242
Hiroshi Yamauchia2224042017-02-08 16:35:45 -08001243 // List of mutexes that we may hold when accessing a weak ref.
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -08001244 AddToExpectedMutexesOnWeakRefAccess(dex_lock_, /*need_lock*/ false);
1245 AddToExpectedMutexesOnWeakRefAccess(classlinker_classes_lock_, /*need_lock*/ false);
1246 AddToExpectedMutexesOnWeakRefAccess(jni_libraries_lock_, /*need_lock*/ false);
Hiroshi Yamauchia2224042017-02-08 16:35:45 -08001247
Mathieu Chartier91e56692015-03-03 13:51:04 -08001248 InitConditions();
Ian Rogers719d1a32014-03-06 12:13:39 -08001249 }
1250}
1251
Mathieu Chartier91e56692015-03-03 13:51:04 -08001252void Locks::InitConditions() {
1253 thread_exit_cond_ = new ConditionVariable("thread exit condition variable", *thread_list_lock_);
1254}
Ian Rogers719d1a32014-03-06 12:13:39 -08001255
David Sehrf42eb2c2016-10-19 13:20:45 -07001256void Locks::SetClientCallback(ClientCallback* safe_to_call_abort_cb) {
1257 safe_to_call_abort_callback.StoreRelease(safe_to_call_abort_cb);
1258}
1259
1260// Helper to allow checking shutdown while ignoring locking requirements.
1261bool Locks::IsSafeToCallAbortRacy() {
1262 Locks::ClientCallback* safe_to_call_abort_cb = safe_to_call_abort_callback.LoadAcquire();
1263 return safe_to_call_abort_cb != nullptr && safe_to_call_abort_cb();
1264}
1265
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -08001266void Locks::AddToExpectedMutexesOnWeakRefAccess(BaseMutex* mutex, bool need_lock) {
1267 if (need_lock) {
1268 ScopedExpectedMutexesOnWeakRefAccessLock mu(mutex);
1269 mutex->SetShouldRespondToEmptyCheckpointRequest(true);
1270 expected_mutexes_on_weak_ref_access_.push_back(mutex);
1271 } else {
1272 mutex->SetShouldRespondToEmptyCheckpointRequest(true);
1273 expected_mutexes_on_weak_ref_access_.push_back(mutex);
1274 }
1275}
1276
1277void Locks::RemoveFromExpectedMutexesOnWeakRefAccess(BaseMutex* mutex, bool need_lock) {
1278 if (need_lock) {
1279 ScopedExpectedMutexesOnWeakRefAccessLock mu(mutex);
1280 mutex->SetShouldRespondToEmptyCheckpointRequest(false);
1281 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_;
1282 auto it = std::find(list.begin(), list.end(), mutex);
1283 DCHECK(it != list.end());
1284 list.erase(it);
1285 } else {
1286 mutex->SetShouldRespondToEmptyCheckpointRequest(false);
1287 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_;
1288 auto it = std::find(list.begin(), list.end(), mutex);
1289 DCHECK(it != list.end());
1290 list.erase(it);
1291 }
1292}
1293
1294bool Locks::IsExpectedOnWeakRefAccess(BaseMutex* mutex) {
1295 ScopedExpectedMutexesOnWeakRefAccessLock mu(mutex);
1296 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_;
1297 return std::find(list.begin(), list.end(), mutex) != list.end();
1298}
1299
Elliott Hughese62934d2012-04-09 11:24:29 -07001300} // namespace art