blob: 77795477250cd194b45c0caaccd734cb038737de [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;
Andreas Gampe74240812014-04-17 10:35:09 -070033Mutex* Locks::allocated_monitor_ids_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070034Mutex* Locks::allocated_thread_ids_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080035Mutex* Locks::breakpoint_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080036ReaderWriterMutex* Locks::classlinker_classes_lock_ = nullptr;
37ReaderWriterMutex* Locks::heap_bitmap_lock_ = nullptr;
38Mutex* Locks::logging_lock_ = nullptr;
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070039Mutex* Locks::mem_maps_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070040Mutex* Locks::modify_ldt_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080041ReaderWriterMutex* Locks::mutator_lock_ = nullptr;
42Mutex* Locks::runtime_shutdown_lock_ = nullptr;
43Mutex* Locks::thread_list_lock_ = nullptr;
44Mutex* Locks::thread_suspend_count_lock_ = nullptr;
45Mutex* Locks::trace_lock_ = nullptr;
46Mutex* Locks::profiler_lock_ = nullptr;
47Mutex* Locks::unexpected_signal_lock_ = nullptr;
48Mutex* Locks::intern_table_lock_ = nullptr;
49
50struct AllMutexData {
51 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
52 Atomic<const BaseMutex*> all_mutexes_guard;
53 // All created mutexes guarded by all_mutexes_guard_.
54 std::set<BaseMutex*>* all_mutexes;
55 AllMutexData() : all_mutexes(NULL) {}
56};
57static struct AllMutexData gAllMutexData[kAllMutexDataSize];
58
Ian Rogersc604d732012-10-14 16:09:54 -070059#if ART_USE_FUTEXES
60static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070061 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070062 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
63 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
64 if (result_ts->tv_nsec < 0) {
65 result_ts->tv_sec--;
66 result_ts->tv_nsec += one_sec;
67 } else if (result_ts->tv_nsec > one_sec) {
68 result_ts->tv_sec++;
69 result_ts->tv_nsec -= one_sec;
70 }
71 return result_ts->tv_sec < 0;
72}
73#endif
74
Ian Rogers56edc432013-01-18 16:51:51 -080075class ScopedAllMutexesLock {
76 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070077 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -070078 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -080079 NanoSleep(100);
80 }
81 }
82 ~ScopedAllMutexesLock() {
Ian Rogers3e5cf302014-05-20 16:40:37 -070083 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers56edc432013-01-18 16:51:51 -080084 NanoSleep(100);
85 }
86 }
87 private:
88 const BaseMutex* const mutex_;
89};
Ian Rogers56edc432013-01-18 16:51:51 -080090
91BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070092 if (kLogLockContentions) {
93 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -070094 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070095 if (*all_mutexes_ptr == NULL) {
96 // We leak the global set of all mutexes to avoid ordering issues in global variable
97 // construction/destruction.
98 *all_mutexes_ptr = new std::set<BaseMutex*>();
99 }
100 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800101 }
Ian Rogers56edc432013-01-18 16:51:51 -0800102}
103
104BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700105 if (kLogLockContentions) {
106 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700107 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700108 }
Ian Rogers56edc432013-01-18 16:51:51 -0800109}
110
111void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700112 if (kLogLockContentions) {
113 os << "Mutex logging:\n";
114 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700115 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700116 if (all_mutexes == NULL) {
117 // No mutexes have been created yet during at startup.
118 return;
119 }
120 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700121 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700122 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
123 BaseMutex* mutex = *it;
124 if (mutex->HasEverContended()) {
125 mutex->Dump(os);
126 os << "\n";
127 }
128 }
129 os << "(Never contented)\n";
130 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
131 BaseMutex* mutex = *it;
132 if (!mutex->HasEverContended()) {
133 mutex->Dump(os);
134 os << "\n";
135 }
136 }
Ian Rogers56edc432013-01-18 16:51:51 -0800137 }
Ian Rogers56edc432013-01-18 16:51:51 -0800138}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700139
Ian Rogers81d425b2012-09-27 16:03:43 -0700140void BaseMutex::CheckSafeToWait(Thread* self) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700141 if (self == NULL) {
142 CheckUnattachedThread(level_);
143 return;
144 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700145 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700146 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
147 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700148 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800149 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700150 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700151 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogers25fd14b2012-09-05 10:56:38 -0700152 if (held_mutex != NULL) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800153 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
154 << "(level " << LockLevel(i) << ") while performing wait on "
155 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700156 bad_mutexes_held = true;
157 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700158 }
159 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700160 CHECK(!bad_mutexes_held);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700161 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700162}
163
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700164inline void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
165 if (kLogLockContentions) {
166 // Atomically add value to wait_time.
167 uint64_t new_val, old_val;
168 volatile int64_t* addr = reinterpret_cast<volatile int64_t*>(&wait_time);
169 volatile const int64_t* caddr = const_cast<volatile const int64_t*>(addr);
170 do {
171 old_val = static_cast<uint64_t>(QuasiAtomic::Read64(caddr));
172 new_val = old_val + value;
173 } while (!QuasiAtomic::Cas64(static_cast<int64_t>(old_val), static_cast<int64_t>(new_val), addr));
174 }
175}
176
Brian Carlstrom0de79852013-07-25 22:29:58 -0700177void BaseMutex::RecordContention(uint64_t blocked_tid,
178 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700179 uint64_t nano_time_blocked) {
180 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700181 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700182 ++(data->contention_count);
183 data->AddToWaitTime(nano_time_blocked);
184 ContentionLogEntry* log = data->contention_log;
185 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700186 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700187 if (log[slot].blocked_tid == blocked_tid &&
188 log[slot].owner_tid == blocked_tid) {
189 ++log[slot].count;
190 } else {
191 uint32_t new_slot;
192 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700193 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700194 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700195 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700196 log[new_slot].blocked_tid = blocked_tid;
197 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700198 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700199 }
Ian Rogers56edc432013-01-18 16:51:51 -0800200 }
Ian Rogers56edc432013-01-18 16:51:51 -0800201}
202
Ian Rogers56edc432013-01-18 16:51:51 -0800203void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700204 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700205 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700206 const ContentionLogEntry* log = data->contention_log;
207 uint64_t wait_time = data->wait_time;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700208 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700209 if (contention_count == 0) {
210 os << "never contended";
211 } else {
212 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700213 << " total wait of contender " << PrettyDuration(wait_time)
214 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700215 SafeMap<uint64_t, size_t> most_common_blocker;
216 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700217 for (size_t i = 0; i < kContentionLogSize; ++i) {
218 uint64_t blocked_tid = log[i].blocked_tid;
219 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700220 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700221 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700222 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700223 if (it != most_common_blocked.end()) {
224 most_common_blocked.Overwrite(blocked_tid, it->second + count);
225 } else {
226 most_common_blocked.Put(blocked_tid, count);
227 }
228 it = most_common_blocker.find(owner_tid);
229 if (it != most_common_blocker.end()) {
230 most_common_blocker.Overwrite(owner_tid, it->second + count);
231 } else {
232 most_common_blocker.Put(owner_tid, count);
233 }
Ian Rogers56edc432013-01-18 16:51:51 -0800234 }
235 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700236 uint64_t max_tid = 0;
237 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700238 for (const auto& pair : most_common_blocked) {
239 if (pair.second > max_tid_count) {
240 max_tid = pair.first;
241 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700242 }
Ian Rogers56edc432013-01-18 16:51:51 -0800243 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700244 if (max_tid != 0) {
245 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800246 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700247 max_tid = 0;
248 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700249 for (const auto& pair : most_common_blocker) {
250 if (pair.second > max_tid_count) {
251 max_tid = pair.first;
252 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700253 }
254 }
255 if (max_tid != 0) {
256 os << " sample shows tid=" << max_tid << " owning during this time";
257 }
Ian Rogers56edc432013-01-18 16:51:51 -0800258 }
259 }
Ian Rogers56edc432013-01-18 16:51:51 -0800260}
261
262
Ian Rogers81d425b2012-09-27 16:03:43 -0700263Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700264 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700265#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700266 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700267 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700268#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700269 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700270#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700271 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700272}
273
274Mutex::~Mutex() {
Ian Rogersc604d732012-10-14 16:09:54 -0700275#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700276 if (state_.LoadRelaxed() != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700277 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700278 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700279 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
280 } else {
281 CHECK_EQ(exclusive_owner_, 0U) << "unexpectedly found an owner on unlocked mutex " << name_;
Ian Rogersc7190692014-07-08 23:50:26 -0700282 CHECK_EQ(num_contenders_.LoadSequentiallyConsistent(), 0)
Ian Rogers3e5cf302014-05-20 16:40:37 -0700283 << "unexpectedly found a contender on mutex " << name_;
Ian Rogersc604d732012-10-14 16:09:54 -0700284 }
285#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700286 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
287 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800288 int rc = pthread_mutex_destroy(&mutex_);
289 if (rc != 0) {
290 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800291 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700292 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700293 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800294 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughes6b355752012-01-13 16:49:08 -0800295 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
296 }
Ian Rogersc604d732012-10-14 16:09:54 -0700297#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700298}
299
Ian Rogers81d425b2012-09-27 16:03:43 -0700300void Mutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700301 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700302 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700303 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700304 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700305 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700306#if ART_USE_FUTEXES
307 bool done = false;
308 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700309 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700310 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700311 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
312 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700313 } else {
314 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700315 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800316 num_contenders_++;
Ian Rogersc7190692014-07-08 23:50:26 -0700317 if (futex(state_.Address(), FUTEX_WAIT, 1, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700318 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
319 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
320 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700321 PLOG(FATAL) << "futex wait failed for " << name_;
322 }
323 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800324 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700325 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700326 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700327 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700328#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700329 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700330#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700331 DCHECK_EQ(exclusive_owner_, 0U);
332 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700333 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700334 }
335 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700336 if (kDebugLocking) {
337 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
338 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700339 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700340 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700341}
342
Ian Rogers81d425b2012-09-27 16:03:43 -0700343bool Mutex::ExclusiveTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700344 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700345 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700346 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700347 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700348 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700349#if ART_USE_FUTEXES
350 bool done = false;
351 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700352 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700353 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700354 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
355 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700356 } else {
357 return false;
358 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700359 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700360 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700361#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700362 int result = pthread_mutex_trylock(&mutex_);
363 if (result == EBUSY) {
364 return false;
365 }
366 if (result != 0) {
367 errno = result;
368 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
369 }
Ian Rogersc604d732012-10-14 16:09:54 -0700370#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700371 DCHECK_EQ(exclusive_owner_, 0U);
372 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700373 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700374 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700375 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700376 if (kDebugLocking) {
377 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
378 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700379 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700380 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700381 return true;
382}
383
Ian Rogers81d425b2012-09-27 16:03:43 -0700384void Mutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700385 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700386 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700387 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700388 recursion_count_--;
389 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700390 if (kDebugLocking) {
391 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
392 << name_ << " " << recursion_count_;
393 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700394 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700395#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700396 bool done = false;
397 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700398 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700399 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700400 // We're no longer the owner.
401 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700402 // Change state to 0 and impose load/store ordering appropriate for lock release.
403 // Note, the relaxed loads below musn't reorder before the CompareExchange.
404 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
405 // a status bit into the state on contention.
406 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700407 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700408 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700409 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700410 futex(state_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700411 }
412 }
413 } else {
414 // Logging acquires the logging lock, avoid infinite recursion in that case.
415 if (this != Locks::logging_lock_) {
416 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
417 } else {
418 LogMessageData data(__FILE__, __LINE__, INTERNAL_FATAL, -1);
419 LogMessage::LogLine(data, StringPrintf("Unexpected state_ %d in unlock for %s",
420 cur_state, name_).c_str());
421 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700422 }
423 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700424 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700425#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700426 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700427 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700428#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700429 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700430}
431
Ian Rogers56edc432013-01-18 16:51:51 -0800432void Mutex::Dump(std::ostream& os) const {
433 os << (recursive_ ? "recursive " : "non-recursive ")
434 << name_
435 << " level=" << static_cast<int>(level_)
436 << " rec=" << recursion_count_
437 << " owner=" << GetExclusiveOwnerTid() << " ";
438 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700439}
440
441std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800442 mu.Dump(os);
443 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700444}
445
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700446ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
447 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700448#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700449 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700450#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700451{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700452#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700453 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700454#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700455 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700456}
457
458ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700459#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700460 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700461 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700462 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700463 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700464#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700465 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
466 // may still be using locks.
467 int rc = pthread_rwlock_destroy(&rwlock_);
468 if (rc != 0) {
469 errno = rc;
470 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700471 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700472 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800473 bool shutting_down = runtime == NULL || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700474 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800475 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700476#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700477}
478
Ian Rogers81d425b2012-09-27 16:03:43 -0700479void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700480 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700481 AssertNotExclusiveHeld(self);
482#if ART_USE_FUTEXES
483 bool done = false;
484 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700485 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700486 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700487 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
488 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700489 } else {
490 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700491 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700492 ++num_pending_writers_;
493 if (futex(state_.Address(), FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700494 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
495 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
496 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700497 PLOG(FATAL) << "futex wait failed for " << name_;
498 }
499 }
Ian Rogersc7190692014-07-08 23:50:26 -0700500 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700501 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700502 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700503 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700504#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700505 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700506#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700507 DCHECK_EQ(exclusive_owner_, 0U);
508 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700509 RegisterAsLocked(self);
510 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700511}
512
Ian Rogers81d425b2012-09-27 16:03:43 -0700513void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700514 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700515 AssertExclusiveHeld(self);
516 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700517 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700518#if ART_USE_FUTEXES
519 bool done = false;
520 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700521 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700522 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700523 // We're no longer the owner.
524 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700525 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
526 // Note, the relaxed loads below musn't reorder before the CompareExchange.
527 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
528 // a status bit into the state on contention.
529 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
530 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700531 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700532 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
533 num_pending_writers_.LoadRelaxed() > 0)) {
534 futex(state_.Address(), FUTEX_WAKE, -1, NULL, NULL, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700535 }
536 }
537 } else {
538 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
539 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700540 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700541#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700542 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700543 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700544#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700545}
546
Ian Rogers66aee5c2012-08-15 17:17:47 -0700547#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700548bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700549 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700550#if ART_USE_FUTEXES
551 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700552 timespec end_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800553 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700554 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700555 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700556 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700557 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
558 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700559 } else {
560 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700561 timespec now_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800562 InitTimeSpec(true, CLOCK_REALTIME, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700563 timespec rel_ts;
564 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
565 return false; // Timed out.
566 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700567 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700568 ++num_pending_writers_;
569 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, NULL, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700570 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700571 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700572 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700573 } else if ((errno != EAGAIN) && (errno != EINTR)) {
574 // EAGAIN and EINTR both indicate a spurious failure,
575 // recompute the relative time out from now and try again.
576 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700577 PLOG(FATAL) << "timed futex wait failed for " << name_;
578 }
579 }
Ian Rogersc7190692014-07-08 23:50:26 -0700580 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700581 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700582 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700583#else
Ian Rogersc604d732012-10-14 16:09:54 -0700584 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700585 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700586 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700587 if (result == ETIMEDOUT) {
588 return false;
589 }
590 if (result != 0) {
591 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700592 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700593 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700594#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700595 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700596 RegisterAsLocked(self);
597 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700598 return true;
599}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700600#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700601
Ian Rogers81d425b2012-09-27 16:03:43 -0700602bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700603 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700604#if ART_USE_FUTEXES
605 bool done = false;
606 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700607 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700608 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700609 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
610 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700611 } else {
612 // Owner holds it exclusively.
613 return false;
614 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700615 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700616#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700617 int result = pthread_rwlock_tryrdlock(&rwlock_);
618 if (result == EBUSY) {
619 return false;
620 }
621 if (result != 0) {
622 errno = result;
623 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
624 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700625#endif
626 RegisterAsLocked(self);
627 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700628 return true;
629}
630
Ian Rogers81d425b2012-09-27 16:03:43 -0700631bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Ian Rogers01ae5802012-09-28 16:14:01 -0700632 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700633 bool result;
634 if (UNLIKELY(self == NULL)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700635 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700636 } else {
637 result = (self->GetHeldMutex(level_) == this);
638 }
639 return result;
640}
641
Ian Rogers56edc432013-01-18 16:51:51 -0800642void ReaderWriterMutex::Dump(std::ostream& os) const {
643 os << name_
644 << " level=" << static_cast<int>(level_)
645 << " owner=" << GetExclusiveOwnerTid() << " ";
646 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700647}
648
649std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800650 mu.Dump(os);
651 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700652}
653
Ian Rogers23055dc2013-04-18 16:29:16 -0700654ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700655 : name_(name), guard_(guard) {
656#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700657 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700658 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700659#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000660 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700661 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000662#if !defined(__APPLE__)
663 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
664 CHECK_MUTEX_CALL(pthread_condattr_setclock(&cond_attrs, CLOCK_MONOTONIC));
665#endif
666 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700667#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700668}
669
670ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800671#if ART_USE_FUTEXES
672 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800673 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700674 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800675 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
676 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800677 }
678#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700679 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
680 // may still be using condition variables.
681 int rc = pthread_cond_destroy(&cond_);
682 if (rc != 0) {
683 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700684 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700685 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800686 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700687 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
688 }
Ian Rogersc604d732012-10-14 16:09:54 -0700689#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700690}
691
Ian Rogersc604d732012-10-14 16:09:54 -0700692void ConditionVariable::Broadcast(Thread* self) {
693 DCHECK(self == NULL || self == Thread::Current());
694 // TODO: enable below, there's a race in thread creation that causes false failures currently.
695 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700696 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700697#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800698 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800699 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700700 bool done = false;
701 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700702 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800703 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
704 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800705 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800706 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700707 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800708 if (!done) {
709 if (errno != EAGAIN) {
710 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
711 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800712 }
Ian Rogersc604d732012-10-14 16:09:54 -0700713 } while (!done);
714 }
715#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700716 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700717#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700718}
719
Ian Rogersc604d732012-10-14 16:09:54 -0700720void ConditionVariable::Signal(Thread* self) {
721 DCHECK(self == NULL || self == Thread::Current());
722 guard_.AssertExclusiveHeld(self);
723#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800724 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800725 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700726 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
727 // to avoid this, however, requeueing can only move all waiters.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800728 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800729 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800730 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700731 }
732#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700733 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700734#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700735}
736
Ian Rogersc604d732012-10-14 16:09:54 -0700737void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700738 guard_.CheckSafeToWait(self);
739 WaitHoldingLocks(self);
740}
741
742void ConditionVariable::WaitHoldingLocks(Thread* self) {
Ian Rogersc604d732012-10-14 16:09:54 -0700743 DCHECK(self == NULL || self == Thread::Current());
744 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700745 unsigned int old_recursion_count = guard_.recursion_count_;
746#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700747 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800748 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800749 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700750 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700751 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700752 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800753 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, NULL, NULL, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800754 // Futex failed, check it is an expected error.
755 // EAGAIN == EWOULDBLK, so we let the caller try again.
756 // EINTR implies a signal was sent to this thread.
757 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700758 PLOG(FATAL) << "futex wait failed for " << name_;
759 }
760 }
761 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800762 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700763 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800764 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700765 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800766 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700767#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700768 uint64_t old_owner = guard_.exclusive_owner_;
769 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700770 guard_.recursion_count_ = 0;
771 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700772 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700773#endif
774 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700775}
776
Ian Rogersc604d732012-10-14 16:09:54 -0700777void ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
778 DCHECK(self == NULL || self == Thread::Current());
779 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700780 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700781 unsigned int old_recursion_count = guard_.recursion_count_;
782#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700783 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800784 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700785 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800786 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800787 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700788 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700789 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700790 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800791 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, NULL, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700792 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800793 // Timed out we're done.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700794 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800795 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700796 } else {
797 PLOG(FATAL) << "timed futex wait failed for " << name_;
798 }
799 }
800 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800801 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700802 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800803 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700804 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800805 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700806#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000807#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700808 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700809#else
Ian Rogersc604d732012-10-14 16:09:54 -0700810 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700811#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700812 uint64_t old_owner = guard_.exclusive_owner_;
813 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700814 guard_.recursion_count_ = 0;
815 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700816 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000817 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Elliott Hughes5f791332011-09-15 17:45:30 -0700818 if (rc != 0 && rc != ETIMEDOUT) {
819 errno = rc;
820 PLOG(FATAL) << "TimedWait failed for " << name_;
821 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700822 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700823#endif
824 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700825}
826
Ian Rogers719d1a32014-03-06 12:13:39 -0800827void Locks::Init() {
828 if (logging_lock_ != nullptr) {
829 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100830 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700831 DCHECK(modify_ldt_lock_ != nullptr);
832 } else {
833 DCHECK(modify_ldt_lock_ == nullptr);
834 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800835 DCHECK(abort_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700836 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700837 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800838 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800839 DCHECK(classlinker_classes_lock_ != nullptr);
840 DCHECK(heap_bitmap_lock_ != nullptr);
841 DCHECK(logging_lock_ != nullptr);
842 DCHECK(mutator_lock_ != nullptr);
843 DCHECK(thread_list_lock_ != nullptr);
844 DCHECK(thread_suspend_count_lock_ != nullptr);
845 DCHECK(trace_lock_ != nullptr);
846 DCHECK(profiler_lock_ != nullptr);
847 DCHECK(unexpected_signal_lock_ != nullptr);
848 DCHECK(intern_table_lock_ != nullptr);
849 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700850 // Create global locks in level order from highest lock level to lowest.
851 LockLevel current_lock_level = kMutatorLock;
852 DCHECK(mutator_lock_ == nullptr);
853 mutator_lock_ = new ReaderWriterMutex("mutator lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800854
Chao-ying Fu9e369312014-05-21 11:20:52 -0700855 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
856 DCHECK_LT(new_level, current_lock_level); \
857 current_lock_level = new_level;
858
859 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
860 DCHECK(heap_bitmap_lock_ == nullptr);
861 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
862
863 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
864 DCHECK(runtime_shutdown_lock_ == nullptr);
865 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
866
867 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
868 DCHECK(profiler_lock_ == nullptr);
869 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
870
871 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
872 DCHECK(trace_lock_ == nullptr);
873 trace_lock_ = new Mutex("trace lock", current_lock_level);
874
875 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
876 DCHECK(thread_list_lock_ == nullptr);
877 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
878
879 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800880 DCHECK(breakpoint_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700881 breakpoint_lock_ = new Mutex("breakpoint lock", current_lock_level);
882
883 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800884 DCHECK(classlinker_classes_lock_ == nullptr);
885 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -0700886 current_lock_level);
887
Andreas Gampe74240812014-04-17 10:35:09 -0700888 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
889 DCHECK(allocated_monitor_ids_lock_ == nullptr);
890 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
891
Chao-ying Fu9e369312014-05-21 11:20:52 -0700892 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
893 DCHECK(allocated_thread_ids_lock_ == nullptr);
894 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
895
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100896 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700897 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
898 DCHECK(modify_ldt_lock_ == nullptr);
899 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
900 }
901
902 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800903 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700904 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
905
906
907 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
908 DCHECK(abort_lock_ == nullptr);
909 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
910
911 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
912 DCHECK(thread_suspend_count_lock_ == nullptr);
913 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
914
915 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
916 DCHECK(unexpected_signal_lock_ == nullptr);
917 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
918
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700919 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
920 DCHECK(mem_maps_lock_ == nullptr);
921 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
922
Chao-ying Fu9e369312014-05-21 11:20:52 -0700923 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
924 DCHECK(logging_lock_ == nullptr);
925 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
926
927 #undef UPDATE_CURRENT_LOCK_LEVEL
Ian Rogers719d1a32014-03-06 12:13:39 -0800928 }
929}
930
931
Elliott Hughese62934d2012-04-09 11:24:29 -0700932} // namespace art