blob: 705be40769401ca972f4f50e82a7a65cd9e498b4 [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;
Chao-ying Fu9e369312014-05-21 11:20:52 -070038Mutex* Locks::modify_ldt_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080039ReaderWriterMutex* Locks::mutator_lock_ = nullptr;
40Mutex* Locks::runtime_shutdown_lock_ = nullptr;
41Mutex* Locks::thread_list_lock_ = nullptr;
42Mutex* Locks::thread_suspend_count_lock_ = nullptr;
43Mutex* Locks::trace_lock_ = nullptr;
44Mutex* Locks::profiler_lock_ = nullptr;
45Mutex* Locks::unexpected_signal_lock_ = nullptr;
46Mutex* Locks::intern_table_lock_ = nullptr;
47
48struct AllMutexData {
49 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
50 Atomic<const BaseMutex*> all_mutexes_guard;
51 // All created mutexes guarded by all_mutexes_guard_.
52 std::set<BaseMutex*>* all_mutexes;
53 AllMutexData() : all_mutexes(NULL) {}
54};
55static struct AllMutexData gAllMutexData[kAllMutexDataSize];
56
Ian Rogersc604d732012-10-14 16:09:54 -070057#if ART_USE_FUTEXES
58static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070059 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070060 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
61 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
62 if (result_ts->tv_nsec < 0) {
63 result_ts->tv_sec--;
64 result_ts->tv_nsec += one_sec;
65 } else if (result_ts->tv_nsec > one_sec) {
66 result_ts->tv_sec++;
67 result_ts->tv_nsec -= one_sec;
68 }
69 return result_ts->tv_sec < 0;
70}
71#endif
72
Ian Rogers56edc432013-01-18 16:51:51 -080073class ScopedAllMutexesLock {
74 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070075 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -070076 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -080077 NanoSleep(100);
78 }
79 }
80 ~ScopedAllMutexesLock() {
Ian Rogers3e5cf302014-05-20 16:40:37 -070081 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers56edc432013-01-18 16:51:51 -080082 NanoSleep(100);
83 }
84 }
85 private:
86 const BaseMutex* const mutex_;
87};
Ian Rogers56edc432013-01-18 16:51:51 -080088
89BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070090 if (kLogLockContentions) {
91 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -070092 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070093 if (*all_mutexes_ptr == NULL) {
94 // We leak the global set of all mutexes to avoid ordering issues in global variable
95 // construction/destruction.
96 *all_mutexes_ptr = new std::set<BaseMutex*>();
97 }
98 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -080099 }
Ian Rogers56edc432013-01-18 16:51:51 -0800100}
101
102BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700103 if (kLogLockContentions) {
104 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700105 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700106 }
Ian Rogers56edc432013-01-18 16:51:51 -0800107}
108
109void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700110 if (kLogLockContentions) {
111 os << "Mutex logging:\n";
112 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700113 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700114 if (all_mutexes == NULL) {
115 // No mutexes have been created yet during at startup.
116 return;
117 }
118 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700119 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700120 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
121 BaseMutex* mutex = *it;
122 if (mutex->HasEverContended()) {
123 mutex->Dump(os);
124 os << "\n";
125 }
126 }
127 os << "(Never contented)\n";
128 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
129 BaseMutex* mutex = *it;
130 if (!mutex->HasEverContended()) {
131 mutex->Dump(os);
132 os << "\n";
133 }
134 }
Ian Rogers56edc432013-01-18 16:51:51 -0800135 }
Ian Rogers56edc432013-01-18 16:51:51 -0800136}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700137
Ian Rogers81d425b2012-09-27 16:03:43 -0700138void BaseMutex::CheckSafeToWait(Thread* self) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700139 if (self == NULL) {
140 CheckUnattachedThread(level_);
141 return;
142 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700143 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700144 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
145 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700146 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800147 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700148 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700149 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogers25fd14b2012-09-05 10:56:38 -0700150 if (held_mutex != NULL) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800151 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
152 << "(level " << LockLevel(i) << ") while performing wait on "
153 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700154 bad_mutexes_held = true;
155 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700156 }
157 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700158 CHECK(!bad_mutexes_held);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700159 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700160}
161
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700162inline void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
163 if (kLogLockContentions) {
164 // Atomically add value to wait_time.
165 uint64_t new_val, old_val;
166 volatile int64_t* addr = reinterpret_cast<volatile int64_t*>(&wait_time);
167 volatile const int64_t* caddr = const_cast<volatile const int64_t*>(addr);
168 do {
169 old_val = static_cast<uint64_t>(QuasiAtomic::Read64(caddr));
170 new_val = old_val + value;
171 } while (!QuasiAtomic::Cas64(static_cast<int64_t>(old_val), static_cast<int64_t>(new_val), addr));
172 }
173}
174
Brian Carlstrom0de79852013-07-25 22:29:58 -0700175void BaseMutex::RecordContention(uint64_t blocked_tid,
176 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700177 uint64_t nano_time_blocked) {
178 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700179 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700180 ++(data->contention_count);
181 data->AddToWaitTime(nano_time_blocked);
182 ContentionLogEntry* log = data->contention_log;
183 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700184 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700185 if (log[slot].blocked_tid == blocked_tid &&
186 log[slot].owner_tid == blocked_tid) {
187 ++log[slot].count;
188 } else {
189 uint32_t new_slot;
190 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700191 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700192 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700193 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700194 log[new_slot].blocked_tid = blocked_tid;
195 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700196 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700197 }
Ian Rogers56edc432013-01-18 16:51:51 -0800198 }
Ian Rogers56edc432013-01-18 16:51:51 -0800199}
200
Ian Rogers56edc432013-01-18 16:51:51 -0800201void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700202 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700203 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700204 const ContentionLogEntry* log = data->contention_log;
205 uint64_t wait_time = data->wait_time;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700206 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700207 if (contention_count == 0) {
208 os << "never contended";
209 } else {
210 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700211 << " total wait of contender " << PrettyDuration(wait_time)
212 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700213 SafeMap<uint64_t, size_t> most_common_blocker;
214 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700215 for (size_t i = 0; i < kContentionLogSize; ++i) {
216 uint64_t blocked_tid = log[i].blocked_tid;
217 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700218 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700219 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700220 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700221 if (it != most_common_blocked.end()) {
222 most_common_blocked.Overwrite(blocked_tid, it->second + count);
223 } else {
224 most_common_blocked.Put(blocked_tid, count);
225 }
226 it = most_common_blocker.find(owner_tid);
227 if (it != most_common_blocker.end()) {
228 most_common_blocker.Overwrite(owner_tid, it->second + count);
229 } else {
230 most_common_blocker.Put(owner_tid, count);
231 }
Ian Rogers56edc432013-01-18 16:51:51 -0800232 }
233 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700234 uint64_t max_tid = 0;
235 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700236 for (const auto& pair : most_common_blocked) {
237 if (pair.second > max_tid_count) {
238 max_tid = pair.first;
239 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700240 }
Ian Rogers56edc432013-01-18 16:51:51 -0800241 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700242 if (max_tid != 0) {
243 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800244 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700245 max_tid = 0;
246 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700247 for (const auto& pair : most_common_blocker) {
248 if (pair.second > max_tid_count) {
249 max_tid = pair.first;
250 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700251 }
252 }
253 if (max_tid != 0) {
254 os << " sample shows tid=" << max_tid << " owning during this time";
255 }
Ian Rogers56edc432013-01-18 16:51:51 -0800256 }
257 }
Ian Rogers56edc432013-01-18 16:51:51 -0800258}
259
260
Ian Rogers81d425b2012-09-27 16:03:43 -0700261Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700262 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700263#if ART_USE_FUTEXES
264 state_ = 0;
265 exclusive_owner_ = 0;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700266 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700267#elif defined(__BIONIC__) || defined(__APPLE__)
Brian Carlstromf3a26412012-08-24 11:06:02 -0700268 // Use recursive mutexes for bionic and Apple otherwise the
269 // non-recursive mutexes don't have TIDs to check lock ownership of.
Elliott Hughesbbd9d832011-11-07 14:40:00 -0800270 pthread_mutexattr_t attributes;
271 CHECK_MUTEX_CALL(pthread_mutexattr_init, (&attributes));
272 CHECK_MUTEX_CALL(pthread_mutexattr_settype, (&attributes, PTHREAD_MUTEX_RECURSIVE));
273 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, &attributes));
274 CHECK_MUTEX_CALL(pthread_mutexattr_destroy, (&attributes));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700275#else
276 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, NULL));
277#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700278}
279
280Mutex::~Mutex() {
Ian Rogersc604d732012-10-14 16:09:54 -0700281#if ART_USE_FUTEXES
282 if (state_ != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700283 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700284 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700285 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
286 } else {
287 CHECK_EQ(exclusive_owner_, 0U) << "unexpectedly found an owner on unlocked mutex " << name_;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700288 CHECK_EQ(num_contenders_.LoadRelaxed(), 0)
289 << "unexpectedly found a contender on mutex " << name_;
Ian Rogersc604d732012-10-14 16:09:54 -0700290 }
291#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700292 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
293 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800294 int rc = pthread_mutex_destroy(&mutex_);
295 if (rc != 0) {
296 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800297 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700298 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700299 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800300 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughes6b355752012-01-13 16:49:08 -0800301 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
302 }
Ian Rogersc604d732012-10-14 16:09:54 -0700303#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700304}
305
Ian Rogers81d425b2012-09-27 16:03:43 -0700306void Mutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700307 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700308 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700309 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700310 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700311 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700312#if ART_USE_FUTEXES
313 bool done = false;
314 do {
315 int32_t cur_state = state_;
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700316 if (LIKELY(cur_state == 0)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700317 // Change state from 0 to 1.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800318 done = __sync_bool_compare_and_swap(&state_, 0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700319 } else {
320 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700321 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800322 num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700323 if (futex(&state_, FUTEX_WAIT, 1, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700324 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
325 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
326 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700327 PLOG(FATAL) << "futex wait failed for " << name_;
328 }
329 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800330 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700331 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700332 } while (!done);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800333 QuasiAtomic::MembarStoreLoad();
Ian Rogersc604d732012-10-14 16:09:54 -0700334 DCHECK_EQ(state_, 1);
335 exclusive_owner_ = SafeGetTid(self);
336#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700337 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700338#endif
Ian Rogers81d425b2012-09-27 16:03:43 -0700339 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700340 }
341 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700342 if (kDebugLocking) {
343 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
344 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700345 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700346 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700347}
348
Ian Rogers81d425b2012-09-27 16:03:43 -0700349bool Mutex::ExclusiveTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700350 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700351 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700352 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700353 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700354 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700355#if ART_USE_FUTEXES
356 bool done = false;
357 do {
358 int32_t cur_state = state_;
359 if (cur_state == 0) {
360 // Change state from 0 to 1.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800361 done = __sync_bool_compare_and_swap(&state_, 0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700362 } else {
363 return false;
364 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700365 } while (!done);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800366 QuasiAtomic::MembarStoreLoad();
Ian Rogersc604d732012-10-14 16:09:54 -0700367 DCHECK_EQ(state_, 1);
368 exclusive_owner_ = SafeGetTid(self);
369#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700370 int result = pthread_mutex_trylock(&mutex_);
371 if (result == EBUSY) {
372 return false;
373 }
374 if (result != 0) {
375 errno = result;
376 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
377 }
Ian Rogersc604d732012-10-14 16:09:54 -0700378#endif
Ian Rogers81d425b2012-09-27 16:03:43 -0700379 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700380 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700381 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700382 if (kDebugLocking) {
383 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
384 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700385 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700386 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700387 return true;
388}
389
Ian Rogers81d425b2012-09-27 16:03:43 -0700390void Mutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700391 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700392 AssertHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700393 recursion_count_--;
394 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700395 if (kDebugLocking) {
396 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
397 << name_ << " " << recursion_count_;
398 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700399 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700400#if ART_USE_FUTEXES
401 bool done = false;
402 do {
403 int32_t cur_state = state_;
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700404 if (LIKELY(cur_state == 1)) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800405 QuasiAtomic::MembarStoreStore();
Ian Rogersc604d732012-10-14 16:09:54 -0700406 // We're no longer the owner.
407 exclusive_owner_ = 0;
408 // Change state to 0.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800409 done = __sync_bool_compare_and_swap(&state_, cur_state, 0 /* new state */);
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700410 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc604d732012-10-14 16:09:54 -0700411 // Wake a contender
Ian Rogers3e5cf302014-05-20 16:40:37 -0700412 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700413 futex(&state_, FUTEX_WAKE, 1, NULL, NULL, 0);
414 }
415 }
416 } else {
Ian Rogersc4ee12e2013-05-16 11:19:53 -0700417 // Logging acquires the logging lock, avoid infinite recursion in that case.
418 if (this != Locks::logging_lock_) {
419 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
420 } else {
421 LogMessageData data(__FILE__, __LINE__, INTERNAL_FATAL, -1);
422 LogMessage::LogLine(data, StringPrintf("Unexpected state_ %d in unlock for %s",
423 cur_state, name_).c_str());
424 _exit(1);
425 }
Ian Rogersc604d732012-10-14 16:09:54 -0700426 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700427 } while (!done);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800428 QuasiAtomic::MembarStoreLoad();
Ian Rogersc604d732012-10-14 16:09:54 -0700429#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700430 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700431#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700432 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700433}
434
Ian Rogers56edc432013-01-18 16:51:51 -0800435void Mutex::Dump(std::ostream& os) const {
436 os << (recursive_ ? "recursive " : "non-recursive ")
437 << name_
438 << " level=" << static_cast<int>(level_)
439 << " rec=" << recursion_count_
440 << " owner=" << GetExclusiveOwnerTid() << " ";
441 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700442}
443
444std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800445 mu.Dump(os);
446 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700447}
448
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700449ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
450 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700451#if ART_USE_FUTEXES
452 , state_(0), exclusive_owner_(0), num_pending_readers_(0), num_pending_writers_(0)
453#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700454{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700455#if !ART_USE_FUTEXES
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700456 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, NULL));
Ian Rogers81d425b2012-09-27 16:03:43 -0700457#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700458}
459
460ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700461#if ART_USE_FUTEXES
462 CHECK_EQ(state_, 0);
463 CHECK_EQ(exclusive_owner_, 0U);
464 CHECK_EQ(num_pending_readers_, 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700465 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700466#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700467 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
468 // may still be using locks.
469 int rc = pthread_rwlock_destroy(&rwlock_);
470 if (rc != 0) {
471 errno = rc;
472 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700473 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700474 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800475 bool shutting_down = runtime == NULL || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700476 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800477 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700478#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700479}
480
Ian Rogers81d425b2012-09-27 16:03:43 -0700481void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700482 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700483 AssertNotExclusiveHeld(self);
484#if ART_USE_FUTEXES
485 bool done = false;
486 do {
487 int32_t cur_state = state_;
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700488 if (LIKELY(cur_state == 0)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700489 // Change state from 0 to -1.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800490 done = __sync_bool_compare_and_swap(&state_, 0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700491 } else {
492 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700493 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800494 num_pending_writers_++;
Ian Rogers81d425b2012-09-27 16:03:43 -0700495 if (futex(&state_, FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700496 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
497 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
498 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700499 PLOG(FATAL) << "futex wait failed for " << name_;
500 }
501 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800502 num_pending_writers_--;
Ian Rogers81d425b2012-09-27 16:03:43 -0700503 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700504 } while (!done);
Ian Rogersab470162012-09-29 23:06:53 -0700505 DCHECK_EQ(state_, -1);
506 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700507#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700508 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700509#endif
510 RegisterAsLocked(self);
511 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700512}
513
Ian Rogers81d425b2012-09-27 16:03:43 -0700514void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700515 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700516 AssertExclusiveHeld(self);
517 RegisterAsUnlocked(self);
518#if ART_USE_FUTEXES
519 bool done = false;
520 do {
521 int32_t cur_state = state_;
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700522 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700523 // We're no longer the owner.
524 exclusive_owner_ = 0;
525 // Change state from -1 to 0.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800526 done = __sync_bool_compare_and_swap(&state_, -1 /* cur_state*/, 0 /* new state */);
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700527 if (LIKELY(done)) { // cmpxchg may fail due to noise?
Ian Rogers81d425b2012-09-27 16:03:43 -0700528 // Wake any waiters.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700529 if (UNLIKELY(num_pending_readers_ > 0 || num_pending_writers_.LoadRelaxed() > 0)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700530 futex(&state_, FUTEX_WAKE, -1, NULL, NULL, 0);
531 }
532 }
533 } else {
534 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
535 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700536 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700537#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700538 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700539#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700540}
541
Ian Rogers66aee5c2012-08-15 17:17:47 -0700542#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700543bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700544 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700545#if ART_USE_FUTEXES
546 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700547 timespec end_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800548 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700549 do {
550 int32_t cur_state = state_;
551 if (cur_state == 0) {
552 // Change state from 0 to -1.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800553 done = __sync_bool_compare_and_swap(&state_, 0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700554 } else {
555 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700556 timespec now_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800557 InitTimeSpec(true, CLOCK_REALTIME, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700558 timespec rel_ts;
559 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
560 return false; // Timed out.
561 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700562 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800563 num_pending_writers_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700564 if (futex(&state_, FUTEX_WAIT, cur_state, &rel_ts, NULL, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700565 if (errno == ETIMEDOUT) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800566 num_pending_writers_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700567 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700568 } else if ((errno != EAGAIN) && (errno != EINTR)) {
569 // EAGAIN and EINTR both indicate a spurious failure,
570 // recompute the relative time out from now and try again.
571 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700572 PLOG(FATAL) << "timed futex wait failed for " << name_;
573 }
574 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800575 num_pending_writers_--;
Ian Rogers81d425b2012-09-27 16:03:43 -0700576 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700577 } while (!done);
Ian Rogers01ae5802012-09-28 16:14:01 -0700578 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700579#else
Ian Rogersc604d732012-10-14 16:09:54 -0700580 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700581 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700582 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700583 if (result == ETIMEDOUT) {
584 return false;
585 }
586 if (result != 0) {
587 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700588 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700589 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700590#endif
591 RegisterAsLocked(self);
592 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700593 return true;
594}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700595#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700596
Ian Rogers81d425b2012-09-27 16:03:43 -0700597bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700598 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700599#if ART_USE_FUTEXES
600 bool done = false;
601 do {
602 int32_t cur_state = state_;
603 if (cur_state >= 0) {
604 // Add as an extra reader.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800605 done = __sync_bool_compare_and_swap(&state_, cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700606 } else {
607 // Owner holds it exclusively.
608 return false;
609 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700610 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700611#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700612 int result = pthread_rwlock_tryrdlock(&rwlock_);
613 if (result == EBUSY) {
614 return false;
615 }
616 if (result != 0) {
617 errno = result;
618 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
619 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700620#endif
621 RegisterAsLocked(self);
622 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700623 return true;
624}
625
Ian Rogers81d425b2012-09-27 16:03:43 -0700626bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Ian Rogers01ae5802012-09-28 16:14:01 -0700627 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700628 bool result;
629 if (UNLIKELY(self == NULL)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700630 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700631 } else {
632 result = (self->GetHeldMutex(level_) == this);
633 }
634 return result;
635}
636
Ian Rogers56edc432013-01-18 16:51:51 -0800637void ReaderWriterMutex::Dump(std::ostream& os) const {
638 os << name_
639 << " level=" << static_cast<int>(level_)
640 << " owner=" << GetExclusiveOwnerTid() << " ";
641 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700642}
643
644std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800645 mu.Dump(os);
646 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700647}
648
Ian Rogers23055dc2013-04-18 16:29:16 -0700649ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700650 : name_(name), guard_(guard) {
651#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700652 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700653 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700654#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000655 pthread_condattr_t cond_attrs;
656 CHECK_MUTEX_CALL(pthread_condattr_init(&cond_attrs));
657#if !defined(__APPLE__)
658 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
659 CHECK_MUTEX_CALL(pthread_condattr_setclock(&cond_attrs, CLOCK_MONOTONIC));
660#endif
661 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700662#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700663}
664
665ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800666#if ART_USE_FUTEXES
667 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800668 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700669 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800670 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
671 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800672 }
673#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700674 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
675 // may still be using condition variables.
676 int rc = pthread_cond_destroy(&cond_);
677 if (rc != 0) {
678 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700679 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700680 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800681 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700682 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
683 }
Ian Rogersc604d732012-10-14 16:09:54 -0700684#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700685}
686
Ian Rogersc604d732012-10-14 16:09:54 -0700687void ConditionVariable::Broadcast(Thread* self) {
688 DCHECK(self == NULL || self == Thread::Current());
689 // TODO: enable below, there's a race in thread creation that causes false failures currently.
690 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700691 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700692#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800693 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800694 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700695 bool done = false;
696 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700697 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800698 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
699 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800700 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800701 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersd45f2012012-11-28 11:46:23 -0800702 &guard_.state_, cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800703 if (!done) {
704 if (errno != EAGAIN) {
705 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
706 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800707 }
Ian Rogersc604d732012-10-14 16:09:54 -0700708 } while (!done);
709 }
710#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700711 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700712#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700713}
714
Ian Rogersc604d732012-10-14 16:09:54 -0700715void ConditionVariable::Signal(Thread* self) {
716 DCHECK(self == NULL || self == Thread::Current());
717 guard_.AssertExclusiveHeld(self);
718#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800719 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800720 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700721 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
722 // to avoid this, however, requeueing can only move all waiters.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800723 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800724 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800725 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700726 }
727#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700728 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700729#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700730}
731
Ian Rogersc604d732012-10-14 16:09:54 -0700732void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700733 guard_.CheckSafeToWait(self);
734 WaitHoldingLocks(self);
735}
736
737void ConditionVariable::WaitHoldingLocks(Thread* self) {
Ian Rogersc604d732012-10-14 16:09:54 -0700738 DCHECK(self == NULL || self == Thread::Current());
739 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700740 unsigned int old_recursion_count = guard_.recursion_count_;
741#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700742 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800743 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800744 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700745 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700746 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700747 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800748 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, NULL, NULL, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800749 // Futex failed, check it is an expected error.
750 // EAGAIN == EWOULDBLK, so we let the caller try again.
751 // EINTR implies a signal was sent to this thread.
752 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700753 PLOG(FATAL) << "futex wait failed for " << name_;
754 }
755 }
756 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800757 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700758 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800759 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700760 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800761 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700762#else
763 guard_.recursion_count_ = 0;
764 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
765#endif
766 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700767}
768
Ian Rogersc604d732012-10-14 16:09:54 -0700769void ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
770 DCHECK(self == NULL || self == Thread::Current());
771 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700772 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700773 unsigned int old_recursion_count = guard_.recursion_count_;
774#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700775 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800776 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700777 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800778 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800779 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700780 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700781 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700782 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800783 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, NULL, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700784 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800785 // Timed out we're done.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700786 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800787 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700788 } else {
789 PLOG(FATAL) << "timed futex wait failed for " << name_;
790 }
791 }
792 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800793 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700794 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800795 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700796 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800797 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700798#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000799#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700800 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700801#else
Ian Rogersc604d732012-10-14 16:09:54 -0700802 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700803#endif
Ian Rogersc604d732012-10-14 16:09:54 -0700804 guard_.recursion_count_ = 0;
805 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700806 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000807 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Elliott Hughes5f791332011-09-15 17:45:30 -0700808 if (rc != 0 && rc != ETIMEDOUT) {
809 errno = rc;
810 PLOG(FATAL) << "TimedWait failed for " << name_;
811 }
Ian Rogersc604d732012-10-14 16:09:54 -0700812#endif
813 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700814}
815
Ian Rogers719d1a32014-03-06 12:13:39 -0800816void Locks::Init() {
817 if (logging_lock_ != nullptr) {
818 // Already initialized.
Chao-ying Fu9e369312014-05-21 11:20:52 -0700819 if (kRuntimeISA == kX86) {
820 DCHECK(modify_ldt_lock_ != nullptr);
821 } else {
822 DCHECK(modify_ldt_lock_ == nullptr);
823 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800824 DCHECK(abort_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700825 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800826 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800827 DCHECK(classlinker_classes_lock_ != nullptr);
828 DCHECK(heap_bitmap_lock_ != nullptr);
829 DCHECK(logging_lock_ != nullptr);
830 DCHECK(mutator_lock_ != nullptr);
831 DCHECK(thread_list_lock_ != nullptr);
832 DCHECK(thread_suspend_count_lock_ != nullptr);
833 DCHECK(trace_lock_ != nullptr);
834 DCHECK(profiler_lock_ != nullptr);
835 DCHECK(unexpected_signal_lock_ != nullptr);
836 DCHECK(intern_table_lock_ != nullptr);
837 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700838 // Create global locks in level order from highest lock level to lowest.
839 LockLevel current_lock_level = kMutatorLock;
840 DCHECK(mutator_lock_ == nullptr);
841 mutator_lock_ = new ReaderWriterMutex("mutator lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800842
Chao-ying Fu9e369312014-05-21 11:20:52 -0700843 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
844 DCHECK_LT(new_level, current_lock_level); \
845 current_lock_level = new_level;
846
847 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
848 DCHECK(heap_bitmap_lock_ == nullptr);
849 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
850
851 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
852 DCHECK(runtime_shutdown_lock_ == nullptr);
853 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
854
855 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
856 DCHECK(profiler_lock_ == nullptr);
857 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
858
859 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
860 DCHECK(trace_lock_ == nullptr);
861 trace_lock_ = new Mutex("trace lock", current_lock_level);
862
863 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
864 DCHECK(thread_list_lock_ == nullptr);
865 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
866
867 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800868 DCHECK(breakpoint_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700869 breakpoint_lock_ = new Mutex("breakpoint lock", current_lock_level);
870
871 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800872 DCHECK(classlinker_classes_lock_ == nullptr);
873 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -0700874 current_lock_level);
875
876 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
877 DCHECK(allocated_thread_ids_lock_ == nullptr);
878 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
879
880 if (kRuntimeISA == kX86) {
881 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
882 DCHECK(modify_ldt_lock_ == nullptr);
883 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
884 }
885
886 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800887 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700888 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
889
890
891 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
892 DCHECK(abort_lock_ == nullptr);
893 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
894
895 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
896 DCHECK(thread_suspend_count_lock_ == nullptr);
897 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
898
899 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
900 DCHECK(unexpected_signal_lock_ == nullptr);
901 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
902
903 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
904 DCHECK(logging_lock_ == nullptr);
905 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
906
907 #undef UPDATE_CURRENT_LOCK_LEVEL
Ian Rogers719d1a32014-03-06 12:13:39 -0800908 }
909}
910
911
Elliott Hughese62934d2012-04-09 11:24:29 -0700912} // namespace art