| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [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 "instrumentation.h" |
| 18 | |
| Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 19 | #include <sstream> |
| 20 | |
| Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 21 | #include "arch/context.h" |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 22 | #include "art_field-inl.h" |
| Andreas Gampe | 8cf9cb3 | 2017-07-19 09:28:38 -0700 | [diff] [blame] | 23 | #include "art_method-inl.h" |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 24 | #include "atomic.h" |
| Andreas Gampe | 8228cdf | 2017-05-30 15:03:54 -0700 | [diff] [blame] | 25 | #include "base/callee_save_type.h" |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 26 | #include "class_linker.h" |
| 27 | #include "debugger.h" |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 28 | #include "dex_file-inl.h" |
| Mingyao Yang | 2ee1790 | 2017-08-30 11:37:08 -0700 | [diff] [blame^] | 29 | #include "dex_instruction-inl.h" |
| Mathieu Chartier | d889178 | 2014-03-02 13:28:37 -0800 | [diff] [blame] | 30 | #include "entrypoints/quick/quick_alloc_entrypoints.h" |
| Andreas Gampe | 8cf9cb3 | 2017-07-19 09:28:38 -0700 | [diff] [blame] | 31 | #include "entrypoints/quick/quick_entrypoints.h" |
| Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 32 | #include "entrypoints/runtime_asm_entrypoints.h" |
| Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 33 | #include "gc_root-inl.h" |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 34 | #include "interpreter/interpreter.h" |
| Mingyao Yang | 2ee1790 | 2017-08-30 11:37:08 -0700 | [diff] [blame^] | 35 | #include "interpreter/interpreter_common.h" |
| Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 36 | #include "jit/jit.h" |
| 37 | #include "jit/jit_code_cache.h" |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 38 | #include "jvalue-inl.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 39 | #include "mirror/class-inl.h" |
| 40 | #include "mirror/dex_cache.h" |
| Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 41 | #include "mirror/object-inl.h" |
| Andreas Gampe | 8cf9cb3 | 2017-07-19 09:28:38 -0700 | [diff] [blame] | 42 | #include "mirror/object_array-inl.h" |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 43 | #include "nth_caller_visitor.h" |
| Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 44 | #include "oat_quick_method_header.h" |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 45 | #include "thread.h" |
| 46 | #include "thread_list.h" |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 47 | |
| 48 | namespace art { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 49 | namespace instrumentation { |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 50 | |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 51 | constexpr bool kVerboseInstrumentation = false; |
| Sebastien Hertz | 5bfd5c9 | 2013-11-15 11:36:07 +0100 | [diff] [blame] | 52 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 53 | void InstrumentationListener::MethodExited(Thread* thread, |
| 54 | Handle<mirror::Object> this_object, |
| 55 | ArtMethod* method, |
| 56 | uint32_t dex_pc, |
| 57 | Handle<mirror::Object> return_value) { |
| 58 | DCHECK_EQ(method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetReturnTypePrimitive(), |
| 59 | Primitive::kPrimNot); |
| 60 | JValue v; |
| 61 | v.SetL(return_value.Get()); |
| 62 | MethodExited(thread, this_object, method, dex_pc, v); |
| 63 | } |
| 64 | |
| 65 | void InstrumentationListener::FieldWritten(Thread* thread, |
| 66 | Handle<mirror::Object> this_object, |
| 67 | ArtMethod* method, |
| 68 | uint32_t dex_pc, |
| 69 | ArtField* field, |
| 70 | Handle<mirror::Object> field_value) { |
| 71 | DCHECK(!field->IsPrimitiveType()); |
| 72 | JValue v; |
| 73 | v.SetL(field_value.Get()); |
| 74 | FieldWritten(thread, this_object, method, dex_pc, field, v); |
| 75 | } |
| 76 | |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 77 | // Instrumentation works on non-inlined frames by updating returned PCs |
| 78 | // of compiled frames. |
| 79 | static constexpr StackVisitor::StackWalkKind kInstrumentationStackWalk = |
| 80 | StackVisitor::StackWalkKind::kSkipInlinedFrames; |
| 81 | |
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 82 | class InstallStubsClassVisitor : public ClassVisitor { |
| 83 | public: |
| 84 | explicit InstallStubsClassVisitor(Instrumentation* instrumentation) |
| 85 | : instrumentation_(instrumentation) {} |
| 86 | |
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 87 | bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES(Locks::mutator_lock_) { |
| 88 | instrumentation_->InstallStubsForClass(klass.Ptr()); |
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 89 | return true; // we visit all classes. |
| 90 | } |
| 91 | |
| 92 | private: |
| 93 | Instrumentation* const instrumentation_; |
| 94 | }; |
| 95 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 96 | |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 97 | Instrumentation::Instrumentation() |
| Nicolas Geoffray | 5a23d2e | 2015-11-03 18:58:57 +0000 | [diff] [blame] | 98 | : instrumentation_stubs_installed_(false), |
| 99 | entry_exit_stubs_installed_(false), |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 100 | interpreter_stubs_installed_(false), |
| Nicolas Geoffray | 5a23d2e | 2015-11-03 18:58:57 +0000 | [diff] [blame] | 101 | interpret_only_(false), |
| 102 | forced_interpret_only_(false), |
| 103 | have_method_entry_listeners_(false), |
| 104 | have_method_exit_listeners_(false), |
| 105 | have_method_unwind_listeners_(false), |
| 106 | have_dex_pc_listeners_(false), |
| 107 | have_field_read_listeners_(false), |
| 108 | have_field_write_listeners_(false), |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 109 | have_exception_thrown_listeners_(false), |
| Alex Light | e814f9d | 2017-07-31 16:14:39 -0700 | [diff] [blame] | 110 | have_watched_frame_pop_listeners_(false), |
| Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 111 | have_branch_listeners_(false), |
| Nicolas Geoffray | 5a23d2e | 2015-11-03 18:58:57 +0000 | [diff] [blame] | 112 | have_invoke_virtual_or_interface_listeners_(false), |
| Mathieu Chartier | b8aa1e4 | 2016-04-05 14:36:57 -0700 | [diff] [blame] | 113 | deoptimized_methods_lock_("deoptimized methods lock", kDeoptimizedMethodsLock), |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 114 | deoptimization_enabled_(false), |
| 115 | interpreter_handler_table_(kMainHandlerTable), |
| Mathieu Chartier | 50e9331 | 2016-03-16 11:25:29 -0700 | [diff] [blame] | 116 | quick_alloc_entry_points_instrumentation_counter_(0), |
| 117 | alloc_entrypoints_instrumented_(false) { |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 118 | } |
| 119 | |
| Sebastien Hertz | a10aa37 | 2015-01-21 17:30:58 +0100 | [diff] [blame] | 120 | void Instrumentation::InstallStubsForClass(mirror::Class* klass) { |
| Vladimir Marko | 72ab684 | 2017-01-20 19:32:50 +0000 | [diff] [blame] | 121 | if (!klass->IsResolved()) { |
| Sebastien Hertz | a8a697f | 2015-01-15 12:28:47 +0100 | [diff] [blame] | 122 | // We need the class to be resolved to install/uninstall stubs. Otherwise its methods |
| 123 | // could not be initialized or linked with regards to class inheritance. |
| Vladimir Marko | 72ab684 | 2017-01-20 19:32:50 +0000 | [diff] [blame] | 124 | } else if (klass->IsErroneousResolved()) { |
| 125 | // We can't execute code in a erroneous class: do nothing. |
| Sebastien Hertz | a8a697f | 2015-01-15 12:28:47 +0100 | [diff] [blame] | 126 | } else { |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 127 | for (ArtMethod& method : klass->GetMethods(kRuntimePointerSize)) { |
| Alex Light | 51a64d5 | 2015-12-17 13:55:59 -0800 | [diff] [blame] | 128 | InstallStubsForMethod(&method); |
| Sebastien Hertz | a8a697f | 2015-01-15 12:28:47 +0100 | [diff] [blame] | 129 | } |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 130 | } |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 131 | } |
| 132 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 133 | static void UpdateEntrypoints(ArtMethod* method, const void* quick_code) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 134 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 135 | method->SetEntryPointFromQuickCompiledCode(quick_code); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 136 | } |
| 137 | |
| Nicolas Geoffray | a0619e2 | 2016-12-20 13:57:43 +0000 | [diff] [blame] | 138 | bool Instrumentation::NeedDebugVersionFor(ArtMethod* method) const REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mingyao Yang | 6ea1a0e | 2016-01-29 12:12:49 -0800 | [diff] [blame] | 139 | return Dbg::IsDebuggerActive() && |
| Nicolas Geoffray | a0619e2 | 2016-12-20 13:57:43 +0000 | [diff] [blame] | 140 | Runtime::Current()->IsJavaDebuggable() && |
| Mingyao Yang | 6ea1a0e | 2016-01-29 12:12:49 -0800 | [diff] [blame] | 141 | !method->IsNative() && |
| 142 | !method->IsProxyMethod(); |
| 143 | } |
| 144 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 145 | void Instrumentation::InstallStubsForMethod(ArtMethod* method) { |
| Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 146 | if (!method->IsInvokable() || method->IsProxyMethod()) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 147 | // Do not change stubs for these methods. |
| 148 | return; |
| 149 | } |
| Jeff Hao | 5680277 | 2014-08-19 10:17:36 -0700 | [diff] [blame] | 150 | // Don't stub Proxy.<init>. Note that the Proxy class itself is not a proxy class. |
| 151 | if (method->IsConstructor() && |
| 152 | method->GetDeclaringClass()->DescriptorEquals("Ljava/lang/reflect/Proxy;")) { |
| Jeff Hao | db8a664 | 2014-08-14 17:18:52 -0700 | [diff] [blame] | 153 | return; |
| 154 | } |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 155 | const void* new_quick_code; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 156 | bool uninstall = !entry_exit_stubs_installed_ && !interpreter_stubs_installed_; |
| Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 157 | Runtime* const runtime = Runtime::Current(); |
| 158 | ClassLinker* const class_linker = runtime->GetClassLinker(); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 159 | bool is_class_initialized = method->GetDeclaringClass()->IsInitialized(); |
| 160 | if (uninstall) { |
| 161 | if ((forced_interpret_only_ || IsDeoptimized(method)) && !method->IsNative()) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 162 | new_quick_code = GetQuickToInterpreterBridge(); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 163 | } else if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) { |
| Nicolas Geoffray | a0619e2 | 2016-12-20 13:57:43 +0000 | [diff] [blame] | 164 | if (NeedDebugVersionFor(method)) { |
| Mingyao Yang | 6ea1a0e | 2016-01-29 12:12:49 -0800 | [diff] [blame] | 165 | new_quick_code = GetQuickToInterpreterBridge(); |
| Nicolas Geoffray | a0619e2 | 2016-12-20 13:57:43 +0000 | [diff] [blame] | 166 | } else { |
| 167 | new_quick_code = class_linker->GetQuickOatCodeFor(method); |
| Mingyao Yang | 6ea1a0e | 2016-01-29 12:12:49 -0800 | [diff] [blame] | 168 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 169 | } else { |
| Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 170 | new_quick_code = GetQuickResolutionStub(); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 171 | } |
| 172 | } else { // !uninstall |
| Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 173 | if ((interpreter_stubs_installed_ || forced_interpret_only_ || IsDeoptimized(method)) && |
| 174 | !method->IsNative()) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 175 | new_quick_code = GetQuickToInterpreterBridge(); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 176 | } else { |
| 177 | // Do not overwrite resolution trampoline. When the trampoline initializes the method's |
| 178 | // class, all its static methods code will be set to the instrumentation entry point. |
| 179 | // For more details, see ClassLinker::FixupStaticTrampolines. |
| 180 | if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) { |
| Nicolas Geoffray | a0619e2 | 2016-12-20 13:57:43 +0000 | [diff] [blame] | 181 | if (NeedDebugVersionFor(method)) { |
| Mingyao Yang | 6ea1a0e | 2016-01-29 12:12:49 -0800 | [diff] [blame] | 182 | // Oat code should not be used. Don't install instrumentation stub and |
| 183 | // use interpreter for instrumentation. |
| 184 | new_quick_code = GetQuickToInterpreterBridge(); |
| 185 | } else if (entry_exit_stubs_installed_) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 186 | new_quick_code = GetQuickInstrumentationEntryPoint(); |
| Nicolas Geoffray | a0619e2 | 2016-12-20 13:57:43 +0000 | [diff] [blame] | 187 | } else { |
| 188 | new_quick_code = class_linker->GetQuickOatCodeFor(method); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 189 | } |
| 190 | } else { |
| Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 191 | new_quick_code = GetQuickResolutionStub(); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 192 | } |
| 193 | } |
| 194 | } |
| Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 195 | UpdateEntrypoints(method, new_quick_code); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 196 | } |
| 197 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 198 | // Places the instrumentation exit pc as the return PC for every quick frame. This also allows |
| 199 | // deoptimization of quick frames to interpreter frames. |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 200 | // Since we may already have done this previously, we need to push new instrumentation frame before |
| 201 | // existing instrumentation frames. |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 202 | static void InstrumentationInstallStack(Thread* thread, void* arg) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 203 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 204 | struct InstallStackVisitor FINAL : public StackVisitor { |
| Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 205 | InstallStackVisitor(Thread* thread_in, Context* context, uintptr_t instrumentation_exit_pc) |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 206 | : StackVisitor(thread_in, context, kInstrumentationStackWalk), |
| Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 207 | instrumentation_stack_(thread_in->GetInstrumentationStack()), |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 208 | instrumentation_exit_pc_(instrumentation_exit_pc), |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 209 | reached_existing_instrumentation_frames_(false), instrumentation_stack_depth_(0), |
| 210 | last_return_pc_(0) { |
| 211 | } |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 212 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 213 | bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 214 | ArtMethod* m = GetMethod(); |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 215 | if (m == nullptr) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 216 | if (kVerboseInstrumentation) { |
| 217 | LOG(INFO) << " Skipping upcall. Frame " << GetFrameId(); |
| 218 | } |
| 219 | last_return_pc_ = 0; |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 220 | return true; // Ignore upcalls. |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 221 | } |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 222 | if (GetCurrentQuickFrame() == nullptr) { |
| Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 223 | bool interpreter_frame = true; |
| Sebastien Hertz | 320deb2 | 2014-06-11 19:45:05 +0200 | [diff] [blame] | 224 | InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, 0, GetFrameId(), |
| 225 | interpreter_frame); |
| Jeff Hao | a15a81b | 2014-05-27 18:25:47 -0700 | [diff] [blame] | 226 | if (kVerboseInstrumentation) { |
| 227 | LOG(INFO) << "Pushing shadow frame " << instrumentation_frame.Dump(); |
| 228 | } |
| 229 | shadow_stack_.push_back(instrumentation_frame); |
| 230 | return true; // Continue. |
| 231 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 232 | uintptr_t return_pc = GetReturnPc(); |
| Sebastien Hertz | 320deb2 | 2014-06-11 19:45:05 +0200 | [diff] [blame] | 233 | if (kVerboseInstrumentation) { |
| 234 | LOG(INFO) << " Installing exit stub in " << DescribeLocation(); |
| 235 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 236 | if (return_pc == instrumentation_exit_pc_) { |
| Mingyao Yang | 2ee1790 | 2017-08-30 11:37:08 -0700 | [diff] [blame^] | 237 | CHECK_LT(instrumentation_stack_depth_, instrumentation_stack_->size()); |
| 238 | |
| 239 | if (m->IsRuntimeMethod()) { |
| 240 | const InstrumentationStackFrame& frame = |
| 241 | instrumentation_stack_->at(instrumentation_stack_depth_); |
| 242 | if (frame.interpreter_entry_) { |
| 243 | // This instrumentation frame is for an interpreter bridge and is |
| 244 | // pushed when executing the instrumented interpreter bridge. So method |
| 245 | // enter event must have been reported. However we need to push a DEX pc |
| 246 | // into the dex_pcs_ list to match size of instrumentation stack. |
| 247 | uint32_t dex_pc = DexFile::kDexNoIndex; |
| 248 | dex_pcs_.push_back(dex_pc); |
| 249 | last_return_pc_ = frame.return_pc_; |
| 250 | ++instrumentation_stack_depth_; |
| 251 | return true; |
| 252 | } |
| 253 | } |
| 254 | |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 255 | // We've reached a frame which has already been installed with instrumentation exit stub. |
| 256 | // We should have already installed instrumentation on previous frames. |
| 257 | reached_existing_instrumentation_frames_ = true; |
| 258 | |
| Daniel Mihalyi | ca1d06c | 2014-08-18 18:45:31 +0200 | [diff] [blame] | 259 | const InstrumentationStackFrame& frame = |
| 260 | instrumentation_stack_->at(instrumentation_stack_depth_); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 261 | CHECK_EQ(m, frame.method_) << "Expected " << ArtMethod::PrettyMethod(m) |
| 262 | << ", Found " << ArtMethod::PrettyMethod(frame.method_); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 263 | return_pc = frame.return_pc_; |
| 264 | if (kVerboseInstrumentation) { |
| 265 | LOG(INFO) << "Ignoring already instrumented " << frame.Dump(); |
| 266 | } |
| 267 | } else { |
| 268 | CHECK_NE(return_pc, 0U); |
| 269 | CHECK(!reached_existing_instrumentation_frames_); |
| Mingyao Yang | 2ee1790 | 2017-08-30 11:37:08 -0700 | [diff] [blame^] | 270 | InstrumentationStackFrame instrumentation_frame( |
| 271 | m->IsRuntimeMethod() ? nullptr : GetThisObject(), |
| 272 | m, |
| 273 | return_pc, |
| 274 | GetFrameId(), // A runtime method still gets a frame id. |
| 275 | false); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 276 | if (kVerboseInstrumentation) { |
| 277 | LOG(INFO) << "Pushing frame " << instrumentation_frame.Dump(); |
| 278 | } |
| 279 | |
| Sebastien Hertz | 320deb2 | 2014-06-11 19:45:05 +0200 | [diff] [blame] | 280 | // Insert frame at the right position so we do not corrupt the instrumentation stack. |
| 281 | // Instrumentation stack frames are in descending frame id order. |
| 282 | auto it = instrumentation_stack_->begin(); |
| 283 | for (auto end = instrumentation_stack_->end(); it != end; ++it) { |
| 284 | const InstrumentationStackFrame& current = *it; |
| 285 | if (instrumentation_frame.frame_id_ >= current.frame_id_) { |
| 286 | break; |
| 287 | } |
| 288 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 289 | instrumentation_stack_->insert(it, instrumentation_frame); |
| 290 | SetReturnPc(instrumentation_exit_pc_); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 291 | } |
| Mingyao Yang | 2ee1790 | 2017-08-30 11:37:08 -0700 | [diff] [blame^] | 292 | uint32_t dex_pc = DexFile::kDexNoIndex; |
| 293 | if (last_return_pc_ != 0 && |
| 294 | GetCurrentOatQuickMethodHeader() != nullptr) { |
| 295 | dex_pc = GetCurrentOatQuickMethodHeader()->ToDexPc(m, last_return_pc_); |
| 296 | } |
| 297 | dex_pcs_.push_back(dex_pc); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 298 | last_return_pc_ = return_pc; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 299 | ++instrumentation_stack_depth_; |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 300 | return true; // Continue. |
| 301 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 302 | std::deque<InstrumentationStackFrame>* const instrumentation_stack_; |
| Jeff Hao | a15a81b | 2014-05-27 18:25:47 -0700 | [diff] [blame] | 303 | std::vector<InstrumentationStackFrame> shadow_stack_; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 304 | std::vector<uint32_t> dex_pcs_; |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 305 | const uintptr_t instrumentation_exit_pc_; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 306 | bool reached_existing_instrumentation_frames_; |
| 307 | size_t instrumentation_stack_depth_; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 308 | uintptr_t last_return_pc_; |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 309 | }; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 310 | if (kVerboseInstrumentation) { |
| 311 | std::string thread_name; |
| 312 | thread->GetThreadName(thread_name); |
| 313 | LOG(INFO) << "Installing exit stubs in " << thread_name; |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 314 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 315 | |
| 316 | Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg); |
| Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 317 | std::unique_ptr<Context> context(Context::Create()); |
| Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 318 | uintptr_t instrumentation_exit_pc = reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()); |
| Sebastien Hertz | 11d40c2 | 2014-02-19 18:00:17 +0100 | [diff] [blame] | 319 | InstallStackVisitor visitor(thread, context.get(), instrumentation_exit_pc); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 320 | visitor.WalkStack(true); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 321 | CHECK_EQ(visitor.dex_pcs_.size(), thread->GetInstrumentationStack()->size()); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 322 | |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 323 | if (instrumentation->ShouldNotifyMethodEnterExitEvents()) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 324 | // Create method enter events for all methods currently on the thread's stack. We only do this |
| 325 | // if no debugger is attached to prevent from posting events twice. |
| Jeff Hao | a15a81b | 2014-05-27 18:25:47 -0700 | [diff] [blame] | 326 | auto ssi = visitor.shadow_stack_.rbegin(); |
| 327 | for (auto isi = thread->GetInstrumentationStack()->rbegin(), |
| 328 | end = thread->GetInstrumentationStack()->rend(); isi != end; ++isi) { |
| 329 | while (ssi != visitor.shadow_stack_.rend() && (*ssi).frame_id_ < (*isi).frame_id_) { |
| 330 | instrumentation->MethodEnterEvent(thread, (*ssi).this_object_, (*ssi).method_, 0); |
| 331 | ++ssi; |
| 332 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 333 | uint32_t dex_pc = visitor.dex_pcs_.back(); |
| 334 | visitor.dex_pcs_.pop_back(); |
| Sebastien Hertz | 320deb2 | 2014-06-11 19:45:05 +0200 | [diff] [blame] | 335 | if (!isi->interpreter_entry_) { |
| 336 | instrumentation->MethodEnterEvent(thread, (*isi).this_object_, (*isi).method_, dex_pc); |
| 337 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 338 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 339 | } |
| 340 | thread->VerifyStack(); |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 341 | } |
| 342 | |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 343 | void Instrumentation::InstrumentThreadStack(Thread* thread) { |
| 344 | instrumentation_stubs_installed_ = true; |
| 345 | InstrumentationInstallStack(thread, this); |
| 346 | } |
| 347 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 348 | // Removes the instrumentation exit pc as the return PC for every quick frame. |
| 349 | static void InstrumentationRestoreStack(Thread* thread, void* arg) |
| Nicolas Geoffray | 5a23d2e | 2015-11-03 18:58:57 +0000 | [diff] [blame] | 350 | REQUIRES(Locks::mutator_lock_) { |
| 351 | Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current()); |
| 352 | |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 353 | struct RestoreStackVisitor FINAL : public StackVisitor { |
| Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 354 | RestoreStackVisitor(Thread* thread_in, uintptr_t instrumentation_exit_pc, |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 355 | Instrumentation* instrumentation) |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 356 | : StackVisitor(thread_in, nullptr, kInstrumentationStackWalk), |
| 357 | thread_(thread_in), |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 358 | instrumentation_exit_pc_(instrumentation_exit_pc), |
| 359 | instrumentation_(instrumentation), |
| Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 360 | instrumentation_stack_(thread_in->GetInstrumentationStack()), |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 361 | frames_removed_(0) {} |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 362 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 363 | bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 364 | if (instrumentation_stack_->size() == 0) { |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 365 | return false; // Stop. |
| 366 | } |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 367 | ArtMethod* m = GetMethod(); |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 368 | if (GetCurrentQuickFrame() == nullptr) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 369 | if (kVerboseInstrumentation) { |
| Daniel Mihalyi | ca1d06c | 2014-08-18 18:45:31 +0200 | [diff] [blame] | 370 | LOG(INFO) << " Ignoring a shadow frame. Frame " << GetFrameId() |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 371 | << " Method=" << ArtMethod::PrettyMethod(m); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 372 | } |
| 373 | return true; // Ignore shadow frames. |
| 374 | } |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 375 | if (m == nullptr) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 376 | if (kVerboseInstrumentation) { |
| 377 | LOG(INFO) << " Skipping upcall. Frame " << GetFrameId(); |
| 378 | } |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 379 | return true; // Ignore upcalls. |
| 380 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 381 | bool removed_stub = false; |
| 382 | // TODO: make this search more efficient? |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 383 | const size_t frameId = GetFrameId(); |
| 384 | for (const InstrumentationStackFrame& instrumentation_frame : *instrumentation_stack_) { |
| 385 | if (instrumentation_frame.frame_id_ == frameId) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 386 | if (kVerboseInstrumentation) { |
| 387 | LOG(INFO) << " Removing exit stub in " << DescribeLocation(); |
| 388 | } |
| Jeff Hao | 9a916d3 | 2013-06-27 18:45:37 -0700 | [diff] [blame] | 389 | if (instrumentation_frame.interpreter_entry_) { |
| Andreas Gampe | 8228cdf | 2017-05-30 15:03:54 -0700 | [diff] [blame] | 390 | CHECK(m == Runtime::Current()->GetCalleeSaveMethod(CalleeSaveType::kSaveRefsAndArgs)); |
| Jeff Hao | 9a916d3 | 2013-06-27 18:45:37 -0700 | [diff] [blame] | 391 | } else { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 392 | CHECK(m == instrumentation_frame.method_) << ArtMethod::PrettyMethod(m); |
| Jeff Hao | 9a916d3 | 2013-06-27 18:45:37 -0700 | [diff] [blame] | 393 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 394 | SetReturnPc(instrumentation_frame.return_pc_); |
| Mingyao Yang | 2ee1790 | 2017-08-30 11:37:08 -0700 | [diff] [blame^] | 395 | if (instrumentation_->ShouldNotifyMethodEnterExitEvents() && |
| 396 | !m->IsRuntimeMethod()) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 397 | // Create the method exit events. As the methods didn't really exit the result is 0. |
| 398 | // We only do this if no debugger is attached to prevent from posting events twice. |
| 399 | instrumentation_->MethodExitEvent(thread_, instrumentation_frame.this_object_, m, |
| 400 | GetDexPc(), JValue()); |
| 401 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 402 | frames_removed_++; |
| 403 | removed_stub = true; |
| 404 | break; |
| 405 | } |
| 406 | } |
| 407 | if (!removed_stub) { |
| 408 | if (kVerboseInstrumentation) { |
| 409 | LOG(INFO) << " No exit stub in " << DescribeLocation(); |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 410 | } |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 411 | } |
| 412 | return true; // Continue. |
| 413 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 414 | Thread* const thread_; |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 415 | const uintptr_t instrumentation_exit_pc_; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 416 | Instrumentation* const instrumentation_; |
| 417 | std::deque<instrumentation::InstrumentationStackFrame>* const instrumentation_stack_; |
| 418 | size_t frames_removed_; |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 419 | }; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 420 | if (kVerboseInstrumentation) { |
| 421 | std::string thread_name; |
| 422 | thread->GetThreadName(thread_name); |
| 423 | LOG(INFO) << "Removing exit stubs in " << thread_name; |
| 424 | } |
| 425 | std::deque<instrumentation::InstrumentationStackFrame>* stack = thread->GetInstrumentationStack(); |
| 426 | if (stack->size() > 0) { |
| 427 | Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg); |
| Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 428 | uintptr_t instrumentation_exit_pc = |
| 429 | reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 430 | RestoreStackVisitor visitor(thread, instrumentation_exit_pc, instrumentation); |
| 431 | visitor.WalkStack(true); |
| 432 | CHECK_EQ(visitor.frames_removed_, stack->size()); |
| 433 | while (stack->size() > 0) { |
| 434 | stack->pop_front(); |
| 435 | } |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 436 | } |
| 437 | } |
| 438 | |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 439 | static bool HasEvent(Instrumentation::InstrumentationEvent expected, uint32_t events) { |
| 440 | return (events & expected) != 0; |
| 441 | } |
| 442 | |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 443 | static void PotentiallyAddListenerTo(Instrumentation::InstrumentationEvent event, |
| 444 | uint32_t events, |
| 445 | std::list<InstrumentationListener*>& list, |
| 446 | InstrumentationListener* listener, |
| 447 | bool* has_listener) |
| 448 | REQUIRES(Locks::mutator_lock_, !Locks::thread_list_lock_, !Locks::classlinker_classes_lock_) { |
| 449 | Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current()); |
| 450 | if (!HasEvent(event, events)) { |
| 451 | return; |
| 452 | } |
| 453 | // If there is a free slot in the list, we insert the listener in that slot. |
| 454 | // Otherwise we add it to the end of the list. |
| 455 | auto it = std::find(list.begin(), list.end(), nullptr); |
| 456 | if (it != list.end()) { |
| 457 | *it = listener; |
| 458 | } else { |
| 459 | list.push_back(listener); |
| 460 | } |
| 461 | *has_listener = true; |
| 462 | } |
| 463 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 464 | void Instrumentation::AddListener(InstrumentationListener* listener, uint32_t events) { |
| 465 | Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current()); |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 466 | PotentiallyAddListenerTo(kMethodEntered, |
| 467 | events, |
| 468 | method_entry_listeners_, |
| 469 | listener, |
| 470 | &have_method_entry_listeners_); |
| 471 | PotentiallyAddListenerTo(kMethodExited, |
| 472 | events, |
| 473 | method_exit_listeners_, |
| 474 | listener, |
| 475 | &have_method_exit_listeners_); |
| 476 | PotentiallyAddListenerTo(kMethodUnwind, |
| 477 | events, |
| 478 | method_unwind_listeners_, |
| 479 | listener, |
| 480 | &have_method_unwind_listeners_); |
| Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 481 | PotentiallyAddListenerTo(kBranch, |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 482 | events, |
| Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 483 | branch_listeners_, |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 484 | listener, |
| Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 485 | &have_branch_listeners_); |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 486 | PotentiallyAddListenerTo(kInvokeVirtualOrInterface, |
| 487 | events, |
| 488 | invoke_virtual_or_interface_listeners_, |
| 489 | listener, |
| 490 | &have_invoke_virtual_or_interface_listeners_); |
| 491 | PotentiallyAddListenerTo(kDexPcMoved, |
| 492 | events, |
| 493 | dex_pc_listeners_, |
| 494 | listener, |
| 495 | &have_dex_pc_listeners_); |
| 496 | PotentiallyAddListenerTo(kFieldRead, |
| 497 | events, |
| 498 | field_read_listeners_, |
| 499 | listener, |
| 500 | &have_field_read_listeners_); |
| 501 | PotentiallyAddListenerTo(kFieldWritten, |
| 502 | events, |
| 503 | field_write_listeners_, |
| 504 | listener, |
| 505 | &have_field_write_listeners_); |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 506 | PotentiallyAddListenerTo(kExceptionThrown, |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 507 | events, |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 508 | exception_thrown_listeners_, |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 509 | listener, |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 510 | &have_exception_thrown_listeners_); |
| Alex Light | e814f9d | 2017-07-31 16:14:39 -0700 | [diff] [blame] | 511 | PotentiallyAddListenerTo(kWatchedFramePop, |
| 512 | events, |
| 513 | watched_frame_pop_listeners_, |
| 514 | listener, |
| 515 | &have_watched_frame_pop_listeners_); |
| Sebastien Hertz | ee1997a | 2013-09-19 14:47:09 +0200 | [diff] [blame] | 516 | UpdateInterpreterHandlerTable(); |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 517 | } |
| 518 | |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 519 | static void PotentiallyRemoveListenerFrom(Instrumentation::InstrumentationEvent event, |
| 520 | uint32_t events, |
| 521 | std::list<InstrumentationListener*>& list, |
| 522 | InstrumentationListener* listener, |
| 523 | bool* has_listener) |
| 524 | REQUIRES(Locks::mutator_lock_, !Locks::thread_list_lock_, !Locks::classlinker_classes_lock_) { |
| 525 | Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current()); |
| 526 | if (!HasEvent(event, events)) { |
| 527 | return; |
| 528 | } |
| 529 | auto it = std::find(list.begin(), list.end(), listener); |
| 530 | if (it != list.end()) { |
| 531 | // Just update the entry, do not remove from the list. Removing entries in the list |
| 532 | // is unsafe when mutators are iterating over it. |
| 533 | *it = nullptr; |
| 534 | } |
| 535 | |
| 536 | // Check if the list contains any non-null listener, and update 'has_listener'. |
| 537 | for (InstrumentationListener* l : list) { |
| 538 | if (l != nullptr) { |
| 539 | *has_listener = true; |
| 540 | return; |
| 541 | } |
| 542 | } |
| 543 | *has_listener = false; |
| 544 | } |
| 545 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 546 | void Instrumentation::RemoveListener(InstrumentationListener* listener, uint32_t events) { |
| 547 | Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current()); |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 548 | PotentiallyRemoveListenerFrom(kMethodEntered, |
| 549 | events, |
| 550 | method_entry_listeners_, |
| 551 | listener, |
| 552 | &have_method_entry_listeners_); |
| 553 | PotentiallyRemoveListenerFrom(kMethodExited, |
| 554 | events, |
| 555 | method_exit_listeners_, |
| 556 | listener, |
| 557 | &have_method_exit_listeners_); |
| 558 | PotentiallyRemoveListenerFrom(kMethodUnwind, |
| 559 | events, |
| 560 | method_unwind_listeners_, |
| 561 | listener, |
| 562 | &have_method_unwind_listeners_); |
| Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 563 | PotentiallyRemoveListenerFrom(kBranch, |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 564 | events, |
| Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 565 | branch_listeners_, |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 566 | listener, |
| Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 567 | &have_branch_listeners_); |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 568 | PotentiallyRemoveListenerFrom(kInvokeVirtualOrInterface, |
| 569 | events, |
| 570 | invoke_virtual_or_interface_listeners_, |
| 571 | listener, |
| 572 | &have_invoke_virtual_or_interface_listeners_); |
| 573 | PotentiallyRemoveListenerFrom(kDexPcMoved, |
| 574 | events, |
| 575 | dex_pc_listeners_, |
| 576 | listener, |
| 577 | &have_dex_pc_listeners_); |
| 578 | PotentiallyRemoveListenerFrom(kFieldRead, |
| 579 | events, |
| 580 | field_read_listeners_, |
| 581 | listener, |
| 582 | &have_field_read_listeners_); |
| 583 | PotentiallyRemoveListenerFrom(kFieldWritten, |
| 584 | events, |
| 585 | field_write_listeners_, |
| 586 | listener, |
| 587 | &have_field_write_listeners_); |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 588 | PotentiallyRemoveListenerFrom(kExceptionThrown, |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 589 | events, |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 590 | exception_thrown_listeners_, |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 591 | listener, |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 592 | &have_exception_thrown_listeners_); |
| Alex Light | e814f9d | 2017-07-31 16:14:39 -0700 | [diff] [blame] | 593 | PotentiallyRemoveListenerFrom(kWatchedFramePop, |
| 594 | events, |
| 595 | watched_frame_pop_listeners_, |
| 596 | listener, |
| 597 | &have_watched_frame_pop_listeners_); |
| Sebastien Hertz | ee1997a | 2013-09-19 14:47:09 +0200 | [diff] [blame] | 598 | UpdateInterpreterHandlerTable(); |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 599 | } |
| 600 | |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 601 | Instrumentation::InstrumentationLevel Instrumentation::GetCurrentInstrumentationLevel() const { |
| Alex Light | 4ba388a | 2017-01-27 10:26:49 -0800 | [diff] [blame] | 602 | if (interpreter_stubs_installed_) { |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 603 | return InstrumentationLevel::kInstrumentWithInterpreter; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 604 | } else if (entry_exit_stubs_installed_) { |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 605 | return InstrumentationLevel::kInstrumentWithInstrumentationStubs; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 606 | } else { |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 607 | return InstrumentationLevel::kInstrumentNothing; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 608 | } |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 609 | } |
| 610 | |
| Alex Light | dba6148 | 2016-12-21 08:20:29 -0800 | [diff] [blame] | 611 | bool Instrumentation::RequiresInstrumentationInstallation(InstrumentationLevel new_level) const { |
| Alex Light | 4ba388a | 2017-01-27 10:26:49 -0800 | [diff] [blame] | 612 | // We need to reinstall instrumentation if we go to a different level. |
| 613 | return GetCurrentInstrumentationLevel() != new_level; |
| Alex Light | dba6148 | 2016-12-21 08:20:29 -0800 | [diff] [blame] | 614 | } |
| 615 | |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 616 | void Instrumentation::ConfigureStubs(const char* key, InstrumentationLevel desired_level) { |
| 617 | // Store the instrumentation level for this key or remove it. |
| 618 | if (desired_level == InstrumentationLevel::kInstrumentNothing) { |
| 619 | // The client no longer needs instrumentation. |
| 620 | requested_instrumentation_levels_.erase(key); |
| 621 | } else { |
| 622 | // The client needs instrumentation. |
| 623 | requested_instrumentation_levels_.Overwrite(key, desired_level); |
| 624 | } |
| 625 | |
| 626 | // Look for the highest required instrumentation level. |
| 627 | InstrumentationLevel requested_level = InstrumentationLevel::kInstrumentNothing; |
| 628 | for (const auto& v : requested_instrumentation_levels_) { |
| 629 | requested_level = std::max(requested_level, v.second); |
| 630 | } |
| 631 | |
| 632 | interpret_only_ = (requested_level == InstrumentationLevel::kInstrumentWithInterpreter) || |
| 633 | forced_interpret_only_; |
| 634 | |
| Alex Light | dba6148 | 2016-12-21 08:20:29 -0800 | [diff] [blame] | 635 | if (!RequiresInstrumentationInstallation(requested_level)) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 636 | // We're already set. |
| 637 | return; |
| 638 | } |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 639 | Thread* const self = Thread::Current(); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 640 | Runtime* runtime = Runtime::Current(); |
| Sebastien Hertz | a8a697f | 2015-01-15 12:28:47 +0100 | [diff] [blame] | 641 | Locks::mutator_lock_->AssertExclusiveHeld(self); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 642 | Locks::thread_list_lock_->AssertNotHeld(self); |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 643 | if (requested_level > InstrumentationLevel::kInstrumentNothing) { |
| Alex Light | 4ba388a | 2017-01-27 10:26:49 -0800 | [diff] [blame] | 644 | if (requested_level == InstrumentationLevel::kInstrumentWithInterpreter) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 645 | interpreter_stubs_installed_ = true; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 646 | entry_exit_stubs_installed_ = true; |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 647 | } else { |
| 648 | CHECK_EQ(requested_level, InstrumentationLevel::kInstrumentWithInstrumentationStubs); |
| 649 | entry_exit_stubs_installed_ = true; |
| 650 | interpreter_stubs_installed_ = false; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 651 | } |
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 652 | InstallStubsClassVisitor visitor(this); |
| 653 | runtime->GetClassLinker()->VisitClasses(&visitor); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 654 | instrumentation_stubs_installed_ = true; |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 655 | MutexLock mu(self, *Locks::thread_list_lock_); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 656 | runtime->GetThreadList()->ForEach(InstrumentationInstallStack, this); |
| 657 | } else { |
| 658 | interpreter_stubs_installed_ = false; |
| 659 | entry_exit_stubs_installed_ = false; |
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 660 | InstallStubsClassVisitor visitor(this); |
| 661 | runtime->GetClassLinker()->VisitClasses(&visitor); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 662 | // Restore stack only if there is no method currently deoptimized. |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 663 | bool empty; |
| 664 | { |
| 665 | ReaderMutexLock mu(self, deoptimized_methods_lock_); |
| Hiroshi Yamauchi | 799eb3a | 2014-07-18 15:38:17 -0700 | [diff] [blame] | 666 | empty = IsDeoptimizedMethodsEmpty(); // Avoid lock violation. |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 667 | } |
| 668 | if (empty) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 669 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 670 | Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this); |
| Nicolas Geoffray | 5a23d2e | 2015-11-03 18:58:57 +0000 | [diff] [blame] | 671 | // Only do this after restoring, as walking the stack when restoring will see |
| 672 | // the instrumentation exit pc. |
| 673 | instrumentation_stubs_installed_ = false; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 674 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 675 | } |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 676 | } |
| 677 | |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 678 | static void ResetQuickAllocEntryPointsForThread(Thread* thread, void* arg ATTRIBUTE_UNUSED) { |
| Mathieu Chartier | 5ace201 | 2016-11-30 10:15:41 -0800 | [diff] [blame] | 679 | thread->ResetQuickAllocEntryPointsForThread(kUseReadBarrier && thread->GetIsGcMarking()); |
| Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 680 | } |
| 681 | |
| Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 682 | void Instrumentation::SetEntrypointsInstrumented(bool instrumented) { |
| 683 | Thread* self = Thread::Current(); |
| Mathieu Chartier | 661974a | 2014-01-09 11:23:53 -0800 | [diff] [blame] | 684 | Runtime* runtime = Runtime::Current(); |
| Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 685 | Locks::mutator_lock_->AssertNotHeld(self); |
| 686 | Locks::instrument_entrypoints_lock_->AssertHeld(self); |
| 687 | if (runtime->IsStarted()) { |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 688 | ScopedSuspendAll ssa(__FUNCTION__); |
| Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 689 | MutexLock mu(self, *Locks::runtime_shutdown_lock_); |
| Mathieu Chartier | 661974a | 2014-01-09 11:23:53 -0800 | [diff] [blame] | 690 | SetQuickAllocEntryPointsInstrumented(instrumented); |
| 691 | ResetQuickAllocEntryPoints(); |
| Mathieu Chartier | 50e9331 | 2016-03-16 11:25:29 -0700 | [diff] [blame] | 692 | alloc_entrypoints_instrumented_ = instrumented; |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 693 | } else { |
| 694 | MutexLock mu(self, *Locks::runtime_shutdown_lock_); |
| 695 | SetQuickAllocEntryPointsInstrumented(instrumented); |
| Andreas Gampe | 157c77e | 2016-10-17 17:44:41 -0700 | [diff] [blame] | 696 | |
| 697 | // Note: ResetQuickAllocEntryPoints only works when the runtime is started. Manually run the |
| 698 | // update for just this thread. |
| Andreas Gampe | 162ae50 | 2016-10-18 10:03:42 -0700 | [diff] [blame] | 699 | // Note: self may be null. One of those paths is setting instrumentation in the Heap |
| 700 | // constructor for gcstress mode. |
| 701 | if (self != nullptr) { |
| 702 | ResetQuickAllocEntryPointsForThread(self, nullptr); |
| 703 | } |
| Andreas Gampe | 157c77e | 2016-10-17 17:44:41 -0700 | [diff] [blame] | 704 | |
| Mathieu Chartier | 50e9331 | 2016-03-16 11:25:29 -0700 | [diff] [blame] | 705 | alloc_entrypoints_instrumented_ = instrumented; |
| Mathieu Chartier | 661974a | 2014-01-09 11:23:53 -0800 | [diff] [blame] | 706 | } |
| 707 | } |
| 708 | |
| Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 709 | void Instrumentation::InstrumentQuickAllocEntryPoints() { |
| 710 | MutexLock mu(Thread::Current(), *Locks::instrument_entrypoints_lock_); |
| 711 | InstrumentQuickAllocEntryPointsLocked(); |
| Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 712 | } |
| 713 | |
| Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 714 | void Instrumentation::UninstrumentQuickAllocEntryPoints() { |
| 715 | MutexLock mu(Thread::Current(), *Locks::instrument_entrypoints_lock_); |
| 716 | UninstrumentQuickAllocEntryPointsLocked(); |
| 717 | } |
| 718 | |
| 719 | void Instrumentation::InstrumentQuickAllocEntryPointsLocked() { |
| 720 | Locks::instrument_entrypoints_lock_->AssertHeld(Thread::Current()); |
| 721 | if (quick_alloc_entry_points_instrumentation_counter_ == 0) { |
| 722 | SetEntrypointsInstrumented(true); |
| Mathieu Chartier | cbb2d20 | 2013-11-14 17:45:16 -0800 | [diff] [blame] | 723 | } |
| Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 724 | ++quick_alloc_entry_points_instrumentation_counter_; |
| Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 725 | } |
| 726 | |
| 727 | void Instrumentation::UninstrumentQuickAllocEntryPointsLocked() { |
| 728 | Locks::instrument_entrypoints_lock_->AssertHeld(Thread::Current()); |
| 729 | CHECK_GT(quick_alloc_entry_points_instrumentation_counter_, 0U); |
| 730 | --quick_alloc_entry_points_instrumentation_counter_; |
| 731 | if (quick_alloc_entry_points_instrumentation_counter_ == 0) { |
| 732 | SetEntrypointsInstrumented(false); |
| 733 | } |
| Mathieu Chartier | cbb2d20 | 2013-11-14 17:45:16 -0800 | [diff] [blame] | 734 | } |
| 735 | |
| 736 | void Instrumentation::ResetQuickAllocEntryPoints() { |
| 737 | Runtime* runtime = Runtime::Current(); |
| 738 | if (runtime->IsStarted()) { |
| Mathieu Chartier | e6da9af | 2013-12-16 11:54:42 -0800 | [diff] [blame] | 739 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 740 | runtime->GetThreadList()->ForEach(ResetQuickAllocEntryPointsForThread, nullptr); |
| Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 741 | } |
| 742 | } |
| 743 | |
| Mingyao Yang | 3fd448a | 2016-05-10 14:30:41 -0700 | [diff] [blame] | 744 | void Instrumentation::UpdateMethodsCodeImpl(ArtMethod* method, const void* quick_code) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 745 | const void* new_quick_code; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 746 | if (LIKELY(!instrumentation_stubs_installed_)) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 747 | new_quick_code = quick_code; |
| Jeff Hao | 65d15d9 | 2013-07-16 16:39:33 -0700 | [diff] [blame] | 748 | } else { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 749 | if ((interpreter_stubs_installed_ || IsDeoptimized(method)) && !method->IsNative()) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 750 | new_quick_code = GetQuickToInterpreterBridge(); |
| Jeff Hao | 65d15d9 | 2013-07-16 16:39:33 -0700 | [diff] [blame] | 751 | } else { |
| Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 752 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 753 | if (class_linker->IsQuickResolutionStub(quick_code) || |
| 754 | class_linker->IsQuickToInterpreterBridge(quick_code)) { |
| Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 755 | new_quick_code = quick_code; |
| Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 756 | } else if (entry_exit_stubs_installed_) { |
| 757 | new_quick_code = GetQuickInstrumentationEntryPoint(); |
| Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 758 | } else { |
| Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 759 | new_quick_code = quick_code; |
| Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 760 | } |
| Jeff Hao | 65d15d9 | 2013-07-16 16:39:33 -0700 | [diff] [blame] | 761 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 762 | } |
| Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 763 | UpdateEntrypoints(method, new_quick_code); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 764 | } |
| 765 | |
| Mingyao Yang | 3fd448a | 2016-05-10 14:30:41 -0700 | [diff] [blame] | 766 | void Instrumentation::UpdateMethodsCode(ArtMethod* method, const void* quick_code) { |
| 767 | DCHECK(method->GetDeclaringClass()->IsResolved()); |
| 768 | UpdateMethodsCodeImpl(method, quick_code); |
| 769 | } |
| 770 | |
| Nicolas Geoffray | a0619e2 | 2016-12-20 13:57:43 +0000 | [diff] [blame] | 771 | void Instrumentation::UpdateMethodsCodeForJavaDebuggable(ArtMethod* method, |
| 772 | const void* quick_code) { |
| 773 | // When the runtime is set to Java debuggable, we may update the entry points of |
| 774 | // all methods of a class to the interpreter bridge. A method's declaring class |
| 775 | // might not be in resolved state yet in that case, so we bypass the DCHECK in |
| 776 | // UpdateMethodsCode. |
| Mingyao Yang | 3fd448a | 2016-05-10 14:30:41 -0700 | [diff] [blame] | 777 | UpdateMethodsCodeImpl(method, quick_code); |
| 778 | } |
| 779 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 780 | bool Instrumentation::AddDeoptimizedMethod(ArtMethod* method) { |
| 781 | if (IsDeoptimizedMethod(method)) { |
| Hiroshi Yamauchi | 799eb3a | 2014-07-18 15:38:17 -0700 | [diff] [blame] | 782 | // Already in the map. Return. |
| 783 | return false; |
| 784 | } |
| 785 | // Not found. Add it. |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 786 | deoptimized_methods_.insert(method); |
| Hiroshi Yamauchi | 799eb3a | 2014-07-18 15:38:17 -0700 | [diff] [blame] | 787 | return true; |
| 788 | } |
| 789 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 790 | bool Instrumentation::IsDeoptimizedMethod(ArtMethod* method) { |
| 791 | return deoptimized_methods_.find(method) != deoptimized_methods_.end(); |
| Hiroshi Yamauchi | 799eb3a | 2014-07-18 15:38:17 -0700 | [diff] [blame] | 792 | } |
| 793 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 794 | ArtMethod* Instrumentation::BeginDeoptimizedMethod() { |
| 795 | if (deoptimized_methods_.empty()) { |
| Hiroshi Yamauchi | 799eb3a | 2014-07-18 15:38:17 -0700 | [diff] [blame] | 796 | // Empty. |
| 797 | return nullptr; |
| 798 | } |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 799 | return *deoptimized_methods_.begin(); |
| Hiroshi Yamauchi | 799eb3a | 2014-07-18 15:38:17 -0700 | [diff] [blame] | 800 | } |
| 801 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 802 | bool Instrumentation::RemoveDeoptimizedMethod(ArtMethod* method) { |
| 803 | auto it = deoptimized_methods_.find(method); |
| 804 | if (it == deoptimized_methods_.end()) { |
| 805 | return false; |
| Hiroshi Yamauchi | 799eb3a | 2014-07-18 15:38:17 -0700 | [diff] [blame] | 806 | } |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 807 | deoptimized_methods_.erase(it); |
| 808 | return true; |
| Hiroshi Yamauchi | 799eb3a | 2014-07-18 15:38:17 -0700 | [diff] [blame] | 809 | } |
| 810 | |
| 811 | bool Instrumentation::IsDeoptimizedMethodsEmpty() const { |
| 812 | return deoptimized_methods_.empty(); |
| 813 | } |
| 814 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 815 | void Instrumentation::Deoptimize(ArtMethod* method) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 816 | CHECK(!method->IsNative()); |
| 817 | CHECK(!method->IsProxyMethod()); |
| Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 818 | CHECK(method->IsInvokable()); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 819 | |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 820 | Thread* self = Thread::Current(); |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 821 | { |
| 822 | WriterMutexLock mu(self, deoptimized_methods_lock_); |
| Hiroshi Yamauchi | 799eb3a | 2014-07-18 15:38:17 -0700 | [diff] [blame] | 823 | bool has_not_been_deoptimized = AddDeoptimizedMethod(method); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 824 | CHECK(has_not_been_deoptimized) << "Method " << ArtMethod::PrettyMethod(method) |
| Daniel Mihalyi | ca1d06c | 2014-08-18 18:45:31 +0200 | [diff] [blame] | 825 | << " is already deoptimized"; |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 826 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 827 | if (!interpreter_stubs_installed_) { |
| Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 828 | UpdateEntrypoints(method, GetQuickInstrumentationEntryPoint()); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 829 | |
| 830 | // Install instrumentation exit stub and instrumentation frames. We may already have installed |
| 831 | // these previously so it will only cover the newly created frames. |
| 832 | instrumentation_stubs_installed_ = true; |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 833 | MutexLock mu(self, *Locks::thread_list_lock_); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 834 | Runtime::Current()->GetThreadList()->ForEach(InstrumentationInstallStack, this); |
| 835 | } |
| 836 | } |
| 837 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 838 | void Instrumentation::Undeoptimize(ArtMethod* method) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 839 | CHECK(!method->IsNative()); |
| 840 | CHECK(!method->IsProxyMethod()); |
| Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 841 | CHECK(method->IsInvokable()); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 842 | |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 843 | Thread* self = Thread::Current(); |
| 844 | bool empty; |
| 845 | { |
| 846 | WriterMutexLock mu(self, deoptimized_methods_lock_); |
| Hiroshi Yamauchi | 799eb3a | 2014-07-18 15:38:17 -0700 | [diff] [blame] | 847 | bool found_and_erased = RemoveDeoptimizedMethod(method); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 848 | CHECK(found_and_erased) << "Method " << ArtMethod::PrettyMethod(method) |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 849 | << " is not deoptimized"; |
| Hiroshi Yamauchi | 799eb3a | 2014-07-18 15:38:17 -0700 | [diff] [blame] | 850 | empty = IsDeoptimizedMethodsEmpty(); |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 851 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 852 | |
| 853 | // Restore code and possibly stack only if we did not deoptimize everything. |
| 854 | if (!interpreter_stubs_installed_) { |
| 855 | // Restore its code or resolution trampoline. |
| 856 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 857 | if (method->IsStatic() && !method->IsConstructor() && |
| 858 | !method->GetDeclaringClass()->IsInitialized()) { |
| Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 859 | UpdateEntrypoints(method, GetQuickResolutionStub()); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 860 | } else { |
| Nicolas Geoffray | a0619e2 | 2016-12-20 13:57:43 +0000 | [diff] [blame] | 861 | const void* quick_code = NeedDebugVersionFor(method) |
| 862 | ? GetQuickToInterpreterBridge() |
| 863 | : class_linker->GetQuickOatCodeFor(method); |
| Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 864 | UpdateEntrypoints(method, quick_code); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 865 | } |
| 866 | |
| 867 | // If there is no deoptimized method left, we can restore the stack of each thread. |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 868 | if (empty) { |
| 869 | MutexLock mu(self, *Locks::thread_list_lock_); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 870 | Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this); |
| 871 | instrumentation_stubs_installed_ = false; |
| 872 | } |
| 873 | } |
| 874 | } |
| 875 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 876 | bool Instrumentation::IsDeoptimized(ArtMethod* method) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 877 | DCHECK(method != nullptr); |
| Hiroshi Yamauchi | 799eb3a | 2014-07-18 15:38:17 -0700 | [diff] [blame] | 878 | ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 879 | return IsDeoptimizedMethod(method); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 880 | } |
| 881 | |
| 882 | void Instrumentation::EnableDeoptimization() { |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 883 | ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_); |
| Hiroshi Yamauchi | 799eb3a | 2014-07-18 15:38:17 -0700 | [diff] [blame] | 884 | CHECK(IsDeoptimizedMethodsEmpty()); |
| Sebastien Hertz | 11d40c2 | 2014-02-19 18:00:17 +0100 | [diff] [blame] | 885 | CHECK_EQ(deoptimization_enabled_, false); |
| 886 | deoptimization_enabled_ = true; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 887 | } |
| 888 | |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 889 | void Instrumentation::DisableDeoptimization(const char* key) { |
| Sebastien Hertz | 11d40c2 | 2014-02-19 18:00:17 +0100 | [diff] [blame] | 890 | CHECK_EQ(deoptimization_enabled_, true); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 891 | // If we deoptimized everything, undo it. |
| Alex Light | dba6148 | 2016-12-21 08:20:29 -0800 | [diff] [blame] | 892 | InstrumentationLevel level = GetCurrentInstrumentationLevel(); |
| 893 | if (level == InstrumentationLevel::kInstrumentWithInterpreter) { |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 894 | UndeoptimizeEverything(key); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 895 | } |
| 896 | // Undeoptimized selected methods. |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 897 | while (true) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 898 | ArtMethod* method; |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 899 | { |
| 900 | ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_); |
| Hiroshi Yamauchi | 799eb3a | 2014-07-18 15:38:17 -0700 | [diff] [blame] | 901 | if (IsDeoptimizedMethodsEmpty()) { |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 902 | break; |
| 903 | } |
| Hiroshi Yamauchi | 799eb3a | 2014-07-18 15:38:17 -0700 | [diff] [blame] | 904 | method = BeginDeoptimizedMethod(); |
| 905 | CHECK(method != nullptr); |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 906 | } |
| 907 | Undeoptimize(method); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 908 | } |
| Sebastien Hertz | 11d40c2 | 2014-02-19 18:00:17 +0100 | [diff] [blame] | 909 | deoptimization_enabled_ = false; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 910 | } |
| 911 | |
| Sebastien Hertz | 11d40c2 | 2014-02-19 18:00:17 +0100 | [diff] [blame] | 912 | // Indicates if instrumentation should notify method enter/exit events to the listeners. |
| 913 | bool Instrumentation::ShouldNotifyMethodEnterExitEvents() const { |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 914 | if (!HasMethodEntryListeners() && !HasMethodExitListeners()) { |
| 915 | return false; |
| 916 | } |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 917 | return !deoptimization_enabled_ && !interpreter_stubs_installed_; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 918 | } |
| 919 | |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 920 | void Instrumentation::DeoptimizeEverything(const char* key) { |
| 921 | CHECK(deoptimization_enabled_); |
| 922 | ConfigureStubs(key, InstrumentationLevel::kInstrumentWithInterpreter); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 923 | } |
| 924 | |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 925 | void Instrumentation::UndeoptimizeEverything(const char* key) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 926 | CHECK(interpreter_stubs_installed_); |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 927 | CHECK(deoptimization_enabled_); |
| 928 | ConfigureStubs(key, InstrumentationLevel::kInstrumentNothing); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 929 | } |
| 930 | |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 931 | void Instrumentation::EnableMethodTracing(const char* key, bool needs_interpreter) { |
| 932 | InstrumentationLevel level; |
| 933 | if (needs_interpreter) { |
| 934 | level = InstrumentationLevel::kInstrumentWithInterpreter; |
| 935 | } else { |
| 936 | level = InstrumentationLevel::kInstrumentWithInstrumentationStubs; |
| 937 | } |
| 938 | ConfigureStubs(key, level); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 939 | } |
| 940 | |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 941 | void Instrumentation::DisableMethodTracing(const char* key) { |
| 942 | ConfigureStubs(key, InstrumentationLevel::kInstrumentNothing); |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 943 | } |
| 944 | |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 945 | const void* Instrumentation::GetQuickCodeFor(ArtMethod* method, PointerSize pointer_size) const { |
| Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 946 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 947 | if (LIKELY(!instrumentation_stubs_installed_)) { |
| Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 948 | const void* code = method->GetEntryPointFromQuickCompiledCodePtrSize(pointer_size); |
| Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 949 | DCHECK(code != nullptr); |
| Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 950 | if (LIKELY(!class_linker->IsQuickResolutionStub(code) && |
| 951 | !class_linker->IsQuickToInterpreterBridge(code)) && |
| 952 | !class_linker->IsQuickResolutionStub(code) && |
| 953 | !class_linker->IsQuickToInterpreterBridge(code)) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 954 | return code; |
| 955 | } |
| 956 | } |
| Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 957 | return class_linker->GetQuickOatCodeFor(method); |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 958 | } |
| 959 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 960 | void Instrumentation::MethodEnterEventImpl(Thread* thread, |
| 961 | ObjPtr<mirror::Object> this_object, |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 962 | ArtMethod* method, |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 963 | uint32_t dex_pc) const { |
| Mingyao Yang | 2ee1790 | 2017-08-30 11:37:08 -0700 | [diff] [blame^] | 964 | DCHECK(!method->IsRuntimeMethod()); |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 965 | if (HasMethodEntryListeners()) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 966 | Thread* self = Thread::Current(); |
| 967 | StackHandleScope<1> hs(self); |
| 968 | Handle<mirror::Object> thiz(hs.NewHandle(this_object)); |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 969 | for (InstrumentationListener* listener : method_entry_listeners_) { |
| 970 | if (listener != nullptr) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 971 | listener->MethodEntered(thread, thiz, method, dex_pc); |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 972 | } |
| 973 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 974 | } |
| 975 | } |
| 976 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 977 | void Instrumentation::MethodExitEventImpl(Thread* thread, |
| 978 | ObjPtr<mirror::Object> this_object, |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 979 | ArtMethod* method, |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 980 | uint32_t dex_pc, |
| 981 | const JValue& return_value) const { |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 982 | if (HasMethodExitListeners()) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 983 | Thread* self = Thread::Current(); |
| 984 | StackHandleScope<2> hs(self); |
| 985 | Handle<mirror::Object> thiz(hs.NewHandle(this_object)); |
| 986 | if (method->GetInterfaceMethodIfProxy(kRuntimePointerSize) |
| 987 | ->GetReturnTypePrimitive() != Primitive::kPrimNot) { |
| 988 | for (InstrumentationListener* listener : method_exit_listeners_) { |
| 989 | if (listener != nullptr) { |
| 990 | listener->MethodExited(thread, thiz, method, dex_pc, return_value); |
| 991 | } |
| 992 | } |
| 993 | } else { |
| 994 | Handle<mirror::Object> ret(hs.NewHandle(return_value.GetL())); |
| 995 | for (InstrumentationListener* listener : method_exit_listeners_) { |
| 996 | if (listener != nullptr) { |
| 997 | listener->MethodExited(thread, thiz, method, dex_pc, ret); |
| 998 | } |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 999 | } |
| 1000 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1001 | } |
| 1002 | } |
| 1003 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 1004 | void Instrumentation::MethodUnwindEvent(Thread* thread, |
| 1005 | mirror::Object* this_object, |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1006 | ArtMethod* method, |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1007 | uint32_t dex_pc) const { |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 1008 | if (HasMethodUnwindListeners()) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 1009 | Thread* self = Thread::Current(); |
| 1010 | StackHandleScope<1> hs(self); |
| 1011 | Handle<mirror::Object> thiz(hs.NewHandle(this_object)); |
| Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1012 | for (InstrumentationListener* listener : method_unwind_listeners_) { |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 1013 | if (listener != nullptr) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 1014 | listener->MethodUnwind(thread, thiz, method, dex_pc); |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 1015 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1016 | } |
| 1017 | } |
| 1018 | } |
| 1019 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 1020 | void Instrumentation::DexPcMovedEventImpl(Thread* thread, |
| 1021 | ObjPtr<mirror::Object> this_object, |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1022 | ArtMethod* method, |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1023 | uint32_t dex_pc) const { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 1024 | Thread* self = Thread::Current(); |
| 1025 | StackHandleScope<1> hs(self); |
| 1026 | Handle<mirror::Object> thiz(hs.NewHandle(this_object)); |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 1027 | for (InstrumentationListener* listener : dex_pc_listeners_) { |
| 1028 | if (listener != nullptr) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 1029 | listener->DexPcMoved(thread, thiz, method, dex_pc); |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 1030 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1031 | } |
| 1032 | } |
| 1033 | |
| Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 1034 | void Instrumentation::BranchImpl(Thread* thread, |
| 1035 | ArtMethod* method, |
| 1036 | uint32_t dex_pc, |
| 1037 | int32_t offset) const { |
| 1038 | for (InstrumentationListener* listener : branch_listeners_) { |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 1039 | if (listener != nullptr) { |
| Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 1040 | listener->Branch(thread, method, dex_pc, offset); |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 1041 | } |
| Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 1042 | } |
| 1043 | } |
| 1044 | |
| Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 1045 | void Instrumentation::InvokeVirtualOrInterfaceImpl(Thread* thread, |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 1046 | ObjPtr<mirror::Object> this_object, |
| Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 1047 | ArtMethod* caller, |
| 1048 | uint32_t dex_pc, |
| 1049 | ArtMethod* callee) const { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 1050 | Thread* self = Thread::Current(); |
| 1051 | StackHandleScope<1> hs(self); |
| 1052 | Handle<mirror::Object> thiz(hs.NewHandle(this_object)); |
| Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 1053 | for (InstrumentationListener* listener : invoke_virtual_or_interface_listeners_) { |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 1054 | if (listener != nullptr) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 1055 | listener->InvokeVirtualOrInterface(thread, thiz, caller, dex_pc, callee); |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 1056 | } |
| Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 1057 | } |
| 1058 | } |
| 1059 | |
| Alex Light | e814f9d | 2017-07-31 16:14:39 -0700 | [diff] [blame] | 1060 | void Instrumentation::WatchedFramePopImpl(Thread* thread, const ShadowFrame& frame) const { |
| 1061 | for (InstrumentationListener* listener : watched_frame_pop_listeners_) { |
| 1062 | if (listener != nullptr) { |
| 1063 | listener->WatchedFramePop(thread, frame); |
| 1064 | } |
| 1065 | } |
| 1066 | } |
| 1067 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 1068 | void Instrumentation::FieldReadEventImpl(Thread* thread, |
| 1069 | ObjPtr<mirror::Object> this_object, |
| 1070 | ArtMethod* method, |
| 1071 | uint32_t dex_pc, |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1072 | ArtField* field) const { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 1073 | Thread* self = Thread::Current(); |
| 1074 | StackHandleScope<1> hs(self); |
| 1075 | Handle<mirror::Object> thiz(hs.NewHandle(this_object)); |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 1076 | for (InstrumentationListener* listener : field_read_listeners_) { |
| 1077 | if (listener != nullptr) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 1078 | listener->FieldRead(thread, thiz, method, dex_pc, field); |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 1079 | } |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1080 | } |
| 1081 | } |
| 1082 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 1083 | void Instrumentation::FieldWriteEventImpl(Thread* thread, |
| 1084 | ObjPtr<mirror::Object> this_object, |
| 1085 | ArtMethod* method, |
| 1086 | uint32_t dex_pc, |
| 1087 | ArtField* field, |
| 1088 | const JValue& field_value) const { |
| 1089 | Thread* self = Thread::Current(); |
| 1090 | StackHandleScope<2> hs(self); |
| 1091 | Handle<mirror::Object> thiz(hs.NewHandle(this_object)); |
| 1092 | if (field->IsPrimitiveType()) { |
| 1093 | for (InstrumentationListener* listener : field_write_listeners_) { |
| 1094 | if (listener != nullptr) { |
| 1095 | listener->FieldWritten(thread, thiz, method, dex_pc, field, field_value); |
| 1096 | } |
| 1097 | } |
| 1098 | } else { |
| 1099 | Handle<mirror::Object> val(hs.NewHandle(field_value.GetL())); |
| 1100 | for (InstrumentationListener* listener : field_write_listeners_) { |
| 1101 | if (listener != nullptr) { |
| 1102 | listener->FieldWritten(thread, thiz, method, dex_pc, field, val); |
| 1103 | } |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 1104 | } |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1105 | } |
| 1106 | } |
| 1107 | |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 1108 | void Instrumentation::ExceptionThrownEvent(Thread* thread, |
| Sebastien Hertz | 947ff08 | 2013-09-17 14:10:13 +0200 | [diff] [blame] | 1109 | mirror::Throwable* exception_object) const { |
| Hiroshi Yamauchi | 3481f7a | 2017-02-10 12:07:36 -0800 | [diff] [blame] | 1110 | Thread* self = Thread::Current(); |
| 1111 | StackHandleScope<1> hs(self); |
| 1112 | Handle<mirror::Throwable> h_exception(hs.NewHandle(exception_object)); |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 1113 | if (HasExceptionThrownListeners()) { |
| Hiroshi Yamauchi | 3481f7a | 2017-02-10 12:07:36 -0800 | [diff] [blame] | 1114 | DCHECK_EQ(thread->GetException(), h_exception.Get()); |
| Jeff Hao | c0bd4da | 2013-04-11 15:52:28 -0700 | [diff] [blame] | 1115 | thread->ClearException(); |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 1116 | for (InstrumentationListener* listener : exception_thrown_listeners_) { |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 1117 | if (listener != nullptr) { |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 1118 | listener->ExceptionThrown(thread, h_exception); |
| Nicolas Geoffray | 514a616 | 2015-11-03 11:44:24 +0000 | [diff] [blame] | 1119 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1120 | } |
| Hiroshi Yamauchi | 3481f7a | 2017-02-10 12:07:36 -0800 | [diff] [blame] | 1121 | thread->SetException(h_exception.Get()); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1122 | } |
| 1123 | } |
| 1124 | |
| Sebastien Hertz | b2feaaf | 2015-10-12 13:40:10 +0000 | [diff] [blame] | 1125 | // Computes a frame ID by ignoring inlined frames. |
| 1126 | size_t Instrumentation::ComputeFrameId(Thread* self, |
| 1127 | size_t frame_depth, |
| 1128 | size_t inlined_frames_before_frame) { |
| 1129 | CHECK_GE(frame_depth, inlined_frames_before_frame); |
| 1130 | size_t no_inline_depth = frame_depth - inlined_frames_before_frame; |
| 1131 | return StackVisitor::ComputeNumFrames(self, kInstrumentationStackWalk) - no_inline_depth; |
| 1132 | } |
| 1133 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1134 | static void CheckStackDepth(Thread* self, const InstrumentationStackFrame& instrumentation_frame, |
| 1135 | int delta) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1136 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 1137 | size_t frame_id = StackVisitor::ComputeNumFrames(self, kInstrumentationStackWalk) + delta; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1138 | if (frame_id != instrumentation_frame.frame_id_) { |
| 1139 | LOG(ERROR) << "Expected frame_id=" << frame_id << " but found " |
| 1140 | << instrumentation_frame.frame_id_; |
| 1141 | StackVisitor::DescribeStack(self); |
| 1142 | CHECK_EQ(frame_id, instrumentation_frame.frame_id_); |
| 1143 | } |
| 1144 | } |
| 1145 | |
| 1146 | void Instrumentation::PushInstrumentationStackFrame(Thread* self, mirror::Object* this_object, |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1147 | ArtMethod* method, |
| Jeff Hao | 9a916d3 | 2013-06-27 18:45:37 -0700 | [diff] [blame] | 1148 | uintptr_t lr, bool interpreter_entry) { |
| Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 1149 | DCHECK(!self->IsExceptionPending()); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1150 | std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); |
| 1151 | if (kVerboseInstrumentation) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1152 | LOG(INFO) << "Entering " << ArtMethod::PrettyMethod(method) << " from PC " |
| 1153 | << reinterpret_cast<void*>(lr); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1154 | } |
| Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 1155 | |
| 1156 | // We send the enter event before pushing the instrumentation frame to make cleanup easier. If the |
| 1157 | // event causes an exception we can simply send the unwind event and return. |
| 1158 | StackHandleScope<1> hs(self); |
| 1159 | Handle<mirror::Object> h_this(hs.NewHandle(this_object)); |
| 1160 | if (!interpreter_entry) { |
| 1161 | MethodEnterEvent(self, h_this.Get(), method, 0); |
| 1162 | if (self->IsExceptionPending()) { |
| 1163 | MethodUnwindEvent(self, h_this.Get(), method, 0); |
| 1164 | return; |
| 1165 | } |
| 1166 | } |
| 1167 | |
| 1168 | // We have a callee-save frame meaning this value is guaranteed to never be 0. |
| 1169 | DCHECK(!self->IsExceptionPending()); |
| 1170 | size_t frame_id = StackVisitor::ComputeNumFrames(self, kInstrumentationStackWalk); |
| 1171 | |
| 1172 | instrumentation::InstrumentationStackFrame instrumentation_frame(h_this.Get(), method, lr, |
| Jeff Hao | 9a916d3 | 2013-06-27 18:45:37 -0700 | [diff] [blame] | 1173 | frame_id, interpreter_entry); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1174 | stack->push_front(instrumentation_frame); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1175 | } |
| 1176 | |
| Mingyao Yang | 2ee1790 | 2017-08-30 11:37:08 -0700 | [diff] [blame^] | 1177 | DeoptimizationMethodType Instrumentation::GetDeoptimizationMethodType(ArtMethod* method) { |
| 1178 | if (method->IsRuntimeMethod()) { |
| 1179 | // Certain methods have strict requirement on whether the dex instruction |
| 1180 | // should be re-executed upon deoptimization. |
| 1181 | if (method == Runtime::Current()->GetCalleeSaveMethod( |
| 1182 | CalleeSaveType::kSaveEverythingForClinit)) { |
| 1183 | return DeoptimizationMethodType::kKeepDexPc; |
| 1184 | } |
| 1185 | if (method == Runtime::Current()->GetCalleeSaveMethod( |
| 1186 | CalleeSaveType::kSaveEverythingForSuspendCheck)) { |
| 1187 | return DeoptimizationMethodType::kKeepDexPc; |
| 1188 | } |
| 1189 | } |
| 1190 | return DeoptimizationMethodType::kDefault; |
| 1191 | } |
| 1192 | |
| 1193 | // Try to get the shorty of a runtime method if it's an invocation stub. |
| 1194 | struct RuntimeMethodShortyVisitor : public StackVisitor { |
| 1195 | explicit RuntimeMethodShortyVisitor(Thread* thread) |
| 1196 | : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 1197 | shorty('V') {} |
| 1198 | |
| 1199 | bool VisitFrame() REQUIRES_SHARED(Locks::mutator_lock_) { |
| 1200 | ArtMethod* m = GetMethod(); |
| 1201 | if (m != nullptr && !m->IsRuntimeMethod()) { |
| 1202 | // The first Java method. |
| 1203 | if (m->IsNative()) { |
| 1204 | // Use JNI method's shorty for the jni stub. |
| 1205 | shorty = m->GetShorty()[0]; |
| 1206 | return false; |
| 1207 | } |
| 1208 | if (m->IsProxyMethod()) { |
| 1209 | // Proxy method just invokes its proxied method via |
| 1210 | // art_quick_proxy_invoke_handler. |
| 1211 | shorty = m->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty()[0]; |
| 1212 | return false; |
| 1213 | } |
| 1214 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
| 1215 | const Instruction* instr = Instruction::At(&code_item->insns_[GetDexPc()]); |
| 1216 | if (instr->IsInvoke()) { |
| 1217 | const DexFile* dex_file = m->GetDexFile(); |
| 1218 | if (interpreter::IsStringInit(dex_file, instr->VRegB())) { |
| 1219 | // Invoking string init constructor is turned into invoking |
| 1220 | // StringFactory.newStringFromChars() which returns a string. |
| 1221 | shorty = 'L'; |
| 1222 | return false; |
| 1223 | } |
| 1224 | // A regular invoke, use callee's shorty. |
| 1225 | uint32_t method_idx = instr->VRegB(); |
| 1226 | shorty = dex_file->GetMethodShorty(method_idx)[0]; |
| 1227 | } |
| 1228 | // Stop stack walking since we've seen a Java frame. |
| 1229 | return false; |
| 1230 | } |
| 1231 | return true; |
| 1232 | } |
| 1233 | |
| 1234 | char shorty; |
| 1235 | }; |
| 1236 | |
| Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 1237 | TwoWordReturn Instrumentation::PopInstrumentationStackFrame(Thread* self, |
| 1238 | uintptr_t* return_pc, |
| 1239 | uint64_t* gpr_result, |
| 1240 | uint64_t* fpr_result) { |
| 1241 | DCHECK(gpr_result != nullptr); |
| 1242 | DCHECK(fpr_result != nullptr); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1243 | // Do the pop. |
| 1244 | std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); |
| 1245 | CHECK_GT(stack->size(), 0U); |
| 1246 | InstrumentationStackFrame instrumentation_frame = stack->front(); |
| 1247 | stack->pop_front(); |
| 1248 | |
| 1249 | // Set return PC and check the sanity of the stack. |
| 1250 | *return_pc = instrumentation_frame.return_pc_; |
| 1251 | CheckStackDepth(self, instrumentation_frame, 0); |
| Ian Rogers | 1d8cdbc | 2014-09-22 22:51:09 -0700 | [diff] [blame] | 1252 | self->VerifyStack(); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1253 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1254 | ArtMethod* method = instrumentation_frame.method_; |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1255 | uint32_t length; |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 1256 | const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize(); |
| Mingyao Yang | 2ee1790 | 2017-08-30 11:37:08 -0700 | [diff] [blame^] | 1257 | char return_shorty; |
| 1258 | |
| 1259 | // Runtime method does not call into MethodExitEvent() so there should not be |
| 1260 | // suspension point below. |
| 1261 | ScopedAssertNoThreadSuspension ants(__FUNCTION__, method->IsRuntimeMethod()); |
| 1262 | if (method->IsRuntimeMethod()) { |
| 1263 | if (method != Runtime::Current()->GetCalleeSaveMethod( |
| 1264 | CalleeSaveType::kSaveEverythingForClinit)) { |
| 1265 | // If the caller is at an invocation point and the runtime method is not |
| 1266 | // for clinit, we need to pass return results to the caller. |
| 1267 | // We need the correct shorty to decide whether we need to pass the return |
| 1268 | // result for deoptimization below. |
| 1269 | RuntimeMethodShortyVisitor visitor(self); |
| 1270 | visitor.WalkStack(); |
| 1271 | return_shorty = visitor.shorty; |
| 1272 | } else { |
| 1273 | // Some runtime methods such as allocations, unresolved field getters, etc. |
| 1274 | // have return value. We don't need to set return_value since MethodExitEvent() |
| 1275 | // below isn't called for runtime methods. Deoptimization doesn't need the |
| 1276 | // value either since the dex instruction will be re-executed by the |
| 1277 | // interpreter, except these two cases: |
| 1278 | // (1) For an invoke, which is handled above to get the correct shorty. |
| 1279 | // (2) For MONITOR_ENTER/EXIT, which cannot be re-executed since it's not |
| 1280 | // idempotent. However there is no return value for it anyway. |
| 1281 | return_shorty = 'V'; |
| 1282 | } |
| 1283 | } else { |
| 1284 | return_shorty = method->GetInterfaceMethodIfProxy(pointer_size)->GetShorty(&length)[0]; |
| 1285 | } |
| 1286 | |
| Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 1287 | bool is_ref = return_shorty == '[' || return_shorty == 'L'; |
| 1288 | StackHandleScope<1> hs(self); |
| 1289 | MutableHandle<mirror::Object> res(hs.NewHandle<mirror::Object>(nullptr)); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1290 | JValue return_value; |
| 1291 | if (return_shorty == 'V') { |
| 1292 | return_value.SetJ(0); |
| 1293 | } else if (return_shorty == 'F' || return_shorty == 'D') { |
| Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 1294 | return_value.SetJ(*fpr_result); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1295 | } else { |
| Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 1296 | return_value.SetJ(*gpr_result); |
| 1297 | } |
| 1298 | if (is_ref) { |
| 1299 | // Take a handle to the return value so we won't lose it if we suspend. |
| 1300 | res.Assign(return_value.GetL()); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1301 | } |
| 1302 | // TODO: improve the dex pc information here, requires knowledge of current PC as opposed to |
| 1303 | // return_pc. |
| 1304 | uint32_t dex_pc = DexFile::kDexNoIndex; |
| 1305 | mirror::Object* this_object = instrumentation_frame.this_object_; |
| Mingyao Yang | 2ee1790 | 2017-08-30 11:37:08 -0700 | [diff] [blame^] | 1306 | if (!method->IsRuntimeMethod() && !instrumentation_frame.interpreter_entry_) { |
| Sebastien Hertz | 320deb2 | 2014-06-11 19:45:05 +0200 | [diff] [blame] | 1307 | MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value); |
| 1308 | } |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 1309 | |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 1310 | // Deoptimize if the caller needs to continue execution in the interpreter. Do nothing if we get |
| 1311 | // back to an upcall. |
| 1312 | NthCallerVisitor visitor(self, 1, true); |
| 1313 | visitor.WalkStack(true); |
| Sebastien Hertz | 270a0e1 | 2015-01-16 19:49:09 +0100 | [diff] [blame] | 1314 | bool deoptimize = (visitor.caller != nullptr) && |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 1315 | (interpreter_stubs_installed_ || IsDeoptimized(visitor.caller) || |
| 1316 | Dbg::IsForcedInterpreterNeededForUpcall(self, visitor.caller)); |
| Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 1317 | if (is_ref) { |
| 1318 | // Restore the return value if it's a reference since it might have moved. |
| 1319 | *reinterpret_cast<mirror::Object**>(gpr_result) = res.Get(); |
| 1320 | } |
| Nicolas Geoffray | a0619e2 | 2016-12-20 13:57:43 +0000 | [diff] [blame] | 1321 | if (deoptimize && Runtime::Current()->IsAsyncDeoptimizeable(*return_pc)) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1322 | if (kVerboseInstrumentation) { |
| Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 1323 | LOG(INFO) << "Deoptimizing " |
| 1324 | << visitor.caller->PrettyMethod() |
| 1325 | << " by returning from " |
| 1326 | << method->PrettyMethod() |
| 1327 | << " with result " |
| 1328 | << std::hex << return_value.GetJ() << std::dec |
| 1329 | << " in " |
| 1330 | << *self; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1331 | } |
| Mingyao Yang | 2ee1790 | 2017-08-30 11:37:08 -0700 | [diff] [blame^] | 1332 | DeoptimizationMethodType deopt_method_type = GetDeoptimizationMethodType(method); |
| Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 1333 | self->PushDeoptimizationContext(return_value, |
| Mingyao Yang | 2ee1790 | 2017-08-30 11:37:08 -0700 | [diff] [blame^] | 1334 | return_shorty == 'L' || return_shorty == '[', |
| 1335 | nullptr /* no pending exception */, |
| Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 1336 | false /* from_code */, |
| Mingyao Yang | 2ee1790 | 2017-08-30 11:37:08 -0700 | [diff] [blame^] | 1337 | deopt_method_type); |
| Andreas Gampe | d58342c | 2014-06-05 14:18:08 -0700 | [diff] [blame] | 1338 | return GetTwoWordSuccessValue(*return_pc, |
| 1339 | reinterpret_cast<uintptr_t>(GetQuickDeoptimizationEntryPoint())); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1340 | } else { |
| Nicolas Geoffray | a0619e2 | 2016-12-20 13:57:43 +0000 | [diff] [blame] | 1341 | if (deoptimize && !Runtime::Current()->IsAsyncDeoptimizeable(*return_pc)) { |
| 1342 | LOG(WARNING) << "Got a deoptimization request on un-deoptimizable " << method->PrettyMethod() |
| 1343 | << " at PC " << reinterpret_cast<void*>(*return_pc); |
| 1344 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1345 | if (kVerboseInstrumentation) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1346 | LOG(INFO) << "Returning from " << method->PrettyMethod() |
| Brian Carlstrom | 2d88862 | 2013-07-18 17:02:00 -0700 | [diff] [blame] | 1347 | << " to PC " << reinterpret_cast<void*>(*return_pc); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1348 | } |
| Andreas Gampe | d58342c | 2014-06-05 14:18:08 -0700 | [diff] [blame] | 1349 | return GetTwoWordSuccessValue(0, *return_pc); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1350 | } |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 1351 | } |
| 1352 | |
| Mingyao Yang | f711f2c | 2016-05-23 12:29:39 -0700 | [diff] [blame] | 1353 | uintptr_t Instrumentation::PopMethodForUnwind(Thread* self, bool is_deoptimization) const { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1354 | // Do the pop. |
| 1355 | std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); |
| 1356 | CHECK_GT(stack->size(), 0U); |
| Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 1357 | size_t idx = stack->size(); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1358 | InstrumentationStackFrame instrumentation_frame = stack->front(); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1359 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1360 | ArtMethod* method = instrumentation_frame.method_; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1361 | if (is_deoptimization) { |
| 1362 | if (kVerboseInstrumentation) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1363 | LOG(INFO) << "Popping for deoptimization " << ArtMethod::PrettyMethod(method); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1364 | } |
| 1365 | } else { |
| 1366 | if (kVerboseInstrumentation) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1367 | LOG(INFO) << "Popping for unwind " << ArtMethod::PrettyMethod(method); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1368 | } |
| 1369 | |
| 1370 | // Notify listeners of method unwind. |
| 1371 | // TODO: improve the dex pc information here, requires knowledge of current PC as opposed to |
| 1372 | // return_pc. |
| 1373 | uint32_t dex_pc = DexFile::kDexNoIndex; |
| Mingyao Yang | 2ee1790 | 2017-08-30 11:37:08 -0700 | [diff] [blame^] | 1374 | if (!method->IsRuntimeMethod()) { |
| 1375 | MethodUnwindEvent(self, instrumentation_frame.this_object_, method, dex_pc); |
| 1376 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1377 | } |
| Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 1378 | // TODO: bring back CheckStackDepth(self, instrumentation_frame, 2); |
| 1379 | CHECK_EQ(stack->size(), idx); |
| 1380 | DCHECK(instrumentation_frame.method_ == stack->front().method_); |
| 1381 | stack->pop_front(); |
| Mingyao Yang | f711f2c | 2016-05-23 12:29:39 -0700 | [diff] [blame] | 1382 | return instrumentation_frame.return_pc_; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1383 | } |
| 1384 | |
| 1385 | std::string InstrumentationStackFrame::Dump() const { |
| 1386 | std::ostringstream os; |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1387 | os << "Frame " << frame_id_ << " " << ArtMethod::PrettyMethod(method_) << ":" |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1388 | << reinterpret_cast<void*>(return_pc_) << " this=" << reinterpret_cast<void*>(this_object_); |
| 1389 | return os.str(); |
| 1390 | } |
| 1391 | |
| 1392 | } // namespace instrumentation |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 1393 | } // namespace art |