blob: aa2aefc318c50f9d6093f7b8adcc19247fe49a87 [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
Ian Rogerscf7f1912014-10-22 22:06:39 -070022#define ATRACE_TAG ATRACE_TAG_DALVIK
23#include "cutils/trace.h"
24
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -070025#include "atomic.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080026#include "base/logging.h"
Ian Rogerscf7f1912014-10-22 22:06:39 -070027#include "base/value_object.h"
Ian Rogers693ff612013-02-01 10:56:12 -080028#include "mutex-inl.h"
Elliott Hughes6b355752012-01-13 16:49:08 -080029#include "runtime.h"
Ian Rogersc604d732012-10-14 16:09:54 -070030#include "scoped_thread_state_change.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070031#include "thread-inl.h"
Elliott Hughesffb465f2012-03-01 18:46:05 -080032#include "utils.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070033
34namespace art {
35
Ian Rogers719d1a32014-03-06 12:13:39 -080036Mutex* Locks::abort_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070037Mutex* Locks::alloc_tracker_lock_ = nullptr;
Andreas Gampe74240812014-04-17 10:35:09 -070038Mutex* Locks::allocated_monitor_ids_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070039Mutex* Locks::allocated_thread_ids_lock_ = nullptr;
Sebastien Hertzed2be172014-08-19 15:33:43 +020040ReaderWriterMutex* Locks::breakpoint_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080041ReaderWriterMutex* Locks::classlinker_classes_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070042Mutex* Locks::deoptimization_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080043ReaderWriterMutex* Locks::heap_bitmap_lock_ = nullptr;
Mathieu Chartier9ef78b52014-09-25 17:03:12 -070044Mutex* Locks::instrument_entrypoints_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070045Mutex* Locks::intern_table_lock_ = nullptr;
Ian Rogers68d8b422014-07-17 11:09:10 -070046Mutex* Locks::jni_libraries_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080047Mutex* Locks::logging_lock_ = nullptr;
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -070048Mutex* Locks::mem_maps_lock_ = nullptr;
Chao-ying Fu9e369312014-05-21 11:20:52 -070049Mutex* Locks::modify_ldt_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080050ReaderWriterMutex* Locks::mutator_lock_ = nullptr;
Brian Carlstrom306db812014-09-05 13:01:41 -070051Mutex* Locks::profiler_lock_ = nullptr;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070052Mutex* Locks::reference_processor_lock_ = nullptr;
53Mutex* Locks::reference_queue_cleared_references_lock_ = nullptr;
54Mutex* Locks::reference_queue_finalizer_references_lock_ = nullptr;
55Mutex* Locks::reference_queue_phantom_references_lock_ = nullptr;
56Mutex* Locks::reference_queue_soft_references_lock_ = nullptr;
57Mutex* Locks::reference_queue_weak_references_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080058Mutex* Locks::runtime_shutdown_lock_ = nullptr;
59Mutex* Locks::thread_list_lock_ = nullptr;
60Mutex* Locks::thread_suspend_count_lock_ = nullptr;
61Mutex* Locks::trace_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080062Mutex* Locks::unexpected_signal_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080063
64struct AllMutexData {
65 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
66 Atomic<const BaseMutex*> all_mutexes_guard;
67 // All created mutexes guarded by all_mutexes_guard_.
68 std::set<BaseMutex*>* all_mutexes;
69 AllMutexData() : all_mutexes(NULL) {}
70};
71static struct AllMutexData gAllMutexData[kAllMutexDataSize];
72
Ian Rogersc604d732012-10-14 16:09:54 -070073#if ART_USE_FUTEXES
74static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070075 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070076 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
77 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
78 if (result_ts->tv_nsec < 0) {
79 result_ts->tv_sec--;
80 result_ts->tv_nsec += one_sec;
81 } else if (result_ts->tv_nsec > one_sec) {
82 result_ts->tv_sec++;
83 result_ts->tv_nsec -= one_sec;
84 }
85 return result_ts->tv_sec < 0;
86}
87#endif
88
Ian Rogers6f3dbba2014-10-14 17:41:57 -070089class ScopedAllMutexesLock FINAL {
Ian Rogers56edc432013-01-18 16:51:51 -080090 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070091 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -070092 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -080093 NanoSleep(100);
94 }
95 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -070096
Ian Rogers56edc432013-01-18 16:51:51 -080097 ~ScopedAllMutexesLock() {
Ian Rogers6f3dbba2014-10-14 17:41:57 -070098#if !defined(__clang__)
99 // TODO: remove this workaround target GCC/libc++/bionic bug "invalid failure memory model".
100 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakSequentiallyConsistent(mutex_, 0)) {
101#else
Ian Rogers3e5cf302014-05-20 16:40:37 -0700102 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700103#endif
Ian Rogers56edc432013-01-18 16:51:51 -0800104 NanoSleep(100);
105 }
106 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700107
Ian Rogers56edc432013-01-18 16:51:51 -0800108 private:
109 const BaseMutex* const mutex_;
110};
Ian Rogers56edc432013-01-18 16:51:51 -0800111
Ian Rogerscf7f1912014-10-22 22:06:39 -0700112// Scoped class that generates events at the beginning and end of lock contention.
113class ScopedContentionRecorder FINAL : public ValueObject {
114 public:
115 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid)
116 : mutex_(kLogLockContentions ? mutex : NULL),
117 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
118 owner_tid_(kLogLockContentions ? owner_tid : 0),
119 start_nano_time_(kLogLockContentions ? NanoTime() : 0) {
120 if (ATRACE_ENABLED()) {
121 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")",
122 mutex->GetName(), owner_tid);
123 ATRACE_BEGIN(msg.c_str());
124 }
125 }
126
127 ~ScopedContentionRecorder() {
128 ATRACE_END();
129 if (kLogLockContentions) {
130 uint64_t end_nano_time = NanoTime();
131 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
132 }
133 }
134
135 private:
136 BaseMutex* const mutex_;
137 const uint64_t blocked_tid_;
138 const uint64_t owner_tid_;
139 const uint64_t start_nano_time_;
140};
141
Ian Rogers56edc432013-01-18 16:51:51 -0800142BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700143 if (kLogLockContentions) {
144 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700145 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700146 if (*all_mutexes_ptr == NULL) {
147 // We leak the global set of all mutexes to avoid ordering issues in global variable
148 // construction/destruction.
149 *all_mutexes_ptr = new std::set<BaseMutex*>();
150 }
151 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800152 }
Ian Rogers56edc432013-01-18 16:51:51 -0800153}
154
155BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700156 if (kLogLockContentions) {
157 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700158 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700159 }
Ian Rogers56edc432013-01-18 16:51:51 -0800160}
161
162void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700163 if (kLogLockContentions) {
164 os << "Mutex logging:\n";
165 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700166 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700167 if (all_mutexes == NULL) {
168 // No mutexes have been created yet during at startup.
169 return;
170 }
171 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700172 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700173 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
174 BaseMutex* mutex = *it;
175 if (mutex->HasEverContended()) {
176 mutex->Dump(os);
177 os << "\n";
178 }
179 }
180 os << "(Never contented)\n";
181 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
182 BaseMutex* mutex = *it;
183 if (!mutex->HasEverContended()) {
184 mutex->Dump(os);
185 os << "\n";
186 }
187 }
Ian Rogers56edc432013-01-18 16:51:51 -0800188 }
Ian Rogers56edc432013-01-18 16:51:51 -0800189}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700190
Ian Rogers81d425b2012-09-27 16:03:43 -0700191void BaseMutex::CheckSafeToWait(Thread* self) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700192 if (self == NULL) {
193 CheckUnattachedThread(level_);
194 return;
195 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700196 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700197 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
198 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700199 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800200 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700201 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700202 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogersf3d874c2014-07-17 18:52:42 -0700203 // We expect waits to happen while holding the thread list suspend thread lock.
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800204 if (held_mutex != NULL) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800205 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
206 << "(level " << LockLevel(i) << ") while performing wait on "
207 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700208 bad_mutexes_held = true;
209 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700210 }
211 }
Nicolas Geoffraydb978712014-12-09 13:33:38 +0000212 if (gAborting == 0) { // Avoid recursive aborts.
213 CHECK(!bad_mutexes_held);
214 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700215 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700216}
217
Ian Rogers37f3c962014-07-17 11:25:30 -0700218void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700219 if (kLogLockContentions) {
220 // Atomically add value to wait_time.
Ian Rogers37f3c962014-07-17 11:25:30 -0700221 wait_time.FetchAndAddSequentiallyConsistent(value);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700222 }
223}
224
Brian Carlstrom0de79852013-07-25 22:29:58 -0700225void BaseMutex::RecordContention(uint64_t blocked_tid,
226 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700227 uint64_t nano_time_blocked) {
228 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700229 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700230 ++(data->contention_count);
231 data->AddToWaitTime(nano_time_blocked);
232 ContentionLogEntry* log = data->contention_log;
233 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700234 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700235 if (log[slot].blocked_tid == blocked_tid &&
236 log[slot].owner_tid == blocked_tid) {
237 ++log[slot].count;
238 } else {
239 uint32_t new_slot;
240 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700241 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700242 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700243 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700244 log[new_slot].blocked_tid = blocked_tid;
245 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700246 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700247 }
Ian Rogers56edc432013-01-18 16:51:51 -0800248 }
Ian Rogers56edc432013-01-18 16:51:51 -0800249}
250
Ian Rogers56edc432013-01-18 16:51:51 -0800251void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700252 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700253 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700254 const ContentionLogEntry* log = data->contention_log;
Ian Rogers37f3c962014-07-17 11:25:30 -0700255 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700256 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700257 if (contention_count == 0) {
258 os << "never contended";
259 } else {
260 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700261 << " total wait of contender " << PrettyDuration(wait_time)
262 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700263 SafeMap<uint64_t, size_t> most_common_blocker;
264 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700265 for (size_t i = 0; i < kContentionLogSize; ++i) {
266 uint64_t blocked_tid = log[i].blocked_tid;
267 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700268 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700269 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700270 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700271 if (it != most_common_blocked.end()) {
272 most_common_blocked.Overwrite(blocked_tid, it->second + count);
273 } else {
274 most_common_blocked.Put(blocked_tid, count);
275 }
276 it = most_common_blocker.find(owner_tid);
277 if (it != most_common_blocker.end()) {
278 most_common_blocker.Overwrite(owner_tid, it->second + count);
279 } else {
280 most_common_blocker.Put(owner_tid, count);
281 }
Ian Rogers56edc432013-01-18 16:51:51 -0800282 }
283 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700284 uint64_t max_tid = 0;
285 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700286 for (const auto& pair : most_common_blocked) {
287 if (pair.second > max_tid_count) {
288 max_tid = pair.first;
289 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700290 }
Ian Rogers56edc432013-01-18 16:51:51 -0800291 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700292 if (max_tid != 0) {
293 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800294 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700295 max_tid = 0;
296 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700297 for (const auto& pair : most_common_blocker) {
298 if (pair.second > max_tid_count) {
299 max_tid = pair.first;
300 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700301 }
302 }
303 if (max_tid != 0) {
304 os << " sample shows tid=" << max_tid << " owning during this time";
305 }
Ian Rogers56edc432013-01-18 16:51:51 -0800306 }
307 }
Ian Rogers56edc432013-01-18 16:51:51 -0800308}
309
310
Ian Rogers81d425b2012-09-27 16:03:43 -0700311Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700312 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700313#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700314 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700315 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700316#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700317 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700318#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700319 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700320}
321
322Mutex::~Mutex() {
Ian Rogersc604d732012-10-14 16:09:54 -0700323#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700324 if (state_.LoadRelaxed() != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700325 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700326 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700327 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
328 } else {
329 CHECK_EQ(exclusive_owner_, 0U) << "unexpectedly found an owner on unlocked mutex " << name_;
Ian Rogersc7190692014-07-08 23:50:26 -0700330 CHECK_EQ(num_contenders_.LoadSequentiallyConsistent(), 0)
Ian Rogers3e5cf302014-05-20 16:40:37 -0700331 << "unexpectedly found a contender on mutex " << name_;
Ian Rogersc604d732012-10-14 16:09:54 -0700332 }
333#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700334 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
335 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800336 int rc = pthread_mutex_destroy(&mutex_);
337 if (rc != 0) {
338 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800339 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700340 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700341 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800342 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughes6b355752012-01-13 16:49:08 -0800343 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
344 }
Ian Rogersc604d732012-10-14 16:09:54 -0700345#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700346}
347
Ian Rogers81d425b2012-09-27 16:03:43 -0700348void Mutex::ExclusiveLock(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();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700358 if (LIKELY(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 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700363 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800364 num_contenders_++;
Ian Rogersc7190692014-07-08 23:50:26 -0700365 if (futex(state_.Address(), FUTEX_WAIT, 1, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700366 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
367 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
368 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700369 PLOG(FATAL) << "futex wait failed for " << name_;
370 }
371 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800372 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700373 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700374 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700375 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700376#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700377 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700378#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700379 DCHECK_EQ(exclusive_owner_, 0U);
380 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700381 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700382 }
383 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700384 if (kDebugLocking) {
385 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
386 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700387 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700388 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700389}
390
Ian Rogers81d425b2012-09-27 16:03:43 -0700391bool Mutex::ExclusiveTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700392 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700393 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700394 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700395 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700396 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700397#if ART_USE_FUTEXES
398 bool done = false;
399 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700400 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700401 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700402 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
403 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700404 } else {
405 return false;
406 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700407 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700408 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700409#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700410 int result = pthread_mutex_trylock(&mutex_);
411 if (result == EBUSY) {
412 return false;
413 }
414 if (result != 0) {
415 errno = result;
416 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
417 }
Ian Rogersc604d732012-10-14 16:09:54 -0700418#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700419 DCHECK_EQ(exclusive_owner_, 0U);
420 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700421 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700422 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700423 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700424 if (kDebugLocking) {
425 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
426 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700427 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700428 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700429 return true;
430}
431
Ian Rogers81d425b2012-09-27 16:03:43 -0700432void Mutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700433 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700434 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700435 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700436 recursion_count_--;
437 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700438 if (kDebugLocking) {
439 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
440 << name_ << " " << recursion_count_;
441 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700442 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700443#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700444 bool done = false;
445 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700446 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700447 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700448 // We're no longer the owner.
449 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700450 // Change state to 0 and impose load/store ordering appropriate for lock release.
451 // Note, the relaxed loads below musn't reorder before the CompareExchange.
452 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
453 // a status bit into the state on contention.
454 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700455 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700456 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700457 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700458 futex(state_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700459 }
460 }
461 } else {
462 // Logging acquires the logging lock, avoid infinite recursion in that case.
463 if (this != Locks::logging_lock_) {
464 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
465 } else {
Ian Rogersc7dd2952014-10-21 23:31:19 -0700466 LogMessage::LogLine(__FILE__, __LINE__, INTERNAL_FATAL,
467 StringPrintf("Unexpected state_ %d in unlock for %s",
468 cur_state, name_).c_str());
Ian Rogersc5f17732014-06-05 20:48:42 -0700469 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700470 }
471 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700472 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700473#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700474 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700475 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700476#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700477 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700478}
479
Ian Rogers56edc432013-01-18 16:51:51 -0800480void Mutex::Dump(std::ostream& os) const {
481 os << (recursive_ ? "recursive " : "non-recursive ")
482 << name_
483 << " level=" << static_cast<int>(level_)
484 << " rec=" << recursion_count_
485 << " owner=" << GetExclusiveOwnerTid() << " ";
486 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700487}
488
489std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800490 mu.Dump(os);
491 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700492}
493
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700494ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
495 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700496#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700497 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700498#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700499{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700500#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700501 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700502#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700503 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700504}
505
506ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700507#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700508 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700509 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700510 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700511 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700512#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700513 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
514 // may still be using locks.
515 int rc = pthread_rwlock_destroy(&rwlock_);
516 if (rc != 0) {
517 errno = rc;
518 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700519 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700520 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800521 bool shutting_down = runtime == NULL || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700522 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800523 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700524#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700525}
526
Ian Rogers81d425b2012-09-27 16:03:43 -0700527void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700528 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700529 AssertNotExclusiveHeld(self);
530#if ART_USE_FUTEXES
531 bool done = false;
532 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700533 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700534 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700535 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
536 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700537 } else {
538 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700539 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700540 ++num_pending_writers_;
541 if (futex(state_.Address(), FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700542 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
543 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
544 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700545 PLOG(FATAL) << "futex wait failed for " << name_;
546 }
547 }
Ian Rogersc7190692014-07-08 23:50:26 -0700548 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700549 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700550 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700551 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700552#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700553 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700554#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700555 DCHECK_EQ(exclusive_owner_, 0U);
556 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700557 RegisterAsLocked(self);
558 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700559}
560
Ian Rogers81d425b2012-09-27 16:03:43 -0700561void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700562 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700563 AssertExclusiveHeld(self);
564 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700565 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700566#if ART_USE_FUTEXES
567 bool done = false;
568 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700569 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700570 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700571 // We're no longer the owner.
572 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700573 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
574 // Note, the relaxed loads below musn't reorder before the CompareExchange.
575 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
576 // a status bit into the state on contention.
577 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
578 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700579 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700580 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
581 num_pending_writers_.LoadRelaxed() > 0)) {
582 futex(state_.Address(), FUTEX_WAKE, -1, NULL, NULL, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700583 }
584 }
585 } else {
586 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
587 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700588 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700589#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700590 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700591 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700592#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700593}
594
Ian Rogers66aee5c2012-08-15 17:17:47 -0700595#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700596bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700597 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700598#if ART_USE_FUTEXES
599 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700600 timespec end_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800601 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700602 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700603 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700604 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700605 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
606 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700607 } else {
608 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700609 timespec now_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800610 InitTimeSpec(true, CLOCK_REALTIME, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700611 timespec rel_ts;
612 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
613 return false; // Timed out.
614 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700615 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700616 ++num_pending_writers_;
617 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, NULL, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700618 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700619 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700620 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700621 } else if ((errno != EAGAIN) && (errno != EINTR)) {
622 // EAGAIN and EINTR both indicate a spurious failure,
623 // recompute the relative time out from now and try again.
624 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700625 PLOG(FATAL) << "timed futex wait failed for " << name_;
626 }
627 }
Ian Rogersc7190692014-07-08 23:50:26 -0700628 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700629 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700630 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700631#else
Ian Rogersc604d732012-10-14 16:09:54 -0700632 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700633 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700634 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700635 if (result == ETIMEDOUT) {
636 return false;
637 }
638 if (result != 0) {
639 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700640 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700641 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700642#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700643 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700644 RegisterAsLocked(self);
645 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700646 return true;
647}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700648#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700649
Ian Rogers51d212e2014-10-23 17:48:20 -0700650#if ART_USE_FUTEXES
Ian Rogerscf7f1912014-10-22 22:06:39 -0700651void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) {
652 // Owner holds it exclusively, hang up.
653 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
654 ++num_pending_readers_;
655 if (futex(state_.Address(), FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
656 if (errno != EAGAIN) {
657 PLOG(FATAL) << "futex wait failed for " << name_;
658 }
659 }
660 --num_pending_readers_;
661}
Ian Rogers51d212e2014-10-23 17:48:20 -0700662#endif
Ian Rogerscf7f1912014-10-22 22:06:39 -0700663
Ian Rogers81d425b2012-09-27 16:03:43 -0700664bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700665 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700666#if ART_USE_FUTEXES
667 bool done = false;
668 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700669 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700670 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700671 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
672 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700673 } else {
674 // Owner holds it exclusively.
675 return false;
676 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700677 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700678#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700679 int result = pthread_rwlock_tryrdlock(&rwlock_);
680 if (result == EBUSY) {
681 return false;
682 }
683 if (result != 0) {
684 errno = result;
685 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
686 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700687#endif
688 RegisterAsLocked(self);
689 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700690 return true;
691}
692
Ian Rogers81d425b2012-09-27 16:03:43 -0700693bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Ian Rogers01ae5802012-09-28 16:14:01 -0700694 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700695 bool result;
696 if (UNLIKELY(self == NULL)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700697 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700698 } else {
699 result = (self->GetHeldMutex(level_) == this);
700 }
701 return result;
702}
703
Ian Rogers56edc432013-01-18 16:51:51 -0800704void ReaderWriterMutex::Dump(std::ostream& os) const {
705 os << name_
706 << " level=" << static_cast<int>(level_)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700707 << " owner=" << GetExclusiveOwnerTid()
708#if ART_USE_FUTEXES
709 << " state=" << state_.LoadSequentiallyConsistent()
710 << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent()
711 << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent()
712#endif
713 << " ";
Ian Rogers56edc432013-01-18 16:51:51 -0800714 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700715}
716
717std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800718 mu.Dump(os);
719 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700720}
721
Ian Rogers23055dc2013-04-18 16:29:16 -0700722ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700723 : name_(name), guard_(guard) {
724#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700725 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700726 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700727#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000728 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700729 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000730#if !defined(__APPLE__)
731 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
Ian Rogers51d212e2014-10-23 17:48:20 -0700732 CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC));
Narayan Kamath51b71022014-03-04 11:57:09 +0000733#endif
734 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700735#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700736}
737
738ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800739#if ART_USE_FUTEXES
740 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800741 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700742 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800743 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
744 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800745 }
746#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700747 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
748 // may still be using condition variables.
749 int rc = pthread_cond_destroy(&cond_);
750 if (rc != 0) {
751 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700752 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700753 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800754 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700755 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
756 }
Ian Rogersc604d732012-10-14 16:09:54 -0700757#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700758}
759
Ian Rogersc604d732012-10-14 16:09:54 -0700760void ConditionVariable::Broadcast(Thread* self) {
761 DCHECK(self == NULL || self == Thread::Current());
762 // TODO: enable below, there's a race in thread creation that causes false failures currently.
763 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700764 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700765#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800766 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800767 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700768 bool done = false;
769 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700770 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800771 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
772 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800773 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800774 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700775 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800776 if (!done) {
777 if (errno != EAGAIN) {
778 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
779 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800780 }
Ian Rogersc604d732012-10-14 16:09:54 -0700781 } while (!done);
782 }
783#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700784 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700785#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700786}
787
Ian Rogersc604d732012-10-14 16:09:54 -0700788void ConditionVariable::Signal(Thread* self) {
789 DCHECK(self == NULL || self == Thread::Current());
790 guard_.AssertExclusiveHeld(self);
791#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800792 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800793 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700794 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
795 // to avoid this, however, requeueing can only move all waiters.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800796 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800797 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800798 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700799 }
800#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700801 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700802#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700803}
804
Ian Rogersc604d732012-10-14 16:09:54 -0700805void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700806 guard_.CheckSafeToWait(self);
807 WaitHoldingLocks(self);
808}
809
810void ConditionVariable::WaitHoldingLocks(Thread* self) {
Ian Rogersc604d732012-10-14 16:09:54 -0700811 DCHECK(self == NULL || self == Thread::Current());
812 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700813 unsigned int old_recursion_count = guard_.recursion_count_;
814#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700815 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800816 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800817 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700818 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700819 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700820 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800821 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, NULL, NULL, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800822 // Futex failed, check it is an expected error.
823 // EAGAIN == EWOULDBLK, so we let the caller try again.
824 // EINTR implies a signal was sent to this thread.
825 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700826 PLOG(FATAL) << "futex wait failed for " << name_;
827 }
828 }
829 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800830 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700831 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800832 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700833 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800834 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700835#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700836 uint64_t old_owner = guard_.exclusive_owner_;
837 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700838 guard_.recursion_count_ = 0;
839 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700840 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700841#endif
842 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700843}
844
Ian Rogers7b078e82014-09-10 14:44:24 -0700845bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Ian Rogersc604d732012-10-14 16:09:54 -0700846 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700847 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700848 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700849 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700850 unsigned int old_recursion_count = guard_.recursion_count_;
851#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700852 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800853 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700854 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800855 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800856 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700857 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700858 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700859 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800860 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, NULL, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700861 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800862 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -0700863 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -0700864 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800865 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700866 } else {
867 PLOG(FATAL) << "timed futex wait failed for " << name_;
868 }
869 }
870 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800871 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700872 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800873 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700874 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800875 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700876#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000877#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700878 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700879#else
Ian Rogersc604d732012-10-14 16:09:54 -0700880 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700881#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700882 uint64_t old_owner = guard_.exclusive_owner_;
883 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700884 guard_.recursion_count_ = 0;
885 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700886 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000887 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -0700888 if (rc == ETIMEDOUT) {
889 timed_out = true;
890 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700891 errno = rc;
892 PLOG(FATAL) << "TimedWait failed for " << name_;
893 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700894 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700895#endif
896 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -0700897 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -0700898}
899
Ian Rogers719d1a32014-03-06 12:13:39 -0800900void Locks::Init() {
901 if (logging_lock_ != nullptr) {
902 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100903 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700904 DCHECK(modify_ldt_lock_ != nullptr);
905 } else {
906 DCHECK(modify_ldt_lock_ == nullptr);
907 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800908 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700909 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700910 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700911 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800912 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800913 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700914 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800915 DCHECK(heap_bitmap_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700916 DCHECK(intern_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -0700917 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800918 DCHECK(logging_lock_ != nullptr);
919 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700920 DCHECK(profiler_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800921 DCHECK(thread_list_lock_ != nullptr);
922 DCHECK(thread_suspend_count_lock_ != nullptr);
923 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800924 DCHECK(unexpected_signal_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800925 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700926 // Create global locks in level order from highest lock level to lowest.
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800927 LockLevel current_lock_level = kInstrumentEntrypointsLock;
928 DCHECK(instrument_entrypoints_lock_ == nullptr);
929 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800930
Chao-ying Fu9e369312014-05-21 11:20:52 -0700931 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Brian Carlstrom306db812014-09-05 13:01:41 -0700932 if (new_level >= current_lock_level) { \
933 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
934 fprintf(stderr, "New local level %d is not less than current level %d\n", \
935 new_level, current_lock_level); \
936 exit(1); \
937 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -0700938 current_lock_level = new_level;
939
940 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
941 DCHECK(mutator_lock_ == nullptr);
942 mutator_lock_ = new ReaderWriterMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700943
944 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
945 DCHECK(heap_bitmap_lock_ == nullptr);
946 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
947
Jeff Hao69dbec62014-09-15 18:03:41 -0700948 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
949 DCHECK(trace_lock_ == nullptr);
950 trace_lock_ = new Mutex("trace lock", current_lock_level);
951
Chao-ying Fu9e369312014-05-21 11:20:52 -0700952 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
953 DCHECK(runtime_shutdown_lock_ == nullptr);
954 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
955
956 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
957 DCHECK(profiler_lock_ == nullptr);
958 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
959
Brian Carlstrom306db812014-09-05 13:01:41 -0700960 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
961 DCHECK(deoptimization_lock_ == nullptr);
962 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
963
964 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
965 DCHECK(alloc_tracker_lock_ == nullptr);
966 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
967
Chao-ying Fu9e369312014-05-21 11:20:52 -0700968 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
969 DCHECK(thread_list_lock_ == nullptr);
970 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
971
Ian Rogers68d8b422014-07-17 11:09:10 -0700972 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
973 DCHECK(jni_libraries_lock_ == nullptr);
974 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
975
Chao-ying Fu9e369312014-05-21 11:20:52 -0700976 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800977 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +0200978 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700979
980 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800981 DCHECK(classlinker_classes_lock_ == nullptr);
982 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -0700983 current_lock_level);
984
Andreas Gampe74240812014-04-17 10:35:09 -0700985 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
986 DCHECK(allocated_monitor_ids_lock_ == nullptr);
987 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
988
Chao-ying Fu9e369312014-05-21 11:20:52 -0700989 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
990 DCHECK(allocated_thread_ids_lock_ == nullptr);
991 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
992
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100993 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700994 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
995 DCHECK(modify_ldt_lock_ == nullptr);
996 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
997 }
998
999 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001000 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001001 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1002
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001003 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1004 DCHECK(reference_processor_lock_ == nullptr);
1005 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1006
1007 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1008 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1009 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1010
1011 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1012 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1013 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1014
1015 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1016 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1017 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1018
1019 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1020 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1021 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1022
1023 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1024 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1025 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1026
Chao-ying Fu9e369312014-05-21 11:20:52 -07001027 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1028 DCHECK(abort_lock_ == nullptr);
1029 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1030
1031 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1032 DCHECK(thread_suspend_count_lock_ == nullptr);
1033 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1034
1035 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1036 DCHECK(unexpected_signal_lock_ == nullptr);
1037 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1038
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -07001039 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
1040 DCHECK(mem_maps_lock_ == nullptr);
1041 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
1042
Chao-ying Fu9e369312014-05-21 11:20:52 -07001043 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1044 DCHECK(logging_lock_ == nullptr);
1045 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1046
1047 #undef UPDATE_CURRENT_LOCK_LEVEL
Ian Rogers719d1a32014-03-06 12:13:39 -08001048 }
1049}
1050
1051
Elliott Hughese62934d2012-04-09 11:24:29 -07001052} // namespace art