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