blob: da78082f85fc2cd767cf07965a71717776c24d5c [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_;
Mathieu Chartiercef50f02014-12-09 17:38:52 -0800330 if (level_ != kMonitorLock) {
331 // Only check the lock level for non monitor locks since we may still have java threads
332 // waiting on monitors.
333 CHECK_EQ(num_contenders_.LoadSequentiallyConsistent(), 0)
334 << "unexpectedly found a contender on mutex " << name_;
335 }
Ian Rogersc604d732012-10-14 16:09:54 -0700336 }
337#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700338 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
339 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800340 int rc = pthread_mutex_destroy(&mutex_);
341 if (rc != 0) {
342 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800343 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700344 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700345 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800346 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughes6b355752012-01-13 16:49:08 -0800347 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
348 }
Ian Rogersc604d732012-10-14 16:09:54 -0700349#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700350}
351
Ian Rogers81d425b2012-09-27 16:03:43 -0700352void Mutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700353 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700354 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700355 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700356 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700357 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700358#if ART_USE_FUTEXES
359 bool done = false;
360 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700361 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700362 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700363 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
364 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700365 } else {
366 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700367 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800368 num_contenders_++;
Ian Rogersc7190692014-07-08 23:50:26 -0700369 if (futex(state_.Address(), FUTEX_WAIT, 1, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700370 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
371 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
372 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700373 PLOG(FATAL) << "futex wait failed for " << name_;
374 }
375 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800376 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700377 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700378 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700379 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700380#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700381 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700382#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700383 DCHECK_EQ(exclusive_owner_, 0U);
384 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700385 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700386 }
387 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700388 if (kDebugLocking) {
389 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
390 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700391 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700392 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700393}
394
Ian Rogers81d425b2012-09-27 16:03:43 -0700395bool Mutex::ExclusiveTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700396 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700397 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700398 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700399 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700400 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700401#if ART_USE_FUTEXES
402 bool done = false;
403 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700404 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700405 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700406 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
407 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700408 } else {
409 return false;
410 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700411 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700412 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700413#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700414 int result = pthread_mutex_trylock(&mutex_);
415 if (result == EBUSY) {
416 return false;
417 }
418 if (result != 0) {
419 errno = result;
420 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
421 }
Ian Rogersc604d732012-10-14 16:09:54 -0700422#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700423 DCHECK_EQ(exclusive_owner_, 0U);
424 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700425 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700426 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700427 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700428 if (kDebugLocking) {
429 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
430 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700431 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700432 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700433 return true;
434}
435
Ian Rogers81d425b2012-09-27 16:03:43 -0700436void Mutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700437 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700438 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700439 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700440 recursion_count_--;
441 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700442 if (kDebugLocking) {
443 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
444 << name_ << " " << recursion_count_;
445 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700446 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700447#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700448 bool done = false;
449 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700450 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700451 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700452 // We're no longer the owner.
453 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700454 // Change state to 0 and impose load/store ordering appropriate for lock release.
455 // Note, the relaxed loads below musn't reorder before the CompareExchange.
456 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
457 // a status bit into the state on contention.
458 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700459 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700460 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700461 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700462 futex(state_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700463 }
464 }
465 } else {
466 // Logging acquires the logging lock, avoid infinite recursion in that case.
467 if (this != Locks::logging_lock_) {
468 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
469 } else {
Ian Rogersc7dd2952014-10-21 23:31:19 -0700470 LogMessage::LogLine(__FILE__, __LINE__, INTERNAL_FATAL,
471 StringPrintf("Unexpected state_ %d in unlock for %s",
472 cur_state, name_).c_str());
Ian Rogersc5f17732014-06-05 20:48:42 -0700473 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700474 }
475 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700476 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700477#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700478 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700479 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700480#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700481 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700482}
483
Ian Rogers56edc432013-01-18 16:51:51 -0800484void Mutex::Dump(std::ostream& os) const {
485 os << (recursive_ ? "recursive " : "non-recursive ")
486 << name_
487 << " level=" << static_cast<int>(level_)
488 << " rec=" << recursion_count_
489 << " owner=" << GetExclusiveOwnerTid() << " ";
490 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700491}
492
493std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800494 mu.Dump(os);
495 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700496}
497
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700498ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
499 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700500#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700501 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700502#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700503{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700504#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700505 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700506#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700507 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700508}
509
510ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700511#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700512 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700513 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700514 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700515 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700516#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700517 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
518 // may still be using locks.
519 int rc = pthread_rwlock_destroy(&rwlock_);
520 if (rc != 0) {
521 errno = rc;
522 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700523 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700524 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800525 bool shutting_down = runtime == NULL || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700526 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800527 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700528#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700529}
530
Ian Rogers81d425b2012-09-27 16:03:43 -0700531void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700532 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700533 AssertNotExclusiveHeld(self);
534#if ART_USE_FUTEXES
535 bool done = false;
536 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700537 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700538 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700539 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
540 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700541 } else {
542 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700543 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700544 ++num_pending_writers_;
545 if (futex(state_.Address(), FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700546 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
547 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
548 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700549 PLOG(FATAL) << "futex wait failed for " << name_;
550 }
551 }
Ian Rogersc7190692014-07-08 23:50:26 -0700552 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700553 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700554 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700555 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700556#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700557 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700558#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700559 DCHECK_EQ(exclusive_owner_, 0U);
560 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700561 RegisterAsLocked(self);
562 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700563}
564
Ian Rogers81d425b2012-09-27 16:03:43 -0700565void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700566 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700567 AssertExclusiveHeld(self);
568 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700569 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700570#if ART_USE_FUTEXES
571 bool done = false;
572 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700573 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700574 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700575 // We're no longer the owner.
576 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700577 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
578 // Note, the relaxed loads below musn't reorder before the CompareExchange.
579 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
580 // a status bit into the state on contention.
581 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
582 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700583 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700584 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
585 num_pending_writers_.LoadRelaxed() > 0)) {
586 futex(state_.Address(), FUTEX_WAKE, -1, NULL, NULL, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700587 }
588 }
589 } else {
590 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
591 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700592 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700593#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700594 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700595 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700596#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700597}
598
Ian Rogers66aee5c2012-08-15 17:17:47 -0700599#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700600bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700601 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700602#if ART_USE_FUTEXES
603 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700604 timespec end_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800605 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700606 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700607 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700608 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700609 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
610 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700611 } else {
612 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700613 timespec now_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800614 InitTimeSpec(true, CLOCK_REALTIME, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700615 timespec rel_ts;
616 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
617 return false; // Timed out.
618 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700619 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700620 ++num_pending_writers_;
621 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, NULL, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700622 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700623 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700624 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700625 } else if ((errno != EAGAIN) && (errno != EINTR)) {
626 // EAGAIN and EINTR both indicate a spurious failure,
627 // recompute the relative time out from now and try again.
628 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700629 PLOG(FATAL) << "timed futex wait failed for " << name_;
630 }
631 }
Ian Rogersc7190692014-07-08 23:50:26 -0700632 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700633 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700634 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700635#else
Ian Rogersc604d732012-10-14 16:09:54 -0700636 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700637 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700638 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700639 if (result == ETIMEDOUT) {
640 return false;
641 }
642 if (result != 0) {
643 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700644 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700645 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700646#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700647 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700648 RegisterAsLocked(self);
649 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700650 return true;
651}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700652#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700653
Ian Rogers51d212e2014-10-23 17:48:20 -0700654#if ART_USE_FUTEXES
Ian Rogerscf7f1912014-10-22 22:06:39 -0700655void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) {
656 // Owner holds it exclusively, hang up.
657 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
658 ++num_pending_readers_;
659 if (futex(state_.Address(), FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
660 if (errno != EAGAIN) {
661 PLOG(FATAL) << "futex wait failed for " << name_;
662 }
663 }
664 --num_pending_readers_;
665}
Ian Rogers51d212e2014-10-23 17:48:20 -0700666#endif
Ian Rogerscf7f1912014-10-22 22:06:39 -0700667
Ian Rogers81d425b2012-09-27 16:03:43 -0700668bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700669 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700670#if ART_USE_FUTEXES
671 bool done = false;
672 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700673 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700674 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700675 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
676 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700677 } else {
678 // Owner holds it exclusively.
679 return false;
680 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700681 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700682#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700683 int result = pthread_rwlock_tryrdlock(&rwlock_);
684 if (result == EBUSY) {
685 return false;
686 }
687 if (result != 0) {
688 errno = result;
689 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
690 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700691#endif
692 RegisterAsLocked(self);
693 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700694 return true;
695}
696
Ian Rogers81d425b2012-09-27 16:03:43 -0700697bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Ian Rogers01ae5802012-09-28 16:14:01 -0700698 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700699 bool result;
700 if (UNLIKELY(self == NULL)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700701 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700702 } else {
703 result = (self->GetHeldMutex(level_) == this);
704 }
705 return result;
706}
707
Ian Rogers56edc432013-01-18 16:51:51 -0800708void ReaderWriterMutex::Dump(std::ostream& os) const {
709 os << name_
710 << " level=" << static_cast<int>(level_)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700711 << " owner=" << GetExclusiveOwnerTid()
712#if ART_USE_FUTEXES
713 << " state=" << state_.LoadSequentiallyConsistent()
714 << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent()
715 << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent()
716#endif
717 << " ";
Ian Rogers56edc432013-01-18 16:51:51 -0800718 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700719}
720
721std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800722 mu.Dump(os);
723 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700724}
725
Ian Rogers23055dc2013-04-18 16:29:16 -0700726ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700727 : name_(name), guard_(guard) {
728#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700729 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700730 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700731#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000732 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700733 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000734#if !defined(__APPLE__)
735 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
Ian Rogers51d212e2014-10-23 17:48:20 -0700736 CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC));
Narayan Kamath51b71022014-03-04 11:57:09 +0000737#endif
738 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700739#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700740}
741
742ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800743#if ART_USE_FUTEXES
744 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800745 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700746 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800747 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
748 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800749 }
750#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700751 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
752 // may still be using condition variables.
753 int rc = pthread_cond_destroy(&cond_);
754 if (rc != 0) {
755 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700756 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700757 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800758 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700759 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
760 }
Ian Rogersc604d732012-10-14 16:09:54 -0700761#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700762}
763
Ian Rogersc604d732012-10-14 16:09:54 -0700764void ConditionVariable::Broadcast(Thread* self) {
765 DCHECK(self == NULL || self == Thread::Current());
766 // TODO: enable below, there's a race in thread creation that causes false failures currently.
767 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700768 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700769#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800770 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800771 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700772 bool done = false;
773 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700774 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800775 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
776 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800777 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800778 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700779 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800780 if (!done) {
781 if (errno != EAGAIN) {
782 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
783 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800784 }
Ian Rogersc604d732012-10-14 16:09:54 -0700785 } while (!done);
786 }
787#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700788 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700789#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700790}
791
Ian Rogersc604d732012-10-14 16:09:54 -0700792void ConditionVariable::Signal(Thread* self) {
793 DCHECK(self == NULL || self == Thread::Current());
794 guard_.AssertExclusiveHeld(self);
795#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800796 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800797 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700798 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
799 // to avoid this, however, requeueing can only move all waiters.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800800 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800801 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800802 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700803 }
804#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700805 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700806#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700807}
808
Ian Rogersc604d732012-10-14 16:09:54 -0700809void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700810 guard_.CheckSafeToWait(self);
811 WaitHoldingLocks(self);
812}
813
814void ConditionVariable::WaitHoldingLocks(Thread* self) {
Ian Rogersc604d732012-10-14 16:09:54 -0700815 DCHECK(self == NULL || self == Thread::Current());
816 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700817 unsigned int old_recursion_count = guard_.recursion_count_;
818#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700819 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800820 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800821 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700822 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700823 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700824 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800825 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, NULL, NULL, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800826 // Futex failed, check it is an expected error.
827 // EAGAIN == EWOULDBLK, so we let the caller try again.
828 // EINTR implies a signal was sent to this thread.
829 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700830 PLOG(FATAL) << "futex wait failed for " << name_;
831 }
832 }
833 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800834 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700835 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800836 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700837 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800838 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700839#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700840 uint64_t old_owner = guard_.exclusive_owner_;
841 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700842 guard_.recursion_count_ = 0;
843 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700844 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700845#endif
846 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700847}
848
Ian Rogers7b078e82014-09-10 14:44:24 -0700849bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Ian Rogersc604d732012-10-14 16:09:54 -0700850 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700851 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700852 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700853 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700854 unsigned int old_recursion_count = guard_.recursion_count_;
855#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700856 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800857 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700858 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800859 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800860 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700861 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700862 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700863 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800864 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, NULL, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700865 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800866 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -0700867 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -0700868 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800869 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700870 } else {
871 PLOG(FATAL) << "timed futex wait failed for " << name_;
872 }
873 }
874 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800875 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700876 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800877 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700878 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800879 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700880#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000881#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700882 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700883#else
Ian Rogersc604d732012-10-14 16:09:54 -0700884 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700885#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700886 uint64_t old_owner = guard_.exclusive_owner_;
887 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700888 guard_.recursion_count_ = 0;
889 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700890 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000891 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -0700892 if (rc == ETIMEDOUT) {
893 timed_out = true;
894 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700895 errno = rc;
896 PLOG(FATAL) << "TimedWait failed for " << name_;
897 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700898 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700899#endif
900 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -0700901 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -0700902}
903
Ian Rogers719d1a32014-03-06 12:13:39 -0800904void Locks::Init() {
905 if (logging_lock_ != nullptr) {
906 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100907 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700908 DCHECK(modify_ldt_lock_ != nullptr);
909 } else {
910 DCHECK(modify_ldt_lock_ == nullptr);
911 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800912 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700913 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700914 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700915 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800916 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800917 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700918 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800919 DCHECK(heap_bitmap_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700920 DCHECK(intern_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -0700921 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800922 DCHECK(logging_lock_ != nullptr);
923 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700924 DCHECK(profiler_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800925 DCHECK(thread_list_lock_ != nullptr);
926 DCHECK(thread_suspend_count_lock_ != nullptr);
927 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800928 DCHECK(unexpected_signal_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800929 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700930 // Create global locks in level order from highest lock level to lowest.
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800931 LockLevel current_lock_level = kInstrumentEntrypointsLock;
932 DCHECK(instrument_entrypoints_lock_ == nullptr);
933 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800934
Chao-ying Fu9e369312014-05-21 11:20:52 -0700935 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Brian Carlstrom306db812014-09-05 13:01:41 -0700936 if (new_level >= current_lock_level) { \
937 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
938 fprintf(stderr, "New local level %d is not less than current level %d\n", \
939 new_level, current_lock_level); \
940 exit(1); \
941 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -0700942 current_lock_level = new_level;
943
944 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
945 DCHECK(mutator_lock_ == nullptr);
946 mutator_lock_ = new ReaderWriterMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700947
948 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
949 DCHECK(heap_bitmap_lock_ == nullptr);
950 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
951
Jeff Hao69dbec62014-09-15 18:03:41 -0700952 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
953 DCHECK(trace_lock_ == nullptr);
954 trace_lock_ = new Mutex("trace lock", current_lock_level);
955
Chao-ying Fu9e369312014-05-21 11:20:52 -0700956 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
957 DCHECK(runtime_shutdown_lock_ == nullptr);
958 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
959
960 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
961 DCHECK(profiler_lock_ == nullptr);
962 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
963
Brian Carlstrom306db812014-09-05 13:01:41 -0700964 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
965 DCHECK(deoptimization_lock_ == nullptr);
966 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
967
968 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
969 DCHECK(alloc_tracker_lock_ == nullptr);
970 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
971
Chao-ying Fu9e369312014-05-21 11:20:52 -0700972 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
973 DCHECK(thread_list_lock_ == nullptr);
974 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
975
Ian Rogers68d8b422014-07-17 11:09:10 -0700976 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
977 DCHECK(jni_libraries_lock_ == nullptr);
978 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
979
Chao-ying Fu9e369312014-05-21 11:20:52 -0700980 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800981 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +0200982 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700983
984 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800985 DCHECK(classlinker_classes_lock_ == nullptr);
986 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -0700987 current_lock_level);
988
Andreas Gampe74240812014-04-17 10:35:09 -0700989 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
990 DCHECK(allocated_monitor_ids_lock_ == nullptr);
991 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
992
Chao-ying Fu9e369312014-05-21 11:20:52 -0700993 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
994 DCHECK(allocated_thread_ids_lock_ == nullptr);
995 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
996
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100997 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700998 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
999 DCHECK(modify_ldt_lock_ == nullptr);
1000 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
1001 }
1002
1003 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001004 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001005 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1006
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001007 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1008 DCHECK(reference_processor_lock_ == nullptr);
1009 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1010
1011 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1012 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1013 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1014
1015 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1016 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1017 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1018
1019 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1020 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1021 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1022
1023 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1024 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1025 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1026
1027 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1028 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1029 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1030
Chao-ying Fu9e369312014-05-21 11:20:52 -07001031 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1032 DCHECK(abort_lock_ == nullptr);
1033 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1034
1035 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1036 DCHECK(thread_suspend_count_lock_ == nullptr);
1037 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1038
1039 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1040 DCHECK(unexpected_signal_lock_ == nullptr);
1041 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1042
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -07001043 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
1044 DCHECK(mem_maps_lock_ == nullptr);
1045 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
1046
Chao-ying Fu9e369312014-05-21 11:20:52 -07001047 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1048 DCHECK(logging_lock_ == nullptr);
1049 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1050
1051 #undef UPDATE_CURRENT_LOCK_LEVEL
Ian Rogers719d1a32014-03-06 12:13:39 -08001052 }
1053}
1054
1055
Elliott Hughese62934d2012-04-09 11:24:29 -07001056} // namespace art