blob: fec918b6812cf2ec1655e77aa04a13b3099787ff [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;
Richard Uhlera206c742016-05-24 15:04:22 -070052Mutex* Locks::host_dlopen_handles_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;
Andreas Gampe5bdb6552015-07-22 23:44:55 -070065Uninterruptible Roles::uninterruptible_;
Ian Rogers719d1a32014-03-06 12:13:39 -080066
67struct AllMutexData {
68 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
69 Atomic<const BaseMutex*> all_mutexes_guard;
70 // All created mutexes guarded by all_mutexes_guard_.
71 std::set<BaseMutex*>* all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070072 AllMutexData() : all_mutexes(nullptr) {}
Ian Rogers719d1a32014-03-06 12:13:39 -080073};
74static struct AllMutexData gAllMutexData[kAllMutexDataSize];
75
Ian Rogersc604d732012-10-14 16:09:54 -070076#if ART_USE_FUTEXES
77static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070078 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070079 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
80 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
81 if (result_ts->tv_nsec < 0) {
82 result_ts->tv_sec--;
83 result_ts->tv_nsec += one_sec;
84 } else if (result_ts->tv_nsec > one_sec) {
85 result_ts->tv_sec++;
86 result_ts->tv_nsec -= one_sec;
87 }
88 return result_ts->tv_sec < 0;
89}
90#endif
91
Ian Rogers6f3dbba2014-10-14 17:41:57 -070092class ScopedAllMutexesLock FINAL {
Ian Rogers56edc432013-01-18 16:51:51 -080093 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070094 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -070095 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -080096 NanoSleep(100);
97 }
98 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -070099
Ian Rogers56edc432013-01-18 16:51:51 -0800100 ~ScopedAllMutexesLock() {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700101 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers56edc432013-01-18 16:51:51 -0800102 NanoSleep(100);
103 }
104 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700105
Ian Rogers56edc432013-01-18 16:51:51 -0800106 private:
107 const BaseMutex* const mutex_;
108};
Ian Rogers56edc432013-01-18 16:51:51 -0800109
Ian Rogerscf7f1912014-10-22 22:06:39 -0700110// Scoped class that generates events at the beginning and end of lock contention.
111class ScopedContentionRecorder FINAL : public ValueObject {
112 public:
113 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid)
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700114 : mutex_(kLogLockContentions ? mutex : nullptr),
Ian Rogerscf7f1912014-10-22 22:06:39 -0700115 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
116 owner_tid_(kLogLockContentions ? owner_tid : 0),
117 start_nano_time_(kLogLockContentions ? NanoTime() : 0) {
118 if (ATRACE_ENABLED()) {
119 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")",
120 mutex->GetName(), owner_tid);
121 ATRACE_BEGIN(msg.c_str());
122 }
123 }
124
125 ~ScopedContentionRecorder() {
126 ATRACE_END();
127 if (kLogLockContentions) {
128 uint64_t end_nano_time = NanoTime();
129 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
130 }
131 }
132
133 private:
134 BaseMutex* const mutex_;
135 const uint64_t blocked_tid_;
136 const uint64_t owner_tid_;
137 const uint64_t start_nano_time_;
138};
139
Ian Rogers56edc432013-01-18 16:51:51 -0800140BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700141 if (kLogLockContentions) {
142 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700143 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700144 if (*all_mutexes_ptr == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700145 // We leak the global set of all mutexes to avoid ordering issues in global variable
146 // construction/destruction.
147 *all_mutexes_ptr = new std::set<BaseMutex*>();
148 }
149 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800150 }
Ian Rogers56edc432013-01-18 16:51:51 -0800151}
152
153BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700154 if (kLogLockContentions) {
155 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700156 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700157 }
Ian Rogers56edc432013-01-18 16:51:51 -0800158}
159
160void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700161 if (kLogLockContentions) {
162 os << "Mutex logging:\n";
163 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700164 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700165 if (all_mutexes == nullptr) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700166 // No mutexes have been created yet during at startup.
167 return;
168 }
169 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700170 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700171 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
172 BaseMutex* mutex = *it;
173 if (mutex->HasEverContended()) {
174 mutex->Dump(os);
175 os << "\n";
176 }
177 }
178 os << "(Never contented)\n";
179 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
180 BaseMutex* mutex = *it;
181 if (!mutex->HasEverContended()) {
182 mutex->Dump(os);
183 os << "\n";
184 }
185 }
Ian Rogers56edc432013-01-18 16:51:51 -0800186 }
Ian Rogers56edc432013-01-18 16:51:51 -0800187}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700188
Ian Rogers81d425b2012-09-27 16:03:43 -0700189void BaseMutex::CheckSafeToWait(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700190 if (self == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700191 CheckUnattachedThread(level_);
192 return;
193 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700194 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700195 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
196 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700197 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800198 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700199 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700200 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogersf3d874c2014-07-17 18:52:42 -0700201 // We expect waits to happen while holding the thread list suspend thread lock.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700202 if (held_mutex != nullptr) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800203 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
204 << "(level " << LockLevel(i) << ") while performing wait on "
205 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700206 bad_mutexes_held = true;
207 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700208 }
209 }
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000210 if (gAborting == 0) { // Avoid recursive aborts.
211 CHECK(!bad_mutexes_held);
212 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700213 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700214}
215
Ian Rogers37f3c962014-07-17 11:25:30 -0700216void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700217 if (kLogLockContentions) {
218 // Atomically add value to wait_time.
Ian Rogers37f3c962014-07-17 11:25:30 -0700219 wait_time.FetchAndAddSequentiallyConsistent(value);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700220 }
221}
222
Brian Carlstrom0de79852013-07-25 22:29:58 -0700223void BaseMutex::RecordContention(uint64_t blocked_tid,
224 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700225 uint64_t nano_time_blocked) {
226 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700227 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700228 ++(data->contention_count);
229 data->AddToWaitTime(nano_time_blocked);
230 ContentionLogEntry* log = data->contention_log;
231 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700232 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700233 if (log[slot].blocked_tid == blocked_tid &&
234 log[slot].owner_tid == blocked_tid) {
235 ++log[slot].count;
236 } else {
237 uint32_t new_slot;
238 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700239 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700240 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700241 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700242 log[new_slot].blocked_tid = blocked_tid;
243 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700244 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700245 }
Ian Rogers56edc432013-01-18 16:51:51 -0800246 }
Ian Rogers56edc432013-01-18 16:51:51 -0800247}
248
Ian Rogers56edc432013-01-18 16:51:51 -0800249void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700250 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700251 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700252 const ContentionLogEntry* log = data->contention_log;
Ian Rogers37f3c962014-07-17 11:25:30 -0700253 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700254 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700255 if (contention_count == 0) {
256 os << "never contended";
257 } else {
258 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700259 << " total wait of contender " << PrettyDuration(wait_time)
260 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700261 SafeMap<uint64_t, size_t> most_common_blocker;
262 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700263 for (size_t i = 0; i < kContentionLogSize; ++i) {
264 uint64_t blocked_tid = log[i].blocked_tid;
265 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700266 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700267 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700268 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700269 if (it != most_common_blocked.end()) {
270 most_common_blocked.Overwrite(blocked_tid, it->second + count);
271 } else {
272 most_common_blocked.Put(blocked_tid, count);
273 }
274 it = most_common_blocker.find(owner_tid);
275 if (it != most_common_blocker.end()) {
276 most_common_blocker.Overwrite(owner_tid, it->second + count);
277 } else {
278 most_common_blocker.Put(owner_tid, count);
279 }
Ian Rogers56edc432013-01-18 16:51:51 -0800280 }
281 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700282 uint64_t max_tid = 0;
283 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700284 for (const auto& pair : most_common_blocked) {
285 if (pair.second > max_tid_count) {
286 max_tid = pair.first;
287 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700288 }
Ian Rogers56edc432013-01-18 16:51:51 -0800289 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700290 if (max_tid != 0) {
291 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800292 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700293 max_tid = 0;
294 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700295 for (const auto& pair : most_common_blocker) {
296 if (pair.second > max_tid_count) {
297 max_tid = pair.first;
298 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700299 }
300 }
301 if (max_tid != 0) {
302 os << " sample shows tid=" << max_tid << " owning during this time";
303 }
Ian Rogers56edc432013-01-18 16:51:51 -0800304 }
305 }
Ian Rogers56edc432013-01-18 16:51:51 -0800306}
307
308
Ian Rogers81d425b2012-09-27 16:03:43 -0700309Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700310 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700311#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700312 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700313 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700314#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700315 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700316#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700317 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700318}
319
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800320// Helper to ignore the lock requirement.
321static bool IsShuttingDown() NO_THREAD_SAFETY_ANALYSIS {
322 Runtime* runtime = Runtime::Current();
323 return runtime == nullptr || runtime->IsShuttingDownLocked();
324}
325
Elliott Hughes8daa0922011-09-11 13:46:25 -0700326Mutex::~Mutex() {
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800327 bool shutting_down = IsShuttingDown();
Ian Rogersc604d732012-10-14 16:09:54 -0700328#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700329 if (state_.LoadRelaxed() != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700330 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
331 } else {
Andreas Gampe8f1fa102015-01-22 19:48:51 -0800332 if (exclusive_owner_ != 0) {
333 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found an owner on unlocked mutex "
334 << name_;
335 }
336 if (num_contenders_.LoadSequentiallyConsistent() != 0) {
337 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found a contender on mutex " << name_;
Mathieu Chartiercef50f02014-12-09 17:38:52 -0800338 }
Ian Rogersc604d732012-10-14 16:09:54 -0700339 }
340#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700341 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
342 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800343 int rc = pthread_mutex_destroy(&mutex_);
344 if (rc != 0) {
345 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800346 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700347 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Elliott Hughes6b355752012-01-13 16:49:08 -0800348 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
349 }
Ian Rogersc604d732012-10-14 16:09:54 -0700350#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700351}
352
Ian Rogers81d425b2012-09-27 16:03:43 -0700353void Mutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700354 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700355 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700356 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700357 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700358 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700359#if ART_USE_FUTEXES
360 bool done = false;
361 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700362 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700363 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700364 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
365 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700366 } else {
367 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700368 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800369 num_contenders_++;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700370 if (futex(state_.Address(), FUTEX_WAIT, 1, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700371 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
372 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
373 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700374 PLOG(FATAL) << "futex wait failed for " << name_;
375 }
376 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800377 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700378 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700379 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700380 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700381#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700382 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700383#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700384 DCHECK_EQ(exclusive_owner_, 0U);
385 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700386 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700387 }
388 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700389 if (kDebugLocking) {
390 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
391 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700392 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700393 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700394}
395
Ian Rogers81d425b2012-09-27 16:03:43 -0700396bool Mutex::ExclusiveTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700397 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700398 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700399 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700400 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700401 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700402#if ART_USE_FUTEXES
403 bool done = false;
404 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700405 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700406 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700407 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
408 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700409 } else {
410 return false;
411 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700412 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700413 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700414#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700415 int result = pthread_mutex_trylock(&mutex_);
416 if (result == EBUSY) {
417 return false;
418 }
419 if (result != 0) {
420 errno = result;
421 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
422 }
Ian Rogersc604d732012-10-14 16:09:54 -0700423#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700424 DCHECK_EQ(exclusive_owner_, 0U);
425 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700426 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700427 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700428 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700429 if (kDebugLocking) {
430 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
431 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700432 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700433 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700434 return true;
435}
436
Ian Rogers81d425b2012-09-27 16:03:43 -0700437void Mutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800438 if (kIsDebugBuild && self != nullptr && self != Thread::Current()) {
439 std::string name1 = "<null>";
440 std::string name2 = "<null>";
441 if (self != nullptr) {
442 self->GetThreadName(name1);
443 }
444 if (Thread::Current() != nullptr) {
445 Thread::Current()->GetThreadName(name2);
446 }
Mathieu Chartier4c101102015-01-27 17:14:16 -0800447 LOG(FATAL) << GetName() << " level=" << level_ << " self=" << name1
448 << " Thread::Current()=" << name2;
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800449 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700450 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700451 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700452 recursion_count_--;
453 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700454 if (kDebugLocking) {
455 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
456 << name_ << " " << recursion_count_;
457 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700458 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700459#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700460 bool done = false;
461 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700462 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700463 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700464 // We're no longer the owner.
465 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700466 // Change state to 0 and impose load/store ordering appropriate for lock release.
467 // Note, the relaxed loads below musn't reorder before the CompareExchange.
468 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
469 // a status bit into the state on contention.
470 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700471 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700472 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700473 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700474 futex(state_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700475 }
476 }
477 } else {
478 // Logging acquires the logging lock, avoid infinite recursion in that case.
479 if (this != Locks::logging_lock_) {
480 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
481 } else {
Ian Rogersc7dd2952014-10-21 23:31:19 -0700482 LogMessage::LogLine(__FILE__, __LINE__, INTERNAL_FATAL,
483 StringPrintf("Unexpected state_ %d in unlock for %s",
484 cur_state, name_).c_str());
Ian Rogersc5f17732014-06-05 20:48:42 -0700485 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700486 }
487 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700488 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700489#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700490 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700491 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700492#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700493 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700494}
495
Ian Rogers56edc432013-01-18 16:51:51 -0800496void Mutex::Dump(std::ostream& os) const {
497 os << (recursive_ ? "recursive " : "non-recursive ")
498 << name_
499 << " level=" << static_cast<int>(level_)
500 << " rec=" << recursion_count_
501 << " owner=" << GetExclusiveOwnerTid() << " ";
502 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700503}
504
505std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800506 mu.Dump(os);
507 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700508}
509
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700510ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
511 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700512#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700513 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700514#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700515{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700516#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700517 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700518#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700519 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700520}
521
522ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700523#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700524 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700525 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700526 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700527 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700528#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700529 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
530 // may still be using locks.
531 int rc = pthread_rwlock_destroy(&rwlock_);
532 if (rc != 0) {
533 errno = rc;
534 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700535 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700536 Runtime* runtime = Runtime::Current();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700537 bool shutting_down = runtime == nullptr || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700538 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800539 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700540#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700541}
542
Ian Rogers81d425b2012-09-27 16:03:43 -0700543void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700544 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700545 AssertNotExclusiveHeld(self);
546#if ART_USE_FUTEXES
547 bool done = false;
548 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700549 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700550 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700551 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
552 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700553 } else {
554 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700555 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700556 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700557 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700558 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
559 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
560 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700561 PLOG(FATAL) << "futex wait failed for " << name_;
562 }
563 }
Ian Rogersc7190692014-07-08 23:50:26 -0700564 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700565 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700566 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700567 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700568#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700569 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700570#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700571 DCHECK_EQ(exclusive_owner_, 0U);
572 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700573 RegisterAsLocked(self);
574 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700575}
576
Ian Rogers81d425b2012-09-27 16:03:43 -0700577void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700578 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700579 AssertExclusiveHeld(self);
580 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700581 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700582#if ART_USE_FUTEXES
583 bool done = false;
584 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700585 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700586 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700587 // We're no longer the owner.
588 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700589 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
590 // Note, the relaxed loads below musn't reorder before the CompareExchange.
591 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
592 // a status bit into the state on contention.
593 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
594 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700595 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700596 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
597 num_pending_writers_.LoadRelaxed() > 0)) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700598 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700599 }
600 }
601 } else {
602 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
603 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700604 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700605#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700606 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700607 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700608#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700609}
610
Ian Rogers66aee5c2012-08-15 17:17:47 -0700611#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700612bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700613 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700614#if ART_USE_FUTEXES
615 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700616 timespec end_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800617 InitTimeSpec(true, CLOCK_MONOTONIC, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700618 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700619 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700620 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700621 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
622 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700623 } else {
624 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700625 timespec now_abs_ts;
tony.ys_liu071e48e2015-01-14 18:28:03 +0800626 InitTimeSpec(true, CLOCK_MONOTONIC, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700627 timespec rel_ts;
628 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
629 return false; // Timed out.
630 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700631 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700632 ++num_pending_writers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700633 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, nullptr, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700634 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700635 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700636 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700637 } else if ((errno != EAGAIN) && (errno != EINTR)) {
638 // EAGAIN and EINTR both indicate a spurious failure,
639 // recompute the relative time out from now and try again.
640 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700641 PLOG(FATAL) << "timed futex wait failed for " << name_;
642 }
643 }
Ian Rogersc7190692014-07-08 23:50:26 -0700644 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700645 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700646 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700647#else
Ian Rogersc604d732012-10-14 16:09:54 -0700648 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700649 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700650 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700651 if (result == ETIMEDOUT) {
652 return false;
653 }
654 if (result != 0) {
655 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700656 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700657 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700658#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700659 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700660 RegisterAsLocked(self);
661 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700662 return true;
663}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700664#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700665
Ian Rogers51d212e2014-10-23 17:48:20 -0700666#if ART_USE_FUTEXES
Ian Rogerscf7f1912014-10-22 22:06:39 -0700667void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) {
668 // Owner holds it exclusively, hang up.
669 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
670 ++num_pending_readers_;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700671 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
Ian Rogerscf7f1912014-10-22 22:06:39 -0700672 if (errno != EAGAIN) {
673 PLOG(FATAL) << "futex wait failed for " << name_;
674 }
675 }
676 --num_pending_readers_;
677}
Ian Rogers51d212e2014-10-23 17:48:20 -0700678#endif
Ian Rogerscf7f1912014-10-22 22:06:39 -0700679
Ian Rogers81d425b2012-09-27 16:03:43 -0700680bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700681 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700682#if ART_USE_FUTEXES
683 bool done = false;
684 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700685 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700686 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700687 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
688 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700689 } else {
690 // Owner holds it exclusively.
691 return false;
692 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700693 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700694#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700695 int result = pthread_rwlock_tryrdlock(&rwlock_);
696 if (result == EBUSY) {
697 return false;
698 }
699 if (result != 0) {
700 errno = result;
701 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
702 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700703#endif
704 RegisterAsLocked(self);
705 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700706 return true;
707}
708
Ian Rogers81d425b2012-09-27 16:03:43 -0700709bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700710 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700711 bool result;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700712 if (UNLIKELY(self == nullptr)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700713 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700714 } else {
715 result = (self->GetHeldMutex(level_) == this);
716 }
717 return result;
718}
719
Ian Rogers56edc432013-01-18 16:51:51 -0800720void ReaderWriterMutex::Dump(std::ostream& os) const {
721 os << name_
722 << " level=" << static_cast<int>(level_)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700723 << " owner=" << GetExclusiveOwnerTid()
724#if ART_USE_FUTEXES
725 << " state=" << state_.LoadSequentiallyConsistent()
726 << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent()
727 << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent()
728#endif
729 << " ";
Ian Rogers56edc432013-01-18 16:51:51 -0800730 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700731}
732
733std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800734 mu.Dump(os);
735 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700736}
737
Yu Lieac44242015-06-29 10:50:03 +0800738std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu) {
739 mu.Dump(os);
740 return os;
741}
742
Ian Rogers23055dc2013-04-18 16:29:16 -0700743ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700744 : name_(name), guard_(guard) {
745#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700746 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700747 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700748#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000749 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700750 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000751#if !defined(__APPLE__)
752 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
Ian Rogers51d212e2014-10-23 17:48:20 -0700753 CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC));
Narayan Kamath51b71022014-03-04 11:57:09 +0000754#endif
755 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700756#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700757}
758
759ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800760#if ART_USE_FUTEXES
761 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800762 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700763 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800764 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
765 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800766 }
767#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700768 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
769 // may still be using condition variables.
770 int rc = pthread_cond_destroy(&cond_);
771 if (rc != 0) {
772 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700773 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700774 Runtime* runtime = Runtime::Current();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700775 bool shutting_down = (runtime == nullptr) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700776 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
777 }
Ian Rogersc604d732012-10-14 16:09:54 -0700778#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700779}
780
Ian Rogersc604d732012-10-14 16:09:54 -0700781void ConditionVariable::Broadcast(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700782 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700783 // TODO: enable below, there's a race in thread creation that causes false failures currently.
784 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700785 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700786#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800787 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800788 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700789 bool done = false;
790 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700791 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800792 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
793 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800794 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800795 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700796 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800797 if (!done) {
798 if (errno != EAGAIN) {
799 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
800 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800801 }
Ian Rogersc604d732012-10-14 16:09:54 -0700802 } while (!done);
803 }
804#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700805 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700806#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700807}
808
Ian Rogersc604d732012-10-14 16:09:54 -0700809void ConditionVariable::Signal(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700810 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700811 guard_.AssertExclusiveHeld(self);
812#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800813 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800814 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700815 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
816 // to avoid this, however, requeueing can only move all waiters.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700817 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800818 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800819 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700820 }
821#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700822 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700823#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700824}
825
Ian Rogersc604d732012-10-14 16:09:54 -0700826void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700827 guard_.CheckSafeToWait(self);
828 WaitHoldingLocks(self);
829}
830
831void ConditionVariable::WaitHoldingLocks(Thread* self) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700832 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700833 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700834 unsigned int old_recursion_count = guard_.recursion_count_;
835#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700836 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800837 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800838 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700839 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700840 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700841 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700842 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, nullptr, nullptr, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800843 // Futex failed, check it is an expected error.
844 // EAGAIN == EWOULDBLK, so we let the caller try again.
845 // EINTR implies a signal was sent to this thread.
846 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700847 PLOG(FATAL) << "futex wait failed for " << name_;
848 }
849 }
Mathieu Chartier4d87df62016-01-07 15:14:19 -0800850 if (self != nullptr) {
851 JNIEnvExt* const env = self->GetJniEnv();
852 if (UNLIKELY(env != nullptr && env->runtime_deleted)) {
853 CHECK(self->IsDaemon());
854 // If the runtime has been deleted, then we cannot proceed. Just sleep forever. This may
855 // occur for user daemon threads that get a spurious wakeup. This occurs for test 132 with
856 // --host and --gdb.
857 // After we wake up, the runtime may have been shutdown, which means that this condition may
858 // have been deleted. It is not safe to retry the wait.
859 SleepForever();
860 }
861 }
Ian Rogersc604d732012-10-14 16:09:54 -0700862 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800863 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700864 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800865 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700866 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800867 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700868#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700869 uint64_t old_owner = guard_.exclusive_owner_;
870 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700871 guard_.recursion_count_ = 0;
872 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700873 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700874#endif
875 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700876}
877
Ian Rogers7b078e82014-09-10 14:44:24 -0700878bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700879 DCHECK(self == nullptr || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700880 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700881 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700882 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700883 unsigned int old_recursion_count = guard_.recursion_count_;
884#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700885 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800886 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700887 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800888 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800889 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700890 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700891 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700892 guard_.ExclusiveUnlock(self);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700893 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, nullptr, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700894 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800895 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -0700896 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -0700897 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800898 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700899 } else {
900 PLOG(FATAL) << "timed futex wait failed for " << name_;
901 }
902 }
903 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800904 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700905 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800906 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700907 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800908 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700909#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000910#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700911 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700912#else
Ian Rogersc604d732012-10-14 16:09:54 -0700913 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700914#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700915 uint64_t old_owner = guard_.exclusive_owner_;
916 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700917 guard_.recursion_count_ = 0;
918 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700919 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000920 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -0700921 if (rc == ETIMEDOUT) {
922 timed_out = true;
923 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700924 errno = rc;
925 PLOG(FATAL) << "TimedWait failed for " << name_;
926 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700927 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700928#endif
929 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -0700930 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -0700931}
932
Ian Rogers719d1a32014-03-06 12:13:39 -0800933void Locks::Init() {
934 if (logging_lock_ != nullptr) {
935 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100936 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700937 DCHECK(modify_ldt_lock_ != nullptr);
938 } else {
939 DCHECK(modify_ldt_lock_ == nullptr);
940 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800941 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700942 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700943 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700944 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800945 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800946 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700947 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800948 DCHECK(heap_bitmap_lock_ != nullptr);
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -0700949 DCHECK(oat_file_manager_lock_ != nullptr);
Richard Uhlera206c742016-05-24 15:04:22 -0700950 DCHECK(host_dlopen_handles_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700951 DCHECK(intern_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -0700952 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800953 DCHECK(logging_lock_ != nullptr);
954 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700955 DCHECK(profiler_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800956 DCHECK(thread_list_lock_ != nullptr);
957 DCHECK(thread_suspend_count_lock_ != nullptr);
958 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800959 DCHECK(unexpected_signal_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800960 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700961 // Create global locks in level order from highest lock level to lowest.
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800962 LockLevel current_lock_level = kInstrumentEntrypointsLock;
963 DCHECK(instrument_entrypoints_lock_ == nullptr);
964 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800965
Chao-ying Fu9e369312014-05-21 11:20:52 -0700966 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Chih-Hung Hsiehfba39972016-05-11 11:26:48 -0700967 if ((new_level) >= current_lock_level) { \
Brian Carlstrom306db812014-09-05 13:01:41 -0700968 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
969 fprintf(stderr, "New local level %d is not less than current level %d\n", \
970 new_level, current_lock_level); \
971 exit(1); \
972 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -0700973 current_lock_level = new_level;
974
975 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
976 DCHECK(mutator_lock_ == nullptr);
Yu Lieac44242015-06-29 10:50:03 +0800977 mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700978
979 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
980 DCHECK(heap_bitmap_lock_ == nullptr);
981 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
982
Jeff Hao69dbec62014-09-15 18:03:41 -0700983 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
984 DCHECK(trace_lock_ == nullptr);
985 trace_lock_ = new Mutex("trace lock", current_lock_level);
986
Chao-ying Fu9e369312014-05-21 11:20:52 -0700987 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
988 DCHECK(runtime_shutdown_lock_ == nullptr);
989 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
990
991 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
992 DCHECK(profiler_lock_ == nullptr);
993 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
994
Brian Carlstrom306db812014-09-05 13:01:41 -0700995 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
996 DCHECK(deoptimization_lock_ == nullptr);
997 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
998
999 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
1000 DCHECK(alloc_tracker_lock_ == nullptr);
1001 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
1002
Chao-ying Fu9e369312014-05-21 11:20:52 -07001003 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
1004 DCHECK(thread_list_lock_ == nullptr);
1005 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
1006
Ian Rogers68d8b422014-07-17 11:09:10 -07001007 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
1008 DCHECK(jni_libraries_lock_ == nullptr);
1009 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
1010
Chao-ying Fu9e369312014-05-21 11:20:52 -07001011 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001012 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +02001013 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001014
1015 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001016 DCHECK(classlinker_classes_lock_ == nullptr);
1017 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -07001018 current_lock_level);
1019
Andreas Gampe74240812014-04-17 10:35:09 -07001020 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
1021 DCHECK(allocated_monitor_ids_lock_ == nullptr);
1022 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
1023
Chao-ying Fu9e369312014-05-21 11:20:52 -07001024 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
1025 DCHECK(allocated_thread_ids_lock_ == nullptr);
1026 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
1027
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +01001028 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001029 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
1030 DCHECK(modify_ldt_lock_ == nullptr);
1031 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
1032 }
1033
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001034 UPDATE_CURRENT_LOCK_LEVEL(kOatFileManagerLock);
1035 DCHECK(oat_file_manager_lock_ == nullptr);
1036 oat_file_manager_lock_ = new ReaderWriterMutex("OatFile manager lock", current_lock_level);
1037
Richard Uhlera206c742016-05-24 15:04:22 -07001038 UPDATE_CURRENT_LOCK_LEVEL(kHostDlOpenHandlesLock);
1039 DCHECK(host_dlopen_handles_lock_ == nullptr);
1040 host_dlopen_handles_lock_ = new Mutex("host dlopen handles lock", current_lock_level);
Mathieu Chartiere58991b2015-10-13 07:59:34 -07001041
Chao-ying Fu9e369312014-05-21 11:20:52 -07001042 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001043 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001044 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1045
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001046 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1047 DCHECK(reference_processor_lock_ == nullptr);
1048 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1049
1050 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1051 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1052 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1053
1054 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1055 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1056 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1057
1058 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1059 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1060 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1061
1062 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1063 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1064 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1065
1066 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1067 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1068 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1069
Chao-ying Fu9e369312014-05-21 11:20:52 -07001070 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1071 DCHECK(abort_lock_ == nullptr);
1072 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1073
1074 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1075 DCHECK(thread_suspend_count_lock_ == nullptr);
1076 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1077
1078 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1079 DCHECK(unexpected_signal_lock_ == nullptr);
1080 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1081
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -07001082 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
1083 DCHECK(mem_maps_lock_ == nullptr);
1084 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
1085
Chao-ying Fu9e369312014-05-21 11:20:52 -07001086 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1087 DCHECK(logging_lock_ == nullptr);
1088 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1089
1090 #undef UPDATE_CURRENT_LOCK_LEVEL
Mathieu Chartier91e56692015-03-03 13:51:04 -08001091
1092 InitConditions();
Ian Rogers719d1a32014-03-06 12:13:39 -08001093 }
1094}
1095
Mathieu Chartier91e56692015-03-03 13:51:04 -08001096void Locks::InitConditions() {
1097 thread_exit_cond_ = new ConditionVariable("thread exit condition variable", *thread_list_lock_);
1098}
Ian Rogers719d1a32014-03-06 12:13:39 -08001099
Elliott Hughese62934d2012-04-09 11:24:29 -07001100} // namespace art