blob: 11698e2746c0e613c032b02f8d1a1f8335d32416 [file] [log] [blame]
Elliott Hughes8daa0922011-09-11 13:46:25 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "mutex.h"
18
19#include <errno.h>
Ian Rogersc604d732012-10-14 16:09:54 -070020#include <sys/time.h>
Elliott Hughes8daa0922011-09-11 13:46:25 -070021
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070022#include "atomic.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080023#include "base/logging.h"
Ian Rogers693ff612013-02-01 10:56:12 -080024#include "mutex-inl.h"
Elliott Hughes6b355752012-01-13 16:49:08 -080025#include "runtime.h"
Ian Rogersc604d732012-10-14 16:09:54 -070026#include "scoped_thread_state_change.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070027#include "thread-inl.h"
Elliott Hughesffb465f2012-03-01 18:46:05 -080028#include "utils.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070029
30namespace art {
31
Ian Rogers719d1a32014-03-06 12:13:39 -080032Mutex* Locks::abort_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070033Mutex* Locks::allocated_thread_ids_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080034Mutex* Locks::breakpoint_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080035ReaderWriterMutex* Locks::classlinker_classes_lock_ = nullptr;
36ReaderWriterMutex* Locks::heap_bitmap_lock_ = nullptr;
37Mutex* Locks::logging_lock_ = nullptr;
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070038Mutex* Locks::mem_maps_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070039Mutex* Locks::modify_ldt_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080040ReaderWriterMutex* Locks::mutator_lock_ = nullptr;
41Mutex* Locks::runtime_shutdown_lock_ = nullptr;
42Mutex* Locks::thread_list_lock_ = nullptr;
43Mutex* Locks::thread_suspend_count_lock_ = nullptr;
44Mutex* Locks::trace_lock_ = nullptr;
45Mutex* Locks::profiler_lock_ = nullptr;
46Mutex* Locks::unexpected_signal_lock_ = nullptr;
47Mutex* Locks::intern_table_lock_ = nullptr;
48
49struct AllMutexData {
50 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
51 Atomic<const BaseMutex*> all_mutexes_guard;
52 // All created mutexes guarded by all_mutexes_guard_.
53 std::set<BaseMutex*>* all_mutexes;
54 AllMutexData() : all_mutexes(NULL) {}
55};
56static struct AllMutexData gAllMutexData[kAllMutexDataSize];
57
Ian Rogersc604d732012-10-14 16:09:54 -070058#if ART_USE_FUTEXES
59static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070060 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070061 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
62 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
63 if (result_ts->tv_nsec < 0) {
64 result_ts->tv_sec--;
65 result_ts->tv_nsec += one_sec;
66 } else if (result_ts->tv_nsec > one_sec) {
67 result_ts->tv_sec++;
68 result_ts->tv_nsec -= one_sec;
69 }
70 return result_ts->tv_sec < 0;
71}
72#endif
73
Ian Rogers56edc432013-01-18 16:51:51 -080074class ScopedAllMutexesLock {
75 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070076 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -070077 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -080078 NanoSleep(100);
79 }
80 }
81 ~ScopedAllMutexesLock() {
Ian Rogers3e5cf302014-05-20 16:40:37 -070082 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers56edc432013-01-18 16:51:51 -080083 NanoSleep(100);
84 }
85 }
86 private:
87 const BaseMutex* const mutex_;
88};
Ian Rogers56edc432013-01-18 16:51:51 -080089
90BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070091 if (kLogLockContentions) {
92 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -070093 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070094 if (*all_mutexes_ptr == NULL) {
95 // We leak the global set of all mutexes to avoid ordering issues in global variable
96 // construction/destruction.
97 *all_mutexes_ptr = new std::set<BaseMutex*>();
98 }
99 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800100 }
Ian Rogers56edc432013-01-18 16:51:51 -0800101}
102
103BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700104 if (kLogLockContentions) {
105 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700106 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700107 }
Ian Rogers56edc432013-01-18 16:51:51 -0800108}
109
110void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700111 if (kLogLockContentions) {
112 os << "Mutex logging:\n";
113 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700114 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700115 if (all_mutexes == NULL) {
116 // No mutexes have been created yet during at startup.
117 return;
118 }
119 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700120 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700121 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
122 BaseMutex* mutex = *it;
123 if (mutex->HasEverContended()) {
124 mutex->Dump(os);
125 os << "\n";
126 }
127 }
128 os << "(Never contented)\n";
129 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
130 BaseMutex* mutex = *it;
131 if (!mutex->HasEverContended()) {
132 mutex->Dump(os);
133 os << "\n";
134 }
135 }
Ian Rogers56edc432013-01-18 16:51:51 -0800136 }
Ian Rogers56edc432013-01-18 16:51:51 -0800137}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700138
Ian Rogers81d425b2012-09-27 16:03:43 -0700139void BaseMutex::CheckSafeToWait(Thread* self) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700140 if (self == NULL) {
141 CheckUnattachedThread(level_);
142 return;
143 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700144 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700145 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
146 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700147 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800148 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700149 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700150 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogers25fd14b2012-09-05 10:56:38 -0700151 if (held_mutex != NULL) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800152 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
153 << "(level " << LockLevel(i) << ") while performing wait on "
154 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700155 bad_mutexes_held = true;
156 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700157 }
158 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700159 CHECK(!bad_mutexes_held);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700160 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700161}
162
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700163inline void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
164 if (kLogLockContentions) {
165 // Atomically add value to wait_time.
166 uint64_t new_val, old_val;
167 volatile int64_t* addr = reinterpret_cast<volatile int64_t*>(&wait_time);
168 volatile const int64_t* caddr = const_cast<volatile const int64_t*>(addr);
169 do {
170 old_val = static_cast<uint64_t>(QuasiAtomic::Read64(caddr));
171 new_val = old_val + value;
172 } while (!QuasiAtomic::Cas64(static_cast<int64_t>(old_val), static_cast<int64_t>(new_val), addr));
173 }
174}
175
Brian Carlstrom0de79852013-07-25 22:29:58 -0700176void BaseMutex::RecordContention(uint64_t blocked_tid,
177 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700178 uint64_t nano_time_blocked) {
179 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700180 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700181 ++(data->contention_count);
182 data->AddToWaitTime(nano_time_blocked);
183 ContentionLogEntry* log = data->contention_log;
184 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700185 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700186 if (log[slot].blocked_tid == blocked_tid &&
187 log[slot].owner_tid == blocked_tid) {
188 ++log[slot].count;
189 } else {
190 uint32_t new_slot;
191 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700192 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700193 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700194 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700195 log[new_slot].blocked_tid = blocked_tid;
196 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700197 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700198 }
Ian Rogers56edc432013-01-18 16:51:51 -0800199 }
Ian Rogers56edc432013-01-18 16:51:51 -0800200}
201
Ian Rogers56edc432013-01-18 16:51:51 -0800202void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700203 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700204 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700205 const ContentionLogEntry* log = data->contention_log;
206 uint64_t wait_time = data->wait_time;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700207 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700208 if (contention_count == 0) {
209 os << "never contended";
210 } else {
211 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700212 << " total wait of contender " << PrettyDuration(wait_time)
213 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700214 SafeMap<uint64_t, size_t> most_common_blocker;
215 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700216 for (size_t i = 0; i < kContentionLogSize; ++i) {
217 uint64_t blocked_tid = log[i].blocked_tid;
218 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700219 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700220 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700221 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700222 if (it != most_common_blocked.end()) {
223 most_common_blocked.Overwrite(blocked_tid, it->second + count);
224 } else {
225 most_common_blocked.Put(blocked_tid, count);
226 }
227 it = most_common_blocker.find(owner_tid);
228 if (it != most_common_blocker.end()) {
229 most_common_blocker.Overwrite(owner_tid, it->second + count);
230 } else {
231 most_common_blocker.Put(owner_tid, count);
232 }
Ian Rogers56edc432013-01-18 16:51:51 -0800233 }
234 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700235 uint64_t max_tid = 0;
236 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700237 for (const auto& pair : most_common_blocked) {
238 if (pair.second > max_tid_count) {
239 max_tid = pair.first;
240 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700241 }
Ian Rogers56edc432013-01-18 16:51:51 -0800242 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700243 if (max_tid != 0) {
244 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800245 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700246 max_tid = 0;
247 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700248 for (const auto& pair : most_common_blocker) {
249 if (pair.second > max_tid_count) {
250 max_tid = pair.first;
251 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700252 }
253 }
254 if (max_tid != 0) {
255 os << " sample shows tid=" << max_tid << " owning during this time";
256 }
Ian Rogers56edc432013-01-18 16:51:51 -0800257 }
258 }
Ian Rogers56edc432013-01-18 16:51:51 -0800259}
260
261
Ian Rogers81d425b2012-09-27 16:03:43 -0700262Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700263 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700264#if ART_USE_FUTEXES
265 state_ = 0;
266 exclusive_owner_ = 0;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700267 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700268#elif defined(__BIONIC__) || defined(__APPLE__)
Brian Carlstromf3a26412012-08-24 11:06:02 -0700269 // Use recursive mutexes for bionic and Apple otherwise the
270 // non-recursive mutexes don't have TIDs to check lock ownership of.
Elliott Hughesbbd9d832011-11-07 14:40:00 -0800271 pthread_mutexattr_t attributes;
272 CHECK_MUTEX_CALL(pthread_mutexattr_init, (&attributes));
273 CHECK_MUTEX_CALL(pthread_mutexattr_settype, (&attributes, PTHREAD_MUTEX_RECURSIVE));
274 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, &attributes));
275 CHECK_MUTEX_CALL(pthread_mutexattr_destroy, (&attributes));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700276#else
277 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, NULL));
278#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700279}
280
281Mutex::~Mutex() {
Ian Rogersc604d732012-10-14 16:09:54 -0700282#if ART_USE_FUTEXES
283 if (state_ != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700284 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700285 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700286 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
287 } else {
288 CHECK_EQ(exclusive_owner_, 0U) << "unexpectedly found an owner on unlocked mutex " << name_;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700289 CHECK_EQ(num_contenders_.LoadRelaxed(), 0)
290 << "unexpectedly found a contender on mutex " << name_;
Ian Rogersc604d732012-10-14 16:09:54 -0700291 }
292#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700293 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
294 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800295 int rc = pthread_mutex_destroy(&mutex_);
296 if (rc != 0) {
297 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800298 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700299 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700300 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800301 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughes6b355752012-01-13 16:49:08 -0800302 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
303 }
Ian Rogersc604d732012-10-14 16:09:54 -0700304#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700305}
306
Ian Rogers81d425b2012-09-27 16:03:43 -0700307void Mutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700308 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700309 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700310 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700311 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700312 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700313#if ART_USE_FUTEXES
314 bool done = false;
315 do {
316 int32_t cur_state = state_;
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700317 if (LIKELY(cur_state == 0)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700318 // Change state from 0 to 1.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800319 done = __sync_bool_compare_and_swap(&state_, 0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700320 } else {
321 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700322 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800323 num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700324 if (futex(&state_, FUTEX_WAIT, 1, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700325 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
326 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
327 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700328 PLOG(FATAL) << "futex wait failed for " << name_;
329 }
330 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800331 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700332 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700333 } while (!done);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800334 QuasiAtomic::MembarStoreLoad();
Ian Rogersc604d732012-10-14 16:09:54 -0700335 DCHECK_EQ(state_, 1);
336 exclusive_owner_ = SafeGetTid(self);
337#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700338 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700339#endif
Ian Rogers81d425b2012-09-27 16:03:43 -0700340 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700341 }
342 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700343 if (kDebugLocking) {
344 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
345 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700346 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700347 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700348}
349
Ian Rogers81d425b2012-09-27 16:03:43 -0700350bool Mutex::ExclusiveTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700351 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700352 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700353 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700354 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700355 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700356#if ART_USE_FUTEXES
357 bool done = false;
358 do {
359 int32_t cur_state = state_;
360 if (cur_state == 0) {
361 // Change state from 0 to 1.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800362 done = __sync_bool_compare_and_swap(&state_, 0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700363 } else {
364 return false;
365 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700366 } while (!done);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800367 QuasiAtomic::MembarStoreLoad();
Ian Rogersc604d732012-10-14 16:09:54 -0700368 DCHECK_EQ(state_, 1);
369 exclusive_owner_ = SafeGetTid(self);
370#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700371 int result = pthread_mutex_trylock(&mutex_);
372 if (result == EBUSY) {
373 return false;
374 }
375 if (result != 0) {
376 errno = result;
377 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
378 }
Ian Rogersc604d732012-10-14 16:09:54 -0700379#endif
Ian Rogers81d425b2012-09-27 16:03:43 -0700380 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700381 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700382 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700383 if (kDebugLocking) {
384 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
385 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700386 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700387 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700388 return true;
389}
390
Ian Rogers81d425b2012-09-27 16:03:43 -0700391void Mutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700392 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700393 AssertHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700394 recursion_count_--;
395 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700396 if (kDebugLocking) {
397 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
398 << name_ << " " << recursion_count_;
399 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700400 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700401#if ART_USE_FUTEXES
402 bool done = false;
403 do {
404 int32_t cur_state = state_;
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700405 if (LIKELY(cur_state == 1)) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800406 QuasiAtomic::MembarStoreStore();
Ian Rogersc604d732012-10-14 16:09:54 -0700407 // We're no longer the owner.
408 exclusive_owner_ = 0;
409 // Change state to 0.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800410 done = __sync_bool_compare_and_swap(&state_, cur_state, 0 /* new state */);
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700411 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc604d732012-10-14 16:09:54 -0700412 // Wake a contender
Ian Rogers3e5cf302014-05-20 16:40:37 -0700413 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700414 futex(&state_, FUTEX_WAKE, 1, NULL, NULL, 0);
415 }
416 }
417 } else {
Ian Rogersc4ee12e2013-05-16 11:19:53 -0700418 // Logging acquires the logging lock, avoid infinite recursion in that case.
419 if (this != Locks::logging_lock_) {
420 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
421 } else {
422 LogMessageData data(__FILE__, __LINE__, INTERNAL_FATAL, -1);
423 LogMessage::LogLine(data, StringPrintf("Unexpected state_ %d in unlock for %s",
424 cur_state, name_).c_str());
425 _exit(1);
426 }
Ian Rogersc604d732012-10-14 16:09:54 -0700427 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700428 } while (!done);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800429 QuasiAtomic::MembarStoreLoad();
Ian Rogersc604d732012-10-14 16:09:54 -0700430#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700431 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700432#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700433 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700434}
435
Ian Rogers56edc432013-01-18 16:51:51 -0800436void Mutex::Dump(std::ostream& os) const {
437 os << (recursive_ ? "recursive " : "non-recursive ")
438 << name_
439 << " level=" << static_cast<int>(level_)
440 << " rec=" << recursion_count_
441 << " owner=" << GetExclusiveOwnerTid() << " ";
442 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700443}
444
445std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800446 mu.Dump(os);
447 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700448}
449
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700450ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
451 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700452#if ART_USE_FUTEXES
453 , state_(0), exclusive_owner_(0), num_pending_readers_(0), num_pending_writers_(0)
454#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700455{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700456#if !ART_USE_FUTEXES
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700457 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, NULL));
Ian Rogers81d425b2012-09-27 16:03:43 -0700458#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700459}
460
461ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700462#if ART_USE_FUTEXES
463 CHECK_EQ(state_, 0);
464 CHECK_EQ(exclusive_owner_, 0U);
465 CHECK_EQ(num_pending_readers_, 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700466 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700467#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700468 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
469 // may still be using locks.
470 int rc = pthread_rwlock_destroy(&rwlock_);
471 if (rc != 0) {
472 errno = rc;
473 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700474 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700475 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800476 bool shutting_down = runtime == NULL || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700477 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800478 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700479#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700480}
481
Ian Rogers81d425b2012-09-27 16:03:43 -0700482void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700483 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700484 AssertNotExclusiveHeld(self);
485#if ART_USE_FUTEXES
486 bool done = false;
487 do {
488 int32_t cur_state = state_;
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700489 if (LIKELY(cur_state == 0)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700490 // Change state from 0 to -1.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800491 done = __sync_bool_compare_and_swap(&state_, 0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700492 } else {
493 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700494 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800495 num_pending_writers_++;
Ian Rogers81d425b2012-09-27 16:03:43 -0700496 if (futex(&state_, FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700497 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
498 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
499 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700500 PLOG(FATAL) << "futex wait failed for " << name_;
501 }
502 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800503 num_pending_writers_--;
Ian Rogers81d425b2012-09-27 16:03:43 -0700504 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700505 } while (!done);
Ian Rogersab470162012-09-29 23:06:53 -0700506 DCHECK_EQ(state_, -1);
507 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700508#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700509 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700510#endif
511 RegisterAsLocked(self);
512 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700513}
514
Ian Rogers81d425b2012-09-27 16:03:43 -0700515void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700516 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700517 AssertExclusiveHeld(self);
518 RegisterAsUnlocked(self);
519#if ART_USE_FUTEXES
520 bool done = false;
521 do {
522 int32_t cur_state = state_;
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700523 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700524 // We're no longer the owner.
525 exclusive_owner_ = 0;
526 // Change state from -1 to 0.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800527 done = __sync_bool_compare_and_swap(&state_, -1 /* cur_state*/, 0 /* new state */);
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700528 if (LIKELY(done)) { // cmpxchg may fail due to noise?
Ian Rogers81d425b2012-09-27 16:03:43 -0700529 // Wake any waiters.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700530 if (UNLIKELY(num_pending_readers_ > 0 || num_pending_writers_.LoadRelaxed() > 0)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700531 futex(&state_, FUTEX_WAKE, -1, NULL, NULL, 0);
532 }
533 }
534 } else {
535 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
536 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700537 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700538#else
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 {
551 int32_t cur_state = state_;
552 if (cur_state == 0) {
553 // Change state from 0 to -1.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800554 done = __sync_bool_compare_and_swap(&state_, 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 Rogersb122a4b2013-11-19 18:00:50 -0800564 num_pending_writers_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700565 if (futex(&state_, FUTEX_WAIT, cur_state, &rel_ts, NULL, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700566 if (errno == ETIMEDOUT) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800567 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 Rogersb122a4b2013-11-19 18:00:50 -0800576 num_pending_writers_--;
Ian Rogers81d425b2012-09-27 16:03:43 -0700577 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700578 } while (!done);
Ian Rogers01ae5802012-09-28 16:14:01 -0700579 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700580#else
Ian Rogersc604d732012-10-14 16:09:54 -0700581 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700582 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700583 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700584 if (result == ETIMEDOUT) {
585 return false;
586 }
587 if (result != 0) {
588 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700589 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700590 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700591#endif
592 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 {
603 int32_t cur_state = state_;
604 if (cur_state >= 0) {
605 // Add as an extra reader.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800606 done = __sync_bool_compare_and_swap(&state_, 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;
657 CHECK_MUTEX_CALL(pthread_condattr_init(&cond_attrs));
658#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 Rogersd45f2012012-11-28 11:46:23 -0800703 &guard_.state_, 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
764 guard_.recursion_count_ = 0;
765 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
766#endif
767 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700768}
769
Ian Rogersc604d732012-10-14 16:09:54 -0700770void ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
771 DCHECK(self == NULL || self == Thread::Current());
772 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700773 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700774 unsigned int old_recursion_count = guard_.recursion_count_;
775#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700776 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800777 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700778 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800779 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800780 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700781 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700782 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700783 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800784 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, NULL, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700785 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800786 // Timed out we're done.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700787 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800788 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700789 } else {
790 PLOG(FATAL) << "timed futex wait failed for " << name_;
791 }
792 }
793 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800794 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700795 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800796 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700797 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800798 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700799#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000800#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700801 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700802#else
Ian Rogersc604d732012-10-14 16:09:54 -0700803 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700804#endif
Ian Rogersc604d732012-10-14 16:09:54 -0700805 guard_.recursion_count_ = 0;
806 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700807 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000808 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Elliott Hughes5f791332011-09-15 17:45:30 -0700809 if (rc != 0 && rc != ETIMEDOUT) {
810 errno = rc;
811 PLOG(FATAL) << "TimedWait failed for " << name_;
812 }
Ian Rogersc604d732012-10-14 16:09:54 -0700813#endif
814 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700815}
816
Ian Rogers719d1a32014-03-06 12:13:39 -0800817void Locks::Init() {
818 if (logging_lock_ != nullptr) {
819 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100820 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700821 DCHECK(modify_ldt_lock_ != nullptr);
822 } else {
823 DCHECK(modify_ldt_lock_ == nullptr);
824 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800825 DCHECK(abort_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700826 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800827 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800828 DCHECK(classlinker_classes_lock_ != nullptr);
829 DCHECK(heap_bitmap_lock_ != nullptr);
830 DCHECK(logging_lock_ != nullptr);
831 DCHECK(mutator_lock_ != nullptr);
832 DCHECK(thread_list_lock_ != nullptr);
833 DCHECK(thread_suspend_count_lock_ != nullptr);
834 DCHECK(trace_lock_ != nullptr);
835 DCHECK(profiler_lock_ != nullptr);
836 DCHECK(unexpected_signal_lock_ != nullptr);
837 DCHECK(intern_table_lock_ != nullptr);
838 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700839 // Create global locks in level order from highest lock level to lowest.
840 LockLevel current_lock_level = kMutatorLock;
841 DCHECK(mutator_lock_ == nullptr);
842 mutator_lock_ = new ReaderWriterMutex("mutator lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800843
Chao-ying Fu9e369312014-05-21 11:20:52 -0700844 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
845 DCHECK_LT(new_level, current_lock_level); \
846 current_lock_level = new_level;
847
848 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
849 DCHECK(heap_bitmap_lock_ == nullptr);
850 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
851
852 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
853 DCHECK(runtime_shutdown_lock_ == nullptr);
854 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
855
856 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
857 DCHECK(profiler_lock_ == nullptr);
858 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
859
860 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
861 DCHECK(trace_lock_ == nullptr);
862 trace_lock_ = new Mutex("trace lock", current_lock_level);
863
864 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
865 DCHECK(thread_list_lock_ == nullptr);
866 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
867
868 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800869 DCHECK(breakpoint_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700870 breakpoint_lock_ = new Mutex("breakpoint lock", current_lock_level);
871
872 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800873 DCHECK(classlinker_classes_lock_ == nullptr);
874 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -0700875 current_lock_level);
876
877 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
878 DCHECK(allocated_thread_ids_lock_ == nullptr);
879 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
880
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100881 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700882 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
883 DCHECK(modify_ldt_lock_ == nullptr);
884 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
885 }
886
887 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800888 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700889 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
890
891
892 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
893 DCHECK(abort_lock_ == nullptr);
894 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
895
896 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
897 DCHECK(thread_suspend_count_lock_ == nullptr);
898 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
899
900 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
901 DCHECK(unexpected_signal_lock_ == nullptr);
902 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
903
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700904 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
905 DCHECK(mem_maps_lock_ == nullptr);
906 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
907
Chao-ying Fu9e369312014-05-21 11:20:52 -0700908 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
909 DCHECK(logging_lock_ == nullptr);
910 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
911
912 #undef UPDATE_CURRENT_LOCK_LEVEL
Ian Rogers719d1a32014-03-06 12:13:39 -0800913 }
914}
915
916
Elliott Hughese62934d2012-04-09 11:24:29 -0700917} // namespace art