blob: 8c470c0bc08762573abdc42553abcb396dc12a5f [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
Ian Rogers37f3c962014-07-17 11:25:30 -0700164void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700165 if (kLogLockContentions) {
166 // Atomically add value to wait_time.
Ian Rogers37f3c962014-07-17 11:25:30 -0700167 wait_time.FetchAndAddSequentiallyConsistent(value);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700168 }
169}
170
Brian Carlstrom0de79852013-07-25 22:29:58 -0700171void BaseMutex::RecordContention(uint64_t blocked_tid,
172 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700173 uint64_t nano_time_blocked) {
174 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700175 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700176 ++(data->contention_count);
177 data->AddToWaitTime(nano_time_blocked);
178 ContentionLogEntry* log = data->contention_log;
179 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700180 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700181 if (log[slot].blocked_tid == blocked_tid &&
182 log[slot].owner_tid == blocked_tid) {
183 ++log[slot].count;
184 } else {
185 uint32_t new_slot;
186 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700187 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700188 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700189 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700190 log[new_slot].blocked_tid = blocked_tid;
191 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700192 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700193 }
Ian Rogers56edc432013-01-18 16:51:51 -0800194 }
Ian Rogers56edc432013-01-18 16:51:51 -0800195}
196
Ian Rogers56edc432013-01-18 16:51:51 -0800197void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700198 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700199 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700200 const ContentionLogEntry* log = data->contention_log;
Ian Rogers37f3c962014-07-17 11:25:30 -0700201 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700202 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700203 if (contention_count == 0) {
204 os << "never contended";
205 } else {
206 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700207 << " total wait of contender " << PrettyDuration(wait_time)
208 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700209 SafeMap<uint64_t, size_t> most_common_blocker;
210 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700211 for (size_t i = 0; i < kContentionLogSize; ++i) {
212 uint64_t blocked_tid = log[i].blocked_tid;
213 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700214 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700215 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700216 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700217 if (it != most_common_blocked.end()) {
218 most_common_blocked.Overwrite(blocked_tid, it->second + count);
219 } else {
220 most_common_blocked.Put(blocked_tid, count);
221 }
222 it = most_common_blocker.find(owner_tid);
223 if (it != most_common_blocker.end()) {
224 most_common_blocker.Overwrite(owner_tid, it->second + count);
225 } else {
226 most_common_blocker.Put(owner_tid, count);
227 }
Ian Rogers56edc432013-01-18 16:51:51 -0800228 }
229 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700230 uint64_t max_tid = 0;
231 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700232 for (const auto& pair : most_common_blocked) {
233 if (pair.second > max_tid_count) {
234 max_tid = pair.first;
235 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700236 }
Ian Rogers56edc432013-01-18 16:51:51 -0800237 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700238 if (max_tid != 0) {
239 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800240 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700241 max_tid = 0;
242 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700243 for (const auto& pair : most_common_blocker) {
244 if (pair.second > max_tid_count) {
245 max_tid = pair.first;
246 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700247 }
248 }
249 if (max_tid != 0) {
250 os << " sample shows tid=" << max_tid << " owning during this time";
251 }
Ian Rogers56edc432013-01-18 16:51:51 -0800252 }
253 }
Ian Rogers56edc432013-01-18 16:51:51 -0800254}
255
256
Ian Rogers81d425b2012-09-27 16:03:43 -0700257Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700258 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700259#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700260 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700261 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700262#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700263 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700264#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700265 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700266}
267
268Mutex::~Mutex() {
Ian Rogersc604d732012-10-14 16:09:54 -0700269#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700270 if (state_.LoadRelaxed() != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700271 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700272 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700273 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
274 } else {
275 CHECK_EQ(exclusive_owner_, 0U) << "unexpectedly found an owner on unlocked mutex " << name_;
Ian Rogersc7190692014-07-08 23:50:26 -0700276 CHECK_EQ(num_contenders_.LoadSequentiallyConsistent(), 0)
Ian Rogers3e5cf302014-05-20 16:40:37 -0700277 << "unexpectedly found a contender on mutex " << name_;
Ian Rogersc604d732012-10-14 16:09:54 -0700278 }
279#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700280 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
281 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800282 int rc = pthread_mutex_destroy(&mutex_);
283 if (rc != 0) {
284 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800285 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700286 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700287 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800288 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughes6b355752012-01-13 16:49:08 -0800289 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
290 }
Ian Rogersc604d732012-10-14 16:09:54 -0700291#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700292}
293
Ian Rogers81d425b2012-09-27 16:03:43 -0700294void Mutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700295 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700296 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700297 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700298 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700299 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700300#if ART_USE_FUTEXES
301 bool done = false;
302 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700303 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700304 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700305 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
306 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700307 } else {
308 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700309 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800310 num_contenders_++;
Ian Rogersc7190692014-07-08 23:50:26 -0700311 if (futex(state_.Address(), FUTEX_WAIT, 1, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700312 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
313 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
314 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700315 PLOG(FATAL) << "futex wait failed for " << name_;
316 }
317 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800318 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700319 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700320 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700321 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700322#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700323 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700324#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700325 DCHECK_EQ(exclusive_owner_, 0U);
326 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700327 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700328 }
329 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700330 if (kDebugLocking) {
331 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
332 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700333 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700334 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700335}
336
Ian Rogers81d425b2012-09-27 16:03:43 -0700337bool Mutex::ExclusiveTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700338 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700339 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700340 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700341 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700342 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700343#if ART_USE_FUTEXES
344 bool done = false;
345 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700346 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700347 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700348 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
349 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700350 } else {
351 return false;
352 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700353 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700354 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700355#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700356 int result = pthread_mutex_trylock(&mutex_);
357 if (result == EBUSY) {
358 return false;
359 }
360 if (result != 0) {
361 errno = result;
362 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
363 }
Ian Rogersc604d732012-10-14 16:09:54 -0700364#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700365 DCHECK_EQ(exclusive_owner_, 0U);
366 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700367 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700368 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700369 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700370 if (kDebugLocking) {
371 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
372 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700373 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700374 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700375 return true;
376}
377
Ian Rogers81d425b2012-09-27 16:03:43 -0700378void Mutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700379 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700380 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700381 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700382 recursion_count_--;
383 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700384 if (kDebugLocking) {
385 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
386 << name_ << " " << recursion_count_;
387 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700388 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700389#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700390 bool done = false;
391 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700392 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700393 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700394 // We're no longer the owner.
395 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700396 // Change state to 0 and impose load/store ordering appropriate for lock release.
397 // Note, the relaxed loads below musn't reorder before the CompareExchange.
398 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
399 // a status bit into the state on contention.
400 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700401 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700402 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700403 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700404 futex(state_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700405 }
406 }
407 } else {
408 // Logging acquires the logging lock, avoid infinite recursion in that case.
409 if (this != Locks::logging_lock_) {
410 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
411 } else {
412 LogMessageData data(__FILE__, __LINE__, INTERNAL_FATAL, -1);
413 LogMessage::LogLine(data, StringPrintf("Unexpected state_ %d in unlock for %s",
414 cur_state, name_).c_str());
415 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700416 }
417 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700418 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700419#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700420 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700421 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700422#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700423 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700424}
425
Ian Rogers56edc432013-01-18 16:51:51 -0800426void Mutex::Dump(std::ostream& os) const {
427 os << (recursive_ ? "recursive " : "non-recursive ")
428 << name_
429 << " level=" << static_cast<int>(level_)
430 << " rec=" << recursion_count_
431 << " owner=" << GetExclusiveOwnerTid() << " ";
432 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700433}
434
435std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800436 mu.Dump(os);
437 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700438}
439
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700440ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
441 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700442#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700443 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700444#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700445{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700446#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700447 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700448#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700449 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700450}
451
452ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700453#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700454 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700455 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700456 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700457 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700458#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700459 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
460 // may still be using locks.
461 int rc = pthread_rwlock_destroy(&rwlock_);
462 if (rc != 0) {
463 errno = rc;
464 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700465 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700466 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800467 bool shutting_down = runtime == NULL || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700468 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800469 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700470#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700471}
472
Ian Rogers81d425b2012-09-27 16:03:43 -0700473void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700474 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700475 AssertNotExclusiveHeld(self);
476#if ART_USE_FUTEXES
477 bool done = false;
478 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700479 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700480 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700481 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
482 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700483 } else {
484 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700485 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700486 ++num_pending_writers_;
487 if (futex(state_.Address(), FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700488 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
489 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
490 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700491 PLOG(FATAL) << "futex wait failed for " << name_;
492 }
493 }
Ian Rogersc7190692014-07-08 23:50:26 -0700494 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700495 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700496 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700497 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700498#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700499 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700500#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700501 DCHECK_EQ(exclusive_owner_, 0U);
502 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700503 RegisterAsLocked(self);
504 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700505}
506
Ian Rogers81d425b2012-09-27 16:03:43 -0700507void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700508 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700509 AssertExclusiveHeld(self);
510 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700511 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700512#if ART_USE_FUTEXES
513 bool done = false;
514 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700515 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700516 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700517 // We're no longer the owner.
518 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700519 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
520 // Note, the relaxed loads below musn't reorder before the CompareExchange.
521 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
522 // a status bit into the state on contention.
523 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
524 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700525 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700526 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
527 num_pending_writers_.LoadRelaxed() > 0)) {
528 futex(state_.Address(), FUTEX_WAKE, -1, NULL, NULL, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700529 }
530 }
531 } else {
532 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
533 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700534 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700535#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700536 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700537 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700538#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700539}
540
Ian Rogers66aee5c2012-08-15 17:17:47 -0700541#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700542bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700543 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700544#if ART_USE_FUTEXES
545 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700546 timespec end_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800547 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700548 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700549 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700550 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700551 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
552 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700553 } else {
554 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700555 timespec now_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800556 InitTimeSpec(true, CLOCK_REALTIME, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700557 timespec rel_ts;
558 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
559 return false; // Timed out.
560 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700561 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700562 ++num_pending_writers_;
563 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, NULL, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700564 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700565 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700566 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700567 } else if ((errno != EAGAIN) && (errno != EINTR)) {
568 // EAGAIN and EINTR both indicate a spurious failure,
569 // recompute the relative time out from now and try again.
570 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700571 PLOG(FATAL) << "timed futex wait failed for " << name_;
572 }
573 }
Ian Rogersc7190692014-07-08 23:50:26 -0700574 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700575 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700576 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700577#else
Ian Rogersc604d732012-10-14 16:09:54 -0700578 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700579 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700580 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700581 if (result == ETIMEDOUT) {
582 return false;
583 }
584 if (result != 0) {
585 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700586 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700587 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700588#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700589 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700590 RegisterAsLocked(self);
591 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700592 return true;
593}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700594#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700595
Ian Rogers81d425b2012-09-27 16:03:43 -0700596bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700597 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700598#if ART_USE_FUTEXES
599 bool done = false;
600 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700601 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700602 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700603 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
604 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700605 } else {
606 // Owner holds it exclusively.
607 return false;
608 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700609 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700610#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700611 int result = pthread_rwlock_tryrdlock(&rwlock_);
612 if (result == EBUSY) {
613 return false;
614 }
615 if (result != 0) {
616 errno = result;
617 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
618 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700619#endif
620 RegisterAsLocked(self);
621 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700622 return true;
623}
624
Ian Rogers81d425b2012-09-27 16:03:43 -0700625bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Ian Rogers01ae5802012-09-28 16:14:01 -0700626 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700627 bool result;
628 if (UNLIKELY(self == NULL)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700629 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700630 } else {
631 result = (self->GetHeldMutex(level_) == this);
632 }
633 return result;
634}
635
Ian Rogers56edc432013-01-18 16:51:51 -0800636void ReaderWriterMutex::Dump(std::ostream& os) const {
637 os << name_
638 << " level=" << static_cast<int>(level_)
639 << " owner=" << GetExclusiveOwnerTid() << " ";
640 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700641}
642
643std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800644 mu.Dump(os);
645 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700646}
647
Ian Rogers23055dc2013-04-18 16:29:16 -0700648ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700649 : name_(name), guard_(guard) {
650#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700651 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700652 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700653#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000654 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700655 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000656#if !defined(__APPLE__)
657 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
658 CHECK_MUTEX_CALL(pthread_condattr_setclock(&cond_attrs, CLOCK_MONOTONIC));
659#endif
660 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700661#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700662}
663
664ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800665#if ART_USE_FUTEXES
666 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800667 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700668 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800669 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
670 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800671 }
672#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700673 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
674 // may still be using condition variables.
675 int rc = pthread_cond_destroy(&cond_);
676 if (rc != 0) {
677 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700678 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700679 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800680 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700681 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
682 }
Ian Rogersc604d732012-10-14 16:09:54 -0700683#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700684}
685
Ian Rogersc604d732012-10-14 16:09:54 -0700686void ConditionVariable::Broadcast(Thread* self) {
687 DCHECK(self == NULL || self == Thread::Current());
688 // TODO: enable below, there's a race in thread creation that causes false failures currently.
689 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700690 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700691#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800692 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800693 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700694 bool done = false;
695 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700696 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800697 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
698 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800699 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800700 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700701 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800702 if (!done) {
703 if (errno != EAGAIN) {
704 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
705 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800706 }
Ian Rogersc604d732012-10-14 16:09:54 -0700707 } while (!done);
708 }
709#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700710 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700711#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700712}
713
Ian Rogersc604d732012-10-14 16:09:54 -0700714void ConditionVariable::Signal(Thread* self) {
715 DCHECK(self == NULL || self == Thread::Current());
716 guard_.AssertExclusiveHeld(self);
717#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800718 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800719 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700720 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
721 // to avoid this, however, requeueing can only move all waiters.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800722 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800723 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800724 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700725 }
726#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700727 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700728#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700729}
730
Ian Rogersc604d732012-10-14 16:09:54 -0700731void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700732 guard_.CheckSafeToWait(self);
733 WaitHoldingLocks(self);
734}
735
736void ConditionVariable::WaitHoldingLocks(Thread* self) {
Ian Rogersc604d732012-10-14 16:09:54 -0700737 DCHECK(self == NULL || self == Thread::Current());
738 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700739 unsigned int old_recursion_count = guard_.recursion_count_;
740#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700741 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800742 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800743 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700744 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700745 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700746 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800747 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, NULL, NULL, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800748 // Futex failed, check it is an expected error.
749 // EAGAIN == EWOULDBLK, so we let the caller try again.
750 // EINTR implies a signal was sent to this thread.
751 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700752 PLOG(FATAL) << "futex wait failed for " << name_;
753 }
754 }
755 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800756 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700757 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800758 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700759 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800760 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700761#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700762 uint64_t old_owner = guard_.exclusive_owner_;
763 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700764 guard_.recursion_count_ = 0;
765 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700766 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700767#endif
768 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700769}
770
Ian Rogersc604d732012-10-14 16:09:54 -0700771void ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
772 DCHECK(self == NULL || self == Thread::Current());
773 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700774 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700775 unsigned int old_recursion_count = guard_.recursion_count_;
776#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700777 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800778 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700779 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800780 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800781 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700782 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700783 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700784 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800785 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, NULL, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700786 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800787 // Timed out we're done.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700788 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800789 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700790 } else {
791 PLOG(FATAL) << "timed futex wait failed for " << name_;
792 }
793 }
794 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800795 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700796 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800797 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700798 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800799 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700800#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000801#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700802 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700803#else
Ian Rogersc604d732012-10-14 16:09:54 -0700804 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700805#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700806 uint64_t old_owner = guard_.exclusive_owner_;
807 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700808 guard_.recursion_count_ = 0;
809 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700810 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000811 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Elliott Hughes5f791332011-09-15 17:45:30 -0700812 if (rc != 0 && rc != ETIMEDOUT) {
813 errno = rc;
814 PLOG(FATAL) << "TimedWait failed for " << name_;
815 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700816 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700817#endif
818 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700819}
820
Ian Rogers719d1a32014-03-06 12:13:39 -0800821void Locks::Init() {
822 if (logging_lock_ != nullptr) {
823 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100824 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700825 DCHECK(modify_ldt_lock_ != nullptr);
826 } else {
827 DCHECK(modify_ldt_lock_ == nullptr);
828 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800829 DCHECK(abort_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700830 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700831 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800832 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800833 DCHECK(classlinker_classes_lock_ != nullptr);
834 DCHECK(heap_bitmap_lock_ != nullptr);
835 DCHECK(logging_lock_ != nullptr);
836 DCHECK(mutator_lock_ != nullptr);
837 DCHECK(thread_list_lock_ != nullptr);
838 DCHECK(thread_suspend_count_lock_ != nullptr);
839 DCHECK(trace_lock_ != nullptr);
840 DCHECK(profiler_lock_ != nullptr);
841 DCHECK(unexpected_signal_lock_ != nullptr);
842 DCHECK(intern_table_lock_ != nullptr);
843 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700844 // Create global locks in level order from highest lock level to lowest.
845 LockLevel current_lock_level = kMutatorLock;
846 DCHECK(mutator_lock_ == nullptr);
847 mutator_lock_ = new ReaderWriterMutex("mutator lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800848
Chao-ying Fu9e369312014-05-21 11:20:52 -0700849 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
850 DCHECK_LT(new_level, current_lock_level); \
851 current_lock_level = new_level;
852
853 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
854 DCHECK(heap_bitmap_lock_ == nullptr);
855 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
856
857 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
858 DCHECK(runtime_shutdown_lock_ == nullptr);
859 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
860
861 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
862 DCHECK(profiler_lock_ == nullptr);
863 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
864
865 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
866 DCHECK(trace_lock_ == nullptr);
867 trace_lock_ = new Mutex("trace lock", current_lock_level);
868
869 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
870 DCHECK(thread_list_lock_ == nullptr);
871 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
872
873 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800874 DCHECK(breakpoint_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700875 breakpoint_lock_ = new Mutex("breakpoint lock", current_lock_level);
876
877 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800878 DCHECK(classlinker_classes_lock_ == nullptr);
879 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -0700880 current_lock_level);
881
Andreas Gampe74240812014-04-17 10:35:09 -0700882 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
883 DCHECK(allocated_monitor_ids_lock_ == nullptr);
884 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
885
Chao-ying Fu9e369312014-05-21 11:20:52 -0700886 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
887 DCHECK(allocated_thread_ids_lock_ == nullptr);
888 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
889
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100890 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700891 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
892 DCHECK(modify_ldt_lock_ == nullptr);
893 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
894 }
895
896 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800897 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700898 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
899
900
901 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
902 DCHECK(abort_lock_ == nullptr);
903 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
904
905 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
906 DCHECK(thread_suspend_count_lock_ == nullptr);
907 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
908
909 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
910 DCHECK(unexpected_signal_lock_ == nullptr);
911 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
912
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700913 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
914 DCHECK(mem_maps_lock_ == nullptr);
915 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
916
Chao-ying Fu9e369312014-05-21 11:20:52 -0700917 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
918 DCHECK(logging_lock_ == nullptr);
919 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
920
921 #undef UPDATE_CURRENT_LOCK_LEVEL
Ian Rogers719d1a32014-03-06 12:13:39 -0800922 }
923}
924
925
Elliott Hughese62934d2012-04-09 11:24:29 -0700926} // namespace art