Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 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 "runtime_callbacks.h" |
| 18 | |
| 19 | #include <algorithm> |
| 20 | |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 21 | #include "art_method.h" |
Andreas Gampe | a5814f9 | 2017-01-18 21:43:16 -0800 | [diff] [blame] | 22 | #include "base/macros.h" |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 23 | #include "base/mutex-inl.h" |
Andreas Gampe | 0f01b58 | 2017-01-18 15:22:37 -0800 | [diff] [blame] | 24 | #include "class_linker.h" |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 25 | #include "monitor.h" |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 26 | #include "thread-current-inl.h" |
Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 27 | |
| 28 | namespace art { |
| 29 | |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 30 | RuntimeCallbacks::RuntimeCallbacks() |
| 31 | : callback_lock_(new ReaderWriterMutex("Runtime callbacks lock", |
| 32 | LockLevel::kGenericBottomLock)) {} |
| 33 | |
| 34 | // We don't want to be holding any locks when the actual event is called so we use this to define a |
| 35 | // helper that gets a copy of the current event list and returns it. |
| 36 | #define COPY(T) \ |
| 37 | ([this]() -> decltype(this->T) { \ |
| 38 | ReaderMutexLock mu(Thread::Current(), *this->callback_lock_); \ |
| 39 | return std::vector<decltype(this->T)::value_type>(this->T); \ |
| 40 | })() |
| 41 | |
Andreas Gampe | a5814f9 | 2017-01-18 21:43:16 -0800 | [diff] [blame] | 42 | template <typename T> |
| 43 | ALWAYS_INLINE |
| 44 | static inline void Remove(T* cb, std::vector<T*>* data) { |
| 45 | auto it = std::find(data->begin(), data->end(), cb); |
| 46 | if (it != data->end()) { |
| 47 | data->erase(it); |
Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 48 | } |
| 49 | } |
| 50 | |
Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 51 | void RuntimeCallbacks::AddDdmCallback(DdmCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 52 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 53 | ddm_callbacks_.push_back(cb); |
| 54 | } |
| 55 | |
| 56 | void RuntimeCallbacks::RemoveDdmCallback(DdmCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 57 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 58 | Remove(cb, &ddm_callbacks_); |
| 59 | } |
| 60 | |
| 61 | void RuntimeCallbacks::DdmPublishChunk(uint32_t type, const ArrayRef<const uint8_t>& data) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 62 | for (DdmCallback* cb : COPY(ddm_callbacks_)) { |
Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 63 | cb->DdmPublishChunk(type, data); |
| 64 | } |
| 65 | } |
| 66 | |
Alex Light | 4032071 | 2017-12-14 11:52:04 -0800 | [diff] [blame] | 67 | void RuntimeCallbacks::AddDebuggerControlCallback(DebuggerControlCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 68 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Alex Light | 4032071 | 2017-12-14 11:52:04 -0800 | [diff] [blame] | 69 | debugger_control_callbacks_.push_back(cb); |
| 70 | } |
| 71 | |
| 72 | void RuntimeCallbacks::RemoveDebuggerControlCallback(DebuggerControlCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 73 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Alex Light | 4032071 | 2017-12-14 11:52:04 -0800 | [diff] [blame] | 74 | Remove(cb, &debugger_control_callbacks_); |
| 75 | } |
| 76 | |
| 77 | bool RuntimeCallbacks::IsDebuggerConfigured() { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 78 | for (DebuggerControlCallback* cb : COPY(debugger_control_callbacks_)) { |
Alex Light | 4032071 | 2017-12-14 11:52:04 -0800 | [diff] [blame] | 79 | if (cb->IsDebuggerConfigured()) { |
| 80 | return true; |
| 81 | } |
| 82 | } |
| 83 | return false; |
| 84 | } |
| 85 | |
| 86 | void RuntimeCallbacks::StartDebugger() { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 87 | for (DebuggerControlCallback* cb : COPY(debugger_control_callbacks_)) { |
Alex Light | 4032071 | 2017-12-14 11:52:04 -0800 | [diff] [blame] | 88 | cb->StartDebugger(); |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | void RuntimeCallbacks::StopDebugger() { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 93 | for (DebuggerControlCallback* cb : COPY(debugger_control_callbacks_)) { |
Alex Light | 4032071 | 2017-12-14 11:52:04 -0800 | [diff] [blame] | 94 | cb->StopDebugger(); |
| 95 | } |
| 96 | } |
| 97 | |
Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 98 | void RuntimeCallbacks::AddMethodInspectionCallback(MethodInspectionCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 99 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 100 | method_inspection_callbacks_.push_back(cb); |
| 101 | } |
| 102 | |
| 103 | void RuntimeCallbacks::RemoveMethodInspectionCallback(MethodInspectionCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 104 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 105 | Remove(cb, &method_inspection_callbacks_); |
| 106 | } |
| 107 | |
Alex Light | 0fa1786 | 2017-10-24 13:43:05 -0700 | [diff] [blame] | 108 | bool RuntimeCallbacks::IsMethodSafeToJit(ArtMethod* m) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 109 | for (MethodInspectionCallback* cb : COPY(method_inspection_callbacks_)) { |
Alex Light | 0fa1786 | 2017-10-24 13:43:05 -0700 | [diff] [blame] | 110 | if (!cb->IsMethodSafeToJit(m)) { |
| 111 | DCHECK(cb->IsMethodBeingInspected(m)) |
| 112 | << "Contract requires that !IsMethodSafeToJit(m) -> IsMethodBeingInspected(m)"; |
| 113 | return false; |
| 114 | } |
| 115 | } |
| 116 | return true; |
| 117 | } |
| 118 | |
Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 119 | bool RuntimeCallbacks::IsMethodBeingInspected(ArtMethod* m) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 120 | for (MethodInspectionCallback* cb : COPY(method_inspection_callbacks_)) { |
Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 121 | if (cb->IsMethodBeingInspected(m)) { |
| 122 | return true; |
| 123 | } |
| 124 | } |
| 125 | return false; |
| 126 | } |
| 127 | |
Alex Light | f285863 | 2018-04-02 11:28:50 -0700 | [diff] [blame] | 128 | bool RuntimeCallbacks::MethodNeedsDebugVersion(ArtMethod* m) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 129 | for (MethodInspectionCallback* cb : COPY(method_inspection_callbacks_)) { |
Alex Light | f285863 | 2018-04-02 11:28:50 -0700 | [diff] [blame] | 130 | if (cb->MethodNeedsDebugVersion(m)) { |
| 131 | return true; |
| 132 | } |
| 133 | } |
| 134 | return false; |
| 135 | } |
| 136 | |
Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 137 | void RuntimeCallbacks::AddThreadLifecycleCallback(ThreadLifecycleCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 138 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 139 | thread_callbacks_.push_back(cb); |
| 140 | } |
| 141 | |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 142 | void RuntimeCallbacks::MonitorContendedLocking(Monitor* m) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 143 | for (MonitorCallback* cb : COPY(monitor_callbacks_)) { |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 144 | cb->MonitorContendedLocking(m); |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | void RuntimeCallbacks::MonitorContendedLocked(Monitor* m) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 149 | for (MonitorCallback* cb : COPY(monitor_callbacks_)) { |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 150 | cb->MonitorContendedLocked(m); |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | void RuntimeCallbacks::ObjectWaitStart(Handle<mirror::Object> m, int64_t timeout) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 155 | for (MonitorCallback* cb : COPY(monitor_callbacks_)) { |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 156 | cb->ObjectWaitStart(m, timeout); |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | void RuntimeCallbacks::MonitorWaitFinished(Monitor* m, bool timeout) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 161 | for (MonitorCallback* cb : COPY(monitor_callbacks_)) { |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 162 | cb->MonitorWaitFinished(m, timeout); |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | void RuntimeCallbacks::AddMonitorCallback(MonitorCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 167 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 168 | monitor_callbacks_.push_back(cb); |
| 169 | } |
| 170 | |
| 171 | void RuntimeCallbacks::RemoveMonitorCallback(MonitorCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 172 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 173 | Remove(cb, &monitor_callbacks_); |
| 174 | } |
| 175 | |
Charles Munger | 5cc0e75 | 2018-11-09 12:30:46 -0800 | [diff] [blame] | 176 | void RuntimeCallbacks::ThreadParkStart(bool is_absolute, int64_t timeout) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 177 | for (ParkCallback * cb : COPY(park_callbacks_)) { |
Charles Munger | 5cc0e75 | 2018-11-09 12:30:46 -0800 | [diff] [blame] | 178 | cb->ThreadParkStart(is_absolute, timeout); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | void RuntimeCallbacks::ThreadParkFinished(bool timeout) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 183 | for (ParkCallback * cb : COPY(park_callbacks_)) { |
Charles Munger | 5cc0e75 | 2018-11-09 12:30:46 -0800 | [diff] [blame] | 184 | cb->ThreadParkFinished(timeout); |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | void RuntimeCallbacks::AddParkCallback(ParkCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 189 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Charles Munger | 5cc0e75 | 2018-11-09 12:30:46 -0800 | [diff] [blame] | 190 | park_callbacks_.push_back(cb); |
| 191 | } |
| 192 | |
| 193 | void RuntimeCallbacks::RemoveParkCallback(ParkCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 194 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Charles Munger | 5cc0e75 | 2018-11-09 12:30:46 -0800 | [diff] [blame] | 195 | Remove(cb, &park_callbacks_); |
| 196 | } |
| 197 | |
Andreas Gampe | a5814f9 | 2017-01-18 21:43:16 -0800 | [diff] [blame] | 198 | void RuntimeCallbacks::RemoveThreadLifecycleCallback(ThreadLifecycleCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 199 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Andreas Gampe | a5814f9 | 2017-01-18 21:43:16 -0800 | [diff] [blame] | 200 | Remove(cb, &thread_callbacks_); |
| 201 | } |
| 202 | |
Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 203 | void RuntimeCallbacks::ThreadStart(Thread* self) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 204 | for (ThreadLifecycleCallback* cb : COPY(thread_callbacks_)) { |
Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 205 | cb->ThreadStart(self); |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | void RuntimeCallbacks::ThreadDeath(Thread* self) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 210 | for (ThreadLifecycleCallback* cb : COPY(thread_callbacks_)) { |
Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 211 | cb->ThreadDeath(self); |
| 212 | } |
| 213 | } |
| 214 | |
Andreas Gampe | 0f01b58 | 2017-01-18 15:22:37 -0800 | [diff] [blame] | 215 | void RuntimeCallbacks::AddClassLoadCallback(ClassLoadCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 216 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Andreas Gampe | 0f01b58 | 2017-01-18 15:22:37 -0800 | [diff] [blame] | 217 | class_callbacks_.push_back(cb); |
| 218 | } |
| 219 | |
| 220 | void RuntimeCallbacks::RemoveClassLoadCallback(ClassLoadCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 221 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Andreas Gampe | a5814f9 | 2017-01-18 21:43:16 -0800 | [diff] [blame] | 222 | Remove(cb, &class_callbacks_); |
Andreas Gampe | 0f01b58 | 2017-01-18 15:22:37 -0800 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | void RuntimeCallbacks::ClassLoad(Handle<mirror::Class> klass) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 226 | for (ClassLoadCallback* cb : COPY(class_callbacks_)) { |
Andreas Gampe | 0f01b58 | 2017-01-18 15:22:37 -0800 | [diff] [blame] | 227 | cb->ClassLoad(klass); |
| 228 | } |
| 229 | } |
| 230 | |
Alex Light | 270db1c | 2019-12-03 12:20:01 +0000 | [diff] [blame] | 231 | void RuntimeCallbacks::EndDefineClass() { |
| 232 | for (ClassLoadCallback* cb : COPY(class_callbacks_)) { |
| 233 | cb->EndDefineClass(); |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | void RuntimeCallbacks::BeginDefineClass() { |
| 238 | for (ClassLoadCallback* cb : COPY(class_callbacks_)) { |
| 239 | cb->BeginDefineClass(); |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | |
Alex Light | b0f1192 | 2017-01-23 14:25:17 -0800 | [diff] [blame] | 244 | void RuntimeCallbacks::ClassPreDefine(const char* descriptor, |
| 245 | Handle<mirror::Class> temp_class, |
| 246 | Handle<mirror::ClassLoader> loader, |
| 247 | const DexFile& initial_dex_file, |
Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 248 | const dex::ClassDef& initial_class_def, |
Alex Light | b0f1192 | 2017-01-23 14:25:17 -0800 | [diff] [blame] | 249 | /*out*/DexFile const** final_dex_file, |
Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 250 | /*out*/dex::ClassDef const** final_class_def) { |
Alex Light | b0f1192 | 2017-01-23 14:25:17 -0800 | [diff] [blame] | 251 | DexFile const* current_dex_file = &initial_dex_file; |
Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 252 | dex::ClassDef const* current_class_def = &initial_class_def; |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 253 | for (ClassLoadCallback* cb : COPY(class_callbacks_)) { |
Alex Light | b0f1192 | 2017-01-23 14:25:17 -0800 | [diff] [blame] | 254 | DexFile const* new_dex_file = nullptr; |
Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 255 | dex::ClassDef const* new_class_def = nullptr; |
Alex Light | b0f1192 | 2017-01-23 14:25:17 -0800 | [diff] [blame] | 256 | cb->ClassPreDefine(descriptor, |
| 257 | temp_class, |
| 258 | loader, |
| 259 | *current_dex_file, |
| 260 | *current_class_def, |
| 261 | &new_dex_file, |
| 262 | &new_class_def); |
| 263 | if ((new_dex_file != nullptr && new_dex_file != current_dex_file) || |
| 264 | (new_class_def != nullptr && new_class_def != current_class_def)) { |
| 265 | DCHECK(new_dex_file != nullptr && new_class_def != nullptr); |
| 266 | current_dex_file = new_dex_file; |
| 267 | current_class_def = new_class_def; |
| 268 | } |
| 269 | } |
| 270 | *final_dex_file = current_dex_file; |
| 271 | *final_class_def = current_class_def; |
| 272 | } |
| 273 | |
Andreas Gampe | 0f01b58 | 2017-01-18 15:22:37 -0800 | [diff] [blame] | 274 | void RuntimeCallbacks::ClassPrepare(Handle<mirror::Class> temp_klass, Handle<mirror::Class> klass) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 275 | for (ClassLoadCallback* cb : COPY(class_callbacks_)) { |
Andreas Gampe | 0f01b58 | 2017-01-18 15:22:37 -0800 | [diff] [blame] | 276 | cb->ClassPrepare(temp_klass, klass); |
| 277 | } |
| 278 | } |
| 279 | |
Andreas Gampe | a5814f9 | 2017-01-18 21:43:16 -0800 | [diff] [blame] | 280 | void RuntimeCallbacks::AddRuntimeSigQuitCallback(RuntimeSigQuitCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 281 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Andreas Gampe | a5814f9 | 2017-01-18 21:43:16 -0800 | [diff] [blame] | 282 | sigquit_callbacks_.push_back(cb); |
| 283 | } |
| 284 | |
| 285 | void RuntimeCallbacks::RemoveRuntimeSigQuitCallback(RuntimeSigQuitCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 286 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Andreas Gampe | a5814f9 | 2017-01-18 21:43:16 -0800 | [diff] [blame] | 287 | Remove(cb, &sigquit_callbacks_); |
| 288 | } |
| 289 | |
| 290 | void RuntimeCallbacks::SigQuit() { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 291 | for (RuntimeSigQuitCallback* cb : COPY(sigquit_callbacks_)) { |
Andreas Gampe | a5814f9 | 2017-01-18 21:43:16 -0800 | [diff] [blame] | 292 | cb->SigQuit(); |
| 293 | } |
| 294 | } |
| 295 | |
Andreas Gampe | 4886411 | 2017-01-19 17:23:17 -0800 | [diff] [blame] | 296 | void RuntimeCallbacks::AddRuntimePhaseCallback(RuntimePhaseCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 297 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Andreas Gampe | 4886411 | 2017-01-19 17:23:17 -0800 | [diff] [blame] | 298 | phase_callbacks_.push_back(cb); |
| 299 | } |
| 300 | |
| 301 | void RuntimeCallbacks::RemoveRuntimePhaseCallback(RuntimePhaseCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 302 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Andreas Gampe | 4886411 | 2017-01-19 17:23:17 -0800 | [diff] [blame] | 303 | Remove(cb, &phase_callbacks_); |
| 304 | } |
| 305 | |
| 306 | void RuntimeCallbacks::NextRuntimePhase(RuntimePhaseCallback::RuntimePhase phase) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 307 | for (RuntimePhaseCallback* cb : COPY(phase_callbacks_)) { |
Andreas Gampe | 4886411 | 2017-01-19 17:23:17 -0800 | [diff] [blame] | 308 | cb->NextRuntimePhase(phase); |
| 309 | } |
| 310 | } |
| 311 | |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 312 | void RuntimeCallbacks::AddMethodCallback(MethodCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 313 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 314 | method_callbacks_.push_back(cb); |
| 315 | } |
| 316 | |
| 317 | void RuntimeCallbacks::RemoveMethodCallback(MethodCallback* cb) { |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 318 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 319 | Remove(cb, &method_callbacks_); |
| 320 | } |
| 321 | |
| 322 | void RuntimeCallbacks::RegisterNativeMethod(ArtMethod* method, |
| 323 | const void* in_cur_method, |
| 324 | /*out*/void** new_method) { |
| 325 | void* cur_method = const_cast<void*>(in_cur_method); |
| 326 | *new_method = cur_method; |
Alex Light | 51d5a30 | 2019-04-09 11:22:17 -0700 | [diff] [blame] | 327 | for (MethodCallback* cb : COPY(method_callbacks_)) { |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 328 | cb->RegisterNativeMethod(method, cur_method, new_method); |
| 329 | if (*new_method != nullptr) { |
| 330 | cur_method = *new_method; |
| 331 | } |
| 332 | } |
| 333 | } |
| 334 | |
Alex Light | c18eba3 | 2019-09-24 14:36:27 -0700 | [diff] [blame] | 335 | void RuntimeCallbacks::AddReflectiveValueVisitCallback(ReflectiveValueVisitCallback *cb) { |
| 336 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
| 337 | reflective_value_visit_callbacks_.push_back(cb); |
| 338 | } |
| 339 | |
| 340 | void RuntimeCallbacks::RemoveReflectiveValueVisitCallback(ReflectiveValueVisitCallback *cb) { |
| 341 | WriterMutexLock mu(Thread::Current(), *callback_lock_); |
| 342 | Remove(cb, &reflective_value_visit_callbacks_); |
| 343 | } |
| 344 | |
| 345 | void RuntimeCallbacks::VisitReflectiveTargets(ReflectiveValueVisitor *visitor) { |
| 346 | for (ReflectiveValueVisitCallback* cb : COPY(reflective_value_visit_callbacks_)) { |
| 347 | cb->VisitReflectiveTargets(visitor); |
| 348 | } |
| 349 | } |
| 350 | |
Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 351 | } // namespace art |