blob: 620bf9c8b7aad46b8cd20010eaf752fa0e9d6437 [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"
Vladimir Marko80afd022015-05-19 18:08:00 +010024#include "base/time_utils.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080025#include "base/systrace.h"
Ian Rogerscf7f1912014-10-22 22:06:39 -070026#include "base/value_object.h"
Ian Rogers693ff612013-02-01 10:56:12 -080027#include "mutex-inl.h"
Elliott Hughes6b355752012-01-13 16:49:08 -080028#include "runtime.h"
Ian Rogersc604d732012-10-14 16:09:54 -070029#include "scoped_thread_state_change.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070030#include "thread-inl.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070031
32namespace art {
33
Ian Rogers719d1a32014-03-06 12:13:39 -080034Mutex* Locks::abort_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070035Mutex* Locks::alloc_tracker_lock_ = nullptr;
Andreas Gampe74240812014-04-17 10:35:09 -070036Mutex* Locks::allocated_monitor_ids_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070037Mutex* Locks::allocated_thread_ids_lock_ = nullptr;
Sebastien Hertzed2be172014-08-19 15:33:43 +020038ReaderWriterMutex* Locks::breakpoint_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080039ReaderWriterMutex* Locks::classlinker_classes_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070040Mutex* Locks::deoptimization_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080041ReaderWriterMutex* Locks::heap_bitmap_lock_ = nullptr;
Mathieu Chartier9ef78b52014-09-25 17:03:12 -070042Mutex* Locks::instrument_entrypoints_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070043Mutex* Locks::intern_table_lock_ = nullptr;
Jeff Haoa2c38642015-09-17 17:29:01 -070044Mutex* Locks::interpreter_string_init_map_lock_ = nullptr;
Ian Rogers68d8b422014-07-17 11:09:10 -070045Mutex* Locks::jni_libraries_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080046Mutex* Locks::logging_lock_ = nullptr;
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070047Mutex* Locks::mem_maps_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070048Mutex* Locks::modify_ldt_lock_ = nullptr;
Yu Lieac44242015-06-29 10:50:03 +080049MutatorMutex* Locks::mutator_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070050Mutex* Locks::profiler_lock_ = nullptr;
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -070051ReaderWriterMutex* Locks::oat_file_manager_lock_ = nullptr;
Mathieu Chartiere58991b2015-10-13 07:59:34 -070052ReaderWriterMutex* Locks::oat_file_count_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070053Mutex* Locks::reference_processor_lock_ = nullptr;
54Mutex* Locks::reference_queue_cleared_references_lock_ = nullptr;
55Mutex* Locks::reference_queue_finalizer_references_lock_ = nullptr;
56Mutex* Locks::reference_queue_phantom_references_lock_ = nullptr;
57Mutex* Locks::reference_queue_soft_references_lock_ = nullptr;
58Mutex* Locks::reference_queue_weak_references_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080059Mutex* Locks::runtime_shutdown_lock_ = nullptr;
60Mutex* Locks::thread_list_lock_ = nullptr;
Mathieu Chartier91e56692015-03-03 13:51:04 -080061ConditionVariable* Locks::thread_exit_cond_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080062Mutex* Locks::thread_suspend_count_lock_ = nullptr;
63Mutex* Locks::trace_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080064Mutex* Locks::unexpected_signal_lock_ = nullptr;
Igor Murashkine2facc52015-07-10 13:49:08 -070065Mutex* Locks::lambda_table_lock_ = nullptr;
Andreas Gampe5bdb6552015-07-22 23:44:55 -070066Uninterruptible Roles::uninterruptible_;
Ian Rogers719d1a32014-03-06 12:13:39 -080067
68struct AllMutexData {
69 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
70 Atomic<const BaseMutex*> all_mutexes_guard;
71 // All created mutexes guarded by all_mutexes_guard_.
72 std::set<BaseMutex*>* all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070073 AllMutexData() : all_mutexes(nullptr) {}
Ian Rogers719d1a32014-03-06 12:13:39 -080074};
75static struct AllMutexData gAllMutexData[kAllMutexDataSize];
76
Ian Rogersc604d732012-10-14 16:09:54 -070077#if ART_USE_FUTEXES
78static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070079 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070080 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
81 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
82 if (result_ts->tv_nsec < 0) {
83 result_ts->tv_sec--;
84 result_ts->tv_nsec += one_sec;
85 } else if (result_ts->tv_nsec > one_sec) {
86 result_ts->tv_sec++;
87 result_ts->tv_nsec -= one_sec;
88 }
89 return result_ts->tv_sec < 0;
90}
91#endif
92
Ian Rogers6f3dbba2014-10-14 17:41:57 -070093class ScopedAllMutexesLock FINAL {
Ian Rogers56edc432013-01-18 16:51:51 -080094 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070095 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -070096 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -080097 NanoSleep(100);
98 }
99 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700100
Ian Rogers56edc432013-01-18 16:51:51 -0800101 ~ScopedAllMutexesLock() {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700102#if !defined(__clang__)
103 // TODO: remove this workaround target GCC/libc++/bionic bug "invalid failure memory model".
104 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakSequentiallyConsistent(mutex_, 0)) {
105#else
Ian Rogers3e5cf302014-05-20 16:40:37 -0700106 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700107#endif
Ian Rogers56edc432013-01-18 16:51:51 -0800108 NanoSleep(100);
109 }
110 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700111
Ian Rogers56edc432013-01-18 16:51:51 -0800112 private:
113 const BaseMutex* const mutex_;
114};
Ian Rogers56edc432013-01-18 16:51:51 -0800115
Ian Rogerscf7f1912014-10-22 22:06:39 -0700116// Scoped class that generates events at the beginning and end of lock contention.
117class ScopedContentionRecorder FINAL : public ValueObject {
118 public:
119 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid)
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700120 : mutex_(kLogLockContentions ? mutex : nullptr),
Ian Rogerscf7f1912014-10-22 22:06:39 -0700121 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
122 owner_tid_(kLogLockContentions ? owner_tid : 0),
123 start_nano_time_(kLogLockContentions ? NanoTime() : 0) {
124 if (ATRACE_ENABLED()) {
125 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")",
126 mutex->GetName(), owner_tid);
127 ATRACE_BEGIN(msg.c_str());
128 }
129 }
130
131 ~ScopedContentionRecorder() {
132 ATRACE_END();
133 if (kLogLockContentions) {
134 uint64_t end_nano_time = NanoTime();
135 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
136 }
137 }
138
139 private:
140 BaseMutex* const mutex_;
141 const uint64_t blocked_tid_;
142 const uint64_t owner_tid_;
143 const uint64_t start_nano_time_;
144};
145
Ian Rogers56edc432013-01-18 16:51:51 -0800146BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700147 if (kLogLockContentions) {
148 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700149 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700150 if (*all_mutexes_ptr == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700151 // We leak the global set of all mutexes to avoid ordering issues in global variable
152 // construction/destruction.
153 *all_mutexes_ptr = new std::set<BaseMutex*>();
154 }
155 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800156 }
Ian Rogers56edc432013-01-18 16:51:51 -0800157}
158
159BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700160 if (kLogLockContentions) {
161 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700162 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700163 }
Ian Rogers56edc432013-01-18 16:51:51 -0800164}
165
166void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700167 if (kLogLockContentions) {
168 os << "Mutex logging:\n";
169 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700170 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700171 if (all_mutexes == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700172 // No mutexes have been created yet during at startup.
173 return;
174 }
175 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700176 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700177 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
178 BaseMutex* mutex = *it;
179 if (mutex->HasEverContended()) {
180 mutex->Dump(os);
181 os << "\n";
182 }
183 }
184 os << "(Never contented)\n";
185 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
186 BaseMutex* mutex = *it;
187 if (!mutex->HasEverContended()) {
188 mutex->Dump(os);
189 os << "\n";
190 }
191 }
Ian Rogers56edc432013-01-18 16:51:51 -0800192 }
Ian Rogers56edc432013-01-18 16:51:51 -0800193}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700194
Ian Rogers81d425b2012-09-27 16:03:43 -0700195void BaseMutex::CheckSafeToWait(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700196 if (self == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700197 CheckUnattachedThread(level_);
198 return;
199 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700200 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700201 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
202 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700203 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800204 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700205 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700206 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogersf3d874c2014-07-17 18:52:42 -0700207 // We expect waits to happen while holding the thread list suspend thread lock.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700208 if (held_mutex != nullptr) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800209 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
210 << "(level " << LockLevel(i) << ") while performing wait on "
211 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700212 bad_mutexes_held = true;
213 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700214 }
215 }
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000216 if (gAborting == 0) { // Avoid recursive aborts.
217 CHECK(!bad_mutexes_held);
218 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700219 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700220}
221
Ian Rogers37f3c962014-07-17 11:25:30 -0700222void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700223 if (kLogLockContentions) {
224 // Atomically add value to wait_time.
Ian Rogers37f3c962014-07-17 11:25:30 -0700225 wait_time.FetchAndAddSequentiallyConsistent(value);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700226 }
227}
228
Brian Carlstrom0de79852013-07-25 22:29:58 -0700229void BaseMutex::RecordContention(uint64_t blocked_tid,
230 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700231 uint64_t nano_time_blocked) {
232 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700233 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700234 ++(data->contention_count);
235 data->AddToWaitTime(nano_time_blocked);
236 ContentionLogEntry* log = data->contention_log;
237 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700238 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700239 if (log[slot].blocked_tid == blocked_tid &&
240 log[slot].owner_tid == blocked_tid) {
241 ++log[slot].count;
242 } else {
243 uint32_t new_slot;
244 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700245 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700246 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700247 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700248 log[new_slot].blocked_tid = blocked_tid;
249 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700250 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700251 }
Ian Rogers56edc432013-01-18 16:51:51 -0800252 }
Ian Rogers56edc432013-01-18 16:51:51 -0800253}
254
Ian Rogers56edc432013-01-18 16:51:51 -0800255void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700256 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700257 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700258 const ContentionLogEntry* log = data->contention_log;
Ian Rogers37f3c962014-07-17 11:25:30 -0700259 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700260 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700261 if (contention_count == 0) {
262 os << "never contended";
263 } else {
264 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700265 << " total wait of contender " << PrettyDuration(wait_time)
266 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700267 SafeMap<uint64_t, size_t> most_common_blocker;
268 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700269 for (size_t i = 0; i < kContentionLogSize; ++i) {
270 uint64_t blocked_tid = log[i].blocked_tid;
271 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700272 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700273 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700274 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700275 if (it != most_common_blocked.end()) {
276 most_common_blocked.Overwrite(blocked_tid, it->second + count);
277 } else {
278 most_common_blocked.Put(blocked_tid, count);
279 }
280 it = most_common_blocker.find(owner_tid);
281 if (it != most_common_blocker.end()) {
282 most_common_blocker.Overwrite(owner_tid, it->second + count);
283 } else {
284 most_common_blocker.Put(owner_tid, count);
285 }
Ian Rogers56edc432013-01-18 16:51:51 -0800286 }
287 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700288 uint64_t max_tid = 0;
289 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700290 for (const auto& pair : most_common_blocked) {
291 if (pair.second > max_tid_count) {
292 max_tid = pair.first;
293 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700294 }
Ian Rogers56edc432013-01-18 16:51:51 -0800295 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700296 if (max_tid != 0) {
297 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800298 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700299 max_tid = 0;
300 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700301 for (const auto& pair : most_common_blocker) {
302 if (pair.second > max_tid_count) {
303 max_tid = pair.first;
304 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700305 }
306 }
307 if (max_tid != 0) {
308 os << " sample shows tid=" << max_tid << " owning during this time";
309 }
Ian Rogers56edc432013-01-18 16:51:51 -0800310 }
311 }
Ian Rogers56edc432013-01-18 16:51:51 -0800312}
313
314
Ian Rogers81d425b2012-09-27 16:03:43 -0700315Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700316 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700317#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700318 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700319 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700320#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700321 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700322#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700323 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700324}
325
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800326// Helper to ignore the lock requirement.
327static bool IsShuttingDown() NO_THREAD_SAFETY_ANALYSIS {
328 Runtime* runtime = Runtime::Current();
329 return runtime == nullptr || runtime->IsShuttingDownLocked();
330}
331
Elliott Hughes8daa0922011-09-11 13:46:25 -0700332Mutex::~Mutex() {
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800333 bool shutting_down = IsShuttingDown();
Ian Rogersc604d732012-10-14 16:09:54 -0700334#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700335 if (state_.LoadRelaxed() != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700336 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
337 } else {
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800338 if (exclusive_owner_ != 0) {
339 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found an owner on unlocked mutex "
340 << name_;
341 }
342 if (num_contenders_.LoadSequentiallyConsistent() != 0) {
343 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found a contender on mutex " << name_;
Mathieu Chartiercef50f02014-12-09 17:38:52 -0800344 }
Ian Rogersc604d732012-10-14 16:09:54 -0700345 }
346#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700347 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
348 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800349 int rc = pthread_mutex_destroy(&mutex_);
350 if (rc != 0) {
351 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800352 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700353 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Elliott Hughes6b355752012-01-13 16:49:08 -0800354 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
355 }
Ian Rogersc604d732012-10-14 16:09:54 -0700356#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700357}
358
Ian Rogers81d425b2012-09-27 16:03:43 -0700359void Mutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700360 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700361 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700362 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700363 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700364 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700365#if ART_USE_FUTEXES
366 bool done = false;
367 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700368 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700369 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700370 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
371 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700372 } else {
373 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700374 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800375 num_contenders_++;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700376 if (futex(state_.Address(), FUTEX_WAIT, 1, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700377 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
378 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
379 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700380 PLOG(FATAL) << "futex wait failed for " << name_;
381 }
382 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800383 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700384 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700385 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700386 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700387#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700388 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700389#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700390 DCHECK_EQ(exclusive_owner_, 0U);
391 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700392 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700393 }
394 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700395 if (kDebugLocking) {
396 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
397 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700398 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700399 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700400}
401
Ian Rogers81d425b2012-09-27 16:03:43 -0700402bool Mutex::ExclusiveTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700403 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700404 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700405 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700406 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700407 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700408#if ART_USE_FUTEXES
409 bool done = false;
410 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700411 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700412 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700413 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
414 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700415 } else {
416 return false;
417 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700418 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700419 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700420#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700421 int result = pthread_mutex_trylock(&mutex_);
422 if (result == EBUSY) {
423 return false;
424 }
425 if (result != 0) {
426 errno = result;
427 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
428 }
Ian Rogersc604d732012-10-14 16:09:54 -0700429#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700430 DCHECK_EQ(exclusive_owner_, 0U);
431 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700432 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700433 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700434 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700435 if (kDebugLocking) {
436 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
437 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700438 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700439 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700440 return true;
441}
442
Ian Rogers81d425b2012-09-27 16:03:43 -0700443void Mutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800444 if (kIsDebugBuild && self != nullptr && self != Thread::Current()) {
445 std::string name1 = "<null>";
446 std::string name2 = "<null>";
447 if (self != nullptr) {
448 self->GetThreadName(name1);
449 }
450 if (Thread::Current() != nullptr) {
451 Thread::Current()->GetThreadName(name2);
452 }
Mathieu Chartier4c101102015-01-27 17:14:16 -0800453 LOG(FATAL) << GetName() << " level=" << level_ << " self=" << name1
454 << " Thread::Current()=" << name2;
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800455 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700456 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700457 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700458 recursion_count_--;
459 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700460 if (kDebugLocking) {
461 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
462 << name_ << " " << recursion_count_;
463 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700464 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700465#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700466 bool done = false;
467 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700468 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700469 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700470 // We're no longer the owner.
471 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700472 // Change state to 0 and impose load/store ordering appropriate for lock release.
473 // Note, the relaxed loads below musn't reorder before the CompareExchange.
474 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
475 // a status bit into the state on contention.
476 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700477 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700478 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700479 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700480 futex(state_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700481 }
482 }
483 } else {
484 // Logging acquires the logging lock, avoid infinite recursion in that case.
485 if (this != Locks::logging_lock_) {
486 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
487 } else {
Ian Rogersc7dd2952014-10-21 23:31:19 -0700488 LogMessage::LogLine(__FILE__, __LINE__, INTERNAL_FATAL,
489 StringPrintf("Unexpected state_ %d in unlock for %s",
490 cur_state, name_).c_str());
Ian Rogersc5f17732014-06-05 20:48:42 -0700491 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700492 }
493 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700494 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700495#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700496 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700497 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700498#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700499 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700500}
501
Ian Rogers56edc432013-01-18 16:51:51 -0800502void Mutex::Dump(std::ostream& os) const {
503 os << (recursive_ ? "recursive " : "non-recursive ")
504 << name_
505 << " level=" << static_cast<int>(level_)
506 << " rec=" << recursion_count_
507 << " owner=" << GetExclusiveOwnerTid() << " ";
508 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700509}
510
511std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800512 mu.Dump(os);
513 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700514}
515
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700516ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
517 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700518#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700519 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700520#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700521{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700522#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700523 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700524#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700525 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700526}
527
528ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700529#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700530 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700531 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700532 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700533 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700534#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700535 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
536 // may still be using locks.
537 int rc = pthread_rwlock_destroy(&rwlock_);
538 if (rc != 0) {
539 errno = rc;
540 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700541 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700542 Runtime* runtime = Runtime::Current();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700543 bool shutting_down = runtime == nullptr || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700544 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800545 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700546#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700547}
548
Ian Rogers81d425b2012-09-27 16:03:43 -0700549void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700550 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700551 AssertNotExclusiveHeld(self);
552#if ART_USE_FUTEXES
553 bool done = false;
554 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700555 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700556 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700557 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
558 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700559 } else {
560 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700561 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700562 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700563 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700564 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
565 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
566 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700567 PLOG(FATAL) << "futex wait failed for " << name_;
568 }
569 }
Ian Rogersc7190692014-07-08 23:50:26 -0700570 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700571 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700572 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700573 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700574#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700575 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700576#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700577 DCHECK_EQ(exclusive_owner_, 0U);
578 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700579 RegisterAsLocked(self);
580 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700581}
582
Ian Rogers81d425b2012-09-27 16:03:43 -0700583void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700584 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700585 AssertExclusiveHeld(self);
586 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700587 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700588#if ART_USE_FUTEXES
589 bool done = false;
590 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700591 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700592 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700593 // We're no longer the owner.
594 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700595 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
596 // Note, the relaxed loads below musn't reorder before the CompareExchange.
597 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
598 // a status bit into the state on contention.
599 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
600 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700601 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700602 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
603 num_pending_writers_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700604 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700605 }
606 }
607 } else {
608 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
609 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700610 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700611#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700612 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700613 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700614#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700615}
616
Ian Rogers66aee5c2012-08-15 17:17:47 -0700617#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700618bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700619 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700620#if ART_USE_FUTEXES
621 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700622 timespec end_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800623 InitTimeSpec(true, CLOCK_MONOTONIC, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700624 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700625 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700626 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700627 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
628 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700629 } else {
630 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700631 timespec now_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800632 InitTimeSpec(true, CLOCK_MONOTONIC, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700633 timespec rel_ts;
634 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
635 return false; // Timed out.
636 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700637 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700638 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700639 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, nullptr, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700640 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700641 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700642 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700643 } else if ((errno != EAGAIN) && (errno != EINTR)) {
644 // EAGAIN and EINTR both indicate a spurious failure,
645 // recompute the relative time out from now and try again.
646 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700647 PLOG(FATAL) << "timed futex wait failed for " << name_;
648 }
649 }
Ian Rogersc7190692014-07-08 23:50:26 -0700650 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700651 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700652 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700653#else
Ian Rogersc604d732012-10-14 16:09:54 -0700654 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700655 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700656 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700657 if (result == ETIMEDOUT) {
658 return false;
659 }
660 if (result != 0) {
661 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700662 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700663 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700664#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700665 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700666 RegisterAsLocked(self);
667 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700668 return true;
669}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700670#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700671
Ian Rogers51d212e2014-10-23 17:48:20 -0700672#if ART_USE_FUTEXES
Ian Rogerscf7f1912014-10-22 22:06:39 -0700673void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) {
674 // Owner holds it exclusively, hang up.
675 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
676 ++num_pending_readers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700677 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Ian Rogerscf7f1912014-10-22 22:06:39 -0700678 if (errno != EAGAIN) {
679 PLOG(FATAL) << "futex wait failed for " << name_;
680 }
681 }
682 --num_pending_readers_;
683}
Ian Rogers51d212e2014-10-23 17:48:20 -0700684#endif
Ian Rogerscf7f1912014-10-22 22:06:39 -0700685
Ian Rogers81d425b2012-09-27 16:03:43 -0700686bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700687 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700688#if ART_USE_FUTEXES
689 bool done = false;
690 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700691 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700692 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700693 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
694 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700695 } else {
696 // Owner holds it exclusively.
697 return false;
698 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700699 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700700#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700701 int result = pthread_rwlock_tryrdlock(&rwlock_);
702 if (result == EBUSY) {
703 return false;
704 }
705 if (result != 0) {
706 errno = result;
707 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
708 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700709#endif
710 RegisterAsLocked(self);
711 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700712 return true;
713}
714
Ian Rogers81d425b2012-09-27 16:03:43 -0700715bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700716 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700717 bool result;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700718 if (UNLIKELY(self == nullptr)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700719 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700720 } else {
721 result = (self->GetHeldMutex(level_) == this);
722 }
723 return result;
724}
725
Ian Rogers56edc432013-01-18 16:51:51 -0800726void ReaderWriterMutex::Dump(std::ostream& os) const {
727 os << name_
728 << " level=" << static_cast<int>(level_)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700729 << " owner=" << GetExclusiveOwnerTid()
730#if ART_USE_FUTEXES
731 << " state=" << state_.LoadSequentiallyConsistent()
732 << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent()
733 << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent()
734#endif
735 << " ";
Ian Rogers56edc432013-01-18 16:51:51 -0800736 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700737}
738
739std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800740 mu.Dump(os);
741 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700742}
743
Yu Lieac44242015-06-29 10:50:03 +0800744std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu) {
745 mu.Dump(os);
746 return os;
747}
748
Ian Rogers23055dc2013-04-18 16:29:16 -0700749ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700750 : name_(name), guard_(guard) {
751#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700752 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700753 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700754#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000755 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700756 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000757#if !defined(__APPLE__)
758 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
Ian Rogers51d212e2014-10-23 17:48:20 -0700759 CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC));
Narayan Kamath51b71022014-03-04 11:57:09 +0000760#endif
761 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700762#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700763}
764
765ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800766#if ART_USE_FUTEXES
767 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800768 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700769 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800770 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
771 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800772 }
773#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700774 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
775 // may still be using condition variables.
776 int rc = pthread_cond_destroy(&cond_);
777 if (rc != 0) {
778 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700779 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700780 Runtime* runtime = Runtime::Current();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700781 bool shutting_down = (runtime == nullptr) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700782 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
783 }
Ian Rogersc604d732012-10-14 16:09:54 -0700784#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700785}
786
Ian Rogersc604d732012-10-14 16:09:54 -0700787void ConditionVariable::Broadcast(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700788 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700789 // TODO: enable below, there's a race in thread creation that causes false failures currently.
790 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700791 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700792#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800793 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800794 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700795 bool done = false;
796 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700797 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800798 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
799 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800800 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800801 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700802 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800803 if (!done) {
804 if (errno != EAGAIN) {
805 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
806 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800807 }
Ian Rogersc604d732012-10-14 16:09:54 -0700808 } while (!done);
809 }
810#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700811 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700812#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700813}
814
Ian Rogersc604d732012-10-14 16:09:54 -0700815void ConditionVariable::Signal(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700816 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700817 guard_.AssertExclusiveHeld(self);
818#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800819 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800820 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700821 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
822 // to avoid this, however, requeueing can only move all waiters.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700823 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800824 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800825 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700826 }
827#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700828 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700829#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700830}
831
Ian Rogersc604d732012-10-14 16:09:54 -0700832void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700833 guard_.CheckSafeToWait(self);
834 WaitHoldingLocks(self);
835}
836
837void ConditionVariable::WaitHoldingLocks(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700838 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700839 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700840 unsigned int old_recursion_count = guard_.recursion_count_;
841#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700842 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800843 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800844 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700845 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700846 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700847 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700848 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, nullptr, nullptr, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800849 // Futex failed, check it is an expected error.
850 // EAGAIN == EWOULDBLK, so we let the caller try again.
851 // EINTR implies a signal was sent to this thread.
852 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700853 PLOG(FATAL) << "futex wait failed for " << name_;
854 }
855 }
Mathieu Chartier4d87df62016-01-07 15:14:19 -0800856 if (self != nullptr) {
857 JNIEnvExt* const env = self->GetJniEnv();
858 if (UNLIKELY(env != nullptr && env->runtime_deleted)) {
859 CHECK(self->IsDaemon());
860 // If the runtime has been deleted, then we cannot proceed. Just sleep forever. This may
861 // occur for user daemon threads that get a spurious wakeup. This occurs for test 132 with
862 // --host and --gdb.
863 // After we wake up, the runtime may have been shutdown, which means that this condition may
864 // have been deleted. It is not safe to retry the wait.
865 SleepForever();
866 }
867 }
Ian Rogersc604d732012-10-14 16:09:54 -0700868 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800869 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700870 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800871 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700872 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800873 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700874#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700875 uint64_t old_owner = guard_.exclusive_owner_;
876 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700877 guard_.recursion_count_ = 0;
878 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700879 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700880#endif
881 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700882}
883
Ian Rogers7b078e82014-09-10 14:44:24 -0700884bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700885 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700886 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700887 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700888 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700889 unsigned int old_recursion_count = guard_.recursion_count_;
890#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700891 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800892 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700893 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800894 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800895 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700896 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700897 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700898 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700899 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, nullptr, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700900 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800901 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -0700902 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -0700903 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800904 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700905 } else {
906 PLOG(FATAL) << "timed futex wait failed for " << name_;
907 }
908 }
909 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800910 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700911 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800912 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700913 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800914 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700915#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000916#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700917 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700918#else
Ian Rogersc604d732012-10-14 16:09:54 -0700919 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700920#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700921 uint64_t old_owner = guard_.exclusive_owner_;
922 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700923 guard_.recursion_count_ = 0;
924 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700925 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000926 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -0700927 if (rc == ETIMEDOUT) {
928 timed_out = true;
929 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700930 errno = rc;
931 PLOG(FATAL) << "TimedWait failed for " << name_;
932 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700933 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700934#endif
935 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -0700936 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -0700937}
938
Ian Rogers719d1a32014-03-06 12:13:39 -0800939void Locks::Init() {
940 if (logging_lock_ != nullptr) {
941 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100942 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700943 DCHECK(modify_ldt_lock_ != nullptr);
944 } else {
945 DCHECK(modify_ldt_lock_ == nullptr);
946 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800947 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700948 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700949 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700950 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800951 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800952 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700953 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800954 DCHECK(heap_bitmap_lock_ != nullptr);
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -0700955 DCHECK(oat_file_manager_lock_ != nullptr);
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700956 DCHECK(oat_file_count_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700957 DCHECK(intern_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -0700958 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800959 DCHECK(logging_lock_ != nullptr);
960 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700961 DCHECK(profiler_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800962 DCHECK(thread_list_lock_ != nullptr);
963 DCHECK(thread_suspend_count_lock_ != nullptr);
964 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800965 DCHECK(unexpected_signal_lock_ != nullptr);
Igor Murashkine2facc52015-07-10 13:49:08 -0700966 DCHECK(lambda_table_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800967 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700968 // Create global locks in level order from highest lock level to lowest.
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800969 LockLevel current_lock_level = kInstrumentEntrypointsLock;
970 DCHECK(instrument_entrypoints_lock_ == nullptr);
971 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800972
Chao-ying Fu9e369312014-05-21 11:20:52 -0700973 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Brian Carlstrom306db812014-09-05 13:01:41 -0700974 if (new_level >= current_lock_level) { \
975 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
976 fprintf(stderr, "New local level %d is not less than current level %d\n", \
977 new_level, current_lock_level); \
978 exit(1); \
979 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -0700980 current_lock_level = new_level;
981
982 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
983 DCHECK(mutator_lock_ == nullptr);
Yu Lieac44242015-06-29 10:50:03 +0800984 mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700985
986 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
987 DCHECK(heap_bitmap_lock_ == nullptr);
988 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
989
Jeff Hao69dbec62014-09-15 18:03:41 -0700990 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
991 DCHECK(trace_lock_ == nullptr);
992 trace_lock_ = new Mutex("trace lock", current_lock_level);
993
Chao-ying Fu9e369312014-05-21 11:20:52 -0700994 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
995 DCHECK(runtime_shutdown_lock_ == nullptr);
996 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
997
998 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
999 DCHECK(profiler_lock_ == nullptr);
1000 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
1001
Brian Carlstrom306db812014-09-05 13:01:41 -07001002 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
1003 DCHECK(deoptimization_lock_ == nullptr);
1004 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
1005
1006 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
1007 DCHECK(alloc_tracker_lock_ == nullptr);
1008 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
1009
Chao-ying Fu9e369312014-05-21 11:20:52 -07001010 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
1011 DCHECK(thread_list_lock_ == nullptr);
1012 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
1013
Ian Rogers68d8b422014-07-17 11:09:10 -07001014 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
1015 DCHECK(jni_libraries_lock_ == nullptr);
1016 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
1017
Chao-ying Fu9e369312014-05-21 11:20:52 -07001018 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001019 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +02001020 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001021
1022 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001023 DCHECK(classlinker_classes_lock_ == nullptr);
1024 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -07001025 current_lock_level);
1026
Andreas Gampe74240812014-04-17 10:35:09 -07001027 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
1028 DCHECK(allocated_monitor_ids_lock_ == nullptr);
1029 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
1030
Chao-ying Fu9e369312014-05-21 11:20:52 -07001031 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
1032 DCHECK(allocated_thread_ids_lock_ == nullptr);
1033 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
1034
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +01001035 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001036 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
1037 DCHECK(modify_ldt_lock_ == nullptr);
1038 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
1039 }
1040
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001041 UPDATE_CURRENT_LOCK_LEVEL(kOatFileManagerLock);
1042 DCHECK(oat_file_manager_lock_ == nullptr);
1043 oat_file_manager_lock_ = new ReaderWriterMutex("OatFile manager lock", current_lock_level);
1044
Mathieu Chartiere58991b2015-10-13 07:59:34 -07001045 UPDATE_CURRENT_LOCK_LEVEL(kOatFileCountLock);
1046 DCHECK(oat_file_count_lock_ == nullptr);
1047 oat_file_count_lock_ = new ReaderWriterMutex("OatFile count lock", current_lock_level);
1048
Chao-ying Fu9e369312014-05-21 11:20:52 -07001049 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001050 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001051 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1052
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001053 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1054 DCHECK(reference_processor_lock_ == nullptr);
1055 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1056
1057 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1058 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1059 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1060
1061 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1062 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1063 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1064
1065 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1066 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1067 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1068
1069 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1070 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1071 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1072
1073 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1074 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1075 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1076
Igor Murashkine2facc52015-07-10 13:49:08 -07001077 UPDATE_CURRENT_LOCK_LEVEL(kLambdaTableLock);
1078 DCHECK(lambda_table_lock_ == nullptr);
1079 lambda_table_lock_ = new Mutex("lambda table lock", current_lock_level);
1080
Chao-ying Fu9e369312014-05-21 11:20:52 -07001081 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1082 DCHECK(abort_lock_ == nullptr);
1083 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1084
1085 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1086 DCHECK(thread_suspend_count_lock_ == nullptr);
1087 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1088
1089 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1090 DCHECK(unexpected_signal_lock_ == nullptr);
1091 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1092
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -07001093 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
1094 DCHECK(mem_maps_lock_ == nullptr);
1095 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
1096
Chao-ying Fu9e369312014-05-21 11:20:52 -07001097 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1098 DCHECK(logging_lock_ == nullptr);
1099 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1100
1101 #undef UPDATE_CURRENT_LOCK_LEVEL
Mathieu Chartier91e56692015-03-03 13:51:04 -08001102
1103 InitConditions();
Ian Rogers719d1a32014-03-06 12:13:39 -08001104 }
1105}
1106
Mathieu Chartier91e56692015-03-03 13:51:04 -08001107void Locks::InitConditions() {
1108 thread_exit_cond_ = new ConditionVariable("thread exit condition variable", *thread_list_lock_);
1109}
Ian Rogers719d1a32014-03-06 12:13:39 -08001110
Elliott Hughese62934d2012-04-09 11:24:29 -07001111} // namespace art