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 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_BASE_MUTEX_H_ |
| 18 | #define ART_RUNTIME_BASE_MUTEX_H_ |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 19 | |
| 20 | #include <pthread.h> |
Brian Carlstrom | cd74c4b | 2012-01-23 13:21:00 -0800 | [diff] [blame] | 21 | #include <stdint.h> |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame] | 22 | #include <unistd.h> // for pid_t |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 23 | |
| 24 | #include <iosfwd> |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 25 | #include <string> |
| 26 | |
Andreas Gampe | 5794381 | 2017-12-06 21:39:13 -0800 | [diff] [blame] | 27 | #include <android-base/logging.h> |
| 28 | |
Andreas Gampe | 39b378c | 2017-12-07 15:44:13 -0800 | [diff] [blame] | 29 | #include "base/aborting.h" |
David Sehr | c431b9d | 2018-03-02 12:01:51 -0800 | [diff] [blame] | 30 | #include "base/atomic.h" |
| 31 | #include "base/globals.h" |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 32 | #include "base/macros.h" |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 33 | |
Daniel Colascione | b4dfca5 | 2018-04-15 11:15:14 -0700 | [diff] [blame] | 34 | #if defined(__linux__) |
Chris Dearman | c014178 | 2013-11-14 17:29:21 -0800 | [diff] [blame] | 35 | #define ART_USE_FUTEXES 1 |
Daniel Colascione | b4dfca5 | 2018-04-15 11:15:14 -0700 | [diff] [blame] | 36 | #else |
| 37 | #define ART_USE_FUTEXES 0 |
Ian Rogers | ab47016 | 2012-09-29 23:06:53 -0700 | [diff] [blame] | 38 | #endif |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 39 | |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 40 | // Currently Darwin doesn't support locks with timeouts. |
| 41 | #if !defined(__APPLE__) |
| 42 | #define HAVE_TIMED_RWLOCK 1 |
| 43 | #else |
| 44 | #define HAVE_TIMED_RWLOCK 0 |
| 45 | #endif |
| 46 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 47 | namespace art { |
| 48 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 49 | class SHARED_LOCKABLE ReaderWriterMutex; |
| 50 | class SHARED_LOCKABLE MutatorMutex; |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 51 | class ScopedContentionRecorder; |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 52 | class Thread; |
David Sehr | c431b9d | 2018-03-02 12:01:51 -0800 | [diff] [blame] | 53 | class Mutex; |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 54 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 55 | // LockLevel is used to impose a lock hierarchy [1] where acquisition of a Mutex at a higher or |
| 56 | // equal level to a lock a thread holds is invalid. The lock hierarchy achieves a cycle free |
| 57 | // partial ordering and thereby cause deadlock situations to fail checks. |
| 58 | // |
| 59 | // [1] http://www.drdobbs.com/parallel/use-lock-hierarchies-to-avoid-deadlock/204801163 |
Andreas Gampe | 5db8b7b | 2018-05-08 16:10:59 -0700 | [diff] [blame] | 60 | enum LockLevel : uint8_t { |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 61 | kLoggingLock = 0, |
Raghu Gandham | 7de77dd | 2014-06-13 15:16:31 -0700 | [diff] [blame] | 62 | kSwapMutexesLock, |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 63 | kUnexpectedSignalLock, |
| 64 | kThreadSuspendCountLock, |
| 65 | kAbortLock, |
David Srbecky | 440a9b3 | 2018-02-15 17:47:29 +0000 | [diff] [blame] | 66 | kNativeDebugInterfaceLock, |
Alex Light | ca97ada | 2018-02-02 09:25:31 -0800 | [diff] [blame] | 67 | kSignalHandlingLock, |
Alex Light | 3e36a9c | 2018-06-19 09:45:05 -0700 | [diff] [blame] | 68 | // A generic lock level for mutexs that should not allow any additional mutexes to be gained after |
| 69 | // acquiring it. |
| 70 | kGenericBottomLock, |
Tao Wu | d0a160d | 2016-12-13 18:32:17 -0800 | [diff] [blame] | 71 | kJdwpAdbStateLock, |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 72 | kJdwpSocketLock, |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 73 | kRegionSpaceRegionLock, |
Mathieu Chartier | f169e27 | 2017-03-28 12:59:38 -0700 | [diff] [blame] | 74 | kMarkSweepMarkStackLock, |
Alex Light | 3e36a9c | 2018-06-19 09:45:05 -0700 | [diff] [blame] | 75 | kJitCodeCacheLock, |
Mathieu Chartier | 2994605 | 2015-12-21 13:02:14 -0800 | [diff] [blame] | 76 | kRosAllocGlobalLock, |
| 77 | kRosAllocBracketLock, |
| 78 | kRosAllocBulkFreeLock, |
Mathieu Chartier | f169e27 | 2017-03-28 12:59:38 -0700 | [diff] [blame] | 79 | kTaggingLockLevel, |
Andreas Gampe | bc4d218 | 2016-02-22 10:03:12 -0800 | [diff] [blame] | 80 | kTransactionLogLock, |
Alex Light | 184f075 | 2018-07-13 11:18:22 -0700 | [diff] [blame^] | 81 | kCustomTlsLock, |
Andreas Gampe | c808954 | 2017-01-16 12:41:12 -0800 | [diff] [blame] | 82 | kJniFunctionTableLock, |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 83 | kJniWeakGlobalsLock, |
Andreas Gampe | 05a364c | 2016-10-14 13:27:12 -0700 | [diff] [blame] | 84 | kJniGlobalsLock, |
Mathieu Chartier | a5a53ef | 2014-09-12 12:58:05 -0700 | [diff] [blame] | 85 | kReferenceQueueSoftReferencesLock, |
| 86 | kReferenceQueuePhantomReferencesLock, |
| 87 | kReferenceQueueFinalizerReferencesLock, |
| 88 | kReferenceQueueWeakReferencesLock, |
| 89 | kReferenceQueueClearedReferencesLock, |
| 90 | kReferenceProcessorLock, |
David Srbecky | 5cc349f | 2015-12-18 15:04:48 +0000 | [diff] [blame] | 91 | kJitDebugInterfaceLock, |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 92 | kAllocSpaceLock, |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 93 | kBumpPointerSpaceBlockLock, |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 94 | kArenaPoolLock, |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 95 | kInternTableLock, |
Vladimir Marko | 3f5838d | 2014-08-07 18:07:18 +0100 | [diff] [blame] | 96 | kOatFileSecondaryLookupLock, |
Richard Uhler | a206c74 | 2016-05-24 15:04:22 -0700 | [diff] [blame] | 97 | kHostDlOpenHandlesLock, |
David Brazdil | ca3c8c3 | 2016-09-06 14:04:48 +0100 | [diff] [blame] | 98 | kVerifierDepsLock, |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 99 | kOatFileManagerLock, |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 100 | kTracingUniqueMethodsLock, |
| 101 | kTracingStreamingLock, |
Mathieu Chartier | b8aa1e4 | 2016-04-05 14:36:57 -0700 | [diff] [blame] | 102 | kClassLoaderClassesLock, |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 103 | kDefaultMutexLevel, |
Mathieu Chartier | 6c60d84 | 2016-09-15 10:24:43 -0700 | [diff] [blame] | 104 | kDexLock, |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 105 | kMarkSweepLargeObjectLock, |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 106 | kJdwpObjectRegistryLock, |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 107 | kModifyLdtLock, |
| 108 | kAllocatedThreadIdsLock, |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 109 | kMonitorPoolLock, |
Mathieu Chartier | b8aa1e4 | 2016-04-05 14:36:57 -0700 | [diff] [blame] | 110 | kClassLinkerClassesLock, // TODO rename. |
Mathieu Chartier | a79efdb | 2018-01-18 16:31:01 -0800 | [diff] [blame] | 111 | kDexToDexCompilerLock, |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 112 | kCHALock, |
Igor Murashkin | 495e783 | 2017-10-27 10:56:20 -0700 | [diff] [blame] | 113 | kSubtypeCheckLock, |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 114 | kBreakpointLock, |
| 115 | kMonitorLock, |
Mathieu Chartier | 440e4ce | 2014-03-31 16:36:35 -0700 | [diff] [blame] | 116 | kMonitorListLock, |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 117 | kJniLoadLibraryLock, |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 118 | kThreadListLock, |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 119 | kAllocTrackerLock, |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 120 | kDeoptimizationLock, |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 121 | kProfilerLock, |
Sebastien Hertz | 4e5b208 | 2015-03-24 19:03:40 +0100 | [diff] [blame] | 122 | kJdwpShutdownLock, |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 123 | kJdwpEventListLock, |
| 124 | kJdwpAttachLock, |
| 125 | kJdwpStartLock, |
| 126 | kRuntimeShutdownLock, |
Jeff Hao | 69dbec6 | 2014-09-15 18:03:41 -0700 | [diff] [blame] | 127 | kTraceLock, |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 128 | kHeapBitmapLock, |
| 129 | kMutatorLock, |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 130 | kUserCodeSuspensionLock, |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 131 | kInstrumentEntrypointsLock, |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 132 | kZygoteCreationLock, |
| 133 | |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 134 | // The highest valid lock level. Use this if there is code that should only be called with no |
| 135 | // other locks held. Since this is the highest lock level we also allow it to be held even if the |
| 136 | // runtime or current thread is not fully set-up yet (for example during thread attach). Note that |
| 137 | // this lock also has special behavior around the mutator_lock_. Since the mutator_lock_ is not |
| 138 | // really a 'real' lock we allow this to be locked when the mutator_lock_ is held exclusive. |
| 139 | // Furthermore, the mutator_lock_ may not be acquired in any form when a lock of this level is |
| 140 | // held. Since the mutator_lock_ being held strong means that all other threads are suspended this |
| 141 | // will prevent deadlocks while still allowing this lock level to function as a "highest" level. |
| 142 | kTopLockLevel, |
| 143 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 144 | kLockLevelCount // Must come last. |
| 145 | }; |
| 146 | std::ostream& operator<<(std::ostream& os, const LockLevel& rhs); |
| 147 | |
Andreas Gampe | 5db8b7b | 2018-05-08 16:10:59 -0700 | [diff] [blame] | 148 | constexpr bool kDebugLocking = kIsDebugBuild; |
Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 149 | |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 150 | // Record Log contention information, dumpable via SIGQUIT. |
| 151 | #ifdef ART_USE_FUTEXES |
Jeff Hao | 08f2e7b | 2013-09-09 16:44:02 -0700 | [diff] [blame] | 152 | // To enable lock contention logging, set this to true. |
Andreas Gampe | 5db8b7b | 2018-05-08 16:10:59 -0700 | [diff] [blame] | 153 | constexpr bool kLogLockContentions = false; |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 154 | #else |
| 155 | // Keep this false as lock contention logging is supported only with |
| 156 | // futex. |
Andreas Gampe | 5db8b7b | 2018-05-08 16:10:59 -0700 | [diff] [blame] | 157 | constexpr bool kLogLockContentions = false; |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 158 | #endif |
Andreas Gampe | 5db8b7b | 2018-05-08 16:10:59 -0700 | [diff] [blame] | 159 | constexpr size_t kContentionLogSize = 4; |
| 160 | constexpr size_t kContentionLogDataSize = kLogLockContentions ? 1 : 0; |
| 161 | constexpr size_t kAllMutexDataSize = kLogLockContentions ? 1 : 0; |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 162 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 163 | // Base class for all Mutex implementations |
| 164 | class BaseMutex { |
| 165 | public: |
Ian Rogers | bab7496 | 2013-04-19 10:04:10 -0700 | [diff] [blame] | 166 | const char* GetName() const { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 167 | return name_; |
| 168 | } |
| 169 | |
| 170 | virtual bool IsMutex() const { return false; } |
| 171 | virtual bool IsReaderWriterMutex() const { return false; } |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 172 | virtual bool IsMutatorMutex() const { return false; } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 173 | |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 174 | virtual void Dump(std::ostream& os) const = 0; |
| 175 | |
| 176 | static void DumpAll(std::ostream& os); |
| 177 | |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 178 | bool ShouldRespondToEmptyCheckpointRequest() const { |
| 179 | return should_respond_to_empty_checkpoint_request_; |
| 180 | } |
| 181 | |
| 182 | void SetShouldRespondToEmptyCheckpointRequest(bool value) { |
| 183 | should_respond_to_empty_checkpoint_request_ = value; |
| 184 | } |
| 185 | |
| 186 | virtual void WakeupToRespondToEmptyCheckpoint() = 0; |
| 187 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 188 | protected: |
| 189 | friend class ConditionVariable; |
| 190 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 191 | BaseMutex(const char* name, LockLevel level); |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 192 | virtual ~BaseMutex(); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 193 | void RegisterAsLocked(Thread* self); |
| 194 | void RegisterAsUnlocked(Thread* self); |
| 195 | void CheckSafeToWait(Thread* self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 196 | |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 197 | friend class ScopedContentionRecorder; |
| 198 | |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 199 | void RecordContention(uint64_t blocked_tid, uint64_t owner_tid, uint64_t nano_time_blocked); |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 200 | void DumpContention(std::ostream& os) const; |
| 201 | |
Ian Rogers | bab7496 | 2013-04-19 10:04:10 -0700 | [diff] [blame] | 202 | const char* const name_; |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 203 | |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 204 | // A log entry that records contention but makes no guarantee that either tid will be held live. |
| 205 | struct ContentionLogEntry { |
| 206 | ContentionLogEntry() : blocked_tid(0), owner_tid(0) {} |
| 207 | uint64_t blocked_tid; |
| 208 | uint64_t owner_tid; |
| 209 | AtomicInteger count; |
| 210 | }; |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 211 | struct ContentionLogData { |
| 212 | ContentionLogEntry contention_log[kContentionLogSize]; |
| 213 | // The next entry in the contention log to be updated. Value ranges from 0 to |
| 214 | // kContentionLogSize - 1. |
| 215 | AtomicInteger cur_content_log_entry; |
| 216 | // Number of times the Mutex has been contended. |
| 217 | AtomicInteger contention_count; |
| 218 | // Sum of time waited by all contenders in ns. |
Ian Rogers | 37f3c96 | 2014-07-17 11:25:30 -0700 | [diff] [blame] | 219 | Atomic<uint64_t> wait_time; |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 220 | void AddToWaitTime(uint64_t value); |
| 221 | ContentionLogData() : wait_time(0) {} |
| 222 | }; |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 223 | ContentionLogData contention_log_data_[kContentionLogDataSize]; |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 224 | |
Andreas Gampe | 5db8b7b | 2018-05-08 16:10:59 -0700 | [diff] [blame] | 225 | const LockLevel level_; // Support for lock hierarchy. |
| 226 | bool should_respond_to_empty_checkpoint_request_; |
| 227 | |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 228 | public: |
| 229 | bool HasEverContended() const { |
| 230 | if (kLogLockContentions) { |
Orion Hodson | 88591fe | 2018-03-06 13:35:43 +0000 | [diff] [blame] | 231 | return contention_log_data_->contention_count.load(std::memory_order_seq_cst) > 0; |
Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 232 | } |
| 233 | return false; |
| 234 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 235 | }; |
| 236 | |
| 237 | // A Mutex is used to achieve mutual exclusion between threads. A Mutex can be used to gain |
| 238 | // exclusive access to what it guards. A Mutex can be in one of two states: |
| 239 | // - Free - not owned by any thread, |
| 240 | // - Exclusive - owned by a single thread. |
| 241 | // |
| 242 | // The effect of locking and unlocking operations on the state is: |
| 243 | // State | ExclusiveLock | ExclusiveUnlock |
| 244 | // ------------------------------------------- |
| 245 | // Free | Exclusive | error |
| 246 | // Exclusive | Block* | Free |
| 247 | // * Mutex is not reentrant and so an attempt to ExclusiveLock on the same thread will result in |
| 248 | // an error. Being non-reentrant simplifies Waiting on ConditionVariables. |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 249 | std::ostream& operator<<(std::ostream& os, const Mutex& mu); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 250 | class LOCKABLE Mutex : public BaseMutex { |
| 251 | public: |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 252 | explicit Mutex(const char* name, LockLevel level = kDefaultMutexLevel, bool recursive = false); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 253 | ~Mutex(); |
| 254 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 255 | virtual bool IsMutex() const { return true; } |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 256 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 257 | // Block until mutex is free then acquire exclusive access. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 258 | void ExclusiveLock(Thread* self) ACQUIRE(); |
| 259 | void Lock(Thread* self) ACQUIRE() { ExclusiveLock(self); } |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 260 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 261 | // Returns true if acquires exclusive access, false otherwise. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 262 | bool ExclusiveTryLock(Thread* self) TRY_ACQUIRE(true); |
| 263 | bool TryLock(Thread* self) TRY_ACQUIRE(true) { return ExclusiveTryLock(self); } |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 264 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 265 | // Release exclusive access. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 266 | void ExclusiveUnlock(Thread* self) RELEASE(); |
| 267 | void Unlock(Thread* self) RELEASE() { ExclusiveUnlock(self); } |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 268 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 269 | // Is the current thread the exclusive holder of the Mutex. |
Andreas Gampe | b486a98 | 2017-06-01 13:45:54 -0700 | [diff] [blame] | 270 | ALWAYS_INLINE bool IsExclusiveHeld(const Thread* self) const; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 271 | |
| 272 | // Assert that the Mutex is exclusively held by the current thread. |
Andreas Gampe | b486a98 | 2017-06-01 13:45:54 -0700 | [diff] [blame] | 273 | ALWAYS_INLINE void AssertExclusiveHeld(const Thread* self) const ASSERT_CAPABILITY(this); |
| 274 | ALWAYS_INLINE void AssertHeld(const Thread* self) const ASSERT_CAPABILITY(this); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 275 | |
| 276 | // Assert that the Mutex is not held by the current thread. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 277 | void AssertNotHeldExclusive(const Thread* self) ASSERT_CAPABILITY(!*this) { |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 278 | if (kDebugLocking && (gAborting == 0)) { |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 279 | CHECK(!IsExclusiveHeld(self)) << *this; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 280 | } |
| 281 | } |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 282 | void AssertNotHeld(const Thread* self) ASSERT_CAPABILITY(!*this) { |
| 283 | AssertNotHeldExclusive(self); |
| 284 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 285 | |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 286 | // Id associated with exclusive owner. No memory ordering semantics if called from a thread other |
| 287 | // than the owner. |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame] | 288 | pid_t GetExclusiveOwnerTid() const; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 289 | |
| 290 | // Returns how many times this Mutex has been locked, it is better to use AssertHeld/NotHeld. |
| 291 | unsigned int GetDepth() const { |
| 292 | return recursion_count_; |
| 293 | } |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 294 | |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 295 | virtual void Dump(std::ostream& os) const; |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 296 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 297 | // For negative capabilities in clang annotations. |
| 298 | const Mutex& operator!() const { return *this; } |
| 299 | |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 300 | void WakeupToRespondToEmptyCheckpoint() OVERRIDE; |
| 301 | |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 302 | private: |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 303 | #if ART_USE_FUTEXES |
| 304 | // 0 is unheld, 1 is held. |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 305 | AtomicInteger state_; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 306 | // Exclusive owner. |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame] | 307 | Atomic<pid_t> exclusive_owner_; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 308 | // Number of waiting contenders. |
Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 309 | AtomicInteger num_contenders_; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 310 | #else |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 311 | pthread_mutex_t mutex_; |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame] | 312 | Atomic<pid_t> exclusive_owner_; // Guarded by mutex_. Asynchronous reads are OK. |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 313 | #endif |
Andreas Gampe | 5db8b7b | 2018-05-08 16:10:59 -0700 | [diff] [blame] | 314 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 315 | unsigned int recursion_count_; |
Andreas Gampe | 5db8b7b | 2018-05-08 16:10:59 -0700 | [diff] [blame] | 316 | const bool recursive_; // Can the lock be recursively held? |
| 317 | |
Elliott Hughes | f149843 | 2012-03-28 19:34:27 -0700 | [diff] [blame] | 318 | friend class ConditionVariable; |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 319 | DISALLOW_COPY_AND_ASSIGN(Mutex); |
| 320 | }; |
| 321 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 322 | // A ReaderWriterMutex is used to achieve mutual exclusion between threads, similar to a Mutex. |
| 323 | // Unlike a Mutex a ReaderWriterMutex can be used to gain exclusive (writer) or shared (reader) |
| 324 | // access to what it guards. A flaw in relation to a Mutex is that it cannot be used with a |
| 325 | // condition variable. A ReaderWriterMutex can be in one of three states: |
| 326 | // - Free - not owned by any thread, |
| 327 | // - Exclusive - owned by a single thread, |
| 328 | // - Shared(n) - shared amongst n threads. |
| 329 | // |
| 330 | // The effect of locking and unlocking operations on the state is: |
| 331 | // |
| 332 | // State | ExclusiveLock | ExclusiveUnlock | SharedLock | SharedUnlock |
| 333 | // ---------------------------------------------------------------------------- |
| 334 | // Free | Exclusive | error | SharedLock(1) | error |
| 335 | // Exclusive | Block | Free | Block | error |
| 336 | // Shared(n) | Block | error | SharedLock(n+1)* | Shared(n-1) or Free |
| 337 | // * for large values of n the SharedLock may block. |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 338 | std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu); |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 339 | class SHARED_LOCKABLE ReaderWriterMutex : public BaseMutex { |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 340 | public: |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 341 | explicit ReaderWriterMutex(const char* name, LockLevel level = kDefaultMutexLevel); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 342 | ~ReaderWriterMutex(); |
| 343 | |
| 344 | virtual bool IsReaderWriterMutex() const { return true; } |
| 345 | |
| 346 | // Block until ReaderWriterMutex is free then acquire exclusive access. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 347 | void ExclusiveLock(Thread* self) ACQUIRE(); |
| 348 | void WriterLock(Thread* self) ACQUIRE() { ExclusiveLock(self); } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 349 | |
| 350 | // Release exclusive access. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 351 | void ExclusiveUnlock(Thread* self) RELEASE(); |
| 352 | void WriterUnlock(Thread* self) RELEASE() { ExclusiveUnlock(self); } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 353 | |
| 354 | // Block until ReaderWriterMutex is free and acquire exclusive access. Returns true on success |
| 355 | // or false if timeout is reached. |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 356 | #if HAVE_TIMED_RWLOCK |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 357 | bool ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 358 | EXCLUSIVE_TRYLOCK_FUNCTION(true); |
Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 359 | #endif |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 360 | |
| 361 | // Block until ReaderWriterMutex is shared or free then acquire a share on the access. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 362 | void SharedLock(Thread* self) ACQUIRE_SHARED() ALWAYS_INLINE; |
| 363 | void ReaderLock(Thread* self) ACQUIRE_SHARED() { SharedLock(self); } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 364 | |
| 365 | // Try to acquire share of ReaderWriterMutex. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 366 | bool SharedTryLock(Thread* self) SHARED_TRYLOCK_FUNCTION(true); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 367 | |
| 368 | // Release a share of the access. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 369 | void SharedUnlock(Thread* self) RELEASE_SHARED() ALWAYS_INLINE; |
| 370 | void ReaderUnlock(Thread* self) RELEASE_SHARED() { SharedUnlock(self); } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 371 | |
| 372 | // Is the current thread the exclusive holder of the ReaderWriterMutex. |
Andreas Gampe | b486a98 | 2017-06-01 13:45:54 -0700 | [diff] [blame] | 373 | ALWAYS_INLINE bool IsExclusiveHeld(const Thread* self) const; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 374 | |
| 375 | // Assert the current thread has exclusive access to the ReaderWriterMutex. |
Andreas Gampe | b486a98 | 2017-06-01 13:45:54 -0700 | [diff] [blame] | 376 | ALWAYS_INLINE void AssertExclusiveHeld(const Thread* self) const ASSERT_CAPABILITY(this); |
| 377 | ALWAYS_INLINE void AssertWriterHeld(const Thread* self) const ASSERT_CAPABILITY(this); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 378 | |
| 379 | // Assert the current thread doesn't have exclusive access to the ReaderWriterMutex. |
Mathieu Chartier | 90ef3db | 2015-08-04 15:19:41 -0700 | [diff] [blame] | 380 | void AssertNotExclusiveHeld(const Thread* self) ASSERT_CAPABILITY(!this) { |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 381 | if (kDebugLocking && (gAborting == 0)) { |
Ian Rogers | e3359f7 | 2013-06-11 15:14:11 -0700 | [diff] [blame] | 382 | CHECK(!IsExclusiveHeld(self)) << *this; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 383 | } |
| 384 | } |
Mathieu Chartier | 90ef3db | 2015-08-04 15:19:41 -0700 | [diff] [blame] | 385 | void AssertNotWriterHeld(const Thread* self) ASSERT_CAPABILITY(!this) { |
| 386 | AssertNotExclusiveHeld(self); |
| 387 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 388 | |
| 389 | // Is the current thread a shared holder of the ReaderWriterMutex. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 390 | bool IsSharedHeld(const Thread* self) const; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 391 | |
| 392 | // Assert the current thread has shared access to the ReaderWriterMutex. |
Mathieu Chartier | 3768ade | 2017-05-02 14:04:39 -0700 | [diff] [blame] | 393 | ALWAYS_INLINE void AssertSharedHeld(const Thread* self) ASSERT_SHARED_CAPABILITY(this) { |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 394 | if (kDebugLocking && (gAborting == 0)) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 395 | // TODO: we can only assert this well when self != null. |
| 396 | CHECK(IsSharedHeld(self) || self == nullptr) << *this; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 397 | } |
| 398 | } |
Mathieu Chartier | 3768ade | 2017-05-02 14:04:39 -0700 | [diff] [blame] | 399 | ALWAYS_INLINE void AssertReaderHeld(const Thread* self) ASSERT_SHARED_CAPABILITY(this) { |
Mathieu Chartier | 90ef3db | 2015-08-04 15:19:41 -0700 | [diff] [blame] | 400 | AssertSharedHeld(self); |
| 401 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 402 | |
| 403 | // Assert the current thread doesn't hold this ReaderWriterMutex either in shared or exclusive |
| 404 | // mode. |
Mathieu Chartier | 3768ade | 2017-05-02 14:04:39 -0700 | [diff] [blame] | 405 | ALWAYS_INLINE void AssertNotHeld(const Thread* self) ASSERT_SHARED_CAPABILITY(!this) { |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 406 | if (kDebugLocking && (gAborting == 0)) { |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 407 | CHECK(!IsSharedHeld(self)) << *this; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 408 | } |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 409 | } |
| 410 | |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 411 | // Id associated with exclusive owner. No memory ordering semantics if called from a thread other |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame] | 412 | // than the owner. Returns 0 if the lock is not held. Returns either 0 or -1 if it is held by |
| 413 | // one or more readers. |
| 414 | pid_t GetExclusiveOwnerTid() const; |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 415 | |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 416 | virtual void Dump(std::ostream& os) const; |
Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 417 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 418 | // For negative capabilities in clang annotations. |
| 419 | const ReaderWriterMutex& operator!() const { return *this; } |
| 420 | |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 421 | void WakeupToRespondToEmptyCheckpoint() OVERRIDE; |
| 422 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 423 | private: |
Ian Rogers | 51d212e | 2014-10-23 17:48:20 -0700 | [diff] [blame] | 424 | #if ART_USE_FUTEXES |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 425 | // Out-of-inline path for handling contention for a SharedLock. |
| 426 | void HandleSharedLockContention(Thread* self, int32_t cur_state); |
| 427 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 428 | // -1 implies held exclusive, +ve shared held by state_ many owners. |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 429 | AtomicInteger state_; |
| 430 | // Exclusive owner. Modification guarded by this mutex. |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame] | 431 | Atomic<pid_t> exclusive_owner_; |
Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 432 | // Number of contenders waiting for a reader share. |
| 433 | AtomicInteger num_pending_readers_; |
| 434 | // Number of contenders waiting to be the writer. |
Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 435 | AtomicInteger num_pending_writers_; |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 436 | #else |
| 437 | pthread_rwlock_t rwlock_; |
Hans Boehm | 0882af2 | 2017-08-31 15:21:57 -0700 | [diff] [blame] | 438 | Atomic<pid_t> exclusive_owner_; // Writes guarded by rwlock_. Asynchronous reads are OK. |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 439 | #endif |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 440 | DISALLOW_COPY_AND_ASSIGN(ReaderWriterMutex); |
| 441 | }; |
| 442 | |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 443 | // MutatorMutex is a special kind of ReaderWriterMutex created specifically for the |
| 444 | // Locks::mutator_lock_ mutex. The behaviour is identical to the ReaderWriterMutex except that |
| 445 | // thread state changes also play a part in lock ownership. The mutator_lock_ will not be truly |
| 446 | // held by any mutator threads. However, a thread in the kRunnable state is considered to have |
| 447 | // shared ownership of the mutator lock and therefore transitions in and out of the kRunnable |
| 448 | // state have associated implications on lock ownership. Extra methods to handle the state |
| 449 | // transitions have been added to the interface but are only accessible to the methods dealing |
| 450 | // with state transitions. The thread state and flags attributes are used to ensure thread state |
| 451 | // transitions are consistent with the permitted behaviour of the mutex. |
| 452 | // |
| 453 | // *) The most important consequence of this behaviour is that all threads must be in one of the |
| 454 | // suspended states before exclusive ownership of the mutator mutex is sought. |
| 455 | // |
| 456 | std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu); |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 457 | class SHARED_LOCKABLE MutatorMutex : public ReaderWriterMutex { |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 458 | public: |
| 459 | explicit MutatorMutex(const char* name, LockLevel level = kDefaultMutexLevel) |
| 460 | : ReaderWriterMutex(name, level) {} |
| 461 | ~MutatorMutex() {} |
| 462 | |
| 463 | virtual bool IsMutatorMutex() const { return true; } |
| 464 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 465 | // For negative capabilities in clang annotations. |
| 466 | const MutatorMutex& operator!() const { return *this; } |
| 467 | |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 468 | private: |
| 469 | friend class Thread; |
| 470 | void TransitionFromRunnableToSuspended(Thread* self) UNLOCK_FUNCTION() ALWAYS_INLINE; |
| 471 | void TransitionFromSuspendedToRunnable(Thread* self) SHARED_LOCK_FUNCTION() ALWAYS_INLINE; |
| 472 | |
| 473 | DISALLOW_COPY_AND_ASSIGN(MutatorMutex); |
| 474 | }; |
| 475 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 476 | // ConditionVariables allow threads to queue and sleep. Threads may then be resumed individually |
| 477 | // (Signal) or all at once (Broadcast). |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 478 | class ConditionVariable { |
| 479 | public: |
Roland Levillain | 3887c46 | 2015-08-12 18:15:42 +0100 | [diff] [blame] | 480 | ConditionVariable(const char* name, Mutex& mutex); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 481 | ~ConditionVariable(); |
| 482 | |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 483 | void Broadcast(Thread* self); |
| 484 | void Signal(Thread* self); |
| 485 | // TODO: No thread safety analysis on Wait and TimedWait as they call mutex operations via their |
| 486 | // pointer copy, thereby defeating annotalysis. |
| 487 | void Wait(Thread* self) NO_THREAD_SAFETY_ANALYSIS; |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 488 | bool TimedWait(Thread* self, int64_t ms, int32_t ns) NO_THREAD_SAFETY_ANALYSIS; |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 489 | // Variant of Wait that should be used with caution. Doesn't validate that no mutexes are held |
| 490 | // when waiting. |
| 491 | // TODO: remove this. |
| 492 | void WaitHoldingLocks(Thread* self) NO_THREAD_SAFETY_ANALYSIS; |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 493 | |
| 494 | private: |
Ian Rogers | 23055dc | 2013-04-18 16:29:16 -0700 | [diff] [blame] | 495 | const char* const name_; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 496 | // The Mutex being used by waiters. It is an error to mix condition variables between different |
| 497 | // Mutexes. |
| 498 | Mutex& guard_; |
| 499 | #if ART_USE_FUTEXES |
| 500 | // A counter that is modified by signals and broadcasts. This ensures that when a waiter gives up |
Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 501 | // their Mutex and another thread takes it and signals, the waiting thread observes that sequence_ |
| 502 | // changed and doesn't enter the wait. Modified while holding guard_, but is read by futex wait |
| 503 | // without guard_ held. |
Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 504 | AtomicInteger sequence_; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 505 | // Number of threads that have come into to wait, not the length of the waiters on the futex as |
Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 506 | // waiters may have been requeued onto guard_. Guarded by guard_. |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 507 | volatile int32_t num_waiters_; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 508 | #else |
| 509 | pthread_cond_t cond_; |
| 510 | #endif |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 511 | DISALLOW_COPY_AND_ASSIGN(ConditionVariable); |
| 512 | }; |
| 513 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 514 | // Scoped locker/unlocker for a regular Mutex that acquires mu upon construction and releases it |
| 515 | // upon destruction. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 516 | class SCOPED_CAPABILITY MutexLock { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 517 | public: |
Roland Levillain | 3887c46 | 2015-08-12 18:15:42 +0100 | [diff] [blame] | 518 | MutexLock(Thread* self, Mutex& mu) ACQUIRE(mu) : self_(self), mu_(mu) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 519 | mu_.ExclusiveLock(self_); |
| 520 | } |
| 521 | |
Mathieu Chartier | 4e2cb09 | 2015-07-22 16:17:51 -0700 | [diff] [blame] | 522 | ~MutexLock() RELEASE() { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 523 | mu_.ExclusiveUnlock(self_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | private: |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 527 | Thread* const self_; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 528 | Mutex& mu_; |
| 529 | DISALLOW_COPY_AND_ASSIGN(MutexLock); |
| 530 | }; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 531 | |
| 532 | // Scoped locker/unlocker for a ReaderWriterMutex that acquires read access to mu upon |
| 533 | // construction and releases it upon destruction. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 534 | class SCOPED_CAPABILITY ReaderMutexLock { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 535 | public: |
Andreas Gampe | b486a98 | 2017-06-01 13:45:54 -0700 | [diff] [blame] | 536 | ALWAYS_INLINE ReaderMutexLock(Thread* self, ReaderWriterMutex& mu) ACQUIRE(mu); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 537 | |
Andreas Gampe | b486a98 | 2017-06-01 13:45:54 -0700 | [diff] [blame] | 538 | ALWAYS_INLINE ~ReaderMutexLock() RELEASE(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 539 | |
| 540 | private: |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 541 | Thread* const self_; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 542 | ReaderWriterMutex& mu_; |
| 543 | DISALLOW_COPY_AND_ASSIGN(ReaderMutexLock); |
| 544 | }; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 545 | |
| 546 | // Scoped locker/unlocker for a ReaderWriterMutex that acquires write access to mu upon |
| 547 | // construction and releases it upon destruction. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 548 | class SCOPED_CAPABILITY WriterMutexLock { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 549 | public: |
Roland Levillain | 3887c46 | 2015-08-12 18:15:42 +0100 | [diff] [blame] | 550 | WriterMutexLock(Thread* self, ReaderWriterMutex& mu) EXCLUSIVE_LOCK_FUNCTION(mu) : |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 551 | self_(self), mu_(mu) { |
| 552 | mu_.ExclusiveLock(self_); |
| 553 | } |
| 554 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 555 | ~WriterMutexLock() UNLOCK_FUNCTION() { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 556 | mu_.ExclusiveUnlock(self_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | private: |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 560 | Thread* const self_; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 561 | ReaderWriterMutex& mu_; |
| 562 | DISALLOW_COPY_AND_ASSIGN(WriterMutexLock); |
| 563 | }; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 564 | |
Mathieu Chartier | 4e2cb09 | 2015-07-22 16:17:51 -0700 | [diff] [blame] | 565 | // For StartNoThreadSuspension and EndNoThreadSuspension. |
| 566 | class CAPABILITY("role") Role { |
| 567 | public: |
| 568 | void Acquire() ACQUIRE() {} |
| 569 | void Release() RELEASE() {} |
| 570 | const Role& operator!() const { return *this; } |
| 571 | }; |
| 572 | |
| 573 | class Uninterruptible : public Role { |
| 574 | }; |
| 575 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 576 | // Global mutexes corresponding to the levels above. |
| 577 | class Locks { |
| 578 | public: |
| 579 | static void Init(); |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 580 | static void InitConditions() NO_THREAD_SAFETY_ANALYSIS; // Condition variables. |
David Sehr | f42eb2c | 2016-10-19 13:20:45 -0700 | [diff] [blame] | 581 | |
| 582 | // Destroying various lock types can emit errors that vary depending upon |
| 583 | // whether the client (art::Runtime) is currently active. Allow the client |
| 584 | // to set a callback that is used to check when it is acceptable to call |
| 585 | // Abort. The default behavior is that the client *is not* able to call |
| 586 | // Abort if no callback is established. |
| 587 | using ClientCallback = bool(); |
| 588 | static void SetClientCallback(ClientCallback* is_safe_to_call_abort_cb) NO_THREAD_SAFETY_ANALYSIS; |
| 589 | // Checks for whether it is safe to call Abort() without using locks. |
| 590 | static bool IsSafeToCallAbortRacy() NO_THREAD_SAFETY_ANALYSIS; |
| 591 | |
Hiroshi Yamauchi | 8a43324 | 2017-03-07 14:39:22 -0800 | [diff] [blame] | 592 | // Add a mutex to expected_mutexes_on_weak_ref_access_. |
| 593 | static void AddToExpectedMutexesOnWeakRefAccess(BaseMutex* mutex, bool need_lock = true); |
| 594 | // Remove a mutex from expected_mutexes_on_weak_ref_access_. |
| 595 | static void RemoveFromExpectedMutexesOnWeakRefAccess(BaseMutex* mutex, bool need_lock = true); |
| 596 | // Check if the given mutex is in expected_mutexes_on_weak_ref_access_. |
| 597 | static bool IsExpectedOnWeakRefAccess(BaseMutex* mutex); |
David Sehr | f42eb2c | 2016-10-19 13:20:45 -0700 | [diff] [blame] | 598 | |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 599 | // Guards allocation entrypoint instrumenting. |
Ian Rogers | 4ad5cd3 | 2014-11-11 23:08:07 -0800 | [diff] [blame] | 600 | static Mutex* instrument_entrypoints_lock_; |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 601 | |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 602 | // Guards code that deals with user-code suspension. This mutex must be held when suspending or |
| 603 | // resuming threads with SuspendReason::kForUserCode. It may be held by a suspended thread, but |
| 604 | // only if the suspension is not due to SuspendReason::kForUserCode. |
| 605 | static Mutex* user_code_suspension_lock_ ACQUIRED_AFTER(instrument_entrypoints_lock_); |
| 606 | |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 607 | // A barrier is used to synchronize the GC/Debugger thread with mutator threads. When GC/Debugger |
| 608 | // thread wants to suspend all mutator threads, it needs to wait for all mutator threads to pass |
| 609 | // a barrier. Threads that are already suspended will get their barrier passed by the GC/Debugger |
| 610 | // thread; threads in the runnable state will pass the barrier when they transit to the suspended |
| 611 | // state. GC/Debugger thread will be woken up when all mutator threads are suspended. |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 612 | // |
| 613 | // Thread suspension: |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 614 | // mutator thread | GC/Debugger |
| 615 | // .. running .. | .. running .. |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 616 | // .. running .. | Request thread suspension by: |
| 617 | // .. running .. | - acquiring thread_suspend_count_lock_ |
| 618 | // .. running .. | - incrementing Thread::suspend_count_ on |
| 619 | // .. running .. | all mutator threads |
| 620 | // .. running .. | - releasing thread_suspend_count_lock_ |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 621 | // .. running .. | Block wait for all threads to pass a barrier |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 622 | // Poll Thread::suspend_count_ and enter full | .. blocked .. |
| 623 | // suspend code. | .. blocked .. |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 624 | // Change state to kSuspended (pass the barrier) | Wake up when all threads pass the barrier |
| 625 | // x: Acquire thread_suspend_count_lock_ | .. running .. |
| 626 | // while Thread::suspend_count_ > 0 | .. running .. |
| 627 | // - wait on Thread::resume_cond_ | .. running .. |
| 628 | // (releases thread_suspend_count_lock_) | .. running .. |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 629 | // .. waiting .. | Request thread resumption by: |
| 630 | // .. waiting .. | - acquiring thread_suspend_count_lock_ |
| 631 | // .. waiting .. | - decrementing Thread::suspend_count_ on |
| 632 | // .. waiting .. | all mutator threads |
| 633 | // .. waiting .. | - notifying on Thread::resume_cond_ |
| 634 | // - re-acquire thread_suspend_count_lock_ | - releasing thread_suspend_count_lock_ |
| 635 | // Release thread_suspend_count_lock_ | .. running .. |
Yu Li | eac4424 | 2015-06-29 10:50:03 +0800 | [diff] [blame] | 636 | // Change to kRunnable | .. running .. |
| 637 | // - this uses a CAS operation to ensure the | .. running .. |
| 638 | // suspend request flag isn't raised as the | .. running .. |
| 639 | // state is changed | .. running .. |
| 640 | // - if the CAS operation fails then goto x | .. running .. |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 641 | // .. running .. | .. running .. |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 642 | static MutatorMutex* mutator_lock_ ACQUIRED_AFTER(user_code_suspension_lock_); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 643 | |
| 644 | // Allow reader-writer mutual exclusion on the mark and live bitmaps of the heap. |
| 645 | static ReaderWriterMutex* heap_bitmap_lock_ ACQUIRED_AFTER(mutator_lock_); |
| 646 | |
| 647 | // Guards shutdown of the runtime. |
| 648 | static Mutex* runtime_shutdown_lock_ ACQUIRED_AFTER(heap_bitmap_lock_); |
| 649 | |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 650 | // Guards background profiler global state. |
Hiroshi Yamauchi | b139b6d | 2017-02-28 15:01:23 -0800 | [diff] [blame] | 651 | static Mutex* profiler_lock_ ACQUIRED_AFTER(runtime_shutdown_lock_); |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 652 | |
| 653 | // Guards trace (ie traceview) requests. |
| 654 | static Mutex* trace_lock_ ACQUIRED_AFTER(profiler_lock_); |
| 655 | |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 656 | // Guards debugger recent allocation records. |
| 657 | static Mutex* alloc_tracker_lock_ ACQUIRED_AFTER(trace_lock_); |
| 658 | |
| 659 | // Guards updates to instrumentation to ensure mutual exclusion of |
| 660 | // events like deoptimization requests. |
| 661 | // TODO: improve name, perhaps instrumentation_update_lock_. |
| 662 | static Mutex* deoptimization_lock_ ACQUIRED_AFTER(alloc_tracker_lock_); |
| 663 | |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 664 | // Guards Class Hierarchy Analysis (CHA). |
| 665 | static Mutex* cha_lock_ ACQUIRED_AFTER(deoptimization_lock_); |
| 666 | |
Igor Murashkin | 495e783 | 2017-10-27 10:56:20 -0700 | [diff] [blame] | 667 | // Guard the update of the SubtypeCheck data stores in each Class::status_ field. |
| 668 | // This lock is used in SubtypeCheck methods which are the interface for |
| 669 | // any SubtypeCheck-mutating methods. |
| 670 | // In Class::IsSubClass, the lock is not required since it does not update the SubtypeCheck data. |
| 671 | static Mutex* subtype_check_lock_ ACQUIRED_AFTER(cha_lock_); |
| 672 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 673 | // The thread_list_lock_ guards ThreadList::list_. It is also commonly held to stop threads |
| 674 | // attaching and detaching. |
Igor Murashkin | 495e783 | 2017-10-27 10:56:20 -0700 | [diff] [blame] | 675 | static Mutex* thread_list_lock_ ACQUIRED_AFTER(subtype_check_lock_); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 676 | |
Mathieu Chartier | 91e5669 | 2015-03-03 13:51:04 -0800 | [diff] [blame] | 677 | // Signaled when threads terminate. Used to determine when all non-daemons have terminated. |
| 678 | static ConditionVariable* thread_exit_cond_ GUARDED_BY(Locks::thread_list_lock_); |
| 679 | |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 680 | // Guards maintaining loading library data structures. |
| 681 | static Mutex* jni_libraries_lock_ ACQUIRED_AFTER(thread_list_lock_); |
| 682 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 683 | // Guards breakpoints. |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 684 | static ReaderWriterMutex* breakpoint_lock_ ACQUIRED_AFTER(jni_libraries_lock_); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 685 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 686 | // Guards lists of classes within the class linker. |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 687 | static ReaderWriterMutex* classlinker_classes_lock_ ACQUIRED_AFTER(breakpoint_lock_); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 688 | |
| 689 | // When declaring any Mutex add DEFAULT_MUTEX_ACQUIRED_AFTER to use annotalysis to check the code |
| 690 | // doesn't try to hold a higher level Mutex. |
Alex Light | 0fa1786 | 2017-10-24 13:43:05 -0700 | [diff] [blame] | 691 | #define DEFAULT_MUTEX_ACQUIRED_AFTER ACQUIRED_AFTER(art::Locks::classlinker_classes_lock_) |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 692 | |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 693 | static Mutex* allocated_monitor_ids_lock_ ACQUIRED_AFTER(classlinker_classes_lock_); |
| 694 | |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 695 | // Guard the allocation/deallocation of thread ids. |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 696 | static Mutex* allocated_thread_ids_lock_ ACQUIRED_AFTER(allocated_monitor_ids_lock_); |
Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 697 | |
| 698 | // Guards modification of the LDT on x86. |
| 699 | static Mutex* modify_ldt_lock_ ACQUIRED_AFTER(allocated_thread_ids_lock_); |
| 700 | |
Andreas Gampe | cc1b535 | 2016-12-01 16:58:38 -0800 | [diff] [blame] | 701 | static ReaderWriterMutex* dex_lock_ ACQUIRED_AFTER(modify_ldt_lock_); |
| 702 | |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 703 | // Guards opened oat files in OatFileManager. |
Andreas Gampe | cc1b535 | 2016-12-01 16:58:38 -0800 | [diff] [blame] | 704 | static ReaderWriterMutex* oat_file_manager_lock_ ACQUIRED_AFTER(dex_lock_); |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 705 | |
Nicolas Geoffray | 340dafa | 2016-11-18 16:03:10 +0000 | [diff] [blame] | 706 | // Guards extra string entries for VerifierDeps. |
| 707 | static ReaderWriterMutex* verifier_deps_lock_ ACQUIRED_AFTER(oat_file_manager_lock_); |
David Brazdil | ca3c8c3 | 2016-09-06 14:04:48 +0100 | [diff] [blame] | 708 | |
Richard Uhler | a206c74 | 2016-05-24 15:04:22 -0700 | [diff] [blame] | 709 | // Guards dlopen_handles_ in DlOpenOatFile. |
David Brazdil | ca3c8c3 | 2016-09-06 14:04:48 +0100 | [diff] [blame] | 710 | static Mutex* host_dlopen_handles_lock_ ACQUIRED_AFTER(verifier_deps_lock_); |
Mathieu Chartier | e58991b | 2015-10-13 07:59:34 -0700 | [diff] [blame] | 711 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 712 | // Guards intern table. |
Richard Uhler | a206c74 | 2016-05-24 15:04:22 -0700 | [diff] [blame] | 713 | static Mutex* intern_table_lock_ ACQUIRED_AFTER(host_dlopen_handles_lock_); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 714 | |
Mathieu Chartier | a5a53ef | 2014-09-12 12:58:05 -0700 | [diff] [blame] | 715 | // Guards reference processor. |
| 716 | static Mutex* reference_processor_lock_ ACQUIRED_AFTER(intern_table_lock_); |
| 717 | |
| 718 | // Guards cleared references queue. |
| 719 | static Mutex* reference_queue_cleared_references_lock_ ACQUIRED_AFTER(reference_processor_lock_); |
| 720 | |
| 721 | // Guards weak references queue. |
| 722 | static Mutex* reference_queue_weak_references_lock_ ACQUIRED_AFTER(reference_queue_cleared_references_lock_); |
| 723 | |
| 724 | // Guards finalizer references queue. |
| 725 | static Mutex* reference_queue_finalizer_references_lock_ ACQUIRED_AFTER(reference_queue_weak_references_lock_); |
| 726 | |
| 727 | // Guards phantom references queue. |
| 728 | static Mutex* reference_queue_phantom_references_lock_ ACQUIRED_AFTER(reference_queue_finalizer_references_lock_); |
| 729 | |
| 730 | // Guards soft references queue. |
| 731 | static Mutex* reference_queue_soft_references_lock_ ACQUIRED_AFTER(reference_queue_phantom_references_lock_); |
| 732 | |
Andreas Gampe | 05a364c | 2016-10-14 13:27:12 -0700 | [diff] [blame] | 733 | // Guard accesses to the JNI Global Reference table. |
| 734 | static ReaderWriterMutex* jni_globals_lock_ ACQUIRED_AFTER(reference_queue_soft_references_lock_); |
| 735 | |
| 736 | // Guard accesses to the JNI Weak Global Reference table. |
| 737 | static Mutex* jni_weak_globals_lock_ ACQUIRED_AFTER(jni_globals_lock_); |
| 738 | |
Andreas Gampe | c808954 | 2017-01-16 12:41:12 -0800 | [diff] [blame] | 739 | // Guard accesses to the JNI function table override. |
| 740 | static Mutex* jni_function_table_lock_ ACQUIRED_AFTER(jni_weak_globals_lock_); |
| 741 | |
Alex Light | 184f075 | 2018-07-13 11:18:22 -0700 | [diff] [blame^] | 742 | // Guard accesses to the Thread::custom_tls_. We use this to allow the TLS of other threads to be |
| 743 | // read (the reader must hold the ThreadListLock or have some other way of ensuring the thread |
| 744 | // will not die in that case though). This is useful for (eg) the implementation of |
| 745 | // GetThreadLocalStorage. |
| 746 | static Mutex* custom_tls_lock_ ACQUIRED_AFTER(jni_function_table_lock_); |
| 747 | |
Alex Light | 3e36a9c | 2018-06-19 09:45:05 -0700 | [diff] [blame] | 748 | // When declaring any Mutex add BOTTOM_MUTEX_ACQUIRED_AFTER to use annotalysis to check the code |
| 749 | // doesn't try to acquire a higher level Mutex. NB Due to the way the annotalysis works this |
| 750 | // actually only encodes the mutex being below jni_function_table_lock_ although having |
| 751 | // kGenericBottomLock level is lower than this. |
Alex Light | 184f075 | 2018-07-13 11:18:22 -0700 | [diff] [blame^] | 752 | #define BOTTOM_MUTEX_ACQUIRED_AFTER ACQUIRED_AFTER(art::Locks::custom_tls_lock_) |
Alex Light | 3e36a9c | 2018-06-19 09:45:05 -0700 | [diff] [blame] | 753 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 754 | // Have an exclusive aborting thread. |
Alex Light | 184f075 | 2018-07-13 11:18:22 -0700 | [diff] [blame^] | 755 | static Mutex* abort_lock_ ACQUIRED_AFTER(custom_tls_lock_); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 756 | |
| 757 | // Allow mutual exclusion when manipulating Thread::suspend_count_. |
| 758 | // TODO: Does the trade-off of a per-thread lock make sense? |
| 759 | static Mutex* thread_suspend_count_lock_ ACQUIRED_AFTER(abort_lock_); |
| 760 | |
| 761 | // One unexpected signal at a time lock. |
| 762 | static Mutex* unexpected_signal_lock_ ACQUIRED_AFTER(thread_suspend_count_lock_); |
| 763 | |
David Srbecky | fb3de3d | 2018-01-29 16:11:49 +0000 | [diff] [blame] | 764 | // Guards the magic global variables used by native tools (e.g. libunwind). |
| 765 | static Mutex* native_debug_interface_lock_ ACQUIRED_AFTER(unexpected_signal_lock_); |
| 766 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 767 | // Have an exclusive logging thread. |
David Srbecky | fb3de3d | 2018-01-29 16:11:49 +0000 | [diff] [blame] | 768 | static Mutex* logging_lock_ ACQUIRED_AFTER(native_debug_interface_lock_); |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 769 | |
| 770 | // List of mutexes that we expect a thread may hold when accessing weak refs. This is used to |
| 771 | // avoid a deadlock in the empty checkpoint while weak ref access is disabled (b/34964016). If we |
| 772 | // encounter an unexpected mutex on accessing weak refs, |
| 773 | // Thread::CheckEmptyCheckpointFromWeakRefAccess will detect it. |
| 774 | static std::vector<BaseMutex*> expected_mutexes_on_weak_ref_access_; |
Hiroshi Yamauchi | 8a43324 | 2017-03-07 14:39:22 -0800 | [diff] [blame] | 775 | static Atomic<const BaseMutex*> expected_mutexes_on_weak_ref_access_guard_; |
| 776 | class ScopedExpectedMutexesOnWeakRefAccessLock; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 777 | }; |
| 778 | |
Mathieu Chartier | 4e2cb09 | 2015-07-22 16:17:51 -0700 | [diff] [blame] | 779 | class Roles { |
| 780 | public: |
Mathieu Chartier | 90ef3db | 2015-08-04 15:19:41 -0700 | [diff] [blame] | 781 | // Uninterruptible means that the thread may not become suspended. |
Mathieu Chartier | 4e2cb09 | 2015-07-22 16:17:51 -0700 | [diff] [blame] | 782 | static Uninterruptible uninterruptible_; |
| 783 | }; |
| 784 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 785 | } // namespace art |
| 786 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 787 | #endif // ART_RUNTIME_BASE_MUTEX_H_ |