blob: 1df02075037b4295bebc9253eba00c11ef6735cf [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
Elliott Hughes07ed66b2012-12-12 18:34:25 -080022#include "base/logging.h"
Ian Rogers81d425b2012-09-27 16:03:43 -070023#include "cutils/atomic.h"
Ian Rogers693ff612013-02-01 10:56:12 -080024#include "cutils/atomic-inline.h"
25#include "mutex-inl.h"
Elliott Hughes6b355752012-01-13 16:49:08 -080026#include "runtime.h"
Ian Rogersc604d732012-10-14 16:09:54 -070027#include "scoped_thread_state_change.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070028#include "thread-inl.h"
Elliott Hughesffb465f2012-03-01 18:46:05 -080029#include "utils.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070030
31namespace art {
32
Brian Carlstromf3a26412012-08-24 11:06:02 -070033// This works on Mac OS 10.6 but hasn't been tested on older releases.
Elliott Hughesf1498432012-03-28 19:34:27 -070034struct __attribute__((__may_alias__)) darwin_pthread_mutex_t {
Brian Carlstromf3a26412012-08-24 11:06:02 -070035 long padding0;
36 int padding1;
37 uint32_t padding2;
38 int16_t padding3;
39 int16_t padding4;
40 uint32_t padding5;
41 pthread_t darwin_pthread_mutex_owner;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070042 // ...other stuff we don't care about.
43};
44
45struct __attribute__((__may_alias__)) darwin_pthread_rwlock_t {
Brian Carlstromf3a26412012-08-24 11:06:02 -070046 long padding0;
47 pthread_mutex_t padding1;
48 int padding2;
49 pthread_cond_t padding3;
50 pthread_cond_t padding4;
51 int padding5;
52 int padding6;
53 pthread_t darwin_pthread_rwlock_owner;
Elliott Hughesf1498432012-03-28 19:34:27 -070054 // ...other stuff we don't care about.
55};
56
57struct __attribute__((__may_alias__)) glibc_pthread_mutex_t {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070058 int32_t padding0[2];
Elliott Hughesf1498432012-03-28 19:34:27 -070059 int owner;
60 // ...other stuff we don't care about.
61};
62
Ian Rogers00f7d0e2012-07-19 15:28:27 -070063struct __attribute__((__may_alias__)) glibc_pthread_rwlock_t {
64#ifdef __LP64__
65 int32_t padding0[6];
66#else
67 int32_t padding0[7];
68#endif
69 int writer;
70 // ...other stuff we don't care about.
71};
72
Ian Rogersc604d732012-10-14 16:09:54 -070073#if ART_USE_FUTEXES
74static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
75 const long int one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
76 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
77 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
78 if (result_ts->tv_nsec < 0) {
79 result_ts->tv_sec--;
80 result_ts->tv_nsec += one_sec;
81 } else if (result_ts->tv_nsec > one_sec) {
82 result_ts->tv_sec++;
83 result_ts->tv_nsec -= one_sec;
84 }
85 return result_ts->tv_sec < 0;
86}
87#endif
88
Ian Rogers56edc432013-01-18 16:51:51 -080089#if CONTENTION_LOGGING
90// A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
91static AtomicInteger all_mutexes_guard_;
92// All created mutexes guarded by all_mutexes_guard_.
93std::set<BaseMutex*>* all_mutexes_;
94
95class ScopedAllMutexesLock {
96 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070097 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers56edc432013-01-18 16:51:51 -080098 while (!all_mutexes_guard_.CompareAndSwap(0, reinterpret_cast<int32_t>(mutex))) {
99 NanoSleep(100);
100 }
101 }
102 ~ScopedAllMutexesLock() {
103 while (!all_mutexes_guard_.CompareAndSwap(reinterpret_cast<int32_t>(mutex_), 0)) {
104 NanoSleep(100);
105 }
106 }
107 private:
108 const BaseMutex* const mutex_;
109};
110#endif
111
112BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
113#if CONTENTION_LOGGING
114 ScopedAllMutexesLock mu(this);
115 if (all_mutexes_ == NULL) {
116 // We leak the global set of all mutexes to avoid ordering issues in global variable
117 // construction/destruction.
118 all_mutexes_ = new std::set<BaseMutex*>();
119 }
120 all_mutexes_->insert(this);
121#endif
122}
123
124BaseMutex::~BaseMutex() {
125#if CONTENTION_LOGGING
126 ScopedAllMutexesLock mu(this);
127 all_mutexes_->erase(this);
128#endif
129}
130
131void BaseMutex::DumpAll(std::ostream& os) {
132#if CONTENTION_LOGGING
133 os << "Mutex logging:\n";
134 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
135 typedef std::set<BaseMutex*>::const_iterator It;
136 for (It it = all_mutexes_->begin(); it != all_mutexes_->end(); ++it) {
137 BaseMutex* mutex = *it;
138 mutex->Dump(os);
139 os << "\n";
140 }
141#endif
142}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700143
Ian Rogers81d425b2012-09-27 16:03:43 -0700144void BaseMutex::CheckSafeToWait(Thread* self) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700145 if (self == NULL) {
146 CheckUnattachedThread(level_);
147 return;
148 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700149 if (kDebugLocking) {
150 CHECK(self->GetHeldMutex(level_) == this) << "Waiting on unacquired mutex: " << name_;
151 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800152 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700153 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700154 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogers25fd14b2012-09-05 10:56:38 -0700155 if (held_mutex != NULL) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800156 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
157 << "(level " << LockLevel(i) << ") while performing wait on "
158 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700159 bad_mutexes_held = true;
160 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700161 }
162 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700163 CHECK(!bad_mutexes_held);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700164 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700165}
166
Ian Rogers56edc432013-01-18 16:51:51 -0800167void BaseMutex::RecordContention(uint64_t blocked_tid, uint64_t owner_tid, uint64_t milli_time_blocked) {
168#if CONTENTION_LOGGING
169 ++contention_count_;
170 wait_time_ += static_cast<uint32_t>(milli_time_blocked); // May overflow.
171 // This code is intentionally racy as it is only used for diagnostics.
172 uint32_t slot = cur_content_log_entry_;
173 if (contention_log_[slot].blocked_tid == blocked_tid &&
174 contention_log_[slot].owner_tid == blocked_tid) {
175 ++contention_log_[slot].count;
176 } else {
177 uint32_t new_slot;
178 do {
179 slot = cur_content_log_entry_;
180 new_slot = (slot + 1) % kContentionLogSize;
Brian Carlstromdf629502013-07-17 22:39:56 -0700181 } while (!cur_content_log_entry_.CompareAndSwap(slot, new_slot));
Ian Rogers56edc432013-01-18 16:51:51 -0800182 contention_log_[new_slot].blocked_tid = blocked_tid;
183 contention_log_[new_slot].owner_tid = owner_tid;
184 contention_log_[new_slot].count = 1;
185 }
186#endif
187}
188
Ian Rogers56edc432013-01-18 16:51:51 -0800189void BaseMutex::DumpContention(std::ostream& os) const {
190#if CONTENTION_LOGGING
191 uint32_t wait_time = wait_time_;
192 uint32_t contention_count = contention_count_;
193 if (contention_count == 0) {
194 os << "never contended";
195 } else {
196 os << "contended " << contention_count << " times, average wait of contender " << (wait_time / contention_count) << "ms";
197 SafeMap<uint64_t, size_t> most_common_blocker;
198 SafeMap<uint64_t, size_t> most_common_blocked;
199 typedef SafeMap<uint64_t, size_t>::const_iterator It;
200 for (size_t i = 0; i < kContentionLogSize; ++i) {
201 uint64_t blocked_tid = contention_log_[i].blocked_tid;
202 uint64_t owner_tid = contention_log_[i].owner_tid;
203 uint32_t count = contention_log_[i].count;
204 if (count > 0) {
205 It it = most_common_blocked.find(blocked_tid);
206 if (it != most_common_blocked.end()) {
207 most_common_blocked.Overwrite(blocked_tid, it->second + count);
208 } else {
209 most_common_blocked.Put(blocked_tid, count);
210 }
211 it = most_common_blocker.find(owner_tid);
212 if (it != most_common_blocker.end()) {
213 most_common_blocker.Overwrite(owner_tid, it->second + count);
214 } else {
215 most_common_blocker.Put(owner_tid, count);
216 }
217 }
218 }
219 uint64_t max_tid = 0;
220 size_t max_tid_count = 0;
221 for (It it = most_common_blocked.begin(); it != most_common_blocked.end(); ++it) {
222 if (it->second > max_tid_count) {
223 max_tid = it->first;
224 max_tid_count = it->second;
225 }
226 }
227 if (max_tid != 0) {
228 os << " sample shows most blocked tid=" << max_tid;
229 }
230 max_tid = 0;
231 max_tid_count = 0;
232 for (It it = most_common_blocker.begin(); it != most_common_blocker.end(); ++it) {
233 if (it->second > max_tid_count) {
234 max_tid = it->first;
235 max_tid_count = it->second;
236 }
237 }
238 if (max_tid != 0) {
239 os << " sample shows tid=" << max_tid << " owning during this time";
240 }
241 }
242#endif
243}
244
245
Ian Rogers81d425b2012-09-27 16:03:43 -0700246Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700247 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700248#if ART_USE_FUTEXES
249 state_ = 0;
250 exclusive_owner_ = 0;
251 num_contenders_ = 0;
252#elif defined(__BIONIC__) || defined(__APPLE__)
Brian Carlstromf3a26412012-08-24 11:06:02 -0700253 // Use recursive mutexes for bionic and Apple otherwise the
254 // non-recursive mutexes don't have TIDs to check lock ownership of.
Elliott Hughesbbd9d832011-11-07 14:40:00 -0800255 pthread_mutexattr_t attributes;
256 CHECK_MUTEX_CALL(pthread_mutexattr_init, (&attributes));
257 CHECK_MUTEX_CALL(pthread_mutexattr_settype, (&attributes, PTHREAD_MUTEX_RECURSIVE));
258 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, &attributes));
259 CHECK_MUTEX_CALL(pthread_mutexattr_destroy, (&attributes));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700260#else
261 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, NULL));
262#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700263}
264
265Mutex::~Mutex() {
Ian Rogersc604d732012-10-14 16:09:54 -0700266#if ART_USE_FUTEXES
267 if (state_ != 0) {
268 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
269 Runtime* runtime = Runtime::Current();
270 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDown();
271 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
272 } else {
273 CHECK_EQ(exclusive_owner_, 0U) << "unexpectedly found an owner on unlocked mutex " << name_;
274 CHECK_EQ(num_contenders_, 0) << "unexpectedly found a contender on mutex " << name_;
275 }
276#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700277 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
278 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800279 int rc = pthread_mutex_destroy(&mutex_);
280 if (rc != 0) {
281 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800282 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700283 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700284 Runtime* runtime = Runtime::Current();
285 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDown();
Elliott Hughes6b355752012-01-13 16:49:08 -0800286 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
287 }
Ian Rogersc604d732012-10-14 16:09:54 -0700288#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700289}
290
Ian Rogers81d425b2012-09-27 16:03:43 -0700291void Mutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700292 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700293 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700294 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700295 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700296 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700297#if ART_USE_FUTEXES
298 bool done = false;
299 do {
300 int32_t cur_state = state_;
301 if (cur_state == 0) {
302 // Change state from 0 to 1.
Ian Rogers693ff612013-02-01 10:56:12 -0800303 done = android_atomic_acquire_cas(0, 1, &state_) == 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700304 } else {
305 // Failed to acquire, hang up.
Ian Rogers56edc432013-01-18 16:51:51 -0800306 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700307 android_atomic_inc(&num_contenders_);
308 if (futex(&state_, FUTEX_WAIT, 1, NULL, NULL, 0) != 0) {
309 if (errno != EAGAIN) {
310 PLOG(FATAL) << "futex wait failed for " << name_;
311 }
312 }
313 android_atomic_dec(&num_contenders_);
314 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700315 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700316 DCHECK_EQ(state_, 1);
317 exclusive_owner_ = SafeGetTid(self);
318#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700319 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700320#endif
Ian Rogers81d425b2012-09-27 16:03:43 -0700321 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700322 }
323 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700324 if (kDebugLocking) {
325 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
326 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700327 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700328 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700329}
330
Ian Rogers81d425b2012-09-27 16:03:43 -0700331bool Mutex::ExclusiveTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700332 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700333 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700334 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700335 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700336 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700337#if ART_USE_FUTEXES
338 bool done = false;
339 do {
340 int32_t cur_state = state_;
341 if (cur_state == 0) {
342 // Change state from 0 to 1.
Ian Rogers693ff612013-02-01 10:56:12 -0800343 done = android_atomic_acquire_cas(0, 1, &state_) == 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700344 } else {
345 return false;
346 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700347 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700348 DCHECK_EQ(state_, 1);
349 exclusive_owner_ = SafeGetTid(self);
350#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700351 int result = pthread_mutex_trylock(&mutex_);
352 if (result == EBUSY) {
353 return false;
354 }
355 if (result != 0) {
356 errno = result;
357 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
358 }
Ian Rogersc604d732012-10-14 16:09:54 -0700359#endif
Ian Rogers81d425b2012-09-27 16:03:43 -0700360 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700361 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700362 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700363 if (kDebugLocking) {
364 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
365 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700366 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700367 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700368 return true;
369}
370
Ian Rogers81d425b2012-09-27 16:03:43 -0700371void Mutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700372 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700373 AssertHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700374 recursion_count_--;
375 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700376 if (kDebugLocking) {
377 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
378 << name_ << " " << recursion_count_;
379 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700380 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700381#if ART_USE_FUTEXES
382 bool done = false;
383 do {
384 int32_t cur_state = state_;
385 if (cur_state == 1) {
386 // We're no longer the owner.
387 exclusive_owner_ = 0;
388 // Change state to 0.
Ian Rogers693ff612013-02-01 10:56:12 -0800389 done = android_atomic_release_cas(cur_state, 0, &state_) == 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700390 if (done) { // Spurious fail?
391 // Wake a contender
392 if (num_contenders_ > 0) {
393 futex(&state_, FUTEX_WAKE, 1, NULL, NULL, 0);
394 }
395 }
396 } else {
Ian Rogersc4ee12e2013-05-16 11:19:53 -0700397 // Logging acquires the logging lock, avoid infinite recursion in that case.
398 if (this != Locks::logging_lock_) {
399 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
400 } else {
401 LogMessageData data(__FILE__, __LINE__, INTERNAL_FATAL, -1);
402 LogMessage::LogLine(data, StringPrintf("Unexpected state_ %d in unlock for %s",
403 cur_state, name_).c_str());
404 _exit(1);
405 }
Ian Rogersc604d732012-10-14 16:09:54 -0700406 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700407 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700408#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700409 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700410#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700411 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700412}
413
Ian Rogers81d425b2012-09-27 16:03:43 -0700414bool Mutex::IsExclusiveHeld(const Thread* self) const {
Ian Rogers01ae5802012-09-28 16:14:01 -0700415 DCHECK(self == NULL || self == Thread::Current());
416 bool result = (GetExclusiveOwnerTid() == SafeGetTid(self));
417 if (kDebugLocking) {
418 // Sanity debug check that if we think it is locked we have it in our held mutexes.
Brian Carlstrom9e419ca2012-11-27 11:31:49 -0800419 if (result && self != NULL && level_ != kMonitorLock && !gAborting) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700420 CHECK_EQ(self->GetHeldMutex(level_), this);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700421 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700422 }
423 return result;
Elliott Hughesf1498432012-03-28 19:34:27 -0700424}
425
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700426uint64_t Mutex::GetExclusiveOwnerTid() const {
Ian Rogersc604d732012-10-14 16:09:54 -0700427#if ART_USE_FUTEXES
428 return exclusive_owner_;
429#elif defined(__BIONIC__)
Elliott Hughesf1498432012-03-28 19:34:27 -0700430 return static_cast<uint64_t>((mutex_.value >> 16) & 0xffff);
Elliott Hughes3147a232011-10-12 15:55:07 -0700431#elif defined(__GLIBC__)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700432 return reinterpret_cast<const glibc_pthread_mutex_t*>(&mutex_)->owner;
Elliott Hughescf044312012-01-23 18:48:51 -0800433#elif defined(__APPLE__)
Brian Carlstromf3a26412012-08-24 11:06:02 -0700434 const darwin_pthread_mutex_t* dpmutex = reinterpret_cast<const darwin_pthread_mutex_t*>(&mutex_);
435 pthread_t owner = dpmutex->darwin_pthread_mutex_owner;
Brian Carlstrombd93c302012-08-27 16:58:28 -0700436 // 0 for unowned, -1 for PTHREAD_MTX_TID_SWITCHING
437 // TODO: should we make darwin_pthread_mutex_owner volatile and recheck until not -1?
Brian Carlstromf3a26412012-08-24 11:06:02 -0700438 if ((owner == (pthread_t)0) || (owner == (pthread_t)-1)) {
439 return 0;
440 }
441 uint64_t tid;
442 CHECK_PTHREAD_CALL(pthread_threadid_np, (owner, &tid), __FUNCTION__); // Requires Mac OS 10.6
443 return tid;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700444#else
Elliott Hughesf1498432012-03-28 19:34:27 -0700445#error unsupported C library
Elliott Hughes8daa0922011-09-11 13:46:25 -0700446#endif
447}
448
Ian Rogers56edc432013-01-18 16:51:51 -0800449void Mutex::Dump(std::ostream& os) const {
450 os << (recursive_ ? "recursive " : "non-recursive ")
451 << name_
452 << " level=" << static_cast<int>(level_)
453 << " rec=" << recursion_count_
454 << " owner=" << GetExclusiveOwnerTid() << " ";
455 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700456}
457
458std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800459 mu.Dump(os);
460 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700461}
462
Ian Rogers81d425b2012-09-27 16:03:43 -0700463ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level) :
464 BaseMutex(name, level)
465#if ART_USE_FUTEXES
466 , state_(0), exclusive_owner_(0), num_pending_readers_(0), num_pending_writers_(0)
467#endif
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700468{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700469#if !ART_USE_FUTEXES
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700470 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, NULL));
Ian Rogers81d425b2012-09-27 16:03:43 -0700471#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700472}
473
474ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700475#if ART_USE_FUTEXES
476 CHECK_EQ(state_, 0);
477 CHECK_EQ(exclusive_owner_, 0U);
478 CHECK_EQ(num_pending_readers_, 0);
479 CHECK_EQ(num_pending_writers_, 0);
480#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700481 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
482 // may still be using locks.
483 int rc = pthread_rwlock_destroy(&rwlock_);
484 if (rc != 0) {
485 errno = rc;
486 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700487 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700488 Runtime* runtime = Runtime::Current();
489 bool shutting_down = runtime == NULL || runtime->IsShuttingDown();
490 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800491 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700492#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700493}
494
Ian Rogers81d425b2012-09-27 16:03:43 -0700495void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700496 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700497 AssertNotExclusiveHeld(self);
498#if ART_USE_FUTEXES
499 bool done = false;
500 do {
501 int32_t cur_state = state_;
502 if (cur_state == 0) {
503 // Change state from 0 to -1.
Ian Rogers693ff612013-02-01 10:56:12 -0800504 done = android_atomic_acquire_cas(0, -1, &state_) == 0;
Ian Rogers81d425b2012-09-27 16:03:43 -0700505 } else {
506 // Failed to acquire, hang up.
Ian Rogers56edc432013-01-18 16:51:51 -0800507 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogers81d425b2012-09-27 16:03:43 -0700508 android_atomic_inc(&num_pending_writers_);
509 if (futex(&state_, FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
510 if (errno != EAGAIN) {
511 PLOG(FATAL) << "futex wait failed for " << name_;
512 }
513 }
514 android_atomic_dec(&num_pending_writers_);
515 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700516 } while (!done);
Ian Rogersab470162012-09-29 23:06:53 -0700517 DCHECK_EQ(state_, -1);
518 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700519#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700520 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700521#endif
522 RegisterAsLocked(self);
523 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700524}
525
Ian Rogers81d425b2012-09-27 16:03:43 -0700526void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700527 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700528 AssertExclusiveHeld(self);
529 RegisterAsUnlocked(self);
530#if ART_USE_FUTEXES
531 bool done = false;
532 do {
533 int32_t cur_state = state_;
534 if (cur_state == -1) {
535 // We're no longer the owner.
536 exclusive_owner_ = 0;
537 // Change state from -1 to 0.
Ian Rogers693ff612013-02-01 10:56:12 -0800538 done = android_atomic_release_cas(-1, 0, &state_) == 0;
Ian Rogers81d425b2012-09-27 16:03:43 -0700539 if (done) { // cmpxchg may fail due to noise?
540 // Wake any waiters.
541 if (num_pending_readers_ > 0 || num_pending_writers_ > 0) {
542 futex(&state_, FUTEX_WAKE, -1, NULL, NULL, 0);
543 }
544 }
545 } else {
546 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
547 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700548 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700549#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700550 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700551#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700552}
553
Ian Rogers66aee5c2012-08-15 17:17:47 -0700554#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700555bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700556 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700557#if ART_USE_FUTEXES
558 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700559 timespec end_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800560 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700561 do {
562 int32_t cur_state = state_;
563 if (cur_state == 0) {
564 // Change state from 0 to -1.
Ian Rogers693ff612013-02-01 10:56:12 -0800565 done = android_atomic_acquire_cas(0, -1, &state_) == 0;
Ian Rogers81d425b2012-09-27 16:03:43 -0700566 } else {
567 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700568 timespec now_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800569 InitTimeSpec(true, CLOCK_REALTIME, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700570 timespec rel_ts;
571 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
572 return false; // Timed out.
573 }
Ian Rogers56edc432013-01-18 16:51:51 -0800574 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogers81d425b2012-09-27 16:03:43 -0700575 android_atomic_inc(&num_pending_writers_);
Ian Rogersc604d732012-10-14 16:09:54 -0700576 if (futex(&state_, FUTEX_WAIT, cur_state, &rel_ts, NULL, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700577 if (errno == ETIMEDOUT) {
578 android_atomic_dec(&num_pending_writers_);
Ian Rogersc604d732012-10-14 16:09:54 -0700579 return false; // Timed out.
580 } else if (errno != EAGAIN && errno != EINTR) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700581 PLOG(FATAL) << "timed futex wait failed for " << name_;
582 }
583 }
584 android_atomic_dec(&num_pending_writers_);
585 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700586 } while (!done);
Ian Rogers01ae5802012-09-28 16:14:01 -0700587 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700588#else
Ian Rogersc604d732012-10-14 16:09:54 -0700589 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700590 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700591 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700592 if (result == ETIMEDOUT) {
593 return false;
594 }
595 if (result != 0) {
596 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700597 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700598 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700599#endif
600 RegisterAsLocked(self);
601 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700602 return true;
603}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700604#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700605
Ian Rogers81d425b2012-09-27 16:03:43 -0700606bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700607 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700608#if ART_USE_FUTEXES
609 bool done = false;
610 do {
611 int32_t cur_state = state_;
612 if (cur_state >= 0) {
613 // Add as an extra reader.
Ian Rogers693ff612013-02-01 10:56:12 -0800614 done = android_atomic_acquire_cas(cur_state, cur_state + 1, &state_) == 0;
Ian Rogers81d425b2012-09-27 16:03:43 -0700615 } else {
616 // Owner holds it exclusively.
617 return false;
618 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700619 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700620#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700621 int result = pthread_rwlock_tryrdlock(&rwlock_);
622 if (result == EBUSY) {
623 return false;
624 }
625 if (result != 0) {
626 errno = result;
627 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
628 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700629#endif
630 RegisterAsLocked(self);
631 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700632 return true;
633}
634
Ian Rogers81d425b2012-09-27 16:03:43 -0700635bool ReaderWriterMutex::IsExclusiveHeld(const Thread* self) const {
Ian Rogers01ae5802012-09-28 16:14:01 -0700636 DCHECK(self == NULL || self == Thread::Current());
637 bool result = (GetExclusiveOwnerTid() == SafeGetTid(self));
Ian Rogers25fd14b2012-09-05 10:56:38 -0700638 if (kDebugLocking) {
639 // Sanity that if the pthread thinks we own the lock the Thread agrees.
Ian Rogers01ae5802012-09-28 16:14:01 -0700640 if (self != NULL && result) {
641 CHECK_EQ(self->GetHeldMutex(level_), this);
642 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700643 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700644 return result;
645}
646
Ian Rogers81d425b2012-09-27 16:03:43 -0700647bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Ian Rogers01ae5802012-09-28 16:14:01 -0700648 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700649 bool result;
650 if (UNLIKELY(self == NULL)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700651 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700652 } else {
653 result = (self->GetHeldMutex(level_) == this);
654 }
655 return result;
656}
657
658uint64_t ReaderWriterMutex::GetExclusiveOwnerTid() const {
Ian Rogers81d425b2012-09-27 16:03:43 -0700659#if ART_USE_FUTEXES
Ian Rogers56edc432013-01-18 16:51:51 -0800660 int32_t state = state_;
661 if (state == 0) {
662 return 0; // No owner.
663 } else if (state > 0) {
664 return -1; // Shared.
665 } else {
666 return exclusive_owner_;
667 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700668#else
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800669#if defined(__BIONIC__)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700670 return rwlock_.writerThreadId;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800671#elif defined(__GLIBC__)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700672 return reinterpret_cast<const glibc_pthread_rwlock_t*>(&rwlock_)->writer;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800673#elif defined(__APPLE__)
Ian Rogers81d425b2012-09-27 16:03:43 -0700674 const darwin_pthread_rwlock_t*
675 dprwlock = reinterpret_cast<const darwin_pthread_rwlock_t*>(&rwlock_);
Brian Carlstromf3a26412012-08-24 11:06:02 -0700676 pthread_t owner = dprwlock->darwin_pthread_rwlock_owner;
677 if (owner == (pthread_t)0) {
678 return 0;
679 }
680 uint64_t tid;
681 CHECK_PTHREAD_CALL(pthread_threadid_np, (owner, &tid), __FUNCTION__); // Requires Mac OS 10.6
682 return tid;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800683#else
Elliott Hughesf1498432012-03-28 19:34:27 -0700684#error unsupported C library
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800685#endif
Ian Rogers81d425b2012-09-27 16:03:43 -0700686#endif
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800687}
688
Ian Rogers56edc432013-01-18 16:51:51 -0800689void ReaderWriterMutex::Dump(std::ostream& os) const {
690 os << name_
691 << " level=" << static_cast<int>(level_)
692 << " owner=" << GetExclusiveOwnerTid() << " ";
693 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700694}
695
696std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800697 mu.Dump(os);
698 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700699}
700
Ian Rogers23055dc2013-04-18 16:29:16 -0700701ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700702 : name_(name), guard_(guard) {
703#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800704 sequence_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700705 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700706#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700707 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, NULL));
Ian Rogersc604d732012-10-14 16:09:54 -0700708#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700709}
710
711ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800712#if ART_USE_FUTEXES
713 if (num_waiters_!= 0) {
714 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
715 Runtime* runtime = Runtime::Current();
716 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDown();
Ian Rogersd45f2012012-11-28 11:46:23 -0800717 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
718 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800719 }
720#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700721 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
722 // may still be using condition variables.
723 int rc = pthread_cond_destroy(&cond_);
724 if (rc != 0) {
725 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700726 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700727 Runtime* runtime = Runtime::Current();
728 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDown();
Elliott Hughese62934d2012-04-09 11:24:29 -0700729 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
730 }
Ian Rogersc604d732012-10-14 16:09:54 -0700731#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700732}
733
Ian Rogersc604d732012-10-14 16:09:54 -0700734void ConditionVariable::Broadcast(Thread* self) {
735 DCHECK(self == NULL || self == Thread::Current());
736 // TODO: enable below, there's a race in thread creation that causes false failures currently.
737 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700738 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700739#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800740 if (num_waiters_ > 0) {
741 android_atomic_inc(&sequence_); // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700742 bool done = false;
743 do {
Ian Rogersd45f2012012-11-28 11:46:23 -0800744 int32_t cur_sequence = sequence_;
745 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
746 // mutex unlocks will awaken the requeued waiter thread.
747 done = futex(&sequence_, FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800748 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersd45f2012012-11-28 11:46:23 -0800749 &guard_.state_, cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800750 if (!done) {
751 if (errno != EAGAIN) {
752 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
753 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800754 }
Ian Rogersc604d732012-10-14 16:09:54 -0700755 } while (!done);
756 }
757#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700758 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700759#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700760}
761
Ian Rogersc604d732012-10-14 16:09:54 -0700762void ConditionVariable::Signal(Thread* self) {
763 DCHECK(self == NULL || self == Thread::Current());
764 guard_.AssertExclusiveHeld(self);
765#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800766 if (num_waiters_ > 0) {
767 android_atomic_inc(&sequence_); // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700768 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
769 // to avoid this, however, requeueing can only move all waiters.
Ian Rogersd45f2012012-11-28 11:46:23 -0800770 int num_woken = futex(&sequence_, FUTEX_WAKE, 1, NULL, NULL, 0);
771 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800772 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700773 }
774#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700775 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700776#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700777}
778
Ian Rogersc604d732012-10-14 16:09:54 -0700779void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700780 guard_.CheckSafeToWait(self);
781 WaitHoldingLocks(self);
782}
783
784void ConditionVariable::WaitHoldingLocks(Thread* self) {
Ian Rogersc604d732012-10-14 16:09:54 -0700785 DCHECK(self == NULL || self == Thread::Current());
786 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700787 unsigned int old_recursion_count = guard_.recursion_count_;
788#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700789 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800790 // Ensure the Mutex is contended so that requeued threads are awoken.
791 android_atomic_inc(&guard_.num_contenders_);
Ian Rogersc604d732012-10-14 16:09:54 -0700792 guard_.recursion_count_ = 1;
Ian Rogersd45f2012012-11-28 11:46:23 -0800793 int32_t cur_sequence = sequence_;
Ian Rogersc604d732012-10-14 16:09:54 -0700794 guard_.ExclusiveUnlock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800795 if (futex(&sequence_, FUTEX_WAIT, cur_sequence, NULL, NULL, 0) != 0) {
796 // Futex failed, check it is an expected error.
797 // EAGAIN == EWOULDBLK, so we let the caller try again.
798 // EINTR implies a signal was sent to this thread.
799 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700800 PLOG(FATAL) << "futex wait failed for " << name_;
801 }
802 }
803 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800804 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700805 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800806 // We awoke and so no longer require awakes from the guard_'s unlock.
807 CHECK_GE(guard_.num_contenders_, 0);
808 android_atomic_dec(&guard_.num_contenders_);
Ian Rogersc604d732012-10-14 16:09:54 -0700809#else
810 guard_.recursion_count_ = 0;
811 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
812#endif
813 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700814}
815
Ian Rogersc604d732012-10-14 16:09:54 -0700816void ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
817 DCHECK(self == NULL || self == Thread::Current());
818 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700819 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700820 unsigned int old_recursion_count = guard_.recursion_count_;
821#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700822 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800823 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700824 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800825 // Ensure the Mutex is contended so that requeued threads are awoken.
826 android_atomic_inc(&guard_.num_contenders_);
Ian Rogersc604d732012-10-14 16:09:54 -0700827 guard_.recursion_count_ = 1;
Ian Rogersd45f2012012-11-28 11:46:23 -0800828 int32_t cur_sequence = sequence_;
Ian Rogersc604d732012-10-14 16:09:54 -0700829 guard_.ExclusiveUnlock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800830 if (futex(&sequence_, FUTEX_WAIT, cur_sequence, &rel_ts, NULL, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700831 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800832 // Timed out we're done.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800833 } else if ((errno == EINTR) || (errno == EAGAIN)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800834 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700835 } else {
836 PLOG(FATAL) << "timed futex wait failed for " << name_;
837 }
838 }
839 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800840 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700841 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800842 // We awoke and so no longer require awakes from the guard_'s unlock.
843 CHECK_GE(guard_.num_contenders_, 0);
844 android_atomic_dec(&guard_.num_contenders_);
Ian Rogersc604d732012-10-14 16:09:54 -0700845#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700846#ifdef HAVE_TIMEDWAIT_MONOTONIC
847#define TIMEDWAIT pthread_cond_timedwait_monotonic
Ian Rogersc604d732012-10-14 16:09:54 -0700848 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700849#else
850#define TIMEDWAIT pthread_cond_timedwait
Ian Rogersc604d732012-10-14 16:09:54 -0700851 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700852#endif
Ian Rogersc604d732012-10-14 16:09:54 -0700853 guard_.recursion_count_ = 0;
854 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700855 InitTimeSpec(true, clock, ms, ns, &ts);
856 int rc = TEMP_FAILURE_RETRY(TIMEDWAIT(&cond_, &guard_.mutex_, &ts));
Elliott Hughes5f791332011-09-15 17:45:30 -0700857 if (rc != 0 && rc != ETIMEDOUT) {
858 errno = rc;
859 PLOG(FATAL) << "TimedWait failed for " << name_;
860 }
Ian Rogersc604d732012-10-14 16:09:54 -0700861#endif
862 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700863}
864
Elliott Hughese62934d2012-04-09 11:24:29 -0700865} // namespace art