Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1 | /* |
| 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 Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 20 | #include <sys/time.h> |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 21 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 22 | #include "android-base/stringprintf.h" |
| 23 | |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 24 | #include "atomic.h" |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 25 | #include "base/logging.h" |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 26 | #include "base/systrace.h" |
Andreas Gampe | 8cf9cb3 | 2017-07-19 09:28:38 -0700 | [diff] [blame] | 27 | #include "base/time_utils.h" |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 28 | #include "base/value_object.h" |
Ian Rogers | 693ff61 | 2013-02-01 10:56:12 -0800 | [diff] [blame] | 29 | #include "mutex-inl.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 30 | #include "scoped_thread_state_change-inl.h" |
Ian Rogers | 04d7aa9 | 2013-03-16 14:29:17 -0700 | [diff] [blame] | 31 | #include "thread-inl.h" |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 32 | |
| 33 | namespace art { |
| 34 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 35 | using android::base::StringPrintf; |
| 36 | |
David Sehr | f42eb2c | 2016-10-19 13:20:45 -0700 | [diff] [blame] | 37 | static Atomic<Locks::ClientCallback*> safe_to_call_abort_callback(nullptr); |
| 38 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 39 | Mutex* Locks::abort_lock_ = nullptr; |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 40 | Mutex* Locks::alloc_tracker_lock_ = nullptr; |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 41 | Mutex* Locks::allocated_monitor_ids_lock_ = nullptr; |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 42 | Mutex* Locks::allocated_thread_ids_lock_ = nullptr; |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 43 | ReaderWriterMutex* Locks::breakpoint_lock_ = nullptr; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 44 | ReaderWriterMutex* Locks::classlinker_classes_lock_ = nullptr; |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 45 | Mutex* Locks::deoptimization_lock_ = nullptr; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 46 | ReaderWriterMutex* Locks::heap_bitmap_lock_ = nullptr; |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 47 | Mutex* Locks::instrument_entrypoints_lock_ = nullptr; |
Mathieu Chartier | a5a53ef | 2014-09-12 12:58:05 -0700 | [diff] [blame] | 48 | Mutex* Locks::intern_table_lock_ = nullptr; |
Andreas Gampe | c808954 | 2017-01-16 12:41:12 -0800 | [diff] [blame] | 49 | Mutex* Locks::jni_function_table_lock_ = nullptr; |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 50 | Mutex* Locks::jni_libraries_lock_ = nullptr; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 51 | Mutex* Locks::logging_lock_ = nullptr; |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 52 | Mutex* Locks::modify_ldt_lock_ = nullptr; |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 53 | MutatorMutex* Locks::mutator_lock_ = nullptr; |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 54 | Mutex* Locks::profiler_lock_ = nullptr; |
Nicolas Geoffray | 340dafa | 2016-11-18 16:03:10 +0000 | [diff] [blame] | 55 | ReaderWriterMutex* Locks::verifier_deps_lock_ = nullptr; |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 56 | ReaderWriterMutex* Locks::oat_file_manager_lock_ = nullptr; |
Richard Uhler | a206c74 | 2016-05-24 15:04:22 -0700 | [diff] [blame] | 57 | Mutex* Locks::host_dlopen_handles_lock_ = nullptr; |
Mathieu Chartier | a5a53ef | 2014-09-12 12:58:05 -0700 | [diff] [blame] | 58 | Mutex* Locks::reference_processor_lock_ = nullptr; |
| 59 | Mutex* Locks::reference_queue_cleared_references_lock_ = nullptr; |
| 60 | Mutex* Locks::reference_queue_finalizer_references_lock_ = nullptr; |
| 61 | Mutex* Locks::reference_queue_phantom_references_lock_ = nullptr; |
| 62 | Mutex* Locks::reference_queue_soft_references_lock_ = nullptr; |
| 63 | Mutex* Locks::reference_queue_weak_references_lock_ = nullptr; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 64 | Mutex* Locks::runtime_shutdown_lock_ = nullptr; |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 65 | Mutex* Locks::cha_lock_ = nullptr; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 66 | Mutex* Locks::thread_list_lock_ = nullptr; |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 67 | ConditionVariable* Locks::thread_exit_cond_ = nullptr; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 68 | Mutex* Locks::thread_suspend_count_lock_ = nullptr; |
| 69 | Mutex* Locks::trace_lock_ = nullptr; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 70 | Mutex* Locks::unexpected_signal_lock_ = nullptr; |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 71 | Mutex* Locks::user_code_suspension_lock_ = nullptr; |
Andreas Gampe | 5bdb655 | 2015-07-22 23:44:55 -0700 | [diff] [blame] | 72 | Uninterruptible Roles::uninterruptible_; |
Andreas Gampe | 05a364c | 2016-10-14 13:27:12 -0700 | [diff] [blame] | 73 | ReaderWriterMutex* Locks::jni_globals_lock_ = nullptr; |
| 74 | Mutex* Locks::jni_weak_globals_lock_ = nullptr; |
Andreas Gampe | cc1b535 | 2016-12-01 16:58:38 -0800 | [diff] [blame] | 75 | ReaderWriterMutex* Locks::dex_lock_ = nullptr; |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 76 | std::vector<BaseMutex*> Locks::expected_mutexes_on_weak_ref_access_; |
Hiroshi Yamauchi | 8a43324 | 2017-03-07 14:39:22 -0800 | [diff] [blame] | 77 | Atomic<const BaseMutex*> Locks::expected_mutexes_on_weak_ref_access_guard_; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 78 | |
| 79 | struct AllMutexData { |
| 80 | // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait). |
| 81 | Atomic<const BaseMutex*> all_mutexes_guard; |
| 82 | // All created mutexes guarded by all_mutexes_guard_. |
| 83 | std::set<BaseMutex*>* all_mutexes; |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 84 | AllMutexData() : all_mutexes(nullptr) {} |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 85 | }; |
| 86 | static struct AllMutexData gAllMutexData[kAllMutexDataSize]; |
| 87 | |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 88 | #if ART_USE_FUTEXES |
| 89 | static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) { |
Brian Carlstrom | fb6996f | 2013-07-18 18:21:14 -0700 | [diff] [blame] | 90 | const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds. |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 91 | result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec; |
| 92 | result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec; |
| 93 | if (result_ts->tv_nsec < 0) { |
| 94 | result_ts->tv_sec--; |
| 95 | result_ts->tv_nsec += one_sec; |
| 96 | } else if (result_ts->tv_nsec > one_sec) { |
| 97 | result_ts->tv_sec++; |
| 98 | result_ts->tv_nsec -= one_sec; |
| 99 | } |
| 100 | return result_ts->tv_sec < 0; |
| 101 | } |
| 102 | #endif |
| 103 | |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 104 | class ScopedAllMutexesLock FINAL { |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 105 | public: |
Brian Carlstrom | 93ba893 | 2013-07-17 21:31:49 -0700 | [diff] [blame] | 106 | explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) { |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 107 | while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) { |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 108 | NanoSleep(100); |
| 109 | } |
| 110 | } |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 111 | |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 112 | ~ScopedAllMutexesLock() { |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 113 | while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) { |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 114 | NanoSleep(100); |
| 115 | } |
| 116 | } |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 117 | |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 118 | private: |
| 119 | const BaseMutex* const mutex_; |
| 120 | }; |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 121 | |
Hiroshi Yamauchi | 8a43324 | 2017-03-07 14:39:22 -0800 | [diff] [blame] | 122 | class Locks::ScopedExpectedMutexesOnWeakRefAccessLock FINAL { |
| 123 | public: |
| 124 | explicit ScopedExpectedMutexesOnWeakRefAccessLock(const BaseMutex* mutex) : mutex_(mutex) { |
| 125 | while (!Locks::expected_mutexes_on_weak_ref_access_guard_.CompareExchangeWeakAcquire(0, |
| 126 | mutex)) { |
| 127 | NanoSleep(100); |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | ~ScopedExpectedMutexesOnWeakRefAccessLock() { |
| 132 | while (!Locks::expected_mutexes_on_weak_ref_access_guard_.CompareExchangeWeakRelease(mutex_, |
| 133 | 0)) { |
| 134 | NanoSleep(100); |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | private: |
| 139 | const BaseMutex* const mutex_; |
| 140 | }; |
| 141 | |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 142 | // Scoped class that generates events at the beginning and end of lock contention. |
| 143 | class ScopedContentionRecorder FINAL : public ValueObject { |
| 144 | public: |
| 145 | ScopedContentionRecorder(BaseMutex* mutex, uint64_t blocked_tid, uint64_t owner_tid) |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 146 | : mutex_(kLogLockContentions ? mutex : nullptr), |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 147 | blocked_tid_(kLogLockContentions ? blocked_tid : 0), |
| 148 | owner_tid_(kLogLockContentions ? owner_tid : 0), |
| 149 | start_nano_time_(kLogLockContentions ? NanoTime() : 0) { |
| 150 | if (ATRACE_ENABLED()) { |
| 151 | std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")", |
| 152 | mutex->GetName(), owner_tid); |
| 153 | ATRACE_BEGIN(msg.c_str()); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | ~ScopedContentionRecorder() { |
| 158 | ATRACE_END(); |
| 159 | if (kLogLockContentions) { |
| 160 | uint64_t end_nano_time = NanoTime(); |
| 161 | mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_); |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | private: |
| 166 | BaseMutex* const mutex_; |
| 167 | const uint64_t blocked_tid_; |
| 168 | const uint64_t owner_tid_; |
| 169 | const uint64_t start_nano_time_; |
| 170 | }; |
| 171 | |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 172 | BaseMutex::BaseMutex(const char* name, LockLevel level) |
| 173 | : level_(level), |
| 174 | name_(name), |
| 175 | should_respond_to_empty_checkpoint_request_(false) { |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 176 | if (kLogLockContentions) { |
| 177 | ScopedAllMutexesLock mu(this); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 178 | std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes; |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 179 | if (*all_mutexes_ptr == nullptr) { |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 180 | // We leak the global set of all mutexes to avoid ordering issues in global variable |
| 181 | // construction/destruction. |
| 182 | *all_mutexes_ptr = new std::set<BaseMutex*>(); |
| 183 | } |
| 184 | (*all_mutexes_ptr)->insert(this); |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 185 | } |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | BaseMutex::~BaseMutex() { |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 189 | if (kLogLockContentions) { |
| 190 | ScopedAllMutexesLock mu(this); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 191 | gAllMutexData->all_mutexes->erase(this); |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 192 | } |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | void BaseMutex::DumpAll(std::ostream& os) { |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 196 | if (kLogLockContentions) { |
| 197 | os << "Mutex logging:\n"; |
| 198 | ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1)); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 199 | std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes; |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 200 | if (all_mutexes == nullptr) { |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 201 | // No mutexes have been created yet during at startup. |
| 202 | return; |
| 203 | } |
| 204 | typedef std::set<BaseMutex*>::const_iterator It; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 205 | os << "(Contended)\n"; |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 206 | for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) { |
| 207 | BaseMutex* mutex = *it; |
| 208 | if (mutex->HasEverContended()) { |
| 209 | mutex->Dump(os); |
| 210 | os << "\n"; |
| 211 | } |
| 212 | } |
| 213 | os << "(Never contented)\n"; |
| 214 | for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) { |
| 215 | BaseMutex* mutex = *it; |
| 216 | if (!mutex->HasEverContended()) { |
| 217 | mutex->Dump(os); |
| 218 | os << "\n"; |
| 219 | } |
| 220 | } |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 221 | } |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 222 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 223 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 224 | void BaseMutex::CheckSafeToWait(Thread* self) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 225 | if (self == nullptr) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 226 | CheckUnattachedThread(level_); |
| 227 | return; |
| 228 | } |
Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 229 | if (kDebugLocking) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 230 | CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock) |
| 231 | << "Waiting on unacquired mutex: " << name_; |
Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 232 | bool bad_mutexes_held = false; |
Elliott Hughes | 0f82716 | 2013-02-26 12:12:58 -0800 | [diff] [blame] | 233 | for (int i = kLockLevelCount - 1; i >= 0; --i) { |
Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 234 | if (i != level_) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 235 | BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i)); |
Alex Light | 79400aa | 2017-07-18 15:34:21 -0700 | [diff] [blame] | 236 | // We allow the thread to wait even if the user_code_suspension_lock_ is held so long as we |
| 237 | // are some thread's resume_cond_ (level_ == kThreadSuspendCountLock). This just means that |
| 238 | // gc or some other internal process is suspending the thread while it is trying to suspend |
| 239 | // some other thread. So long as the current thread is not being suspended by a |
| 240 | // SuspendReason::kForUserCode (which needs the user_code_suspension_lock_ to clear) this is |
| 241 | // fine. |
| 242 | if (held_mutex == Locks::user_code_suspension_lock_ && level_ == kThreadSuspendCountLock) { |
| 243 | // No thread safety analysis is fine since we have both the user_code_suspension_lock_ |
| 244 | // from the line above and the ThreadSuspendCountLock since it is our level_. We use this |
| 245 | // lambda to avoid having to annotate the whole function as NO_THREAD_SAFETY_ANALYSIS. |
| 246 | auto is_suspending_for_user_code = [self]() NO_THREAD_SAFETY_ANALYSIS { |
| 247 | return self->GetUserCodeSuspendCount() != 0; |
| 248 | }; |
| 249 | if (is_suspending_for_user_code()) { |
| 250 | LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" " |
| 251 | << "(level " << LockLevel(i) << ") while performing wait on " |
| 252 | << "\"" << name_ << "\" (level " << level_ << ") " |
| 253 | << "with SuspendReason::kForUserCode pending suspensions"; |
| 254 | bad_mutexes_held = true; |
| 255 | } |
| 256 | } else if (held_mutex != nullptr) { |
Elliott Hughes | 0f82716 | 2013-02-26 12:12:58 -0800 | [diff] [blame] | 257 | LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" " |
| 258 | << "(level " << LockLevel(i) << ") while performing wait on " |
| 259 | << "\"" << name_ << "\" (level " << level_ << ")"; |
Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 260 | bad_mutexes_held = true; |
| 261 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 262 | } |
| 263 | } |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 264 | if (gAborting == 0) { // Avoid recursive aborts. |
Alex Light | 79400aa | 2017-07-18 15:34:21 -0700 | [diff] [blame] | 265 | CHECK(!bad_mutexes_held) << this; |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 266 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 267 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 268 | } |
| 269 | |
Ian Rogers | 37f3c96 | 2014-07-17 11:25:30 -0700 | [diff] [blame] | 270 | void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) { |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 271 | if (kLogLockContentions) { |
| 272 | // Atomically add value to wait_time. |
Ian Rogers | 37f3c96 | 2014-07-17 11:25:30 -0700 | [diff] [blame] | 273 | wait_time.FetchAndAddSequentiallyConsistent(value); |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 274 | } |
| 275 | } |
| 276 | |
Brian Carlstrom | 0de7985 | 2013-07-25 22:29:58 -0700 | [diff] [blame] | 277 | void BaseMutex::RecordContention(uint64_t blocked_tid, |
| 278 | uint64_t owner_tid, |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 279 | uint64_t nano_time_blocked) { |
| 280 | if (kLogLockContentions) { |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 281 | ContentionLogData* data = contention_log_data_; |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 282 | ++(data->contention_count); |
| 283 | data->AddToWaitTime(nano_time_blocked); |
| 284 | ContentionLogEntry* log = data->contention_log; |
| 285 | // This code is intentionally racy as it is only used for diagnostics. |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 286 | uint32_t slot = data->cur_content_log_entry.LoadRelaxed(); |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 287 | if (log[slot].blocked_tid == blocked_tid && |
| 288 | log[slot].owner_tid == blocked_tid) { |
| 289 | ++log[slot].count; |
| 290 | } else { |
| 291 | uint32_t new_slot; |
| 292 | do { |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 293 | slot = data->cur_content_log_entry.LoadRelaxed(); |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 294 | new_slot = (slot + 1) % kContentionLogSize; |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 295 | } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot)); |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 296 | log[new_slot].blocked_tid = blocked_tid; |
| 297 | log[new_slot].owner_tid = owner_tid; |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 298 | log[new_slot].count.StoreRelaxed(1); |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 299 | } |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 300 | } |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 301 | } |
| 302 | |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 303 | void BaseMutex::DumpContention(std::ostream& os) const { |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 304 | if (kLogLockContentions) { |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 305 | const ContentionLogData* data = contention_log_data_; |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 306 | const ContentionLogEntry* log = data->contention_log; |
Ian Rogers | 37f3c96 | 2014-07-17 11:25:30 -0700 | [diff] [blame] | 307 | uint64_t wait_time = data->wait_time.LoadRelaxed(); |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 308 | uint32_t contention_count = data->contention_count.LoadRelaxed(); |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 309 | if (contention_count == 0) { |
| 310 | os << "never contended"; |
| 311 | } else { |
| 312 | os << "contended " << contention_count |
Mathieu Chartier | 73d1e17 | 2014-04-11 17:53:48 -0700 | [diff] [blame] | 313 | << " total wait of contender " << PrettyDuration(wait_time) |
| 314 | << " average " << PrettyDuration(wait_time / contention_count); |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 315 | SafeMap<uint64_t, size_t> most_common_blocker; |
| 316 | SafeMap<uint64_t, size_t> most_common_blocked; |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 317 | for (size_t i = 0; i < kContentionLogSize; ++i) { |
| 318 | uint64_t blocked_tid = log[i].blocked_tid; |
| 319 | uint64_t owner_tid = log[i].owner_tid; |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 320 | uint32_t count = log[i].count.LoadRelaxed(); |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 321 | if (count > 0) { |
Mathieu Chartier | 73d1e17 | 2014-04-11 17:53:48 -0700 | [diff] [blame] | 322 | auto it = most_common_blocked.find(blocked_tid); |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 323 | if (it != most_common_blocked.end()) { |
| 324 | most_common_blocked.Overwrite(blocked_tid, it->second + count); |
| 325 | } else { |
| 326 | most_common_blocked.Put(blocked_tid, count); |
| 327 | } |
| 328 | it = most_common_blocker.find(owner_tid); |
| 329 | if (it != most_common_blocker.end()) { |
| 330 | most_common_blocker.Overwrite(owner_tid, it->second + count); |
| 331 | } else { |
| 332 | most_common_blocker.Put(owner_tid, count); |
| 333 | } |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 334 | } |
| 335 | } |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 336 | uint64_t max_tid = 0; |
| 337 | size_t max_tid_count = 0; |
Mathieu Chartier | 73d1e17 | 2014-04-11 17:53:48 -0700 | [diff] [blame] | 338 | for (const auto& pair : most_common_blocked) { |
| 339 | if (pair.second > max_tid_count) { |
| 340 | max_tid = pair.first; |
| 341 | max_tid_count = pair.second; |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 342 | } |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 343 | } |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 344 | if (max_tid != 0) { |
| 345 | os << " sample shows most blocked tid=" << max_tid; |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 346 | } |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 347 | max_tid = 0; |
| 348 | max_tid_count = 0; |
Mathieu Chartier | 73d1e17 | 2014-04-11 17:53:48 -0700 | [diff] [blame] | 349 | for (const auto& pair : most_common_blocker) { |
| 350 | if (pair.second > max_tid_count) { |
| 351 | max_tid = pair.first; |
| 352 | max_tid_count = pair.second; |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 353 | } |
| 354 | } |
| 355 | if (max_tid != 0) { |
| 356 | os << " sample shows tid=" << max_tid << " owning during this time"; |
| 357 | } |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 358 | } |
| 359 | } |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 360 | } |
| 361 | |
| 362 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 363 | Mutex::Mutex(const char* name, LockLevel level, bool recursive) |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 364 | : BaseMutex(name, level), exclusive_owner_(0), recursive_(recursive), recursion_count_(0) { |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 365 | #if ART_USE_FUTEXES |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 366 | DCHECK_EQ(0, state_.LoadRelaxed()); |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 367 | DCHECK_EQ(0, num_contenders_.LoadRelaxed()); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 368 | #else |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 369 | CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr)); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 370 | #endif |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 371 | } |
| 372 | |
David Sehr | f42eb2c | 2016-10-19 13:20:45 -0700 | [diff] [blame] | 373 | // Helper to allow checking shutdown while locking for thread safety. |
| 374 | static bool IsSafeToCallAbortSafe() { |
| 375 | MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_); |
| 376 | return Locks::IsSafeToCallAbortRacy(); |
Andreas Gampe | 8f1fa10 | 2015-01-22 19:48:51 -0800 | [diff] [blame] | 377 | } |
| 378 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 379 | Mutex::~Mutex() { |
David Sehr | f42eb2c | 2016-10-19 13:20:45 -0700 | [diff] [blame] | 380 | bool safe_to_call_abort = Locks::IsSafeToCallAbortRacy(); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 381 | #if ART_USE_FUTEXES |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 382 | if (state_.LoadRelaxed() != 0) { |
David Sehr | f42eb2c | 2016-10-19 13:20:45 -0700 | [diff] [blame] | 383 | LOG(safe_to_call_abort ? FATAL : WARNING) |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 384 | << "destroying mutex with owner: " << GetExclusiveOwnerTid(); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 385 | } else { |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 386 | if (GetExclusiveOwnerTid() != 0) { |
David Sehr | f42eb2c | 2016-10-19 13:20:45 -0700 | [diff] [blame] | 387 | LOG(safe_to_call_abort ? FATAL : WARNING) |
| 388 | << "unexpectedly found an owner on unlocked mutex " << name_; |
Andreas Gampe | 8f1fa10 | 2015-01-22 19:48:51 -0800 | [diff] [blame] | 389 | } |
| 390 | if (num_contenders_.LoadSequentiallyConsistent() != 0) { |
David Sehr | f42eb2c | 2016-10-19 13:20:45 -0700 | [diff] [blame] | 391 | LOG(safe_to_call_abort ? FATAL : WARNING) |
| 392 | << "unexpectedly found a contender on mutex " << name_; |
Mathieu Chartier | cef50f0 | 2014-12-09 17:38:52 -0800 | [diff] [blame] | 393 | } |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 394 | } |
| 395 | #else |
Elliott Hughes | e62934d | 2012-04-09 11:24:29 -0700 | [diff] [blame] | 396 | // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread |
| 397 | // may still be using locks. |
Elliott Hughes | 6b35575 | 2012-01-13 16:49:08 -0800 | [diff] [blame] | 398 | int rc = pthread_mutex_destroy(&mutex_); |
| 399 | if (rc != 0) { |
| 400 | errno = rc; |
David Sehr | f42eb2c | 2016-10-19 13:20:45 -0700 | [diff] [blame] | 401 | PLOG(safe_to_call_abort ? FATAL : WARNING) |
| 402 | << "pthread_mutex_destroy failed for " << name_; |
Elliott Hughes | 6b35575 | 2012-01-13 16:49:08 -0800 | [diff] [blame] | 403 | } |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 404 | #endif |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 405 | } |
| 406 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 407 | void Mutex::ExclusiveLock(Thread* self) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 408 | DCHECK(self == nullptr || self == Thread::Current()); |
Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 409 | if (kDebugLocking && !recursive_) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 410 | AssertNotHeld(self); |
Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 411 | } |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 412 | if (!recursive_ || !IsExclusiveHeld(self)) { |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 413 | #if ART_USE_FUTEXES |
| 414 | bool done = false; |
| 415 | do { |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 416 | int32_t cur_state = state_.LoadRelaxed(); |
Hiroshi Yamauchi | 967a0ad | 2013-09-10 16:24:21 -0700 | [diff] [blame] | 417 | if (LIKELY(cur_state == 0)) { |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 418 | // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition. |
| 419 | done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 420 | } else { |
| 421 | // Failed to acquire, hang up. |
Hiroshi Yamauchi | b373308 | 2013-08-12 17:28:49 -0700 | [diff] [blame] | 422 | ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid()); |
Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 423 | num_contenders_++; |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 424 | if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) { |
| 425 | self->CheckEmptyCheckpointFromMutex(); |
| 426 | } |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 427 | if (futex(state_.Address(), FUTEX_WAIT, 1, nullptr, nullptr, 0) != 0) { |
Brian Carlstrom | 0de7985 | 2013-07-25 22:29:58 -0700 | [diff] [blame] | 428 | // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning. |
| 429 | // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock. |
| 430 | if ((errno != EAGAIN) && (errno != EINTR)) { |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 431 | PLOG(FATAL) << "futex wait failed for " << name_; |
| 432 | } |
| 433 | } |
Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 434 | num_contenders_--; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 435 | } |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 436 | } while (!done); |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 437 | DCHECK_EQ(state_.LoadRelaxed(), 1); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 438 | #else |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 439 | CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_)); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 440 | #endif |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 441 | DCHECK_EQ(GetExclusiveOwnerTid(), 0); |
| 442 | exclusive_owner_.StoreRelaxed(SafeGetTid(self)); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 443 | RegisterAsLocked(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 444 | } |
| 445 | recursion_count_++; |
Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 446 | if (kDebugLocking) { |
| 447 | CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: " |
| 448 | << name_ << " " << recursion_count_; |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 449 | AssertHeld(self); |
Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 450 | } |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 451 | } |
| 452 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 453 | bool Mutex::ExclusiveTryLock(Thread* self) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 454 | DCHECK(self == nullptr || self == Thread::Current()); |
Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 455 | if (kDebugLocking && !recursive_) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 456 | AssertNotHeld(self); |
Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 457 | } |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 458 | if (!recursive_ || !IsExclusiveHeld(self)) { |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 459 | #if ART_USE_FUTEXES |
| 460 | bool done = false; |
| 461 | do { |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 462 | int32_t cur_state = state_.LoadRelaxed(); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 463 | if (cur_state == 0) { |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 464 | // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition. |
| 465 | done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 466 | } else { |
| 467 | return false; |
| 468 | } |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 469 | } while (!done); |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 470 | DCHECK_EQ(state_.LoadRelaxed(), 1); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 471 | #else |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 472 | int result = pthread_mutex_trylock(&mutex_); |
| 473 | if (result == EBUSY) { |
| 474 | return false; |
| 475 | } |
| 476 | if (result != 0) { |
| 477 | errno = result; |
| 478 | PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_; |
| 479 | } |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 480 | #endif |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 481 | DCHECK_EQ(GetExclusiveOwnerTid(), 0); |
| 482 | exclusive_owner_.StoreRelaxed(SafeGetTid(self)); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 483 | RegisterAsLocked(self); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 484 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 485 | recursion_count_++; |
Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 486 | if (kDebugLocking) { |
| 487 | CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: " |
| 488 | << name_ << " " << recursion_count_; |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 489 | AssertHeld(self); |
Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 490 | } |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 491 | return true; |
| 492 | } |
| 493 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 494 | void Mutex::ExclusiveUnlock(Thread* self) { |
Mathieu Chartier | eb0a179 | 2014-12-15 17:23:45 -0800 | [diff] [blame] | 495 | if (kIsDebugBuild && self != nullptr && self != Thread::Current()) { |
| 496 | std::string name1 = "<null>"; |
| 497 | std::string name2 = "<null>"; |
| 498 | if (self != nullptr) { |
| 499 | self->GetThreadName(name1); |
| 500 | } |
| 501 | if (Thread::Current() != nullptr) { |
| 502 | Thread::Current()->GetThreadName(name2); |
| 503 | } |
Mathieu Chartier | 4c10110 | 2015-01-27 17:14:16 -0800 | [diff] [blame] | 504 | LOG(FATAL) << GetName() << " level=" << level_ << " self=" << name1 |
| 505 | << " Thread::Current()=" << name2; |
Mathieu Chartier | eb0a179 | 2014-12-15 17:23:45 -0800 | [diff] [blame] | 506 | } |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 507 | AssertHeld(self); |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 508 | DCHECK_NE(GetExclusiveOwnerTid(), 0); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 509 | recursion_count_--; |
| 510 | if (!recursive_ || recursion_count_ == 0) { |
Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 511 | if (kDebugLocking) { |
| 512 | CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: " |
| 513 | << name_ << " " << recursion_count_; |
| 514 | } |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 515 | RegisterAsUnlocked(self); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 516 | #if ART_USE_FUTEXES |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 517 | bool done = false; |
| 518 | do { |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 519 | int32_t cur_state = state_.LoadRelaxed(); |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 520 | if (LIKELY(cur_state == 1)) { |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 521 | // We're no longer the owner. |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 522 | exclusive_owner_.StoreRelaxed(0); |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 523 | // Change state to 0 and impose load/store ordering appropriate for lock release. |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 524 | // Note, the relaxed loads below mustn't reorder before the CompareExchange. |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 525 | // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing |
| 526 | // a status bit into the state on contention. |
| 527 | done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */); |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 528 | if (LIKELY(done)) { // Spurious fail? |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 529 | // Wake a contender. |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 530 | if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 531 | futex(state_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0); |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 532 | } |
| 533 | } |
| 534 | } else { |
| 535 | // Logging acquires the logging lock, avoid infinite recursion in that case. |
| 536 | if (this != Locks::logging_lock_) { |
| 537 | LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_; |
| 538 | } else { |
Andreas Gampe | 3fec9ac | 2016-09-13 10:47:28 -0700 | [diff] [blame] | 539 | LogHelper::LogLineLowStack(__FILE__, |
| 540 | __LINE__, |
| 541 | ::android::base::FATAL_WITHOUT_ABORT, |
| 542 | StringPrintf("Unexpected state_ %d in unlock for %s", |
| 543 | cur_state, name_).c_str()); |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 544 | _exit(1); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 545 | } |
| 546 | } |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 547 | } while (!done); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 548 | #else |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 549 | exclusive_owner_.StoreRelaxed(0); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 550 | CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_)); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 551 | #endif |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 552 | } |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 553 | } |
| 554 | |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 555 | void Mutex::Dump(std::ostream& os) const { |
| 556 | os << (recursive_ ? "recursive " : "non-recursive ") |
| 557 | << name_ |
| 558 | << " level=" << static_cast<int>(level_) |
| 559 | << " rec=" << recursion_count_ |
| 560 | << " owner=" << GetExclusiveOwnerTid() << " "; |
| 561 | DumpContention(os); |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 562 | } |
| 563 | |
| 564 | std::ostream& operator<<(std::ostream& os, const Mutex& mu) { |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 565 | mu.Dump(os); |
| 566 | return os; |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 567 | } |
| 568 | |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 569 | void Mutex::WakeupToRespondToEmptyCheckpoint() { |
| 570 | #if ART_USE_FUTEXES |
| 571 | // Wake up all the waiters so they will respond to the emtpy checkpoint. |
| 572 | DCHECK(should_respond_to_empty_checkpoint_request_); |
| 573 | if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) { |
| 574 | futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0); |
| 575 | } |
| 576 | #else |
| 577 | LOG(FATAL) << "Non futex case isn't supported."; |
| 578 | #endif |
| 579 | } |
| 580 | |
Brian Carlstrom | 02c8cc6 | 2013-07-18 15:54:44 -0700 | [diff] [blame] | 581 | ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level) |
| 582 | : BaseMutex(name, level) |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 583 | #if ART_USE_FUTEXES |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 584 | , state_(0), num_pending_readers_(0), num_pending_writers_(0) |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 585 | #endif |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 586 | { // NOLINT(whitespace/braces) |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 587 | #if !ART_USE_FUTEXES |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 588 | CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr)); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 589 | #endif |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 590 | exclusive_owner_.StoreRelaxed(0); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 591 | } |
| 592 | |
| 593 | ReaderWriterMutex::~ReaderWriterMutex() { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 594 | #if ART_USE_FUTEXES |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 595 | CHECK_EQ(state_.LoadRelaxed(), 0); |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 596 | CHECK_EQ(GetExclusiveOwnerTid(), 0); |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 597 | CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0); |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 598 | CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 599 | #else |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 600 | // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread |
| 601 | // may still be using locks. |
| 602 | int rc = pthread_rwlock_destroy(&rwlock_); |
| 603 | if (rc != 0) { |
| 604 | errno = rc; |
David Sehr | f42eb2c | 2016-10-19 13:20:45 -0700 | [diff] [blame] | 605 | bool is_safe_to_call_abort = IsSafeToCallAbortSafe(); |
| 606 | PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_rwlock_destroy failed for " << name_; |
Brian Carlstrom | cd74c4b | 2012-01-23 13:21:00 -0800 | [diff] [blame] | 607 | } |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 608 | #endif |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 609 | } |
| 610 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 611 | void ReaderWriterMutex::ExclusiveLock(Thread* self) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 612 | DCHECK(self == nullptr || self == Thread::Current()); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 613 | AssertNotExclusiveHeld(self); |
| 614 | #if ART_USE_FUTEXES |
| 615 | bool done = false; |
| 616 | do { |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 617 | int32_t cur_state = state_.LoadRelaxed(); |
Hiroshi Yamauchi | 967a0ad | 2013-09-10 16:24:21 -0700 | [diff] [blame] | 618 | if (LIKELY(cur_state == 0)) { |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 619 | // 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 Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 621 | } else { |
| 622 | // Failed to acquire, hang up. |
Hiroshi Yamauchi | b373308 | 2013-08-12 17:28:49 -0700 | [diff] [blame] | 623 | ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid()); |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 624 | ++num_pending_writers_; |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 625 | if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) { |
| 626 | self->CheckEmptyCheckpointFromMutex(); |
| 627 | } |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 628 | if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) { |
Brian Carlstrom | 0de7985 | 2013-07-25 22:29:58 -0700 | [diff] [blame] | 629 | // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning. |
| 630 | // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock. |
| 631 | if ((errno != EAGAIN) && (errno != EINTR)) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 632 | PLOG(FATAL) << "futex wait failed for " << name_; |
| 633 | } |
| 634 | } |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 635 | --num_pending_writers_; |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 636 | } |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 637 | } while (!done); |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 638 | DCHECK_EQ(state_.LoadRelaxed(), -1); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 639 | #else |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 640 | CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_)); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 641 | #endif |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 642 | DCHECK_EQ(GetExclusiveOwnerTid(), 0); |
| 643 | exclusive_owner_.StoreRelaxed(SafeGetTid(self)); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 644 | RegisterAsLocked(self); |
| 645 | AssertExclusiveHeld(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 646 | } |
| 647 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 648 | void ReaderWriterMutex::ExclusiveUnlock(Thread* self) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 649 | DCHECK(self == nullptr || self == Thread::Current()); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 650 | AssertExclusiveHeld(self); |
| 651 | RegisterAsUnlocked(self); |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 652 | DCHECK_NE(GetExclusiveOwnerTid(), 0); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 653 | #if ART_USE_FUTEXES |
| 654 | bool done = false; |
| 655 | do { |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 656 | int32_t cur_state = state_.LoadRelaxed(); |
Hiroshi Yamauchi | 967a0ad | 2013-09-10 16:24:21 -0700 | [diff] [blame] | 657 | if (LIKELY(cur_state == -1)) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 658 | // We're no longer the owner. |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 659 | exclusive_owner_.StoreRelaxed(0); |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 660 | // Change state from -1 to 0 and impose load/store ordering appropriate for lock release. |
| 661 | // Note, the relaxed loads below musn't reorder before the CompareExchange. |
| 662 | // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing |
| 663 | // a status bit into the state on contention. |
| 664 | done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */); |
| 665 | if (LIKELY(done)) { // Weak CAS may fail spuriously. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 666 | // Wake any waiters. |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 667 | if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 || |
| 668 | num_pending_writers_.LoadRelaxed() > 0)) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 669 | futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 670 | } |
| 671 | } |
| 672 | } else { |
| 673 | LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_; |
| 674 | } |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 675 | } while (!done); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 676 | #else |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 677 | exclusive_owner_.StoreRelaxed(0); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 678 | CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_)); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 679 | #endif |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 680 | } |
| 681 | |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 682 | #if HAVE_TIMED_RWLOCK |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 683 | bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 684 | DCHECK(self == nullptr || self == Thread::Current()); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 685 | #if ART_USE_FUTEXES |
| 686 | bool done = false; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 687 | timespec end_abs_ts; |
tony.ys_liu | 071e48e | 2015-01-14 18:28:03 +0800 | [diff] [blame] | 688 | InitTimeSpec(true, CLOCK_MONOTONIC, ms, ns, &end_abs_ts); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 689 | do { |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 690 | int32_t cur_state = state_.LoadRelaxed(); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 691 | if (cur_state == 0) { |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 692 | // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition. |
| 693 | done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 694 | } else { |
| 695 | // Failed to acquire, hang up. |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 696 | timespec now_abs_ts; |
tony.ys_liu | 071e48e | 2015-01-14 18:28:03 +0800 | [diff] [blame] | 697 | InitTimeSpec(true, CLOCK_MONOTONIC, 0, 0, &now_abs_ts); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 698 | timespec rel_ts; |
| 699 | if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) { |
| 700 | return false; // Timed out. |
| 701 | } |
Hiroshi Yamauchi | b373308 | 2013-08-12 17:28:49 -0700 | [diff] [blame] | 702 | ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid()); |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 703 | ++num_pending_writers_; |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 704 | if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) { |
| 705 | self->CheckEmptyCheckpointFromMutex(); |
| 706 | } |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 707 | if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, nullptr, 0) != 0) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 708 | if (errno == ETIMEDOUT) { |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 709 | --num_pending_writers_; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 710 | return false; // Timed out. |
Brian Carlstrom | 0de7985 | 2013-07-25 22:29:58 -0700 | [diff] [blame] | 711 | } else if ((errno != EAGAIN) && (errno != EINTR)) { |
| 712 | // EAGAIN and EINTR both indicate a spurious failure, |
| 713 | // recompute the relative time out from now and try again. |
| 714 | // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts; |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 715 | PLOG(FATAL) << "timed futex wait failed for " << name_; |
| 716 | } |
| 717 | } |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 718 | --num_pending_writers_; |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 719 | } |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 720 | } while (!done); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 721 | #else |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 722 | timespec ts; |
Brian Carlstrom | bcc2926 | 2012-11-02 11:36:03 -0700 | [diff] [blame] | 723 | InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 724 | int result = pthread_rwlock_timedwrlock(&rwlock_, &ts); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 725 | if (result == ETIMEDOUT) { |
| 726 | return false; |
| 727 | } |
| 728 | if (result != 0) { |
| 729 | errno = result; |
Ian Rogers | a5acfd3 | 2012-08-15 11:50:10 -0700 | [diff] [blame] | 730 | PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 731 | } |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 732 | #endif |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 733 | exclusive_owner_.StoreRelaxed(SafeGetTid(self)); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 734 | RegisterAsLocked(self); |
| 735 | AssertSharedHeld(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 736 | return true; |
| 737 | } |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 738 | #endif |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 739 | |
Ian Rogers | 51d212e | 2014-10-23 17:48:20 -0700 | [diff] [blame] | 740 | #if ART_USE_FUTEXES |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 741 | void ReaderWriterMutex::HandleSharedLockContention(Thread* self, int32_t cur_state) { |
| 742 | // Owner holds it exclusively, hang up. |
| 743 | ScopedContentionRecorder scr(this, GetExclusiveOwnerTid(), SafeGetTid(self)); |
| 744 | ++num_pending_readers_; |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 745 | if (UNLIKELY(should_respond_to_empty_checkpoint_request_)) { |
| 746 | self->CheckEmptyCheckpointFromMutex(); |
| 747 | } |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 748 | if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) { |
Daniel Colascione | 6f4d102 | 2016-11-21 14:35:42 -0800 | [diff] [blame] | 749 | if (errno != EAGAIN && errno != EINTR) { |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 750 | PLOG(FATAL) << "futex wait failed for " << name_; |
| 751 | } |
| 752 | } |
| 753 | --num_pending_readers_; |
| 754 | } |
Ian Rogers | 51d212e | 2014-10-23 17:48:20 -0700 | [diff] [blame] | 755 | #endif |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 756 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 757 | bool ReaderWriterMutex::SharedTryLock(Thread* self) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 758 | DCHECK(self == nullptr || self == Thread::Current()); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 759 | #if ART_USE_FUTEXES |
| 760 | bool done = false; |
| 761 | do { |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 762 | int32_t cur_state = state_.LoadRelaxed(); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 763 | if (cur_state >= 0) { |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 764 | // Add as an extra reader and impose load/store ordering appropriate for lock acquisition. |
| 765 | done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 766 | } else { |
| 767 | // Owner holds it exclusively. |
| 768 | return false; |
| 769 | } |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 770 | } while (!done); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 771 | #else |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 772 | int result = pthread_rwlock_tryrdlock(&rwlock_); |
| 773 | if (result == EBUSY) { |
| 774 | return false; |
| 775 | } |
| 776 | if (result != 0) { |
| 777 | errno = result; |
| 778 | PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_; |
| 779 | } |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 780 | #endif |
| 781 | RegisterAsLocked(self); |
| 782 | AssertSharedHeld(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 783 | return true; |
| 784 | } |
| 785 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 786 | bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 787 | DCHECK(self == nullptr || self == Thread::Current()); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 788 | bool result; |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 789 | if (UNLIKELY(self == nullptr)) { // Handle unattached threads. |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 790 | result = IsExclusiveHeld(self); // TODO: a better best effort here. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 791 | } else { |
| 792 | result = (self->GetHeldMutex(level_) == this); |
| 793 | } |
| 794 | return result; |
| 795 | } |
| 796 | |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 797 | void ReaderWriterMutex::Dump(std::ostream& os) const { |
| 798 | os << name_ |
| 799 | << " level=" << static_cast<int>(level_) |
Mathieu Chartier | 5869a2c | 2014-10-08 14:26:23 -0700 | [diff] [blame] | 800 | << " owner=" << GetExclusiveOwnerTid() |
| 801 | #if ART_USE_FUTEXES |
| 802 | << " state=" << state_.LoadSequentiallyConsistent() |
| 803 | << " num_pending_writers=" << num_pending_writers_.LoadSequentiallyConsistent() |
| 804 | << " num_pending_readers=" << num_pending_readers_.LoadSequentiallyConsistent() |
| 805 | #endif |
| 806 | << " "; |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 807 | DumpContention(os); |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 808 | } |
| 809 | |
| 810 | std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) { |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 811 | mu.Dump(os); |
| 812 | return os; |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 813 | } |
| 814 | |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 815 | std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu) { |
| 816 | mu.Dump(os); |
| 817 | return os; |
| 818 | } |
| 819 | |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 820 | void ReaderWriterMutex::WakeupToRespondToEmptyCheckpoint() { |
| 821 | #if ART_USE_FUTEXES |
| 822 | // Wake up all the waiters so they will respond to the emtpy checkpoint. |
| 823 | DCHECK(should_respond_to_empty_checkpoint_request_); |
| 824 | if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 || |
| 825 | num_pending_writers_.LoadRelaxed() > 0)) { |
| 826 | futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0); |
| 827 | } |
| 828 | #else |
| 829 | LOG(FATAL) << "Non futex case isn't supported."; |
| 830 | #endif |
| 831 | } |
| 832 | |
Ian Rogers | 23055dc | 2013-04-18 16:29:16 -0700 | [diff] [blame] | 833 | ConditionVariable::ConditionVariable(const char* name, Mutex& guard) |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 834 | : name_(name), guard_(guard) { |
| 835 | #if ART_USE_FUTEXES |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 836 | DCHECK_EQ(0, sequence_.LoadRelaxed()); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 837 | num_waiters_ = 0; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 838 | #else |
Narayan Kamath | 51b7102 | 2014-03-04 11:57:09 +0000 | [diff] [blame] | 839 | pthread_condattr_t cond_attrs; |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 840 | CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs)); |
Narayan Kamath | 51b7102 | 2014-03-04 11:57:09 +0000 | [diff] [blame] | 841 | #if !defined(__APPLE__) |
| 842 | // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock. |
Ian Rogers | 51d212e | 2014-10-23 17:48:20 -0700 | [diff] [blame] | 843 | CHECK_MUTEX_CALL(pthread_condattr_setclock, (&cond_attrs, CLOCK_MONOTONIC)); |
Narayan Kamath | 51b7102 | 2014-03-04 11:57:09 +0000 | [diff] [blame] | 844 | #endif |
| 845 | CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs)); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 846 | #endif |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 847 | } |
| 848 | |
| 849 | ConditionVariable::~ConditionVariable() { |
Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 850 | #if ART_USE_FUTEXES |
| 851 | if (num_waiters_!= 0) { |
David Sehr | f42eb2c | 2016-10-19 13:20:45 -0700 | [diff] [blame] | 852 | bool is_safe_to_call_abort = IsSafeToCallAbortSafe(); |
| 853 | LOG(is_safe_to_call_abort ? FATAL : WARNING) |
Andreas Gampe | 3fec9ac | 2016-09-13 10:47:28 -0700 | [diff] [blame] | 854 | << "ConditionVariable::~ConditionVariable for " << name_ |
Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 855 | << " called with " << num_waiters_ << " waiters."; |
Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 856 | } |
| 857 | #else |
Elliott Hughes | e62934d | 2012-04-09 11:24:29 -0700 | [diff] [blame] | 858 | // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread |
| 859 | // may still be using condition variables. |
| 860 | int rc = pthread_cond_destroy(&cond_); |
| 861 | if (rc != 0) { |
| 862 | errno = rc; |
David Sehr | f42eb2c | 2016-10-19 13:20:45 -0700 | [diff] [blame] | 863 | bool is_safe_to_call_abort = IsSafeToCallAbortSafe(); |
| 864 | PLOG(is_safe_to_call_abort ? FATAL : WARNING) << "pthread_cond_destroy failed for " << name_; |
Elliott Hughes | e62934d | 2012-04-09 11:24:29 -0700 | [diff] [blame] | 865 | } |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 866 | #endif |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 867 | } |
| 868 | |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 869 | void ConditionVariable::Broadcast(Thread* self) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 870 | DCHECK(self == nullptr || self == Thread::Current()); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 871 | // TODO: enable below, there's a race in thread creation that causes false failures currently. |
| 872 | // guard_.AssertExclusiveHeld(self); |
Mathieu Chartier | e46cd75 | 2012-10-31 16:56:18 -0700 | [diff] [blame] | 873 | DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self)); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 874 | #if ART_USE_FUTEXES |
Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 875 | if (num_waiters_ > 0) { |
Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 876 | sequence_++; // Indicate the broadcast occurred. |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 877 | bool done = false; |
| 878 | do { |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 879 | int32_t cur_sequence = sequence_.LoadRelaxed(); |
Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 880 | // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring |
| 881 | // mutex unlocks will awaken the requeued waiter thread. |
Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 882 | done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0, |
Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 883 | reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()), |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 884 | guard_.state_.Address(), cur_sequence) != -1; |
Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 885 | if (!done) { |
Daniel Colascione | 6f4d102 | 2016-11-21 14:35:42 -0800 | [diff] [blame] | 886 | if (errno != EAGAIN && errno != EINTR) { |
Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 887 | PLOG(FATAL) << "futex cmp requeue failed for " << name_; |
| 888 | } |
Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 889 | } |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 890 | } while (!done); |
| 891 | } |
| 892 | #else |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 893 | CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_)); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 894 | #endif |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 895 | } |
| 896 | |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 897 | void ConditionVariable::Signal(Thread* self) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 898 | DCHECK(self == nullptr || self == Thread::Current()); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 899 | guard_.AssertExclusiveHeld(self); |
| 900 | #if ART_USE_FUTEXES |
Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 901 | if (num_waiters_ > 0) { |
Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 902 | sequence_++; // Indicate a signal occurred. |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 903 | // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them |
| 904 | // to avoid this, however, requeueing can only move all waiters. |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 905 | int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0); |
Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 906 | // Check something was woken or else we changed sequence_ before they had chance to wait. |
Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 907 | CHECK((num_woken == 0) || (num_woken == 1)); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 908 | } |
| 909 | #else |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 910 | CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_)); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 911 | #endif |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 912 | } |
| 913 | |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 914 | void ConditionVariable::Wait(Thread* self) { |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 915 | guard_.CheckSafeToWait(self); |
| 916 | WaitHoldingLocks(self); |
| 917 | } |
| 918 | |
| 919 | void ConditionVariable::WaitHoldingLocks(Thread* self) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 920 | DCHECK(self == nullptr || self == Thread::Current()); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 921 | guard_.AssertExclusiveHeld(self); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 922 | unsigned int old_recursion_count = guard_.recursion_count_; |
| 923 | #if ART_USE_FUTEXES |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 924 | num_waiters_++; |
Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 925 | // Ensure the Mutex is contended so that requeued threads are awoken. |
Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 926 | guard_.num_contenders_++; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 927 | guard_.recursion_count_ = 1; |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 928 | int32_t cur_sequence = sequence_.LoadRelaxed(); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 929 | guard_.ExclusiveUnlock(self); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 930 | if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, nullptr, nullptr, 0) != 0) { |
Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 931 | // Futex failed, check it is an expected error. |
| 932 | // EAGAIN == EWOULDBLK, so we let the caller try again. |
| 933 | // EINTR implies a signal was sent to this thread. |
| 934 | if ((errno != EINTR) && (errno != EAGAIN)) { |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 935 | PLOG(FATAL) << "futex wait failed for " << name_; |
| 936 | } |
| 937 | } |
Mathieu Chartier | 4d87df6 | 2016-01-07 15:14:19 -0800 | [diff] [blame] | 938 | if (self != nullptr) { |
| 939 | JNIEnvExt* const env = self->GetJniEnv(); |
| 940 | if (UNLIKELY(env != nullptr && env->runtime_deleted)) { |
| 941 | CHECK(self->IsDaemon()); |
| 942 | // If the runtime has been deleted, then we cannot proceed. Just sleep forever. This may |
| 943 | // occur for user daemon threads that get a spurious wakeup. This occurs for test 132 with |
| 944 | // --host and --gdb. |
| 945 | // After we wake up, the runtime may have been shutdown, which means that this condition may |
| 946 | // have been deleted. It is not safe to retry the wait. |
| 947 | SleepForever(); |
| 948 | } |
| 949 | } |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 950 | guard_.ExclusiveLock(self); |
Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 951 | CHECK_GE(num_waiters_, 0); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 952 | num_waiters_--; |
Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 953 | // We awoke and so no longer require awakes from the guard_'s unlock. |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 954 | CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0); |
Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 955 | guard_.num_contenders_--; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 956 | #else |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 957 | pid_t old_owner = guard_.GetExclusiveOwnerTid(); |
| 958 | guard_.exclusive_owner.StoreRelaxed(0); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 959 | guard_.recursion_count_ = 0; |
| 960 | CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_)); |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 961 | guard_.exclusive_owner_.StoreRelaxed(old_owner); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 962 | #endif |
| 963 | guard_.recursion_count_ = old_recursion_count; |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 964 | } |
| 965 | |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 966 | bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 967 | DCHECK(self == nullptr || self == Thread::Current()); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 968 | bool timed_out = false; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 969 | guard_.AssertExclusiveHeld(self); |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 970 | guard_.CheckSafeToWait(self); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 971 | unsigned int old_recursion_count = guard_.recursion_count_; |
| 972 | #if ART_USE_FUTEXES |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 973 | timespec rel_ts; |
Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 974 | InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 975 | num_waiters_++; |
Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 976 | // Ensure the Mutex is contended so that requeued threads are awoken. |
Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 977 | guard_.num_contenders_++; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 978 | guard_.recursion_count_ = 1; |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 979 | int32_t cur_sequence = sequence_.LoadRelaxed(); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 980 | guard_.ExclusiveUnlock(self); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 981 | if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, nullptr, 0) != 0) { |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 982 | if (errno == ETIMEDOUT) { |
Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 983 | // Timed out we're done. |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 984 | timed_out = true; |
Brian Carlstrom | 0de7985 | 2013-07-25 22:29:58 -0700 | [diff] [blame] | 985 | } else if ((errno == EAGAIN) || (errno == EINTR)) { |
Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 986 | // A signal or ConditionVariable::Signal/Broadcast has come in. |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 987 | } else { |
| 988 | PLOG(FATAL) << "timed futex wait failed for " << name_; |
| 989 | } |
| 990 | } |
| 991 | guard_.ExclusiveLock(self); |
Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 992 | CHECK_GE(num_waiters_, 0); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 993 | num_waiters_--; |
Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 994 | // We awoke and so no longer require awakes from the guard_'s unlock. |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 995 | CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0); |
Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 996 | guard_.num_contenders_--; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 997 | #else |
Narayan Kamath | 51b7102 | 2014-03-04 11:57:09 +0000 | [diff] [blame] | 998 | #if !defined(__APPLE__) |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 999 | int clock = CLOCK_MONOTONIC; |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1000 | #else |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 1001 | int clock = CLOCK_REALTIME; |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1002 | #endif |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 1003 | pid_t old_owner = guard_.GetExclusiveOwnerTid(); |
| 1004 | guard_.exclusive_owner_.StoreRelaxed(0); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 1005 | guard_.recursion_count_ = 0; |
| 1006 | timespec ts; |
Brian Carlstrom | bcc2926 | 2012-11-02 11:36:03 -0700 | [diff] [blame] | 1007 | InitTimeSpec(true, clock, ms, ns, &ts); |
Narayan Kamath | 51b7102 | 2014-03-04 11:57:09 +0000 | [diff] [blame] | 1008 | int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts)); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 1009 | if (rc == ETIMEDOUT) { |
| 1010 | timed_out = true; |
| 1011 | } else if (rc != 0) { |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1012 | errno = rc; |
| 1013 | PLOG(FATAL) << "TimedWait failed for " << name_; |
| 1014 | } |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame^] | 1015 | guard_.exclusive_owner_.StoreRelaxed(old_owner); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 1016 | #endif |
| 1017 | guard_.recursion_count_ = old_recursion_count; |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 1018 | return timed_out; |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1019 | } |
| 1020 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1021 | void Locks::Init() { |
| 1022 | if (logging_lock_ != nullptr) { |
| 1023 | // Already initialized. |
Nicolas Geoffray | 7f0a6d6 | 2014-05-26 14:01:46 +0100 | [diff] [blame] | 1024 | if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) { |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1025 | DCHECK(modify_ldt_lock_ != nullptr); |
| 1026 | } else { |
| 1027 | DCHECK(modify_ldt_lock_ == nullptr); |
| 1028 | } |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1029 | DCHECK(abort_lock_ != nullptr); |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 1030 | DCHECK(alloc_tracker_lock_ != nullptr); |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 1031 | DCHECK(allocated_monitor_ids_lock_ != nullptr); |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1032 | DCHECK(allocated_thread_ids_lock_ != nullptr); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1033 | DCHECK(breakpoint_lock_ != nullptr); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1034 | DCHECK(classlinker_classes_lock_ != nullptr); |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 1035 | DCHECK(deoptimization_lock_ != nullptr); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1036 | DCHECK(heap_bitmap_lock_ != nullptr); |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 1037 | DCHECK(oat_file_manager_lock_ != nullptr); |
David Brazdil | ca3c8c3 | 2016-09-06 14:04:48 +0100 | [diff] [blame] | 1038 | DCHECK(verifier_deps_lock_ != nullptr); |
Richard Uhler | a206c74 | 2016-05-24 15:04:22 -0700 | [diff] [blame] | 1039 | DCHECK(host_dlopen_handles_lock_ != nullptr); |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 1040 | DCHECK(intern_table_lock_ != nullptr); |
Andreas Gampe | c808954 | 2017-01-16 12:41:12 -0800 | [diff] [blame] | 1041 | DCHECK(jni_function_table_lock_ != nullptr); |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1042 | DCHECK(jni_libraries_lock_ != nullptr); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1043 | DCHECK(logging_lock_ != nullptr); |
| 1044 | DCHECK(mutator_lock_ != nullptr); |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 1045 | DCHECK(profiler_lock_ != nullptr); |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 1046 | DCHECK(cha_lock_ != nullptr); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1047 | DCHECK(thread_list_lock_ != nullptr); |
| 1048 | DCHECK(thread_suspend_count_lock_ != nullptr); |
| 1049 | DCHECK(trace_lock_ != nullptr); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1050 | DCHECK(unexpected_signal_lock_ != nullptr); |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 1051 | DCHECK(user_code_suspension_lock_ != nullptr); |
Andreas Gampe | cc1b535 | 2016-12-01 16:58:38 -0800 | [diff] [blame] | 1052 | DCHECK(dex_lock_ != nullptr); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1053 | } else { |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1054 | // Create global locks in level order from highest lock level to lowest. |
Ian Rogers | 4ad5cd3 | 2014-11-11 23:08:07 -0800 | [diff] [blame] | 1055 | LockLevel current_lock_level = kInstrumentEntrypointsLock; |
| 1056 | DCHECK(instrument_entrypoints_lock_ == nullptr); |
| 1057 | instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1058 | |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1059 | #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \ |
Chih-Hung Hsieh | fba3997 | 2016-05-11 11:26:48 -0700 | [diff] [blame] | 1060 | if ((new_level) >= current_lock_level) { \ |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 1061 | /* Do not use CHECKs or FATAL here, abort_lock_ is not setup yet. */ \ |
| 1062 | fprintf(stderr, "New local level %d is not less than current level %d\n", \ |
| 1063 | new_level, current_lock_level); \ |
| 1064 | exit(1); \ |
| 1065 | } \ |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 1066 | current_lock_level = new_level; |
| 1067 | |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 1068 | UPDATE_CURRENT_LOCK_LEVEL(kUserCodeSuspensionLock); |
| 1069 | DCHECK(user_code_suspension_lock_ == nullptr); |
| 1070 | user_code_suspension_lock_ = new Mutex("user code suspension lock", current_lock_level); |
| 1071 | |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 1072 | UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock); |
| 1073 | DCHECK(mutator_lock_ == nullptr); |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 1074 | mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level); |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1075 | |
| 1076 | UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock); |
| 1077 | DCHECK(heap_bitmap_lock_ == nullptr); |
| 1078 | heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level); |
| 1079 | |
Jeff Hao | 69dbec6 | 2014-09-15 18:03:41 -0700 | [diff] [blame] | 1080 | UPDATE_CURRENT_LOCK_LEVEL(kTraceLock); |
| 1081 | DCHECK(trace_lock_ == nullptr); |
| 1082 | trace_lock_ = new Mutex("trace lock", current_lock_level); |
| 1083 | |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1084 | UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock); |
| 1085 | DCHECK(runtime_shutdown_lock_ == nullptr); |
| 1086 | runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level); |
| 1087 | |
| 1088 | UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock); |
| 1089 | DCHECK(profiler_lock_ == nullptr); |
| 1090 | profiler_lock_ = new Mutex("profiler lock", current_lock_level); |
| 1091 | |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 1092 | UPDATE_CURRENT_LOCK_LEVEL(kDeoptimizationLock); |
| 1093 | DCHECK(deoptimization_lock_ == nullptr); |
| 1094 | deoptimization_lock_ = new Mutex("Deoptimization lock", current_lock_level); |
| 1095 | |
| 1096 | UPDATE_CURRENT_LOCK_LEVEL(kAllocTrackerLock); |
| 1097 | DCHECK(alloc_tracker_lock_ == nullptr); |
| 1098 | alloc_tracker_lock_ = new Mutex("AllocTracker lock", current_lock_level); |
| 1099 | |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1100 | UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock); |
| 1101 | DCHECK(thread_list_lock_ == nullptr); |
| 1102 | thread_list_lock_ = new Mutex("thread list lock", current_lock_level); |
| 1103 | |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 1104 | UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock); |
| 1105 | DCHECK(jni_libraries_lock_ == nullptr); |
| 1106 | jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level); |
| 1107 | |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1108 | UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1109 | DCHECK(breakpoint_lock_ == nullptr); |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 1110 | breakpoint_lock_ = new ReaderWriterMutex("breakpoint lock", current_lock_level); |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1111 | |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 1112 | UPDATE_CURRENT_LOCK_LEVEL(kCHALock); |
| 1113 | DCHECK(cha_lock_ == nullptr); |
| 1114 | cha_lock_ = new Mutex("CHA lock", current_lock_level); |
| 1115 | |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1116 | UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1117 | DCHECK(classlinker_classes_lock_ == nullptr); |
| 1118 | classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock", |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1119 | current_lock_level); |
| 1120 | |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 1121 | UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock); |
| 1122 | DCHECK(allocated_monitor_ids_lock_ == nullptr); |
| 1123 | allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level); |
| 1124 | |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1125 | UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock); |
| 1126 | DCHECK(allocated_thread_ids_lock_ == nullptr); |
| 1127 | allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level); |
| 1128 | |
Nicolas Geoffray | 7f0a6d6 | 2014-05-26 14:01:46 +0100 | [diff] [blame] | 1129 | if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) { |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1130 | UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock); |
| 1131 | DCHECK(modify_ldt_lock_ == nullptr); |
| 1132 | modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level); |
| 1133 | } |
| 1134 | |
Andreas Gampe | cc1b535 | 2016-12-01 16:58:38 -0800 | [diff] [blame] | 1135 | UPDATE_CURRENT_LOCK_LEVEL(kDexLock); |
| 1136 | DCHECK(dex_lock_ == nullptr); |
| 1137 | dex_lock_ = new ReaderWriterMutex("ClassLinker dex lock", current_lock_level); |
| 1138 | |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 1139 | UPDATE_CURRENT_LOCK_LEVEL(kOatFileManagerLock); |
| 1140 | DCHECK(oat_file_manager_lock_ == nullptr); |
| 1141 | oat_file_manager_lock_ = new ReaderWriterMutex("OatFile manager lock", current_lock_level); |
| 1142 | |
David Brazdil | ca3c8c3 | 2016-09-06 14:04:48 +0100 | [diff] [blame] | 1143 | UPDATE_CURRENT_LOCK_LEVEL(kVerifierDepsLock); |
| 1144 | DCHECK(verifier_deps_lock_ == nullptr); |
Nicolas Geoffray | 340dafa | 2016-11-18 16:03:10 +0000 | [diff] [blame] | 1145 | verifier_deps_lock_ = new ReaderWriterMutex("verifier deps lock", current_lock_level); |
David Brazdil | ca3c8c3 | 2016-09-06 14:04:48 +0100 | [diff] [blame] | 1146 | |
Richard Uhler | a206c74 | 2016-05-24 15:04:22 -0700 | [diff] [blame] | 1147 | UPDATE_CURRENT_LOCK_LEVEL(kHostDlOpenHandlesLock); |
| 1148 | DCHECK(host_dlopen_handles_lock_ == nullptr); |
| 1149 | host_dlopen_handles_lock_ = new Mutex("host dlopen handles lock", current_lock_level); |
Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 1150 | |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1151 | UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1152 | DCHECK(intern_table_lock_ == nullptr); |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1153 | intern_table_lock_ = new Mutex("InternTable lock", current_lock_level); |
| 1154 | |
Mathieu Chartier | a5a53ef | 2014-09-12 12:58:05 -0700 | [diff] [blame] | 1155 | UPDATE_CURRENT_LOCK_LEVEL(kReferenceProcessorLock); |
| 1156 | DCHECK(reference_processor_lock_ == nullptr); |
| 1157 | reference_processor_lock_ = new Mutex("ReferenceProcessor lock", current_lock_level); |
| 1158 | |
| 1159 | UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueClearedReferencesLock); |
| 1160 | DCHECK(reference_queue_cleared_references_lock_ == nullptr); |
| 1161 | reference_queue_cleared_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level); |
| 1162 | |
| 1163 | UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueWeakReferencesLock); |
| 1164 | DCHECK(reference_queue_weak_references_lock_ == nullptr); |
| 1165 | reference_queue_weak_references_lock_ = new Mutex("ReferenceQueue cleared references lock", current_lock_level); |
| 1166 | |
| 1167 | UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueFinalizerReferencesLock); |
| 1168 | DCHECK(reference_queue_finalizer_references_lock_ == nullptr); |
| 1169 | reference_queue_finalizer_references_lock_ = new Mutex("ReferenceQueue finalizer references lock", current_lock_level); |
| 1170 | |
| 1171 | UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueuePhantomReferencesLock); |
| 1172 | DCHECK(reference_queue_phantom_references_lock_ == nullptr); |
| 1173 | reference_queue_phantom_references_lock_ = new Mutex("ReferenceQueue phantom references lock", current_lock_level); |
| 1174 | |
| 1175 | UPDATE_CURRENT_LOCK_LEVEL(kReferenceQueueSoftReferencesLock); |
| 1176 | DCHECK(reference_queue_soft_references_lock_ == nullptr); |
| 1177 | reference_queue_soft_references_lock_ = new Mutex("ReferenceQueue soft references lock", current_lock_level); |
| 1178 | |
Andreas Gampe | 05a364c | 2016-10-14 13:27:12 -0700 | [diff] [blame] | 1179 | UPDATE_CURRENT_LOCK_LEVEL(kJniGlobalsLock); |
| 1180 | DCHECK(jni_globals_lock_ == nullptr); |
| 1181 | jni_globals_lock_ = |
| 1182 | new ReaderWriterMutex("JNI global reference table lock", current_lock_level); |
| 1183 | |
| 1184 | UPDATE_CURRENT_LOCK_LEVEL(kJniWeakGlobalsLock); |
| 1185 | DCHECK(jni_weak_globals_lock_ == nullptr); |
| 1186 | jni_weak_globals_lock_ = new Mutex("JNI weak global reference table lock", current_lock_level); |
| 1187 | |
Andreas Gampe | c808954 | 2017-01-16 12:41:12 -0800 | [diff] [blame] | 1188 | UPDATE_CURRENT_LOCK_LEVEL(kJniFunctionTableLock); |
| 1189 | DCHECK(jni_function_table_lock_ == nullptr); |
| 1190 | jni_function_table_lock_ = new Mutex("JNI function table lock", current_lock_level); |
| 1191 | |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 1192 | UPDATE_CURRENT_LOCK_LEVEL(kAbortLock); |
| 1193 | DCHECK(abort_lock_ == nullptr); |
| 1194 | abort_lock_ = new Mutex("abort lock", current_lock_level, true); |
| 1195 | |
| 1196 | UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock); |
| 1197 | DCHECK(thread_suspend_count_lock_ == nullptr); |
| 1198 | thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level); |
| 1199 | |
| 1200 | UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock); |
| 1201 | DCHECK(unexpected_signal_lock_ == nullptr); |
| 1202 | unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true); |
| 1203 | |
| 1204 | UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock); |
| 1205 | DCHECK(logging_lock_ == nullptr); |
| 1206 | logging_lock_ = new Mutex("logging lock", current_lock_level, true); |
| 1207 | |
| 1208 | #undef UPDATE_CURRENT_LOCK_LEVEL |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1209 | |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 1210 | // List of mutexes that we may hold when accessing a weak ref. |
Hiroshi Yamauchi | 8a43324 | 2017-03-07 14:39:22 -0800 | [diff] [blame] | 1211 | AddToExpectedMutexesOnWeakRefAccess(dex_lock_, /*need_lock*/ false); |
| 1212 | AddToExpectedMutexesOnWeakRefAccess(classlinker_classes_lock_, /*need_lock*/ false); |
| 1213 | AddToExpectedMutexesOnWeakRefAccess(jni_libraries_lock_, /*need_lock*/ false); |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 1214 | |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1215 | InitConditions(); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1216 | } |
| 1217 | } |
| 1218 | |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 1219 | void Locks::InitConditions() { |
| 1220 | thread_exit_cond_ = new ConditionVariable("thread exit condition variable", *thread_list_lock_); |
| 1221 | } |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1222 | |
David Sehr | f42eb2c | 2016-10-19 13:20:45 -0700 | [diff] [blame] | 1223 | void Locks::SetClientCallback(ClientCallback* safe_to_call_abort_cb) { |
| 1224 | safe_to_call_abort_callback.StoreRelease(safe_to_call_abort_cb); |
| 1225 | } |
| 1226 | |
| 1227 | // Helper to allow checking shutdown while ignoring locking requirements. |
| 1228 | bool Locks::IsSafeToCallAbortRacy() { |
| 1229 | Locks::ClientCallback* safe_to_call_abort_cb = safe_to_call_abort_callback.LoadAcquire(); |
| 1230 | return safe_to_call_abort_cb != nullptr && safe_to_call_abort_cb(); |
| 1231 | } |
| 1232 | |
Hiroshi Yamauchi | 8a43324 | 2017-03-07 14:39:22 -0800 | [diff] [blame] | 1233 | void Locks::AddToExpectedMutexesOnWeakRefAccess(BaseMutex* mutex, bool need_lock) { |
| 1234 | if (need_lock) { |
| 1235 | ScopedExpectedMutexesOnWeakRefAccessLock mu(mutex); |
| 1236 | mutex->SetShouldRespondToEmptyCheckpointRequest(true); |
| 1237 | expected_mutexes_on_weak_ref_access_.push_back(mutex); |
| 1238 | } else { |
| 1239 | mutex->SetShouldRespondToEmptyCheckpointRequest(true); |
| 1240 | expected_mutexes_on_weak_ref_access_.push_back(mutex); |
| 1241 | } |
| 1242 | } |
| 1243 | |
| 1244 | void Locks::RemoveFromExpectedMutexesOnWeakRefAccess(BaseMutex* mutex, bool need_lock) { |
| 1245 | if (need_lock) { |
| 1246 | ScopedExpectedMutexesOnWeakRefAccessLock mu(mutex); |
| 1247 | mutex->SetShouldRespondToEmptyCheckpointRequest(false); |
| 1248 | std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_; |
| 1249 | auto it = std::find(list.begin(), list.end(), mutex); |
| 1250 | DCHECK(it != list.end()); |
| 1251 | list.erase(it); |
| 1252 | } else { |
| 1253 | mutex->SetShouldRespondToEmptyCheckpointRequest(false); |
| 1254 | std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_; |
| 1255 | auto it = std::find(list.begin(), list.end(), mutex); |
| 1256 | DCHECK(it != list.end()); |
| 1257 | list.erase(it); |
| 1258 | } |
| 1259 | } |
| 1260 | |
| 1261 | bool Locks::IsExpectedOnWeakRefAccess(BaseMutex* mutex) { |
| 1262 | ScopedExpectedMutexesOnWeakRefAccessLock mu(mutex); |
| 1263 | std::vector<BaseMutex*>& list = expected_mutexes_on_weak_ref_access_; |
| 1264 | return std::find(list.begin(), list.end(), mutex) != list.end(); |
| 1265 | } |
| 1266 | |
Elliott Hughes | e62934d | 2012-04-09 11:24:29 -0700 | [diff] [blame] | 1267 | } // namespace art |