| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "mutex.h" |
| 18 | |
| 19 | #include <errno.h> |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 20 | #include <sys/time.h> |
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 21 | |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 22 | #include "atomic.h" |
| Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 23 | #include "base/logging.h" |
| Ian Rogers | 693ff61 | 2013-02-01 10:56:12 -0800 | [diff] [blame] | 24 | #include "mutex-inl.h" |
| Elliott Hughes | 6b35575 | 2012-01-13 16:49:08 -0800 | [diff] [blame] | 25 | #include "runtime.h" |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 26 | #include "scoped_thread_state_change.h" |
| Ian Rogers | 04d7aa9 | 2013-03-16 14:29:17 -0700 | [diff] [blame] | 27 | #include "thread-inl.h" |
| Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 28 | #include "utils.h" |
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 29 | |
| 30 | namespace art { |
| 31 | |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 32 | Mutex* Locks::abort_lock_ = nullptr; |
| Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 33 | Mutex* Locks::allocated_monitor_ids_lock_ = nullptr; |
| Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 34 | Mutex* Locks::allocated_thread_ids_lock_ = nullptr; |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 35 | Mutex* Locks::breakpoint_lock_ = nullptr; |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 36 | ReaderWriterMutex* Locks::classlinker_classes_lock_ = nullptr; |
| 37 | ReaderWriterMutex* Locks::heap_bitmap_lock_ = nullptr; |
| Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame^] | 38 | Mutex* Locks::jni_libraries_lock_ = nullptr; |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 39 | Mutex* Locks::logging_lock_ = nullptr; |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 40 | Mutex* Locks::mem_maps_lock_ = nullptr; |
| Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 41 | Mutex* Locks::modify_ldt_lock_ = nullptr; |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 42 | ReaderWriterMutex* Locks::mutator_lock_ = nullptr; |
| 43 | Mutex* Locks::runtime_shutdown_lock_ = nullptr; |
| 44 | Mutex* Locks::thread_list_lock_ = nullptr; |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 45 | Mutex* Locks::thread_list_suspend_thread_lock_ = nullptr; |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 46 | Mutex* Locks::thread_suspend_count_lock_ = nullptr; |
| 47 | Mutex* Locks::trace_lock_ = nullptr; |
| 48 | Mutex* Locks::profiler_lock_ = nullptr; |
| 49 | Mutex* Locks::unexpected_signal_lock_ = nullptr; |
| 50 | Mutex* Locks::intern_table_lock_ = nullptr; |
| 51 | |
| 52 | struct AllMutexData { |
| 53 | // A guard for all_mutexes_ that's not a mutex (Mutexes must CAS to acquire and busy wait). |
| 54 | Atomic<const BaseMutex*> all_mutexes_guard; |
| 55 | // All created mutexes guarded by all_mutexes_guard_. |
| 56 | std::set<BaseMutex*>* all_mutexes; |
| 57 | AllMutexData() : all_mutexes(NULL) {} |
| 58 | }; |
| 59 | static struct AllMutexData gAllMutexData[kAllMutexDataSize]; |
| 60 | |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 61 | #if ART_USE_FUTEXES |
| 62 | static bool ComputeRelativeTimeSpec(timespec* result_ts, const timespec& lhs, const timespec& rhs) { |
| Brian Carlstrom | fb6996f | 2013-07-18 18:21:14 -0700 | [diff] [blame] | 63 | const int32_t one_sec = 1000 * 1000 * 1000; // one second in nanoseconds. |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 64 | result_ts->tv_sec = lhs.tv_sec - rhs.tv_sec; |
| 65 | result_ts->tv_nsec = lhs.tv_nsec - rhs.tv_nsec; |
| 66 | if (result_ts->tv_nsec < 0) { |
| 67 | result_ts->tv_sec--; |
| 68 | result_ts->tv_nsec += one_sec; |
| 69 | } else if (result_ts->tv_nsec > one_sec) { |
| 70 | result_ts->tv_sec++; |
| 71 | result_ts->tv_nsec -= one_sec; |
| 72 | } |
| 73 | return result_ts->tv_sec < 0; |
| 74 | } |
| 75 | #endif |
| 76 | |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 77 | class ScopedAllMutexesLock { |
| 78 | public: |
| Brian Carlstrom | 93ba893 | 2013-07-17 21:31:49 -0700 | [diff] [blame] | 79 | explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) { |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 80 | while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakAcquire(0, mutex)) { |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 81 | NanoSleep(100); |
| 82 | } |
| 83 | } |
| 84 | ~ScopedAllMutexesLock() { |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 85 | while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) { |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 86 | NanoSleep(100); |
| 87 | } |
| 88 | } |
| 89 | private: |
| 90 | const BaseMutex* const mutex_; |
| 91 | }; |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 92 | |
| 93 | BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) { |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 94 | if (kLogLockContentions) { |
| 95 | ScopedAllMutexesLock mu(this); |
| Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 96 | std::set<BaseMutex*>** all_mutexes_ptr = &gAllMutexData->all_mutexes; |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 97 | if (*all_mutexes_ptr == NULL) { |
| 98 | // We leak the global set of all mutexes to avoid ordering issues in global variable |
| 99 | // construction/destruction. |
| 100 | *all_mutexes_ptr = new std::set<BaseMutex*>(); |
| 101 | } |
| 102 | (*all_mutexes_ptr)->insert(this); |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 103 | } |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | BaseMutex::~BaseMutex() { |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 107 | if (kLogLockContentions) { |
| 108 | ScopedAllMutexesLock mu(this); |
| Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 109 | gAllMutexData->all_mutexes->erase(this); |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 110 | } |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | void BaseMutex::DumpAll(std::ostream& os) { |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 114 | if (kLogLockContentions) { |
| 115 | os << "Mutex logging:\n"; |
| 116 | ScopedAllMutexesLock mu(reinterpret_cast<const BaseMutex*>(-1)); |
| Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 117 | std::set<BaseMutex*>* all_mutexes = gAllMutexData->all_mutexes; |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 118 | if (all_mutexes == NULL) { |
| 119 | // No mutexes have been created yet during at startup. |
| 120 | return; |
| 121 | } |
| 122 | typedef std::set<BaseMutex*>::const_iterator It; |
| Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 123 | os << "(Contended)\n"; |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 124 | for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) { |
| 125 | BaseMutex* mutex = *it; |
| 126 | if (mutex->HasEverContended()) { |
| 127 | mutex->Dump(os); |
| 128 | os << "\n"; |
| 129 | } |
| 130 | } |
| 131 | os << "(Never contented)\n"; |
| 132 | for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) { |
| 133 | BaseMutex* mutex = *it; |
| 134 | if (!mutex->HasEverContended()) { |
| 135 | mutex->Dump(os); |
| 136 | os << "\n"; |
| 137 | } |
| 138 | } |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 139 | } |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 140 | } |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 141 | |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 142 | void BaseMutex::CheckSafeToWait(Thread* self) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 143 | if (self == NULL) { |
| 144 | CheckUnattachedThread(level_); |
| 145 | return; |
| 146 | } |
| Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 147 | if (kDebugLocking) { |
| Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 148 | CHECK(self->GetHeldMutex(level_) == this || level_ == kMonitorLock) |
| 149 | << "Waiting on unacquired mutex: " << name_; |
| Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 150 | bool bad_mutexes_held = false; |
| Elliott Hughes | 0f82716 | 2013-02-26 12:12:58 -0800 | [diff] [blame] | 151 | for (int i = kLockLevelCount - 1; i >= 0; --i) { |
| Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 152 | if (i != level_) { |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 153 | BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i)); |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 154 | // We expect waits to happen while holding the thread list suspend thread lock. |
| 155 | if (held_mutex != NULL && i != kThreadListSuspendThreadLock) { |
| Elliott Hughes | 0f82716 | 2013-02-26 12:12:58 -0800 | [diff] [blame] | 156 | LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" " |
| 157 | << "(level " << LockLevel(i) << ") while performing wait on " |
| 158 | << "\"" << name_ << "\" (level " << level_ << ")"; |
| Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 159 | bad_mutexes_held = true; |
| 160 | } |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 161 | } |
| 162 | } |
| Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 163 | CHECK(!bad_mutexes_held); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 164 | } |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 165 | } |
| 166 | |
| Ian Rogers | 37f3c96 | 2014-07-17 11:25:30 -0700 | [diff] [blame] | 167 | void BaseMutex::ContentionLogData::AddToWaitTime(uint64_t value) { |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 168 | if (kLogLockContentions) { |
| 169 | // Atomically add value to wait_time. |
| Ian Rogers | 37f3c96 | 2014-07-17 11:25:30 -0700 | [diff] [blame] | 170 | wait_time.FetchAndAddSequentiallyConsistent(value); |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 171 | } |
| 172 | } |
| 173 | |
| Brian Carlstrom | 0de7985 | 2013-07-25 22:29:58 -0700 | [diff] [blame] | 174 | void BaseMutex::RecordContention(uint64_t blocked_tid, |
| 175 | uint64_t owner_tid, |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 176 | uint64_t nano_time_blocked) { |
| 177 | if (kLogLockContentions) { |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 178 | ContentionLogData* data = contention_log_data_; |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 179 | ++(data->contention_count); |
| 180 | data->AddToWaitTime(nano_time_blocked); |
| 181 | ContentionLogEntry* log = data->contention_log; |
| 182 | // This code is intentionally racy as it is only used for diagnostics. |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 183 | uint32_t slot = data->cur_content_log_entry.LoadRelaxed(); |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 184 | if (log[slot].blocked_tid == blocked_tid && |
| 185 | log[slot].owner_tid == blocked_tid) { |
| 186 | ++log[slot].count; |
| 187 | } else { |
| 188 | uint32_t new_slot; |
| 189 | do { |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 190 | slot = data->cur_content_log_entry.LoadRelaxed(); |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 191 | new_slot = (slot + 1) % kContentionLogSize; |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 192 | } while (!data->cur_content_log_entry.CompareExchangeWeakRelaxed(slot, new_slot)); |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 193 | log[new_slot].blocked_tid = blocked_tid; |
| 194 | log[new_slot].owner_tid = owner_tid; |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 195 | log[new_slot].count.StoreRelaxed(1); |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 196 | } |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 197 | } |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 198 | } |
| 199 | |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 200 | void BaseMutex::DumpContention(std::ostream& os) const { |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 201 | if (kLogLockContentions) { |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 202 | const ContentionLogData* data = contention_log_data_; |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 203 | const ContentionLogEntry* log = data->contention_log; |
| Ian Rogers | 37f3c96 | 2014-07-17 11:25:30 -0700 | [diff] [blame] | 204 | uint64_t wait_time = data->wait_time.LoadRelaxed(); |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 205 | uint32_t contention_count = data->contention_count.LoadRelaxed(); |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 206 | if (contention_count == 0) { |
| 207 | os << "never contended"; |
| 208 | } else { |
| 209 | os << "contended " << contention_count |
| Mathieu Chartier | 73d1e17 | 2014-04-11 17:53:48 -0700 | [diff] [blame] | 210 | << " total wait of contender " << PrettyDuration(wait_time) |
| 211 | << " average " << PrettyDuration(wait_time / contention_count); |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 212 | SafeMap<uint64_t, size_t> most_common_blocker; |
| 213 | SafeMap<uint64_t, size_t> most_common_blocked; |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 214 | for (size_t i = 0; i < kContentionLogSize; ++i) { |
| 215 | uint64_t blocked_tid = log[i].blocked_tid; |
| 216 | uint64_t owner_tid = log[i].owner_tid; |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 217 | uint32_t count = log[i].count.LoadRelaxed(); |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 218 | if (count > 0) { |
| Mathieu Chartier | 73d1e17 | 2014-04-11 17:53:48 -0700 | [diff] [blame] | 219 | auto it = most_common_blocked.find(blocked_tid); |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 220 | if (it != most_common_blocked.end()) { |
| 221 | most_common_blocked.Overwrite(blocked_tid, it->second + count); |
| 222 | } else { |
| 223 | most_common_blocked.Put(blocked_tid, count); |
| 224 | } |
| 225 | it = most_common_blocker.find(owner_tid); |
| 226 | if (it != most_common_blocker.end()) { |
| 227 | most_common_blocker.Overwrite(owner_tid, it->second + count); |
| 228 | } else { |
| 229 | most_common_blocker.Put(owner_tid, count); |
| 230 | } |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 231 | } |
| 232 | } |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 233 | uint64_t max_tid = 0; |
| 234 | size_t max_tid_count = 0; |
| Mathieu Chartier | 73d1e17 | 2014-04-11 17:53:48 -0700 | [diff] [blame] | 235 | for (const auto& pair : most_common_blocked) { |
| 236 | if (pair.second > max_tid_count) { |
| 237 | max_tid = pair.first; |
| 238 | max_tid_count = pair.second; |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 239 | } |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 240 | } |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 241 | if (max_tid != 0) { |
| 242 | os << " sample shows most blocked tid=" << max_tid; |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 243 | } |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 244 | max_tid = 0; |
| 245 | max_tid_count = 0; |
| Mathieu Chartier | 73d1e17 | 2014-04-11 17:53:48 -0700 | [diff] [blame] | 246 | for (const auto& pair : most_common_blocker) { |
| 247 | if (pair.second > max_tid_count) { |
| 248 | max_tid = pair.first; |
| 249 | max_tid_count = pair.second; |
| Hiroshi Yamauchi | 1afde13 | 2013-08-06 17:09:30 -0700 | [diff] [blame] | 250 | } |
| 251 | } |
| 252 | if (max_tid != 0) { |
| 253 | os << " sample shows tid=" << max_tid << " owning during this time"; |
| 254 | } |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 255 | } |
| 256 | } |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 260 | Mutex::Mutex(const char* name, LockLevel level, bool recursive) |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 261 | : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) { |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 262 | #if ART_USE_FUTEXES |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 263 | DCHECK_EQ(0, state_.LoadRelaxed()); |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 264 | DCHECK_EQ(0, num_contenders_.LoadRelaxed()); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 265 | #else |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 266 | CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr)); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 267 | #endif |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 268 | exclusive_owner_ = 0; |
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | Mutex::~Mutex() { |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 272 | #if ART_USE_FUTEXES |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 273 | if (state_.LoadRelaxed() != 0) { |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 274 | Runtime* runtime = Runtime::Current(); |
| Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 275 | bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current()); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 276 | LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_; |
| 277 | } else { |
| 278 | CHECK_EQ(exclusive_owner_, 0U) << "unexpectedly found an owner on unlocked mutex " << name_; |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 279 | CHECK_EQ(num_contenders_.LoadSequentiallyConsistent(), 0) |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 280 | << "unexpectedly found a contender on mutex " << name_; |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 281 | } |
| 282 | #else |
| Elliott Hughes | e62934d | 2012-04-09 11:24:29 -0700 | [diff] [blame] | 283 | // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread |
| 284 | // may still be using locks. |
| Elliott Hughes | 6b35575 | 2012-01-13 16:49:08 -0800 | [diff] [blame] | 285 | int rc = pthread_mutex_destroy(&mutex_); |
| 286 | if (rc != 0) { |
| 287 | errno = rc; |
| Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 288 | // TODO: should we just not log at all if shutting down? this could be the logging mutex! |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 289 | MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_); |
| Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 290 | Runtime* runtime = Runtime::Current(); |
| Mathieu Chartier | 34e8293 | 2013-11-12 18:22:47 -0800 | [diff] [blame] | 291 | bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked(); |
| Elliott Hughes | 6b35575 | 2012-01-13 16:49:08 -0800 | [diff] [blame] | 292 | PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_; |
| 293 | } |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 294 | #endif |
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 295 | } |
| 296 | |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 297 | void Mutex::ExclusiveLock(Thread* self) { |
| Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 298 | DCHECK(self == NULL || self == Thread::Current()); |
| Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 299 | if (kDebugLocking && !recursive_) { |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 300 | AssertNotHeld(self); |
| Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 301 | } |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 302 | if (!recursive_ || !IsExclusiveHeld(self)) { |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 303 | #if ART_USE_FUTEXES |
| 304 | bool done = false; |
| 305 | do { |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 306 | int32_t cur_state = state_.LoadRelaxed(); |
| Hiroshi Yamauchi | 967a0ad | 2013-09-10 16:24:21 -0700 | [diff] [blame] | 307 | if (LIKELY(cur_state == 0)) { |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 308 | // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition. |
| 309 | done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 310 | } else { |
| 311 | // Failed to acquire, hang up. |
| Hiroshi Yamauchi | b373308 | 2013-08-12 17:28:49 -0700 | [diff] [blame] | 312 | ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid()); |
| Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 313 | num_contenders_++; |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 314 | if (futex(state_.Address(), FUTEX_WAIT, 1, NULL, NULL, 0) != 0) { |
| Brian Carlstrom | 0de7985 | 2013-07-25 22:29:58 -0700 | [diff] [blame] | 315 | // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning. |
| 316 | // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock. |
| 317 | if ((errno != EAGAIN) && (errno != EINTR)) { |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 318 | PLOG(FATAL) << "futex wait failed for " << name_; |
| 319 | } |
| 320 | } |
| Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 321 | num_contenders_--; |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 322 | } |
| Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 323 | } while (!done); |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 324 | DCHECK_EQ(state_.LoadRelaxed(), 1); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 325 | #else |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 326 | CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_)); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 327 | #endif |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 328 | DCHECK_EQ(exclusive_owner_, 0U); |
| 329 | exclusive_owner_ = SafeGetTid(self); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 330 | RegisterAsLocked(self); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 331 | } |
| 332 | recursion_count_++; |
| Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 333 | if (kDebugLocking) { |
| 334 | CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: " |
| 335 | << name_ << " " << recursion_count_; |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 336 | AssertHeld(self); |
| Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 337 | } |
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 338 | } |
| 339 | |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 340 | bool Mutex::ExclusiveTryLock(Thread* self) { |
| Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 341 | DCHECK(self == NULL || self == Thread::Current()); |
| Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 342 | if (kDebugLocking && !recursive_) { |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 343 | AssertNotHeld(self); |
| Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 344 | } |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 345 | if (!recursive_ || !IsExclusiveHeld(self)) { |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 346 | #if ART_USE_FUTEXES |
| 347 | bool done = false; |
| 348 | do { |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 349 | int32_t cur_state = state_.LoadRelaxed(); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 350 | if (cur_state == 0) { |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 351 | // Change state from 0 to 1 and impose load/store ordering appropriate for lock acquisition. |
| 352 | done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 353 | } else { |
| 354 | return false; |
| 355 | } |
| Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 356 | } while (!done); |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 357 | DCHECK_EQ(state_.LoadRelaxed(), 1); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 358 | #else |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 359 | int result = pthread_mutex_trylock(&mutex_); |
| 360 | if (result == EBUSY) { |
| 361 | return false; |
| 362 | } |
| 363 | if (result != 0) { |
| 364 | errno = result; |
| 365 | PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_; |
| 366 | } |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 367 | #endif |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 368 | DCHECK_EQ(exclusive_owner_, 0U); |
| 369 | exclusive_owner_ = SafeGetTid(self); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 370 | RegisterAsLocked(self); |
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 371 | } |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 372 | recursion_count_++; |
| Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 373 | if (kDebugLocking) { |
| 374 | CHECK(recursion_count_ == 1 || recursive_) << "Unexpected recursion count on mutex: " |
| 375 | << name_ << " " << recursion_count_; |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 376 | AssertHeld(self); |
| Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 377 | } |
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 378 | return true; |
| 379 | } |
| 380 | |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 381 | void Mutex::ExclusiveUnlock(Thread* self) { |
| Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 382 | DCHECK(self == NULL || self == Thread::Current()); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 383 | AssertHeld(self); |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 384 | DCHECK_NE(exclusive_owner_, 0U); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 385 | recursion_count_--; |
| 386 | if (!recursive_ || recursion_count_ == 0) { |
| Ian Rogers | 25fd14b | 2012-09-05 10:56:38 -0700 | [diff] [blame] | 387 | if (kDebugLocking) { |
| 388 | CHECK(recursion_count_ == 0 || recursive_) << "Unexpected recursion count on mutex: " |
| 389 | << name_ << " " << recursion_count_; |
| 390 | } |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 391 | RegisterAsUnlocked(self); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 392 | #if ART_USE_FUTEXES |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 393 | bool done = false; |
| 394 | do { |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 395 | int32_t cur_state = state_.LoadRelaxed(); |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 396 | if (LIKELY(cur_state == 1)) { |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 397 | // We're no longer the owner. |
| 398 | exclusive_owner_ = 0; |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 399 | // Change state to 0 and impose load/store ordering appropriate for lock release. |
| 400 | // Note, the relaxed loads below musn't reorder before the CompareExchange. |
| 401 | // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing |
| 402 | // a status bit into the state on contention. |
| 403 | done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */); |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 404 | if (LIKELY(done)) { // Spurious fail? |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 405 | // Wake a contender. |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 406 | if (UNLIKELY(num_contenders_.LoadRelaxed() > 0)) { |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 407 | futex(state_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0); |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 408 | } |
| 409 | } |
| 410 | } else { |
| 411 | // Logging acquires the logging lock, avoid infinite recursion in that case. |
| 412 | if (this != Locks::logging_lock_) { |
| 413 | LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_; |
| 414 | } else { |
| 415 | LogMessageData data(__FILE__, __LINE__, INTERNAL_FATAL, -1); |
| 416 | LogMessage::LogLine(data, StringPrintf("Unexpected state_ %d in unlock for %s", |
| 417 | cur_state, name_).c_str()); |
| 418 | _exit(1); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 419 | } |
| 420 | } |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 421 | } while (!done); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 422 | #else |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 423 | exclusive_owner_ = 0; |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 424 | CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_)); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 425 | #endif |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 426 | } |
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 427 | } |
| 428 | |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 429 | void Mutex::Dump(std::ostream& os) const { |
| 430 | os << (recursive_ ? "recursive " : "non-recursive ") |
| 431 | << name_ |
| 432 | << " level=" << static_cast<int>(level_) |
| 433 | << " rec=" << recursion_count_ |
| 434 | << " owner=" << GetExclusiveOwnerTid() << " "; |
| 435 | DumpContention(os); |
| Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | std::ostream& operator<<(std::ostream& os, const Mutex& mu) { |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 439 | mu.Dump(os); |
| 440 | return os; |
| Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 441 | } |
| 442 | |
| Brian Carlstrom | 02c8cc6 | 2013-07-18 15:54:44 -0700 | [diff] [blame] | 443 | ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level) |
| 444 | : BaseMutex(name, level) |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 445 | #if ART_USE_FUTEXES |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 446 | , state_(0), num_pending_readers_(0), num_pending_writers_(0) |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 447 | #endif |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 448 | { // NOLINT(whitespace/braces) |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 449 | #if !ART_USE_FUTEXES |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 450 | CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr)); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 451 | #endif |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 452 | exclusive_owner_ = 0; |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 453 | } |
| 454 | |
| 455 | ReaderWriterMutex::~ReaderWriterMutex() { |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 456 | #if ART_USE_FUTEXES |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 457 | CHECK_EQ(state_.LoadRelaxed(), 0); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 458 | CHECK_EQ(exclusive_owner_, 0U); |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 459 | CHECK_EQ(num_pending_readers_.LoadRelaxed(), 0); |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 460 | CHECK_EQ(num_pending_writers_.LoadRelaxed(), 0); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 461 | #else |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 462 | // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread |
| 463 | // may still be using locks. |
| 464 | int rc = pthread_rwlock_destroy(&rwlock_); |
| 465 | if (rc != 0) { |
| 466 | errno = rc; |
| 467 | // TODO: should we just not log at all if shutting down? this could be the logging mutex! |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 468 | MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_); |
| Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 469 | Runtime* runtime = Runtime::Current(); |
| Mathieu Chartier | 34e8293 | 2013-11-12 18:22:47 -0800 | [diff] [blame] | 470 | bool shutting_down = runtime == NULL || runtime->IsShuttingDownLocked(); |
| Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 471 | PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_; |
| Brian Carlstrom | cd74c4b | 2012-01-23 13:21:00 -0800 | [diff] [blame] | 472 | } |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 473 | #endif |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 474 | } |
| 475 | |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 476 | void ReaderWriterMutex::ExclusiveLock(Thread* self) { |
| Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 477 | DCHECK(self == NULL || self == Thread::Current()); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 478 | AssertNotExclusiveHeld(self); |
| 479 | #if ART_USE_FUTEXES |
| 480 | bool done = false; |
| 481 | do { |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 482 | int32_t cur_state = state_.LoadRelaxed(); |
| Hiroshi Yamauchi | 967a0ad | 2013-09-10 16:24:21 -0700 | [diff] [blame] | 483 | if (LIKELY(cur_state == 0)) { |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 484 | // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition. |
| 485 | done = state_.CompareExchangeWeakAcquire(0 /* cur_state*/, -1 /* new state */); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 486 | } else { |
| 487 | // Failed to acquire, hang up. |
| Hiroshi Yamauchi | b373308 | 2013-08-12 17:28:49 -0700 | [diff] [blame] | 488 | ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid()); |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 489 | ++num_pending_writers_; |
| 490 | if (futex(state_.Address(), FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) { |
| Brian Carlstrom | 0de7985 | 2013-07-25 22:29:58 -0700 | [diff] [blame] | 491 | // EAGAIN and EINTR both indicate a spurious failure, try again from the beginning. |
| 492 | // We don't use TEMP_FAILURE_RETRY so we can intentionally retry to acquire the lock. |
| 493 | if ((errno != EAGAIN) && (errno != EINTR)) { |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 494 | PLOG(FATAL) << "futex wait failed for " << name_; |
| 495 | } |
| 496 | } |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 497 | --num_pending_writers_; |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 498 | } |
| Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 499 | } while (!done); |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 500 | DCHECK_EQ(state_.LoadRelaxed(), -1); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 501 | #else |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 502 | CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_)); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 503 | #endif |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 504 | DCHECK_EQ(exclusive_owner_, 0U); |
| 505 | exclusive_owner_ = SafeGetTid(self); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 506 | RegisterAsLocked(self); |
| 507 | AssertExclusiveHeld(self); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 508 | } |
| 509 | |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 510 | void ReaderWriterMutex::ExclusiveUnlock(Thread* self) { |
| Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 511 | DCHECK(self == NULL || self == Thread::Current()); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 512 | AssertExclusiveHeld(self); |
| 513 | RegisterAsUnlocked(self); |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 514 | DCHECK_NE(exclusive_owner_, 0U); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 515 | #if ART_USE_FUTEXES |
| 516 | bool done = false; |
| 517 | do { |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 518 | int32_t cur_state = state_.LoadRelaxed(); |
| Hiroshi Yamauchi | 967a0ad | 2013-09-10 16:24:21 -0700 | [diff] [blame] | 519 | if (LIKELY(cur_state == -1)) { |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 520 | // We're no longer the owner. |
| 521 | exclusive_owner_ = 0; |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 522 | // Change state from -1 to 0 and impose load/store ordering appropriate for lock release. |
| 523 | // Note, the relaxed loads below musn't reorder before the CompareExchange. |
| 524 | // TODO: the ordering here is non-trivial as state is split across 3 fields, fix by placing |
| 525 | // a status bit into the state on contention. |
| 526 | done = state_.CompareExchangeWeakSequentiallyConsistent(-1 /* cur_state*/, 0 /* new state */); |
| 527 | if (LIKELY(done)) { // Weak CAS may fail spuriously. |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 528 | // Wake any waiters. |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 529 | if (UNLIKELY(num_pending_readers_.LoadRelaxed() > 0 || |
| 530 | num_pending_writers_.LoadRelaxed() > 0)) { |
| 531 | futex(state_.Address(), FUTEX_WAKE, -1, NULL, NULL, 0); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 532 | } |
| 533 | } |
| 534 | } else { |
| 535 | LOG(FATAL) << "Unexpected state_:" << cur_state << " for " << name_; |
| 536 | } |
| Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 537 | } while (!done); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 538 | #else |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 539 | exclusive_owner_ = 0; |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 540 | CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_)); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 541 | #endif |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 542 | } |
| 543 | |
| Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 544 | #if HAVE_TIMED_RWLOCK |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 545 | bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) { |
| Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 546 | DCHECK(self == NULL || self == Thread::Current()); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 547 | #if ART_USE_FUTEXES |
| 548 | bool done = false; |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 549 | timespec end_abs_ts; |
| Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 550 | InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &end_abs_ts); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 551 | do { |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 552 | int32_t cur_state = state_.LoadRelaxed(); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 553 | if (cur_state == 0) { |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 554 | // Change state from 0 to -1 and impose load/store ordering appropriate for lock acquisition. |
| 555 | done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, -1 /* new state */); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 556 | } else { |
| 557 | // Failed to acquire, hang up. |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 558 | timespec now_abs_ts; |
| Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 559 | InitTimeSpec(true, CLOCK_REALTIME, 0, 0, &now_abs_ts); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 560 | timespec rel_ts; |
| 561 | if (ComputeRelativeTimeSpec(&rel_ts, end_abs_ts, now_abs_ts)) { |
| 562 | return false; // Timed out. |
| 563 | } |
| Hiroshi Yamauchi | b373308 | 2013-08-12 17:28:49 -0700 | [diff] [blame] | 564 | ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid()); |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 565 | ++num_pending_writers_; |
| 566 | if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, NULL, 0) != 0) { |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 567 | if (errno == ETIMEDOUT) { |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 568 | --num_pending_writers_; |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 569 | return false; // Timed out. |
| Brian Carlstrom | 0de7985 | 2013-07-25 22:29:58 -0700 | [diff] [blame] | 570 | } else if ((errno != EAGAIN) && (errno != EINTR)) { |
| 571 | // EAGAIN and EINTR both indicate a spurious failure, |
| 572 | // recompute the relative time out from now and try again. |
| 573 | // We don't use TEMP_FAILURE_RETRY so we can recompute rel_ts; |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 574 | PLOG(FATAL) << "timed futex wait failed for " << name_; |
| 575 | } |
| 576 | } |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 577 | --num_pending_writers_; |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 578 | } |
| Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 579 | } while (!done); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 580 | #else |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 581 | timespec ts; |
| Brian Carlstrom | bcc2926 | 2012-11-02 11:36:03 -0700 | [diff] [blame] | 582 | InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 583 | int result = pthread_rwlock_timedwrlock(&rwlock_, &ts); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 584 | if (result == ETIMEDOUT) { |
| 585 | return false; |
| 586 | } |
| 587 | if (result != 0) { |
| 588 | errno = result; |
| Ian Rogers | a5acfd3 | 2012-08-15 11:50:10 -0700 | [diff] [blame] | 589 | PLOG(FATAL) << "pthread_rwlock_timedwrlock failed for " << name_; |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 590 | } |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 591 | #endif |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 592 | exclusive_owner_ = SafeGetTid(self); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 593 | RegisterAsLocked(self); |
| 594 | AssertSharedHeld(self); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 595 | return true; |
| 596 | } |
| Ian Rogers | 66aee5c | 2012-08-15 17:17:47 -0700 | [diff] [blame] | 597 | #endif |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 598 | |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 599 | bool ReaderWriterMutex::SharedTryLock(Thread* self) { |
| Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 600 | DCHECK(self == NULL || self == Thread::Current()); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 601 | #if ART_USE_FUTEXES |
| 602 | bool done = false; |
| 603 | do { |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 604 | int32_t cur_state = state_.LoadRelaxed(); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 605 | if (cur_state >= 0) { |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 606 | // Add as an extra reader and impose load/store ordering appropriate for lock acquisition. |
| 607 | done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 608 | } else { |
| 609 | // Owner holds it exclusively. |
| 610 | return false; |
| 611 | } |
| Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 612 | } while (!done); |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 613 | #else |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 614 | int result = pthread_rwlock_tryrdlock(&rwlock_); |
| 615 | if (result == EBUSY) { |
| 616 | return false; |
| 617 | } |
| 618 | if (result != 0) { |
| 619 | errno = result; |
| 620 | PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_; |
| 621 | } |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 622 | #endif |
| 623 | RegisterAsLocked(self); |
| 624 | AssertSharedHeld(self); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 625 | return true; |
| 626 | } |
| 627 | |
| Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 628 | bool ReaderWriterMutex::IsSharedHeld(const Thread* self) const { |
| Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 629 | DCHECK(self == NULL || self == Thread::Current()); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 630 | bool result; |
| 631 | if (UNLIKELY(self == NULL)) { // Handle unattached threads. |
| Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 632 | result = IsExclusiveHeld(self); // TODO: a better best effort here. |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 633 | } else { |
| 634 | result = (self->GetHeldMutex(level_) == this); |
| 635 | } |
| 636 | return result; |
| 637 | } |
| 638 | |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 639 | void ReaderWriterMutex::Dump(std::ostream& os) const { |
| 640 | os << name_ |
| 641 | << " level=" << static_cast<int>(level_) |
| 642 | << " owner=" << GetExclusiveOwnerTid() << " "; |
| 643 | DumpContention(os); |
| Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 644 | } |
| 645 | |
| 646 | std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu) { |
| Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 647 | mu.Dump(os); |
| 648 | return os; |
| Ian Rogers | 01ae580 | 2012-09-28 16:14:01 -0700 | [diff] [blame] | 649 | } |
| 650 | |
| Ian Rogers | 23055dc | 2013-04-18 16:29:16 -0700 | [diff] [blame] | 651 | ConditionVariable::ConditionVariable(const char* name, Mutex& guard) |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 652 | : name_(name), guard_(guard) { |
| 653 | #if ART_USE_FUTEXES |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 654 | DCHECK_EQ(0, sequence_.LoadRelaxed()); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 655 | num_waiters_ = 0; |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 656 | #else |
| Narayan Kamath | 51b7102 | 2014-03-04 11:57:09 +0000 | [diff] [blame] | 657 | pthread_condattr_t cond_attrs; |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 658 | CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs)); |
| Narayan Kamath | 51b7102 | 2014-03-04 11:57:09 +0000 | [diff] [blame] | 659 | #if !defined(__APPLE__) |
| 660 | // Apple doesn't have CLOCK_MONOTONIC or pthread_condattr_setclock. |
| 661 | CHECK_MUTEX_CALL(pthread_condattr_setclock(&cond_attrs, CLOCK_MONOTONIC)); |
| 662 | #endif |
| 663 | CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs)); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 664 | #endif |
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 665 | } |
| 666 | |
| 667 | ConditionVariable::~ConditionVariable() { |
| Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 668 | #if ART_USE_FUTEXES |
| 669 | if (num_waiters_!= 0) { |
| Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 670 | Runtime* runtime = Runtime::Current(); |
| Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 671 | bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current()); |
| Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 672 | LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_ |
| 673 | << " called with " << num_waiters_ << " waiters."; |
| Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 674 | } |
| 675 | #else |
| Elliott Hughes | e62934d | 2012-04-09 11:24:29 -0700 | [diff] [blame] | 676 | // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread |
| 677 | // may still be using condition variables. |
| 678 | int rc = pthread_cond_destroy(&cond_); |
| 679 | if (rc != 0) { |
| 680 | errno = rc; |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 681 | MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_); |
| Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 682 | Runtime* runtime = Runtime::Current(); |
| Mathieu Chartier | 34e8293 | 2013-11-12 18:22:47 -0800 | [diff] [blame] | 683 | bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked(); |
| Elliott Hughes | e62934d | 2012-04-09 11:24:29 -0700 | [diff] [blame] | 684 | PLOG(shutting_down ? WARNING : FATAL) << "pthread_cond_destroy failed for " << name_; |
| 685 | } |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 686 | #endif |
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 687 | } |
| 688 | |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 689 | void ConditionVariable::Broadcast(Thread* self) { |
| 690 | DCHECK(self == NULL || self == Thread::Current()); |
| 691 | // TODO: enable below, there's a race in thread creation that causes false failures currently. |
| 692 | // guard_.AssertExclusiveHeld(self); |
| Mathieu Chartier | e46cd75 | 2012-10-31 16:56:18 -0700 | [diff] [blame] | 693 | DCHECK_EQ(guard_.GetExclusiveOwnerTid(), SafeGetTid(self)); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 694 | #if ART_USE_FUTEXES |
| Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 695 | if (num_waiters_ > 0) { |
| Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 696 | sequence_++; // Indicate the broadcast occurred. |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 697 | bool done = false; |
| 698 | do { |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 699 | int32_t cur_sequence = sequence_.LoadRelaxed(); |
| Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 700 | // Requeue waiters onto mutex. The waiter holds the contender count on the mutex high ensuring |
| 701 | // mutex unlocks will awaken the requeued waiter thread. |
| Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 702 | done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0, |
| Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 703 | reinterpret_cast<const timespec*>(std::numeric_limits<int32_t>::max()), |
| Ian Rogers | c719069 | 2014-07-08 23:50:26 -0700 | [diff] [blame] | 704 | guard_.state_.Address(), cur_sequence) != -1; |
| Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 705 | if (!done) { |
| 706 | if (errno != EAGAIN) { |
| 707 | PLOG(FATAL) << "futex cmp requeue failed for " << name_; |
| 708 | } |
| Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 709 | } |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 710 | } while (!done); |
| 711 | } |
| 712 | #else |
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 713 | CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_)); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 714 | #endif |
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 715 | } |
| 716 | |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 717 | void ConditionVariable::Signal(Thread* self) { |
| 718 | DCHECK(self == NULL || self == Thread::Current()); |
| 719 | guard_.AssertExclusiveHeld(self); |
| 720 | #if ART_USE_FUTEXES |
| Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 721 | if (num_waiters_ > 0) { |
| Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 722 | sequence_++; // Indicate a signal occurred. |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 723 | // Futex wake 1 waiter who will then come and in contend on mutex. It'd be nice to requeue them |
| 724 | // to avoid this, however, requeueing can only move all waiters. |
| Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 725 | int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, NULL, NULL, 0); |
| Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 726 | // Check something was woken or else we changed sequence_ before they had chance to wait. |
| Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 727 | CHECK((num_woken == 0) || (num_woken == 1)); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 728 | } |
| 729 | #else |
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 730 | CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_)); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 731 | #endif |
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 732 | } |
| 733 | |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 734 | void ConditionVariable::Wait(Thread* self) { |
| Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 735 | guard_.CheckSafeToWait(self); |
| 736 | WaitHoldingLocks(self); |
| 737 | } |
| 738 | |
| 739 | void ConditionVariable::WaitHoldingLocks(Thread* self) { |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 740 | DCHECK(self == NULL || self == Thread::Current()); |
| 741 | guard_.AssertExclusiveHeld(self); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 742 | unsigned int old_recursion_count = guard_.recursion_count_; |
| 743 | #if ART_USE_FUTEXES |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 744 | num_waiters_++; |
| Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 745 | // Ensure the Mutex is contended so that requeued threads are awoken. |
| Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 746 | guard_.num_contenders_++; |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 747 | guard_.recursion_count_ = 1; |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 748 | int32_t cur_sequence = sequence_.LoadRelaxed(); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 749 | guard_.ExclusiveUnlock(self); |
| Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 750 | if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, NULL, NULL, 0) != 0) { |
| Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 751 | // Futex failed, check it is an expected error. |
| 752 | // EAGAIN == EWOULDBLK, so we let the caller try again. |
| 753 | // EINTR implies a signal was sent to this thread. |
| 754 | if ((errno != EINTR) && (errno != EAGAIN)) { |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 755 | PLOG(FATAL) << "futex wait failed for " << name_; |
| 756 | } |
| 757 | } |
| 758 | guard_.ExclusiveLock(self); |
| Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 759 | CHECK_GE(num_waiters_, 0); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 760 | num_waiters_--; |
| Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 761 | // We awoke and so no longer require awakes from the guard_'s unlock. |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 762 | CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0); |
| Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 763 | guard_.num_contenders_--; |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 764 | #else |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 765 | uint64_t old_owner = guard_.exclusive_owner_; |
| 766 | guard_.exclusive_owner_ = 0; |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 767 | guard_.recursion_count_ = 0; |
| 768 | CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_)); |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 769 | guard_.exclusive_owner_ = old_owner; |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 770 | #endif |
| 771 | guard_.recursion_count_ = old_recursion_count; |
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 772 | } |
| 773 | |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 774 | void ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) { |
| 775 | DCHECK(self == NULL || self == Thread::Current()); |
| 776 | guard_.AssertExclusiveHeld(self); |
| Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 777 | guard_.CheckSafeToWait(self); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 778 | unsigned int old_recursion_count = guard_.recursion_count_; |
| 779 | #if ART_USE_FUTEXES |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 780 | timespec rel_ts; |
| Ian Rogers | 5bd97c4 | 2012-11-27 02:38:26 -0800 | [diff] [blame] | 781 | InitTimeSpec(false, CLOCK_REALTIME, ms, ns, &rel_ts); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 782 | num_waiters_++; |
| Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 783 | // Ensure the Mutex is contended so that requeued threads are awoken. |
| Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 784 | guard_.num_contenders_++; |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 785 | guard_.recursion_count_ = 1; |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 786 | int32_t cur_sequence = sequence_.LoadRelaxed(); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 787 | guard_.ExclusiveUnlock(self); |
| Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 788 | if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, &rel_ts, NULL, 0) != 0) { |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 789 | if (errno == ETIMEDOUT) { |
| Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 790 | // Timed out we're done. |
| Brian Carlstrom | 0de7985 | 2013-07-25 22:29:58 -0700 | [diff] [blame] | 791 | } else if ((errno == EAGAIN) || (errno == EINTR)) { |
| Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 792 | // A signal or ConditionVariable::Signal/Broadcast has come in. |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 793 | } else { |
| 794 | PLOG(FATAL) << "timed futex wait failed for " << name_; |
| 795 | } |
| 796 | } |
| 797 | guard_.ExclusiveLock(self); |
| Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 798 | CHECK_GE(num_waiters_, 0); |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 799 | num_waiters_--; |
| Ian Rogers | d45f201 | 2012-11-28 11:46:23 -0800 | [diff] [blame] | 800 | // We awoke and so no longer require awakes from the guard_'s unlock. |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 801 | CHECK_GE(guard_.num_contenders_.LoadRelaxed(), 0); |
| Ian Rogers | b122a4b | 2013-11-19 18:00:50 -0800 | [diff] [blame] | 802 | guard_.num_contenders_--; |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 803 | #else |
| Narayan Kamath | 51b7102 | 2014-03-04 11:57:09 +0000 | [diff] [blame] | 804 | #if !defined(__APPLE__) |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 805 | int clock = CLOCK_MONOTONIC; |
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 806 | #else |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 807 | int clock = CLOCK_REALTIME; |
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 808 | #endif |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 809 | uint64_t old_owner = guard_.exclusive_owner_; |
| 810 | guard_.exclusive_owner_ = 0; |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 811 | guard_.recursion_count_ = 0; |
| 812 | timespec ts; |
| Brian Carlstrom | bcc2926 | 2012-11-02 11:36:03 -0700 | [diff] [blame] | 813 | InitTimeSpec(true, clock, ms, ns, &ts); |
| Narayan Kamath | 51b7102 | 2014-03-04 11:57:09 +0000 | [diff] [blame] | 814 | int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts)); |
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 815 | if (rc != 0 && rc != ETIMEDOUT) { |
| 816 | errno = rc; |
| 817 | PLOG(FATAL) << "TimedWait failed for " << name_; |
| 818 | } |
| Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 819 | guard_.exclusive_owner_ = old_owner; |
| Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 820 | #endif |
| 821 | guard_.recursion_count_ = old_recursion_count; |
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 822 | } |
| 823 | |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 824 | void Locks::Init() { |
| 825 | if (logging_lock_ != nullptr) { |
| 826 | // Already initialized. |
| Nicolas Geoffray | 7f0a6d6 | 2014-05-26 14:01:46 +0100 | [diff] [blame] | 827 | if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) { |
| Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 828 | DCHECK(modify_ldt_lock_ != nullptr); |
| 829 | } else { |
| 830 | DCHECK(modify_ldt_lock_ == nullptr); |
| 831 | } |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 832 | DCHECK(abort_lock_ != nullptr); |
| Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 833 | DCHECK(allocated_monitor_ids_lock_ != nullptr); |
| Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 834 | DCHECK(allocated_thread_ids_lock_ != nullptr); |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 835 | DCHECK(breakpoint_lock_ != nullptr); |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 836 | DCHECK(classlinker_classes_lock_ != nullptr); |
| 837 | DCHECK(heap_bitmap_lock_ != nullptr); |
| Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame^] | 838 | DCHECK(jni_libraries_lock_ != nullptr); |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 839 | DCHECK(logging_lock_ != nullptr); |
| 840 | DCHECK(mutator_lock_ != nullptr); |
| 841 | DCHECK(thread_list_lock_ != nullptr); |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 842 | DCHECK(thread_list_suspend_thread_lock_ != nullptr); |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 843 | DCHECK(thread_suspend_count_lock_ != nullptr); |
| 844 | DCHECK(trace_lock_ != nullptr); |
| 845 | DCHECK(profiler_lock_ != nullptr); |
| 846 | DCHECK(unexpected_signal_lock_ != nullptr); |
| 847 | DCHECK(intern_table_lock_ != nullptr); |
| 848 | } else { |
| Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 849 | // Create global locks in level order from highest lock level to lowest. |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 850 | LockLevel current_lock_level = kThreadListSuspendThreadLock; |
| 851 | DCHECK(thread_list_suspend_thread_lock_ == nullptr); |
| 852 | thread_list_suspend_thread_lock_ = |
| 853 | new Mutex("thread list suspend thread by .. lock", current_lock_level); |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 854 | |
| Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 855 | #define UPDATE_CURRENT_LOCK_LEVEL(new_level) \ |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 856 | DCHECK_LT(new_level, current_lock_level); \ |
| 857 | current_lock_level = new_level; |
| 858 | |
| 859 | UPDATE_CURRENT_LOCK_LEVEL(kMutatorLock); |
| 860 | DCHECK(mutator_lock_ == nullptr); |
| 861 | mutator_lock_ = new ReaderWriterMutex("mutator lock", current_lock_level); |
| Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 862 | |
| 863 | UPDATE_CURRENT_LOCK_LEVEL(kHeapBitmapLock); |
| 864 | DCHECK(heap_bitmap_lock_ == nullptr); |
| 865 | heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", current_lock_level); |
| 866 | |
| 867 | UPDATE_CURRENT_LOCK_LEVEL(kRuntimeShutdownLock); |
| 868 | DCHECK(runtime_shutdown_lock_ == nullptr); |
| 869 | runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", current_lock_level); |
| 870 | |
| 871 | UPDATE_CURRENT_LOCK_LEVEL(kProfilerLock); |
| 872 | DCHECK(profiler_lock_ == nullptr); |
| 873 | profiler_lock_ = new Mutex("profiler lock", current_lock_level); |
| 874 | |
| 875 | UPDATE_CURRENT_LOCK_LEVEL(kTraceLock); |
| 876 | DCHECK(trace_lock_ == nullptr); |
| 877 | trace_lock_ = new Mutex("trace lock", current_lock_level); |
| 878 | |
| 879 | UPDATE_CURRENT_LOCK_LEVEL(kThreadListLock); |
| 880 | DCHECK(thread_list_lock_ == nullptr); |
| 881 | thread_list_lock_ = new Mutex("thread list lock", current_lock_level); |
| 882 | |
| Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame^] | 883 | UPDATE_CURRENT_LOCK_LEVEL(kJniLoadLibraryLock); |
| 884 | DCHECK(jni_libraries_lock_ == nullptr); |
| 885 | jni_libraries_lock_ = new Mutex("JNI shared libraries map lock", current_lock_level); |
| 886 | |
| Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 887 | UPDATE_CURRENT_LOCK_LEVEL(kBreakpointLock); |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 888 | DCHECK(breakpoint_lock_ == nullptr); |
| Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 889 | breakpoint_lock_ = new Mutex("breakpoint lock", current_lock_level); |
| 890 | |
| 891 | UPDATE_CURRENT_LOCK_LEVEL(kClassLinkerClassesLock); |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 892 | DCHECK(classlinker_classes_lock_ == nullptr); |
| 893 | classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock", |
| Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 894 | current_lock_level); |
| 895 | |
| Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 896 | UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock); |
| 897 | DCHECK(allocated_monitor_ids_lock_ == nullptr); |
| 898 | allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level); |
| 899 | |
| Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 900 | UPDATE_CURRENT_LOCK_LEVEL(kAllocatedThreadIdsLock); |
| 901 | DCHECK(allocated_thread_ids_lock_ == nullptr); |
| 902 | allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level); |
| 903 | |
| Nicolas Geoffray | 7f0a6d6 | 2014-05-26 14:01:46 +0100 | [diff] [blame] | 904 | if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) { |
| Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 905 | UPDATE_CURRENT_LOCK_LEVEL(kModifyLdtLock); |
| 906 | DCHECK(modify_ldt_lock_ == nullptr); |
| 907 | modify_ldt_lock_ = new Mutex("modify_ldt lock", current_lock_level); |
| 908 | } |
| 909 | |
| 910 | UPDATE_CURRENT_LOCK_LEVEL(kInternTableLock); |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 911 | DCHECK(intern_table_lock_ == nullptr); |
| Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 912 | intern_table_lock_ = new Mutex("InternTable lock", current_lock_level); |
| 913 | |
| 914 | |
| 915 | UPDATE_CURRENT_LOCK_LEVEL(kAbortLock); |
| 916 | DCHECK(abort_lock_ == nullptr); |
| 917 | abort_lock_ = new Mutex("abort lock", current_lock_level, true); |
| 918 | |
| 919 | UPDATE_CURRENT_LOCK_LEVEL(kThreadSuspendCountLock); |
| 920 | DCHECK(thread_suspend_count_lock_ == nullptr); |
| 921 | thread_suspend_count_lock_ = new Mutex("thread suspend count lock", current_lock_level); |
| 922 | |
| 923 | UPDATE_CURRENT_LOCK_LEVEL(kUnexpectedSignalLock); |
| 924 | DCHECK(unexpected_signal_lock_ == nullptr); |
| 925 | unexpected_signal_lock_ = new Mutex("unexpected signal lock", current_lock_level, true); |
| 926 | |
| Hiroshi Yamauchi | 3eed93d | 2014-06-04 11:43:59 -0700 | [diff] [blame] | 927 | UPDATE_CURRENT_LOCK_LEVEL(kMemMapsLock); |
| 928 | DCHECK(mem_maps_lock_ == nullptr); |
| 929 | mem_maps_lock_ = new Mutex("mem maps lock", current_lock_level); |
| 930 | |
| Chao-ying Fu | 9e36931 | 2014-05-21 11:20:52 -0700 | [diff] [blame] | 931 | UPDATE_CURRENT_LOCK_LEVEL(kLoggingLock); |
| 932 | DCHECK(logging_lock_ == nullptr); |
| 933 | logging_lock_ = new Mutex("logging lock", current_lock_level, true); |
| 934 | |
| 935 | #undef UPDATE_CURRENT_LOCK_LEVEL |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 936 | } |
| 937 | } |
| 938 | |
| 939 | |
| Elliott Hughes | e62934d | 2012-04-09 11:24:29 -0700 | [diff] [blame] | 940 | } // namespace art |