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