blob: 455680b449579bea5496102de19a6b12a44b72b0 [file] [log] [blame]
Elliott Hughes8daa0922011-09-11 13:46:25 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "mutex.h"
18
19#include <errno.h>
Ian Rogersc604d732012-10-14 16:09:54 -070020#include <sys/time.h>
Elliott Hughes8daa0922011-09-11 13:46:25 -070021
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070022#include "atomic.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080023#include "base/logging.h"
Ian Rogers693ff612013-02-01 10:56:12 -080024#include "mutex-inl.h"
Elliott Hughes6b355752012-01-13 16:49:08 -080025#include "runtime.h"
Ian Rogersc604d732012-10-14 16:09:54 -070026#include "scoped_thread_state_change.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070027#include "thread-inl.h"
Elliott Hughesffb465f2012-03-01 18:46:05 -080028#include "utils.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070029
30namespace art {
31
Ian Rogers719d1a32014-03-06 12:13:39 -080032Mutex* Locks::abort_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070033Mutex* Locks::alloc_tracker_lock_ = nullptr;
Andreas Gampe74240812014-04-17 10:35:09 -070034Mutex* Locks::allocated_monitor_ids_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070035Mutex* Locks::allocated_thread_ids_lock_ = nullptr;
Sebastien Hertzed2be172014-08-19 15:33:43 +020036ReaderWriterMutex* Locks::breakpoint_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080037ReaderWriterMutex* Locks::classlinker_classes_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070038Mutex* Locks::deoptimization_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080039ReaderWriterMutex* Locks::heap_bitmap_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070040Mutex* Locks::intern_table_lock_ = nullptr;
Ian Rogers68d8b422014-07-17 11:09:10 -070041Mutex* Locks::jni_libraries_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080042Mutex* Locks::logging_lock_ = nullptr;
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070043Mutex* Locks::mem_maps_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070044Mutex* Locks::modify_ldt_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080045ReaderWriterMutex* Locks::mutator_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070046Mutex* Locks::profiler_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070047Mutex* Locks::reference_processor_lock_ = nullptr;
48Mutex* Locks::reference_queue_cleared_references_lock_ = nullptr;
49Mutex* Locks::reference_queue_finalizer_references_lock_ = nullptr;
50Mutex* Locks::reference_queue_phantom_references_lock_ = nullptr;
51Mutex* Locks::reference_queue_soft_references_lock_ = nullptr;
52Mutex* Locks::reference_queue_weak_references_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080053Mutex* Locks::runtime_shutdown_lock_ = nullptr;
54Mutex* Locks::thread_list_lock_ = nullptr;
Ian Rogersf3d874c2014-07-17 18:52:42 -070055Mutex* Locks::thread_list_suspend_thread_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080056Mutex* Locks::thread_suspend_count_lock_ = nullptr;
57Mutex* Locks::trace_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080058Mutex* Locks::unexpected_signal_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080059
60struct AllMutexData {
61 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
62 Atomic<const BaseMutex*> all_mutexes_guard;
63 // All created mutexes guarded by all_mutexes_guard_.
64 std::set<BaseMutex*>* all_mutexes;
65 AllMutexData() : all_mutexes(NULL) {}
66};
67static struct AllMutexData gAllMutexData[kAllMutexDataSize];
68
Ian Rogersc604d732012-10-14 16:09:54 -070069#if ART_USE_FUTEXES
70static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070071 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070072 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
73 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
74 if (result_ts->tv_nsec < 0) {
75 result_ts->tv_sec--;
76 result_ts->tv_nsec += one_sec;
77 } else if (result_ts->tv_nsec > one_sec) {
78 result_ts->tv_sec++;
79 result_ts->tv_nsec -= one_sec;
80 }
81 return result_ts->tv_sec < 0;
82}
83#endif
84
Ian Rogers56edc432013-01-18 16:51:51 -080085class ScopedAllMutexesLock {
86 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070087 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -070088 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -080089 NanoSleep(100);
90 }
91 }
92 ~ScopedAllMutexesLock() {
Ian Rogers3e5cf302014-05-20 16:40:37 -070093 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers56edc432013-01-18 16:51:51 -080094 NanoSleep(100);
95 }
96 }
97 private:
98 const BaseMutex* const mutex_;
99};
Ian Rogers56edc432013-01-18 16:51:51 -0800100
101BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700102 if (kLogLockContentions) {
103 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700104 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700105 if (*all_mutexes_ptr == NULL) {
106 // We leak the global set of all mutexes to avoid ordering issues in global variable
107 // construction/destruction.
108 *all_mutexes_ptr = new std::set<BaseMutex*>();
109 }
110 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800111 }
Ian Rogers56edc432013-01-18 16:51:51 -0800112}
113
114BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700115 if (kLogLockContentions) {
116 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700117 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700118 }
Ian Rogers56edc432013-01-18 16:51:51 -0800119}
120
121void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700122 if (kLogLockContentions) {
123 os << "Mutex logging:\n";
124 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700125 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700126 if (all_mutexes == NULL) {
127 // No mutexes have been created yet during at startup.
128 return;
129 }
130 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700131 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700132 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
133 BaseMutex* mutex = *it;
134 if (mutex->HasEverContended()) {
135 mutex->Dump(os);
136 os << "\n";
137 }
138 }
139 os << "(Never contented)\n";
140 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
141 BaseMutex* mutex = *it;
142 if (!mutex->HasEverContended()) {
143 mutex->Dump(os);
144 os << "\n";
145 }
146 }
Ian Rogers56edc432013-01-18 16:51:51 -0800147 }
Ian Rogers56edc432013-01-18 16:51:51 -0800148}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700149
Ian Rogers81d425b2012-09-27 16:03:43 -0700150void BaseMutex::CheckSafeToWait(Thread* self) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700151 if (self == NULL) {
152 CheckUnattachedThread(level_);
153 return;
154 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700155 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700156 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
157 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700158 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800159 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700160 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700161 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogersf3d874c2014-07-17 18:52:42 -0700162 // We expect waits to happen while holding the thread list suspend thread lock.
163 if (held_mutex != NULL && i != kThreadListSuspendThreadLock) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800164 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
165 << "(level " << LockLevel(i) << ") while performing wait on "
166 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700167 bad_mutexes_held = true;
168 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700169 }
170 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700171 CHECK(!bad_mutexes_held);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700172 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700173}
174
Ian Rogers37f3c962014-07-17 11:25:30 -0700175void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700176 if (kLogLockContentions) {
177 // Atomically add value to wait_time.
Ian Rogers37f3c962014-07-17 11:25:30 -0700178 wait_time.FetchAndAddSequentiallyConsistent(value);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700179 }
180}
181
Brian Carlstrom0de79852013-07-25 22:29:58 -0700182void BaseMutex::RecordContention(uint64_t blocked_tid,
183 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700184 uint64_t nano_time_blocked) {
185 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700186 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700187 ++(data->contention_count);
188 data->AddToWaitTime(nano_time_blocked);
189 ContentionLogEntry* log = data->contention_log;
190 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700191 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700192 if (log[slot].blocked_tid == blocked_tid &&
193 log[slot].owner_tid == blocked_tid) {
194 ++log[slot].count;
195 } else {
196 uint32_t new_slot;
197 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700198 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700199 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700200 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700201 log[new_slot].blocked_tid = blocked_tid;
202 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700203 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700204 }
Ian Rogers56edc432013-01-18 16:51:51 -0800205 }
Ian Rogers56edc432013-01-18 16:51:51 -0800206}
207
Ian Rogers56edc432013-01-18 16:51:51 -0800208void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700209 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700210 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700211 const ContentionLogEntry* log = data->contention_log;
Ian Rogers37f3c962014-07-17 11:25:30 -0700212 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700213 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700214 if (contention_count == 0) {
215 os << "never contended";
216 } else {
217 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700218 << " total wait of contender " << PrettyDuration(wait_time)
219 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700220 SafeMap<uint64_t, size_t> most_common_blocker;
221 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700222 for (size_t i = 0; i < kContentionLogSize; ++i) {
223 uint64_t blocked_tid = log[i].blocked_tid;
224 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700225 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700226 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700227 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700228 if (it != most_common_blocked.end()) {
229 most_common_blocked.Overwrite(blocked_tid, it->second + count);
230 } else {
231 most_common_blocked.Put(blocked_tid, count);
232 }
233 it = most_common_blocker.find(owner_tid);
234 if (it != most_common_blocker.end()) {
235 most_common_blocker.Overwrite(owner_tid, it->second + count);
236 } else {
237 most_common_blocker.Put(owner_tid, count);
238 }
Ian Rogers56edc432013-01-18 16:51:51 -0800239 }
240 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700241 uint64_t max_tid = 0;
242 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700243 for (const auto& pair : most_common_blocked) {
244 if (pair.second > max_tid_count) {
245 max_tid = pair.first;
246 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700247 }
Ian Rogers56edc432013-01-18 16:51:51 -0800248 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700249 if (max_tid != 0) {
250 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800251 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700252 max_tid = 0;
253 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700254 for (const auto& pair : most_common_blocker) {
255 if (pair.second > max_tid_count) {
256 max_tid = pair.first;
257 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700258 }
259 }
260 if (max_tid != 0) {
261 os << " sample shows tid=" << max_tid << " owning during this time";
262 }
Ian Rogers56edc432013-01-18 16:51:51 -0800263 }
264 }
Ian Rogers56edc432013-01-18 16:51:51 -0800265}
266
267
Ian Rogers81d425b2012-09-27 16:03:43 -0700268Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700269 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700270#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700271 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700272 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700273#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700274 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700275#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700276 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700277}
278
279Mutex::~Mutex() {
Ian Rogersc604d732012-10-14 16:09:54 -0700280#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700281 if (state_.LoadRelaxed() != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700282 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700283 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700284 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
285 } else {
286 CHECK_EQ(exclusive_owner_, 0U) << "unexpectedly found an owner on unlocked mutex " << name_;
Ian Rogersc7190692014-07-08 23:50:26 -0700287 CHECK_EQ(num_contenders_.LoadSequentiallyConsistent(), 0)
Ian Rogers3e5cf302014-05-20 16:40:37 -0700288 << "unexpectedly found a contender on mutex " << name_;
Ian Rogersc604d732012-10-14 16:09:54 -0700289 }
290#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700291 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
292 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800293 int rc = pthread_mutex_destroy(&mutex_);
294 if (rc != 0) {
295 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800296 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700297 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700298 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800299 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughes6b355752012-01-13 16:49:08 -0800300 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
301 }
Ian Rogersc604d732012-10-14 16:09:54 -0700302#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700303}
304
Ian Rogers81d425b2012-09-27 16:03:43 -0700305void Mutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700306 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700307 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700308 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700309 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700310 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700311#if ART_USE_FUTEXES
312 bool done = false;
313 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700314 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700315 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700316 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
317 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700318 } else {
319 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700320 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800321 num_contenders_++;
Ian Rogersc7190692014-07-08 23:50:26 -0700322 if (futex(state_.Address(), FUTEX_WAIT, 1, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700323 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
324 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
325 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700326 PLOG(FATAL) << "futex wait failed for " << name_;
327 }
328 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800329 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700330 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700331 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700332 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700333#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700334 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700335#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700336 DCHECK_EQ(exclusive_owner_, 0U);
337 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700338 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700339 }
340 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700341 if (kDebugLocking) {
342 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
343 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700344 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700345 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700346}
347
Ian Rogers81d425b2012-09-27 16:03:43 -0700348bool Mutex::ExclusiveTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700349 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700350 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700351 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700352 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700353 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700354#if ART_USE_FUTEXES
355 bool done = false;
356 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700357 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700358 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700359 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
360 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700361 } else {
362 return false;
363 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700364 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700365 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700366#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700367 int result = pthread_mutex_trylock(&mutex_);
368 if (result == EBUSY) {
369 return false;
370 }
371 if (result != 0) {
372 errno = result;
373 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
374 }
Ian Rogersc604d732012-10-14 16:09:54 -0700375#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700376 DCHECK_EQ(exclusive_owner_, 0U);
377 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700378 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700379 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700380 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700381 if (kDebugLocking) {
382 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
383 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700384 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700385 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700386 return true;
387}
388
Ian Rogers81d425b2012-09-27 16:03:43 -0700389void Mutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700390 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700391 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700392 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700393 recursion_count_--;
394 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700395 if (kDebugLocking) {
396 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
397 << name_ << " " << recursion_count_;
398 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700399 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700400#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700401 bool done = false;
402 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700403 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700404 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700405 // We're no longer the owner.
406 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700407 // Change state to 0 and impose load/store ordering appropriate for lock release.
408 // Note, the relaxed loads below musn't reorder before the CompareExchange.
409 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
410 // a status bit into the state on contention.
411 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700412 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700413 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700414 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700415 futex(state_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700416 }
417 }
418 } else {
419 // Logging acquires the logging lock, avoid infinite recursion in that case.
420 if (this != Locks::logging_lock_) {
421 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
422 } else {
423 LogMessageData data(__FILE__, __LINE__, INTERNAL_FATAL, -1);
424 LogMessage::LogLine(data, StringPrintf("Unexpected state_ %d in unlock for %s",
425 cur_state, name_).c_str());
426 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700427 }
428 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700429 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700430#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700431 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700432 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700433#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700434 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700435}
436
Ian Rogers56edc432013-01-18 16:51:51 -0800437void Mutex::Dump(std::ostream& os) const {
438 os << (recursive_ ? "recursive " : "non-recursive ")
439 << name_
440 << " level=" << static_cast<int>(level_)
441 << " rec=" << recursion_count_
442 << " owner=" << GetExclusiveOwnerTid() << " ";
443 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700444}
445
446std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800447 mu.Dump(os);
448 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700449}
450
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700451ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
452 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700453#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700454 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700455#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700456{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700457#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700458 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700459#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700460 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700461}
462
463ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700464#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700465 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700466 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700467 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700468 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700469#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700470 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
471 // may still be using locks.
472 int rc = pthread_rwlock_destroy(&rwlock_);
473 if (rc != 0) {
474 errno = rc;
475 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700476 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700477 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800478 bool shutting_down = runtime == NULL || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700479 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800480 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700481#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700482}
483
Ian Rogers81d425b2012-09-27 16:03:43 -0700484void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700485 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700486 AssertNotExclusiveHeld(self);
487#if ART_USE_FUTEXES
488 bool done = false;
489 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700490 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700491 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700492 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
493 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700494 } else {
495 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700496 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700497 ++num_pending_writers_;
498 if (futex(state_.Address(), FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700499 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
500 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
501 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700502 PLOG(FATAL) << "futex wait failed for " << name_;
503 }
504 }
Ian Rogersc7190692014-07-08 23:50:26 -0700505 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700506 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700507 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700508 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700509#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700510 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700511#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700512 DCHECK_EQ(exclusive_owner_, 0U);
513 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700514 RegisterAsLocked(self);
515 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700516}
517
Ian Rogers81d425b2012-09-27 16:03:43 -0700518void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700519 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700520 AssertExclusiveHeld(self);
521 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700522 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700523#if ART_USE_FUTEXES
524 bool done = false;
525 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700526 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700527 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700528 // We're no longer the owner.
529 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700530 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
531 // Note, the relaxed loads below musn't reorder before the CompareExchange.
532 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
533 // a status bit into the state on contention.
534 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
535 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700536 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700537 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
538 num_pending_writers_.LoadRelaxed() > 0)) {
539 futex(state_.Address(), FUTEX_WAKE, -1, NULL, NULL, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700540 }
541 }
542 } else {
543 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
544 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700545 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700546#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700547 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700548 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700549#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700550}
551
Ian Rogers66aee5c2012-08-15 17:17:47 -0700552#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700553bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700554 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700555#if ART_USE_FUTEXES
556 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700557 timespec end_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800558 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700559 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700560 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700561 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700562 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
563 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700564 } else {
565 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700566 timespec now_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800567 InitTimeSpec(true, CLOCK_REALTIME, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700568 timespec rel_ts;
569 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
570 return false; // Timed out.
571 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700572 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700573 ++num_pending_writers_;
574 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, NULL, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700575 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700576 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700577 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700578 } else if ((errno != EAGAIN) && (errno != EINTR)) {
579 // EAGAIN and EINTR both indicate a spurious failure,
580 // recompute the relative time out from now and try again.
581 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700582 PLOG(FATAL) << "timed futex wait failed for " << name_;
583 }
584 }
Ian Rogersc7190692014-07-08 23:50:26 -0700585 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700586 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700587 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700588#else
Ian Rogersc604d732012-10-14 16:09:54 -0700589 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700590 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700591 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700592 if (result == ETIMEDOUT) {
593 return false;
594 }
595 if (result != 0) {
596 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700597 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700598 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700599#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700600 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700601 RegisterAsLocked(self);
602 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700603 return true;
604}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700605#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700606
Ian Rogers81d425b2012-09-27 16:03:43 -0700607bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700608 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700609#if ART_USE_FUTEXES
610 bool done = false;
611 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700612 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700613 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700614 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
615 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700616 } else {
617 // Owner holds it exclusively.
618 return false;
619 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700620 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700621#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700622 int result = pthread_rwlock_tryrdlock(&rwlock_);
623 if (result == EBUSY) {
624 return false;
625 }
626 if (result != 0) {
627 errno = result;
628 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
629 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700630#endif
631 RegisterAsLocked(self);
632 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700633 return true;
634}
635
Ian Rogers81d425b2012-09-27 16:03:43 -0700636bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Ian Rogers01ae5802012-09-28 16:14:01 -0700637 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700638 bool result;
639 if (UNLIKELY(self == NULL)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700640 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700641 } else {
642 result = (self->GetHeldMutex(level_) == this);
643 }
644 return result;
645}
646
Ian Rogers56edc432013-01-18 16:51:51 -0800647void ReaderWriterMutex::Dump(std::ostream& os) const {
648 os << name_
649 << " level=" << static_cast<int>(level_)
650 << " owner=" << GetExclusiveOwnerTid() << " ";
651 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700652}
653
654std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800655 mu.Dump(os);
656 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700657}
658
Ian Rogers23055dc2013-04-18 16:29:16 -0700659ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700660 : name_(name), guard_(guard) {
661#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700662 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700663 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700664#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000665 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700666 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000667#if !defined(__APPLE__)
668 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
669 CHECK_MUTEX_CALL(pthread_condattr_setclock(&cond_attrs, CLOCK_MONOTONIC));
670#endif
671 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700672#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700673}
674
675ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800676#if ART_USE_FUTEXES
677 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800678 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700679 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800680 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
681 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800682 }
683#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700684 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
685 // may still be using condition variables.
686 int rc = pthread_cond_destroy(&cond_);
687 if (rc != 0) {
688 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700689 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700690 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800691 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700692 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
693 }
Ian Rogersc604d732012-10-14 16:09:54 -0700694#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700695}
696
Ian Rogersc604d732012-10-14 16:09:54 -0700697void ConditionVariable::Broadcast(Thread* self) {
698 DCHECK(self == NULL || self == Thread::Current());
699 // TODO: enable below, there's a race in thread creation that causes false failures currently.
700 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700701 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700702#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800703 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800704 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700705 bool done = false;
706 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700707 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800708 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
709 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800710 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800711 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700712 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800713 if (!done) {
714 if (errno != EAGAIN) {
715 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
716 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800717 }
Ian Rogersc604d732012-10-14 16:09:54 -0700718 } while (!done);
719 }
720#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700721 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700722#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700723}
724
Ian Rogersc604d732012-10-14 16:09:54 -0700725void ConditionVariable::Signal(Thread* self) {
726 DCHECK(self == NULL || self == Thread::Current());
727 guard_.AssertExclusiveHeld(self);
728#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800729 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800730 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700731 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
732 // to avoid this, however, requeueing can only move all waiters.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800733 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800734 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800735 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700736 }
737#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700738 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700739#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700740}
741
Ian Rogersc604d732012-10-14 16:09:54 -0700742void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700743 guard_.CheckSafeToWait(self);
744 WaitHoldingLocks(self);
745}
746
747void ConditionVariable::WaitHoldingLocks(Thread* self) {
Ian Rogersc604d732012-10-14 16:09:54 -0700748 DCHECK(self == NULL || self == Thread::Current());
749 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700750 unsigned int old_recursion_count = guard_.recursion_count_;
751#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700752 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800753 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800754 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700755 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700756 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700757 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800758 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, NULL, NULL, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800759 // Futex failed, check it is an expected error.
760 // EAGAIN == EWOULDBLK, so we let the caller try again.
761 // EINTR implies a signal was sent to this thread.
762 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700763 PLOG(FATAL) << "futex wait failed for " << name_;
764 }
765 }
766 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800767 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700768 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800769 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700770 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800771 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700772#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700773 uint64_t old_owner = guard_.exclusive_owner_;
774 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700775 guard_.recursion_count_ = 0;
776 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700777 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700778#endif
779 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700780}
781
Ian Rogers7b078e82014-09-10 14:44:24 -0700782bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Ian Rogersc604d732012-10-14 16:09:54 -0700783 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700784 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700785 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700786 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700787 unsigned int old_recursion_count = guard_.recursion_count_;
788#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700789 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800790 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700791 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800792 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800793 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700794 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700795 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700796 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800797 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, NULL, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700798 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800799 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -0700800 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -0700801 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800802 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700803 } else {
804 PLOG(FATAL) << "timed futex wait failed for " << name_;
805 }
806 }
807 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800808 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700809 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800810 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700811 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800812 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700813#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000814#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700815 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700816#else
Ian Rogersc604d732012-10-14 16:09:54 -0700817 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700818#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700819 uint64_t old_owner = guard_.exclusive_owner_;
820 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700821 guard_.recursion_count_ = 0;
822 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700823 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000824 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -0700825 if (rc == ETIMEDOUT) {
826 timed_out = true;
827 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700828 errno = rc;
829 PLOG(FATAL) << "TimedWait failed for " << name_;
830 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700831 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700832#endif
833 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -0700834 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -0700835}
836
Ian Rogers719d1a32014-03-06 12:13:39 -0800837void Locks::Init() {
838 if (logging_lock_ != nullptr) {
839 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100840 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700841 DCHECK(modify_ldt_lock_ != nullptr);
842 } else {
843 DCHECK(modify_ldt_lock_ == nullptr);
844 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800845 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700846 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700847 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700848 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800849 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800850 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700851 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800852 DCHECK(heap_bitmap_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700853 DCHECK(intern_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -0700854 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800855 DCHECK(logging_lock_ != nullptr);
856 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700857 DCHECK(profiler_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800858 DCHECK(thread_list_lock_ != nullptr);
Ian Rogersf3d874c2014-07-17 18:52:42 -0700859 DCHECK(thread_list_suspend_thread_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800860 DCHECK(thread_suspend_count_lock_ != nullptr);
861 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800862 DCHECK(unexpected_signal_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800863 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700864 // Create global locks in level order from highest lock level to lowest.
Ian Rogersf3d874c2014-07-17 18:52:42 -0700865 LockLevel current_lock_level = kThreadListSuspendThreadLock;
866 DCHECK(thread_list_suspend_thread_lock_ == nullptr);
867 thread_list_suspend_thread_lock_ =
868 new Mutex("thread list suspend thread by .. lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800869
Chao-ying Fu9e369312014-05-21 11:20:52 -0700870 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Brian Carlstrom306db812014-09-05 13:01:41 -0700871 if (new_level >= current_lock_level) { \
872 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
873 fprintf(stderr, "New local level %d is not less than current level %d\n", \
874 new_level, current_lock_level); \
875 exit(1); \
876 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -0700877 current_lock_level = new_level;
878
879 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
880 DCHECK(mutator_lock_ == nullptr);
881 mutator_lock_ = new ReaderWriterMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700882
883 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
884 DCHECK(heap_bitmap_lock_ == nullptr);
885 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
886
887 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
888 DCHECK(runtime_shutdown_lock_ == nullptr);
889 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
890
891 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
892 DCHECK(profiler_lock_ == nullptr);
893 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
894
895 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
896 DCHECK(trace_lock_ == nullptr);
897 trace_lock_ = new Mutex("trace lock", current_lock_level);
898
Brian Carlstrom306db812014-09-05 13:01:41 -0700899 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
900 DCHECK(deoptimization_lock_ == nullptr);
901 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
902
903 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
904 DCHECK(alloc_tracker_lock_ == nullptr);
905 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
906
Chao-ying Fu9e369312014-05-21 11:20:52 -0700907 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
908 DCHECK(thread_list_lock_ == nullptr);
909 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
910
Ian Rogers68d8b422014-07-17 11:09:10 -0700911 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
912 DCHECK(jni_libraries_lock_ == nullptr);
913 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
914
Chao-ying Fu9e369312014-05-21 11:20:52 -0700915 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800916 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +0200917 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700918
919 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800920 DCHECK(classlinker_classes_lock_ == nullptr);
921 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -0700922 current_lock_level);
923
Andreas Gampe74240812014-04-17 10:35:09 -0700924 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
925 DCHECK(allocated_monitor_ids_lock_ == nullptr);
926 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
927
Chao-ying Fu9e369312014-05-21 11:20:52 -0700928 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
929 DCHECK(allocated_thread_ids_lock_ == nullptr);
930 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
931
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100932 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700933 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
934 DCHECK(modify_ldt_lock_ == nullptr);
935 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
936 }
937
938 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800939 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700940 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
941
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -0700942 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
943 DCHECK(reference_processor_lock_ == nullptr);
944 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
945
946 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
947 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
948 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
949
950 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
951 DCHECK(reference_queue_weak_references_lock_ == nullptr);
952 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
953
954 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
955 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
956 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
957
958 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
959 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
960 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
961
962 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
963 DCHECK(reference_queue_soft_references_lock_ == nullptr);
964 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
965
Chao-ying Fu9e369312014-05-21 11:20:52 -0700966 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
967 DCHECK(abort_lock_ == nullptr);
968 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
969
970 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
971 DCHECK(thread_suspend_count_lock_ == nullptr);
972 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
973
974 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
975 DCHECK(unexpected_signal_lock_ == nullptr);
976 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
977
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -0700978 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
979 DCHECK(mem_maps_lock_ == nullptr);
980 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
981
Chao-ying Fu9e369312014-05-21 11:20:52 -0700982 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
983 DCHECK(logging_lock_ == nullptr);
984 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
985
986 #undef UPDATE_CURRENT_LOCK_LEVEL
Ian Rogers719d1a32014-03-06 12:13:39 -0800987 }
988}
989
990
Elliott Hughese62934d2012-04-09 11:24:29 -0700991} // namespace art