blob: bde28866c99fbc708955756d8f2576bd331c19d4 [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
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070022#include "atomic.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080023#include "base/logging.h"
Ian Rogers693ff612013-02-01 10:56:12 -080024#include "mutex-inl.h"
Elliott Hughes6b355752012-01-13 16:49:08 -080025#include "runtime.h"
Ian Rogersc604d732012-10-14 16:09:54 -070026#include "scoped_thread_state_change.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070027#include "thread-inl.h"
Elliott Hughesffb465f2012-03-01 18:46:05 -080028#include "utils.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070029
30namespace art {
31
Ian Rogers719d1a32014-03-06 12:13:39 -080032Mutex* Locks::abort_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070033Mutex* Locks::allocated_thread_ids_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080034Mutex* Locks::breakpoint_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080035ReaderWriterMutex* Locks::classlinker_classes_lock_ = nullptr;
36ReaderWriterMutex* Locks::heap_bitmap_lock_ = nullptr;
37Mutex* Locks::logging_lock_ = nullptr;
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070038Mutex* Locks::mem_maps_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070039Mutex* Locks::modify_ldt_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080040ReaderWriterMutex* Locks::mutator_lock_ = nullptr;
41Mutex* Locks::runtime_shutdown_lock_ = nullptr;
42Mutex* Locks::thread_list_lock_ = nullptr;
43Mutex* Locks::thread_suspend_count_lock_ = nullptr;
44Mutex* Locks::trace_lock_ = nullptr;
45Mutex* Locks::profiler_lock_ = nullptr;
46Mutex* Locks::unexpected_signal_lock_ = nullptr;
47Mutex* Locks::intern_table_lock_ = nullptr;
48
49struct AllMutexData {
50 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
51 Atomic<const BaseMutex*> all_mutexes_guard;
52 // All created mutexes guarded by all_mutexes_guard_.
53 std::set<BaseMutex*>* all_mutexes;
54 AllMutexData() : all_mutexes(NULL) {}
55};
56static struct AllMutexData gAllMutexData[kAllMutexDataSize];
57
Ian Rogersc604d732012-10-14 16:09:54 -070058#if ART_USE_FUTEXES
59static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070060 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070061 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
62 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
63 if (result_ts->tv_nsec < 0) {
64 result_ts->tv_sec--;
65 result_ts->tv_nsec += one_sec;
66 } else if (result_ts->tv_nsec > one_sec) {
67 result_ts->tv_sec++;
68 result_ts->tv_nsec -= one_sec;
69 }
70 return result_ts->tv_sec < 0;
71}
72#endif
73
Ian Rogers56edc432013-01-18 16:51:51 -080074class ScopedAllMutexesLock {
75 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070076 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -070077 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -080078 NanoSleep(100);
79 }
80 }
81 ~ScopedAllMutexesLock() {
Ian Rogers3e5cf302014-05-20 16:40:37 -070082 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers56edc432013-01-18 16:51:51 -080083 NanoSleep(100);
84 }
85 }
86 private:
87 const BaseMutex* const mutex_;
88};
Ian Rogers56edc432013-01-18 16:51:51 -080089
90BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070091 if (kLogLockContentions) {
92 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -070093 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070094 if (*all_mutexes_ptr == NULL) {
95 // We leak the global set of all mutexes to avoid ordering issues in global variable
96 // construction/destruction.
97 *all_mutexes_ptr = new std::set<BaseMutex*>();
98 }
99 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800100 }
Ian Rogers56edc432013-01-18 16:51:51 -0800101}
102
103BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700104 if (kLogLockContentions) {
105 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700106 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700107 }
Ian Rogers56edc432013-01-18 16:51:51 -0800108}
109
110void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700111 if (kLogLockContentions) {
112 os << "Mutex logging:\n";
113 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700114 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700115 if (all_mutexes == NULL) {
116 // No mutexes have been created yet during at startup.
117 return;
118 }
119 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700120 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700121 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
122 BaseMutex* mutex = *it;
123 if (mutex->HasEverContended()) {
124 mutex->Dump(os);
125 os << "\n";
126 }
127 }
128 os << "(Never contented)\n";
129 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
130 BaseMutex* mutex = *it;
131 if (!mutex->HasEverContended()) {
132 mutex->Dump(os);
133 os << "\n";
134 }
135 }
Ian Rogers56edc432013-01-18 16:51:51 -0800136 }
Ian Rogers56edc432013-01-18 16:51:51 -0800137}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700138
Ian Rogers81d425b2012-09-27 16:03:43 -0700139void BaseMutex::CheckSafeToWait(Thread* self) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700140 if (self == NULL) {
141 CheckUnattachedThread(level_);
142 return;
143 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700144 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700145 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
146 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700147 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800148 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700149 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700150 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogers25fd14b2012-09-05 10:56:38 -0700151 if (held_mutex != NULL) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800152 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
153 << "(level " << LockLevel(i) << ") while performing wait on "
154 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700155 bad_mutexes_held = true;
156 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700157 }
158 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700159 CHECK(!bad_mutexes_held);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700160 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700161}
162
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700163inline void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
164 if (kLogLockContentions) {
165 // Atomically add value to wait_time.
166 uint64_t new_val, old_val;
167 volatile int64_t* addr = reinterpret_cast<volatile int64_t*>(&wait_time);
168 volatile const int64_t* caddr = const_cast<volatile const int64_t*>(addr);
169 do {
170 old_val = static_cast<uint64_t>(QuasiAtomic::Read64(caddr));
171 new_val = old_val + value;
172 } while (!QuasiAtomic::Cas64(static_cast<int64_t>(old_val), static_cast<int64_t>(new_val), addr));
173 }
174}
175
Brian Carlstrom0de79852013-07-25 22:29:58 -0700176void BaseMutex::RecordContention(uint64_t blocked_tid,
177 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700178 uint64_t nano_time_blocked) {
179 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700180 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700181 ++(data->contention_count);
182 data->AddToWaitTime(nano_time_blocked);
183 ContentionLogEntry* log = data->contention_log;
184 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700185 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700186 if (log[slot].blocked_tid == blocked_tid &&
187 log[slot].owner_tid == blocked_tid) {
188 ++log[slot].count;
189 } else {
190 uint32_t new_slot;
191 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700192 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700193 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700194 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700195 log[new_slot].blocked_tid = blocked_tid;
196 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700197 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700198 }
Ian Rogers56edc432013-01-18 16:51:51 -0800199 }
Ian Rogers56edc432013-01-18 16:51:51 -0800200}
201
Ian Rogers56edc432013-01-18 16:51:51 -0800202void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700203 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700204 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700205 const ContentionLogEntry* log = data->contention_log;
206 uint64_t wait_time = data->wait_time;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700207 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700208 if (contention_count == 0) {
209 os << "never contended";
210 } else {
211 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700212 << " total wait of contender " << PrettyDuration(wait_time)
213 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700214 SafeMap<uint64_t, size_t> most_common_blocker;
215 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700216 for (size_t i = 0; i < kContentionLogSize; ++i) {
217 uint64_t blocked_tid = log[i].blocked_tid;
218 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700219 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700220 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700221 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700222 if (it != most_common_blocked.end()) {
223 most_common_blocked.Overwrite(blocked_tid, it->second + count);
224 } else {
225 most_common_blocked.Put(blocked_tid, count);
226 }
227 it = most_common_blocker.find(owner_tid);
228 if (it != most_common_blocker.end()) {
229 most_common_blocker.Overwrite(owner_tid, it->second + count);
230 } else {
231 most_common_blocker.Put(owner_tid, count);
232 }
Ian Rogers56edc432013-01-18 16:51:51 -0800233 }
234 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700235 uint64_t max_tid = 0;
236 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700237 for (const auto& pair : most_common_blocked) {
238 if (pair.second > max_tid_count) {
239 max_tid = pair.first;
240 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700241 }
Ian Rogers56edc432013-01-18 16:51:51 -0800242 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700243 if (max_tid != 0) {
244 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800245 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700246 max_tid = 0;
247 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700248 for (const auto& pair : most_common_blocker) {
249 if (pair.second > max_tid_count) {
250 max_tid = pair.first;
251 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700252 }
253 }
254 if (max_tid != 0) {
255 os << " sample shows tid=" << max_tid << " owning during this time";
256 }
Ian Rogers56edc432013-01-18 16:51:51 -0800257 }
258 }
Ian Rogers56edc432013-01-18 16:51:51 -0800259}
260
261
Ian Rogers81d425b2012-09-27 16:03:43 -0700262Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700263 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700264#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700265 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700266 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700267#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700268 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700269#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700270 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700271}
272
273Mutex::~Mutex() {
Ian Rogersc604d732012-10-14 16:09:54 -0700274#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700275 if (state_.LoadRelaxed() != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700276 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700277 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700278 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
279 } else {
280 CHECK_EQ(exclusive_owner_, 0U) << "unexpectedly found an owner on unlocked mutex " << name_;
Ian Rogersc7190692014-07-08 23:50:26 -0700281 CHECK_EQ(num_contenders_.LoadSequentiallyConsistent(), 0)
Ian Rogers3e5cf302014-05-20 16:40:37 -0700282 << "unexpectedly found a contender on mutex " << name_;
Ian Rogersc604d732012-10-14 16:09:54 -0700283 }
284#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700285 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
286 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800287 int rc = pthread_mutex_destroy(&mutex_);
288 if (rc != 0) {
289 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800290 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700291 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700292 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800293 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughes6b355752012-01-13 16:49:08 -0800294 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
295 }
Ian Rogersc604d732012-10-14 16:09:54 -0700296#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700297}
298
Ian Rogers81d425b2012-09-27 16:03:43 -0700299void Mutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700300 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700301 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700302 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700303 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700304 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700305#if ART_USE_FUTEXES
306 bool done = false;
307 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700308 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700309 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700310 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
311 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700312 } else {
313 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700314 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800315 num_contenders_++;
Ian Rogersc7190692014-07-08 23:50:26 -0700316 if (futex(state_.Address(), FUTEX_WAIT, 1, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700317 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
318 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
319 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700320 PLOG(FATAL) << "futex wait failed for " << name_;
321 }
322 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800323 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700324 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700325 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700326 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700327#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700328 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700329#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700330 DCHECK_EQ(exclusive_owner_, 0U);
331 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700332 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700333 }
334 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700335 if (kDebugLocking) {
336 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
337 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700338 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700339 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700340}
341
Ian Rogers81d425b2012-09-27 16:03:43 -0700342bool Mutex::ExclusiveTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700343 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700344 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700345 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700346 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700347 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700348#if ART_USE_FUTEXES
349 bool done = false;
350 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700351 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700352 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700353 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
354 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700355 } else {
356 return false;
357 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700358 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700359 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700360#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700361 int result = pthread_mutex_trylock(&mutex_);
362 if (result == EBUSY) {
363 return false;
364 }
365 if (result != 0) {
366 errno = result;
367 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
368 }
Ian Rogersc604d732012-10-14 16:09:54 -0700369#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700370 DCHECK_EQ(exclusive_owner_, 0U);
371 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700372 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700373 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700374 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700375 if (kDebugLocking) {
376 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
377 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700378 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700379 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700380 return true;
381}
382
Ian Rogers81d425b2012-09-27 16:03:43 -0700383void Mutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700384 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700385 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700386 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700387 recursion_count_--;
388 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700389 if (kDebugLocking) {
390 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
391 << name_ << " " << recursion_count_;
392 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700393 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700394#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700395 bool done = false;
396 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700397 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700398 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700399 // We're no longer the owner.
400 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700401 // Change state to 0 and impose load/store ordering appropriate for lock release.
402 // Note, the relaxed loads below musn't reorder before the CompareExchange.
403 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
404 // a status bit into the state on contention.
405 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700406 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700407 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700408 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700409 futex(state_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700410 }
411 }
412 } else {
413 // Logging acquires the logging lock, avoid infinite recursion in that case.
414 if (this != Locks::logging_lock_) {
415 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
416 } else {
417 LogMessageData data(__FILE__, __LINE__, INTERNAL_FATAL, -1);
418 LogMessage::LogLine(data, StringPrintf("Unexpected state_ %d in unlock for %s",
419 cur_state, name_).c_str());
420 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700421 }
422 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700423 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700424#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700425 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700426 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700427#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700428 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700429}
430
Ian Rogers56edc432013-01-18 16:51:51 -0800431void Mutex::Dump(std::ostream& os) const {
432 os << (recursive_ ? "recursive " : "non-recursive ")
433 << name_
434 << " level=" << static_cast<int>(level_)
435 << " rec=" << recursion_count_
436 << " owner=" << GetExclusiveOwnerTid() << " ";
437 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700438}
439
440std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800441 mu.Dump(os);
442 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700443}
444
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700445ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
446 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700447#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700448 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700449#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700450{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700451#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700452 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700453#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700454 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700455}
456
457ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700458#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700459 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700460 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700461 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700462 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700463#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700464 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
465 // may still be using locks.
466 int rc = pthread_rwlock_destroy(&rwlock_);
467 if (rc != 0) {
468 errno = rc;
469 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700470 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700471 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800472 bool shutting_down = runtime == NULL || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700473 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800474 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700475#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700476}
477
Ian Rogers81d425b2012-09-27 16:03:43 -0700478void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700479 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700480 AssertNotExclusiveHeld(self);
481#if ART_USE_FUTEXES
482 bool done = false;
483 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700484 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700485 if (LIKELY(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 Rogers81d425b2012-09-27 16:03:43 -0700488 } else {
489 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700490 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700491 ++num_pending_writers_;
492 if (futex(state_.Address(), FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700493 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
494 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
495 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700496 PLOG(FATAL) << "futex wait failed for " << name_;
497 }
498 }
Ian Rogersc7190692014-07-08 23:50:26 -0700499 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700500 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700501 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700502 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700503#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700504 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700505#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700506 DCHECK_EQ(exclusive_owner_, 0U);
507 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700508 RegisterAsLocked(self);
509 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700510}
511
Ian Rogers81d425b2012-09-27 16:03:43 -0700512void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700513 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700514 AssertExclusiveHeld(self);
515 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700516 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700517#if ART_USE_FUTEXES
518 bool done = false;
519 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700520 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700521 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700522 // We're no longer the owner.
523 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700524 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
525 // Note, the relaxed loads below musn't reorder before the CompareExchange.
526 // 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(-1 /* cur_state*/, 0 /* new state */);
529 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700530 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700531 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
532 num_pending_writers_.LoadRelaxed() > 0)) {
533 futex(state_.Address(), FUTEX_WAKE, -1, NULL, NULL, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700534 }
535 }
536 } else {
537 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
538 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700539 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700540#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700541 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700542 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700543#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700544}
545
Ian Rogers66aee5c2012-08-15 17:17:47 -0700546#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700547bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700548 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700549#if ART_USE_FUTEXES
550 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700551 timespec end_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800552 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700553 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700554 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700555 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700556 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
557 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700558 } else {
559 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700560 timespec now_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800561 InitTimeSpec(true, CLOCK_REALTIME, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700562 timespec rel_ts;
563 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
564 return false; // Timed out.
565 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700566 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700567 ++num_pending_writers_;
568 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, NULL, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700569 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700570 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700571 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700572 } else if ((errno != EAGAIN) && (errno != EINTR)) {
573 // EAGAIN and EINTR both indicate a spurious failure,
574 // recompute the relative time out from now and try again.
575 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700576 PLOG(FATAL) << "timed futex wait failed for " << name_;
577 }
578 }
Ian Rogersc7190692014-07-08 23:50:26 -0700579 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700580 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700581 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700582#else
Ian Rogersc604d732012-10-14 16:09:54 -0700583 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700584 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700585 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700586 if (result == ETIMEDOUT) {
587 return false;
588 }
589 if (result != 0) {
590 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700591 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700592 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700593#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700594 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700595 RegisterAsLocked(self);
596 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700597 return true;
598}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700599#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700600
Ian Rogers81d425b2012-09-27 16:03:43 -0700601bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700602 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700603#if ART_USE_FUTEXES
604 bool done = false;
605 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700606 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700607 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700608 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
609 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700610 } else {
611 // Owner holds it exclusively.
612 return false;
613 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700614 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700615#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700616 int result = pthread_rwlock_tryrdlock(&rwlock_);
617 if (result == EBUSY) {
618 return false;
619 }
620 if (result != 0) {
621 errno = result;
622 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
623 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700624#endif
625 RegisterAsLocked(self);
626 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700627 return true;
628}
629
Ian Rogers81d425b2012-09-27 16:03:43 -0700630bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Ian Rogers01ae5802012-09-28 16:14:01 -0700631 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700632 bool result;
633 if (UNLIKELY(self == NULL)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700634 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700635 } else {
636 result = (self->GetHeldMutex(level_) == this);
637 }
638 return result;
639}
640
Ian Rogers56edc432013-01-18 16:51:51 -0800641void ReaderWriterMutex::Dump(std::ostream& os) const {
642 os << name_
643 << " level=" << static_cast<int>(level_)
644 << " owner=" << GetExclusiveOwnerTid() << " ";
645 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700646}
647
648std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800649 mu.Dump(os);
650 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700651}
652
Ian Rogers23055dc2013-04-18 16:29:16 -0700653ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700654 : name_(name), guard_(guard) {
655#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700656 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700657 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700658#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000659 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700660 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000661#if !defined(__APPLE__)
662 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
663 CHECK_MUTEX_CALL(pthread_condattr_setclock(&cond_attrs, CLOCK_MONOTONIC));
664#endif
665 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700666#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700667}
668
669ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800670#if ART_USE_FUTEXES
671 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800672 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700673 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800674 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
675 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800676 }
677#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700678 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
679 // may still be using condition variables.
680 int rc = pthread_cond_destroy(&cond_);
681 if (rc != 0) {
682 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700683 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700684 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800685 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700686 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
687 }
Ian Rogersc604d732012-10-14 16:09:54 -0700688#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700689}
690
Ian Rogersc604d732012-10-14 16:09:54 -0700691void ConditionVariable::Broadcast(Thread* self) {
692 DCHECK(self == NULL || self == Thread::Current());
693 // TODO: enable below, there's a race in thread creation that causes false failures currently.
694 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700695 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700696#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800697 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800698 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700699 bool done = false;
700 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700701 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800702 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
703 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800704 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800705 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700706 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800707 if (!done) {
708 if (errno != EAGAIN) {
709 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
710 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800711 }
Ian Rogersc604d732012-10-14 16:09:54 -0700712 } while (!done);
713 }
714#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700715 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700716#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700717}
718
Ian Rogersc604d732012-10-14 16:09:54 -0700719void ConditionVariable::Signal(Thread* self) {
720 DCHECK(self == NULL || self == Thread::Current());
721 guard_.AssertExclusiveHeld(self);
722#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800723 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800724 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700725 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
726 // to avoid this, however, requeueing can only move all waiters.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800727 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800728 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800729 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700730 }
731#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700732 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700733#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700734}
735
Ian Rogersc604d732012-10-14 16:09:54 -0700736void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700737 guard_.CheckSafeToWait(self);
738 WaitHoldingLocks(self);
739}
740
741void ConditionVariable::WaitHoldingLocks(Thread* self) {
Ian Rogersc604d732012-10-14 16:09:54 -0700742 DCHECK(self == NULL || self == Thread::Current());
743 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700744 unsigned int old_recursion_count = guard_.recursion_count_;
745#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700746 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800747 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800748 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700749 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700750 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700751 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800752 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, NULL, NULL, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800753 // Futex failed, check it is an expected error.
754 // EAGAIN == EWOULDBLK, so we let the caller try again.
755 // EINTR implies a signal was sent to this thread.
756 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700757 PLOG(FATAL) << "futex wait failed for " << name_;
758 }
759 }
760 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800761 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700762 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800763 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700764 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800765 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700766#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700767 uint64_t old_owner = guard_.exclusive_owner_;
768 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700769 guard_.recursion_count_ = 0;
770 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700771 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700772#endif
773 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700774}
775
Ian Rogersc604d732012-10-14 16:09:54 -0700776void ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
777 DCHECK(self == NULL || self == Thread::Current());
778 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700779 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700780 unsigned int old_recursion_count = guard_.recursion_count_;
781#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700782 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800783 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700784 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800785 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800786 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700787 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700788 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700789 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800790 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, NULL, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700791 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800792 // Timed out we're done.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700793 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800794 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700795 } else {
796 PLOG(FATAL) << "timed futex wait failed for " << name_;
797 }
798 }
799 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800800 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700801 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800802 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700803 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800804 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700805#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000806#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700807 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700808#else
Ian Rogersc604d732012-10-14 16:09:54 -0700809 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700810#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700811 uint64_t old_owner = guard_.exclusive_owner_;
812 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700813 guard_.recursion_count_ = 0;
814 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700815 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000816 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Elliott Hughes5f791332011-09-15 17:45:30 -0700817 if (rc != 0 && rc != ETIMEDOUT) {
818 errno = rc;
819 PLOG(FATAL) << "TimedWait failed for " << name_;
820 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700821 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700822#endif
823 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700824}
825
Ian Rogers719d1a32014-03-06 12:13:39 -0800826void Locks::Init() {
827 if (logging_lock_ != nullptr) {
828 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100829 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700830 DCHECK(modify_ldt_lock_ != nullptr);
831 } else {
832 DCHECK(modify_ldt_lock_ == nullptr);
833 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800834 DCHECK(abort_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700835 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800836 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800837 DCHECK(classlinker_classes_lock_ != nullptr);
838 DCHECK(heap_bitmap_lock_ != nullptr);
839 DCHECK(logging_lock_ != nullptr);
840 DCHECK(mutator_lock_ != nullptr);
841 DCHECK(thread_list_lock_ != nullptr);
842 DCHECK(thread_suspend_count_lock_ != nullptr);
843 DCHECK(trace_lock_ != nullptr);
844 DCHECK(profiler_lock_ != nullptr);
845 DCHECK(unexpected_signal_lock_ != nullptr);
846 DCHECK(intern_table_lock_ != nullptr);
847 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700848 // Create global locks in level order from highest lock level to lowest.
849 LockLevel current_lock_level = kMutatorLock;
850 DCHECK(mutator_lock_ == nullptr);
851 mutator_lock_ = new ReaderWriterMutex("mutator lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800852
Chao-ying Fu9e369312014-05-21 11:20:52 -0700853 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
854 DCHECK_LT(new_level, current_lock_level); \
855 current_lock_level = new_level;
856
857 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
858 DCHECK(heap_bitmap_lock_ == nullptr);
859 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
860
861 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
862 DCHECK(runtime_shutdown_lock_ == nullptr);
863 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
864
865 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
866 DCHECK(profiler_lock_ == nullptr);
867 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
868
869 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
870 DCHECK(trace_lock_ == nullptr);
871 trace_lock_ = new Mutex("trace lock", current_lock_level);
872
873 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
874 DCHECK(thread_list_lock_ == nullptr);
875 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
876
877 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800878 DCHECK(breakpoint_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700879 breakpoint_lock_ = new Mutex("breakpoint lock", current_lock_level);
880
881 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800882 DCHECK(classlinker_classes_lock_ == nullptr);
883 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -0700884 current_lock_level);
885
886 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
887 DCHECK(allocated_thread_ids_lock_ == nullptr);
888 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
889
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100890 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700891 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
892 DCHECK(modify_ldt_lock_ == nullptr);
893 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
894 }
895
896 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800897 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700898 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
899
900
901 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
902 DCHECK(abort_lock_ == nullptr);
903 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
904
905 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
906 DCHECK(thread_suspend_count_lock_ == nullptr);
907 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
908
909 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
910 DCHECK(unexpected_signal_lock_ == nullptr);
911 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
912
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700913 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
914 DCHECK(mem_maps_lock_ == nullptr);
915 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
916
Chao-ying Fu9e369312014-05-21 11:20:52 -0700917 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
918 DCHECK(logging_lock_ == nullptr);
919 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
920
921 #undef UPDATE_CURRENT_LOCK_LEVEL
Ian Rogers719d1a32014-03-06 12:13:39 -0800922 }
923}
924
925
Elliott Hughese62934d2012-04-09 11:24:29 -0700926} // namespace art