blob: e88ed68ef1654697f925b03e16e94165be74a317 [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
Hans Boehmae915a02017-12-12 11:05:32 -0800105// Wait for an amount of time that roughly increases in the argument i.
106// Spin for small arguments and yield/sleep for longer ones.
107static void BackOff(uint32_t i) {
108 static constexpr uint32_t kSpinMax = 10;
109 static constexpr uint32_t kYieldMax = 20;
110 if (i <= kSpinMax) {
111 // TODO: Esp. in very latency-sensitive cases, consider replacing this with an explicit
112 // test-and-test-and-set loop in the caller. Possibly skip entirely on a uniprocessor.
113 volatile uint32_t x = 0;
114 const uint32_t spin_count = 10 * i;
115 for (uint32_t spin = 0; spin < spin_count; ++spin) {
116 ++x; // Volatile; hence should not be optimized away.
117 }
118 // TODO: Consider adding x86 PAUSE and/or ARM YIELD here.
119 } else if (i <= kYieldMax) {
120 sched_yield();
121 } else {
122 NanoSleep(1000ull * (i - kYieldMax));
123 }
124}
125
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700126class ScopedAllMutexesLock FINAL {
Ian Rogers56edc432013-01-18 16:51:51 -0800127 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -0700128 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Hans Boehmae915a02017-12-12 11:05:32 -0800129 for (uint32_t i = 0;
130 !gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex);
131 ++i) {
132 BackOff(i);
Ian Rogers56edc432013-01-18 16:51:51 -0800133 }
134 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700135
Ian Rogers56edc432013-01-18 16:51:51 -0800136 ~ScopedAllMutexesLock() {
Hans Boehmae915a02017-12-12 11:05:32 -0800137 DCHECK_EQ(gAllMutexData->all_mutexes_guard.LoadRelaxed(), mutex_);
138 gAllMutexData->all_mutexes_guard.StoreRelease(0);
Ian Rogers56edc432013-01-18 16:51:51 -0800139 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700140
Ian Rogers56edc432013-01-18 16:51:51 -0800141 private:
142 const BaseMutex* const mutex_;
143};
Ian Rogers56edc432013-01-18 16:51:51 -0800144
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -0800145class Locks::ScopedExpectedMutexesOnWeakRefAccessLock FINAL {
146 public:
147 explicit ScopedExpectedMutexesOnWeakRefAccessLock(const BaseMutex* mutex) : mutex_(mutex) {
Hans Boehmae915a02017-12-12 11:05:32 -0800148 for (uint32_t i = 0;
149 !Locks::expected_mutexes_on_weak_ref_access_guard_.CompareExchangeWeakAcquire(0, mutex);
150 ++i) {
151 BackOff(i);
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -0800152 }
153 }
154
155 ~ScopedExpectedMutexesOnWeakRefAccessLock() {
Hans Boehmae915a02017-12-12 11:05:32 -0800156 DCHECK_EQ(Locks::expected_mutexes_on_weak_ref_access_guard_.LoadRelaxed(), mutex_);
157 Locks::expected_mutexes_on_weak_ref_access_guard_.StoreRelease(0);
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -0800158 }
159
160 private:
161 const BaseMutex* const mutex_;
162};
163
Ian Rogerscf7f1912014-10-22 22:06:39 -0700164// Scoped class that generates events at the beginning and end of lock contention.
165class ScopedContentionRecorder FINAL : public ValueObject {
166 public:
167 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid)
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700168 : mutex_(kLogLockContentions ? mutex : nullptr),
Ian Rogerscf7f1912014-10-22 22:06:39 -0700169 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
170 owner_tid_(kLogLockContentions ? owner_tid : 0),
171 start_nano_time_(kLogLockContentions ? NanoTime() : 0) {
172 if (ATRACE_ENABLED()) {
173 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")",
174 mutex->GetName(), owner_tid);
175 ATRACE_BEGIN(msg.c_str());
176 }
177 }
178
179 ~ScopedContentionRecorder() {
180 ATRACE_END();
181 if (kLogLockContentions) {
182 uint64_t end_nano_time = NanoTime();
183 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
184 }
185 }
186
187 private:
188 BaseMutex* const mutex_;
189 const uint64_t blocked_tid_;
190 const uint64_t owner_tid_;
191 const uint64_t start_nano_time_;
192};
193
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800194BaseMutex::BaseMutex(const char* name, LockLevel level)
195 : level_(level),
196 name_(name),
197 should_respond_to_empty_checkpoint_request_(false) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700198 if (kLogLockContentions) {
199 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700200 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700201 if (*all_mutexes_ptr == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700202 // We leak the global set of all mutexes to avoid ordering issues in global variable
203 // construction/destruction.
204 *all_mutexes_ptr = new std::set<BaseMutex*>();
205 }
206 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800207 }
Ian Rogers56edc432013-01-18 16:51:51 -0800208}
209
210BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700211 if (kLogLockContentions) {
212 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700213 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700214 }
Ian Rogers56edc432013-01-18 16:51:51 -0800215}
216
217void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700218 if (kLogLockContentions) {
219 os << "Mutex logging:\n";
220 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700221 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700222 if (all_mutexes == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700223 // No mutexes have been created yet during at startup.
224 return;
225 }
226 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700227 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700228 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
229 BaseMutex* mutex = *it;
230 if (mutex->HasEverContended()) {
231 mutex->Dump(os);
232 os << "\n";
233 }
234 }
235 os << "(Never contented)\n";
236 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
237 BaseMutex* mutex = *it;
238 if (!mutex->HasEverContended()) {
239 mutex->Dump(os);
240 os << "\n";
241 }
242 }
Ian Rogers56edc432013-01-18 16:51:51 -0800243 }
Ian Rogers56edc432013-01-18 16:51:51 -0800244}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700245
Ian Rogers81d425b2012-09-27 16:03:43 -0700246void BaseMutex::CheckSafeToWait(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700247 if (self == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700248 CheckUnattachedThread(level_);
249 return;
250 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700251 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700252 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
253 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700254 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800255 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700256 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700257 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Alex Light79400aa2017-07-18 15:34:21 -0700258 // We allow the thread to wait even if the user_code_suspension_lock_ is held so long as we
259 // are some thread's resume_cond_ (level_ == kThreadSuspendCountLock). This just means that
260 // gc or some other internal process is suspending the thread while it is trying to suspend
261 // some other thread. So long as the current thread is not being suspended by a
262 // SuspendReason::kForUserCode (which needs the user_code_suspension_lock_ to clear) this is
263 // fine.
264 if (held_mutex == Locks::user_code_suspension_lock_ && level_ == kThreadSuspendCountLock) {
265 // No thread safety analysis is fine since we have both the user_code_suspension_lock_
266 // from the line above and the ThreadSuspendCountLock since it is our level_. We use this
267 // lambda to avoid having to annotate the whole function as NO_THREAD_SAFETY_ANALYSIS.
268 auto is_suspending_for_user_code = [self]() NO_THREAD_SAFETY_ANALYSIS {
269 return self->GetUserCodeSuspendCount() != 0;
270 };
271 if (is_suspending_for_user_code()) {
272 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
273 << "(level " << LockLevel(i) << ") while performing wait on "
274 << "\"" << name_ << "\" (level " << level_ << ") "
275 << "with SuspendReason::kForUserCode pending suspensions";
276 bad_mutexes_held = true;
277 }
278 } else if (held_mutex != nullptr) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800279 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
280 << "(level " << LockLevel(i) << ") while performing wait on "
281 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700282 bad_mutexes_held = true;
283 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700284 }
285 }
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000286 if (gAborting == 0) { // Avoid recursive aborts.
Alex Light79400aa2017-07-18 15:34:21 -0700287 CHECK(!bad_mutexes_held) << this;
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000288 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700289 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700290}
291
Ian Rogers37f3c962014-07-17 11:25:30 -0700292void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700293 if (kLogLockContentions) {
294 // Atomically add value to wait_time.
Ian Rogers37f3c962014-07-17 11:25:30 -0700295 wait_time.FetchAndAddSequentiallyConsistent(value);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700296 }
297}
298
Brian Carlstrom0de79852013-07-25 22:29:58 -0700299void BaseMutex::RecordContention(uint64_t blocked_tid,
300 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700301 uint64_t nano_time_blocked) {
302 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700303 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700304 ++(data->contention_count);
305 data->AddToWaitTime(nano_time_blocked);
306 ContentionLogEntry* log = data->contention_log;
307 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700308 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700309 if (log[slot].blocked_tid == blocked_tid &&
310 log[slot].owner_tid == blocked_tid) {
311 ++log[slot].count;
312 } else {
313 uint32_t new_slot;
314 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700315 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700316 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700317 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700318 log[new_slot].blocked_tid = blocked_tid;
319 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700320 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700321 }
Ian Rogers56edc432013-01-18 16:51:51 -0800322 }
Ian Rogers56edc432013-01-18 16:51:51 -0800323}
324
Ian Rogers56edc432013-01-18 16:51:51 -0800325void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700326 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700327 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700328 const ContentionLogEntry* log = data->contention_log;
Ian Rogers37f3c962014-07-17 11:25:30 -0700329 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700330 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700331 if (contention_count == 0) {
332 os << "never contended";
333 } else {
334 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700335 << " total wait of contender " << PrettyDuration(wait_time)
336 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700337 SafeMap<uint64_t, size_t> most_common_blocker;
338 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700339 for (size_t i = 0; i < kContentionLogSize; ++i) {
340 uint64_t blocked_tid = log[i].blocked_tid;
341 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700342 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700343 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700344 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700345 if (it != most_common_blocked.end()) {
346 most_common_blocked.Overwrite(blocked_tid, it->second + count);
347 } else {
348 most_common_blocked.Put(blocked_tid, count);
349 }
350 it = most_common_blocker.find(owner_tid);
351 if (it != most_common_blocker.end()) {
352 most_common_blocker.Overwrite(owner_tid, it->second + count);
353 } else {
354 most_common_blocker.Put(owner_tid, count);
355 }
Ian Rogers56edc432013-01-18 16:51:51 -0800356 }
357 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700358 uint64_t max_tid = 0;
359 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700360 for (const auto& pair : most_common_blocked) {
361 if (pair.second > max_tid_count) {
362 max_tid = pair.first;
363 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700364 }
Ian Rogers56edc432013-01-18 16:51:51 -0800365 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700366 if (max_tid != 0) {
367 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800368 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700369 max_tid = 0;
370 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700371 for (const auto& pair : most_common_blocker) {
372 if (pair.second > max_tid_count) {
373 max_tid = pair.first;
374 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700375 }
376 }
377 if (max_tid != 0) {
378 os << " sample shows tid=" << max_tid << " owning during this time";
379 }
Ian Rogers56edc432013-01-18 16:51:51 -0800380 }
381 }
Ian Rogers56edc432013-01-18 16:51:51 -0800382}
383
384
Ian Rogers81d425b2012-09-27 16:03:43 -0700385Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Hans Boehm0882af22017-08-31 15:21:57 -0700386 : BaseMutex(name, level), exclusive_owner_(0), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700387#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700388 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700389 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700390#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700391 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700392#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700393}
394
David Sehrf42eb2c2016-10-19 13:20:45 -0700395// Helper to allow checking shutdown while locking for thread safety.
396static bool IsSafeToCallAbortSafe() {
397 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
398 return Locks::IsSafeToCallAbortRacy();
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800399}
400
Elliott Hughes8daa0922011-09-11 13:46:25 -0700401Mutex::~Mutex() {
David Sehrf42eb2c2016-10-19 13:20:45 -0700402 bool safe_to_call_abort = Locks::IsSafeToCallAbortRacy();
Ian Rogersc604d732012-10-14 16:09:54 -0700403#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700404 if (state_.LoadRelaxed() != 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700405 LOG(safe_to_call_abort ? FATAL : WARNING)
Hans Boehm0882af22017-08-31 15:21:57 -0700406 << "destroying mutex with owner: " << GetExclusiveOwnerTid();
Ian Rogersc604d732012-10-14 16:09:54 -0700407 } else {
Hans Boehm0882af22017-08-31 15:21:57 -0700408 if (GetExclusiveOwnerTid() != 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700409 LOG(safe_to_call_abort ? FATAL : WARNING)
410 << "unexpectedly found an owner on unlocked mutex " << name_;
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800411 }
412 if (num_contenders_.LoadSequentiallyConsistent() != 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700413 LOG(safe_to_call_abort ? FATAL : WARNING)
414 << "unexpectedly found a contender on mutex " << name_;
Mathieu Chartiercef50f02014-12-09 17:38:52 -0800415 }
Ian Rogersc604d732012-10-14 16:09:54 -0700416 }
417#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700418 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
419 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800420 int rc = pthread_mutex_destroy(&mutex_);
421 if (rc != 0) {
422 errno = rc;
David Sehrf42eb2c2016-10-19 13:20:45 -0700423 PLOG(safe_to_call_abort ? FATAL : WARNING)
424 << "pthread_mutex_destroy failed for " << name_;
Elliott Hughes6b355752012-01-13 16:49:08 -0800425 }
Ian Rogersc604d732012-10-14 16:09:54 -0700426#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700427}
428
Ian Rogers81d425b2012-09-27 16:03:43 -0700429void Mutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700430 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700431 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700432 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700433 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700434 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700435#if ART_USE_FUTEXES
436 bool done = false;
437 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700438 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700439 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700440 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
441 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700442 } else {
443 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700444 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800445 num_contenders_++;
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800446 if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) {
447 self->CheckEmptyCheckpointFromMutex();
448 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700449 if (futex(state_.Address(), FUTEX_WAIT, 1, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700450 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
451 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
452 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700453 PLOG(FATAL) << "futex wait failed for " << name_;
454 }
455 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800456 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700457 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700458 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700459 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700460#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700461 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700462#endif
Hans Boehm0882af22017-08-31 15:21:57 -0700463 DCHECK_EQ(GetExclusiveOwnerTid(), 0);
464 exclusive_owner_.StoreRelaxed(SafeGetTid(self));
Ian Rogers81d425b2012-09-27 16:03:43 -0700465 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700466 }
467 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700468 if (kDebugLocking) {
469 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
470 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700471 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700472 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700473}
474
Ian Rogers81d425b2012-09-27 16:03:43 -0700475bool Mutex::ExclusiveTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700476 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700477 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700478 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700479 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700480 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700481#if ART_USE_FUTEXES
482 bool done = false;
483 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700484 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700485 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700486 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
487 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700488 } else {
489 return false;
490 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700491 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700492 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700493#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700494 int result = pthread_mutex_trylock(&mutex_);
495 if (result == EBUSY) {
496 return false;
497 }
498 if (result != 0) {
499 errno = result;
500 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
501 }
Ian Rogersc604d732012-10-14 16:09:54 -0700502#endif
Hans Boehm0882af22017-08-31 15:21:57 -0700503 DCHECK_EQ(GetExclusiveOwnerTid(), 0);
504 exclusive_owner_.StoreRelaxed(SafeGetTid(self));
Ian Rogers81d425b2012-09-27 16:03:43 -0700505 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700506 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700507 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700508 if (kDebugLocking) {
509 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
510 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700511 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700512 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700513 return true;
514}
515
Ian Rogers81d425b2012-09-27 16:03:43 -0700516void Mutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800517 if (kIsDebugBuild && self != nullptr && self != Thread::Current()) {
518 std::string name1 = "<null>";
519 std::string name2 = "<null>";
520 if (self != nullptr) {
521 self->GetThreadName(name1);
522 }
523 if (Thread::Current() != nullptr) {
524 Thread::Current()->GetThreadName(name2);
525 }
Mathieu Chartier4c101102015-01-27 17:14:16 -0800526 LOG(FATAL) << GetName() << " level=" << level_ << " self=" << name1
527 << " Thread::Current()=" << name2;
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800528 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700529 AssertHeld(self);
Hans Boehm0882af22017-08-31 15:21:57 -0700530 DCHECK_NE(GetExclusiveOwnerTid(), 0);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700531 recursion_count_--;
532 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700533 if (kDebugLocking) {
534 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
535 << name_ << " " << recursion_count_;
536 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700537 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700538#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700539 bool done = false;
540 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700541 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700542 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700543 // We're no longer the owner.
Hans Boehm0882af22017-08-31 15:21:57 -0700544 exclusive_owner_.StoreRelaxed(0);
Ian Rogersc7190692014-07-08 23:50:26 -0700545 // Change state to 0 and impose load/store ordering appropriate for lock release.
Hans Boehm0882af22017-08-31 15:21:57 -0700546 // Note, the relaxed loads below mustn't reorder before the CompareExchange.
Ian Rogersc7190692014-07-08 23:50:26 -0700547 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
548 // a status bit into the state on contention.
549 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700550 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700551 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700552 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700553 futex(state_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700554 }
555 }
556 } else {
557 // Logging acquires the logging lock, avoid infinite recursion in that case.
558 if (this != Locks::logging_lock_) {
559 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
560 } else {
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700561 LogHelper::LogLineLowStack(__FILE__,
562 __LINE__,
563 ::android::base::FATAL_WITHOUT_ABORT,
564 StringPrintf("Unexpected state_ %d in unlock for %s",
565 cur_state, name_).c_str());
Ian Rogersc5f17732014-06-05 20:48:42 -0700566 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700567 }
568 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700569 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700570#else
Hans Boehm0882af22017-08-31 15:21:57 -0700571 exclusive_owner_.StoreRelaxed(0);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700572 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700573#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700574 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700575}
576
Ian Rogers56edc432013-01-18 16:51:51 -0800577void Mutex::Dump(std::ostream& os) const {
578 os << (recursive_ ? "recursive " : "non-recursive ")
579 << name_
580 << " level=" << static_cast<int>(level_)
581 << " rec=" << recursion_count_
582 << " owner=" << GetExclusiveOwnerTid() << " ";
583 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700584}
585
586std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800587 mu.Dump(os);
588 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700589}
590
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800591void Mutex::WakeupToRespondToEmptyCheckpoint() {
592#if ART_USE_FUTEXES
593 // Wake up all the waiters so they will respond to the emtpy checkpoint.
594 DCHECK(should_respond_to_empty_checkpoint_request_);
595 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
596 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
597 }
598#else
599 LOG(FATAL) << "Non futex case isn't supported.";
600#endif
601}
602
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700603ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
604 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700605#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700606 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700607#endif
Igor Murashkin5573c372017-11-16 13:34:30 -0800608{
Ian Rogers81d425b2012-09-27 16:03:43 -0700609#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700610 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700611#endif
Hans Boehm0882af22017-08-31 15:21:57 -0700612 exclusive_owner_.StoreRelaxed(0);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700613}
614
615ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700616#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700617 CHECK_EQ(state_.LoadRelaxed(), 0);
Hans Boehm0882af22017-08-31 15:21:57 -0700618 CHECK_EQ(GetExclusiveOwnerTid(), 0);
Ian Rogersc7190692014-07-08 23:50:26 -0700619 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700620 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700621#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700622 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
623 // may still be using locks.
624 int rc = pthread_rwlock_destroy(&rwlock_);
625 if (rc != 0) {
626 errno = rc;
David Sehrf42eb2c2016-10-19 13:20:45 -0700627 bool is_safe_to_call_abort = IsSafeToCallAbortSafe();
628 PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800629 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700630#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700631}
632
Ian Rogers81d425b2012-09-27 16:03:43 -0700633void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700634 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700635 AssertNotExclusiveHeld(self);
636#if ART_USE_FUTEXES
637 bool done = false;
638 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700639 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700640 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700641 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
642 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700643 } else {
644 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700645 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700646 ++num_pending_writers_;
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800647 if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) {
648 self->CheckEmptyCheckpointFromMutex();
649 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700650 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700651 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
652 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
653 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700654 PLOG(FATAL) << "futex wait failed for " << name_;
655 }
656 }
Ian Rogersc7190692014-07-08 23:50:26 -0700657 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700658 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700659 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700660 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700661#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700662 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700663#endif
Hans Boehm0882af22017-08-31 15:21:57 -0700664 DCHECK_EQ(GetExclusiveOwnerTid(), 0);
665 exclusive_owner_.StoreRelaxed(SafeGetTid(self));
Ian Rogers81d425b2012-09-27 16:03:43 -0700666 RegisterAsLocked(self);
667 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700668}
669
Ian Rogers81d425b2012-09-27 16:03:43 -0700670void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700671 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700672 AssertExclusiveHeld(self);
673 RegisterAsUnlocked(self);
Hans Boehm0882af22017-08-31 15:21:57 -0700674 DCHECK_NE(GetExclusiveOwnerTid(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700675#if ART_USE_FUTEXES
676 bool done = false;
677 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700678 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700679 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700680 // We're no longer the owner.
Hans Boehm0882af22017-08-31 15:21:57 -0700681 exclusive_owner_.StoreRelaxed(0);
Ian Rogersc7190692014-07-08 23:50:26 -0700682 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
683 // Note, the relaxed loads below musn't reorder before the CompareExchange.
684 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
685 // a status bit into the state on contention.
686 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
687 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700688 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700689 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
690 num_pending_writers_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700691 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700692 }
693 }
694 } else {
695 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
696 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700697 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700698#else
Hans Boehm0882af22017-08-31 15:21:57 -0700699 exclusive_owner_.StoreRelaxed(0);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700700 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700701#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700702}
703
Ian Rogers66aee5c2012-08-15 17:17:47 -0700704#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700705bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700706 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700707#if ART_USE_FUTEXES
708 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700709 timespec end_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800710 InitTimeSpec(true, CLOCK_MONOTONIC, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700711 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700712 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700713 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700714 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
715 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700716 } else {
717 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700718 timespec now_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800719 InitTimeSpec(true, CLOCK_MONOTONIC, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700720 timespec rel_ts;
721 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
722 return false; // Timed out.
723 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700724 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700725 ++num_pending_writers_;
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800726 if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) {
727 self->CheckEmptyCheckpointFromMutex();
728 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700729 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, nullptr, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700730 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700731 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700732 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700733 } else if ((errno != EAGAIN) && (errno != EINTR)) {
734 // EAGAIN and EINTR both indicate a spurious failure,
735 // recompute the relative time out from now and try again.
736 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700737 PLOG(FATAL) << "timed futex wait failed for " << name_;
738 }
739 }
Ian Rogersc7190692014-07-08 23:50:26 -0700740 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700741 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700742 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700743#else
Ian Rogersc604d732012-10-14 16:09:54 -0700744 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700745 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700746 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700747 if (result == ETIMEDOUT) {
748 return false;
749 }
750 if (result != 0) {
751 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700752 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700753 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700754#endif
Hans Boehm0882af22017-08-31 15:21:57 -0700755 exclusive_owner_.StoreRelaxed(SafeGetTid(self));
Ian Rogers81d425b2012-09-27 16:03:43 -0700756 RegisterAsLocked(self);
757 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700758 return true;
759}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700760#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700761
Ian Rogers51d212e2014-10-23 17:48:20 -0700762#if ART_USE_FUTEXES
Ian Rogerscf7f1912014-10-22 22:06:39 -0700763void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) {
764 // Owner holds it exclusively, hang up.
765 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
766 ++num_pending_readers_;
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800767 if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) {
768 self->CheckEmptyCheckpointFromMutex();
769 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700770 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Daniel Colascione6f4d1022016-11-21 14:35:42 -0800771 if (errno != EAGAIN && errno != EINTR) {
Ian Rogerscf7f1912014-10-22 22:06:39 -0700772 PLOG(FATAL) << "futex wait failed for " << name_;
773 }
774 }
775 --num_pending_readers_;
776}
Ian Rogers51d212e2014-10-23 17:48:20 -0700777#endif
Ian Rogerscf7f1912014-10-22 22:06:39 -0700778
Ian Rogers81d425b2012-09-27 16:03:43 -0700779bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700780 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700781#if ART_USE_FUTEXES
782 bool done = false;
783 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700784 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700785 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700786 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
787 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700788 } else {
789 // Owner holds it exclusively.
790 return false;
791 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700792 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700793#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700794 int result = pthread_rwlock_tryrdlock(&rwlock_);
795 if (result == EBUSY) {
796 return false;
797 }
798 if (result != 0) {
799 errno = result;
800 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
801 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700802#endif
803 RegisterAsLocked(self);
804 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700805 return true;
806}
807
Ian Rogers81d425b2012-09-27 16:03:43 -0700808bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700809 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700810 bool result;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700811 if (UNLIKELY(self == nullptr)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700812 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700813 } else {
814 result = (self->GetHeldMutex(level_) == this);
815 }
816 return result;
817}
818
Ian Rogers56edc432013-01-18 16:51:51 -0800819void ReaderWriterMutex::Dump(std::ostream& os) const {
820 os << name_
821 << " level=" << static_cast<int>(level_)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700822 << " owner=" << GetExclusiveOwnerTid()
823#if ART_USE_FUTEXES
824 << " state=" << state_.LoadSequentiallyConsistent()
825 << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent()
826 << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent()
827#endif
828 << " ";
Ian Rogers56edc432013-01-18 16:51:51 -0800829 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700830}
831
832std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800833 mu.Dump(os);
834 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700835}
836
Yu Lieac44242015-06-29 10:50:03 +0800837std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu) {
838 mu.Dump(os);
839 return os;
840}
841
Hiroshi Yamauchia2224042017-02-08 16:35:45 -0800842void ReaderWriterMutex::WakeupToRespondToEmptyCheckpoint() {
843#if ART_USE_FUTEXES
844 // Wake up all the waiters so they will respond to the emtpy checkpoint.
845 DCHECK(should_respond_to_empty_checkpoint_request_);
846 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
847 num_pending_writers_.LoadRelaxed() > 0)) {
848 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
849 }
850#else
851 LOG(FATAL) << "Non futex case isn't supported.";
852#endif
853}
854
Ian Rogers23055dc2013-04-18 16:29:16 -0700855ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700856 : name_(name), guard_(guard) {
857#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700858 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700859 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700860#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000861 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700862 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000863#if !defined(__APPLE__)
864 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
Ian Rogers51d212e2014-10-23 17:48:20 -0700865 CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC));
Narayan Kamath51b71022014-03-04 11:57:09 +0000866#endif
867 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700868#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700869}
870
871ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800872#if ART_USE_FUTEXES
873 if (num_waiters_!= 0) {
David Sehrf42eb2c2016-10-19 13:20:45 -0700874 bool is_safe_to_call_abort = IsSafeToCallAbortSafe();
875 LOG(is_safe_to_call_abort ? FATAL : WARNING)
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700876 << "ConditionVariable::~ConditionVariable for " << name_
Ian Rogersd45f2012012-11-28 11:46:23 -0800877 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800878 }
879#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700880 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
881 // may still be using condition variables.
882 int rc = pthread_cond_destroy(&cond_);
883 if (rc != 0) {
884 errno = rc;
David Sehrf42eb2c2016-10-19 13:20:45 -0700885 bool is_safe_to_call_abort = IsSafeToCallAbortSafe();
886 PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_cond_destroy failed for " << name_;
Elliott Hughese62934d2012-04-09 11:24:29 -0700887 }
Ian Rogersc604d732012-10-14 16:09:54 -0700888#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700889}
890
Ian Rogersc604d732012-10-14 16:09:54 -0700891void ConditionVariable::Broadcast(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700892 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700893 // TODO: enable below, there's a race in thread creation that causes false failures currently.
894 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700895 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700896#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800897 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800898 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700899 bool done = false;
900 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700901 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800902 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
903 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800904 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800905 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700906 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800907 if (!done) {
Daniel Colascione6f4d1022016-11-21 14:35:42 -0800908 if (errno != EAGAIN && errno != EINTR) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800909 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
910 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800911 }
Ian Rogersc604d732012-10-14 16:09:54 -0700912 } while (!done);
913 }
914#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700915 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700916#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700917}
918
Ian Rogersc604d732012-10-14 16:09:54 -0700919void ConditionVariable::Signal(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700920 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700921 guard_.AssertExclusiveHeld(self);
922#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800923 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800924 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700925 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
926 // to avoid this, however, requeueing can only move all waiters.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700927 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800928 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800929 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700930 }
931#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700932 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700933#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700934}
935
Ian Rogersc604d732012-10-14 16:09:54 -0700936void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700937 guard_.CheckSafeToWait(self);
938 WaitHoldingLocks(self);
939}
940
941void ConditionVariable::WaitHoldingLocks(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700942 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700943 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700944 unsigned int old_recursion_count = guard_.recursion_count_;
945#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700946 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800947 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800948 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700949 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700950 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700951 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700952 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, nullptr, nullptr, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800953 // Futex failed, check it is an expected error.
954 // EAGAIN == EWOULDBLK, so we let the caller try again.
955 // EINTR implies a signal was sent to this thread.
956 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700957 PLOG(FATAL) << "futex wait failed for " << name_;
958 }
959 }
Mathieu Chartier4d87df62016-01-07 15:14:19 -0800960 if (self != nullptr) {
961 JNIEnvExt* const env = self->GetJniEnv();
Ian Rogers55256cb2017-12-21 17:07:11 -0800962 if (UNLIKELY(env != nullptr && env->IsRuntimeDeleted())) {
Mathieu Chartier4d87df62016-01-07 15:14:19 -0800963 CHECK(self->IsDaemon());
964 // If the runtime has been deleted, then we cannot proceed. Just sleep forever. This may
965 // occur for user daemon threads that get a spurious wakeup. This occurs for test 132 with
966 // --host and --gdb.
967 // After we wake up, the runtime may have been shutdown, which means that this condition may
968 // have been deleted. It is not safe to retry the wait.
969 SleepForever();
970 }
971 }
Ian Rogersc604d732012-10-14 16:09:54 -0700972 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800973 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700974 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800975 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700976 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800977 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700978#else
Hans Boehm0882af22017-08-31 15:21:57 -0700979 pid_t old_owner = guard_.GetExclusiveOwnerTid();
Hans Boehm04bb35a2017-09-19 11:01:40 -0700980 guard_.exclusive_owner_.StoreRelaxed(0);
Ian Rogersc604d732012-10-14 16:09:54 -0700981 guard_.recursion_count_ = 0;
982 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Hans Boehm0882af22017-08-31 15:21:57 -0700983 guard_.exclusive_owner_.StoreRelaxed(old_owner);
Ian Rogersc604d732012-10-14 16:09:54 -0700984#endif
985 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700986}
987
Ian Rogers7b078e82014-09-10 14:44:24 -0700988bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700989 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700990 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700991 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700992 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700993 unsigned int old_recursion_count = guard_.recursion_count_;
994#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700995 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800996 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700997 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800998 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800999 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -07001000 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -07001001 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -07001002 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001003 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, nullptr, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -07001004 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -08001005 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -07001006 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -07001007 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -08001008 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -07001009 } else {
1010 PLOG(FATAL) << "timed futex wait failed for " << name_;
1011 }
1012 }
1013 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -08001014 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -07001015 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -08001016 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -07001017 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -08001018 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -07001019#else
Narayan Kamath51b71022014-03-04 11:57:09 +00001020#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -07001021 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -07001022#else
Ian Rogersc604d732012-10-14 16:09:54 -07001023 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -07001024#endif
Hans Boehm0882af22017-08-31 15:21:57 -07001025 pid_t old_owner = guard_.GetExclusiveOwnerTid();
1026 guard_.exclusive_owner_.StoreRelaxed(0);
Ian Rogersc604d732012-10-14 16:09:54 -07001027 guard_.recursion_count_ = 0;
1028 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -07001029 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +00001030 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -07001031 if (rc == ETIMEDOUT) {
1032 timed_out = true;
1033 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -07001034 errno = rc;
1035 PLOG(FATAL) << "TimedWait failed for " << name_;
1036 }
Hans Boehm0882af22017-08-31 15:21:57 -07001037 guard_.exclusive_owner_.StoreRelaxed(old_owner);
Ian Rogersc604d732012-10-14 16:09:54 -07001038#endif
1039 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -07001040 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -07001041}
1042
Ian Rogers719d1a32014-03-06 12:13:39 -08001043void Locks::Init() {
1044 if (logging_lock_ != nullptr) {
1045 // Already initialized.
Vladimir Marko33bff252017-11-01 14:35:42 +00001046 if (kRuntimeISA == InstructionSet::kX86 || kRuntimeISA == InstructionSet::kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001047 DCHECK(modify_ldt_lock_ != nullptr);
1048 } else {
1049 DCHECK(modify_ldt_lock_ == nullptr);
1050 }
Ian Rogers719d1a32014-03-06 12:13:39 -08001051 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001052 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -07001053 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001054 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001055 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001056 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001057 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001058 DCHECK(heap_bitmap_lock_ != nullptr);
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001059 DCHECK(oat_file_manager_lock_ != nullptr);
David Brazdilca3c8c32016-09-06 14:04:48 +01001060 DCHECK(verifier_deps_lock_ != nullptr);
Richard Uhlera206c742016-05-24 15:04:22 -07001061 DCHECK(host_dlopen_handles_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001062 DCHECK(intern_table_lock_ != nullptr);
Andreas Gampec8089542017-01-16 12:41:12 -08001063 DCHECK(jni_function_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -07001064 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001065 DCHECK(logging_lock_ != nullptr);
1066 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -07001067 DCHECK(profiler_lock_ != nullptr);
Mingyao Yang063fc772016-08-02 11:02:54 -07001068 DCHECK(cha_lock_ != nullptr);
Igor Murashkin495e7832017-10-27 10:56:20 -07001069 DCHECK(subtype_check_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001070 DCHECK(thread_list_lock_ != nullptr);
1071 DCHECK(thread_suspend_count_lock_ != nullptr);
1072 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001073 DCHECK(unexpected_signal_lock_ != nullptr);
Alex Light88fd7202017-06-30 08:31:59 -07001074 DCHECK(user_code_suspension_lock_ != nullptr);
Andreas Gampecc1b5352016-12-01 16:58:38 -08001075 DCHECK(dex_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -08001076 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001077 // Create global locks in level order from highest lock level to lowest.
Ian Rogers4ad5cd32014-11-11 23:08:07 -08001078 LockLevel current_lock_level = kInstrumentEntrypointsLock;
1079 DCHECK(instrument_entrypoints_lock_ == nullptr);
1080 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -08001081
Chao-ying Fu9e369312014-05-21 11:20:52 -07001082 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Chih-Hung Hsiehfba39972016-05-11 11:26:48 -07001083 if ((new_level) >= current_lock_level) { \
Brian Carlstrom306db812014-09-05 13:01:41 -07001084 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
1085 fprintf(stderr, "New local level %d is not less than current level %d\n", \
1086 new_level, current_lock_level); \
1087 exit(1); \
1088 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -07001089 current_lock_level = new_level;
1090
Alex Light88fd7202017-06-30 08:31:59 -07001091 UPDATE_CURRENT_LOCK_LEVEL(kUserCodeSuspensionLock);
1092 DCHECK(user_code_suspension_lock_ == nullptr);
1093 user_code_suspension_lock_ = new Mutex("user code suspension lock", current_lock_level);
1094
Ian Rogersf3d874c2014-07-17 18:52:42 -07001095 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
1096 DCHECK(mutator_lock_ == nullptr);
Yu Lieac44242015-06-29 10:50:03 +08001097 mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001098
1099 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
1100 DCHECK(heap_bitmap_lock_ == nullptr);
1101 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
1102
Jeff Hao69dbec62014-09-15 18:03:41 -07001103 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
1104 DCHECK(trace_lock_ == nullptr);
1105 trace_lock_ = new Mutex("trace lock", current_lock_level);
1106
Chao-ying Fu9e369312014-05-21 11:20:52 -07001107 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
1108 DCHECK(runtime_shutdown_lock_ == nullptr);
1109 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
1110
1111 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
1112 DCHECK(profiler_lock_ == nullptr);
1113 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
1114
Brian Carlstrom306db812014-09-05 13:01:41 -07001115 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
1116 DCHECK(deoptimization_lock_ == nullptr);
1117 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
1118
1119 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
1120 DCHECK(alloc_tracker_lock_ == nullptr);
1121 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
1122
Chao-ying Fu9e369312014-05-21 11:20:52 -07001123 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
1124 DCHECK(thread_list_lock_ == nullptr);
1125 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
1126
Ian Rogers68d8b422014-07-17 11:09:10 -07001127 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
1128 DCHECK(jni_libraries_lock_ == nullptr);
1129 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
1130
Chao-ying Fu9e369312014-05-21 11:20:52 -07001131 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001132 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +02001133 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001134
Igor Murashkin495e7832017-10-27 10:56:20 -07001135 UPDATE_CURRENT_LOCK_LEVEL(kSubtypeCheckLock);
1136 DCHECK(subtype_check_lock_ == nullptr);
1137 subtype_check_lock_ = new Mutex("SubtypeCheck lock", current_lock_level);
1138
Mingyao Yang063fc772016-08-02 11:02:54 -07001139 UPDATE_CURRENT_LOCK_LEVEL(kCHALock);
1140 DCHECK(cha_lock_ == nullptr);
1141 cha_lock_ = new Mutex("CHA lock", current_lock_level);
1142
Chao-ying Fu9e369312014-05-21 11:20:52 -07001143 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001144 DCHECK(classlinker_classes_lock_ == nullptr);
1145 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -07001146 current_lock_level);
1147
Andreas Gampe74240812014-04-17 10:35:09 -07001148 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
1149 DCHECK(allocated_monitor_ids_lock_ == nullptr);
1150 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
1151
Chao-ying Fu9e369312014-05-21 11:20:52 -07001152 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
1153 DCHECK(allocated_thread_ids_lock_ == nullptr);
1154 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
1155
Vladimir Marko33bff252017-11-01 14:35:42 +00001156 if (kRuntimeISA == InstructionSet::kX86 || kRuntimeISA == InstructionSet::kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001157 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
1158 DCHECK(modify_ldt_lock_ == nullptr);
1159 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
1160 }
1161
Andreas Gampecc1b5352016-12-01 16:58:38 -08001162 UPDATE_CURRENT_LOCK_LEVEL(kDexLock);
1163 DCHECK(dex_lock_ == nullptr);
1164 dex_lock_ = new ReaderWriterMutex("ClassLinker dex lock", current_lock_level);
1165
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001166 UPDATE_CURRENT_LOCK_LEVEL(kOatFileManagerLock);
1167 DCHECK(oat_file_manager_lock_ == nullptr);
1168 oat_file_manager_lock_ = new ReaderWriterMutex("OatFile manager lock", current_lock_level);
1169
David Brazdilca3c8c32016-09-06 14:04:48 +01001170 UPDATE_CURRENT_LOCK_LEVEL(kVerifierDepsLock);
1171 DCHECK(verifier_deps_lock_ == nullptr);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001172 verifier_deps_lock_ = new ReaderWriterMutex("verifier deps lock", current_lock_level);
David Brazdilca3c8c32016-09-06 14:04:48 +01001173
Richard Uhlera206c742016-05-24 15:04:22 -07001174 UPDATE_CURRENT_LOCK_LEVEL(kHostDlOpenHandlesLock);
1175 DCHECK(host_dlopen_handles_lock_ == nullptr);
1176 host_dlopen_handles_lock_ = new Mutex("host dlopen handles lock", current_lock_level);
Mathieu Chartiere58991b2015-10-13 07:59:34 -07001177
Chao-ying Fu9e369312014-05-21 11:20:52 -07001178 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001179 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001180 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1181
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001182 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1183 DCHECK(reference_processor_lock_ == nullptr);
1184 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1185
1186 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1187 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1188 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1189
1190 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1191 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1192 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1193
1194 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1195 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1196 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1197
1198 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1199 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1200 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1201
1202 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1203 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1204 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1205
Andreas Gampe05a364c2016-10-14 13:27:12 -07001206 UPDATE_CURRENT_LOCK_LEVEL(kJniGlobalsLock);
1207 DCHECK(jni_globals_lock_ == nullptr);
1208 jni_globals_lock_ =
1209 new ReaderWriterMutex("JNI global reference table lock", current_lock_level);
1210
1211 UPDATE_CURRENT_LOCK_LEVEL(kJniWeakGlobalsLock);
1212 DCHECK(jni_weak_globals_lock_ == nullptr);
1213 jni_weak_globals_lock_ = new Mutex("JNI weak global reference table lock", current_lock_level);
1214
Andreas Gampec8089542017-01-16 12:41:12 -08001215 UPDATE_CURRENT_LOCK_LEVEL(kJniFunctionTableLock);
1216 DCHECK(jni_function_table_lock_ == nullptr);
1217 jni_function_table_lock_ = new Mutex("JNI function table lock", current_lock_level);
1218
Chao-ying Fu9e369312014-05-21 11:20:52 -07001219 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1220 DCHECK(abort_lock_ == nullptr);
1221 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1222
1223 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1224 DCHECK(thread_suspend_count_lock_ == nullptr);
1225 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1226
1227 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1228 DCHECK(unexpected_signal_lock_ == nullptr);
1229 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1230
1231 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1232 DCHECK(logging_lock_ == nullptr);
1233 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1234
1235 #undef UPDATE_CURRENT_LOCK_LEVEL
Mathieu Chartier91e56692015-03-03 13:51:04 -08001236
Hiroshi Yamauchia2224042017-02-08 16:35:45 -08001237 // List of mutexes that we may hold when accessing a weak ref.
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -08001238 AddToExpectedMutexesOnWeakRefAccess(dex_lock_, /*need_lock*/ false);
1239 AddToExpectedMutexesOnWeakRefAccess(classlinker_classes_lock_, /*need_lock*/ false);
1240 AddToExpectedMutexesOnWeakRefAccess(jni_libraries_lock_, /*need_lock*/ false);
Hiroshi Yamauchia2224042017-02-08 16:35:45 -08001241
Mathieu Chartier91e56692015-03-03 13:51:04 -08001242 InitConditions();
Ian Rogers719d1a32014-03-06 12:13:39 -08001243 }
1244}
1245
Mathieu Chartier91e56692015-03-03 13:51:04 -08001246void Locks::InitConditions() {
1247 thread_exit_cond_ = new ConditionVariable("thread exit condition variable", *thread_list_lock_);
1248}
Ian Rogers719d1a32014-03-06 12:13:39 -08001249
David Sehrf42eb2c2016-10-19 13:20:45 -07001250void Locks::SetClientCallback(ClientCallback* safe_to_call_abort_cb) {
1251 safe_to_call_abort_callback.StoreRelease(safe_to_call_abort_cb);
1252}
1253
1254// Helper to allow checking shutdown while ignoring locking requirements.
1255bool Locks::IsSafeToCallAbortRacy() {
1256 Locks::ClientCallback* safe_to_call_abort_cb = safe_to_call_abort_callback.LoadAcquire();
1257 return safe_to_call_abort_cb != nullptr && safe_to_call_abort_cb();
1258}
1259
Hiroshi Yamauchi8a433242017-03-07 14:39:22 -08001260void Locks::AddToExpectedMutexesOnWeakRefAccess(BaseMutex* mutex, bool need_lock) {
1261 if (need_lock) {
1262 ScopedExpectedMutexesOnWeakRefAccessLock mu(mutex);
1263 mutex->SetShouldRespondToEmptyCheckpointRequest(true);
1264 expected_mutexes_on_weak_ref_access_.push_back(mutex);
1265 } else {
1266 mutex->SetShouldRespondToEmptyCheckpointRequest(true);
1267 expected_mutexes_on_weak_ref_access_.push_back(mutex);
1268 }
1269}
1270
1271void Locks::RemoveFromExpectedMutexesOnWeakRefAccess(BaseMutex* mutex, bool need_lock) {
1272 if (need_lock) {
1273 ScopedExpectedMutexesOnWeakRefAccessLock mu(mutex);
1274 mutex->SetShouldRespondToEmptyCheckpointRequest(false);
1275 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_;
1276 auto it = std::find(list.begin(), list.end(), mutex);
1277 DCHECK(it != list.end());
1278 list.erase(it);
1279 } else {
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 }
1286}
1287
1288bool Locks::IsExpectedOnWeakRefAccess(BaseMutex* mutex) {
1289 ScopedExpectedMutexesOnWeakRefAccessLock mu(mutex);
1290 std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_;
1291 return std::find(list.begin(), list.end(), mutex) != list.end();
1292}
1293
Elliott Hughese62934d2012-04-09 11:24:29 -07001294} // namespace art