Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 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 | |
Elliott Hughes | 54e7df1 | 2011-09-16 11:47:04 -0700 | [diff] [blame] | 17 | #include "monitor.h" |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 18 | |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 19 | #include <vector> |
| 20 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 21 | #include "android-base/stringprintf.h" |
| 22 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 23 | #include "art_method-inl.h" |
Andreas Gampe | 170331f | 2017-12-07 18:41:03 -0800 | [diff] [blame] | 24 | #include "base/logging.h" // For VLOG. |
Elliott Hughes | 76b6167 | 2012-12-12 17:47:30 -0800 | [diff] [blame] | 25 | #include "base/mutex.h" |
David Sehr | c431b9d | 2018-03-02 12:01:51 -0800 | [diff] [blame] | 26 | #include "base/quasi_atomic.h" |
Elliott Hughes | 1aa246d | 2012-12-13 09:29:36 -0800 | [diff] [blame] | 27 | #include "base/stl_util.h" |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 28 | #include "base/systrace.h" |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 29 | #include "base/time_utils.h" |
jeffhao | 33dc771 | 2011-11-09 17:54:24 -0800 | [diff] [blame] | 30 | #include "class_linker.h" |
David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 31 | #include "dex/dex_file-inl.h" |
| 32 | #include "dex/dex_file_types.h" |
| 33 | #include "dex/dex_instruction-inl.h" |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 34 | #include "lock_word-inl.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 35 | #include "mirror/class-inl.h" |
Ian Rogers | 05f3057 | 2013-02-20 12:13:11 -0800 | [diff] [blame] | 36 | #include "mirror/object-inl.h" |
Andreas Gampe | 5d08fcc | 2017-06-05 17:56:46 -0700 | [diff] [blame] | 37 | #include "object_callbacks.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 38 | #include "scoped_thread_state_change-inl.h" |
Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 39 | #include "stack.h" |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 40 | #include "thread.h" |
Elliott Hughes | 8e4aac5 | 2011-09-26 17:03:36 -0700 | [diff] [blame] | 41 | #include "thread_list.h" |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 42 | #include "verifier/method_verifier.h" |
Elliott Hughes | 044288f | 2012-06-25 14:46:39 -0700 | [diff] [blame] | 43 | #include "well_known_classes.h" |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 44 | |
| 45 | namespace art { |
| 46 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 47 | using android::base::StringPrintf; |
| 48 | |
Andreas Gampe | 5d68914 | 2017-10-19 13:03:29 -0700 | [diff] [blame] | 49 | static constexpr uint64_t kDebugThresholdFudgeFactor = kIsDebugBuild ? 10 : 1; |
| 50 | static constexpr uint64_t kLongWaitMs = 100 * kDebugThresholdFudgeFactor; |
Mathieu Chartier | b9001ab | 2014-10-03 13:28:46 -0700 | [diff] [blame] | 51 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 52 | /* |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 53 | * Every Object has a monitor associated with it, but not every Object is actually locked. Even |
| 54 | * the ones that are locked do not need a full-fledged monitor until a) there is actual contention |
| 55 | * or b) wait() is called on the Object. |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 56 | * |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 57 | * For Android, we have implemented a scheme similar to the one described in Bacon et al.'s |
| 58 | * "Thin locks: featherweight synchronization for Java" (ACM 1998). Things are even easier for us, |
| 59 | * though, because we have a full 32 bits to work with. |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 60 | * |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 61 | * The two states of an Object's lock are referred to as "thin" and "fat". A lock may transition |
Daniel Colascione | c3d5b84 | 2018-04-15 10:52:18 -0700 | [diff] [blame] | 62 | * from the "thin" state to the "fat" state and this transition is referred to as inflation. We |
| 63 | * deflate locks from time to time as part of heap trimming. |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 64 | * |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 65 | * The lock value itself is stored in mirror::Object::monitor_ and the representation is described |
| 66 | * in the LockWord value type. |
Elliott Hughes | 54e7df1 | 2011-09-16 11:47:04 -0700 | [diff] [blame] | 67 | * |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 68 | * Monitors provide: |
| 69 | * - mutually exclusive access to resources |
| 70 | * - a way for multiple threads to wait for notification |
| 71 | * |
| 72 | * In effect, they fill the role of both mutexes and condition variables. |
| 73 | * |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 74 | * Only one thread can own the monitor at any time. There may be several threads waiting on it |
| 75 | * (the wait call unlocks it). One or more waiting threads may be getting interrupted or notified |
| 76 | * at any given time. |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 77 | */ |
Elliott Hughes | 54e7df1 | 2011-09-16 11:47:04 -0700 | [diff] [blame] | 78 | |
Elliott Hughes | fc86162 | 2011-10-17 17:57:47 -0700 | [diff] [blame] | 79 | uint32_t Monitor::lock_profiling_threshold_ = 0; |
Andreas Gampe | d0210e5 | 2017-06-23 13:38:09 -0700 | [diff] [blame] | 80 | uint32_t Monitor::stack_dump_lock_profiling_threshold_ = 0; |
Elliott Hughes | 32d6e1e | 2011-10-11 14:47:44 -0700 | [diff] [blame] | 81 | |
Andreas Gampe | d0210e5 | 2017-06-23 13:38:09 -0700 | [diff] [blame] | 82 | void Monitor::Init(uint32_t lock_profiling_threshold, |
| 83 | uint32_t stack_dump_lock_profiling_threshold) { |
Andreas Gampe | 5d68914 | 2017-10-19 13:03:29 -0700 | [diff] [blame] | 84 | // It isn't great to always include the debug build fudge factor for command- |
| 85 | // line driven arguments, but it's easier to adjust here than in the build. |
| 86 | lock_profiling_threshold_ = |
| 87 | lock_profiling_threshold * kDebugThresholdFudgeFactor; |
| 88 | stack_dump_lock_profiling_threshold_ = |
| 89 | stack_dump_lock_profiling_threshold * kDebugThresholdFudgeFactor; |
Elliott Hughes | 32d6e1e | 2011-10-11 14:47:44 -0700 | [diff] [blame] | 90 | } |
| 91 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 92 | Monitor::Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code) |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 93 | : monitor_lock_("a monitor lock", kMonitorLock), |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 94 | monitor_contenders_("monitor contenders", monitor_lock_), |
Mathieu Chartier | 46bc778 | 2013-11-12 17:03:02 -0800 | [diff] [blame] | 95 | num_waiters_(0), |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 96 | owner_(owner), |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 97 | lock_count_(0), |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 98 | obj_(GcRoot<mirror::Object>(obj)), |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 99 | wait_set_(nullptr), |
Charles Munger | c665d63 | 2018-11-06 16:20:13 +0000 | [diff] [blame] | 100 | wake_set_(nullptr), |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 101 | hash_code_(hash_code), |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 102 | locking_method_(nullptr), |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 103 | locking_dex_pc_(0), |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 104 | monitor_id_(MonitorPool::ComputeMonitorId(this, self)) { |
| 105 | #ifdef __LP64__ |
| 106 | DCHECK(false) << "Should not be reached in 64b"; |
| 107 | next_free_ = nullptr; |
| 108 | #endif |
| 109 | // We should only inflate a lock if the owner is ourselves or suspended. This avoids a race |
| 110 | // with the owner unlocking the thin-lock. |
| 111 | CHECK(owner == nullptr || owner == self || owner->IsSuspended()); |
| 112 | // The identity hash code is set for the life time of the monitor. |
| 113 | } |
| 114 | |
| 115 | Monitor::Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code, |
| 116 | MonitorId id) |
| 117 | : monitor_lock_("a monitor lock", kMonitorLock), |
| 118 | monitor_contenders_("monitor contenders", monitor_lock_), |
| 119 | num_waiters_(0), |
| 120 | owner_(owner), |
| 121 | lock_count_(0), |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 122 | obj_(GcRoot<mirror::Object>(obj)), |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 123 | wait_set_(nullptr), |
Charles Munger | c665d63 | 2018-11-06 16:20:13 +0000 | [diff] [blame] | 124 | wake_set_(nullptr), |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 125 | hash_code_(hash_code), |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 126 | locking_method_(nullptr), |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 127 | locking_dex_pc_(0), |
| 128 | monitor_id_(id) { |
| 129 | #ifdef __LP64__ |
| 130 | next_free_ = nullptr; |
| 131 | #endif |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 132 | // We should only inflate a lock if the owner is ourselves or suspended. This avoids a race |
| 133 | // with the owner unlocking the thin-lock. |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 134 | CHECK(owner == nullptr || owner == self || owner->IsSuspended()); |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 135 | // The identity hash code is set for the life time of the monitor. |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 136 | } |
| 137 | |
Mathieu Chartier | 4e6a31e | 2013-10-31 10:35:05 -0700 | [diff] [blame] | 138 | int32_t Monitor::GetHashCode() { |
Mathieu Chartier | 8bb3c68 | 2018-06-18 12:53:10 -0700 | [diff] [blame] | 139 | int32_t hc = hash_code_.load(std::memory_order_relaxed); |
| 140 | if (!HasHashCode()) { |
| 141 | // Use a strong CAS to prevent spurious failures since these can make the boot image |
| 142 | // non-deterministic. |
| 143 | hash_code_.CompareAndSetStrongRelaxed(0, mirror::Object::GenerateIdentityHashCode()); |
| 144 | hc = hash_code_.load(std::memory_order_relaxed); |
Mathieu Chartier | 4e6a31e | 2013-10-31 10:35:05 -0700 | [diff] [blame] | 145 | } |
| 146 | DCHECK(HasHashCode()); |
Mathieu Chartier | 8bb3c68 | 2018-06-18 12:53:10 -0700 | [diff] [blame] | 147 | return hc; |
Mathieu Chartier | 4e6a31e | 2013-10-31 10:35:05 -0700 | [diff] [blame] | 148 | } |
| 149 | |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 150 | bool Monitor::Install(Thread* self) { |
| 151 | MutexLock mu(self, monitor_lock_); // Uncontended mutex acquisition as monitor isn't yet public. |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 152 | CHECK(owner_ == nullptr || owner_ == self || owner_->IsSuspended()); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 153 | // Propagate the lock state. |
Hiroshi Yamauchi | 4cba0d9 | 2014-05-21 21:10:23 -0700 | [diff] [blame] | 154 | LockWord lw(GetObject()->GetLockWord(false)); |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 155 | switch (lw.GetState()) { |
| 156 | case LockWord::kThinLocked: { |
| 157 | CHECK_EQ(owner_->GetThreadId(), lw.ThinLockOwner()); |
| 158 | lock_count_ = lw.ThinLockCount(); |
| 159 | break; |
| 160 | } |
| 161 | case LockWord::kHashCode: { |
Orion Hodson | 88591fe | 2018-03-06 13:35:43 +0000 | [diff] [blame] | 162 | CHECK_EQ(hash_code_.load(std::memory_order_relaxed), static_cast<int32_t>(lw.GetHashCode())); |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 163 | break; |
| 164 | } |
| 165 | case LockWord::kFatLocked: { |
| 166 | // The owner_ is suspended but another thread beat us to install a monitor. |
| 167 | return false; |
| 168 | } |
| 169 | case LockWord::kUnlocked: { |
| 170 | LOG(FATAL) << "Inflating unlocked lock word"; |
| 171 | break; |
| 172 | } |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 173 | default: { |
| 174 | LOG(FATAL) << "Invalid monitor state " << lw.GetState(); |
| 175 | return false; |
| 176 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 177 | } |
Mathieu Chartier | 36a270a | 2016-07-28 18:08:51 -0700 | [diff] [blame] | 178 | LockWord fat(this, lw.GCState()); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 179 | // Publish the updated lock word, which may race with other threads. |
Mathieu Chartier | 42c2e50 | 2018-06-19 12:30:56 -0700 | [diff] [blame] | 180 | bool success = GetObject()->CasLockWord(lw, fat, CASMode::kWeak, std::memory_order_release); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 181 | // Lock profiling. |
Mathieu Chartier | 9728f91 | 2013-10-30 09:45:13 -0700 | [diff] [blame] | 182 | if (success && owner_ != nullptr && lock_profiling_threshold_ != 0) { |
Andreas Gampe | 6ec8ebd | 2014-07-25 13:36:56 -0700 | [diff] [blame] | 183 | // Do not abort on dex pc errors. This can easily happen when we want to dump a stack trace on |
| 184 | // abort. |
| 185 | locking_method_ = owner_->GetCurrentMethod(&locking_dex_pc_, false); |
Andreas Gampe | 5a38727 | 2017-11-06 19:47:16 -0800 | [diff] [blame] | 186 | if (locking_method_ != nullptr && UNLIKELY(locking_method_->IsProxyMethod())) { |
| 187 | // Grab another frame. Proxy methods are not helpful for lock profiling. This should be rare |
| 188 | // enough that it's OK to walk the stack twice. |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 189 | struct NextMethodVisitor final : public StackVisitor { |
Andreas Gampe | 5a38727 | 2017-11-06 19:47:16 -0800 | [diff] [blame] | 190 | explicit NextMethodVisitor(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_) |
| 191 | : StackVisitor(thread, |
| 192 | nullptr, |
| 193 | StackVisitor::StackWalkKind::kIncludeInlinedFrames, |
| 194 | false), |
| 195 | count_(0), |
| 196 | method_(nullptr), |
| 197 | dex_pc_(0) {} |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 198 | bool VisitFrame() override REQUIRES_SHARED(Locks::mutator_lock_) { |
Andreas Gampe | 5a38727 | 2017-11-06 19:47:16 -0800 | [diff] [blame] | 199 | ArtMethod* m = GetMethod(); |
| 200 | if (m->IsRuntimeMethod()) { |
| 201 | // Continue if this is a runtime method. |
| 202 | return true; |
| 203 | } |
| 204 | count_++; |
| 205 | if (count_ == 2u) { |
| 206 | method_ = m; |
| 207 | dex_pc_ = GetDexPc(false); |
| 208 | return false; |
| 209 | } |
| 210 | return true; |
| 211 | } |
| 212 | size_t count_; |
| 213 | ArtMethod* method_; |
| 214 | uint32_t dex_pc_; |
| 215 | }; |
| 216 | NextMethodVisitor nmv(owner_); |
| 217 | nmv.WalkStack(); |
| 218 | locking_method_ = nmv.method_; |
| 219 | locking_dex_pc_ = nmv.dex_pc_; |
| 220 | } |
| 221 | DCHECK(locking_method_ == nullptr || !locking_method_->IsProxyMethod()); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 222 | } |
| 223 | return success; |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | Monitor::~Monitor() { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 227 | // Deflated monitors have a null object. |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 228 | } |
| 229 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 230 | void Monitor::AppendToWaitSet(Thread* thread) { |
Charles Munger | c665d63 | 2018-11-06 16:20:13 +0000 | [diff] [blame] | 231 | // Not checking that the owner is equal to this thread, since we've released |
| 232 | // the monitor by the time this method is called. |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 233 | DCHECK(thread != nullptr); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 234 | DCHECK(thread->GetWaitNext() == nullptr) << thread->GetWaitNext(); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 235 | if (wait_set_ == nullptr) { |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 236 | wait_set_ = thread; |
| 237 | return; |
| 238 | } |
| 239 | |
| 240 | // push_back. |
| 241 | Thread* t = wait_set_; |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 242 | while (t->GetWaitNext() != nullptr) { |
| 243 | t = t->GetWaitNext(); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 244 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 245 | t->SetWaitNext(thread); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 246 | } |
| 247 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 248 | void Monitor::RemoveFromWaitSet(Thread *thread) { |
| 249 | DCHECK(owner_ == Thread::Current()); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 250 | DCHECK(thread != nullptr); |
Charles Munger | c665d63 | 2018-11-06 16:20:13 +0000 | [diff] [blame] | 251 | auto remove = [&](Thread*& set){ |
| 252 | if (set != nullptr) { |
| 253 | if (set == thread) { |
| 254 | set = thread->GetWaitNext(); |
| 255 | thread->SetWaitNext(nullptr); |
| 256 | return true; |
| 257 | } |
| 258 | Thread* t = set; |
| 259 | while (t->GetWaitNext() != nullptr) { |
| 260 | if (t->GetWaitNext() == thread) { |
| 261 | t->SetWaitNext(thread->GetWaitNext()); |
| 262 | thread->SetWaitNext(nullptr); |
| 263 | return true; |
| 264 | } |
| 265 | t = t->GetWaitNext(); |
| 266 | } |
Roland Levillain | 9cec965 | 2018-11-06 10:50:20 +0000 | [diff] [blame] | 267 | } |
Charles Munger | c665d63 | 2018-11-06 16:20:13 +0000 | [diff] [blame] | 268 | return false; |
| 269 | }; |
| 270 | if (remove(wait_set_)) { |
| 271 | return; |
Roland Levillain | 9cec965 | 2018-11-06 10:50:20 +0000 | [diff] [blame] | 272 | } |
Charles Munger | c665d63 | 2018-11-06 16:20:13 +0000 | [diff] [blame] | 273 | remove(wake_set_); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 274 | } |
| 275 | |
Mathieu Chartier | 6aa3df9 | 2013-09-17 15:17:28 -0700 | [diff] [blame] | 276 | void Monitor::SetObject(mirror::Object* object) { |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 277 | obj_ = GcRoot<mirror::Object>(object); |
Mathieu Chartier | 6aa3df9 | 2013-09-17 15:17:28 -0700 | [diff] [blame] | 278 | } |
| 279 | |
Andreas Gampe | c7ed09b | 2016-04-25 20:08:55 -0700 | [diff] [blame] | 280 | // This function is inlined and just helps to not have the VLOG and ATRACE check at all the |
| 281 | // potential tracing points. |
| 282 | void Monitor::AtraceMonitorLock(Thread* self, mirror::Object* obj, bool is_wait) { |
| 283 | if (UNLIKELY(VLOG_IS_ON(systrace_lock_logging) && ATRACE_ENABLED())) { |
| 284 | AtraceMonitorLockImpl(self, obj, is_wait); |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | void Monitor::AtraceMonitorLockImpl(Thread* self, mirror::Object* obj, bool is_wait) { |
| 289 | // Wait() requires a deeper call stack to be useful. Otherwise you'll see "Waiting at |
| 290 | // Object.java". Assume that we'll wait a nontrivial amount, so it's OK to do a longer |
| 291 | // stack walk than if !is_wait. |
Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame^] | 292 | const size_t wanted_frame_number = is_wait ? 1U : 0U; |
| 293 | |
| 294 | ArtMethod* method = nullptr; |
| 295 | uint32_t dex_pc = 0u; |
| 296 | |
| 297 | size_t current_frame_number = 0u; |
| 298 | StackVisitor::WalkStack( |
| 299 | // Note: Adapted from CurrentMethodVisitor in thread.cc. We must not resolve here. |
| 300 | [&](const art::StackVisitor* stack_visitor) REQUIRES_SHARED(Locks::mutator_lock_) { |
| 301 | ArtMethod* m = stack_visitor->GetMethod(); |
| 302 | if (m == nullptr || m->IsRuntimeMethod()) { |
| 303 | // Runtime method, upcall, or resolution issue. Skip. |
| 304 | return true; |
| 305 | } |
| 306 | |
| 307 | // Is this the requested frame? |
| 308 | if (current_frame_number == wanted_frame_number) { |
| 309 | method = m; |
| 310 | dex_pc = stack_visitor->GetDexPc(false /* abort_on_error*/); |
| 311 | return false; |
| 312 | } |
| 313 | |
| 314 | // Look for more. |
| 315 | current_frame_number++; |
| 316 | return true; |
| 317 | }, |
| 318 | self, |
| 319 | /* context= */ nullptr, |
| 320 | art::StackVisitor::StackWalkKind::kIncludeInlinedFrames); |
| 321 | |
Andreas Gampe | c7ed09b | 2016-04-25 20:08:55 -0700 | [diff] [blame] | 322 | const char* prefix = is_wait ? "Waiting on " : "Locking "; |
| 323 | |
| 324 | const char* filename; |
| 325 | int32_t line_number; |
Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame^] | 326 | TranslateLocation(method, dex_pc, &filename, &line_number); |
Andreas Gampe | c7ed09b | 2016-04-25 20:08:55 -0700 | [diff] [blame] | 327 | |
| 328 | // It would be nice to have a stable "ID" for the object here. However, the only stable thing |
| 329 | // would be the identity hashcode. But we cannot use IdentityHashcode here: For one, there are |
| 330 | // times when it is unsafe to make that call (see stack dumping for an explanation). More |
| 331 | // importantly, we would have to give up on thin-locking when adding systrace locks, as the |
| 332 | // identity hashcode is stored in the lockword normally (so can't be used with thin-locks). |
| 333 | // |
| 334 | // Because of thin-locks we also cannot use the monitor id (as there is no monitor). Monitor ids |
| 335 | // also do not have to be stable, as the monitor may be deflated. |
| 336 | std::string tmp = StringPrintf("%s %d at %s:%d", |
| 337 | prefix, |
| 338 | (obj == nullptr ? -1 : static_cast<int32_t>(reinterpret_cast<uintptr_t>(obj))), |
| 339 | (filename != nullptr ? filename : "null"), |
| 340 | line_number); |
| 341 | ATRACE_BEGIN(tmp.c_str()); |
| 342 | } |
| 343 | |
| 344 | void Monitor::AtraceMonitorUnlock() { |
| 345 | if (UNLIKELY(VLOG_IS_ON(systrace_lock_logging))) { |
| 346 | ATRACE_END(); |
| 347 | } |
| 348 | } |
| 349 | |
Mathieu Chartier | 0ffdc9c | 2016-04-19 13:46:03 -0700 | [diff] [blame] | 350 | std::string Monitor::PrettyContentionInfo(const std::string& owner_name, |
| 351 | pid_t owner_tid, |
Mathieu Chartier | 74b3c8f | 2016-04-15 19:11:45 -0700 | [diff] [blame] | 352 | ArtMethod* owners_method, |
| 353 | uint32_t owners_dex_pc, |
| 354 | size_t num_waiters) { |
Hiroshi Yamauchi | 71cd68d | 2017-01-25 18:28:12 -0800 | [diff] [blame] | 355 | Locks::mutator_lock_->AssertSharedHeld(Thread::Current()); |
Mathieu Chartier | 74b3c8f | 2016-04-15 19:11:45 -0700 | [diff] [blame] | 356 | const char* owners_filename; |
Goran Jakovljevic | 49c882b | 2016-04-19 10:27:21 +0200 | [diff] [blame] | 357 | int32_t owners_line_number = 0; |
Mathieu Chartier | 74b3c8f | 2016-04-15 19:11:45 -0700 | [diff] [blame] | 358 | if (owners_method != nullptr) { |
| 359 | TranslateLocation(owners_method, owners_dex_pc, &owners_filename, &owners_line_number); |
| 360 | } |
| 361 | std::ostringstream oss; |
Mathieu Chartier | 0ffdc9c | 2016-04-19 13:46:03 -0700 | [diff] [blame] | 362 | oss << "monitor contention with owner " << owner_name << " (" << owner_tid << ")"; |
Mathieu Chartier | 74b3c8f | 2016-04-15 19:11:45 -0700 | [diff] [blame] | 363 | if (owners_method != nullptr) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 364 | oss << " at " << owners_method->PrettyMethod(); |
Mathieu Chartier | 36891fe | 2016-04-28 17:21:08 -0700 | [diff] [blame] | 365 | oss << "(" << owners_filename << ":" << owners_line_number << ")"; |
Mathieu Chartier | 74b3c8f | 2016-04-15 19:11:45 -0700 | [diff] [blame] | 366 | } |
| 367 | oss << " waiters=" << num_waiters; |
| 368 | return oss.str(); |
| 369 | } |
| 370 | |
Mathieu Chartier | 4b0ef1c | 2016-07-29 16:26:01 -0700 | [diff] [blame] | 371 | bool Monitor::TryLockLocked(Thread* self) { |
| 372 | if (owner_ == nullptr) { // Unowned. |
| 373 | owner_ = self; |
| 374 | CHECK_EQ(lock_count_, 0); |
| 375 | // When debugging, save the current monitor holder for future |
| 376 | // acquisition failures to use in sampled logging. |
| 377 | if (lock_profiling_threshold_ != 0) { |
| 378 | locking_method_ = self->GetCurrentMethod(&locking_dex_pc_); |
Andreas Gampe | 5a38727 | 2017-11-06 19:47:16 -0800 | [diff] [blame] | 379 | // We don't expect a proxy method here. |
| 380 | DCHECK(locking_method_ == nullptr || !locking_method_->IsProxyMethod()); |
Mathieu Chartier | 4b0ef1c | 2016-07-29 16:26:01 -0700 | [diff] [blame] | 381 | } |
| 382 | } else if (owner_ == self) { // Recursive. |
| 383 | lock_count_++; |
| 384 | } else { |
| 385 | return false; |
| 386 | } |
Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 387 | AtraceMonitorLock(self, GetObject(), /* is_wait= */ false); |
Mathieu Chartier | 4b0ef1c | 2016-07-29 16:26:01 -0700 | [diff] [blame] | 388 | return true; |
| 389 | } |
| 390 | |
| 391 | bool Monitor::TryLock(Thread* self) { |
| 392 | MutexLock mu(self, monitor_lock_); |
| 393 | return TryLockLocked(self); |
| 394 | } |
| 395 | |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 396 | // Asserts that a mutex isn't held when the class comes into and out of scope. |
| 397 | class ScopedAssertNotHeld { |
| 398 | public: |
| 399 | ScopedAssertNotHeld(Thread* self, Mutex& mu) : self_(self), mu_(mu) { |
| 400 | mu_.AssertNotHeld(self_); |
| 401 | } |
| 402 | |
| 403 | ~ScopedAssertNotHeld() { |
| 404 | mu_.AssertNotHeld(self_); |
| 405 | } |
| 406 | |
| 407 | private: |
| 408 | Thread* const self_; |
| 409 | Mutex& mu_; |
| 410 | DISALLOW_COPY_AND_ASSIGN(ScopedAssertNotHeld); |
| 411 | }; |
| 412 | |
| 413 | template <LockReason reason> |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 414 | void Monitor::Lock(Thread* self) { |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 415 | ScopedAssertNotHeld sanh(self, monitor_lock_); |
| 416 | bool called_monitors_callback = false; |
| 417 | monitor_lock_.Lock(self); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 418 | while (true) { |
Mathieu Chartier | 4b0ef1c | 2016-07-29 16:26:01 -0700 | [diff] [blame] | 419 | if (TryLockLocked(self)) { |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 420 | break; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 421 | } |
| 422 | // Contended. |
| 423 | const bool log_contention = (lock_profiling_threshold_ != 0); |
Xin Guan | b894a19 | 2014-08-22 11:55:37 -0500 | [diff] [blame] | 424 | uint64_t wait_start_ms = log_contention ? MilliTime() : 0; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 425 | ArtMethod* owners_method = locking_method_; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 426 | uint32_t owners_dex_pc = locking_dex_pc_; |
Mathieu Chartier | 440e4ce | 2014-03-31 16:36:35 -0700 | [diff] [blame] | 427 | // Do this before releasing the lock so that we don't get deflated. |
Mathieu Chartier | b9001ab | 2014-10-03 13:28:46 -0700 | [diff] [blame] | 428 | size_t num_waiters = num_waiters_; |
Mathieu Chartier | 440e4ce | 2014-03-31 16:36:35 -0700 | [diff] [blame] | 429 | ++num_waiters_; |
Andreas Gampe | 2702d56 | 2017-02-06 09:48:00 -0800 | [diff] [blame] | 430 | |
| 431 | // If systrace logging is enabled, first look at the lock owner. Acquiring the monitor's |
| 432 | // lock and then re-acquiring the mutator lock can deadlock. |
| 433 | bool started_trace = false; |
| 434 | if (ATRACE_ENABLED()) { |
| 435 | if (owner_ != nullptr) { // Did the owner_ give the lock up? |
| 436 | std::ostringstream oss; |
| 437 | std::string name; |
| 438 | owner_->GetThreadName(name); |
| 439 | oss << PrettyContentionInfo(name, |
| 440 | owner_->GetTid(), |
| 441 | owners_method, |
| 442 | owners_dex_pc, |
| 443 | num_waiters); |
| 444 | // Add info for contending thread. |
| 445 | uint32_t pc; |
| 446 | ArtMethod* m = self->GetCurrentMethod(&pc); |
| 447 | const char* filename; |
| 448 | int32_t line_number; |
| 449 | TranslateLocation(m, pc, &filename, &line_number); |
| 450 | oss << " blocking from " |
| 451 | << ArtMethod::PrettyMethod(m) << "(" << (filename != nullptr ? filename : "null") |
| 452 | << ":" << line_number << ")"; |
| 453 | ATRACE_BEGIN(oss.str().c_str()); |
| 454 | started_trace = true; |
| 455 | } |
| 456 | } |
| 457 | |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 458 | monitor_lock_.Unlock(self); // Let go of locks in order. |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 459 | // Call the contended locking cb once and only once. Also only call it if we are locking for |
| 460 | // the first time, not during a Wait wakeup. |
| 461 | if (reason == LockReason::kForLock && !called_monitors_callback) { |
| 462 | called_monitors_callback = true; |
| 463 | Runtime::Current()->GetRuntimeCallbacks()->MonitorContendedLocking(this); |
| 464 | } |
Mathieu Chartier | a6e7f08 | 2014-05-22 14:43:37 -0700 | [diff] [blame] | 465 | self->SetMonitorEnterObject(GetObject()); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 466 | { |
Hiroshi Yamauchi | 71cd68d | 2017-01-25 18:28:12 -0800 | [diff] [blame] | 467 | ScopedThreadSuspension tsc(self, kBlocked); // Change to blocked and give up mutator_lock_. |
Andreas Gampe | 2702d56 | 2017-02-06 09:48:00 -0800 | [diff] [blame] | 468 | uint32_t original_owner_thread_id = 0u; |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 469 | { |
| 470 | // Reacquire monitor_lock_ without mutator_lock_ for Wait. |
| 471 | MutexLock mu2(self, monitor_lock_); |
| 472 | if (owner_ != nullptr) { // Did the owner_ give the lock up? |
| 473 | original_owner_thread_id = owner_->GetThreadId(); |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 474 | monitor_contenders_.Wait(self); // Still contended so wait. |
Mathieu Chartier | f0dc8b5 | 2014-12-17 10:13:30 -0800 | [diff] [blame] | 475 | } |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 476 | } |
| 477 | if (original_owner_thread_id != 0u) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 478 | // Woken from contention. |
| 479 | if (log_contention) { |
Andreas Gampe | 111b109 | 2017-06-22 20:28:23 -0700 | [diff] [blame] | 480 | uint64_t wait_ms = MilliTime() - wait_start_ms; |
| 481 | uint32_t sample_percent; |
| 482 | if (wait_ms >= lock_profiling_threshold_) { |
| 483 | sample_percent = 100; |
| 484 | } else { |
| 485 | sample_percent = 100 * wait_ms / lock_profiling_threshold_; |
| 486 | } |
| 487 | if (sample_percent != 0 && (static_cast<uint32_t>(rand() % 100) < sample_percent)) { |
| 488 | // Reacquire mutator_lock_ for logging. |
| 489 | ScopedObjectAccess soa(self); |
Andreas Gampe | 111b109 | 2017-06-22 20:28:23 -0700 | [diff] [blame] | 490 | |
Andreas Gampe | d0210e5 | 2017-06-23 13:38:09 -0700 | [diff] [blame] | 491 | bool owner_alive = false; |
| 492 | pid_t original_owner_tid = 0; |
| 493 | std::string original_owner_name; |
Mathieu Chartier | 0ffdc9c | 2016-04-19 13:46:03 -0700 | [diff] [blame] | 494 | |
Andreas Gampe | d0210e5 | 2017-06-23 13:38:09 -0700 | [diff] [blame] | 495 | const bool should_dump_stacks = stack_dump_lock_profiling_threshold_ > 0 && |
| 496 | wait_ms > stack_dump_lock_profiling_threshold_; |
| 497 | std::string owner_stack_dump; |
Andreas Gampe | 111b109 | 2017-06-22 20:28:23 -0700 | [diff] [blame] | 498 | |
Andreas Gampe | d0210e5 | 2017-06-23 13:38:09 -0700 | [diff] [blame] | 499 | // Acquire thread-list lock to find thread and keep it from dying until we've got all |
| 500 | // the info we need. |
| 501 | { |
Alex Light | b1e31a8 | 2017-10-04 16:57:36 -0700 | [diff] [blame] | 502 | Locks::thread_list_lock_->ExclusiveLock(Thread::Current()); |
Andreas Gampe | d0210e5 | 2017-06-23 13:38:09 -0700 | [diff] [blame] | 503 | |
| 504 | // Re-find the owner in case the thread got killed. |
| 505 | Thread* original_owner = Runtime::Current()->GetThreadList()->FindThreadByThreadId( |
| 506 | original_owner_thread_id); |
| 507 | |
| 508 | if (original_owner != nullptr) { |
| 509 | owner_alive = true; |
| 510 | original_owner_tid = original_owner->GetTid(); |
| 511 | original_owner->GetThreadName(original_owner_name); |
| 512 | |
| 513 | if (should_dump_stacks) { |
| 514 | // Very long contention. Dump stacks. |
| 515 | struct CollectStackTrace : public Closure { |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 516 | void Run(art::Thread* thread) override |
Andreas Gampe | d0210e5 | 2017-06-23 13:38:09 -0700 | [diff] [blame] | 517 | REQUIRES_SHARED(art::Locks::mutator_lock_) { |
| 518 | thread->DumpJavaStack(oss); |
| 519 | } |
| 520 | |
| 521 | std::ostringstream oss; |
| 522 | }; |
| 523 | CollectStackTrace owner_trace; |
Alex Light | b1e31a8 | 2017-10-04 16:57:36 -0700 | [diff] [blame] | 524 | // RequestSynchronousCheckpoint releases the thread_list_lock_ as a part of its |
| 525 | // execution. |
Andreas Gampe | d0210e5 | 2017-06-23 13:38:09 -0700 | [diff] [blame] | 526 | original_owner->RequestSynchronousCheckpoint(&owner_trace); |
| 527 | owner_stack_dump = owner_trace.oss.str(); |
Alex Light | b1e31a8 | 2017-10-04 16:57:36 -0700 | [diff] [blame] | 528 | } else { |
| 529 | Locks::thread_list_lock_->ExclusiveUnlock(Thread::Current()); |
Andreas Gampe | d0210e5 | 2017-06-23 13:38:09 -0700 | [diff] [blame] | 530 | } |
Alex Light | b1e31a8 | 2017-10-04 16:57:36 -0700 | [diff] [blame] | 531 | } else { |
| 532 | Locks::thread_list_lock_->ExclusiveUnlock(Thread::Current()); |
Andreas Gampe | d0210e5 | 2017-06-23 13:38:09 -0700 | [diff] [blame] | 533 | } |
| 534 | // This is all the data we need. Now drop the thread-list lock, it's OK for the |
| 535 | // owner to go away now. |
| 536 | } |
| 537 | |
| 538 | // If we found the owner (and thus have owner data), go and log now. |
| 539 | if (owner_alive) { |
| 540 | // Give the detailed traces for really long contention. |
| 541 | if (should_dump_stacks) { |
| 542 | // This must be here (and not above) because we cannot hold the thread-list lock |
| 543 | // while running the checkpoint. |
| 544 | std::ostringstream self_trace_oss; |
| 545 | self->DumpJavaStack(self_trace_oss); |
| 546 | |
| 547 | uint32_t pc; |
| 548 | ArtMethod* m = self->GetCurrentMethod(&pc); |
| 549 | |
| 550 | LOG(WARNING) << "Long " |
| 551 | << PrettyContentionInfo(original_owner_name, |
| 552 | original_owner_tid, |
| 553 | owners_method, |
| 554 | owners_dex_pc, |
| 555 | num_waiters) |
| 556 | << " in " << ArtMethod::PrettyMethod(m) << " for " |
| 557 | << PrettyDuration(MsToNs(wait_ms)) << "\n" |
| 558 | << "Current owner stack:\n" << owner_stack_dump |
| 559 | << "Contender stack:\n" << self_trace_oss.str(); |
| 560 | } else if (wait_ms > kLongWaitMs && owners_method != nullptr) { |
Mathieu Chartier | 36891fe | 2016-04-28 17:21:08 -0700 | [diff] [blame] | 561 | uint32_t pc; |
| 562 | ArtMethod* m = self->GetCurrentMethod(&pc); |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 563 | // TODO: We should maybe check that original_owner is still a live thread. |
| 564 | LOG(WARNING) << "Long " |
Mathieu Chartier | 0ffdc9c | 2016-04-19 13:46:03 -0700 | [diff] [blame] | 565 | << PrettyContentionInfo(original_owner_name, |
| 566 | original_owner_tid, |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 567 | owners_method, |
| 568 | owners_dex_pc, |
| 569 | num_waiters) |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 570 | << " in " << ArtMethod::PrettyMethod(m) << " for " |
| 571 | << PrettyDuration(MsToNs(wait_ms)); |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 572 | } |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 573 | LogContentionEvent(self, |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 574 | wait_ms, |
| 575 | sample_percent, |
| 576 | owners_method, |
| 577 | owners_dex_pc); |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 578 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 579 | } |
| 580 | } |
Elliott Hughes | fc86162 | 2011-10-17 17:57:47 -0700 | [diff] [blame] | 581 | } |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 582 | } |
Andreas Gampe | 2702d56 | 2017-02-06 09:48:00 -0800 | [diff] [blame] | 583 | if (started_trace) { |
| 584 | ATRACE_END(); |
| 585 | } |
Mathieu Chartier | a6e7f08 | 2014-05-22 14:43:37 -0700 | [diff] [blame] | 586 | self->SetMonitorEnterObject(nullptr); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 587 | monitor_lock_.Lock(self); // Reacquire locks in order. |
Mathieu Chartier | 440e4ce | 2014-03-31 16:36:35 -0700 | [diff] [blame] | 588 | --num_waiters_; |
Elliott Hughes | fc86162 | 2011-10-17 17:57:47 -0700 | [diff] [blame] | 589 | } |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 590 | monitor_lock_.Unlock(self); |
| 591 | // We need to pair this with a single contended locking call. NB we match the RI behavior and call |
| 592 | // this even if MonitorEnter failed. |
| 593 | if (called_monitors_callback) { |
| 594 | CHECK(reason == LockReason::kForLock); |
| 595 | Runtime::Current()->GetRuntimeCallbacks()->MonitorContendedLocked(this); |
| 596 | } |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 597 | } |
| 598 | |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 599 | template void Monitor::Lock<LockReason::kForLock>(Thread* self); |
| 600 | template void Monitor::Lock<LockReason::kForWait>(Thread* self); |
| 601 | |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 602 | static void ThrowIllegalMonitorStateExceptionF(const char* fmt, ...) |
| 603 | __attribute__((format(printf, 1, 2))); |
| 604 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 605 | static void ThrowIllegalMonitorStateExceptionF(const char* fmt, ...) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 606 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 607 | va_list args; |
| 608 | va_start(args, fmt); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 609 | Thread* self = Thread::Current(); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 610 | self->ThrowNewExceptionV("Ljava/lang/IllegalMonitorStateException;", fmt, args); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 611 | if (!Runtime::Current()->IsStarted() || VLOG_IS_ON(monitor)) { |
Brian Carlstrom | 64277f3 | 2012-03-26 23:53:34 -0700 | [diff] [blame] | 612 | std::ostringstream ss; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 613 | self->Dump(ss); |
Andreas Gampe | 3fec9ac | 2016-09-13 10:47:28 -0700 | [diff] [blame] | 614 | LOG(Runtime::Current()->IsStarted() ? ::android::base::INFO : ::android::base::ERROR) |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 615 | << self->GetException()->Dump() << "\n" << ss.str(); |
Brian Carlstrom | 64277f3 | 2012-03-26 23:53:34 -0700 | [diff] [blame] | 616 | } |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 617 | va_end(args); |
| 618 | } |
| 619 | |
Elliott Hughes | d423741 | 2012-02-21 11:24:45 -0800 | [diff] [blame] | 620 | static std::string ThreadToString(Thread* thread) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 621 | if (thread == nullptr) { |
| 622 | return "nullptr"; |
Elliott Hughes | d423741 | 2012-02-21 11:24:45 -0800 | [diff] [blame] | 623 | } |
| 624 | std::ostringstream oss; |
| 625 | // TODO: alternatively, we could just return the thread's name. |
| 626 | oss << *thread; |
| 627 | return oss.str(); |
| 628 | } |
| 629 | |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 630 | void Monitor::FailedUnlock(mirror::Object* o, |
| 631 | uint32_t expected_owner_thread_id, |
| 632 | uint32_t found_owner_thread_id, |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 633 | Monitor* monitor) { |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 634 | // Acquire thread list lock so threads won't disappear from under us. |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 635 | std::string current_owner_string; |
| 636 | std::string expected_owner_string; |
| 637 | std::string found_owner_string; |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 638 | uint32_t current_owner_thread_id = 0u; |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 639 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 640 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 641 | ThreadList* const thread_list = Runtime::Current()->GetThreadList(); |
| 642 | Thread* expected_owner = thread_list->FindThreadByThreadId(expected_owner_thread_id); |
| 643 | Thread* found_owner = thread_list->FindThreadByThreadId(found_owner_thread_id); |
| 644 | |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 645 | // Re-read owner now that we hold lock. |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 646 | Thread* current_owner = (monitor != nullptr) ? monitor->GetOwner() : nullptr; |
| 647 | if (current_owner != nullptr) { |
| 648 | current_owner_thread_id = current_owner->GetThreadId(); |
| 649 | } |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 650 | // Get short descriptions of the threads involved. |
| 651 | current_owner_string = ThreadToString(current_owner); |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 652 | expected_owner_string = expected_owner != nullptr ? ThreadToString(expected_owner) : "unnamed"; |
| 653 | found_owner_string = found_owner != nullptr ? ThreadToString(found_owner) : "unnamed"; |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 654 | } |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 655 | |
| 656 | if (current_owner_thread_id == 0u) { |
| 657 | if (found_owner_thread_id == 0u) { |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 658 | ThrowIllegalMonitorStateExceptionF("unlock of unowned monitor on object of type '%s'" |
| 659 | " on thread '%s'", |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 660 | mirror::Object::PrettyTypeOf(o).c_str(), |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 661 | expected_owner_string.c_str()); |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 662 | } else { |
| 663 | // Race: the original read found an owner but now there is none |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 664 | ThrowIllegalMonitorStateExceptionF("unlock of monitor owned by '%s' on object of type '%s'" |
| 665 | " (where now the monitor appears unowned) on thread '%s'", |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 666 | found_owner_string.c_str(), |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 667 | mirror::Object::PrettyTypeOf(o).c_str(), |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 668 | expected_owner_string.c_str()); |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 669 | } |
| 670 | } else { |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 671 | if (found_owner_thread_id == 0u) { |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 672 | // Race: originally there was no owner, there is now |
| 673 | ThrowIllegalMonitorStateExceptionF("unlock of monitor owned by '%s' on object of type '%s'" |
| 674 | " (originally believed to be unowned) on thread '%s'", |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 675 | current_owner_string.c_str(), |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 676 | mirror::Object::PrettyTypeOf(o).c_str(), |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 677 | expected_owner_string.c_str()); |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 678 | } else { |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 679 | if (found_owner_thread_id != current_owner_thread_id) { |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 680 | // Race: originally found and current owner have changed |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 681 | ThrowIllegalMonitorStateExceptionF("unlock of monitor originally owned by '%s' (now" |
| 682 | " owned by '%s') on object of type '%s' on thread '%s'", |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 683 | found_owner_string.c_str(), |
| 684 | current_owner_string.c_str(), |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 685 | mirror::Object::PrettyTypeOf(o).c_str(), |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 686 | expected_owner_string.c_str()); |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 687 | } else { |
| 688 | ThrowIllegalMonitorStateExceptionF("unlock of monitor owned by '%s' on object of type '%s'" |
| 689 | " on thread '%s", |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 690 | current_owner_string.c_str(), |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 691 | mirror::Object::PrettyTypeOf(o).c_str(), |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 692 | expected_owner_string.c_str()); |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 693 | } |
| 694 | } |
| 695 | } |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 696 | } |
| 697 | |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 698 | bool Monitor::Unlock(Thread* self) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 699 | DCHECK(self != nullptr); |
Mathieu Chartier | 0ffdc9c | 2016-04-19 13:46:03 -0700 | [diff] [blame] | 700 | uint32_t owner_thread_id = 0u; |
Charles Munger | c665d63 | 2018-11-06 16:20:13 +0000 | [diff] [blame] | 701 | DCHECK(!monitor_lock_.IsExclusiveHeld(self)); |
| 702 | monitor_lock_.Lock(self); |
| 703 | Thread* owner = owner_; |
| 704 | if (owner != nullptr) { |
| 705 | owner_thread_id = owner->GetThreadId(); |
| 706 | } |
| 707 | if (owner == self) { |
| 708 | // We own the monitor, so nobody else can be in here. |
| 709 | AtraceMonitorUnlock(); |
| 710 | if (lock_count_ == 0) { |
| 711 | owner_ = nullptr; |
| 712 | locking_method_ = nullptr; |
| 713 | locking_dex_pc_ = 0; |
| 714 | SignalContendersAndReleaseMonitorLock(self); |
| 715 | return true; |
| 716 | } else { |
| 717 | --lock_count_; |
| 718 | monitor_lock_.Unlock(self); |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 719 | return true; |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 720 | } |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 721 | } |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 722 | // We don't own this, so we're not allowed to unlock it. |
| 723 | // The JNI spec says that we should throw IllegalMonitorStateException in this case. |
| 724 | FailedUnlock(GetObject(), self->GetThreadId(), owner_thread_id, this); |
Charles Munger | c665d63 | 2018-11-06 16:20:13 +0000 | [diff] [blame] | 725 | monitor_lock_.Unlock(self); |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 726 | return false; |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 727 | } |
| 728 | |
Charles Munger | c665d63 | 2018-11-06 16:20:13 +0000 | [diff] [blame] | 729 | void Monitor::SignalContendersAndReleaseMonitorLock(Thread* self) { |
| 730 | // We want to signal one thread to wake up, to acquire the monitor that |
| 731 | // we are releasing. This could either be a Thread waiting on its own |
| 732 | // ConditionVariable, or a thread waiting on monitor_contenders_. |
| 733 | while (wake_set_ != nullptr) { |
| 734 | // No risk of waking ourselves here; since monitor_lock_ is not released until we're ready to |
| 735 | // return, notify can't move the current thread from wait_set_ to wake_set_ until this |
| 736 | // method is done checking wake_set_. |
| 737 | Thread* thread = wake_set_; |
| 738 | wake_set_ = thread->GetWaitNext(); |
| 739 | thread->SetWaitNext(nullptr); |
| 740 | |
| 741 | // Check to see if the thread is still waiting. |
| 742 | { |
| 743 | // In the case of wait(), we'll be acquiring another thread's GetWaitMutex with |
| 744 | // self's GetWaitMutex held. This does not risk deadlock, because we only acquire this lock |
| 745 | // for threads in the wake_set_. A thread can only enter wake_set_ from Notify or NotifyAll, |
| 746 | // and those hold monitor_lock_. Thus, the threads whose wait mutexes we acquire here must |
| 747 | // have already been released from wait(), since we have not released monitor_lock_ until |
| 748 | // after we've chosen our thread to wake, so there is no risk of the following lock ordering |
| 749 | // leading to deadlock: |
| 750 | // Thread 1 waits |
| 751 | // Thread 2 waits |
| 752 | // Thread 3 moves threads 1 and 2 from wait_set_ to wake_set_ |
| 753 | // Thread 1 enters this block, and attempts to acquire Thread 2's GetWaitMutex to wake it |
| 754 | // Thread 2 enters this block, and attempts to acquire Thread 1's GetWaitMutex to wake it |
| 755 | // |
| 756 | // Since monitor_lock_ is not released until the thread-to-be-woken-up's GetWaitMutex is |
| 757 | // acquired, two threads cannot attempt to acquire each other's GetWaitMutex while holding |
| 758 | // their own and cause deadlock. |
| 759 | MutexLock wait_mu(self, *thread->GetWaitMutex()); |
| 760 | if (thread->GetWaitMonitor() != nullptr) { |
| 761 | // Release the lock, so that a potentially awakened thread will not |
| 762 | // immediately contend on it. The lock ordering here is: |
| 763 | // monitor_lock_, self->GetWaitMutex, thread->GetWaitMutex |
| 764 | monitor_lock_.Unlock(self); |
| 765 | thread->GetWaitConditionVariable()->Signal(self); |
| 766 | return; |
| 767 | } |
| 768 | } |
| 769 | } |
| 770 | // If we didn't wake any threads that were originally waiting on us, |
| 771 | // wake a contender. |
| 772 | monitor_contenders_.Signal(self); |
| 773 | monitor_lock_.Unlock(self); |
| 774 | } |
| 775 | |
Elliott Hughes | 4cd121e | 2013-01-07 17:35:41 -0800 | [diff] [blame] | 776 | void Monitor::Wait(Thread* self, int64_t ms, int32_t ns, |
| 777 | bool interruptShouldThrow, ThreadState why) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 778 | DCHECK(self != nullptr); |
Elliott Hughes | 4cd121e | 2013-01-07 17:35:41 -0800 | [diff] [blame] | 779 | DCHECK(why == kTimedWaiting || why == kWaiting || why == kSleeping); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 780 | |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 781 | monitor_lock_.Lock(self); |
| 782 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 783 | // Make sure that we hold the lock. |
| 784 | if (owner_ != self) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 785 | monitor_lock_.Unlock(self); |
Elena Sayapina | 1af6a1f | 2014-06-20 16:58:37 +0700 | [diff] [blame] | 786 | ThrowIllegalMonitorStateExceptionF("object not locked by thread before wait()"); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 787 | return; |
| 788 | } |
Elliott Hughes | 4cd121e | 2013-01-07 17:35:41 -0800 | [diff] [blame] | 789 | |
Elliott Hughes | df42c48 | 2013-01-09 12:49:02 -0800 | [diff] [blame] | 790 | // We need to turn a zero-length timed wait into a regular wait because |
| 791 | // Object.wait(0, 0) is defined as Object.wait(0), which is defined as Object.wait(). |
| 792 | if (why == kTimedWaiting && (ms == 0 && ns == 0)) { |
| 793 | why = kWaiting; |
| 794 | } |
| 795 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 796 | // Enforce the timeout range. |
| 797 | if (ms < 0 || ns < 0 || ns > 999999) { |
Elena Sayapina | 1af6a1f | 2014-06-20 16:58:37 +0700 | [diff] [blame] | 798 | monitor_lock_.Unlock(self); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 799 | self->ThrowNewExceptionF("Ljava/lang/IllegalArgumentException;", |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 800 | "timeout arguments out of range: ms=%" PRId64 " ns=%d", ms, ns); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 801 | return; |
| 802 | } |
| 803 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 804 | /* |
Charles Munger | c665d63 | 2018-11-06 16:20:13 +0000 | [diff] [blame] | 805 | * Release our hold - we need to let it go even if we're a few levels |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 806 | * deep in a recursive lock, and we need to restore that later. |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 807 | */ |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 808 | int prev_lock_count = lock_count_; |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 809 | lock_count_ = 0; |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 810 | owner_ = nullptr; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 811 | ArtMethod* saved_method = locking_method_; |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 812 | locking_method_ = nullptr; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 813 | uintptr_t saved_dex_pc = locking_dex_pc_; |
| 814 | locking_dex_pc_ = 0; |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 815 | |
Andreas Gampe | c7ed09b | 2016-04-25 20:08:55 -0700 | [diff] [blame] | 816 | AtraceMonitorUnlock(); // For the implict Unlock() just above. This will only end the deepest |
| 817 | // nesting, but that is enough for the visualization, and corresponds to |
| 818 | // the single Lock() we do afterwards. |
Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 819 | AtraceMonitorLock(self, GetObject(), /* is_wait= */ true); |
Andreas Gampe | c7ed09b | 2016-04-25 20:08:55 -0700 | [diff] [blame] | 820 | |
Elliott Hughes | b4e94fd | 2013-01-08 14:41:26 -0800 | [diff] [blame] | 821 | bool was_interrupted = false; |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 822 | bool timed_out = false; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 823 | { |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 824 | // Update thread state. If the GC wakes up, it'll ignore us, knowing |
| 825 | // that we won't touch any references in this state, and we'll check |
| 826 | // our suspend mode before we transition out. |
| 827 | ScopedThreadSuspension sts(self, why); |
| 828 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 829 | // Pseudo-atomically wait on self's wait_cond_ and release the monitor lock. |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 830 | MutexLock mu(self, *self->GetWaitMutex()); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 831 | |
Charles Munger | c665d63 | 2018-11-06 16:20:13 +0000 | [diff] [blame] | 832 | /* |
| 833 | * Add ourselves to the set of threads waiting on this monitor. |
| 834 | * It's important that we are only added to the wait set after |
| 835 | * acquiring our GetWaitMutex, so that calls to Notify() that occur after we |
| 836 | * have released monitor_lock_ will not move us from wait_set_ to wake_set_ |
| 837 | * until we've signalled contenders on this monitor. |
| 838 | */ |
| 839 | AppendToWaitSet(self); |
| 840 | ++num_waiters_; |
| 841 | |
| 842 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 843 | // Set wait_monitor_ to the monitor object we will be waiting on. When wait_monitor_ is |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 844 | // non-null a notifying or interrupting thread must signal the thread's wait_cond_ to wake it |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 845 | // up. |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 846 | DCHECK(self->GetWaitMonitor() == nullptr); |
| 847 | self->SetWaitMonitor(this); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 848 | |
| 849 | // Release the monitor lock. |
Charles Munger | c665d63 | 2018-11-06 16:20:13 +0000 | [diff] [blame] | 850 | SignalContendersAndReleaseMonitorLock(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 851 | |
Elliott Hughes | b4e94fd | 2013-01-08 14:41:26 -0800 | [diff] [blame] | 852 | // Handle the case where the thread was interrupted before we called wait(). |
Nicolas Geoffray | 365719c | 2017-03-08 13:11:50 +0000 | [diff] [blame] | 853 | if (self->IsInterrupted()) { |
Elliott Hughes | b4e94fd | 2013-01-08 14:41:26 -0800 | [diff] [blame] | 854 | was_interrupted = true; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 855 | } else { |
| 856 | // Wait for a notification or a timeout to occur. |
Elliott Hughes | 4cd121e | 2013-01-07 17:35:41 -0800 | [diff] [blame] | 857 | if (why == kWaiting) { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 858 | self->GetWaitConditionVariable()->Wait(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 859 | } else { |
Elliott Hughes | 4cd121e | 2013-01-07 17:35:41 -0800 | [diff] [blame] | 860 | DCHECK(why == kTimedWaiting || why == kSleeping) << why; |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 861 | timed_out = self->GetWaitConditionVariable()->TimedWait(self, ms, ns); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 862 | } |
Nicolas Geoffray | 365719c | 2017-03-08 13:11:50 +0000 | [diff] [blame] | 863 | was_interrupted = self->IsInterrupted(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 864 | } |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 865 | } |
| 866 | |
Elliott Hughes | b4e94fd | 2013-01-08 14:41:26 -0800 | [diff] [blame] | 867 | { |
| 868 | // We reset the thread's wait_monitor_ field after transitioning back to runnable so |
| 869 | // that a thread in a waiting/sleeping state has a non-null wait_monitor_ for debugging |
| 870 | // and diagnostic purposes. (If you reset this earlier, stack dumps will claim that threads |
| 871 | // are waiting on "null".) |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 872 | MutexLock mu(self, *self->GetWaitMutex()); |
| 873 | DCHECK(self->GetWaitMonitor() != nullptr); |
| 874 | self->SetWaitMonitor(nullptr); |
Elliott Hughes | b4e94fd | 2013-01-08 14:41:26 -0800 | [diff] [blame] | 875 | } |
| 876 | |
Mathieu Chartier | daed5d8 | 2016-03-10 10:49:35 -0800 | [diff] [blame] | 877 | // Allocate the interrupted exception not holding the monitor lock since it may cause a GC. |
| 878 | // If the GC requires acquiring the monitor for enqueuing cleared references, this would |
| 879 | // cause a deadlock if the monitor is held. |
| 880 | if (was_interrupted && interruptShouldThrow) { |
| 881 | /* |
| 882 | * We were interrupted while waiting, or somebody interrupted an |
| 883 | * un-interruptible thread earlier and we're bailing out immediately. |
| 884 | * |
| 885 | * The doc sayeth: "The interrupted status of the current thread is |
| 886 | * cleared when this exception is thrown." |
| 887 | */ |
Nicolas Geoffray | 365719c | 2017-03-08 13:11:50 +0000 | [diff] [blame] | 888 | self->SetInterrupted(false); |
Mathieu Chartier | daed5d8 | 2016-03-10 10:49:35 -0800 | [diff] [blame] | 889 | self->ThrowNewException("Ljava/lang/InterruptedException;", nullptr); |
| 890 | } |
| 891 | |
Andreas Gampe | c7ed09b | 2016-04-25 20:08:55 -0700 | [diff] [blame] | 892 | AtraceMonitorUnlock(); // End Wait(). |
| 893 | |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 894 | // We just slept, tell the runtime callbacks about this. |
| 895 | Runtime::Current()->GetRuntimeCallbacks()->MonitorWaitFinished(this, timed_out); |
| 896 | |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 897 | // Re-acquire the monitor and lock. |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 898 | Lock<LockReason::kForWait>(self); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 899 | monitor_lock_.Lock(self); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 900 | self->GetWaitMutex()->AssertNotHeld(self); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 901 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 902 | /* |
| 903 | * We remove our thread from wait set after restoring the count |
| 904 | * and owner fields so the subroutine can check that the calling |
| 905 | * thread owns the monitor. Aside from that, the order of member |
| 906 | * updates is not order sensitive as we hold the pthread mutex. |
| 907 | */ |
| 908 | owner_ = self; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 909 | lock_count_ = prev_lock_count; |
| 910 | locking_method_ = saved_method; |
| 911 | locking_dex_pc_ = saved_dex_pc; |
Mathieu Chartier | 440e4ce | 2014-03-31 16:36:35 -0700 | [diff] [blame] | 912 | --num_waiters_; |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 913 | RemoveFromWaitSet(self); |
| 914 | |
Elena Sayapina | 1af6a1f | 2014-06-20 16:58:37 +0700 | [diff] [blame] | 915 | monitor_lock_.Unlock(self); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 916 | } |
| 917 | |
| 918 | void Monitor::Notify(Thread* self) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 919 | DCHECK(self != nullptr); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 920 | MutexLock mu(self, monitor_lock_); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 921 | // Make sure that we hold the lock. |
| 922 | if (owner_ != self) { |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 923 | ThrowIllegalMonitorStateExceptionF("object not locked by thread before notify()"); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 924 | return; |
| 925 | } |
Charles Munger | c665d63 | 2018-11-06 16:20:13 +0000 | [diff] [blame] | 926 | // Move one thread from waiters to wake set |
| 927 | Thread* to_move = wait_set_; |
| 928 | if (to_move != nullptr) { |
| 929 | wait_set_ = to_move->GetWaitNext(); |
| 930 | to_move->SetWaitNext(wake_set_); |
| 931 | wake_set_ = to_move; |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 932 | } |
| 933 | } |
| 934 | |
| 935 | void Monitor::NotifyAll(Thread* self) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 936 | DCHECK(self != nullptr); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 937 | MutexLock mu(self, monitor_lock_); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 938 | // Make sure that we hold the lock. |
| 939 | if (owner_ != self) { |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 940 | ThrowIllegalMonitorStateExceptionF("object not locked by thread before notifyAll()"); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 941 | return; |
| 942 | } |
Charles Munger | c665d63 | 2018-11-06 16:20:13 +0000 | [diff] [blame] | 943 | |
| 944 | // Move all threads from waiters to wake set |
| 945 | Thread* to_move = wait_set_; |
| 946 | if (to_move != nullptr) { |
| 947 | wait_set_ = nullptr; |
| 948 | Thread* move_to = wake_set_; |
| 949 | if (move_to == nullptr) { |
| 950 | wake_set_ = to_move; |
| 951 | return; |
| 952 | } |
| 953 | while (move_to->GetWaitNext() != nullptr) { |
| 954 | move_to = move_to->GetWaitNext(); |
| 955 | } |
| 956 | move_to->SetWaitNext(to_move); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 957 | } |
| 958 | } |
| 959 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 960 | bool Monitor::Deflate(Thread* self, mirror::Object* obj) { |
| 961 | DCHECK(obj != nullptr); |
Mathieu Chartier | 4d7f61d | 2014-04-17 14:43:39 -0700 | [diff] [blame] | 962 | // Don't need volatile since we only deflate with mutators suspended. |
| 963 | LockWord lw(obj->GetLockWord(false)); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 964 | // If the lock isn't an inflated monitor, then we don't need to deflate anything. |
| 965 | if (lw.GetState() == LockWord::kFatLocked) { |
| 966 | Monitor* monitor = lw.FatLockMonitor(); |
Mathieu Chartier | 440e4ce | 2014-03-31 16:36:35 -0700 | [diff] [blame] | 967 | DCHECK(monitor != nullptr); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 968 | MutexLock mu(self, monitor->monitor_lock_); |
Mathieu Chartier | 440e4ce | 2014-03-31 16:36:35 -0700 | [diff] [blame] | 969 | // Can't deflate if we have anybody waiting on the CV. |
| 970 | if (monitor->num_waiters_ > 0) { |
| 971 | return false; |
| 972 | } |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 973 | Thread* owner = monitor->owner_; |
| 974 | if (owner != nullptr) { |
| 975 | // Can't deflate if we are locked and have a hash code. |
| 976 | if (monitor->HasHashCode()) { |
| 977 | return false; |
| 978 | } |
| 979 | // Can't deflate if our lock count is too high. |
Mathieu Chartier | 1cf194f | 2016-11-01 20:13:24 -0700 | [diff] [blame] | 980 | if (static_cast<uint32_t>(monitor->lock_count_) > LockWord::kThinLockMaxCount) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 981 | return false; |
| 982 | } |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 983 | // Deflate to a thin lock. |
Mathieu Chartier | 36a270a | 2016-07-28 18:08:51 -0700 | [diff] [blame] | 984 | LockWord new_lw = LockWord::FromThinLockId(owner->GetThreadId(), |
| 985 | monitor->lock_count_, |
| 986 | lw.GCState()); |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 987 | // Assume no concurrent read barrier state changes as mutators are suspended. |
| 988 | obj->SetLockWord(new_lw, false); |
Mathieu Chartier | 4d7f61d | 2014-04-17 14:43:39 -0700 | [diff] [blame] | 989 | VLOG(monitor) << "Deflated " << obj << " to thin lock " << owner->GetTid() << " / " |
| 990 | << monitor->lock_count_; |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 991 | } else if (monitor->HasHashCode()) { |
Mathieu Chartier | 36a270a | 2016-07-28 18:08:51 -0700 | [diff] [blame] | 992 | LockWord new_lw = LockWord::FromHashCode(monitor->GetHashCode(), lw.GCState()); |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 993 | // Assume no concurrent read barrier state changes as mutators are suspended. |
| 994 | obj->SetLockWord(new_lw, false); |
Mathieu Chartier | 440e4ce | 2014-03-31 16:36:35 -0700 | [diff] [blame] | 995 | VLOG(monitor) << "Deflated " << obj << " to hash monitor " << monitor->GetHashCode(); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 996 | } else { |
| 997 | // No lock and no hash, just put an empty lock word inside the object. |
Mathieu Chartier | 36a270a | 2016-07-28 18:08:51 -0700 | [diff] [blame] | 998 | LockWord new_lw = LockWord::FromDefault(lw.GCState()); |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 999 | // Assume no concurrent read barrier state changes as mutators are suspended. |
| 1000 | obj->SetLockWord(new_lw, false); |
Mathieu Chartier | 440e4ce | 2014-03-31 16:36:35 -0700 | [diff] [blame] | 1001 | VLOG(monitor) << "Deflated" << obj << " to empty lock word"; |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1002 | } |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1003 | // The monitor is deflated, mark the object as null so that we know to delete it during the |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1004 | // next GC. |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 1005 | monitor->obj_ = GcRoot<mirror::Object>(nullptr); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1006 | } |
| 1007 | return true; |
| 1008 | } |
| 1009 | |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1010 | void Monitor::Inflate(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code) { |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 1011 | DCHECK(self != nullptr); |
| 1012 | DCHECK(obj != nullptr); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1013 | // Allocate and acquire a new monitor. |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 1014 | Monitor* m = MonitorPool::CreateMonitor(self, owner, obj, hash_code); |
| 1015 | DCHECK(m != nullptr); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1016 | if (m->Install(self)) { |
Haifeng Li | 86ab791 | 2014-05-16 10:47:59 +0800 | [diff] [blame] | 1017 | if (owner != nullptr) { |
| 1018 | VLOG(monitor) << "monitor: thread" << owner->GetThreadId() |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 1019 | << " created monitor " << m << " for object " << obj; |
Haifeng Li | 86ab791 | 2014-05-16 10:47:59 +0800 | [diff] [blame] | 1020 | } else { |
| 1021 | VLOG(monitor) << "monitor: Inflate with hashcode " << hash_code |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 1022 | << " created monitor " << m << " for object " << obj; |
Haifeng Li | 86ab791 | 2014-05-16 10:47:59 +0800 | [diff] [blame] | 1023 | } |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 1024 | Runtime::Current()->GetMonitorList()->Add(m); |
Mathieu Chartier | 4d7f61d | 2014-04-17 14:43:39 -0700 | [diff] [blame] | 1025 | CHECK_EQ(obj->GetLockWord(true).GetState(), LockWord::kFatLocked); |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 1026 | } else { |
| 1027 | MonitorPool::ReleaseMonitor(self, m); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1028 | } |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1029 | } |
| 1030 | |
Mathieu Chartier | 0cd8135 | 2014-05-22 16:48:55 -0700 | [diff] [blame] | 1031 | void Monitor::InflateThinLocked(Thread* self, Handle<mirror::Object> obj, LockWord lock_word, |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1032 | uint32_t hash_code) { |
| 1033 | DCHECK_EQ(lock_word.GetState(), LockWord::kThinLocked); |
| 1034 | uint32_t owner_thread_id = lock_word.ThinLockOwner(); |
| 1035 | if (owner_thread_id == self->GetThreadId()) { |
| 1036 | // We own the monitor, we can easily inflate it. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1037 | Inflate(self, self, obj.Get(), hash_code); |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1038 | } else { |
| 1039 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
| 1040 | // Suspend the owner, inflate. First change to blocked and give up mutator_lock_. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1041 | self->SetMonitorEnterObject(obj.Get()); |
Mathieu Chartier | a1ee14f | 2014-05-14 16:51:03 -0700 | [diff] [blame] | 1042 | bool timed_out; |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 1043 | Thread* owner; |
| 1044 | { |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 1045 | ScopedThreadSuspension sts(self, kWaitingForLockInflation); |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 1046 | owner = thread_list->SuspendThreadByThreadId(owner_thread_id, |
| 1047 | SuspendReason::kInternal, |
| 1048 | &timed_out); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 1049 | } |
Mathieu Chartier | a1ee14f | 2014-05-14 16:51:03 -0700 | [diff] [blame] | 1050 | if (owner != nullptr) { |
| 1051 | // We succeeded in suspending the thread, check the lock's status didn't change. |
| 1052 | lock_word = obj->GetLockWord(true); |
| 1053 | if (lock_word.GetState() == LockWord::kThinLocked && |
| 1054 | lock_word.ThinLockOwner() == owner_thread_id) { |
| 1055 | // Go ahead and inflate the lock. |
| 1056 | Inflate(self, owner, obj.Get(), hash_code); |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1057 | } |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 1058 | bool resumed = thread_list->Resume(owner, SuspendReason::kInternal); |
| 1059 | DCHECK(resumed); |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1060 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1061 | self->SetMonitorEnterObject(nullptr); |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1062 | } |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1063 | } |
| 1064 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1065 | // Fool annotalysis into thinking that the lock on obj is acquired. |
| 1066 | static mirror::Object* FakeLock(mirror::Object* obj) |
| 1067 | EXCLUSIVE_LOCK_FUNCTION(obj) NO_THREAD_SAFETY_ANALYSIS { |
| 1068 | return obj; |
| 1069 | } |
| 1070 | |
| 1071 | // Fool annotalysis into thinking that the lock on obj is release. |
| 1072 | static mirror::Object* FakeUnlock(mirror::Object* obj) |
| 1073 | UNLOCK_FUNCTION(obj) NO_THREAD_SAFETY_ANALYSIS { |
| 1074 | return obj; |
| 1075 | } |
| 1076 | |
Mathieu Chartier | 4b0ef1c | 2016-07-29 16:26:01 -0700 | [diff] [blame] | 1077 | mirror::Object* Monitor::MonitorEnter(Thread* self, mirror::Object* obj, bool trylock) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1078 | DCHECK(self != nullptr); |
| 1079 | DCHECK(obj != nullptr); |
Mathieu Chartier | 2d096c9 | 2015-10-12 16:18:20 -0700 | [diff] [blame] | 1080 | self->AssertThreadSuspensionIsAllowable(); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1081 | obj = FakeLock(obj); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1082 | uint32_t thread_id = self->GetThreadId(); |
| 1083 | size_t contention_count = 0; |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1084 | StackHandleScope<1> hs(self); |
| 1085 | Handle<mirror::Object> h_obj(hs.NewHandle(obj)); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1086 | while (true) { |
Hans Boehm | b3da36c | 2016-12-15 13:12:59 -0800 | [diff] [blame] | 1087 | // We initially read the lockword with ordinary Java/relaxed semantics. When stronger |
| 1088 | // semantics are needed, we address it below. Since GetLockWord bottoms out to a relaxed load, |
| 1089 | // we can fix it later, in an infrequently executed case, with a fence. |
| 1090 | LockWord lock_word = h_obj->GetLockWord(false); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1091 | switch (lock_word.GetState()) { |
| 1092 | case LockWord::kUnlocked: { |
Hans Boehm | b3da36c | 2016-12-15 13:12:59 -0800 | [diff] [blame] | 1093 | // No ordering required for preceding lockword read, since we retest. |
Mathieu Chartier | 36a270a | 2016-07-28 18:08:51 -0700 | [diff] [blame] | 1094 | LockWord thin_locked(LockWord::FromThinLockId(thread_id, 0, lock_word.GCState())); |
Mathieu Chartier | 42c2e50 | 2018-06-19 12:30:56 -0700 | [diff] [blame] | 1095 | if (h_obj->CasLockWord(lock_word, thin_locked, CASMode::kWeak, std::memory_order_acquire)) { |
Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 1096 | AtraceMonitorLock(self, h_obj.Get(), /* is_wait= */ false); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1097 | return h_obj.Get(); // Success! |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1098 | } |
| 1099 | continue; // Go again. |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1100 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1101 | case LockWord::kThinLocked: { |
| 1102 | uint32_t owner_thread_id = lock_word.ThinLockOwner(); |
| 1103 | if (owner_thread_id == thread_id) { |
Hans Boehm | b3da36c | 2016-12-15 13:12:59 -0800 | [diff] [blame] | 1104 | // No ordering required for initial lockword read. |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1105 | // We own the lock, increase the recursion count. |
| 1106 | uint32_t new_count = lock_word.ThinLockCount() + 1; |
| 1107 | if (LIKELY(new_count <= LockWord::kThinLockMaxCount)) { |
Mathieu Chartier | 36a270a | 2016-07-28 18:08:51 -0700 | [diff] [blame] | 1108 | LockWord thin_locked(LockWord::FromThinLockId(thread_id, |
| 1109 | new_count, |
| 1110 | lock_word.GCState())); |
Hans Boehm | b3da36c | 2016-12-15 13:12:59 -0800 | [diff] [blame] | 1111 | // Only this thread pays attention to the count. Thus there is no need for stronger |
| 1112 | // than relaxed memory ordering. |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 1113 | if (!kUseReadBarrier) { |
Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 1114 | h_obj->SetLockWord(thin_locked, /* as_volatile= */ false); |
| 1115 | AtraceMonitorLock(self, h_obj.Get(), /* is_wait= */ false); |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 1116 | return h_obj.Get(); // Success! |
| 1117 | } else { |
| 1118 | // Use CAS to preserve the read barrier state. |
Mathieu Chartier | 42c2e50 | 2018-06-19 12:30:56 -0700 | [diff] [blame] | 1119 | if (h_obj->CasLockWord(lock_word, |
| 1120 | thin_locked, |
| 1121 | CASMode::kWeak, |
| 1122 | std::memory_order_relaxed)) { |
Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 1123 | AtraceMonitorLock(self, h_obj.Get(), /* is_wait= */ false); |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 1124 | return h_obj.Get(); // Success! |
| 1125 | } |
| 1126 | } |
| 1127 | continue; // Go again. |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1128 | } else { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1129 | // We'd overflow the recursion count, so inflate the monitor. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1130 | InflateThinLocked(self, h_obj, lock_word, 0); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1131 | } |
| 1132 | } else { |
Mathieu Chartier | 4b0ef1c | 2016-07-29 16:26:01 -0700 | [diff] [blame] | 1133 | if (trylock) { |
| 1134 | return nullptr; |
| 1135 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1136 | // Contention. |
| 1137 | contention_count++; |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1138 | Runtime* runtime = Runtime::Current(); |
Hans Boehm | b3da36c | 2016-12-15 13:12:59 -0800 | [diff] [blame] | 1139 | if (contention_count <= runtime->GetMaxSpinsBeforeThinLockInflation()) { |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 1140 | // TODO: Consider switching the thread state to kWaitingForLockInflation when we are |
| 1141 | // yielding. Use sched_yield instead of NanoSleep since NanoSleep can wait much longer |
| 1142 | // than the parameter you pass in. This can cause thread suspension to take excessively |
| 1143 | // long and make long pauses. See b/16307460. |
Hans Boehm | b3da36c | 2016-12-15 13:12:59 -0800 | [diff] [blame] | 1144 | // TODO: We should literally spin first, without sched_yield. Sched_yield either does |
| 1145 | // nothing (at significant expense), or guarantees that we wait at least microseconds. |
| 1146 | // If the owner is running, I would expect the median lock hold time to be hundreds |
| 1147 | // of nanoseconds or less. |
Mathieu Chartier | 251755c | 2014-07-15 18:10:25 -0700 | [diff] [blame] | 1148 | sched_yield(); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1149 | } else { |
| 1150 | contention_count = 0; |
Hans Boehm | b3da36c | 2016-12-15 13:12:59 -0800 | [diff] [blame] | 1151 | // No ordering required for initial lockword read. Install rereads it anyway. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1152 | InflateThinLocked(self, h_obj, lock_word, 0); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1153 | } |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1154 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1155 | continue; // Start from the beginning. |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1156 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1157 | case LockWord::kFatLocked: { |
Hans Boehm | b3da36c | 2016-12-15 13:12:59 -0800 | [diff] [blame] | 1158 | // We should have done an acquire read of the lockword initially, to ensure |
| 1159 | // visibility of the monitor data structure. Use an explicit fence instead. |
Orion Hodson | 27b9676 | 2018-03-13 16:06:57 +0000 | [diff] [blame] | 1160 | std::atomic_thread_fence(std::memory_order_acquire); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1161 | Monitor* mon = lock_word.FatLockMonitor(); |
Mathieu Chartier | 4b0ef1c | 2016-07-29 16:26:01 -0700 | [diff] [blame] | 1162 | if (trylock) { |
| 1163 | return mon->TryLock(self) ? h_obj.Get() : nullptr; |
| 1164 | } else { |
| 1165 | mon->Lock(self); |
| 1166 | return h_obj.Get(); // Success! |
| 1167 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1168 | } |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1169 | case LockWord::kHashCode: |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1170 | // Inflate with the existing hashcode. |
Hans Boehm | b3da36c | 2016-12-15 13:12:59 -0800 | [diff] [blame] | 1171 | // Again no ordering required for initial lockword read, since we don't rely |
| 1172 | // on the visibility of any prior computation. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1173 | Inflate(self, nullptr, h_obj.Get(), lock_word.GetHashCode()); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1174 | continue; // Start from the beginning. |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1175 | default: { |
| 1176 | LOG(FATAL) << "Invalid monitor state " << lock_word.GetState(); |
Andreas Gampe | c7ed09b | 2016-04-25 20:08:55 -0700 | [diff] [blame] | 1177 | UNREACHABLE(); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1178 | } |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1179 | } |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1180 | } |
| 1181 | } |
| 1182 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1183 | bool Monitor::MonitorExit(Thread* self, mirror::Object* obj) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1184 | DCHECK(self != nullptr); |
| 1185 | DCHECK(obj != nullptr); |
Mathieu Chartier | 2d096c9 | 2015-10-12 16:18:20 -0700 | [diff] [blame] | 1186 | self->AssertThreadSuspensionIsAllowable(); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1187 | obj = FakeUnlock(obj); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1188 | StackHandleScope<1> hs(self); |
| 1189 | Handle<mirror::Object> h_obj(hs.NewHandle(obj)); |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 1190 | while (true) { |
| 1191 | LockWord lock_word = obj->GetLockWord(true); |
| 1192 | switch (lock_word.GetState()) { |
| 1193 | case LockWord::kHashCode: |
| 1194 | // Fall-through. |
| 1195 | case LockWord::kUnlocked: |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 1196 | FailedUnlock(h_obj.Get(), self->GetThreadId(), 0u, nullptr); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1197 | return false; // Failure. |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 1198 | case LockWord::kThinLocked: { |
| 1199 | uint32_t thread_id = self->GetThreadId(); |
| 1200 | uint32_t owner_thread_id = lock_word.ThinLockOwner(); |
| 1201 | if (owner_thread_id != thread_id) { |
Mathieu Chartier | 61b3cd4 | 2016-04-18 11:43:29 -0700 | [diff] [blame] | 1202 | FailedUnlock(h_obj.Get(), thread_id, owner_thread_id, nullptr); |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 1203 | return false; // Failure. |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1204 | } else { |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 1205 | // We own the lock, decrease the recursion count. |
| 1206 | LockWord new_lw = LockWord::Default(); |
| 1207 | if (lock_word.ThinLockCount() != 0) { |
| 1208 | uint32_t new_count = lock_word.ThinLockCount() - 1; |
Mathieu Chartier | 36a270a | 2016-07-28 18:08:51 -0700 | [diff] [blame] | 1209 | new_lw = LockWord::FromThinLockId(thread_id, new_count, lock_word.GCState()); |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 1210 | } else { |
Mathieu Chartier | 36a270a | 2016-07-28 18:08:51 -0700 | [diff] [blame] | 1211 | new_lw = LockWord::FromDefault(lock_word.GCState()); |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 1212 | } |
| 1213 | if (!kUseReadBarrier) { |
| 1214 | DCHECK_EQ(new_lw.ReadBarrierState(), 0U); |
Hans Boehm | b3da36c | 2016-12-15 13:12:59 -0800 | [diff] [blame] | 1215 | // TODO: This really only needs memory_order_release, but we currently have |
| 1216 | // no way to specify that. In fact there seem to be no legitimate uses of SetLockWord |
| 1217 | // with a final argument of true. This slows down x86 and ARMv7, but probably not v8. |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 1218 | h_obj->SetLockWord(new_lw, true); |
Andreas Gampe | 6e759ad | 2016-05-17 10:13:10 -0700 | [diff] [blame] | 1219 | AtraceMonitorUnlock(); |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 1220 | // Success! |
| 1221 | return true; |
| 1222 | } else { |
| 1223 | // Use CAS to preserve the read barrier state. |
Mathieu Chartier | 42c2e50 | 2018-06-19 12:30:56 -0700 | [diff] [blame] | 1224 | if (h_obj->CasLockWord(lock_word, new_lw, CASMode::kWeak, std::memory_order_release)) { |
Andreas Gampe | 6e759ad | 2016-05-17 10:13:10 -0700 | [diff] [blame] | 1225 | AtraceMonitorUnlock(); |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 1226 | // Success! |
| 1227 | return true; |
| 1228 | } |
| 1229 | } |
| 1230 | continue; // Go again. |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1231 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1232 | } |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 1233 | case LockWord::kFatLocked: { |
| 1234 | Monitor* mon = lock_word.FatLockMonitor(); |
| 1235 | return mon->Unlock(self); |
| 1236 | } |
| 1237 | default: { |
| 1238 | LOG(FATAL) << "Invalid monitor state " << lock_word.GetState(); |
| 1239 | return false; |
| 1240 | } |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1241 | } |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1242 | } |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1243 | } |
| 1244 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1245 | void Monitor::Wait(Thread* self, mirror::Object *obj, int64_t ms, int32_t ns, |
Elliott Hughes | 4cd121e | 2013-01-07 17:35:41 -0800 | [diff] [blame] | 1246 | bool interruptShouldThrow, ThreadState why) { |
Mathieu Chartier | 4d7f61d | 2014-04-17 14:43:39 -0700 | [diff] [blame] | 1247 | DCHECK(self != nullptr); |
| 1248 | DCHECK(obj != nullptr); |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 1249 | StackHandleScope<1> hs(self); |
| 1250 | Handle<mirror::Object> h_obj(hs.NewHandle(obj)); |
| 1251 | |
| 1252 | Runtime::Current()->GetRuntimeCallbacks()->ObjectWaitStart(h_obj, ms); |
Alex Light | 848574c | 2017-09-25 16:59:39 -0700 | [diff] [blame] | 1253 | if (UNLIKELY(self->ObserveAsyncException() || self->IsExceptionPending())) { |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 1254 | // See b/65558434 for information on handling of exceptions here. |
| 1255 | return; |
| 1256 | } |
| 1257 | |
| 1258 | LockWord lock_word = h_obj->GetLockWord(true); |
Ian Rogers | 43c69cc | 2014-08-15 11:09:28 -0700 | [diff] [blame] | 1259 | while (lock_word.GetState() != LockWord::kFatLocked) { |
| 1260 | switch (lock_word.GetState()) { |
| 1261 | case LockWord::kHashCode: |
| 1262 | // Fall-through. |
| 1263 | case LockWord::kUnlocked: |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1264 | ThrowIllegalMonitorStateExceptionF("object not locked by thread before wait()"); |
| 1265 | return; // Failure. |
Ian Rogers | 43c69cc | 2014-08-15 11:09:28 -0700 | [diff] [blame] | 1266 | case LockWord::kThinLocked: { |
| 1267 | uint32_t thread_id = self->GetThreadId(); |
| 1268 | uint32_t owner_thread_id = lock_word.ThinLockOwner(); |
| 1269 | if (owner_thread_id != thread_id) { |
| 1270 | ThrowIllegalMonitorStateExceptionF("object not locked by thread before wait()"); |
| 1271 | return; // Failure. |
| 1272 | } else { |
| 1273 | // We own the lock, inflate to enqueue ourself on the Monitor. May fail spuriously so |
| 1274 | // re-load. |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 1275 | Inflate(self, self, h_obj.Get(), 0); |
| 1276 | lock_word = h_obj->GetLockWord(true); |
Ian Rogers | 43c69cc | 2014-08-15 11:09:28 -0700 | [diff] [blame] | 1277 | } |
| 1278 | break; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1279 | } |
Ian Rogers | 43c69cc | 2014-08-15 11:09:28 -0700 | [diff] [blame] | 1280 | case LockWord::kFatLocked: // Unreachable given the loop condition above. Fall-through. |
| 1281 | default: { |
| 1282 | LOG(FATAL) << "Invalid monitor state " << lock_word.GetState(); |
| 1283 | return; |
| 1284 | } |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1285 | } |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1286 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1287 | Monitor* mon = lock_word.FatLockMonitor(); |
| 1288 | mon->Wait(self, ms, ns, interruptShouldThrow, why); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1289 | } |
| 1290 | |
Ian Rogers | 13c479e | 2013-10-11 07:59:01 -0700 | [diff] [blame] | 1291 | void Monitor::DoNotify(Thread* self, mirror::Object* obj, bool notify_all) { |
Mathieu Chartier | 4d7f61d | 2014-04-17 14:43:39 -0700 | [diff] [blame] | 1292 | DCHECK(self != nullptr); |
| 1293 | DCHECK(obj != nullptr); |
| 1294 | LockWord lock_word = obj->GetLockWord(true); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1295 | switch (lock_word.GetState()) { |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1296 | case LockWord::kHashCode: |
| 1297 | // Fall-through. |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1298 | case LockWord::kUnlocked: |
Ian Rogers | 6d0b13e | 2012-02-07 09:25:29 -0800 | [diff] [blame] | 1299 | ThrowIllegalMonitorStateExceptionF("object not locked by thread before notify()"); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1300 | return; // Failure. |
| 1301 | case LockWord::kThinLocked: { |
| 1302 | uint32_t thread_id = self->GetThreadId(); |
| 1303 | uint32_t owner_thread_id = lock_word.ThinLockOwner(); |
| 1304 | if (owner_thread_id != thread_id) { |
| 1305 | ThrowIllegalMonitorStateExceptionF("object not locked by thread before notify()"); |
| 1306 | return; // Failure. |
| 1307 | } else { |
| 1308 | // We own the lock but there's no Monitor and therefore no waiters. |
| 1309 | return; // Success. |
| 1310 | } |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1311 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1312 | case LockWord::kFatLocked: { |
| 1313 | Monitor* mon = lock_word.FatLockMonitor(); |
| 1314 | if (notify_all) { |
| 1315 | mon->NotifyAll(self); |
| 1316 | } else { |
| 1317 | mon->Notify(self); |
| 1318 | } |
| 1319 | return; // Success. |
| 1320 | } |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1321 | default: { |
| 1322 | LOG(FATAL) << "Invalid monitor state " << lock_word.GetState(); |
| 1323 | return; |
| 1324 | } |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1325 | } |
| 1326 | } |
| 1327 | |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1328 | uint32_t Monitor::GetLockOwnerThreadId(mirror::Object* obj) { |
Mathieu Chartier | 4d7f61d | 2014-04-17 14:43:39 -0700 | [diff] [blame] | 1329 | DCHECK(obj != nullptr); |
| 1330 | LockWord lock_word = obj->GetLockWord(true); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1331 | switch (lock_word.GetState()) { |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1332 | case LockWord::kHashCode: |
| 1333 | // Fall-through. |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1334 | case LockWord::kUnlocked: |
| 1335 | return ThreadList::kInvalidThreadId; |
| 1336 | case LockWord::kThinLocked: |
| 1337 | return lock_word.ThinLockOwner(); |
| 1338 | case LockWord::kFatLocked: { |
| 1339 | Monitor* mon = lock_word.FatLockMonitor(); |
| 1340 | return mon->GetOwnerThreadId(); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1341 | } |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1342 | default: { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1343 | LOG(FATAL) << "Unreachable"; |
Ian Rogers | 2c4257b | 2014-10-24 14:20:06 -0700 | [diff] [blame] | 1344 | UNREACHABLE(); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1345 | } |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1346 | } |
| 1347 | } |
| 1348 | |
Andreas Gampe | f3ebcce | 2017-12-11 20:40:23 -0800 | [diff] [blame] | 1349 | ThreadState Monitor::FetchState(const Thread* thread, |
| 1350 | /* out */ mirror::Object** monitor_object, |
| 1351 | /* out */ uint32_t* lock_owner_tid) { |
| 1352 | DCHECK(monitor_object != nullptr); |
| 1353 | DCHECK(lock_owner_tid != nullptr); |
| 1354 | |
| 1355 | *monitor_object = nullptr; |
| 1356 | *lock_owner_tid = ThreadList::kInvalidThreadId; |
| 1357 | |
| 1358 | ThreadState state = thread->GetState(); |
| 1359 | |
| 1360 | switch (state) { |
| 1361 | case kWaiting: |
| 1362 | case kTimedWaiting: |
| 1363 | case kSleeping: |
| 1364 | { |
| 1365 | Thread* self = Thread::Current(); |
| 1366 | MutexLock mu(self, *thread->GetWaitMutex()); |
| 1367 | Monitor* monitor = thread->GetWaitMonitor(); |
| 1368 | if (monitor != nullptr) { |
| 1369 | *monitor_object = monitor->GetObject(); |
Ian Rogers | d803bc7 | 2014-04-01 15:33:03 -0700 | [diff] [blame] | 1370 | } |
| 1371 | } |
Andreas Gampe | f3ebcce | 2017-12-11 20:40:23 -0800 | [diff] [blame] | 1372 | break; |
| 1373 | |
| 1374 | case kBlocked: |
| 1375 | case kWaitingForLockInflation: |
| 1376 | { |
| 1377 | mirror::Object* lock_object = thread->GetMonitorEnterObject(); |
| 1378 | if (lock_object != nullptr) { |
| 1379 | if (kUseReadBarrier && Thread::Current()->GetIsGcMarking()) { |
| 1380 | // We may call Thread::Dump() in the middle of the CC thread flip and this thread's stack |
| 1381 | // may have not been flipped yet and "pretty_object" may be a from-space (stale) ref, in |
| 1382 | // which case the GetLockOwnerThreadId() call below will crash. So explicitly mark/forward |
| 1383 | // it here. |
| 1384 | lock_object = ReadBarrier::Mark(lock_object); |
| 1385 | } |
| 1386 | *monitor_object = lock_object; |
| 1387 | *lock_owner_tid = lock_object->GetLockOwnerThreadId(); |
| 1388 | } |
Ian Rogers | d803bc7 | 2014-04-01 15:33:03 -0700 | [diff] [blame] | 1389 | } |
Andreas Gampe | f3ebcce | 2017-12-11 20:40:23 -0800 | [diff] [blame] | 1390 | break; |
| 1391 | |
| 1392 | default: |
| 1393 | break; |
Elliott Hughes | 8e4aac5 | 2011-09-26 17:03:36 -0700 | [diff] [blame] | 1394 | } |
Andreas Gampe | f3ebcce | 2017-12-11 20:40:23 -0800 | [diff] [blame] | 1395 | |
| 1396 | return state; |
Elliott Hughes | 8e4aac5 | 2011-09-26 17:03:36 -0700 | [diff] [blame] | 1397 | } |
| 1398 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1399 | mirror::Object* Monitor::GetContendedMonitor(Thread* thread) { |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 1400 | // This is used to implement JDWP's ThreadReference.CurrentContendedMonitor, and has a bizarre |
| 1401 | // definition of contended that includes a monitor a thread is trying to enter... |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1402 | mirror::Object* result = thread->GetMonitorEnterObject(); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1403 | if (result == nullptr) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1404 | // ...but also a monitor that the thread is waiting on. |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 1405 | MutexLock mu(Thread::Current(), *thread->GetWaitMutex()); |
| 1406 | Monitor* monitor = thread->GetWaitMonitor(); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1407 | if (monitor != nullptr) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1408 | result = monitor->GetObject(); |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 1409 | } |
| 1410 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1411 | return result; |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 1412 | } |
| 1413 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1414 | void Monitor::VisitLocks(StackVisitor* stack_visitor, void (*callback)(mirror::Object*, void*), |
Andreas Gampe | 760172c | 2014-08-16 13:41:10 -0700 | [diff] [blame] | 1415 | void* callback_context, bool abort_on_failure) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1416 | ArtMethod* m = stack_visitor->GetMethod(); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1417 | CHECK(m != nullptr); |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1418 | |
| 1419 | // Native methods are an easy special case. |
| 1420 | // TODO: use the JNI implementation's table of explicit MonitorEnter calls and dump those too. |
| 1421 | if (m->IsNative()) { |
| 1422 | if (m->IsSynchronized()) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1423 | mirror::Object* jni_this = |
| 1424 | stack_visitor->GetCurrentHandleScope(sizeof(void*))->GetReference(0); |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 1425 | callback(jni_this, callback_context); |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1426 | } |
| 1427 | return; |
| 1428 | } |
| 1429 | |
jeffhao | 61f916c | 2012-10-25 17:48:51 -0700 | [diff] [blame] | 1430 | // Proxy methods should not be synchronized. |
| 1431 | if (m->IsProxyMethod()) { |
| 1432 | CHECK(!m->IsSynchronized()); |
| 1433 | return; |
| 1434 | } |
| 1435 | |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1436 | // Is there any reason to believe there's any synchronization in this method? |
Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 1437 | CHECK(m->GetCodeItem() != nullptr) << m->PrettyMethod(); |
David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 1438 | CodeItemDataAccessor accessor(m->DexInstructionData()); |
Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 1439 | if (accessor.TriesSize() == 0) { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1440 | return; // No "tries" implies no synchronization, so no held locks to report. |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1441 | } |
| 1442 | |
Andreas Gampe | 760172c | 2014-08-16 13:41:10 -0700 | [diff] [blame] | 1443 | // Get the dex pc. If abort_on_failure is false, GetDexPc will not abort in the case it cannot |
| 1444 | // find the dex pc, and instead return kDexNoIndex. Then bail out, as it indicates we have an |
| 1445 | // inconsistent stack anyways. |
| 1446 | uint32_t dex_pc = stack_visitor->GetDexPc(abort_on_failure); |
Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 1447 | if (!abort_on_failure && dex_pc == dex::kDexNoIndex) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1448 | LOG(ERROR) << "Could not find dex_pc for " << m->PrettyMethod(); |
Andreas Gampe | 760172c | 2014-08-16 13:41:10 -0700 | [diff] [blame] | 1449 | return; |
| 1450 | } |
| 1451 | |
Elliott Hughes | 80537bb | 2013-01-04 16:37:26 -0800 | [diff] [blame] | 1452 | // Ask the verifier for the dex pcs of all the monitor-enter instructions corresponding to |
| 1453 | // the locks held in this stack frame. |
Andreas Gampe | aaf0d38 | 2017-11-27 14:10:21 -0800 | [diff] [blame] | 1454 | std::vector<verifier::MethodVerifier::DexLockInfo> monitor_enter_dex_pcs; |
Andreas Gampe | 6cc23ac | 2018-08-24 15:22:43 -0700 | [diff] [blame] | 1455 | verifier::MethodVerifier::FindLocksAtDexPc(m, |
| 1456 | dex_pc, |
| 1457 | &monitor_enter_dex_pcs, |
| 1458 | Runtime::Current()->GetTargetSdkVersion()); |
Andreas Gampe | aaf0d38 | 2017-11-27 14:10:21 -0800 | [diff] [blame] | 1459 | for (verifier::MethodVerifier::DexLockInfo& dex_lock_info : monitor_enter_dex_pcs) { |
| 1460 | // As a debug check, check that dex PC corresponds to a monitor-enter. |
| 1461 | if (kIsDebugBuild) { |
Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 1462 | const Instruction& monitor_enter_instruction = accessor.InstructionAt(dex_lock_info.dex_pc); |
| 1463 | CHECK_EQ(monitor_enter_instruction.Opcode(), Instruction::MONITOR_ENTER) |
Andreas Gampe | aaf0d38 | 2017-11-27 14:10:21 -0800 | [diff] [blame] | 1464 | << "expected monitor-enter @" << dex_lock_info.dex_pc << "; was " |
Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 1465 | << reinterpret_cast<const void*>(&monitor_enter_instruction); |
Andreas Gampe | aaf0d38 | 2017-11-27 14:10:21 -0800 | [diff] [blame] | 1466 | } |
Elliott Hughes | 80537bb | 2013-01-04 16:37:26 -0800 | [diff] [blame] | 1467 | |
Andreas Gampe | aaf0d38 | 2017-11-27 14:10:21 -0800 | [diff] [blame] | 1468 | // Iterate through the set of dex registers, as the compiler may not have held all of them |
| 1469 | // live. |
| 1470 | bool success = false; |
| 1471 | for (uint32_t dex_reg : dex_lock_info.dex_registers) { |
| 1472 | uint32_t value; |
| 1473 | success = stack_visitor->GetVReg(m, dex_reg, kReferenceVReg, &value); |
| 1474 | if (success) { |
| 1475 | mirror::Object* o = reinterpret_cast<mirror::Object*>(value); |
| 1476 | callback(o, callback_context); |
| 1477 | break; |
| 1478 | } |
| 1479 | } |
| 1480 | DCHECK(success) << "Failed to find/read reference for monitor-enter at dex pc " |
| 1481 | << dex_lock_info.dex_pc |
| 1482 | << " in method " |
| 1483 | << m->PrettyMethod(); |
| 1484 | if (!success) { |
| 1485 | LOG(WARNING) << "Had a lock reported for dex pc " << dex_lock_info.dex_pc |
| 1486 | << " but was not able to fetch a corresponding object!"; |
| 1487 | } |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1488 | } |
| 1489 | } |
| 1490 | |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1491 | bool Monitor::IsValidLockWord(LockWord lock_word) { |
| 1492 | switch (lock_word.GetState()) { |
| 1493 | case LockWord::kUnlocked: |
| 1494 | // Nothing to check. |
| 1495 | return true; |
| 1496 | case LockWord::kThinLocked: |
| 1497 | // Basic sanity check of owner. |
| 1498 | return lock_word.ThinLockOwner() != ThreadList::kInvalidThreadId; |
| 1499 | case LockWord::kFatLocked: { |
| 1500 | // Check the monitor appears in the monitor list. |
| 1501 | Monitor* mon = lock_word.FatLockMonitor(); |
| 1502 | MonitorList* list = Runtime::Current()->GetMonitorList(); |
| 1503 | MutexLock mu(Thread::Current(), list->monitor_list_lock_); |
| 1504 | for (Monitor* list_mon : list->list_) { |
| 1505 | if (mon == list_mon) { |
| 1506 | return true; // Found our monitor. |
| 1507 | } |
Ian Rogers | 7dfb28c | 2013-08-22 08:18:36 -0700 | [diff] [blame] | 1508 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1509 | return false; // Fail - unowned monitor in an object. |
Ian Rogers | 7dfb28c | 2013-08-22 08:18:36 -0700 | [diff] [blame] | 1510 | } |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1511 | case LockWord::kHashCode: |
| 1512 | return true; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1513 | default: |
| 1514 | LOG(FATAL) << "Unreachable"; |
Ian Rogers | 2c4257b | 2014-10-24 14:20:06 -0700 | [diff] [blame] | 1515 | UNREACHABLE(); |
Ian Rogers | 7dfb28c | 2013-08-22 08:18:36 -0700 | [diff] [blame] | 1516 | } |
| 1517 | } |
| 1518 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1519 | bool Monitor::IsLocked() REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1520 | MutexLock mu(Thread::Current(), monitor_lock_); |
| 1521 | return owner_ != nullptr; |
| 1522 | } |
| 1523 | |
Mathieu Chartier | 74b3c8f | 2016-04-15 19:11:45 -0700 | [diff] [blame] | 1524 | void Monitor::TranslateLocation(ArtMethod* method, |
| 1525 | uint32_t dex_pc, |
| 1526 | const char** source_file, |
| 1527 | int32_t* line_number) { |
jeffhao | 33dc771 | 2011-11-09 17:54:24 -0800 | [diff] [blame] | 1528 | // If method is null, location is unknown |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1529 | if (method == nullptr) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1530 | *source_file = ""; |
| 1531 | *line_number = 0; |
jeffhao | 33dc771 | 2011-11-09 17:54:24 -0800 | [diff] [blame] | 1532 | return; |
| 1533 | } |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1534 | *source_file = method->GetDeclaringClassSourceFile(); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1535 | if (*source_file == nullptr) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1536 | *source_file = ""; |
Elliott Hughes | 12c51e3 | 2012-01-17 20:25:05 -0800 | [diff] [blame] | 1537 | } |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1538 | *line_number = method->GetLineNumFromDexPC(dex_pc); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1539 | } |
| 1540 | |
| 1541 | uint32_t Monitor::GetOwnerThreadId() { |
| 1542 | MutexLock mu(Thread::Current(), monitor_lock_); |
| 1543 | Thread* owner = owner_; |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1544 | if (owner != nullptr) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1545 | return owner->GetThreadId(); |
| 1546 | } else { |
| 1547 | return ThreadList::kInvalidThreadId; |
| 1548 | } |
jeffhao | 33dc771 | 2011-11-09 17:54:24 -0800 | [diff] [blame] | 1549 | } |
| 1550 | |
Mathieu Chartier | c11d9b8 | 2013-09-19 10:01:59 -0700 | [diff] [blame] | 1551 | MonitorList::MonitorList() |
Mathieu Chartier | 440e4ce | 2014-03-31 16:36:35 -0700 | [diff] [blame] | 1552 | : allow_new_monitors_(true), monitor_list_lock_("MonitorList lock", kMonitorListLock), |
Mathieu Chartier | c11d9b8 | 2013-09-19 10:01:59 -0700 | [diff] [blame] | 1553 | monitor_add_condition_("MonitorList disallow condition", monitor_list_lock_) { |
Elliott Hughes | c33a32b | 2011-10-11 18:18:07 -0700 | [diff] [blame] | 1554 | } |
| 1555 | |
| 1556 | MonitorList::~MonitorList() { |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 1557 | Thread* self = Thread::Current(); |
| 1558 | MutexLock mu(self, monitor_list_lock_); |
| 1559 | // Release all monitors to the pool. |
| 1560 | // TODO: Is it an invariant that *all* open monitors are in the list? Then we could |
| 1561 | // clear faster in the pool. |
| 1562 | MonitorPool::ReleaseMonitors(self, &list_); |
Elliott Hughes | c33a32b | 2011-10-11 18:18:07 -0700 | [diff] [blame] | 1563 | } |
| 1564 | |
Mathieu Chartier | c11d9b8 | 2013-09-19 10:01:59 -0700 | [diff] [blame] | 1565 | void MonitorList::DisallowNewMonitors() { |
Hiroshi Yamauchi | fdbd13c | 2015-09-02 16:16:58 -0700 | [diff] [blame] | 1566 | CHECK(!kUseReadBarrier); |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 1567 | MutexLock mu(Thread::Current(), monitor_list_lock_); |
Mathieu Chartier | c11d9b8 | 2013-09-19 10:01:59 -0700 | [diff] [blame] | 1568 | allow_new_monitors_ = false; |
| 1569 | } |
| 1570 | |
| 1571 | void MonitorList::AllowNewMonitors() { |
Hiroshi Yamauchi | fdbd13c | 2015-09-02 16:16:58 -0700 | [diff] [blame] | 1572 | CHECK(!kUseReadBarrier); |
Mathieu Chartier | c11d9b8 | 2013-09-19 10:01:59 -0700 | [diff] [blame] | 1573 | Thread* self = Thread::Current(); |
| 1574 | MutexLock mu(self, monitor_list_lock_); |
| 1575 | allow_new_monitors_ = true; |
| 1576 | monitor_add_condition_.Broadcast(self); |
| 1577 | } |
| 1578 | |
Hiroshi Yamauchi | 0b71357 | 2015-06-16 18:29:23 -0700 | [diff] [blame] | 1579 | void MonitorList::BroadcastForNewMonitors() { |
Hiroshi Yamauchi | 0b71357 | 2015-06-16 18:29:23 -0700 | [diff] [blame] | 1580 | Thread* self = Thread::Current(); |
| 1581 | MutexLock mu(self, monitor_list_lock_); |
| 1582 | monitor_add_condition_.Broadcast(self); |
| 1583 | } |
| 1584 | |
Mathieu Chartier | c11d9b8 | 2013-09-19 10:01:59 -0700 | [diff] [blame] | 1585 | void MonitorList::Add(Monitor* m) { |
| 1586 | Thread* self = Thread::Current(); |
| 1587 | MutexLock mu(self, monitor_list_lock_); |
Hiroshi Yamauchi | f1c6f87 | 2017-01-06 12:23:47 -0800 | [diff] [blame] | 1588 | // CMS needs this to block for concurrent reference processing because an object allocated during |
| 1589 | // the GC won't be marked and concurrent reference processing would incorrectly clear the JNI weak |
| 1590 | // ref. But CC (kUseReadBarrier == true) doesn't because of the to-space invariant. |
| 1591 | while (!kUseReadBarrier && UNLIKELY(!allow_new_monitors_)) { |
Hiroshi Yamauchi | 3049324 | 2016-11-03 13:06:52 -0700 | [diff] [blame] | 1592 | // Check and run the empty checkpoint before blocking so the empty checkpoint will work in the |
| 1593 | // presence of threads blocking for weak ref access. |
Hiroshi Yamauchi | a222404 | 2017-02-08 16:35:45 -0800 | [diff] [blame] | 1594 | self->CheckEmptyCheckpointFromWeakRefAccess(&monitor_list_lock_); |
Mathieu Chartier | c11d9b8 | 2013-09-19 10:01:59 -0700 | [diff] [blame] | 1595 | monitor_add_condition_.WaitHoldingLocks(self); |
| 1596 | } |
Elliott Hughes | c33a32b | 2011-10-11 18:18:07 -0700 | [diff] [blame] | 1597 | list_.push_front(m); |
| 1598 | } |
| 1599 | |
Mathieu Chartier | 9750995 | 2015-07-13 14:35:43 -0700 | [diff] [blame] | 1600 | void MonitorList::SweepMonitorList(IsMarkedVisitor* visitor) { |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 1601 | Thread* self = Thread::Current(); |
| 1602 | MutexLock mu(self, monitor_list_lock_); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1603 | for (auto it = list_.begin(); it != list_.end(); ) { |
Elliott Hughes | c33a32b | 2011-10-11 18:18:07 -0700 | [diff] [blame] | 1604 | Monitor* m = *it; |
Hiroshi Yamauchi | 4cba0d9 | 2014-05-21 21:10:23 -0700 | [diff] [blame] | 1605 | // Disable the read barrier in GetObject() as this is called by GC. |
| 1606 | mirror::Object* obj = m->GetObject<kWithoutReadBarrier>(); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1607 | // The object of a monitor can be null if we have deflated it. |
Mathieu Chartier | 9750995 | 2015-07-13 14:35:43 -0700 | [diff] [blame] | 1608 | mirror::Object* new_obj = obj != nullptr ? visitor->IsMarked(obj) : nullptr; |
Mathieu Chartier | 6aa3df9 | 2013-09-17 15:17:28 -0700 | [diff] [blame] | 1609 | if (new_obj == nullptr) { |
| 1610 | VLOG(monitor) << "freeing monitor " << m << " belonging to unmarked object " |
Hiroshi Yamauchi | 4cba0d9 | 2014-05-21 21:10:23 -0700 | [diff] [blame] | 1611 | << obj; |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 1612 | MonitorPool::ReleaseMonitor(self, m); |
Elliott Hughes | c33a32b | 2011-10-11 18:18:07 -0700 | [diff] [blame] | 1613 | it = list_.erase(it); |
| 1614 | } else { |
Mathieu Chartier | 6aa3df9 | 2013-09-17 15:17:28 -0700 | [diff] [blame] | 1615 | m->SetObject(new_obj); |
Elliott Hughes | c33a32b | 2011-10-11 18:18:07 -0700 | [diff] [blame] | 1616 | ++it; |
| 1617 | } |
| 1618 | } |
| 1619 | } |
| 1620 | |
Hans Boehm | 6fe97e0 | 2016-05-04 18:35:57 -0700 | [diff] [blame] | 1621 | size_t MonitorList::Size() { |
| 1622 | Thread* self = Thread::Current(); |
| 1623 | MutexLock mu(self, monitor_list_lock_); |
| 1624 | return list_.size(); |
| 1625 | } |
| 1626 | |
Mathieu Chartier | 9750995 | 2015-07-13 14:35:43 -0700 | [diff] [blame] | 1627 | class MonitorDeflateVisitor : public IsMarkedVisitor { |
| 1628 | public: |
| 1629 | MonitorDeflateVisitor() : self_(Thread::Current()), deflate_count_(0) {} |
| 1630 | |
Roland Levillain | f73caca | 2018-08-24 17:19:07 +0100 | [diff] [blame] | 1631 | mirror::Object* IsMarked(mirror::Object* object) override |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1632 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | 9750995 | 2015-07-13 14:35:43 -0700 | [diff] [blame] | 1633 | if (Monitor::Deflate(self_, object)) { |
| 1634 | DCHECK_NE(object->GetLockWord(true).GetState(), LockWord::kFatLocked); |
| 1635 | ++deflate_count_; |
| 1636 | // If we deflated, return null so that the monitor gets removed from the array. |
| 1637 | return nullptr; |
| 1638 | } |
| 1639 | return object; // Monitor was not deflated. |
| 1640 | } |
| 1641 | |
| 1642 | Thread* const self_; |
| 1643 | size_t deflate_count_; |
Mathieu Chartier | 48ab687 | 2014-06-24 11:21:59 -0700 | [diff] [blame] | 1644 | }; |
| 1645 | |
Mathieu Chartier | 48ab687 | 2014-06-24 11:21:59 -0700 | [diff] [blame] | 1646 | size_t MonitorList::DeflateMonitors() { |
Mathieu Chartier | 9750995 | 2015-07-13 14:35:43 -0700 | [diff] [blame] | 1647 | MonitorDeflateVisitor visitor; |
| 1648 | Locks::mutator_lock_->AssertExclusiveHeld(visitor.self_); |
| 1649 | SweepMonitorList(&visitor); |
| 1650 | return visitor.deflate_count_; |
Mathieu Chartier | 440e4ce | 2014-03-31 16:36:35 -0700 | [diff] [blame] | 1651 | } |
| 1652 | |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1653 | MonitorInfo::MonitorInfo(mirror::Object* obj) : owner_(nullptr), entry_count_(0) { |
Mathieu Chartier | 4d7f61d | 2014-04-17 14:43:39 -0700 | [diff] [blame] | 1654 | DCHECK(obj != nullptr); |
| 1655 | LockWord lock_word = obj->GetLockWord(true); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1656 | switch (lock_word.GetState()) { |
| 1657 | case LockWord::kUnlocked: |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1658 | // Fall-through. |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1659 | case LockWord::kForwardingAddress: |
| 1660 | // Fall-through. |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1661 | case LockWord::kHashCode: |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1662 | break; |
| 1663 | case LockWord::kThinLocked: |
| 1664 | owner_ = Runtime::Current()->GetThreadList()->FindThreadByThreadId(lock_word.ThinLockOwner()); |
Alex Light | ce56864 | 2017-09-05 16:54:25 -0700 | [diff] [blame] | 1665 | DCHECK(owner_ != nullptr) << "Thin-locked without owner!"; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1666 | entry_count_ = 1 + lock_word.ThinLockCount(); |
| 1667 | // Thin locks have no waiters. |
| 1668 | break; |
| 1669 | case LockWord::kFatLocked: { |
| 1670 | Monitor* mon = lock_word.FatLockMonitor(); |
| 1671 | owner_ = mon->owner_; |
Alex Light | ce56864 | 2017-09-05 16:54:25 -0700 | [diff] [blame] | 1672 | // Here it is okay for the owner to be null since we don't reset the LockWord back to |
| 1673 | // kUnlocked until we get a GC. In cases where this hasn't happened yet we will have a fat |
| 1674 | // lock without an owner. |
| 1675 | if (owner_ != nullptr) { |
| 1676 | entry_count_ = 1 + mon->lock_count_; |
| 1677 | } else { |
| 1678 | DCHECK_EQ(mon->lock_count_, 0) << "Monitor is fat-locked without any owner!"; |
| 1679 | } |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1680 | for (Thread* waiter = mon->wait_set_; waiter != nullptr; waiter = waiter->GetWaitNext()) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 1681 | waiters_.push_back(waiter); |
| 1682 | } |
| 1683 | break; |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 1684 | } |
| 1685 | } |
| 1686 | } |
| 1687 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 1688 | } // namespace art |