blob: 423ea77da93323f60a32e0fdc73e71ff637718de [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;
Ian Rogersf3d874c2014-07-17 18:52:42 -070060Mutex* Locks::thread_list_suspend_thread_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080061Mutex* Locks::thread_suspend_count_lock_ = nullptr;
62Mutex* Locks::trace_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080063Mutex* Locks::unexpected_signal_lock_ = nullptr;
Ian Rogers719d1a32014-03-06 12:13:39 -080064
65struct AllMutexData {
66 // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait).
67 Atomic<const BaseMutex*> all_mutexes_guard;
68 // All created mutexes guarded by all_mutexes_guard_.
69 std::set<BaseMutex*>* all_mutexes;
70 AllMutexData() : all_mutexes(NULL) {}
71};
72static struct AllMutexData gAllMutexData[kAllMutexDataSize];
73
Ian Rogersc604d732012-10-14 16:09:54 -070074#if ART_USE_FUTEXES
75static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) {
Brian Carlstromfb6996f2013-07-18 18:21:14 -070076 const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds.
Ian Rogersc604d732012-10-14 16:09:54 -070077 result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec;
78 result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec;
79 if (result_ts->tv_nsec < 0) {
80 result_ts->tv_sec--;
81 result_ts->tv_nsec += one_sec;
82 } else if (result_ts->tv_nsec > one_sec) {
83 result_ts->tv_sec++;
84 result_ts->tv_nsec -= one_sec;
85 }
86 return result_ts->tv_sec < 0;
87}
88#endif
89
Ian Rogers6f3dbba2014-10-14 17:41:57 -070090class ScopedAllMutexesLock FINAL {
Ian Rogers56edc432013-01-18 16:51:51 -080091 public:
Brian Carlstrom93ba8932013-07-17 21:31:49 -070092 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
Ian Rogers3e5cf302014-05-20 16:40:37 -070093 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) {
Ian Rogers56edc432013-01-18 16:51:51 -080094 NanoSleep(100);
95 }
96 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -070097
Ian Rogers56edc432013-01-18 16:51:51 -080098 ~ScopedAllMutexesLock() {
Ian Rogers6f3dbba2014-10-14 17:41:57 -070099#if !defined(__clang__)
100 // TODO: remove this workaround target GCC/libc++/bionic bug "invalid failure memory model".
101 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakSequentiallyConsistent(mutex_, 0)) {
102#else
Ian Rogers3e5cf302014-05-20 16:40:37 -0700103 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700104#endif
Ian Rogers56edc432013-01-18 16:51:51 -0800105 NanoSleep(100);
106 }
107 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700108
Ian Rogers56edc432013-01-18 16:51:51 -0800109 private:
110 const BaseMutex* const mutex_;
111};
Ian Rogers56edc432013-01-18 16:51:51 -0800112
Ian Rogerscf7f1912014-10-22 22:06:39 -0700113// Scoped class that generates events at the beginning and end of lock contention.
114class ScopedContentionRecorder FINAL : public ValueObject {
115 public:
116 ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid)
117 : mutex_(kLogLockContentions ? mutex : NULL),
118 blocked_tid_(kLogLockContentions ? blocked_tid : 0),
119 owner_tid_(kLogLockContentions ? owner_tid : 0),
120 start_nano_time_(kLogLockContentions ? NanoTime() : 0) {
121 if (ATRACE_ENABLED()) {
122 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")",
123 mutex->GetName(), owner_tid);
124 ATRACE_BEGIN(msg.c_str());
125 }
126 }
127
128 ~ScopedContentionRecorder() {
129 ATRACE_END();
130 if (kLogLockContentions) {
131 uint64_t end_nano_time = NanoTime();
132 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
133 }
134 }
135
136 private:
137 BaseMutex* const mutex_;
138 const uint64_t blocked_tid_;
139 const uint64_t owner_tid_;
140 const uint64_t start_nano_time_;
141};
142
Ian Rogers56edc432013-01-18 16:51:51 -0800143BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700144 if (kLogLockContentions) {
145 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700146 std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700147 if (*all_mutexes_ptr == NULL) {
148 // We leak the global set of all mutexes to avoid ordering issues in global variable
149 // construction/destruction.
150 *all_mutexes_ptr = new std::set<BaseMutex*>();
151 }
152 (*all_mutexes_ptr)->insert(this);
Ian Rogers56edc432013-01-18 16:51:51 -0800153 }
Ian Rogers56edc432013-01-18 16:51:51 -0800154}
155
156BaseMutex::~BaseMutex() {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700157 if (kLogLockContentions) {
158 ScopedAllMutexesLock mu(this);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700159 gAllMutexData->all_mutexes->erase(this);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700160 }
Ian Rogers56edc432013-01-18 16:51:51 -0800161}
162
163void BaseMutex::DumpAll(std::ostream& os) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700164 if (kLogLockContentions) {
165 os << "Mutex logging:\n";
166 ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1));
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700167 std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700168 if (all_mutexes == NULL) {
169 // No mutexes have been created yet during at startup.
170 return;
171 }
172 typedef std::set<BaseMutex*>::const_iterator It;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700173 os << "(Contended)\n";
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700174 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
175 BaseMutex* mutex = *it;
176 if (mutex->HasEverContended()) {
177 mutex->Dump(os);
178 os << "\n";
179 }
180 }
181 os << "(Never contented)\n";
182 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
183 BaseMutex* mutex = *it;
184 if (!mutex->HasEverContended()) {
185 mutex->Dump(os);
186 os << "\n";
187 }
188 }
Ian Rogers56edc432013-01-18 16:51:51 -0800189 }
Ian Rogers56edc432013-01-18 16:51:51 -0800190}
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700191
Ian Rogers81d425b2012-09-27 16:03:43 -0700192void BaseMutex::CheckSafeToWait(Thread* self) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700193 if (self == NULL) {
194 CheckUnattachedThread(level_);
195 return;
196 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700197 if (kDebugLocking) {
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700198 CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock)
199 << "Waiting on unacquired mutex: " << name_;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700200 bool bad_mutexes_held = false;
Elliott Hughes0f827162013-02-26 12:12:58 -0800201 for (int i = kLockLevelCount - 1; i >= 0; --i) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700202 if (i != level_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700203 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i));
Ian Rogersf3d874c2014-07-17 18:52:42 -0700204 // We expect waits to happen while holding the thread list suspend thread lock.
205 if (held_mutex != NULL && i != kThreadListSuspendThreadLock) {
Elliott Hughes0f827162013-02-26 12:12:58 -0800206 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" "
207 << "(level " << LockLevel(i) << ") while performing wait on "
208 << "\"" << name_ << "\" (level " << level_ << ")";
Ian Rogers25fd14b2012-09-05 10:56:38 -0700209 bad_mutexes_held = true;
210 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700211 }
212 }
Ian Rogers25fd14b2012-09-05 10:56:38 -0700213 CHECK(!bad_mutexes_held);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700214 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700215}
216
Ian Rogers37f3c962014-07-17 11:25:30 -0700217void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700218 if (kLogLockContentions) {
219 // Atomically add value to wait_time.
Ian Rogers37f3c962014-07-17 11:25:30 -0700220 wait_time.FetchAndAddSequentiallyConsistent(value);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700221 }
222}
223
Brian Carlstrom0de79852013-07-25 22:29:58 -0700224void BaseMutex::RecordContention(uint64_t blocked_tid,
225 uint64_t owner_tid,
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700226 uint64_t nano_time_blocked) {
227 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700228 ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700229 ++(data->contention_count);
230 data->AddToWaitTime(nano_time_blocked);
231 ContentionLogEntry* log = data->contention_log;
232 // This code is intentionally racy as it is only used for diagnostics.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700233 uint32_t slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700234 if (log[slot].blocked_tid == blocked_tid &&
235 log[slot].owner_tid == blocked_tid) {
236 ++log[slot].count;
237 } else {
238 uint32_t new_slot;
239 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700240 slot = data->cur_content_log_entry.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700241 new_slot = (slot + 1) % kContentionLogSize;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700242 } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot));
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700243 log[new_slot].blocked_tid = blocked_tid;
244 log[new_slot].owner_tid = owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700245 log[new_slot].count.StoreRelaxed(1);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700246 }
Ian Rogers56edc432013-01-18 16:51:51 -0800247 }
Ian Rogers56edc432013-01-18 16:51:51 -0800248}
249
Ian Rogers56edc432013-01-18 16:51:51 -0800250void BaseMutex::DumpContention(std::ostream& os) const {
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700251 if (kLogLockContentions) {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700252 const ContentionLogData* data = contention_log_data_;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700253 const ContentionLogEntry* log = data->contention_log;
Ian Rogers37f3c962014-07-17 11:25:30 -0700254 uint64_t wait_time = data->wait_time.LoadRelaxed();
Ian Rogers3e5cf302014-05-20 16:40:37 -0700255 uint32_t contention_count = data->contention_count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700256 if (contention_count == 0) {
257 os << "never contended";
258 } else {
259 os << "contended " << contention_count
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700260 << " total wait of contender " << PrettyDuration(wait_time)
261 << " average " << PrettyDuration(wait_time / contention_count);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700262 SafeMap<uint64_t, size_t> most_common_blocker;
263 SafeMap<uint64_t, size_t> most_common_blocked;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700264 for (size_t i = 0; i < kContentionLogSize; ++i) {
265 uint64_t blocked_tid = log[i].blocked_tid;
266 uint64_t owner_tid = log[i].owner_tid;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700267 uint32_t count = log[i].count.LoadRelaxed();
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700268 if (count > 0) {
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700269 auto it = most_common_blocked.find(blocked_tid);
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700270 if (it != most_common_blocked.end()) {
271 most_common_blocked.Overwrite(blocked_tid, it->second + count);
272 } else {
273 most_common_blocked.Put(blocked_tid, count);
274 }
275 it = most_common_blocker.find(owner_tid);
276 if (it != most_common_blocker.end()) {
277 most_common_blocker.Overwrite(owner_tid, it->second + count);
278 } else {
279 most_common_blocker.Put(owner_tid, count);
280 }
Ian Rogers56edc432013-01-18 16:51:51 -0800281 }
282 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700283 uint64_t max_tid = 0;
284 size_t max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700285 for (const auto& pair : most_common_blocked) {
286 if (pair.second > max_tid_count) {
287 max_tid = pair.first;
288 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700289 }
Ian Rogers56edc432013-01-18 16:51:51 -0800290 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700291 if (max_tid != 0) {
292 os << " sample shows most blocked tid=" << max_tid;
Ian Rogers56edc432013-01-18 16:51:51 -0800293 }
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700294 max_tid = 0;
295 max_tid_count = 0;
Mathieu Chartier73d1e172014-04-11 17:53:48 -0700296 for (const auto& pair : most_common_blocker) {
297 if (pair.second > max_tid_count) {
298 max_tid = pair.first;
299 max_tid_count = pair.second;
Hiroshi Yamauchi1afde132013-08-06 17:09:30 -0700300 }
301 }
302 if (max_tid != 0) {
303 os << " sample shows tid=" << max_tid << " owning during this time";
304 }
Ian Rogers56edc432013-01-18 16:51:51 -0800305 }
306 }
Ian Rogers56edc432013-01-18 16:51:51 -0800307}
308
309
Ian Rogers81d425b2012-09-27 16:03:43 -0700310Mutex::Mutex(const char* name, LockLevel level, bool recursive)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700311 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700312#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700313 DCHECK_EQ(0, state_.LoadRelaxed());
Ian Rogers3e5cf302014-05-20 16:40:37 -0700314 DCHECK_EQ(0, num_contenders_.LoadRelaxed());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700315#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700316 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700317#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700318 exclusive_owner_ = 0;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700319}
320
321Mutex::~Mutex() {
Ian Rogersc604d732012-10-14 16:09:54 -0700322#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700323 if (state_.LoadRelaxed() != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700324 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700325 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersc604d732012-10-14 16:09:54 -0700326 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
327 } else {
328 CHECK_EQ(exclusive_owner_, 0U) << "unexpectedly found an owner on unlocked mutex " << name_;
Ian Rogersc7190692014-07-08 23:50:26 -0700329 CHECK_EQ(num_contenders_.LoadSequentiallyConsistent(), 0)
Ian Rogers3e5cf302014-05-20 16:40:37 -0700330 << "unexpectedly found a contender on mutex " << name_;
Ian Rogersc604d732012-10-14 16:09:54 -0700331 }
332#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700333 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
334 // may still be using locks.
Elliott Hughes6b355752012-01-13 16:49:08 -0800335 int rc = pthread_mutex_destroy(&mutex_);
336 if (rc != 0) {
337 errno = rc;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800338 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700339 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700340 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800341 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughes6b355752012-01-13 16:49:08 -0800342 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
343 }
Ian Rogersc604d732012-10-14 16:09:54 -0700344#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -0700345}
346
Ian Rogers81d425b2012-09-27 16:03:43 -0700347void Mutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700348 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700349 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700350 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700351 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700352 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700353#if ART_USE_FUTEXES
354 bool done = false;
355 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700356 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700357 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700358 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
359 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700360 } else {
361 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700362 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersb122a4b2013-11-19 18:00:50 -0800363 num_contenders_++;
Ian Rogersc7190692014-07-08 23:50:26 -0700364 if (futex(state_.Address(), FUTEX_WAIT, 1, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700365 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
366 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
367 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700368 PLOG(FATAL) << "futex wait failed for " << name_;
369 }
370 }
Ian Rogersb122a4b2013-11-19 18:00:50 -0800371 num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700372 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700373 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700374 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700375#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700376 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700377#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700378 DCHECK_EQ(exclusive_owner_, 0U);
379 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700380 RegisterAsLocked(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700381 }
382 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700383 if (kDebugLocking) {
384 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
385 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700386 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700387 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700388}
389
Ian Rogers81d425b2012-09-27 16:03:43 -0700390bool Mutex::ExclusiveTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700391 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers25fd14b2012-09-05 10:56:38 -0700392 if (kDebugLocking && !recursive_) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700393 AssertNotHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700394 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700395 if (!recursive_ || !IsExclusiveHeld(self)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700396#if ART_USE_FUTEXES
397 bool done = false;
398 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700399 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700400 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700401 // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition.
402 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */);
Ian Rogersc604d732012-10-14 16:09:54 -0700403 } else {
404 return false;
405 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700406 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700407 DCHECK_EQ(state_.LoadRelaxed(), 1);
Ian Rogersc604d732012-10-14 16:09:54 -0700408#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700409 int result = pthread_mutex_trylock(&mutex_);
410 if (result == EBUSY) {
411 return false;
412 }
413 if (result != 0) {
414 errno = result;
415 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
416 }
Ian Rogersc604d732012-10-14 16:09:54 -0700417#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700418 DCHECK_EQ(exclusive_owner_, 0U);
419 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700420 RegisterAsLocked(self);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700421 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700422 recursion_count_++;
Ian Rogers25fd14b2012-09-05 10:56:38 -0700423 if (kDebugLocking) {
424 CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: "
425 << name_ << " " << recursion_count_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700426 AssertHeld(self);
Ian Rogers25fd14b2012-09-05 10:56:38 -0700427 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700428 return true;
429}
430
Ian Rogers81d425b2012-09-27 16:03:43 -0700431void Mutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700432 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700433 AssertHeld(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700434 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700435 recursion_count_--;
436 if (!recursive_ || recursion_count_ == 0) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700437 if (kDebugLocking) {
438 CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: "
439 << name_ << " " << recursion_count_;
440 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700441 RegisterAsUnlocked(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700442#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700443 bool done = false;
444 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700445 int32_t cur_state = state_.LoadRelaxed();
Ian Rogersc5f17732014-06-05 20:48:42 -0700446 if (LIKELY(cur_state == 1)) {
Ian Rogersc5f17732014-06-05 20:48:42 -0700447 // We're no longer the owner.
448 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700449 // Change state to 0 and impose load/store ordering appropriate for lock release.
450 // Note, the relaxed loads below musn't reorder before the CompareExchange.
451 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
452 // a status bit into the state on contention.
453 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */);
Ian Rogersc5f17732014-06-05 20:48:42 -0700454 if (LIKELY(done)) { // Spurious fail?
Ian Rogersc7190692014-07-08 23:50:26 -0700455 // Wake a contender.
Ian Rogersc5f17732014-06-05 20:48:42 -0700456 if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700457 futex(state_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersc5f17732014-06-05 20:48:42 -0700458 }
459 }
460 } else {
461 // Logging acquires the logging lock, avoid infinite recursion in that case.
462 if (this != Locks::logging_lock_) {
463 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
464 } else {
Ian Rogersc7dd2952014-10-21 23:31:19 -0700465 LogMessage::LogLine(__FILE__, __LINE__, INTERNAL_FATAL,
466 StringPrintf("Unexpected state_ %d in unlock for %s",
467 cur_state, name_).c_str());
Ian Rogersc5f17732014-06-05 20:48:42 -0700468 _exit(1);
Ian Rogersc604d732012-10-14 16:09:54 -0700469 }
470 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700471 } while (!done);
Ian Rogersc604d732012-10-14 16:09:54 -0700472#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700473 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700474 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Ian Rogersc604d732012-10-14 16:09:54 -0700475#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700476 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700477}
478
Ian Rogers56edc432013-01-18 16:51:51 -0800479void Mutex::Dump(std::ostream& os) const {
480 os << (recursive_ ? "recursive " : "non-recursive ")
481 << name_
482 << " level=" << static_cast<int>(level_)
483 << " rec=" << recursion_count_
484 << " owner=" << GetExclusiveOwnerTid() << " ";
485 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700486}
487
488std::ostream& operator<<(std::ostream& os, const Mutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800489 mu.Dump(os);
490 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700491}
492
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700493ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level)
494 : BaseMutex(name, level)
Ian Rogers81d425b2012-09-27 16:03:43 -0700495#if ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700496 , state_(0), num_pending_readers_(0), num_pending_writers_(0)
Ian Rogers81d425b2012-09-27 16:03:43 -0700497#endif
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700498{ // NOLINT(whitespace/braces)
Ian Rogers81d425b2012-09-27 16:03:43 -0700499#if !ART_USE_FUTEXES
Ian Rogersc5f17732014-06-05 20:48:42 -0700500 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
Ian Rogers81d425b2012-09-27 16:03:43 -0700501#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700502 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700503}
504
505ReaderWriterMutex::~ReaderWriterMutex() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700506#if ART_USE_FUTEXES
Ian Rogersc7190692014-07-08 23:50:26 -0700507 CHECK_EQ(state_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700508 CHECK_EQ(exclusive_owner_, 0U);
Ian Rogersc7190692014-07-08 23:50:26 -0700509 CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0);
Ian Rogers3e5cf302014-05-20 16:40:37 -0700510 CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700511#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700512 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
513 // may still be using locks.
514 int rc = pthread_rwlock_destroy(&rwlock_);
515 if (rc != 0) {
516 errno = rc;
517 // TODO: should we just not log at all if shutting down? this could be the logging mutex!
Ian Rogers50b35e22012-10-04 10:09:15 -0700518 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700519 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800520 bool shutting_down = runtime == NULL || runtime->IsShuttingDownLocked();
Ian Rogers120f1c72012-09-28 17:17:10 -0700521 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
Brian Carlstromcd74c4b2012-01-23 13:21:00 -0800522 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700523#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700524}
525
Ian Rogers81d425b2012-09-27 16:03:43 -0700526void ReaderWriterMutex::ExclusiveLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700527 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700528 AssertNotExclusiveHeld(self);
529#if ART_USE_FUTEXES
530 bool done = false;
531 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700532 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700533 if (LIKELY(cur_state == 0)) {
Ian Rogersc7190692014-07-08 23:50:26 -0700534 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
535 done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700536 } else {
537 // Failed to acquire, hang up.
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700538 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700539 ++num_pending_writers_;
540 if (futex(state_.Address(), FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
Brian Carlstrom0de79852013-07-25 22:29:58 -0700541 // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning.
542 // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock.
543 if ((errno != EAGAIN) && (errno != EINTR)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700544 PLOG(FATAL) << "futex wait failed for " << name_;
545 }
546 }
Ian Rogersc7190692014-07-08 23:50:26 -0700547 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700548 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700549 } while (!done);
Ian Rogersc7190692014-07-08 23:50:26 -0700550 DCHECK_EQ(state_.LoadRelaxed(), -1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700551#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700552 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700553#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700554 DCHECK_EQ(exclusive_owner_, 0U);
555 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700556 RegisterAsLocked(self);
557 AssertExclusiveHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700558}
559
Ian Rogers81d425b2012-09-27 16:03:43 -0700560void ReaderWriterMutex::ExclusiveUnlock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700561 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700562 AssertExclusiveHeld(self);
563 RegisterAsUnlocked(self);
Ian Rogersc5f17732014-06-05 20:48:42 -0700564 DCHECK_NE(exclusive_owner_, 0U);
Ian Rogers81d425b2012-09-27 16:03:43 -0700565#if ART_USE_FUTEXES
566 bool done = false;
567 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700568 int32_t cur_state = state_.LoadRelaxed();
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700569 if (LIKELY(cur_state == -1)) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700570 // We're no longer the owner.
571 exclusive_owner_ = 0;
Ian Rogersc7190692014-07-08 23:50:26 -0700572 // Change state from -1 to 0 and impose load/store ordering appropriate for lock release.
573 // Note, the relaxed loads below musn't reorder before the CompareExchange.
574 // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing
575 // a status bit into the state on contention.
576 done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */);
577 if (LIKELY(done)) { // Weak CAS may fail spuriously.
Ian Rogers81d425b2012-09-27 16:03:43 -0700578 // Wake any waiters.
Ian Rogersc7190692014-07-08 23:50:26 -0700579 if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 ||
580 num_pending_writers_.LoadRelaxed() > 0)) {
581 futex(state_.Address(), FUTEX_WAKE, -1, NULL, NULL, 0);
Ian Rogers81d425b2012-09-27 16:03:43 -0700582 }
583 }
584 } else {
585 LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_;
586 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700587 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700588#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700589 exclusive_owner_ = 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700590 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
Ian Rogers81d425b2012-09-27 16:03:43 -0700591#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700592}
593
Ian Rogers66aee5c2012-08-15 17:17:47 -0700594#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700595bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700596 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700597#if ART_USE_FUTEXES
598 bool done = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700599 timespec end_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800600 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &end_abs_ts);
Ian Rogers81d425b2012-09-27 16:03:43 -0700601 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700602 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700603 if (cur_state == 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700604 // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition.
605 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */);
Ian Rogers81d425b2012-09-27 16:03:43 -0700606 } else {
607 // Failed to acquire, hang up.
Ian Rogersc604d732012-10-14 16:09:54 -0700608 timespec now_abs_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800609 InitTimeSpec(true, CLOCK_REALTIME, 0, 0, &now_abs_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700610 timespec rel_ts;
611 if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) {
612 return false; // Timed out.
613 }
Hiroshi Yamauchib3733082013-08-12 17:28:49 -0700614 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid());
Ian Rogersc7190692014-07-08 23:50:26 -0700615 ++num_pending_writers_;
616 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, NULL, 0) != 0) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700617 if (errno == ETIMEDOUT) {
Ian Rogersc7190692014-07-08 23:50:26 -0700618 --num_pending_writers_;
Ian Rogersc604d732012-10-14 16:09:54 -0700619 return false; // Timed out.
Brian Carlstrom0de79852013-07-25 22:29:58 -0700620 } else if ((errno != EAGAIN) && (errno != EINTR)) {
621 // EAGAIN and EINTR both indicate a spurious failure,
622 // recompute the relative time out from now and try again.
623 // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts;
Ian Rogers81d425b2012-09-27 16:03:43 -0700624 PLOG(FATAL) << "timed futex wait failed for " << name_;
625 }
626 }
Ian Rogersc7190692014-07-08 23:50:26 -0700627 --num_pending_writers_;
Ian Rogers81d425b2012-09-27 16:03:43 -0700628 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700629 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700630#else
Ian Rogersc604d732012-10-14 16:09:54 -0700631 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700632 InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700633 int result = pthread_rwlock_timedwrlock(&rwlock_, &ts);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700634 if (result == ETIMEDOUT) {
635 return false;
636 }
637 if (result != 0) {
638 errno = result;
Ian Rogersa5acfd32012-08-15 11:50:10 -0700639 PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700640 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700641#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700642 exclusive_owner_ = SafeGetTid(self);
Ian Rogers81d425b2012-09-27 16:03:43 -0700643 RegisterAsLocked(self);
644 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700645 return true;
646}
Ian Rogers66aee5c2012-08-15 17:17:47 -0700647#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700648
Ian Rogers51d212e2014-10-23 17:48:20 -0700649#if ART_USE_FUTEXES
Ian Rogerscf7f1912014-10-22 22:06:39 -0700650void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) {
651 // Owner holds it exclusively, hang up.
652 ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self));
653 ++num_pending_readers_;
654 if (futex(state_.Address(), FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
655 if (errno != EAGAIN) {
656 PLOG(FATAL) << "futex wait failed for " << name_;
657 }
658 }
659 --num_pending_readers_;
660}
Ian Rogers51d212e2014-10-23 17:48:20 -0700661#endif
Ian Rogerscf7f1912014-10-22 22:06:39 -0700662
Ian Rogers81d425b2012-09-27 16:03:43 -0700663bool ReaderWriterMutex::SharedTryLock(Thread* self) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700664 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers81d425b2012-09-27 16:03:43 -0700665#if ART_USE_FUTEXES
666 bool done = false;
667 do {
Ian Rogersc7190692014-07-08 23:50:26 -0700668 int32_t cur_state = state_.LoadRelaxed();
Ian Rogers81d425b2012-09-27 16:03:43 -0700669 if (cur_state >= 0) {
Ian Rogersc7190692014-07-08 23:50:26 -0700670 // Add as an extra reader and impose load/store ordering appropriate for lock acquisition.
671 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1);
Ian Rogers81d425b2012-09-27 16:03:43 -0700672 } else {
673 // Owner holds it exclusively.
674 return false;
675 }
Brian Carlstromdf629502013-07-17 22:39:56 -0700676 } while (!done);
Ian Rogers81d425b2012-09-27 16:03:43 -0700677#else
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700678 int result = pthread_rwlock_tryrdlock(&rwlock_);
679 if (result == EBUSY) {
680 return false;
681 }
682 if (result != 0) {
683 errno = result;
684 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
685 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700686#endif
687 RegisterAsLocked(self);
688 AssertSharedHeld(self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700689 return true;
690}
691
Ian Rogers81d425b2012-09-27 16:03:43 -0700692bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const {
Ian Rogers01ae5802012-09-28 16:14:01 -0700693 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700694 bool result;
695 if (UNLIKELY(self == NULL)) { // Handle unattached threads.
Ian Rogers01ae5802012-09-28 16:14:01 -0700696 result = IsExclusiveHeld(self); // TODO: a better best effort here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700697 } else {
698 result = (self->GetHeldMutex(level_) == this);
699 }
700 return result;
701}
702
Ian Rogers56edc432013-01-18 16:51:51 -0800703void ReaderWriterMutex::Dump(std::ostream& os) const {
704 os << name_
705 << " level=" << static_cast<int>(level_)
Mathieu Chartier5869a2c2014-10-08 14:26:23 -0700706 << " owner=" << GetExclusiveOwnerTid()
707#if ART_USE_FUTEXES
708 << " state=" << state_.LoadSequentiallyConsistent()
709 << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent()
710 << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent()
711#endif
712 << " ";
Ian Rogers56edc432013-01-18 16:51:51 -0800713 DumpContention(os);
Ian Rogers01ae5802012-09-28 16:14:01 -0700714}
715
716std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) {
Ian Rogers56edc432013-01-18 16:51:51 -0800717 mu.Dump(os);
718 return os;
Ian Rogers01ae5802012-09-28 16:14:01 -0700719}
720
Ian Rogers23055dc2013-04-18 16:29:16 -0700721ConditionVariable::ConditionVariable(const char* name, Mutex& guard)
Ian Rogersc604d732012-10-14 16:09:54 -0700722 : name_(name), guard_(guard) {
723#if ART_USE_FUTEXES
Ian Rogers3e5cf302014-05-20 16:40:37 -0700724 DCHECK_EQ(0, sequence_.LoadRelaxed());
Ian Rogersc604d732012-10-14 16:09:54 -0700725 num_waiters_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700726#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000727 pthread_condattr_t cond_attrs;
Ian Rogersc5f17732014-06-05 20:48:42 -0700728 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
Narayan Kamath51b71022014-03-04 11:57:09 +0000729#if !defined(__APPLE__)
730 // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock.
Ian Rogers51d212e2014-10-23 17:48:20 -0700731 CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC));
Narayan Kamath51b71022014-03-04 11:57:09 +0000732#endif
733 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
Ian Rogersc604d732012-10-14 16:09:54 -0700734#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700735}
736
737ConditionVariable::~ConditionVariable() {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800738#if ART_USE_FUTEXES
739 if (num_waiters_!= 0) {
Ian Rogers5bd97c42012-11-27 02:38:26 -0800740 Runtime* runtime = Runtime::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700741 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
Ian Rogersd45f2012012-11-28 11:46:23 -0800742 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
743 << " called with " << num_waiters_ << " waiters.";
Ian Rogers5bd97c42012-11-27 02:38:26 -0800744 }
745#else
Elliott Hughese62934d2012-04-09 11:24:29 -0700746 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
747 // may still be using condition variables.
748 int rc = pthread_cond_destroy(&cond_);
749 if (rc != 0) {
750 errno = rc;
Ian Rogers50b35e22012-10-04 10:09:15 -0700751 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
Ian Rogers120f1c72012-09-28 17:17:10 -0700752 Runtime* runtime = Runtime::Current();
Mathieu Chartier34e82932013-11-12 18:22:47 -0800753 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked();
Elliott Hughese62934d2012-04-09 11:24:29 -0700754 PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_;
755 }
Ian Rogersc604d732012-10-14 16:09:54 -0700756#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700757}
758
Ian Rogersc604d732012-10-14 16:09:54 -0700759void ConditionVariable::Broadcast(Thread* self) {
760 DCHECK(self == NULL || self == Thread::Current());
761 // TODO: enable below, there's a race in thread creation that causes false failures currently.
762 // guard_.AssertExclusiveHeld(self);
Mathieu Chartiere46cd752012-10-31 16:56:18 -0700763 DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self));
Ian Rogersc604d732012-10-14 16:09:54 -0700764#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800765 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800766 sequence_++; // Indicate the broadcast occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700767 bool done = false;
768 do {
Ian Rogers3e5cf302014-05-20 16:40:37 -0700769 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersd45f2012012-11-28 11:46:23 -0800770 // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring
771 // mutex unlocks will awaken the requeued waiter thread.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800772 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
Ian Rogers5bd97c42012-11-27 02:38:26 -0800773 reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()),
Ian Rogersc7190692014-07-08 23:50:26 -0700774 guard_.state_.Address(), cur_sequence) != -1;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800775 if (!done) {
776 if (errno != EAGAIN) {
777 PLOG(FATAL) << "futex cmp requeue failed for " << name_;
778 }
Ian Rogers5bd97c42012-11-27 02:38:26 -0800779 }
Ian Rogersc604d732012-10-14 16:09:54 -0700780 } while (!done);
781 }
782#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700783 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700784#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700785}
786
Ian Rogersc604d732012-10-14 16:09:54 -0700787void ConditionVariable::Signal(Thread* self) {
788 DCHECK(self == NULL || self == Thread::Current());
789 guard_.AssertExclusiveHeld(self);
790#if ART_USE_FUTEXES
Ian Rogersd45f2012012-11-28 11:46:23 -0800791 if (num_waiters_ > 0) {
Ian Rogersb122a4b2013-11-19 18:00:50 -0800792 sequence_++; // Indicate a signal occurred.
Ian Rogersc604d732012-10-14 16:09:54 -0700793 // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them
794 // to avoid this, however, requeueing can only move all waiters.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800795 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0);
Ian Rogersd45f2012012-11-28 11:46:23 -0800796 // Check something was woken or else we changed sequence_ before they had chance to wait.
Ian Rogers5bd97c42012-11-27 02:38:26 -0800797 CHECK((num_woken == 0) || (num_woken == 1));
Ian Rogersc604d732012-10-14 16:09:54 -0700798 }
799#else
Elliott Hughes5f791332011-09-15 17:45:30 -0700800 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
Ian Rogersc604d732012-10-14 16:09:54 -0700801#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700802}
803
Ian Rogersc604d732012-10-14 16:09:54 -0700804void ConditionVariable::Wait(Thread* self) {
Ian Rogers1d54e732013-05-02 21:10:01 -0700805 guard_.CheckSafeToWait(self);
806 WaitHoldingLocks(self);
807}
808
809void ConditionVariable::WaitHoldingLocks(Thread* self) {
Ian Rogersc604d732012-10-14 16:09:54 -0700810 DCHECK(self == NULL || self == Thread::Current());
811 guard_.AssertExclusiveHeld(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700812 unsigned int old_recursion_count = guard_.recursion_count_;
813#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700814 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800815 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800816 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700817 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700818 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700819 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800820 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, NULL, NULL, 0) != 0) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800821 // Futex failed, check it is an expected error.
822 // EAGAIN == EWOULDBLK, so we let the caller try again.
823 // EINTR implies a signal was sent to this thread.
824 if ((errno != EINTR) && (errno != EAGAIN)) {
Ian Rogersc604d732012-10-14 16:09:54 -0700825 PLOG(FATAL) << "futex wait failed for " << name_;
826 }
827 }
828 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800829 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700830 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800831 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700832 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800833 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700834#else
Ian Rogersc5f17732014-06-05 20:48:42 -0700835 uint64_t old_owner = guard_.exclusive_owner_;
836 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700837 guard_.recursion_count_ = 0;
838 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
Ian Rogersc5f17732014-06-05 20:48:42 -0700839 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700840#endif
841 guard_.recursion_count_ = old_recursion_count;
Elliott Hughes5f791332011-09-15 17:45:30 -0700842}
843
Ian Rogers7b078e82014-09-10 14:44:24 -0700844bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) {
Ian Rogersc604d732012-10-14 16:09:54 -0700845 DCHECK(self == NULL || self == Thread::Current());
Ian Rogers7b078e82014-09-10 14:44:24 -0700846 bool timed_out = false;
Ian Rogersc604d732012-10-14 16:09:54 -0700847 guard_.AssertExclusiveHeld(self);
Ian Rogers1d54e732013-05-02 21:10:01 -0700848 guard_.CheckSafeToWait(self);
Ian Rogersc604d732012-10-14 16:09:54 -0700849 unsigned int old_recursion_count = guard_.recursion_count_;
850#if ART_USE_FUTEXES
Ian Rogersc604d732012-10-14 16:09:54 -0700851 timespec rel_ts;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800852 InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts);
Ian Rogersc604d732012-10-14 16:09:54 -0700853 num_waiters_++;
Ian Rogersd45f2012012-11-28 11:46:23 -0800854 // Ensure the Mutex is contended so that requeued threads are awoken.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800855 guard_.num_contenders_++;
Ian Rogersc604d732012-10-14 16:09:54 -0700856 guard_.recursion_count_ = 1;
Ian Rogers3e5cf302014-05-20 16:40:37 -0700857 int32_t cur_sequence = sequence_.LoadRelaxed();
Ian Rogersc604d732012-10-14 16:09:54 -0700858 guard_.ExclusiveUnlock(self);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800859 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, NULL, 0) != 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700860 if (errno == ETIMEDOUT) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800861 // Timed out we're done.
Ian Rogers7b078e82014-09-10 14:44:24 -0700862 timed_out = true;
Brian Carlstrom0de79852013-07-25 22:29:58 -0700863 } else if ((errno == EAGAIN) || (errno == EINTR)) {
Ian Rogersd45f2012012-11-28 11:46:23 -0800864 // A signal or ConditionVariable::Signal/Broadcast has come in.
Ian Rogersc604d732012-10-14 16:09:54 -0700865 } else {
866 PLOG(FATAL) << "timed futex wait failed for " << name_;
867 }
868 }
869 guard_.ExclusiveLock(self);
Ian Rogersd45f2012012-11-28 11:46:23 -0800870 CHECK_GE(num_waiters_, 0);
Ian Rogersc604d732012-10-14 16:09:54 -0700871 num_waiters_--;
Ian Rogersd45f2012012-11-28 11:46:23 -0800872 // We awoke and so no longer require awakes from the guard_'s unlock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700873 CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0);
Ian Rogersb122a4b2013-11-19 18:00:50 -0800874 guard_.num_contenders_--;
Ian Rogersc604d732012-10-14 16:09:54 -0700875#else
Narayan Kamath51b71022014-03-04 11:57:09 +0000876#if !defined(__APPLE__)
Ian Rogersc604d732012-10-14 16:09:54 -0700877 int clock = CLOCK_MONOTONIC;
Elliott Hughes5f791332011-09-15 17:45:30 -0700878#else
Ian Rogersc604d732012-10-14 16:09:54 -0700879 int clock = CLOCK_REALTIME;
Elliott Hughes5f791332011-09-15 17:45:30 -0700880#endif
Ian Rogersc5f17732014-06-05 20:48:42 -0700881 uint64_t old_owner = guard_.exclusive_owner_;
882 guard_.exclusive_owner_ = 0;
Ian Rogersc604d732012-10-14 16:09:54 -0700883 guard_.recursion_count_ = 0;
884 timespec ts;
Brian Carlstrombcc29262012-11-02 11:36:03 -0700885 InitTimeSpec(true, clock, ms, ns, &ts);
Narayan Kamath51b71022014-03-04 11:57:09 +0000886 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
Ian Rogers7b078e82014-09-10 14:44:24 -0700887 if (rc == ETIMEDOUT) {
888 timed_out = true;
889 } else if (rc != 0) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700890 errno = rc;
891 PLOG(FATAL) << "TimedWait failed for " << name_;
892 }
Ian Rogersc5f17732014-06-05 20:48:42 -0700893 guard_.exclusive_owner_ = old_owner;
Ian Rogersc604d732012-10-14 16:09:54 -0700894#endif
895 guard_.recursion_count_ = old_recursion_count;
Ian Rogers7b078e82014-09-10 14:44:24 -0700896 return timed_out;
Elliott Hughes5f791332011-09-15 17:45:30 -0700897}
898
Ian Rogers719d1a32014-03-06 12:13:39 -0800899void Locks::Init() {
900 if (logging_lock_ != nullptr) {
901 // Already initialized.
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100902 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700903 DCHECK(modify_ldt_lock_ != nullptr);
904 } else {
905 DCHECK(modify_ldt_lock_ == nullptr);
906 }
Ian Rogers719d1a32014-03-06 12:13:39 -0800907 DCHECK(abort_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700908 DCHECK(alloc_tracker_lock_ != nullptr);
Andreas Gampe74240812014-04-17 10:35:09 -0700909 DCHECK(allocated_monitor_ids_lock_ != nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700910 DCHECK(allocated_thread_ids_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800911 DCHECK(breakpoint_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800912 DCHECK(classlinker_classes_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700913 DCHECK(deoptimization_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800914 DCHECK(heap_bitmap_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700915 DCHECK(intern_table_lock_ != nullptr);
Ian Rogers68d8b422014-07-17 11:09:10 -0700916 DCHECK(jni_libraries_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800917 DCHECK(logging_lock_ != nullptr);
918 DCHECK(mutator_lock_ != nullptr);
Brian Carlstrom306db812014-09-05 13:01:41 -0700919 DCHECK(profiler_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800920 DCHECK(thread_list_lock_ != nullptr);
Ian Rogersf3d874c2014-07-17 18:52:42 -0700921 DCHECK(thread_list_suspend_thread_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800922 DCHECK(thread_suspend_count_lock_ != nullptr);
923 DCHECK(trace_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800924 DCHECK(unexpected_signal_lock_ != nullptr);
Ian Rogers719d1a32014-03-06 12:13:39 -0800925 } else {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700926 // Create global locks in level order from highest lock level to lowest.
Ian Rogersf3d874c2014-07-17 18:52:42 -0700927 LockLevel current_lock_level = kThreadListSuspendThreadLock;
928 DCHECK(thread_list_suspend_thread_lock_ == nullptr);
929 thread_list_suspend_thread_lock_ =
930 new Mutex("thread list suspend thread by .. lock", current_lock_level);
Ian Rogers719d1a32014-03-06 12:13:39 -0800931
Chao-ying Fu9e369312014-05-21 11:20:52 -0700932 #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \
Brian Carlstrom306db812014-09-05 13:01:41 -0700933 if (new_level >= current_lock_level) { \
934 /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \
935 fprintf(stderr, "New local level %d is not less than current level %d\n", \
936 new_level, current_lock_level); \
937 exit(1); \
938 } \
Ian Rogersf3d874c2014-07-17 18:52:42 -0700939 current_lock_level = new_level;
940
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700941 UPDATE_CURRENT_LOCK_LEVEL(kInstrumentEntrypointsLock);
942 DCHECK(instrument_entrypoints_lock_ == nullptr);
943 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level);
944
Ian Rogersf3d874c2014-07-17 18:52:42 -0700945 UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock);
946 DCHECK(mutator_lock_ == nullptr);
947 mutator_lock_ = new ReaderWriterMutex("mutator lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700948
949 UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock);
950 DCHECK(heap_bitmap_lock_ == nullptr);
951 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level);
952
Jeff Hao69dbec62014-09-15 18:03:41 -0700953 UPDATE_CURRENT_LOCK_LEVEL(kTraceLock);
954 DCHECK(trace_lock_ == nullptr);
955 trace_lock_ = new Mutex("trace lock", current_lock_level);
956
Chao-ying Fu9e369312014-05-21 11:20:52 -0700957 UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock);
958 DCHECK(runtime_shutdown_lock_ == nullptr);
959 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level);
960
961 UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock);
962 DCHECK(profiler_lock_ == nullptr);
963 profiler_lock_ = new Mutex("profiler lock", current_lock_level);
964
Brian Carlstrom306db812014-09-05 13:01:41 -0700965 UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock);
966 DCHECK(deoptimization_lock_ == nullptr);
967 deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level);
968
969 UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock);
970 DCHECK(alloc_tracker_lock_ == nullptr);
971 alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level);
972
Chao-ying Fu9e369312014-05-21 11:20:52 -0700973 UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock);
974 DCHECK(thread_list_lock_ == nullptr);
975 thread_list_lock_ = new Mutex("thread list lock", current_lock_level);
976
Ian Rogers68d8b422014-07-17 11:09:10 -0700977 UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock);
978 DCHECK(jni_libraries_lock_ == nullptr);
979 jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level);
980
Chao-ying Fu9e369312014-05-21 11:20:52 -0700981 UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800982 DCHECK(breakpoint_lock_ == nullptr);
Sebastien Hertzed2be172014-08-19 15:33:43 +0200983 breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level);
Chao-ying Fu9e369312014-05-21 11:20:52 -0700984
985 UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock);
Ian Rogers719d1a32014-03-06 12:13:39 -0800986 DCHECK(classlinker_classes_lock_ == nullptr);
987 classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock",
Chao-ying Fu9e369312014-05-21 11:20:52 -0700988 current_lock_level);
989
Andreas Gampe74240812014-04-17 10:35:09 -0700990 UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock);
991 DCHECK(allocated_monitor_ids_lock_ == nullptr);
992 allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level);
993
Chao-ying Fu9e369312014-05-21 11:20:52 -0700994 UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock);
995 DCHECK(allocated_thread_ids_lock_ == nullptr);
996 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level);
997
Nicolas Geoffray7f0a6d62014-05-26 14:01:46 +0100998 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
Chao-ying Fu9e369312014-05-21 11:20:52 -0700999 UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock);
1000 DCHECK(modify_ldt_lock_ == nullptr);
1001 modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level);
1002 }
1003
1004 UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock);
Ian Rogers719d1a32014-03-06 12:13:39 -08001005 DCHECK(intern_table_lock_ == nullptr);
Chao-ying Fu9e369312014-05-21 11:20:52 -07001006 intern_table_lock_ = new Mutex("InternTable lock", current_lock_level);
1007
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -07001008 UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock);
1009 DCHECK(reference_processor_lock_ == nullptr);
1010 reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level);
1011
1012 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock);
1013 DCHECK(reference_queue_cleared_references_lock_ == nullptr);
1014 reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1015
1016 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock);
1017 DCHECK(reference_queue_weak_references_lock_ == nullptr);
1018 reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level);
1019
1020 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock);
1021 DCHECK(reference_queue_finalizer_references_lock_ == nullptr);
1022 reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level);
1023
1024 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock);
1025 DCHECK(reference_queue_phantom_references_lock_ == nullptr);
1026 reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level);
1027
1028 UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock);
1029 DCHECK(reference_queue_soft_references_lock_ == nullptr);
1030 reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level);
1031
Chao-ying Fu9e369312014-05-21 11:20:52 -07001032 UPDATE_CURRENT_LOCK_LEVEL(kAbortLock);
1033 DCHECK(abort_lock_ == nullptr);
1034 abort_lock_ = new Mutex("abort lock", current_lock_level, true);
1035
1036 UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock);
1037 DCHECK(thread_suspend_count_lock_ == nullptr);
1038 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level);
1039
1040 UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock);
1041 DCHECK(unexpected_signal_lock_ == nullptr);
1042 unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true);
1043
Hiroshi Yamauchi3eed93d2014-06-04 11:43:59 -07001044 UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock);
1045 DCHECK(mem_maps_lock_ == nullptr);
1046 mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level);
1047
Chao-ying Fu9e369312014-05-21 11:20:52 -07001048 UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock);
1049 DCHECK(logging_lock_ == nullptr);
1050 logging_lock_ = new Mutex("logging lock", current_lock_level, true);
1051
1052 #undef UPDATE_CURRENT_LOCK_LEVEL
Ian Rogers719d1a32014-03-06 12:13:39 -08001053 }
1054}
1055
1056
Elliott Hughese62934d2012-04-09 11:24:29 -07001057} // namespace art