blob: abd5166b9cfb8891ff9a5891960b7cd9a22bf30d [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;
Hiroshi Yamauchia2224042017-02-08 16:35:45 -080077std::vector<BaseMutex*> Locks::expected_mutexes_on_weak_ref_access_;
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -080078Atomic<const BaseMutex*> Locks::expected_mutexes_on_weak_ref_access_guard_;
Ian Rogers719d1a32014-03-06 12:13:39 -080079
80struct AllMutexData {
81 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
82 Atomic<const BaseMutex*> all_mutexes_guard;
83 // All created mutexes guarded by all_mutexes_guard_.
84 std::set<BaseMutex*>* all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070085 AllMutexData() : all_mutexes(nullptr) {}
Ian Rogers719d1a32014-03-06 12:13:39 -080086};
87static struct AllMutexData gAllMutexData[kAllMutexDataSize];
88
Ian Rogersc604d732012-10-14 16:09:54 -070089#if ART_USE_FUTEXES
90static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070091 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070092 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
93 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
94 if (result_ts->tv_nsec < 0) {
95 result_ts->tv_sec--;
96 result_ts->tv_nsec += one_sec;
97 } else if (result_ts->tv_nsec > one_sec) {
98 result_ts->tv_sec++;
99 result_ts->tv_nsec -= one_sec;
100 }
101 return result_ts->tv_sec < 0;
102}
103#endif
104
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700105class ScopedAllMutexesLock FINAL {
Ian Rogers56edc432013-01-18 16:51:51 -0800106 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -0700107 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700108 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -0800109 NanoSleep(100);
110 }
111 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700112
Ian Rogers56edc432013-01-18 16:51:51 -0800113 ~ScopedAllMutexesLock() {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700114 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers56edc432013-01-18 16:51:51 -0800115 NanoSleep(100);
116 }
117 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700118
Ian Rogers56edc432013-01-18 16:51:51 -0800119 private:
120 const BaseMutex* const mutex_;
121};
Ian Rogers56edc432013-01-18 16:51:51 -0800122
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -0800123class Locks::ScopedExpectedMutexesOnWeakRefAccessLock FINAL {
124 public:
125 explicit ScopedExpectedMutexesOnWeakRefAccessLock(const BaseMutex* mutex) : mutex_(mutex) {
126 while (!Locks::expected_mutexes_on_weak_ref_access_guard_.CompareExchangeWeakAcquire(0,
127 mutex)) {
128 NanoSleep(100);
129 }
130 }
131
132 ~ScopedExpectedMutexesOnWeakRefAccessLock() {
133 while (!Locks::expected_mutexes_on_weak_ref_access_guard_.CompareExchangeWeakRelease(mutex_,
134 0)) {
135 NanoSleep(100);
136 }
137 }
138
139 private:
140 const BaseMutex* const mutex_;
141};
142
Ian Rogerscf7f1912014-10-22 22:06:39 -0700143// Scoped class that generates events at the beginning and end of lock contention.
144class ScopedContentionRecorder FINAL : public ValueObject {
145 public:
146 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid)
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700147 : mutex_(kLogLockContentions ? mutex : nullptr),
Ian Rogerscf7f1912014-10-22 22:06:39 -0700148 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
149 owner_tid_(kLogLockContentions ? owner_tid : 0),
150 start_nano_time_(kLogLockContentions ? NanoTime() : 0) {
151 if (ATRACE_ENABLED()) {
152 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")",
153 mutex->GetName(), owner_tid);
154 ATRACE_BEGIN(msg.c_str());
155 }
156 }
157
158 ~ScopedContentionRecorder() {
159 ATRACE_END();
160 if (kLogLockContentions) {
161 uint64_t end_nano_time = NanoTime();
162 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
163 }
164 }
165
166 private:
167 BaseMutex* const mutex_;
168 const uint64_t blocked_tid_;
169 const uint64_t owner_tid_;
170 const uint64_t start_nano_time_;
171};
172
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800173BaseMutex::BaseMutex(const char* name, LockLevel level)
174 : level_(level),
175 name_(name),
176 should_respond_to_empty_checkpoint_request_(false) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700177 if (kLogLockContentions) {
178 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700179 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700180 if (*all_mutexes_ptr == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700181 // We leak the global set of all mutexes to avoid ordering issues in global variable
182 // construction/destruction.
183 *all_mutexes_ptr = new std::set<BaseMutex*>();
184 }
185 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800186 }
Ian Rogers56edc432013-01-18 16:51:51 -0800187}
188
189BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700190 if (kLogLockContentions) {
191 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700192 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700193 }
Ian Rogers56edc432013-01-18 16:51:51 -0800194}
195
196void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700197 if (kLogLockContentions) {
198 os << "Mutex logging:\n";
199 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700200 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700201 if (all_mutexes == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700202 // No mutexes have been created yet during at startup.
203 return;
204 }
205 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700206 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700207 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
208 BaseMutex* mutex = *it;
209 if (mutex->HasEverContended()) {
210 mutex->Dump(os);
211 os << "\n";
212 }
213 }
214 os << "(Never contented)\n";
215 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
216 BaseMutex* mutex = *it;
217 if (!mutex->HasEverContended()) {
218 mutex->Dump(os);
219 os << "\n";
220 }
221 }
Ian Rogers56edc432013-01-18 16:51:51 -0800222 }
Ian Rogers56edc432013-01-18 16:51:51 -0800223}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700224
Ian Rogers81d425b2012-09-27 16:03:43 -0700225void BaseMutex::CheckSafeToWait(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700226 if (self == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700227 CheckUnattachedThread(level_);
228 return;
229 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700230 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700231 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
232 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700233 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800234 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700235 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700236 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Alex Light79400aa2017-07-18 15:34:21 -0700237 // We allow the thread to wait even if the user_code_suspension_lock_ is held so long as we
238 // are some thread's resume_cond_ (level_ == kThreadSuspendCountLock). This just means that
239 // gc or some other internal process is suspending the thread while it is trying to suspend
240 // some other thread. So long as the current thread is not being suspended by a
241 // SuspendReason::kForUserCode (which needs the user_code_suspension_lock_ to clear) this is
242 // fine.
243 if (held_mutex == Locks::user_code_suspension_lock_ && level_ == kThreadSuspendCountLock) {
244 // No thread safety analysis is fine since we have both the user_code_suspension_lock_
245 // from the line above and the ThreadSuspendCountLock since it is our level_. We use this
246 // lambda to avoid having to annotate the whole function as NO_THREAD_SAFETY_ANALYSIS.
247 auto is_suspending_for_user_code = [self]() NO_THREAD_SAFETY_ANALYSIS {
248 return self->GetUserCodeSuspendCount() != 0;
249 };
250 if (is_suspending_for_user_code()) {
251 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
252 << "(level " << LockLevel(i) << ") while performing wait on "
253 << "\"" << name_ << "\" (level " << level_ << ") "
254 << "with SuspendReason::kForUserCode pending suspensions";
255 bad_mutexes_held = true;
256 }
257 } else if (held_mutex != nullptr) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800258 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
259 << "(level " << LockLevel(i) << ") while performing wait on "
260 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700261 bad_mutexes_held = true;
262 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700263 }
264 }
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000265 if (gAborting == 0) { // Avoid recursive aborts.
Alex Light79400aa2017-07-18 15:34:21 -0700266 CHECK(!bad_mutexes_held) << this;
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000267 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700268 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700269}
270
Ian Rogers37f3c962014-07-17 11:25:30 -0700271void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700272 if (kLogLockContentions) {
273 // Atomically add value to wait_time.
Ian Rogers37f3c962014-07-17 11:25:30 -0700274 wait_time.FetchAndAddSequentiallyConsistent(value);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700275 }
276}
277
Brian Carlstrom0de79852013-07-25 22:29:58 -0700278void BaseMutex::RecordContention(uint64_t blocked_tid,
279 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700280 uint64_t nano_time_blocked) {
281 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700282 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700283 ++(data->contention_count);
284 data->AddToWaitTime(nano_time_blocked);
285 ContentionLogEntry* log = data->contention_log;
286 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700287 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700288 if (log[slot].blocked_tid == blocked_tid &&
289 log[slot].owner_tid == blocked_tid) {
290 ++log[slot].count;
291 } else {
292 uint32_t new_slot;
293 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700294 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700295 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700296 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700297 log[new_slot].blocked_tid = blocked_tid;
298 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700299 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700300 }
Ian Rogers56edc432013-01-18 16:51:51 -0800301 }
Ian Rogers56edc432013-01-18 16:51:51 -0800302}
303
Ian Rogers56edc432013-01-18 16:51:51 -0800304void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700305 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700306 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700307 const ContentionLogEntry* log = data->contention_log;
Ian Rogers37f3c962014-07-17 11:25:30 -0700308 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700309 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700310 if (contention_count == 0) {
311 os << "never contended";
312 } else {
313 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700314 << " total wait of contender " << PrettyDuration(wait_time)
315 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700316 SafeMap<uint64_t, size_t> most_common_blocker;
317 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700318 for (size_t i = 0; i < kContentionLogSize; ++i) {
319 uint64_t blocked_tid = log[i].blocked_tid;
320 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700321 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700322 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700323 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700324 if (it != most_common_blocked.end()) {
325 most_common_blocked.Overwrite(blocked_tid, it->second + count);
326 } else {
327 most_common_blocked.Put(blocked_tid, count);
328 }
329 it = most_common_blocker.find(owner_tid);
330 if (it != most_common_blocker.end()) {
331 most_common_blocker.Overwrite(owner_tid, it->second + count);
332 } else {
333 most_common_blocker.Put(owner_tid, count);
334 }
Ian Rogers56edc432013-01-18 16:51:51 -0800335 }
336 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700337 uint64_t max_tid = 0;
338 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700339 for (const auto& pair : most_common_blocked) {
340 if (pair.second > max_tid_count) {
341 max_tid = pair.first;
342 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700343 }
Ian Rogers56edc432013-01-18 16:51:51 -0800344 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700345 if (max_tid != 0) {
346 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800347 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700348 max_tid = 0;
349 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700350 for (const auto& pair : most_common_blocker) {
351 if (pair.second > max_tid_count) {
352 max_tid = pair.first;
353 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700354 }
355 }
356 if (max_tid != 0) {
357 os << " sample shows tid=" << max_tid << " owning during this time";
358 }
Ian Rogers56edc432013-01-18 16:51:51 -0800359 }
360 }
Ian Rogers56edc432013-01-18 16:51:51 -0800361}
362
363
Ian Rogers81d425b2012-09-27 16:03:43 -0700364Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Hans Boehm0882af22017-08-31 15:21:57 -0700365 : BaseMutex(name, level), exclusive_owner_(0), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700366#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700367 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700368 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700369#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700370 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700371#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700372}
373
David Sehrf42eb2c2016-10-19 13:20:45 -0700374// Helper to allow checking shutdown while locking for thread safety.
375static bool IsSafeToCallAbortSafe() {
376 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
377 return Locks::IsSafeToCallAbortRacy();
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800378}
379
Elliott Hughes8daa0922011-09-11 13:46:25 -0700380Mutex::~Mutex() {
David Sehrf42eb2c2016-10-19 13:20:45 -0700381 bool safe_to_call_abort = Locks::IsSafeToCallAbortRacy();
Ian Rogersc604d732012-10-14 16:09:54 -0700382#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700383 if (state_.LoadRelaxed() != 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700384 LOG(safe_to_call_abort ? FATAL : WARNING)
Hans Boehm0882af22017-08-31 15:21:57 -0700385 << "destroying mutex with owner: " << GetExclusiveOwnerTid();
Ian Rogersc604d732012-10-14 16:09:54 -0700386 } else {
Hans Boehm0882af22017-08-31 15:21:57 -0700387 if (GetExclusiveOwnerTid() != 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700388 LOG(safe_to_call_abort ? FATAL : WARNING)
389 << "unexpectedly found an owner on unlocked mutex " << name_;
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800390 }
391 if (num_contenders_.LoadSequentiallyConsistent() != 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700392 LOG(safe_to_call_abort ? FATAL : WARNING)
393 << "unexpectedly found a contender on mutex " << name_;
Mathieu Chartiercef50f02014-12-09 17:38:52 -0800394 }
Ian Rogersc604d732012-10-14 16:09:54 -0700395 }
396#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700397 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
398 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800399 int rc = pthread_mutex_destroy(&mutex_);
400 if (rc != 0) {
401 errno = rc;
David Sehrf42eb2c2016-10-19 13:20:45 -0700402 PLOG(safe_to_call_abort ? FATAL : WARNING)
403 << "pthread_mutex_destroy failed for " << name_;
Elliott Hughes6b355752012-01-13 16:49:08 -0800404 }
Ian Rogersc604d732012-10-14 16:09:54 -0700405#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700406}
407
Ian Rogers81d425b2012-09-27 16:03:43 -0700408void Mutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700409 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700410 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700411 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700412 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700413 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700414#if ART_USE_FUTEXES
415 bool done = false;
416 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700417 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700418 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700419 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
420 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700421 } else {
422 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700423 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800424 num_contenders_++;
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800425 if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) {
426 self->CheckEmptyCheckpointFromMutex();
427 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700428 if (futex(state_.Address(), FUTEX_WAIT, 1, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700429 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
430 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
431 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700432 PLOG(FATAL) << "futex wait failed for " << name_;
433 }
434 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800435 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700436 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700437 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700438 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700439#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700440 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700441#endif
Hans Boehm0882af22017-08-31 15:21:57 -0700442 DCHECK_EQ(GetExclusiveOwnerTid(), 0);
443 exclusive_owner_.StoreRelaxed(SafeGetTid(self));
Ian Rogers81d425b2012-09-27 16:03:43 -0700444 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700445 }
446 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700447 if (kDebugLocking) {
448 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
449 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700450 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700451 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700452}
453
Ian Rogers81d425b2012-09-27 16:03:43 -0700454bool Mutex::ExclusiveTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700455 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700456 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700457 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700458 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700459 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700460#if ART_USE_FUTEXES
461 bool done = false;
462 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700463 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700464 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700465 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
466 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700467 } else {
468 return false;
469 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700470 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700471 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700472#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700473 int result = pthread_mutex_trylock(&mutex_);
474 if (result == EBUSY) {
475 return false;
476 }
477 if (result != 0) {
478 errno = result;
479 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
480 }
Ian Rogersc604d732012-10-14 16:09:54 -0700481#endif
Hans Boehm0882af22017-08-31 15:21:57 -0700482 DCHECK_EQ(GetExclusiveOwnerTid(), 0);
483 exclusive_owner_.StoreRelaxed(SafeGetTid(self));
Ian Rogers81d425b2012-09-27 16:03:43 -0700484 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700485 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700486 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700487 if (kDebugLocking) {
488 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
489 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700490 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700491 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700492 return true;
493}
494
Ian Rogers81d425b2012-09-27 16:03:43 -0700495void Mutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800496 if (kIsDebugBuild && self != nullptr && self != Thread::Current()) {
497 std::string name1 = "<null>";
498 std::string name2 = "<null>";
499 if (self != nullptr) {
500 self->GetThreadName(name1);
501 }
502 if (Thread::Current() != nullptr) {
503 Thread::Current()->GetThreadName(name2);
504 }
Mathieu Chartier4c101102015-01-27 17:14:16 -0800505 LOG(FATAL) << GetName() << " level=" << level_ << " self=" << name1
506 << " Thread::Current()=" << name2;
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800507 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700508 AssertHeld(self);
Hans Boehm0882af22017-08-31 15:21:57 -0700509 DCHECK_NE(GetExclusiveOwnerTid(), 0);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700510 recursion_count_--;
511 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700512 if (kDebugLocking) {
513 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
514 << name_ << " " << recursion_count_;
515 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700516 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700517#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700518 bool done = false;
519 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700520 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700521 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700522 // We're no longer the owner.
Hans Boehm0882af22017-08-31 15:21:57 -0700523 exclusive_owner_.StoreRelaxed(0);
Ian Rogersc7190692014-07-08 23:50:26 -0700524 // Change state to 0 and impose load/store ordering appropriate for lock release.
Hans Boehm0882af22017-08-31 15:21:57 -0700525 // Note, the relaxed loads below mustn't reorder before the CompareExchange.
Ian Rogersc7190692014-07-08 23:50:26 -0700526 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
527 // a status bit into the state on contention.
528 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700529 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700530 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700531 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700532 futex(state_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700533 }
534 }
535 } else {
536 // Logging acquires the logging lock, avoid infinite recursion in that case.
537 if (this != Locks::logging_lock_) {
538 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
539 } else {
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700540 LogHelper::LogLineLowStack(__FILE__,
541 __LINE__,
542 ::android::base::FATAL_WITHOUT_ABORT,
543 StringPrintf("Unexpected state_ %d in unlock for %s",
544 cur_state, name_).c_str());
Ian Rogersc5f17732014-06-05 20:48:42 -0700545 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700546 }
547 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700548 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700549#else
Hans Boehm0882af22017-08-31 15:21:57 -0700550 exclusive_owner_.StoreRelaxed(0);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700551 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700552#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700553 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700554}
555
Ian Rogers56edc432013-01-18 16:51:51 -0800556void Mutex::Dump(std::ostream& os) const {
557 os << (recursive_ ? "recursive " : "non-recursive ")
558 << name_
559 << " level=" << static_cast<int>(level_)
560 << " rec=" << recursion_count_
561 << " owner=" << GetExclusiveOwnerTid() << " ";
562 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700563}
564
565std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800566 mu.Dump(os);
567 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700568}
569
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800570void Mutex::WakeupToRespondToEmptyCheckpoint() {
571#if ART_USE_FUTEXES
572 // Wake up all the waiters so they will respond to the emtpy checkpoint.
573 DCHECK(should_respond_to_empty_checkpoint_request_);
574 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
575 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
576 }
577#else
578 LOG(FATAL) << "Non futex case isn't supported.";
579#endif
580}
581
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700582ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
583 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700584#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700585 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700586#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700587{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700588#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700589 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700590#endif
Hans Boehm0882af22017-08-31 15:21:57 -0700591 exclusive_owner_.StoreRelaxed(0);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700592}
593
594ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700595#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700596 CHECK_EQ(state_.LoadRelaxed(), 0);
Hans Boehm0882af22017-08-31 15:21:57 -0700597 CHECK_EQ(GetExclusiveOwnerTid(), 0);
Ian Rogersc7190692014-07-08 23:50:26 -0700598 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700599 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700600#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700601 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
602 // may still be using locks.
603 int rc = pthread_rwlock_destroy(&rwlock_);
604 if (rc != 0) {
605 errno = rc;
David Sehrf42eb2c2016-10-19 13:20:45 -0700606 bool is_safe_to_call_abort = IsSafeToCallAbortSafe();
607 PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800608 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700609#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700610}
611
Ian Rogers81d425b2012-09-27 16:03:43 -0700612void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700613 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700614 AssertNotExclusiveHeld(self);
615#if ART_USE_FUTEXES
616 bool done = false;
617 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700618 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700619 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700620 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
621 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700622 } else {
623 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700624 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700625 ++num_pending_writers_;
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800626 if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) {
627 self->CheckEmptyCheckpointFromMutex();
628 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700629 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700630 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
631 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
632 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700633 PLOG(FATAL) << "futex wait failed for " << name_;
634 }
635 }
Ian Rogersc7190692014-07-08 23:50:26 -0700636 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700637 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700638 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700639 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700640#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700641 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700642#endif
Hans Boehm0882af22017-08-31 15:21:57 -0700643 DCHECK_EQ(GetExclusiveOwnerTid(), 0);
644 exclusive_owner_.StoreRelaxed(SafeGetTid(self));
Ian Rogers81d425b2012-09-27 16:03:43 -0700645 RegisterAsLocked(self);
646 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700647}
648
Ian Rogers81d425b2012-09-27 16:03:43 -0700649void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700650 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700651 AssertExclusiveHeld(self);
652 RegisterAsUnlocked(self);
Hans Boehm0882af22017-08-31 15:21:57 -0700653 DCHECK_NE(GetExclusiveOwnerTid(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700654#if ART_USE_FUTEXES
655 bool done = false;
656 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700657 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700658 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700659 // We're no longer the owner.
Hans Boehm0882af22017-08-31 15:21:57 -0700660 exclusive_owner_.StoreRelaxed(0);
Ian Rogersc7190692014-07-08 23:50:26 -0700661 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
662 // Note, the relaxed loads below musn't reorder before the CompareExchange.
663 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
664 // a status bit into the state on contention.
665 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
666 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700667 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700668 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
669 num_pending_writers_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700670 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700671 }
672 }
673 } else {
674 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
675 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700676 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700677#else
Hans Boehm0882af22017-08-31 15:21:57 -0700678 exclusive_owner_.StoreRelaxed(0);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700679 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700680#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700681}
682
Ian Rogers66aee5c2012-08-15 17:17:47 -0700683#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700684bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700685 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700686#if ART_USE_FUTEXES
687 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700688 timespec end_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800689 InitTimeSpec(true, CLOCK_MONOTONIC, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700690 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700691 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700692 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700693 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
694 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700695 } else {
696 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700697 timespec now_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800698 InitTimeSpec(true, CLOCK_MONOTONIC, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700699 timespec rel_ts;
700 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
701 return false; // Timed out.
702 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700703 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700704 ++num_pending_writers_;
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800705 if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) {
706 self->CheckEmptyCheckpointFromMutex();
707 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700708 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, nullptr, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700709 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700710 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700711 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700712 } else if ((errno != EAGAIN) && (errno != EINTR)) {
713 // EAGAIN and EINTR both indicate a spurious failure,
714 // recompute the relative time out from now and try again.
715 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700716 PLOG(FATAL) << "timed futex wait failed for " << name_;
717 }
718 }
Ian Rogersc7190692014-07-08 23:50:26 -0700719 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700720 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700721 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700722#else
Ian Rogersc604d732012-10-14 16:09:54 -0700723 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700724 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700725 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700726 if (result == ETIMEDOUT) {
727 return false;
728 }
729 if (result != 0) {
730 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700731 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700732 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700733#endif
Hans Boehm0882af22017-08-31 15:21:57 -0700734 exclusive_owner_.StoreRelaxed(SafeGetTid(self));
Ian Rogers81d425b2012-09-27 16:03:43 -0700735 RegisterAsLocked(self);
736 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700737 return true;
738}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700739#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700740
Ian Rogers51d212e2014-10-23 17:48:20 -0700741#if ART_USE_FUTEXES
Ian Rogerscf7f1912014-10-22 22:06:39 -0700742void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) {
743 // Owner holds it exclusively, hang up.
744 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
745 ++num_pending_readers_;
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800746 if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) {
747 self->CheckEmptyCheckpointFromMutex();
748 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700749 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Daniel Colascione6f4d1022016-11-21 14:35:42 -0800750 if (errno != EAGAIN && errno != EINTR) {
Ian Rogerscf7f1912014-10-22 22:06:39 -0700751 PLOG(FATAL) << "futex wait failed for " << name_;
752 }
753 }
754 --num_pending_readers_;
755}
Ian Rogers51d212e2014-10-23 17:48:20 -0700756#endif
Ian Rogerscf7f1912014-10-22 22:06:39 -0700757
Ian Rogers81d425b2012-09-27 16:03:43 -0700758bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700759 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700760#if ART_USE_FUTEXES
761 bool done = false;
762 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700763 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700764 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700765 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
766 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700767 } else {
768 // Owner holds it exclusively.
769 return false;
770 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700771 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700772#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700773 int result = pthread_rwlock_tryrdlock(&rwlock_);
774 if (result == EBUSY) {
775 return false;
776 }
777 if (result != 0) {
778 errno = result;
779 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
780 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700781#endif
782 RegisterAsLocked(self);
783 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700784 return true;
785}
786
Ian Rogers81d425b2012-09-27 16:03:43 -0700787bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700788 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700789 bool result;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700790 if (UNLIKELY(self == nullptr)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700791 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700792 } else {
793 result = (self->GetHeldMutex(level_) == this);
794 }
795 return result;
796}
797
Ian Rogers56edc432013-01-18 16:51:51 -0800798void ReaderWriterMutex::Dump(std::ostream& os) const {
799 os << name_
800 << " level=" << static_cast<int>(level_)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700801 << " owner=" << GetExclusiveOwnerTid()
802#if ART_USE_FUTEXES
803 << " state=" << state_.LoadSequentiallyConsistent()
804 << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent()
805 << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent()
806#endif
807 << " ";
Ian Rogers56edc432013-01-18 16:51:51 -0800808 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700809}
810
811std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800812 mu.Dump(os);
813 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700814}
815
Yu Lieac44242015-06-29 10:50:03 +0800816std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu) {
817 mu.Dump(os);
818 return os;
819}
820
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800821void ReaderWriterMutex::WakeupToRespondToEmptyCheckpoint() {
822#if ART_USE_FUTEXES
823 // Wake up all the waiters so they will respond to the emtpy checkpoint.
824 DCHECK(should_respond_to_empty_checkpoint_request_);
825 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
826 num_pending_writers_.LoadRelaxed() > 0)) {
827 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
828 }
829#else
830 LOG(FATAL) << "Non futex case isn't supported.";
831#endif
832}
833
Ian Rogers23055dc2013-04-18 16:29:16 -0700834ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700835 : name_(name), guard_(guard) {
836#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700837 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700838 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700839#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000840 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700841 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000842#if !defined(__APPLE__)
843 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
Ian Rogers51d212e2014-10-23 17:48:20 -0700844 CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC));
Narayan Kamath51b71022014-03-04 11:57:09 +0000845#endif
846 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700847#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700848}
849
850ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800851#if ART_USE_FUTEXES
852 if (num_waiters_!= 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700853 bool is_safe_to_call_abort = IsSafeToCallAbortSafe();
854 LOG(is_safe_to_call_abort ? FATAL : WARNING)
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700855 << "ConditionVariable::~ConditionVariable for " << name_
Ian Rogersd45f2012012-11-28 11:46:23 -0800856 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800857 }
858#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700859 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
860 // may still be using condition variables.
861 int rc = pthread_cond_destroy(&cond_);
862 if (rc != 0) {
863 errno = rc;
David Sehrf42eb2c2016-10-19 13:20:45 -0700864 bool is_safe_to_call_abort = IsSafeToCallAbortSafe();
865 PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_cond_destroy failed for " << name_;
Elliott Hughese62934d2012-04-09 11:24:29 -0700866 }
Ian Rogersc604d732012-10-14 16:09:54 -0700867#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700868}
869
Ian Rogersc604d732012-10-14 16:09:54 -0700870void ConditionVariable::Broadcast(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700871 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700872 // TODO: enable below, there's a race in thread creation that causes false failures currently.
873 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700874 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700875#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800876 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800877 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700878 bool done = false;
879 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700880 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800881 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
882 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800883 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800884 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700885 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800886 if (!done) {
Daniel Colascione6f4d1022016-11-21 14:35:42 -0800887 if (errno != EAGAIN && errno != EINTR) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800888 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
889 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800890 }
Ian Rogersc604d732012-10-14 16:09:54 -0700891 } while (!done);
892 }
893#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700894 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700895#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700896}
897
Ian Rogersc604d732012-10-14 16:09:54 -0700898void ConditionVariable::Signal(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700899 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700900 guard_.AssertExclusiveHeld(self);
901#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800902 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800903 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700904 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
905 // to avoid this, however, requeueing can only move all waiters.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700906 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800907 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800908 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700909 }
910#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700911 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700912#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700913}
914
Ian Rogersc604d732012-10-14 16:09:54 -0700915void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700916 guard_.CheckSafeToWait(self);
917 WaitHoldingLocks(self);
918}
919
920void ConditionVariable::WaitHoldingLocks(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);
Ian Rogersc604d732012-10-14 16:09:54 -0700923 unsigned int old_recursion_count = guard_.recursion_count_;
924#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700925 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800926 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800927 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700928 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700929 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700930 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700931 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, nullptr, nullptr, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800932 // Futex failed, check it is an expected error.
933 // EAGAIN == EWOULDBLK, so we let the caller try again.
934 // EINTR implies a signal was sent to this thread.
935 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700936 PLOG(FATAL) << "futex wait failed for " << name_;
937 }
938 }
Mathieu Chartier4d87df62016-01-07 15:14:19 -0800939 if (self != nullptr) {
940 JNIEnvExt* const env = self->GetJniEnv();
941 if (UNLIKELY(env != nullptr && env->runtime_deleted)) {
942 CHECK(self->IsDaemon());
943 // If the runtime has been deleted, then we cannot proceed. Just sleep forever. This may
944 // occur for user daemon threads that get a spurious wakeup. This occurs for test 132 with
945 // --host and --gdb.
946 // After we wake up, the runtime may have been shutdown, which means that this condition may
947 // have been deleted. It is not safe to retry the wait.
948 SleepForever();
949 }
950 }
Ian Rogersc604d732012-10-14 16:09:54 -0700951 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800952 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700953 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800954 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700955 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800956 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700957#else
Hans Boehm0882af22017-08-31 15:21:57 -0700958 pid_t old_owner = guard_.GetExclusiveOwnerTid();
Hans Boehm04bb35a2017-09-19 11:01:40 -0700959 guard_.exclusive_owner_.StoreRelaxed(0);
Ian Rogersc604d732012-10-14 16:09:54 -0700960 guard_.recursion_count_ = 0;
961 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Hans Boehm0882af22017-08-31 15:21:57 -0700962 guard_.exclusive_owner_.StoreRelaxed(old_owner);
Ian Rogersc604d732012-10-14 16:09:54 -0700963#endif
964 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700965}
966
Ian Rogers7b078e82014-09-10 14:44:24 -0700967bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700968 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700969 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700970 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700971 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700972 unsigned int old_recursion_count = guard_.recursion_count_;
973#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700974 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800975 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700976 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800977 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800978 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700979 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700980 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700981 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700982 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, nullptr, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700983 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800984 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -0700985 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -0700986 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800987 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700988 } else {
989 PLOG(FATAL) << "timed futex wait failed for " << name_;
990 }
991 }
992 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800993 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700994 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800995 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700996 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800997 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700998#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000999#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -07001000 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -07001001#else
Ian Rogersc604d732012-10-14 16:09:54 -07001002 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -07001003#endif
Hans Boehm0882af22017-08-31 15:21:57 -07001004 pid_t old_owner = guard_.GetExclusiveOwnerTid();
1005 guard_.exclusive_owner_.StoreRelaxed(0);
Ian Rogersc604d732012-10-14 16:09:54 -07001006 guard_.recursion_count_ = 0;
1007 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -07001008 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +00001009 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -07001010 if (rc == ETIMEDOUT) {
1011 timed_out = true;
1012 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -07001013 errno = rc;
1014 PLOG(FATAL) << "TimedWait failed for " << name_;
1015 }
Hans Boehm0882af22017-08-31 15:21:57 -07001016 guard_.exclusive_owner_.StoreRelaxed(old_owner);
Ian Rogersc604d732012-10-14 16:09:54 -07001017#endif
1018 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -07001019 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -07001020}
1021
Ian Rogers719d1a32014-03-06 12:13:39 -08001022void Locks::Init() {
1023 if (logging_lock_ != nullptr) {
1024 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +01001025 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001026 DCHECK(modify_ldt_lock_ != nullptr);
1027 } else {
1028 DCHECK(modify_ldt_lock_ == nullptr);
1029 }
Ian Rogers719d1a32014-03-06 12:13:39 -08001030 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001031 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -07001032 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001033 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001034 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001035 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001036 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001037 DCHECK(heap_bitmap_lock_ != nullptr);
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001038 DCHECK(oat_file_manager_lock_ != nullptr);
David Brazdilca3c8c32016-09-06 14:04:48 +01001039 DCHECK(verifier_deps_lock_ != nullptr);
Richard Uhlera206c742016-05-24 15:04:22 -07001040 DCHECK(host_dlopen_handles_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001041 DCHECK(intern_table_lock_ != nullptr);
Andreas Gampec8089542017-01-16 12:41:12 -08001042 DCHECK(jni_function_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -07001043 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001044 DCHECK(logging_lock_ != nullptr);
1045 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001046 DCHECK(profiler_lock_ != nullptr);
Mingyao Yang063fc772016-08-02 11:02:54 -07001047 DCHECK(cha_lock_ != nullptr);
Igor Murashkin495e7832017-10-27 10:56:20 -07001048 DCHECK(subtype_check_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001049 DCHECK(thread_list_lock_ != nullptr);
1050 DCHECK(thread_suspend_count_lock_ != nullptr);
1051 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001052 DCHECK(unexpected_signal_lock_ != nullptr);
Alex Light88fd7202017-06-30 08:31:59 -07001053 DCHECK(user_code_suspension_lock_ != nullptr);
Andreas Gampecc1b5352016-12-01 16:58:38 -08001054 DCHECK(dex_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001055 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001056 // Create global locks in level order from highest lock level to lowest.
Ian Rogers4ad5cd32014-11-11 23:08:07 -08001057 LockLevel current_lock_level = kInstrumentEntrypointsLock;
1058 DCHECK(instrument_entrypoints_lock_ == nullptr);
1059 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -08001060
Chao-ying Fu9e369312014-05-21 11:20:52 -07001061 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Chih-Hung Hsiehfba39972016-05-11 11:26:48 -07001062 if ((new_level) >= current_lock_level) { \
Brian Carlstrom306db812014-09-05 13:01:41 -07001063 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
1064 fprintf(stderr, "New local level %d is not less than current level %d\n", \
1065 new_level, current_lock_level); \
1066 exit(1); \
1067 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -07001068 current_lock_level = new_level;
1069
Alex Light88fd7202017-06-30 08:31:59 -07001070 UPDATE_CURRENT_LOCK_LEVEL(kUserCodeSuspensionLock);
1071 DCHECK(user_code_suspension_lock_ == nullptr);
1072 user_code_suspension_lock_ = new Mutex("user code suspension lock", current_lock_level);
1073
Ian Rogersf3d874c2014-07-17 18:52:42 -07001074 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
1075 DCHECK(mutator_lock_ == nullptr);
Yu Lieac44242015-06-29 10:50:03 +08001076 mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001077
1078 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
1079 DCHECK(heap_bitmap_lock_ == nullptr);
1080 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
1081
Jeff Hao69dbec62014-09-15 18:03:41 -07001082 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
1083 DCHECK(trace_lock_ == nullptr);
1084 trace_lock_ = new Mutex("trace lock", current_lock_level);
1085
Chao-ying Fu9e369312014-05-21 11:20:52 -07001086 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
1087 DCHECK(runtime_shutdown_lock_ == nullptr);
1088 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
1089
1090 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
1091 DCHECK(profiler_lock_ == nullptr);
1092 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
1093
Brian Carlstrom306db812014-09-05 13:01:41 -07001094 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
1095 DCHECK(deoptimization_lock_ == nullptr);
1096 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
1097
1098 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
1099 DCHECK(alloc_tracker_lock_ == nullptr);
1100 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
1101
Chao-ying Fu9e369312014-05-21 11:20:52 -07001102 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
1103 DCHECK(thread_list_lock_ == nullptr);
1104 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
1105
Ian Rogers68d8b422014-07-17 11:09:10 -07001106 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
1107 DCHECK(jni_libraries_lock_ == nullptr);
1108 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
1109
Chao-ying Fu9e369312014-05-21 11:20:52 -07001110 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001111 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +02001112 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001113
Igor Murashkin495e7832017-10-27 10:56:20 -07001114 UPDATE_CURRENT_LOCK_LEVEL(kSubtypeCheckLock);
1115 DCHECK(subtype_check_lock_ == nullptr);
1116 subtype_check_lock_ = new Mutex("SubtypeCheck lock", current_lock_level);
1117
Mingyao Yang063fc772016-08-02 11:02:54 -07001118 UPDATE_CURRENT_LOCK_LEVEL(kCHALock);
1119 DCHECK(cha_lock_ == nullptr);
1120 cha_lock_ = new Mutex("CHA lock", current_lock_level);
1121
Chao-ying Fu9e369312014-05-21 11:20:52 -07001122 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001123 DCHECK(classlinker_classes_lock_ == nullptr);
1124 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -07001125 current_lock_level);
1126
Andreas Gampe74240812014-04-17 10:35:09 -07001127 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
1128 DCHECK(allocated_monitor_ids_lock_ == nullptr);
1129 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
1130
Chao-ying Fu9e369312014-05-21 11:20:52 -07001131 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
1132 DCHECK(allocated_thread_ids_lock_ == nullptr);
1133 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
1134
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +01001135 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001136 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
1137 DCHECK(modify_ldt_lock_ == nullptr);
1138 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
1139 }
1140
Andreas Gampecc1b5352016-12-01 16:58:38 -08001141 UPDATE_CURRENT_LOCK_LEVEL(kDexLock);
1142 DCHECK(dex_lock_ == nullptr);
1143 dex_lock_ = new ReaderWriterMutex("ClassLinker dex lock", current_lock_level);
1144
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001145 UPDATE_CURRENT_LOCK_LEVEL(kOatFileManagerLock);
1146 DCHECK(oat_file_manager_lock_ == nullptr);
1147 oat_file_manager_lock_ = new ReaderWriterMutex("OatFile manager lock", current_lock_level);
1148
David Brazdilca3c8c32016-09-06 14:04:48 +01001149 UPDATE_CURRENT_LOCK_LEVEL(kVerifierDepsLock);
1150 DCHECK(verifier_deps_lock_ == nullptr);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001151 verifier_deps_lock_ = new ReaderWriterMutex("verifier deps lock", current_lock_level);
David Brazdilca3c8c32016-09-06 14:04:48 +01001152
Richard Uhlera206c742016-05-24 15:04:22 -07001153 UPDATE_CURRENT_LOCK_LEVEL(kHostDlOpenHandlesLock);
1154 DCHECK(host_dlopen_handles_lock_ == nullptr);
1155 host_dlopen_handles_lock_ = new Mutex("host dlopen handles lock", current_lock_level);
Mathieu Chartiere58991b2015-10-13 07:59:34 -07001156
Chao-ying Fu9e369312014-05-21 11:20:52 -07001157 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001158 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001159 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1160
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001161 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1162 DCHECK(reference_processor_lock_ == nullptr);
1163 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1164
1165 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1166 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1167 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1168
1169 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1170 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1171 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1172
1173 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1174 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1175 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1176
1177 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1178 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1179 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1180
1181 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1182 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1183 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1184
Andreas Gampe05a364c2016-10-14 13:27:12 -07001185 UPDATE_CURRENT_LOCK_LEVEL(kJniGlobalsLock);
1186 DCHECK(jni_globals_lock_ == nullptr);
1187 jni_globals_lock_ =
1188 new ReaderWriterMutex("JNI global reference table lock", current_lock_level);
1189
1190 UPDATE_CURRENT_LOCK_LEVEL(kJniWeakGlobalsLock);
1191 DCHECK(jni_weak_globals_lock_ == nullptr);
1192 jni_weak_globals_lock_ = new Mutex("JNI weak global reference table lock", current_lock_level);
1193
Andreas Gampec8089542017-01-16 12:41:12 -08001194 UPDATE_CURRENT_LOCK_LEVEL(kJniFunctionTableLock);
1195 DCHECK(jni_function_table_lock_ == nullptr);
1196 jni_function_table_lock_ = new Mutex("JNI function table lock", current_lock_level);
1197
Chao-ying Fu9e369312014-05-21 11:20:52 -07001198 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1199 DCHECK(abort_lock_ == nullptr);
1200 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1201
1202 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1203 DCHECK(thread_suspend_count_lock_ == nullptr);
1204 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1205
1206 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1207 DCHECK(unexpected_signal_lock_ == nullptr);
1208 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1209
1210 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1211 DCHECK(logging_lock_ == nullptr);
1212 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1213
1214 #undef UPDATE_CURRENT_LOCK_LEVEL
Mathieu Chartier91e56692015-03-03 13:51:04 -08001215
Hiroshi Yamauchia2224042017-02-08 16:35:45 -08001216 // List of mutexes that we may hold when accessing a weak ref.
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -08001217 AddToExpectedMutexesOnWeakRefAccess(dex_lock_, /*need_lock*/ false);
1218 AddToExpectedMutexesOnWeakRefAccess(classlinker_classes_lock_, /*need_lock*/ false);
1219 AddToExpectedMutexesOnWeakRefAccess(jni_libraries_lock_, /*need_lock*/ false);
Hiroshi Yamauchia2224042017-02-08 16:35:45 -08001220
Mathieu Chartier91e56692015-03-03 13:51:04 -08001221 InitConditions();
Ian Rogers719d1a32014-03-06 12:13:39 -08001222 }
1223}
1224
Mathieu Chartier91e56692015-03-03 13:51:04 -08001225void Locks::InitConditions() {
1226 thread_exit_cond_ = new ConditionVariable("thread exit condition variable", *thread_list_lock_);
1227}
Ian Rogers719d1a32014-03-06 12:13:39 -08001228
David Sehrf42eb2c2016-10-19 13:20:45 -07001229void Locks::SetClientCallback(ClientCallback* safe_to_call_abort_cb) {
1230 safe_to_call_abort_callback.StoreRelease(safe_to_call_abort_cb);
1231}
1232
1233// Helper to allow checking shutdown while ignoring locking requirements.
1234bool Locks::IsSafeToCallAbortRacy() {
1235 Locks::ClientCallback* safe_to_call_abort_cb = safe_to_call_abort_callback.LoadAcquire();
1236 return safe_to_call_abort_cb != nullptr && safe_to_call_abort_cb();
1237}
1238
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -08001239void Locks::AddToExpectedMutexesOnWeakRefAccess(BaseMutex* mutex, bool need_lock) {
1240 if (need_lock) {
1241 ScopedExpectedMutexesOnWeakRefAccessLock mu(mutex);
1242 mutex->SetShouldRespondToEmptyCheckpointRequest(true);
1243 expected_mutexes_on_weak_ref_access_.push_back(mutex);
1244 } else {
1245 mutex->SetShouldRespondToEmptyCheckpointRequest(true);
1246 expected_mutexes_on_weak_ref_access_.push_back(mutex);
1247 }
1248}
1249
1250void Locks::RemoveFromExpectedMutexesOnWeakRefAccess(BaseMutex* mutex, bool need_lock) {
1251 if (need_lock) {
1252 ScopedExpectedMutexesOnWeakRefAccessLock mu(mutex);
1253 mutex->SetShouldRespondToEmptyCheckpointRequest(false);
1254 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_;
1255 auto it = std::find(list.begin(), list.end(), mutex);
1256 DCHECK(it != list.end());
1257 list.erase(it);
1258 } else {
1259 mutex->SetShouldRespondToEmptyCheckpointRequest(false);
1260 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_;
1261 auto it = std::find(list.begin(), list.end(), mutex);
1262 DCHECK(it != list.end());
1263 list.erase(it);
1264 }
1265}
1266
1267bool Locks::IsExpectedOnWeakRefAccess(BaseMutex* mutex) {
1268 ScopedExpectedMutexesOnWeakRefAccessLock mu(mutex);
1269 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_;
1270 return std::find(list.begin(), list.end(), mutex) != list.end();
1271}
1272
Elliott Hughese62934d2012-04-09 11:24:29 -07001273} // namespace art