blob: 07ece377acf147b3d94f145e17c596074e582819 [file] [log] [blame]
Elliott Hughes8daa0922011-09-11 13:46:25 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "mutex.h"
18
19#include <errno.h>
Ian Rogersc604d732012-10-14 16:09:54 -070020#include <sys/time.h>
Elliott Hughes8daa0922011-09-11 13:46:25 -070021
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070022#include "atomic.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080023#include "base/logging.h"
Ian Rogers693ff612013-02-01 10:56:12 -080024#include "mutex-inl.h"
Elliott Hughes6b355752012-01-13 16:49:08 -080025#include "runtime.h"
Ian Rogersc604d732012-10-14 16:09:54 -070026#include "scoped_thread_state_change.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070027#include "thread-inl.h"
Elliott Hughesffb465f2012-03-01 18:46:05 -080028#include "utils.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070029
30namespace art {
31
Ian Rogers719d1a32014-03-06 12:13:39 -080032Mutex* Locks::abort_lock_ = nullptr;
Andreas Gampe74240812014-04-17 10:35:09 -070033Mutex* Locks::allocated_monitor_ids_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070034Mutex* Locks::allocated_thread_ids_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080035Mutex* Locks::breakpoint_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080036ReaderWriterMutex* Locks::classlinker_classes_lock_ = nullptr;
37ReaderWriterMutex* Locks::heap_bitmap_lock_ = nullptr;
38Mutex* Locks::logging_lock_ = nullptr;
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070039Mutex* Locks::mem_maps_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070040Mutex* Locks::modify_ldt_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080041ReaderWriterMutex* Locks::mutator_lock_ = nullptr;
42Mutex* Locks::runtime_shutdown_lock_ = nullptr;
43Mutex* Locks::thread_list_lock_ = nullptr;
44Mutex* Locks::thread_suspend_count_lock_ = nullptr;
45Mutex* Locks::trace_lock_ = nullptr;
46Mutex* Locks::profiler_lock_ = nullptr;
47Mutex* Locks::unexpected_signal_lock_ = nullptr;
48Mutex* Locks::intern_table_lock_ = nullptr;
49
50struct AllMutexData {
51 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
52 Atomic<const BaseMutex*> all_mutexes_guard;
53 // All created mutexes guarded by all_mutexes_guard_.
54 std::set<BaseMutex*>* all_mutexes;
55 AllMutexData() : all_mutexes(NULL) {}
56};
57static struct AllMutexData gAllMutexData[kAllMutexDataSize];
58
Ian Rogersc604d732012-10-14 16:09:54 -070059#if ART_USE_FUTEXES
60static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070061 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070062 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
63 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
64 if (result_ts->tv_nsec < 0) {
65 result_ts->tv_sec--;
66 result_ts->tv_nsec += one_sec;
67 } else if (result_ts->tv_nsec > one_sec) {
68 result_ts->tv_sec++;
69 result_ts->tv_nsec -= one_sec;
70 }
71 return result_ts->tv_sec < 0;
72}
73#endif
74
Ian Rogers56edc432013-01-18 16:51:51 -080075class ScopedAllMutexesLock {
76 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070077 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -070078 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -080079 NanoSleep(100);
80 }
81 }
82 ~ScopedAllMutexesLock() {
Ian Rogers3e5cf302014-05-20 16:40:37 -070083 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers56edc432013-01-18 16:51:51 -080084 NanoSleep(100);
85 }
86 }
87 private:
88 const BaseMutex* const mutex_;
89};
Ian Rogers56edc432013-01-18 16:51:51 -080090
91BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070092 if (kLogLockContentions) {
93 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -070094 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070095 if (*all_mutexes_ptr == NULL) {
96 // We leak the global set of all mutexes to avoid ordering issues in global variable
97 // construction/destruction.
98 *all_mutexes_ptr = new std::set<BaseMutex*>();
99 }
100 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800101 }
Ian Rogers56edc432013-01-18 16:51:51 -0800102}
103
104BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700105 if (kLogLockContentions) {
106 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700107 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700108 }
Ian Rogers56edc432013-01-18 16:51:51 -0800109}
110
111void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700112 if (kLogLockContentions) {
113 os << "Mutex logging:\n";
114 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700115 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700116 if (all_mutexes == NULL) {
117 // No mutexes have been created yet during at startup.
118 return;
119 }
120 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700121 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700122 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
123 BaseMutex* mutex = *it;
124 if (mutex->HasEverContended()) {
125 mutex->Dump(os);
126 os << "\n";
127 }
128 }
129 os << "(Never contented)\n";
130 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
131 BaseMutex* mutex = *it;
132 if (!mutex->HasEverContended()) {
133 mutex->Dump(os);
134 os << "\n";
135 }
136 }
Ian Rogers56edc432013-01-18 16:51:51 -0800137 }
Ian Rogers56edc432013-01-18 16:51:51 -0800138}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700139
Ian Rogers81d425b2012-09-27 16:03:43 -0700140void BaseMutex::CheckSafeToWait(Thread* self) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700141 if (self == NULL) {
142 CheckUnattachedThread(level_);
143 return;
144 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700145 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700146 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
147 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700148 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800149 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700150 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700151 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogers25fd14b2012-09-05 10:56:38 -0700152 if (held_mutex != NULL) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800153 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
154 << "(level " << LockLevel(i) << ") while performing wait on "
155 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700156 bad_mutexes_held = true;
157 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700158 }
159 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700160 CHECK(!bad_mutexes_held);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700161 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700162}
163
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700164inline void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
165 if (kLogLockContentions) {
166 // Atomically add value to wait_time.
167 uint64_t new_val, old_val;
168 volatile int64_t* addr = reinterpret_cast<volatile int64_t*>(&wait_time);
169 volatile const int64_t* caddr = const_cast<volatile const int64_t*>(addr);
170 do {
171 old_val = static_cast<uint64_t>(QuasiAtomic::Read64(caddr));
172 new_val = old_val + value;
173 } while (!QuasiAtomic::Cas64(static_cast<int64_t>(old_val), static_cast<int64_t>(new_val), addr));
174 }
175}
176
Brian Carlstrom0de79852013-07-25 22:29:58 -0700177void BaseMutex::RecordContention(uint64_t blocked_tid,
178 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700179 uint64_t nano_time_blocked) {
180 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700181 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700182 ++(data->contention_count);
183 data->AddToWaitTime(nano_time_blocked);
184 ContentionLogEntry* log = data->contention_log;
185 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700186 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700187 if (log[slot].blocked_tid == blocked_tid &&
188 log[slot].owner_tid == blocked_tid) {
189 ++log[slot].count;
190 } else {
191 uint32_t new_slot;
192 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700193 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700194 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700195 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700196 log[new_slot].blocked_tid = blocked_tid;
197 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700198 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700199 }
Ian Rogers56edc432013-01-18 16:51:51 -0800200 }
Ian Rogers56edc432013-01-18 16:51:51 -0800201}
202
Ian Rogers56edc432013-01-18 16:51:51 -0800203void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700204 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700205 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700206 const ContentionLogEntry* log = data->contention_log;
207 uint64_t wait_time = data->wait_time;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700208 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700209 if (contention_count == 0) {
210 os << "never contended";
211 } else {
212 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700213 << " total wait of contender " << PrettyDuration(wait_time)
214 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700215 SafeMap<uint64_t, size_t> most_common_blocker;
216 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700217 for (size_t i = 0; i < kContentionLogSize; ++i) {
218 uint64_t blocked_tid = log[i].blocked_tid;
219 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700220 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700221 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700222 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700223 if (it != most_common_blocked.end()) {
224 most_common_blocked.Overwrite(blocked_tid, it->second + count);
225 } else {
226 most_common_blocked.Put(blocked_tid, count);
227 }
228 it = most_common_blocker.find(owner_tid);
229 if (it != most_common_blocker.end()) {
230 most_common_blocker.Overwrite(owner_tid, it->second + count);
231 } else {
232 most_common_blocker.Put(owner_tid, count);
233 }
Ian Rogers56edc432013-01-18 16:51:51 -0800234 }
235 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700236 uint64_t max_tid = 0;
237 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700238 for (const auto& pair : most_common_blocked) {
239 if (pair.second > max_tid_count) {
240 max_tid = pair.first;
241 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700242 }
Ian Rogers56edc432013-01-18 16:51:51 -0800243 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700244 if (max_tid != 0) {
245 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800246 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700247 max_tid = 0;
248 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700249 for (const auto& pair : most_common_blocker) {
250 if (pair.second > max_tid_count) {
251 max_tid = pair.first;
252 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700253 }
254 }
255 if (max_tid != 0) {
256 os << " sample shows tid=" << max_tid << " owning during this time";
257 }
Ian Rogers56edc432013-01-18 16:51:51 -0800258 }
259 }
Ian Rogers56edc432013-01-18 16:51:51 -0800260}
261
262
Ian Rogers81d425b2012-09-27 16:03:43 -0700263Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700264 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700265#if ART_USE_FUTEXES
266 state_ = 0;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700267 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700268#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700269 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700270#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700271 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700272}
273
274Mutex::~Mutex() {
Ian Rogersc604d732012-10-14 16:09:54 -0700275#if ART_USE_FUTEXES
276 if (state_ != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700277 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700278 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700279 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
280 } else {
281 CHECK_EQ(exclusive_owner_, 0U) << "unexpectedly found an owner on unlocked mutex " << name_;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700282 CHECK_EQ(num_contenders_.LoadRelaxed(), 0)
283 << "unexpectedly found a contender on mutex " << name_;
Ian Rogersc604d732012-10-14 16:09:54 -0700284 }
285#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700286 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
287 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800288 int rc = pthread_mutex_destroy(&mutex_);
289 if (rc != 0) {
290 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800291 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700292 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700293 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800294 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughes6b355752012-01-13 16:49:08 -0800295 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
296 }
Ian Rogersc604d732012-10-14 16:09:54 -0700297#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700298}
299
Ian Rogers81d425b2012-09-27 16:03:43 -0700300void Mutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700301 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700302 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700303 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700304 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700305 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700306#if ART_USE_FUTEXES
307 bool done = false;
308 do {
309 int32_t cur_state = state_;
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700310 if (LIKELY(cur_state == 0)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700311 // Change state from 0 to 1.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800312 done = __sync_bool_compare_and_swap(&state_, 0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700313 } else {
314 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700315 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800316 num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700317 if (futex(&state_, FUTEX_WAIT, 1, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700318 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
319 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
320 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700321 PLOG(FATAL) << "futex wait failed for " << name_;
322 }
323 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800324 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700325 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700326 } while (!done);
Hans Boehm30359612014-05-21 17:46:23 -0700327 // We assert that no memory fence is needed here, since
328 // __sync_bool_compare_and_swap includes it.
329 // TODO: Change state_ to be a art::Atomic and use an intention revealing CAS operation
330 // that exposes the ordering semantics.
Ian Rogersc604d732012-10-14 16:09:54 -0700331 DCHECK_EQ(state_, 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700332#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700333 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700334#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700335 DCHECK_EQ(exclusive_owner_, 0U);
336 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700337 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700338 }
339 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700340 if (kDebugLocking) {
341 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
342 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700343 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700344 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700345}
346
Ian Rogers81d425b2012-09-27 16:03:43 -0700347bool Mutex::ExclusiveTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700348 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700349 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700350 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700351 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700352 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700353#if ART_USE_FUTEXES
354 bool done = false;
355 do {
356 int32_t cur_state = state_;
357 if (cur_state == 0) {
358 // Change state from 0 to 1.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800359 done = __sync_bool_compare_and_swap(&state_, 0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700360 } else {
361 return false;
362 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700363 } while (!done);
Hans Boehm30359612014-05-21 17:46:23 -0700364 // We again assert no memory fence is needed.
Ian Rogersc604d732012-10-14 16:09:54 -0700365 DCHECK_EQ(state_, 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700366#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700367 int result = pthread_mutex_trylock(&mutex_);
368 if (result == EBUSY) {
369 return false;
370 }
371 if (result != 0) {
372 errno = result;
373 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
374 }
Ian Rogersc604d732012-10-14 16:09:54 -0700375#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700376 DCHECK_EQ(exclusive_owner_, 0U);
377 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700378 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700379 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700380 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700381 if (kDebugLocking) {
382 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
383 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700384 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700385 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700386 return true;
387}
388
Ian Rogers81d425b2012-09-27 16:03:43 -0700389void Mutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700390 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700391 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700392 DCHECK_NE(exclusive_owner_, 0U);
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
Ian Rogersc5f17732014-06-05 20:48:42 -0700401 bool done = false;
402 do {
403 int32_t cur_state = state_;
404 if (LIKELY(cur_state == 1)) {
405 // The __sync_bool_compare_and_swap enforces the necessary memory ordering.
406 // We're no longer the owner.
407 exclusive_owner_ = 0;
408 // Change state to 0.
409 done = __sync_bool_compare_and_swap(&state_, cur_state, 0 /* new state */);
410 if (LIKELY(done)) { // Spurious fail?
411 // Wake a contender
412 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
413 futex(&state_, FUTEX_WAKE, 1, NULL, NULL, 0);
414 }
415 }
416 } else {
417 // 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);
Ian Rogersc604d732012-10-14 16:09:54 -0700425 }
426 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700427 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700428#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700429 exclusive_owner_ = 0;
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
Ian Rogersc5f17732014-06-05 20:48:42 -0700452 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700453#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 Rogersc5f17732014-06-05 20:48:42 -0700456 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700457#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700458 exclusive_owner_ = 0;
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);
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
Ian Rogersc5f17732014-06-05 20:48:42 -0700510 DCHECK_EQ(exclusive_owner_, 0U);
511 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700512 RegisterAsLocked(self);
513 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700514}
515
Ian Rogers81d425b2012-09-27 16:03:43 -0700516void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700517 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700518 AssertExclusiveHeld(self);
519 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700520 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700521#if ART_USE_FUTEXES
522 bool done = false;
523 do {
524 int32_t cur_state = state_;
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700525 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700526 // We're no longer the owner.
527 exclusive_owner_ = 0;
528 // Change state from -1 to 0.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800529 done = __sync_bool_compare_and_swap(&state_, -1 /* cur_state*/, 0 /* new state */);
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700530 if (LIKELY(done)) { // cmpxchg may fail due to noise?
Ian Rogers81d425b2012-09-27 16:03:43 -0700531 // Wake any waiters.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700532 if (UNLIKELY(num_pending_readers_ > 0 || num_pending_writers_.LoadRelaxed() > 0)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700533 futex(&state_, FUTEX_WAKE, -1, NULL, NULL, 0);
534 }
535 }
536 } else {
537 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
538 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700539 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700540#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700541 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700542 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700543#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700544}
545
Ian Rogers66aee5c2012-08-15 17:17:47 -0700546#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700547bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700548 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700549#if ART_USE_FUTEXES
550 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700551 timespec end_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800552 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700553 do {
554 int32_t cur_state = state_;
555 if (cur_state == 0) {
556 // Change state from 0 to -1.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800557 done = __sync_bool_compare_and_swap(&state_, 0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700558 } else {
559 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700560 timespec now_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800561 InitTimeSpec(true, CLOCK_REALTIME, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700562 timespec rel_ts;
563 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
564 return false; // Timed out.
565 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700566 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800567 num_pending_writers_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700568 if (futex(&state_, FUTEX_WAIT, cur_state, &rel_ts, NULL, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700569 if (errno == ETIMEDOUT) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800570 num_pending_writers_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700571 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700572 } else if ((errno != EAGAIN) && (errno != EINTR)) {
573 // EAGAIN and EINTR both indicate a spurious failure,
574 // recompute the relative time out from now and try again.
575 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700576 PLOG(FATAL) << "timed futex wait failed for " << name_;
577 }
578 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800579 num_pending_writers_--;
Ian Rogers81d425b2012-09-27 16:03:43 -0700580 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700581 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700582#else
Ian Rogersc604d732012-10-14 16:09:54 -0700583 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700584 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700585 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700586 if (result == ETIMEDOUT) {
587 return false;
588 }
589 if (result != 0) {
590 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700591 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700592 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700593#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700594 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700595 RegisterAsLocked(self);
596 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700597 return true;
598}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700599#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700600
Ian Rogers81d425b2012-09-27 16:03:43 -0700601bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700602 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700603#if ART_USE_FUTEXES
604 bool done = false;
605 do {
606 int32_t cur_state = state_;
607 if (cur_state >= 0) {
608 // Add as an extra reader.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800609 done = __sync_bool_compare_and_swap(&state_, cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700610 } else {
611 // Owner holds it exclusively.
612 return false;
613 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700614 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700615#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700616 int result = pthread_rwlock_tryrdlock(&rwlock_);
617 if (result == EBUSY) {
618 return false;
619 }
620 if (result != 0) {
621 errno = result;
622 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
623 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700624#endif
625 RegisterAsLocked(self);
626 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700627 return true;
628}
629
Ian Rogers81d425b2012-09-27 16:03:43 -0700630bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Ian Rogers01ae5802012-09-28 16:14:01 -0700631 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700632 bool result;
633 if (UNLIKELY(self == NULL)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700634 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700635 } else {
636 result = (self->GetHeldMutex(level_) == this);
637 }
638 return result;
639}
640
Ian Rogers56edc432013-01-18 16:51:51 -0800641void ReaderWriterMutex::Dump(std::ostream& os) const {
642 os << name_
643 << " level=" << static_cast<int>(level_)
644 << " owner=" << GetExclusiveOwnerTid() << " ";
645 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700646}
647
648std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800649 mu.Dump(os);
650 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700651}
652
Ian Rogers23055dc2013-04-18 16:29:16 -0700653ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700654 : name_(name), guard_(guard) {
655#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700656 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700657 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700658#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000659 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700660 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000661#if !defined(__APPLE__)
662 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
663 CHECK_MUTEX_CALL(pthread_condattr_setclock(&cond_attrs, CLOCK_MONOTONIC));
664#endif
665 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700666#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700667}
668
669ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800670#if ART_USE_FUTEXES
671 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800672 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700673 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800674 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
675 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800676 }
677#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700678 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
679 // may still be using condition variables.
680 int rc = pthread_cond_destroy(&cond_);
681 if (rc != 0) {
682 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700683 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700684 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800685 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700686 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
687 }
Ian Rogersc604d732012-10-14 16:09:54 -0700688#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700689}
690
Ian Rogersc604d732012-10-14 16:09:54 -0700691void ConditionVariable::Broadcast(Thread* self) {
692 DCHECK(self == NULL || self == Thread::Current());
693 // TODO: enable below, there's a race in thread creation that causes false failures currently.
694 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700695 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700696#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800697 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800698 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700699 bool done = false;
700 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700701 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800702 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
703 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800704 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800705 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersd45f2012012-11-28 11:46:23 -0800706 &guard_.state_, cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800707 if (!done) {
708 if (errno != EAGAIN) {
709 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
710 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800711 }
Ian Rogersc604d732012-10-14 16:09:54 -0700712 } while (!done);
713 }
714#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700715 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700716#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700717}
718
Ian Rogersc604d732012-10-14 16:09:54 -0700719void ConditionVariable::Signal(Thread* self) {
720 DCHECK(self == NULL || self == Thread::Current());
721 guard_.AssertExclusiveHeld(self);
722#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800723 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800724 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700725 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
726 // to avoid this, however, requeueing can only move all waiters.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800727 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800728 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800729 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700730 }
731#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700732 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700733#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700734}
735
Ian Rogersc604d732012-10-14 16:09:54 -0700736void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700737 guard_.CheckSafeToWait(self);
738 WaitHoldingLocks(self);
739}
740
741void ConditionVariable::WaitHoldingLocks(Thread* self) {
Ian Rogersc604d732012-10-14 16:09:54 -0700742 DCHECK(self == NULL || self == Thread::Current());
743 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700744 unsigned int old_recursion_count = guard_.recursion_count_;
745#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700746 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800747 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800748 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700749 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700750 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700751 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800752 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, NULL, NULL, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800753 // Futex failed, check it is an expected error.
754 // EAGAIN == EWOULDBLK, so we let the caller try again.
755 // EINTR implies a signal was sent to this thread.
756 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700757 PLOG(FATAL) << "futex wait failed for " << name_;
758 }
759 }
760 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800761 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700762 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800763 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700764 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800765 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700766#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700767 uint64_t old_owner = guard_.exclusive_owner_;
768 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700769 guard_.recursion_count_ = 0;
770 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700771 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700772#endif
773 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700774}
775
Ian Rogersc604d732012-10-14 16:09:54 -0700776void ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
777 DCHECK(self == NULL || self == Thread::Current());
778 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700779 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700780 unsigned int old_recursion_count = guard_.recursion_count_;
781#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700782 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800783 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700784 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800785 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800786 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700787 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700788 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700789 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800790 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, NULL, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700791 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800792 // Timed out we're done.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700793 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800794 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700795 } else {
796 PLOG(FATAL) << "timed futex wait failed for " << name_;
797 }
798 }
799 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800800 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700801 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800802 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700803 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800804 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700805#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000806#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700807 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700808#else
Ian Rogersc604d732012-10-14 16:09:54 -0700809 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700810#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700811 uint64_t old_owner = guard_.exclusive_owner_;
812 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700813 guard_.recursion_count_ = 0;
814 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700815 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000816 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Elliott Hughes5f791332011-09-15 17:45:30 -0700817 if (rc != 0 && rc != ETIMEDOUT) {
818 errno = rc;
819 PLOG(FATAL) << "TimedWait failed for " << name_;
820 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700821 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700822#endif
823 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700824}
825
Ian Rogers719d1a32014-03-06 12:13:39 -0800826void Locks::Init() {
827 if (logging_lock_ != nullptr) {
828 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100829 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700830 DCHECK(modify_ldt_lock_ != nullptr);
831 } else {
832 DCHECK(modify_ldt_lock_ == nullptr);
833 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800834 DCHECK(abort_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700835 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700836 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800837 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800838 DCHECK(classlinker_classes_lock_ != nullptr);
839 DCHECK(heap_bitmap_lock_ != nullptr);
840 DCHECK(logging_lock_ != nullptr);
841 DCHECK(mutator_lock_ != nullptr);
842 DCHECK(thread_list_lock_ != nullptr);
843 DCHECK(thread_suspend_count_lock_ != nullptr);
844 DCHECK(trace_lock_ != nullptr);
845 DCHECK(profiler_lock_ != nullptr);
846 DCHECK(unexpected_signal_lock_ != nullptr);
847 DCHECK(intern_table_lock_ != nullptr);
848 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700849 // Create global locks in level order from highest lock level to lowest.
850 LockLevel current_lock_level = kMutatorLock;
851 DCHECK(mutator_lock_ == nullptr);
852 mutator_lock_ = new ReaderWriterMutex("mutator lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800853
Chao-ying Fu9e369312014-05-21 11:20:52 -0700854 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
855 DCHECK_LT(new_level, current_lock_level); \
856 current_lock_level = new_level;
857
858 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
859 DCHECK(heap_bitmap_lock_ == nullptr);
860 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
861
862 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
863 DCHECK(runtime_shutdown_lock_ == nullptr);
864 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
865
866 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
867 DCHECK(profiler_lock_ == nullptr);
868 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
869
870 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
871 DCHECK(trace_lock_ == nullptr);
872 trace_lock_ = new Mutex("trace lock", current_lock_level);
873
874 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
875 DCHECK(thread_list_lock_ == nullptr);
876 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
877
878 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800879 DCHECK(breakpoint_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700880 breakpoint_lock_ = new Mutex("breakpoint lock", current_lock_level);
881
882 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800883 DCHECK(classlinker_classes_lock_ == nullptr);
884 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -0700885 current_lock_level);
886
Andreas Gampe74240812014-04-17 10:35:09 -0700887 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
888 DCHECK(allocated_monitor_ids_lock_ == nullptr);
889 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
890
Chao-ying Fu9e369312014-05-21 11:20:52 -0700891 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
892 DCHECK(allocated_thread_ids_lock_ == nullptr);
893 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
894
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100895 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700896 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
897 DCHECK(modify_ldt_lock_ == nullptr);
898 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
899 }
900
901 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800902 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700903 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
904
905
906 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
907 DCHECK(abort_lock_ == nullptr);
908 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
909
910 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
911 DCHECK(thread_suspend_count_lock_ == nullptr);
912 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
913
914 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
915 DCHECK(unexpected_signal_lock_ == nullptr);
916 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
917
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700918 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
919 DCHECK(mem_maps_lock_ == nullptr);
920 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
921
Chao-ying Fu9e369312014-05-21 11:20:52 -0700922 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
923 DCHECK(logging_lock_ == nullptr);
924 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
925
926 #undef UPDATE_CURRENT_LOCK_LEVEL
Ian Rogers719d1a32014-03-06 12:13:39 -0800927 }
928}
929
930
Elliott Hughese62934d2012-04-09 11:24:29 -0700931} // namespace art