blob: a4eb318d4c8e247251c19e3fe8fdad7fad1e9031 [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) {
Mathieu Chartiereb0a1792014-12-15 17:23:45 -0800437 if (kIsDebugBuild && self != nullptr && self != Thread::Current()) {
438 std::string name1 = "<null>";
439 std::string name2 = "<null>";
440 if (self != nullptr) {
441 self->GetThreadName(name1);
442 }
443 if (Thread::Current() != nullptr) {
444 Thread::Current()->GetThreadName(name2);
445 }
446 LOG(FATAL) << name1 << " " << name2;
447 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700448 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700449 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700450 recursion_count_--;
451 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700452 if (kDebugLocking) {
453 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
454 << name_ << " " << recursion_count_;
455 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700456 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700457#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700458 bool done = false;
459 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700460 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700461 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700462 // We're no longer the owner.
463 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700464 // Change state to 0 and impose load/store ordering appropriate for lock release.
465 // Note, the relaxed loads below musn't reorder before the CompareExchange.
466 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
467 // a status bit into the state on contention.
468 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700469 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700470 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700471 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700472 futex(state_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700473 }
474 }
475 } else {
476 // Logging acquires the logging lock, avoid infinite recursion in that case.
477 if (this != Locks::logging_lock_) {
478 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
479 } else {
Ian Rogersc7dd2952014-10-21 23:31:19 -0700480 LogMessage::LogLine(__FILE__, __LINE__, INTERNAL_FATAL,
481 StringPrintf("Unexpected state_ %d in unlock for %s",
482 cur_state, name_).c_str());
Ian Rogersc5f17732014-06-05 20:48:42 -0700483 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700484 }
485 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700486 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700487#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700488 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700489 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700490#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700491 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700492}
493
Ian Rogers56edc432013-01-18 16:51:51 -0800494void Mutex::Dump(std::ostream& os) const {
495 os << (recursive_ ? "recursive " : "non-recursive ")
496 << name_
497 << " level=" << static_cast<int>(level_)
498 << " rec=" << recursion_count_
499 << " owner=" << GetExclusiveOwnerTid() << " ";
500 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700501}
502
503std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800504 mu.Dump(os);
505 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700506}
507
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700508ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
509 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700510#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700511 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700512#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700513{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700514#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700515 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700516#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700517 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700518}
519
520ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700521#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700522 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700523 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700524 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700525 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700526#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700527 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
528 // may still be using locks.
529 int rc = pthread_rwlock_destroy(&rwlock_);
530 if (rc != 0) {
531 errno = rc;
532 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700533 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700534 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800535 bool shutting_down = runtime == NULL || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700536 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800537 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700538#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700539}
540
Ian Rogers81d425b2012-09-27 16:03:43 -0700541void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700542 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700543 AssertNotExclusiveHeld(self);
544#if ART_USE_FUTEXES
545 bool done = false;
546 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700547 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700548 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700549 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
550 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700551 } else {
552 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700553 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700554 ++num_pending_writers_;
555 if (futex(state_.Address(), FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700556 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
557 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
558 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700559 PLOG(FATAL) << "futex wait failed for " << name_;
560 }
561 }
Ian Rogersc7190692014-07-08 23:50:26 -0700562 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700563 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700564 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700565 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700566#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700567 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700568#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700569 DCHECK_EQ(exclusive_owner_, 0U);
570 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700571 RegisterAsLocked(self);
572 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700573}
574
Ian Rogers81d425b2012-09-27 16:03:43 -0700575void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700576 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700577 AssertExclusiveHeld(self);
578 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700579 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700580#if ART_USE_FUTEXES
581 bool done = false;
582 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700583 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700584 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700585 // We're no longer the owner.
586 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700587 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
588 // Note, the relaxed loads below musn't reorder before the CompareExchange.
589 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
590 // a status bit into the state on contention.
591 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
592 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700593 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700594 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
595 num_pending_writers_.LoadRelaxed() > 0)) {
596 futex(state_.Address(), FUTEX_WAKE, -1, NULL, NULL, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700597 }
598 }
599 } else {
600 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
601 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700602 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700603#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700604 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700605 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700606#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700607}
608
Ian Rogers66aee5c2012-08-15 17:17:47 -0700609#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700610bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700611 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700612#if ART_USE_FUTEXES
613 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700614 timespec end_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800615 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700616 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700617 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700618 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700619 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
620 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700621 } else {
622 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700623 timespec now_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800624 InitTimeSpec(true, CLOCK_REALTIME, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700625 timespec rel_ts;
626 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
627 return false; // Timed out.
628 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700629 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700630 ++num_pending_writers_;
631 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, NULL, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700632 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700633 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700634 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700635 } else if ((errno != EAGAIN) && (errno != EINTR)) {
636 // EAGAIN and EINTR both indicate a spurious failure,
637 // recompute the relative time out from now and try again.
638 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700639 PLOG(FATAL) << "timed futex wait failed for " << name_;
640 }
641 }
Ian Rogersc7190692014-07-08 23:50:26 -0700642 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700643 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700644 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700645#else
Ian Rogersc604d732012-10-14 16:09:54 -0700646 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700647 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700648 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700649 if (result == ETIMEDOUT) {
650 return false;
651 }
652 if (result != 0) {
653 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700654 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700655 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700656#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700657 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700658 RegisterAsLocked(self);
659 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700660 return true;
661}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700662#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700663
Ian Rogers51d212e2014-10-23 17:48:20 -0700664#if ART_USE_FUTEXES
Ian Rogerscf7f1912014-10-22 22:06:39 -0700665void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) {
666 // Owner holds it exclusively, hang up.
667 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
668 ++num_pending_readers_;
669 if (futex(state_.Address(), FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
670 if (errno != EAGAIN) {
671 PLOG(FATAL) << "futex wait failed for " << name_;
672 }
673 }
674 --num_pending_readers_;
675}
Ian Rogers51d212e2014-10-23 17:48:20 -0700676#endif
Ian Rogerscf7f1912014-10-22 22:06:39 -0700677
Ian Rogers81d425b2012-09-27 16:03:43 -0700678bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700679 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700680#if ART_USE_FUTEXES
681 bool done = false;
682 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700683 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700684 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700685 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
686 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700687 } else {
688 // Owner holds it exclusively.
689 return false;
690 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700691 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700692#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700693 int result = pthread_rwlock_tryrdlock(&rwlock_);
694 if (result == EBUSY) {
695 return false;
696 }
697 if (result != 0) {
698 errno = result;
699 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
700 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700701#endif
702 RegisterAsLocked(self);
703 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700704 return true;
705}
706
Ian Rogers81d425b2012-09-27 16:03:43 -0700707bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Ian Rogers01ae5802012-09-28 16:14:01 -0700708 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700709 bool result;
710 if (UNLIKELY(self == NULL)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700711 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700712 } else {
713 result = (self->GetHeldMutex(level_) == this);
714 }
715 return result;
716}
717
Ian Rogers56edc432013-01-18 16:51:51 -0800718void ReaderWriterMutex::Dump(std::ostream& os) const {
719 os << name_
720 << " level=" << static_cast<int>(level_)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700721 << " owner=" << GetExclusiveOwnerTid()
722#if ART_USE_FUTEXES
723 << " state=" << state_.LoadSequentiallyConsistent()
724 << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent()
725 << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent()
726#endif
727 << " ";
Ian Rogers56edc432013-01-18 16:51:51 -0800728 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700729}
730
731std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800732 mu.Dump(os);
733 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700734}
735
Ian Rogers23055dc2013-04-18 16:29:16 -0700736ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700737 : name_(name), guard_(guard) {
738#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700739 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700740 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700741#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000742 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700743 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000744#if !defined(__APPLE__)
745 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
Ian Rogers51d212e2014-10-23 17:48:20 -0700746 CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC));
Narayan Kamath51b71022014-03-04 11:57:09 +0000747#endif
748 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700749#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700750}
751
752ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800753#if ART_USE_FUTEXES
754 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800755 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700756 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800757 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
758 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800759 }
760#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700761 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
762 // may still be using condition variables.
763 int rc = pthread_cond_destroy(&cond_);
764 if (rc != 0) {
765 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700766 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700767 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800768 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700769 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
770 }
Ian Rogersc604d732012-10-14 16:09:54 -0700771#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700772}
773
Ian Rogersc604d732012-10-14 16:09:54 -0700774void ConditionVariable::Broadcast(Thread* self) {
775 DCHECK(self == NULL || self == Thread::Current());
776 // TODO: enable below, there's a race in thread creation that causes false failures currently.
777 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700778 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700779#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800780 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800781 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700782 bool done = false;
783 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700784 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800785 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
786 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800787 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800788 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700789 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800790 if (!done) {
791 if (errno != EAGAIN) {
792 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
793 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800794 }
Ian Rogersc604d732012-10-14 16:09:54 -0700795 } while (!done);
796 }
797#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700798 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700799#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700800}
801
Ian Rogersc604d732012-10-14 16:09:54 -0700802void ConditionVariable::Signal(Thread* self) {
803 DCHECK(self == NULL || self == Thread::Current());
804 guard_.AssertExclusiveHeld(self);
805#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800806 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800807 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700808 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
809 // to avoid this, however, requeueing can only move all waiters.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800810 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800811 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800812 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700813 }
814#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700815 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700816#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700817}
818
Ian Rogersc604d732012-10-14 16:09:54 -0700819void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700820 guard_.CheckSafeToWait(self);
821 WaitHoldingLocks(self);
822}
823
824void ConditionVariable::WaitHoldingLocks(Thread* self) {
Ian Rogersc604d732012-10-14 16:09:54 -0700825 DCHECK(self == NULL || self == Thread::Current());
826 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700827 unsigned int old_recursion_count = guard_.recursion_count_;
828#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700829 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800830 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800831 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700832 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700833 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700834 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800835 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, NULL, NULL, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800836 // Futex failed, check it is an expected error.
837 // EAGAIN == EWOULDBLK, so we let the caller try again.
838 // EINTR implies a signal was sent to this thread.
839 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700840 PLOG(FATAL) << "futex wait failed for " << name_;
841 }
842 }
843 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800844 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700845 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800846 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700847 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800848 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700849#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700850 uint64_t old_owner = guard_.exclusive_owner_;
851 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700852 guard_.recursion_count_ = 0;
853 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700854 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700855#endif
856 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700857}
858
Ian Rogers7b078e82014-09-10 14:44:24 -0700859bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Ian Rogersc604d732012-10-14 16:09:54 -0700860 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700861 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700862 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700863 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700864 unsigned int old_recursion_count = guard_.recursion_count_;
865#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700866 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800867 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700868 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800869 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800870 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700871 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700872 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700873 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800874 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, NULL, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700875 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800876 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -0700877 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -0700878 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800879 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700880 } else {
881 PLOG(FATAL) << "timed futex wait failed for " << name_;
882 }
883 }
884 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800885 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700886 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800887 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700888 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800889 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700890#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000891#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700892 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700893#else
Ian Rogersc604d732012-10-14 16:09:54 -0700894 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700895#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700896 uint64_t old_owner = guard_.exclusive_owner_;
897 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700898 guard_.recursion_count_ = 0;
899 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700900 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000901 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -0700902 if (rc == ETIMEDOUT) {
903 timed_out = true;
904 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700905 errno = rc;
906 PLOG(FATAL) << "TimedWait failed for " << name_;
907 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700908 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700909#endif
910 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -0700911 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -0700912}
913
Ian Rogers719d1a32014-03-06 12:13:39 -0800914void Locks::Init() {
915 if (logging_lock_ != nullptr) {
916 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100917 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700918 DCHECK(modify_ldt_lock_ != nullptr);
919 } else {
920 DCHECK(modify_ldt_lock_ == nullptr);
921 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800922 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700923 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700924 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700925 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800926 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800927 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700928 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800929 DCHECK(heap_bitmap_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700930 DCHECK(intern_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -0700931 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800932 DCHECK(logging_lock_ != nullptr);
933 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700934 DCHECK(profiler_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800935 DCHECK(thread_list_lock_ != nullptr);
936 DCHECK(thread_suspend_count_lock_ != nullptr);
937 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800938 DCHECK(unexpected_signal_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800939 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700940 // Create global locks in level order from highest lock level to lowest.
Ian Rogers4ad5cd32014-11-11 23:08:07 -0800941 LockLevel current_lock_level = kInstrumentEntrypointsLock;
942 DCHECK(instrument_entrypoints_lock_ == nullptr);
943 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800944
Chao-ying Fu9e369312014-05-21 11:20:52 -0700945 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Brian Carlstrom306db812014-09-05 13:01:41 -0700946 if (new_level >= current_lock_level) { \
947 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
948 fprintf(stderr, "New local level %d is not less than current level %d\n", \
949 new_level, current_lock_level); \
950 exit(1); \
951 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -0700952 current_lock_level = new_level;
953
954 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
955 DCHECK(mutator_lock_ == nullptr);
956 mutator_lock_ = new ReaderWriterMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700957
958 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
959 DCHECK(heap_bitmap_lock_ == nullptr);
960 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
961
Jeff Hao69dbec62014-09-15 18:03:41 -0700962 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
963 DCHECK(trace_lock_ == nullptr);
964 trace_lock_ = new Mutex("trace lock", current_lock_level);
965
Chao-ying Fu9e369312014-05-21 11:20:52 -0700966 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
967 DCHECK(runtime_shutdown_lock_ == nullptr);
968 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
969
970 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
971 DCHECK(profiler_lock_ == nullptr);
972 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
973
Brian Carlstrom306db812014-09-05 13:01:41 -0700974 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
975 DCHECK(deoptimization_lock_ == nullptr);
976 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
977
978 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
979 DCHECK(alloc_tracker_lock_ == nullptr);
980 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
981
Chao-ying Fu9e369312014-05-21 11:20:52 -0700982 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
983 DCHECK(thread_list_lock_ == nullptr);
984 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
985
Ian Rogers68d8b422014-07-17 11:09:10 -0700986 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
987 DCHECK(jni_libraries_lock_ == nullptr);
988 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
989
Chao-ying Fu9e369312014-05-21 11:20:52 -0700990 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800991 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +0200992 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700993
994 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800995 DCHECK(classlinker_classes_lock_ == nullptr);
996 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -0700997 current_lock_level);
998
Andreas Gampe74240812014-04-17 10:35:09 -0700999 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
1000 DCHECK(allocated_monitor_ids_lock_ == nullptr);
1001 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
1002
Chao-ying Fu9e369312014-05-21 11:20:52 -07001003 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
1004 DCHECK(allocated_thread_ids_lock_ == nullptr);
1005 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
1006
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +01001007 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -07001008 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
1009 DCHECK(modify_ldt_lock_ == nullptr);
1010 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
1011 }
1012
1013 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001014 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001015 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1016
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001017 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1018 DCHECK(reference_processor_lock_ == nullptr);
1019 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1020
1021 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1022 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1023 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1024
1025 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1026 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1027 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1028
1029 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1030 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1031 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1032
1033 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1034 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1035 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1036
1037 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1038 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1039 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1040
Chao-ying Fu9e369312014-05-21 11:20:52 -07001041 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1042 DCHECK(abort_lock_ == nullptr);
1043 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1044
1045 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1046 DCHECK(thread_suspend_count_lock_ == nullptr);
1047 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1048
1049 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1050 DCHECK(unexpected_signal_lock_ == nullptr);
1051 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1052
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -07001053 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
1054 DCHECK(mem_maps_lock_ == nullptr);
1055 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
1056
Chao-ying Fu9e369312014-05-21 11:20:52 -07001057 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1058 DCHECK(logging_lock_ == nullptr);
1059 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1060
1061 #undef UPDATE_CURRENT_LOCK_LEVEL
Ian Rogers719d1a32014-03-06 12:13:39 -08001062 }
1063}
1064
1065
Elliott Hughese62934d2012-04-09 11:24:29 -07001066} // namespace art