blob: c0a865fd0b78d6cbe4df719bc30391846db69678 [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;
Ian Rogersf3d874c2014-07-17 18:52:42 -070044Mutex* Locks::thread_list_suspend_thread_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080045Mutex* Locks::thread_suspend_count_lock_ = nullptr;
46Mutex* Locks::trace_lock_ = nullptr;
47Mutex* Locks::profiler_lock_ = nullptr;
48Mutex* Locks::unexpected_signal_lock_ = nullptr;
49Mutex* Locks::intern_table_lock_ = nullptr;
50
51struct AllMutexData {
52 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
53 Atomic<const BaseMutex*> all_mutexes_guard;
54 // All created mutexes guarded by all_mutexes_guard_.
55 std::set<BaseMutex*>* all_mutexes;
56 AllMutexData() : all_mutexes(NULL) {}
57};
58static struct AllMutexData gAllMutexData[kAllMutexDataSize];
59
Ian Rogersc604d732012-10-14 16:09:54 -070060#if ART_USE_FUTEXES
61static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070062 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070063 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
64 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
65 if (result_ts->tv_nsec < 0) {
66 result_ts->tv_sec--;
67 result_ts->tv_nsec += one_sec;
68 } else if (result_ts->tv_nsec > one_sec) {
69 result_ts->tv_sec++;
70 result_ts->tv_nsec -= one_sec;
71 }
72 return result_ts->tv_sec < 0;
73}
74#endif
75
Ian Rogers56edc432013-01-18 16:51:51 -080076class ScopedAllMutexesLock {
77 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070078 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -070079 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -080080 NanoSleep(100);
81 }
82 }
83 ~ScopedAllMutexesLock() {
Ian Rogers3e5cf302014-05-20 16:40:37 -070084 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers56edc432013-01-18 16:51:51 -080085 NanoSleep(100);
86 }
87 }
88 private:
89 const BaseMutex* const mutex_;
90};
Ian Rogers56edc432013-01-18 16:51:51 -080091
92BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070093 if (kLogLockContentions) {
94 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -070095 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070096 if (*all_mutexes_ptr == NULL) {
97 // We leak the global set of all mutexes to avoid ordering issues in global variable
98 // construction/destruction.
99 *all_mutexes_ptr = new std::set<BaseMutex*>();
100 }
101 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800102 }
Ian Rogers56edc432013-01-18 16:51:51 -0800103}
104
105BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700106 if (kLogLockContentions) {
107 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700108 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700109 }
Ian Rogers56edc432013-01-18 16:51:51 -0800110}
111
112void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700113 if (kLogLockContentions) {
114 os << "Mutex logging:\n";
115 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700116 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700117 if (all_mutexes == NULL) {
118 // No mutexes have been created yet during at startup.
119 return;
120 }
121 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700122 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700123 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
124 BaseMutex* mutex = *it;
125 if (mutex->HasEverContended()) {
126 mutex->Dump(os);
127 os << "\n";
128 }
129 }
130 os << "(Never contented)\n";
131 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
132 BaseMutex* mutex = *it;
133 if (!mutex->HasEverContended()) {
134 mutex->Dump(os);
135 os << "\n";
136 }
137 }
Ian Rogers56edc432013-01-18 16:51:51 -0800138 }
Ian Rogers56edc432013-01-18 16:51:51 -0800139}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700140
Ian Rogers81d425b2012-09-27 16:03:43 -0700141void BaseMutex::CheckSafeToWait(Thread* self) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700142 if (self == NULL) {
143 CheckUnattachedThread(level_);
144 return;
145 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700146 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700147 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
148 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700149 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800150 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700151 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700152 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogersf3d874c2014-07-17 18:52:42 -0700153 // We expect waits to happen while holding the thread list suspend thread lock.
154 if (held_mutex != NULL && i != kThreadListSuspendThreadLock) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800155 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
156 << "(level " << LockLevel(i) << ") while performing wait on "
157 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700158 bad_mutexes_held = true;
159 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700160 }
161 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700162 CHECK(!bad_mutexes_held);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700163 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700164}
165
Ian Rogers37f3c962014-07-17 11:25:30 -0700166void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700167 if (kLogLockContentions) {
168 // Atomically add value to wait_time.
Ian Rogers37f3c962014-07-17 11:25:30 -0700169 wait_time.FetchAndAddSequentiallyConsistent(value);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700170 }
171}
172
Brian Carlstrom0de79852013-07-25 22:29:58 -0700173void BaseMutex::RecordContention(uint64_t blocked_tid,
174 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700175 uint64_t nano_time_blocked) {
176 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700177 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700178 ++(data->contention_count);
179 data->AddToWaitTime(nano_time_blocked);
180 ContentionLogEntry* log = data->contention_log;
181 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700182 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700183 if (log[slot].blocked_tid == blocked_tid &&
184 log[slot].owner_tid == blocked_tid) {
185 ++log[slot].count;
186 } else {
187 uint32_t new_slot;
188 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700189 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700190 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700191 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700192 log[new_slot].blocked_tid = blocked_tid;
193 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700194 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700195 }
Ian Rogers56edc432013-01-18 16:51:51 -0800196 }
Ian Rogers56edc432013-01-18 16:51:51 -0800197}
198
Ian Rogers56edc432013-01-18 16:51:51 -0800199void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700200 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700201 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700202 const ContentionLogEntry* log = data->contention_log;
Ian Rogers37f3c962014-07-17 11:25:30 -0700203 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700204 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700205 if (contention_count == 0) {
206 os << "never contended";
207 } else {
208 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700209 << " total wait of contender " << PrettyDuration(wait_time)
210 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700211 SafeMap<uint64_t, size_t> most_common_blocker;
212 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700213 for (size_t i = 0; i < kContentionLogSize; ++i) {
214 uint64_t blocked_tid = log[i].blocked_tid;
215 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700216 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700217 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700218 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700219 if (it != most_common_blocked.end()) {
220 most_common_blocked.Overwrite(blocked_tid, it->second + count);
221 } else {
222 most_common_blocked.Put(blocked_tid, count);
223 }
224 it = most_common_blocker.find(owner_tid);
225 if (it != most_common_blocker.end()) {
226 most_common_blocker.Overwrite(owner_tid, it->second + count);
227 } else {
228 most_common_blocker.Put(owner_tid, count);
229 }
Ian Rogers56edc432013-01-18 16:51:51 -0800230 }
231 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700232 uint64_t max_tid = 0;
233 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700234 for (const auto& pair : most_common_blocked) {
235 if (pair.second > max_tid_count) {
236 max_tid = pair.first;
237 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700238 }
Ian Rogers56edc432013-01-18 16:51:51 -0800239 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700240 if (max_tid != 0) {
241 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800242 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700243 max_tid = 0;
244 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700245 for (const auto& pair : most_common_blocker) {
246 if (pair.second > max_tid_count) {
247 max_tid = pair.first;
248 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700249 }
250 }
251 if (max_tid != 0) {
252 os << " sample shows tid=" << max_tid << " owning during this time";
253 }
Ian Rogers56edc432013-01-18 16:51:51 -0800254 }
255 }
Ian Rogers56edc432013-01-18 16:51:51 -0800256}
257
258
Ian Rogers81d425b2012-09-27 16:03:43 -0700259Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700260 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700261#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700262 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700263 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700264#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700265 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700266#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700267 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700268}
269
270Mutex::~Mutex() {
Ian Rogersc604d732012-10-14 16:09:54 -0700271#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700272 if (state_.LoadRelaxed() != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700273 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700274 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700275 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
276 } else {
277 CHECK_EQ(exclusive_owner_, 0U) << "unexpectedly found an owner on unlocked mutex " << name_;
Ian Rogersc7190692014-07-08 23:50:26 -0700278 CHECK_EQ(num_contenders_.LoadSequentiallyConsistent(), 0)
Ian Rogers3e5cf302014-05-20 16:40:37 -0700279 << "unexpectedly found a contender on mutex " << name_;
Ian Rogersc604d732012-10-14 16:09:54 -0700280 }
281#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700282 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
283 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800284 int rc = pthread_mutex_destroy(&mutex_);
285 if (rc != 0) {
286 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800287 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700288 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700289 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800290 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughes6b355752012-01-13 16:49:08 -0800291 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
292 }
Ian Rogersc604d732012-10-14 16:09:54 -0700293#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700294}
295
Ian Rogers81d425b2012-09-27 16:03:43 -0700296void Mutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700297 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700298 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700299 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700300 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700301 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700302#if ART_USE_FUTEXES
303 bool done = false;
304 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700305 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700306 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700307 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
308 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700309 } else {
310 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700311 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800312 num_contenders_++;
Ian Rogersc7190692014-07-08 23:50:26 -0700313 if (futex(state_.Address(), FUTEX_WAIT, 1, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700314 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
315 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
316 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700317 PLOG(FATAL) << "futex wait failed for " << name_;
318 }
319 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800320 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700321 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700322 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700323 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700324#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700325 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700326#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700327 DCHECK_EQ(exclusive_owner_, 0U);
328 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700329 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700330 }
331 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700332 if (kDebugLocking) {
333 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
334 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700335 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700336 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700337}
338
Ian Rogers81d425b2012-09-27 16:03:43 -0700339bool Mutex::ExclusiveTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700340 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700341 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700342 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700343 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700344 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700345#if ART_USE_FUTEXES
346 bool done = false;
347 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700348 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700349 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700350 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
351 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700352 } else {
353 return false;
354 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700355 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700356 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700357#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700358 int result = pthread_mutex_trylock(&mutex_);
359 if (result == EBUSY) {
360 return false;
361 }
362 if (result != 0) {
363 errno = result;
364 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
365 }
Ian Rogersc604d732012-10-14 16:09:54 -0700366#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700367 DCHECK_EQ(exclusive_owner_, 0U);
368 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700369 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700370 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700371 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700372 if (kDebugLocking) {
373 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
374 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700375 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700376 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700377 return true;
378}
379
Ian Rogers81d425b2012-09-27 16:03:43 -0700380void Mutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700381 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700382 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700383 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700384 recursion_count_--;
385 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700386 if (kDebugLocking) {
387 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
388 << name_ << " " << recursion_count_;
389 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700390 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700391#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700392 bool done = false;
393 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700394 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700395 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700396 // We're no longer the owner.
397 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700398 // Change state to 0 and impose load/store ordering appropriate for lock release.
399 // Note, the relaxed loads below musn't reorder before the CompareExchange.
400 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
401 // a status bit into the state on contention.
402 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700403 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700404 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700405 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700406 futex(state_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700407 }
408 }
409 } else {
410 // Logging acquires the logging lock, avoid infinite recursion in that case.
411 if (this != Locks::logging_lock_) {
412 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
413 } else {
414 LogMessageData data(__FILE__, __LINE__, INTERNAL_FATAL, -1);
415 LogMessage::LogLine(data, StringPrintf("Unexpected state_ %d in unlock for %s",
416 cur_state, name_).c_str());
417 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700418 }
419 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700420 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700421#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700422 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700423 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700424#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700425 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700426}
427
Ian Rogers56edc432013-01-18 16:51:51 -0800428void Mutex::Dump(std::ostream& os) const {
429 os << (recursive_ ? "recursive " : "non-recursive ")
430 << name_
431 << " level=" << static_cast<int>(level_)
432 << " rec=" << recursion_count_
433 << " owner=" << GetExclusiveOwnerTid() << " ";
434 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700435}
436
437std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800438 mu.Dump(os);
439 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700440}
441
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700442ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
443 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700444#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700445 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700446#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700447{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700448#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700449 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700450#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700451 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700452}
453
454ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700455#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700456 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700457 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700458 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700459 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700460#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700461 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
462 // may still be using locks.
463 int rc = pthread_rwlock_destroy(&rwlock_);
464 if (rc != 0) {
465 errno = rc;
466 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700467 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700468 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800469 bool shutting_down = runtime == NULL || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700470 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800471 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700472#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700473}
474
Ian Rogers81d425b2012-09-27 16:03:43 -0700475void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700476 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700477 AssertNotExclusiveHeld(self);
478#if ART_USE_FUTEXES
479 bool done = false;
480 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700481 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700482 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700483 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
484 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700485 } else {
486 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700487 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700488 ++num_pending_writers_;
489 if (futex(state_.Address(), FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700490 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
491 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
492 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700493 PLOG(FATAL) << "futex wait failed for " << name_;
494 }
495 }
Ian Rogersc7190692014-07-08 23:50:26 -0700496 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700497 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700498 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700499 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700500#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700501 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700502#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700503 DCHECK_EQ(exclusive_owner_, 0U);
504 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700505 RegisterAsLocked(self);
506 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700507}
508
Ian Rogers81d425b2012-09-27 16:03:43 -0700509void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700510 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700511 AssertExclusiveHeld(self);
512 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700513 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700514#if ART_USE_FUTEXES
515 bool done = false;
516 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700517 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700518 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700519 // We're no longer the owner.
520 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700521 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
522 // Note, the relaxed loads below musn't reorder before the CompareExchange.
523 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
524 // a status bit into the state on contention.
525 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
526 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700527 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700528 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
529 num_pending_writers_.LoadRelaxed() > 0)) {
530 futex(state_.Address(), FUTEX_WAKE, -1, NULL, NULL, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700531 }
532 }
533 } else {
534 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
535 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700536 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700537#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700538 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700539 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700540#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700541}
542
Ian Rogers66aee5c2012-08-15 17:17:47 -0700543#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700544bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700545 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700546#if ART_USE_FUTEXES
547 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700548 timespec end_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800549 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700550 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700551 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700552 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700553 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
554 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700555 } else {
556 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700557 timespec now_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800558 InitTimeSpec(true, CLOCK_REALTIME, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700559 timespec rel_ts;
560 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
561 return false; // Timed out.
562 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700563 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700564 ++num_pending_writers_;
565 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, NULL, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700566 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700567 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700568 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700569 } else if ((errno != EAGAIN) && (errno != EINTR)) {
570 // EAGAIN and EINTR both indicate a spurious failure,
571 // recompute the relative time out from now and try again.
572 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700573 PLOG(FATAL) << "timed futex wait failed for " << name_;
574 }
575 }
Ian Rogersc7190692014-07-08 23:50:26 -0700576 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700577 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700578 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700579#else
Ian Rogersc604d732012-10-14 16:09:54 -0700580 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700581 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700582 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700583 if (result == ETIMEDOUT) {
584 return false;
585 }
586 if (result != 0) {
587 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700588 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700589 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700590#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700591 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700592 RegisterAsLocked(self);
593 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700594 return true;
595}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700596#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700597
Ian Rogers81d425b2012-09-27 16:03:43 -0700598bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700599 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700600#if ART_USE_FUTEXES
601 bool done = false;
602 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700603 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700604 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700605 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
606 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700607 } else {
608 // Owner holds it exclusively.
609 return false;
610 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700611 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700612#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700613 int result = pthread_rwlock_tryrdlock(&rwlock_);
614 if (result == EBUSY) {
615 return false;
616 }
617 if (result != 0) {
618 errno = result;
619 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
620 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700621#endif
622 RegisterAsLocked(self);
623 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700624 return true;
625}
626
Ian Rogers81d425b2012-09-27 16:03:43 -0700627bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Ian Rogers01ae5802012-09-28 16:14:01 -0700628 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700629 bool result;
630 if (UNLIKELY(self == NULL)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700631 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700632 } else {
633 result = (self->GetHeldMutex(level_) == this);
634 }
635 return result;
636}
637
Ian Rogers56edc432013-01-18 16:51:51 -0800638void ReaderWriterMutex::Dump(std::ostream& os) const {
639 os << name_
640 << " level=" << static_cast<int>(level_)
641 << " owner=" << GetExclusiveOwnerTid() << " ";
642 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700643}
644
645std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800646 mu.Dump(os);
647 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700648}
649
Ian Rogers23055dc2013-04-18 16:29:16 -0700650ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700651 : name_(name), guard_(guard) {
652#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700653 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700654 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700655#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000656 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700657 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000658#if !defined(__APPLE__)
659 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
660 CHECK_MUTEX_CALL(pthread_condattr_setclock(&cond_attrs, CLOCK_MONOTONIC));
661#endif
662 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700663#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700664}
665
666ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800667#if ART_USE_FUTEXES
668 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800669 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700670 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800671 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
672 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800673 }
674#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700675 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
676 // may still be using condition variables.
677 int rc = pthread_cond_destroy(&cond_);
678 if (rc != 0) {
679 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700680 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700681 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800682 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700683 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
684 }
Ian Rogersc604d732012-10-14 16:09:54 -0700685#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700686}
687
Ian Rogersc604d732012-10-14 16:09:54 -0700688void ConditionVariable::Broadcast(Thread* self) {
689 DCHECK(self == NULL || self == Thread::Current());
690 // TODO: enable below, there's a race in thread creation that causes false failures currently.
691 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700692 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700693#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800694 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800695 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700696 bool done = false;
697 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700698 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800699 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
700 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800701 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800702 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700703 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800704 if (!done) {
705 if (errno != EAGAIN) {
706 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
707 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800708 }
Ian Rogersc604d732012-10-14 16:09:54 -0700709 } while (!done);
710 }
711#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700712 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700713#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700714}
715
Ian Rogersc604d732012-10-14 16:09:54 -0700716void ConditionVariable::Signal(Thread* self) {
717 DCHECK(self == NULL || self == Thread::Current());
718 guard_.AssertExclusiveHeld(self);
719#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800720 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800721 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700722 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
723 // to avoid this, however, requeueing can only move all waiters.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800724 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800725 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800726 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700727 }
728#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700729 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700730#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700731}
732
Ian Rogersc604d732012-10-14 16:09:54 -0700733void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700734 guard_.CheckSafeToWait(self);
735 WaitHoldingLocks(self);
736}
737
738void ConditionVariable::WaitHoldingLocks(Thread* self) {
Ian Rogersc604d732012-10-14 16:09:54 -0700739 DCHECK(self == NULL || self == Thread::Current());
740 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700741 unsigned int old_recursion_count = guard_.recursion_count_;
742#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700743 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800744 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800745 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700746 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700747 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700748 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800749 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, NULL, NULL, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800750 // Futex failed, check it is an expected error.
751 // EAGAIN == EWOULDBLK, so we let the caller try again.
752 // EINTR implies a signal was sent to this thread.
753 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700754 PLOG(FATAL) << "futex wait failed for " << name_;
755 }
756 }
757 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800758 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700759 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800760 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700761 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800762 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700763#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700764 uint64_t old_owner = guard_.exclusive_owner_;
765 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700766 guard_.recursion_count_ = 0;
767 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700768 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700769#endif
770 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700771}
772
Ian Rogersc604d732012-10-14 16:09:54 -0700773void ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
774 DCHECK(self == NULL || self == Thread::Current());
775 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700776 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700777 unsigned int old_recursion_count = guard_.recursion_count_;
778#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700779 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800780 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700781 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800782 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800783 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700784 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700785 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700786 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800787 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, NULL, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700788 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800789 // Timed out we're done.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700790 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800791 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700792 } else {
793 PLOG(FATAL) << "timed futex wait failed for " << name_;
794 }
795 }
796 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800797 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700798 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800799 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700800 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800801 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700802#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000803#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700804 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700805#else
Ian Rogersc604d732012-10-14 16:09:54 -0700806 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700807#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700808 uint64_t old_owner = guard_.exclusive_owner_;
809 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700810 guard_.recursion_count_ = 0;
811 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700812 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000813 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Elliott Hughes5f791332011-09-15 17:45:30 -0700814 if (rc != 0 && rc != ETIMEDOUT) {
815 errno = rc;
816 PLOG(FATAL) << "TimedWait failed for " << name_;
817 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700818 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700819#endif
820 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700821}
822
Ian Rogers719d1a32014-03-06 12:13:39 -0800823void Locks::Init() {
824 if (logging_lock_ != nullptr) {
825 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100826 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700827 DCHECK(modify_ldt_lock_ != nullptr);
828 } else {
829 DCHECK(modify_ldt_lock_ == nullptr);
830 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800831 DCHECK(abort_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700832 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700833 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800834 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800835 DCHECK(classlinker_classes_lock_ != nullptr);
836 DCHECK(heap_bitmap_lock_ != nullptr);
837 DCHECK(logging_lock_ != nullptr);
838 DCHECK(mutator_lock_ != nullptr);
839 DCHECK(thread_list_lock_ != nullptr);
Ian Rogersf3d874c2014-07-17 18:52:42 -0700840 DCHECK(thread_list_suspend_thread_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800841 DCHECK(thread_suspend_count_lock_ != nullptr);
842 DCHECK(trace_lock_ != nullptr);
843 DCHECK(profiler_lock_ != nullptr);
844 DCHECK(unexpected_signal_lock_ != nullptr);
845 DCHECK(intern_table_lock_ != nullptr);
846 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700847 // Create global locks in level order from highest lock level to lowest.
Ian Rogersf3d874c2014-07-17 18:52:42 -0700848 LockLevel current_lock_level = kThreadListSuspendThreadLock;
849 DCHECK(thread_list_suspend_thread_lock_ == nullptr);
850 thread_list_suspend_thread_lock_ =
851 new Mutex("thread list suspend thread by .. 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) \
Ian Rogersf3d874c2014-07-17 18:52:42 -0700854 DCHECK_LT(new_level, current_lock_level); \
855 current_lock_level = new_level;
856
857 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
858 DCHECK(mutator_lock_ == nullptr);
859 mutator_lock_ = new ReaderWriterMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700860
861 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
862 DCHECK(heap_bitmap_lock_ == nullptr);
863 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
864
865 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
866 DCHECK(runtime_shutdown_lock_ == nullptr);
867 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
868
869 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
870 DCHECK(profiler_lock_ == nullptr);
871 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
872
873 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
874 DCHECK(trace_lock_ == nullptr);
875 trace_lock_ = new Mutex("trace lock", current_lock_level);
876
877 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
878 DCHECK(thread_list_lock_ == nullptr);
879 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
880
881 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800882 DCHECK(breakpoint_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700883 breakpoint_lock_ = new Mutex("breakpoint lock", current_lock_level);
884
885 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800886 DCHECK(classlinker_classes_lock_ == nullptr);
887 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -0700888 current_lock_level);
889
Andreas Gampe74240812014-04-17 10:35:09 -0700890 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
891 DCHECK(allocated_monitor_ids_lock_ == nullptr);
892 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
893
Chao-ying Fu9e369312014-05-21 11:20:52 -0700894 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
895 DCHECK(allocated_thread_ids_lock_ == nullptr);
896 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
897
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100898 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700899 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
900 DCHECK(modify_ldt_lock_ == nullptr);
901 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
902 }
903
904 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800905 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700906 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
907
908
909 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
910 DCHECK(abort_lock_ == nullptr);
911 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
912
913 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
914 DCHECK(thread_suspend_count_lock_ == nullptr);
915 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
916
917 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
918 DCHECK(unexpected_signal_lock_ == nullptr);
919 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
920
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700921 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
922 DCHECK(mem_maps_lock_ == nullptr);
923 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
924
Chao-ying Fu9e369312014-05-21 11:20:52 -0700925 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
926 DCHECK(logging_lock_ == nullptr);
927 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
928
929 #undef UPDATE_CURRENT_LOCK_LEVEL
Ian Rogers719d1a32014-03-06 12:13:39 -0800930 }
931}
932
933
Elliott Hughese62934d2012-04-09 11:24:29 -0700934} // namespace art