| 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 | |
| 19 | #include <sys/uio.h> |
| 20 | |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 21 | #include "atomic.h" |
| Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 22 | #include "base/unix_file/fd_file.h" |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 23 | #include "class_linker.h" |
| 24 | #include "debugger.h" |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 25 | #include "dex_file-inl.h" |
| Mathieu Chartier | d889178 | 2014-03-02 13:28:37 -0800 | [diff] [blame] | 26 | #include "entrypoints/quick/quick_alloc_entrypoints.h" |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 27 | #include "interpreter/interpreter.h" |
| Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 28 | #include "mirror/art_method-inl.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 29 | #include "mirror/class-inl.h" |
| 30 | #include "mirror/dex_cache.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 31 | #include "mirror/object_array-inl.h" |
| Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 32 | #include "mirror/object-inl.h" |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 33 | #include "nth_caller_visitor.h" |
| Ian Rogers | c928de9 | 2013-02-27 14:30:44 -0800 | [diff] [blame] | 34 | #if !defined(ART_USE_PORTABLE_COMPILER) |
| Ian Rogers | 166db04 | 2013-07-26 12:05:57 -0700 | [diff] [blame] | 35 | #include "entrypoints/quick/quick_entrypoints.h" |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 36 | #endif |
| 37 | #include "object_utils.h" |
| 38 | #include "os.h" |
| 39 | #include "scoped_thread_state_change.h" |
| 40 | #include "thread.h" |
| 41 | #include "thread_list.h" |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 42 | |
| 43 | namespace art { |
| Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 44 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 45 | namespace instrumentation { |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 46 | |
| Sebastien Hertz | 5bfd5c9 | 2013-11-15 11:36:07 +0100 | [diff] [blame] | 47 | const bool kVerboseInstrumentation = false; |
| 48 | |
| Ian Rogers | 816432e | 2013-09-06 15:47:45 -0700 | [diff] [blame] | 49 | // Do we want to deoptimize for method entry and exit listeners or just try to intercept |
| 50 | // invocations? Deoptimization forces all code to run in the interpreter and considerably hurts the |
| 51 | // application's performance. |
| Ian Rogers | 7b6da36 | 2013-09-11 09:29:40 -0700 | [diff] [blame] | 52 | static constexpr bool kDeoptimizeForAccurateMethodEntryExitListeners = false; |
| Ian Rogers | 816432e | 2013-09-06 15:47:45 -0700 | [diff] [blame] | 53 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 54 | static bool InstallStubsClassVisitor(mirror::Class* klass, void* arg) |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 55 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 56 | Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg); |
| 57 | return instrumentation->InstallStubsForClass(klass); |
| 58 | } |
| 59 | |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 60 | Instrumentation::Instrumentation() |
| 61 | : instrumentation_stubs_installed_(false), entry_exit_stubs_installed_(false), |
| 62 | interpreter_stubs_installed_(false), |
| 63 | interpret_only_(false), forced_interpret_only_(false), |
| 64 | have_method_entry_listeners_(false), have_method_exit_listeners_(false), |
| 65 | have_method_unwind_listeners_(false), have_dex_pc_listeners_(false), |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 66 | have_field_read_listeners_(false), have_field_write_listeners_(false), |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 67 | have_exception_caught_listeners_(false), |
| 68 | deoptimized_methods_lock_("deoptimized methods lock"), |
| 69 | deoptimization_enabled_(false), |
| 70 | interpreter_handler_table_(kMainHandlerTable), |
| 71 | quick_alloc_entry_points_instrumentation_counter_(0) { |
| 72 | } |
| 73 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 74 | bool Instrumentation::InstallStubsForClass(mirror::Class* klass) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 75 | for (size_t i = 0, e = klass->NumDirectMethods(); i < e; i++) { |
| 76 | InstallStubsForMethod(klass->GetDirectMethod(i)); |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 77 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 78 | for (size_t i = 0, e = klass->NumVirtualMethods(); i < e; i++) { |
| 79 | InstallStubsForMethod(klass->GetVirtualMethod(i)); |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 80 | } |
| 81 | return true; |
| 82 | } |
| 83 | |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 84 | static void UpdateEntrypoints(mirror::ArtMethod* method, const void* quick_code, |
| 85 | const void* portable_code, bool have_portable_code) |
| 86 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 87 | method->SetEntryPointFromPortableCompiledCode(portable_code); |
| 88 | method->SetEntryPointFromQuickCompiledCode(quick_code); |
| 89 | bool portable_enabled = method->IsPortableCompiled(); |
| 90 | if (have_portable_code && !portable_enabled) { |
| 91 | method->SetIsPortableCompiled(); |
| 92 | } else if (portable_enabled) { |
| 93 | method->ClearIsPortableCompiled(); |
| 94 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 95 | if (!method->IsResolutionMethod()) { |
| Hiroshi Yamauchi | 563b47c | 2014-02-28 17:18:37 -0800 | [diff] [blame] | 96 | if (quick_code == GetQuickToInterpreterBridge() || |
| Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 97 | quick_code == GetQuickToInterpreterBridgeTrampoline(Runtime::Current()->GetClassLinker()) || |
| Hiroshi Yamauchi | 563b47c | 2014-02-28 17:18:37 -0800 | [diff] [blame] | 98 | (quick_code == GetQuickResolutionTrampoline(Runtime::Current()->GetClassLinker()) && |
| 99 | Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly() |
| 100 | && !method->IsNative() && !method->IsProxyMethod())) { |
| 101 | if (kIsDebugBuild) { |
| 102 | if (quick_code == GetQuickToInterpreterBridge()) { |
| 103 | DCHECK(portable_code == GetPortableToInterpreterBridge()); |
| 104 | } else if (quick_code == GetQuickResolutionTrampoline(Runtime::Current()->GetClassLinker())) { |
| 105 | DCHECK(portable_code == GetPortableResolutionTrampoline(Runtime::Current()->GetClassLinker())); |
| 106 | } |
| 107 | } |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 108 | DCHECK(!method->IsNative()) << PrettyMethod(method); |
| Hiroshi Yamauchi | 563b47c | 2014-02-28 17:18:37 -0800 | [diff] [blame] | 109 | DCHECK(!method->IsProxyMethod()) << PrettyMethod(method); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 110 | method->SetEntryPointFromInterpreter(art::interpreter::artInterpreterToInterpreterBridge); |
| 111 | } else { |
| 112 | method->SetEntryPointFromInterpreter(art::artInterpreterToCompiledCodeBridge); |
| 113 | } |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | void Instrumentation::InstallStubsForMethod(mirror::ArtMethod* method) { |
| 118 | if (method->IsAbstract() || method->IsProxyMethod()) { |
| 119 | // Do not change stubs for these methods. |
| 120 | return; |
| 121 | } |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 122 | const void* new_portable_code; |
| 123 | const void* new_quick_code; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 124 | bool uninstall = !entry_exit_stubs_installed_ && !interpreter_stubs_installed_; |
| 125 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 126 | bool is_class_initialized = method->GetDeclaringClass()->IsInitialized(); |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 127 | bool have_portable_code = false; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 128 | if (uninstall) { |
| 129 | if ((forced_interpret_only_ || IsDeoptimized(method)) && !method->IsNative()) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 130 | new_portable_code = GetPortableToInterpreterBridge(); |
| 131 | new_quick_code = GetQuickToInterpreterBridge(); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 132 | } else if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 133 | new_portable_code = class_linker->GetPortableOatCodeFor(method, &have_portable_code); |
| 134 | new_quick_code = class_linker->GetQuickOatCodeFor(method); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 135 | } else { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 136 | new_portable_code = GetPortableResolutionTrampoline(class_linker); |
| 137 | new_quick_code = GetQuickResolutionTrampoline(class_linker); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 138 | } |
| 139 | } else { // !uninstall |
| Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame^] | 140 | if ((interpreter_stubs_installed_ || forced_interpret_only_ || IsDeoptimized(method)) && |
| 141 | !method->IsNative()) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 142 | new_portable_code = GetPortableToInterpreterBridge(); |
| 143 | new_quick_code = GetQuickToInterpreterBridge(); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 144 | } else { |
| 145 | // Do not overwrite resolution trampoline. When the trampoline initializes the method's |
| 146 | // class, all its static methods code will be set to the instrumentation entry point. |
| 147 | // For more details, see ClassLinker::FixupStaticTrampolines. |
| 148 | if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) { |
| 149 | // Do not overwrite interpreter to prevent from posting method entry/exit events twice. |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 150 | new_portable_code = class_linker->GetPortableOatCodeFor(method, &have_portable_code); |
| 151 | new_quick_code = class_linker->GetQuickOatCodeFor(method); |
| Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 152 | DCHECK(new_quick_code != GetQuickToInterpreterBridgeTrampoline(class_linker)); |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 153 | if (entry_exit_stubs_installed_ && new_quick_code != GetQuickToInterpreterBridge()) { |
| Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame^] | 154 | // TODO: portable to quick bridge. Bug: 8196384. We cannot enable the check below as long |
| 155 | // as GetPortableToQuickBridge() == GetPortableToInterpreterBridge(). |
| 156 | // DCHECK(new_portable_code != GetPortableToInterpreterBridge()); |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 157 | new_portable_code = GetPortableToInterpreterBridge(); |
| 158 | new_quick_code = GetQuickInstrumentationEntryPoint(); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 159 | } |
| 160 | } else { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 161 | new_portable_code = GetPortableResolutionTrampoline(class_linker); |
| 162 | new_quick_code = GetQuickResolutionTrampoline(class_linker); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 163 | } |
| 164 | } |
| 165 | } |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 166 | UpdateEntrypoints(method, new_quick_code, new_portable_code, have_portable_code); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 167 | } |
| 168 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 169 | // Places the instrumentation exit pc as the return PC for every quick frame. This also allows |
| 170 | // deoptimization of quick frames to interpreter frames. |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 171 | // Since we may already have done this previously, we need to push new instrumentation frame before |
| 172 | // existing instrumentation frames. |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 173 | static void InstrumentationInstallStack(Thread* thread, void* arg) |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 174 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 175 | struct InstallStackVisitor : public StackVisitor { |
| Sebastien Hertz | 11d40c2 | 2014-02-19 18:00:17 +0100 | [diff] [blame] | 176 | InstallStackVisitor(Thread* thread, Context* context, uintptr_t instrumentation_exit_pc) |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 177 | : StackVisitor(thread, context), instrumentation_stack_(thread->GetInstrumentationStack()), |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 178 | existing_instrumentation_frames_count_(instrumentation_stack_->size()), |
| 179 | instrumentation_exit_pc_(instrumentation_exit_pc), |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 180 | reached_existing_instrumentation_frames_(false), instrumentation_stack_depth_(0), |
| 181 | last_return_pc_(0) { |
| 182 | } |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 183 | |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 184 | virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 185 | mirror::ArtMethod* m = GetMethod(); |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 186 | if (m == NULL) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 187 | if (kVerboseInstrumentation) { |
| 188 | LOG(INFO) << " Skipping upcall. Frame " << GetFrameId(); |
| 189 | } |
| 190 | last_return_pc_ = 0; |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 191 | return true; // Ignore upcalls. |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 192 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 193 | if (m->IsRuntimeMethod()) { |
| 194 | if (kVerboseInstrumentation) { |
| 195 | LOG(INFO) << " Skipping runtime method. Frame " << GetFrameId(); |
| 196 | } |
| 197 | last_return_pc_ = GetReturnPc(); |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 198 | return true; // Ignore unresolved methods since they will be instrumented after resolution. |
| 199 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 200 | if (kVerboseInstrumentation) { |
| 201 | LOG(INFO) << " Installing exit stub in " << DescribeLocation(); |
| 202 | } |
| Jeff Hao | a15a81b | 2014-05-27 18:25:47 -0700 | [diff] [blame] | 203 | if (GetCurrentQuickFrame() == NULL) { |
| 204 | InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, 0, GetFrameId(), false); |
| 205 | if (kVerboseInstrumentation) { |
| 206 | LOG(INFO) << "Pushing shadow frame " << instrumentation_frame.Dump(); |
| 207 | } |
| 208 | shadow_stack_.push_back(instrumentation_frame); |
| 209 | return true; // Continue. |
| 210 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 211 | uintptr_t return_pc = GetReturnPc(); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 212 | if (return_pc == instrumentation_exit_pc_) { |
| 213 | // We've reached a frame which has already been installed with instrumentation exit stub. |
| 214 | // We should have already installed instrumentation on previous frames. |
| 215 | reached_existing_instrumentation_frames_ = true; |
| 216 | |
| 217 | CHECK_LT(instrumentation_stack_depth_, instrumentation_stack_->size()); |
| 218 | const InstrumentationStackFrame& frame = instrumentation_stack_->at(instrumentation_stack_depth_); |
| 219 | CHECK_EQ(m, frame.method_) << "Expected " << PrettyMethod(m) |
| 220 | << ", Found " << PrettyMethod(frame.method_); |
| 221 | return_pc = frame.return_pc_; |
| 222 | if (kVerboseInstrumentation) { |
| 223 | LOG(INFO) << "Ignoring already instrumented " << frame.Dump(); |
| 224 | } |
| 225 | } else { |
| 226 | CHECK_NE(return_pc, 0U); |
| 227 | CHECK(!reached_existing_instrumentation_frames_); |
| 228 | InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, return_pc, GetFrameId(), |
| 229 | false); |
| 230 | if (kVerboseInstrumentation) { |
| 231 | LOG(INFO) << "Pushing frame " << instrumentation_frame.Dump(); |
| 232 | } |
| 233 | |
| 234 | // Insert frame before old ones so we do not corrupt the instrumentation stack. |
| 235 | auto it = instrumentation_stack_->end() - existing_instrumentation_frames_count_; |
| 236 | instrumentation_stack_->insert(it, instrumentation_frame); |
| 237 | SetReturnPc(instrumentation_exit_pc_); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 238 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 239 | dex_pcs_.push_back(m->ToDexPc(last_return_pc_)); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 240 | last_return_pc_ = return_pc; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 241 | ++instrumentation_stack_depth_; |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 242 | return true; // Continue. |
| 243 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 244 | std::deque<InstrumentationStackFrame>* const instrumentation_stack_; |
| Jeff Hao | a15a81b | 2014-05-27 18:25:47 -0700 | [diff] [blame] | 245 | std::vector<InstrumentationStackFrame> shadow_stack_; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 246 | const size_t existing_instrumentation_frames_count_; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 247 | std::vector<uint32_t> dex_pcs_; |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 248 | const uintptr_t instrumentation_exit_pc_; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 249 | bool reached_existing_instrumentation_frames_; |
| 250 | size_t instrumentation_stack_depth_; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 251 | uintptr_t last_return_pc_; |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 252 | }; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 253 | if (kVerboseInstrumentation) { |
| 254 | std::string thread_name; |
| 255 | thread->GetThreadName(thread_name); |
| 256 | LOG(INFO) << "Installing exit stubs in " << thread_name; |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 257 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 258 | |
| 259 | Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg); |
| Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 260 | std::unique_ptr<Context> context(Context::Create()); |
| Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 261 | uintptr_t instrumentation_exit_pc = GetQuickInstrumentationExitPc(); |
| Sebastien Hertz | 11d40c2 | 2014-02-19 18:00:17 +0100 | [diff] [blame] | 262 | InstallStackVisitor visitor(thread, context.get(), instrumentation_exit_pc); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 263 | visitor.WalkStack(true); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 264 | CHECK_EQ(visitor.dex_pcs_.size(), thread->GetInstrumentationStack()->size()); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 265 | |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 266 | if (instrumentation->ShouldNotifyMethodEnterExitEvents()) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 267 | // Create method enter events for all methods currently on the thread's stack. We only do this |
| 268 | // if no debugger is attached to prevent from posting events twice. |
| Jeff Hao | a15a81b | 2014-05-27 18:25:47 -0700 | [diff] [blame] | 269 | auto ssi = visitor.shadow_stack_.rbegin(); |
| 270 | for (auto isi = thread->GetInstrumentationStack()->rbegin(), |
| 271 | end = thread->GetInstrumentationStack()->rend(); isi != end; ++isi) { |
| 272 | while (ssi != visitor.shadow_stack_.rend() && (*ssi).frame_id_ < (*isi).frame_id_) { |
| 273 | instrumentation->MethodEnterEvent(thread, (*ssi).this_object_, (*ssi).method_, 0); |
| 274 | ++ssi; |
| 275 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 276 | uint32_t dex_pc = visitor.dex_pcs_.back(); |
| 277 | visitor.dex_pcs_.pop_back(); |
| Jeff Hao | a15a81b | 2014-05-27 18:25:47 -0700 | [diff] [blame] | 278 | instrumentation->MethodEnterEvent(thread, (*isi).this_object_, (*isi).method_, dex_pc); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 279 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 280 | } |
| 281 | thread->VerifyStack(); |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 282 | } |
| 283 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 284 | // Removes the instrumentation exit pc as the return PC for every quick frame. |
| 285 | static void InstrumentationRestoreStack(Thread* thread, void* arg) |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 286 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 287 | struct RestoreStackVisitor : public StackVisitor { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 288 | RestoreStackVisitor(Thread* thread, uintptr_t instrumentation_exit_pc, |
| 289 | Instrumentation* instrumentation) |
| 290 | : StackVisitor(thread, NULL), thread_(thread), |
| 291 | instrumentation_exit_pc_(instrumentation_exit_pc), |
| 292 | instrumentation_(instrumentation), |
| 293 | instrumentation_stack_(thread->GetInstrumentationStack()), |
| 294 | frames_removed_(0) {} |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 295 | |
| 296 | virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 297 | if (instrumentation_stack_->size() == 0) { |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 298 | return false; // Stop. |
| 299 | } |
| Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 300 | mirror::ArtMethod* m = GetMethod(); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 301 | if (GetCurrentQuickFrame() == NULL) { |
| 302 | if (kVerboseInstrumentation) { |
| 303 | LOG(INFO) << " Ignoring a shadow frame. Frame " << GetFrameId() << " Method=" << PrettyMethod(m); |
| 304 | } |
| 305 | return true; // Ignore shadow frames. |
| 306 | } |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 307 | if (m == NULL) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 308 | if (kVerboseInstrumentation) { |
| 309 | LOG(INFO) << " Skipping upcall. Frame " << GetFrameId(); |
| 310 | } |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 311 | return true; // Ignore upcalls. |
| 312 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 313 | bool removed_stub = false; |
| 314 | // TODO: make this search more efficient? |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 315 | const size_t frameId = GetFrameId(); |
| 316 | for (const InstrumentationStackFrame& instrumentation_frame : *instrumentation_stack_) { |
| 317 | if (instrumentation_frame.frame_id_ == frameId) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 318 | if (kVerboseInstrumentation) { |
| 319 | LOG(INFO) << " Removing exit stub in " << DescribeLocation(); |
| 320 | } |
| Jeff Hao | 9a916d3 | 2013-06-27 18:45:37 -0700 | [diff] [blame] | 321 | if (instrumentation_frame.interpreter_entry_) { |
| 322 | CHECK(m == Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs)); |
| 323 | } else { |
| 324 | CHECK(m == instrumentation_frame.method_) << PrettyMethod(m); |
| 325 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 326 | SetReturnPc(instrumentation_frame.return_pc_); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 327 | if (instrumentation_->ShouldNotifyMethodEnterExitEvents()) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 328 | // Create the method exit events. As the methods didn't really exit the result is 0. |
| 329 | // We only do this if no debugger is attached to prevent from posting events twice. |
| 330 | instrumentation_->MethodExitEvent(thread_, instrumentation_frame.this_object_, m, |
| 331 | GetDexPc(), JValue()); |
| 332 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 333 | frames_removed_++; |
| 334 | removed_stub = true; |
| 335 | break; |
| 336 | } |
| 337 | } |
| 338 | if (!removed_stub) { |
| 339 | if (kVerboseInstrumentation) { |
| 340 | LOG(INFO) << " No exit stub in " << DescribeLocation(); |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 341 | } |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 342 | } |
| 343 | return true; // Continue. |
| 344 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 345 | Thread* const thread_; |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 346 | const uintptr_t instrumentation_exit_pc_; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 347 | Instrumentation* const instrumentation_; |
| 348 | std::deque<instrumentation::InstrumentationStackFrame>* const instrumentation_stack_; |
| 349 | size_t frames_removed_; |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 350 | }; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 351 | if (kVerboseInstrumentation) { |
| 352 | std::string thread_name; |
| 353 | thread->GetThreadName(thread_name); |
| 354 | LOG(INFO) << "Removing exit stubs in " << thread_name; |
| 355 | } |
| 356 | std::deque<instrumentation::InstrumentationStackFrame>* stack = thread->GetInstrumentationStack(); |
| 357 | if (stack->size() > 0) { |
| 358 | Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg); |
| Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 359 | uintptr_t instrumentation_exit_pc = GetQuickInstrumentationExitPc(); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 360 | RestoreStackVisitor visitor(thread, instrumentation_exit_pc, instrumentation); |
| 361 | visitor.WalkStack(true); |
| 362 | CHECK_EQ(visitor.frames_removed_, stack->size()); |
| 363 | while (stack->size() > 0) { |
| 364 | stack->pop_front(); |
| 365 | } |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 366 | } |
| 367 | } |
| 368 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 369 | void Instrumentation::AddListener(InstrumentationListener* listener, uint32_t events) { |
| 370 | Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current()); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 371 | if ((events & kMethodEntered) != 0) { |
| 372 | method_entry_listeners_.push_back(listener); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 373 | have_method_entry_listeners_ = true; |
| 374 | } |
| 375 | if ((events & kMethodExited) != 0) { |
| 376 | method_exit_listeners_.push_back(listener); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 377 | have_method_exit_listeners_ = true; |
| 378 | } |
| 379 | if ((events & kMethodUnwind) != 0) { |
| 380 | method_unwind_listeners_.push_back(listener); |
| 381 | have_method_unwind_listeners_ = true; |
| 382 | } |
| 383 | if ((events & kDexPcMoved) != 0) { |
| 384 | dex_pc_listeners_.push_back(listener); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 385 | have_dex_pc_listeners_ = true; |
| 386 | } |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 387 | if ((events & kFieldRead) != 0) { |
| 388 | field_read_listeners_.push_back(listener); |
| 389 | have_field_read_listeners_ = true; |
| 390 | } |
| 391 | if ((events & kFieldWritten) != 0) { |
| 392 | field_write_listeners_.push_back(listener); |
| 393 | have_field_write_listeners_ = true; |
| 394 | } |
| Jeff Hao | 14dd5a8 | 2013-04-11 10:23:36 -0700 | [diff] [blame] | 395 | if ((events & kExceptionCaught) != 0) { |
| 396 | exception_caught_listeners_.push_back(listener); |
| 397 | have_exception_caught_listeners_ = true; |
| 398 | } |
| Sebastien Hertz | ee1997a | 2013-09-19 14:47:09 +0200 | [diff] [blame] | 399 | UpdateInterpreterHandlerTable(); |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 400 | } |
| 401 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 402 | void Instrumentation::RemoveListener(InstrumentationListener* listener, uint32_t events) { |
| 403 | Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current()); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 404 | |
| 405 | if ((events & kMethodEntered) != 0) { |
| 406 | bool contains = std::find(method_entry_listeners_.begin(), method_entry_listeners_.end(), |
| 407 | listener) != method_entry_listeners_.end(); |
| 408 | if (contains) { |
| 409 | method_entry_listeners_.remove(listener); |
| 410 | } |
| 411 | have_method_entry_listeners_ = method_entry_listeners_.size() > 0; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 412 | } |
| 413 | if ((events & kMethodExited) != 0) { |
| 414 | bool contains = std::find(method_exit_listeners_.begin(), method_exit_listeners_.end(), |
| 415 | listener) != method_exit_listeners_.end(); |
| 416 | if (contains) { |
| 417 | method_exit_listeners_.remove(listener); |
| 418 | } |
| 419 | have_method_exit_listeners_ = method_exit_listeners_.size() > 0; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 420 | } |
| 421 | if ((events & kMethodUnwind) != 0) { |
| 422 | method_unwind_listeners_.remove(listener); |
| 423 | } |
| 424 | if ((events & kDexPcMoved) != 0) { |
| 425 | bool contains = std::find(dex_pc_listeners_.begin(), dex_pc_listeners_.end(), |
| 426 | listener) != dex_pc_listeners_.end(); |
| 427 | if (contains) { |
| 428 | dex_pc_listeners_.remove(listener); |
| 429 | } |
| 430 | have_dex_pc_listeners_ = dex_pc_listeners_.size() > 0; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 431 | } |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 432 | if ((events & kFieldRead) != 0) { |
| 433 | bool contains = std::find(field_read_listeners_.begin(), field_read_listeners_.end(), |
| 434 | listener) != field_read_listeners_.end(); |
| 435 | if (contains) { |
| 436 | field_read_listeners_.remove(listener); |
| 437 | } |
| 438 | have_field_read_listeners_ = field_read_listeners_.size() > 0; |
| 439 | } |
| 440 | if ((events & kFieldWritten) != 0) { |
| 441 | bool contains = std::find(field_write_listeners_.begin(), field_write_listeners_.end(), |
| 442 | listener) != field_write_listeners_.end(); |
| 443 | if (contains) { |
| 444 | field_write_listeners_.remove(listener); |
| 445 | } |
| 446 | have_field_write_listeners_ = field_write_listeners_.size() > 0; |
| 447 | } |
| Jeff Hao | 14dd5a8 | 2013-04-11 10:23:36 -0700 | [diff] [blame] | 448 | if ((events & kExceptionCaught) != 0) { |
| 449 | exception_caught_listeners_.remove(listener); |
| 450 | have_exception_caught_listeners_ = exception_caught_listeners_.size() > 0; |
| 451 | } |
| Sebastien Hertz | ee1997a | 2013-09-19 14:47:09 +0200 | [diff] [blame] | 452 | UpdateInterpreterHandlerTable(); |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 453 | } |
| 454 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 455 | void Instrumentation::ConfigureStubs(bool require_entry_exit_stubs, bool require_interpreter) { |
| 456 | interpret_only_ = require_interpreter || forced_interpret_only_; |
| 457 | // Compute what level of instrumentation is required and compare to current. |
| 458 | int desired_level, current_level; |
| 459 | if (require_interpreter) { |
| 460 | desired_level = 2; |
| 461 | } else if (require_entry_exit_stubs) { |
| 462 | desired_level = 1; |
| 463 | } else { |
| 464 | desired_level = 0; |
| 465 | } |
| 466 | if (interpreter_stubs_installed_) { |
| 467 | current_level = 2; |
| 468 | } else if (entry_exit_stubs_installed_) { |
| 469 | current_level = 1; |
| 470 | } else { |
| 471 | current_level = 0; |
| 472 | } |
| 473 | if (desired_level == current_level) { |
| 474 | // We're already set. |
| 475 | return; |
| 476 | } |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 477 | Thread* const self = Thread::Current(); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 478 | Runtime* runtime = Runtime::Current(); |
| 479 | Locks::thread_list_lock_->AssertNotHeld(self); |
| 480 | if (desired_level > 0) { |
| 481 | if (require_interpreter) { |
| 482 | interpreter_stubs_installed_ = true; |
| 483 | } else { |
| 484 | CHECK(require_entry_exit_stubs); |
| 485 | entry_exit_stubs_installed_ = true; |
| 486 | } |
| 487 | runtime->GetClassLinker()->VisitClasses(InstallStubsClassVisitor, this); |
| 488 | instrumentation_stubs_installed_ = true; |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 489 | MutexLock mu(self, *Locks::thread_list_lock_); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 490 | runtime->GetThreadList()->ForEach(InstrumentationInstallStack, this); |
| 491 | } else { |
| 492 | interpreter_stubs_installed_ = false; |
| 493 | entry_exit_stubs_installed_ = false; |
| 494 | runtime->GetClassLinker()->VisitClasses(InstallStubsClassVisitor, this); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 495 | // Restore stack only if there is no method currently deoptimized. |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 496 | bool empty; |
| 497 | { |
| 498 | ReaderMutexLock mu(self, deoptimized_methods_lock_); |
| 499 | empty = deoptimized_methods_.empty(); // Avoid lock violation. |
| 500 | } |
| 501 | if (empty) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 502 | instrumentation_stubs_installed_ = false; |
| 503 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 504 | Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this); |
| 505 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 506 | } |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 507 | } |
| 508 | |
| Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 509 | static void ResetQuickAllocEntryPointsForThread(Thread* thread, void* arg) { |
| 510 | thread->ResetQuickAllocEntryPointsForThread(); |
| 511 | } |
| 512 | |
| Mathieu Chartier | 661974a | 2014-01-09 11:23:53 -0800 | [diff] [blame] | 513 | void Instrumentation::SetEntrypointsInstrumented(bool instrumented) { |
| 514 | Runtime* runtime = Runtime::Current(); |
| 515 | ThreadList* tl = runtime->GetThreadList(); |
| 516 | if (runtime->IsStarted()) { |
| 517 | tl->SuspendAll(); |
| 518 | } |
| 519 | { |
| 520 | MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_); |
| 521 | SetQuickAllocEntryPointsInstrumented(instrumented); |
| 522 | ResetQuickAllocEntryPoints(); |
| 523 | } |
| 524 | if (runtime->IsStarted()) { |
| 525 | tl->ResumeAll(); |
| 526 | } |
| 527 | } |
| 528 | |
| Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 529 | void Instrumentation::InstrumentQuickAllocEntryPoints() { |
| 530 | // TODO: the read of quick_alloc_entry_points_instrumentation_counter_ is racey and this code |
| 531 | // should be guarded by a lock. |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 532 | DCHECK_GE(quick_alloc_entry_points_instrumentation_counter_.LoadSequentiallyConsistent(), 0); |
| Mathieu Chartier | cbb2d20 | 2013-11-14 17:45:16 -0800 | [diff] [blame] | 533 | const bool enable_instrumentation = |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 534 | quick_alloc_entry_points_instrumentation_counter_.FetchAndAddSequentiallyConsistent(1) == 0; |
| Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 535 | if (enable_instrumentation) { |
| Mathieu Chartier | 661974a | 2014-01-09 11:23:53 -0800 | [diff] [blame] | 536 | SetEntrypointsInstrumented(true); |
| Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 537 | } |
| 538 | } |
| 539 | |
| 540 | void Instrumentation::UninstrumentQuickAllocEntryPoints() { |
| 541 | // TODO: the read of quick_alloc_entry_points_instrumentation_counter_ is racey and this code |
| 542 | // should be guarded by a lock. |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 543 | DCHECK_GT(quick_alloc_entry_points_instrumentation_counter_.LoadSequentiallyConsistent(), 0); |
| Mathieu Chartier | cbb2d20 | 2013-11-14 17:45:16 -0800 | [diff] [blame] | 544 | const bool disable_instrumentation = |
| Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 545 | quick_alloc_entry_points_instrumentation_counter_.FetchAndSubSequentiallyConsistent(1) == 1; |
| Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 546 | if (disable_instrumentation) { |
| Mathieu Chartier | 661974a | 2014-01-09 11:23:53 -0800 | [diff] [blame] | 547 | SetEntrypointsInstrumented(false); |
| Mathieu Chartier | cbb2d20 | 2013-11-14 17:45:16 -0800 | [diff] [blame] | 548 | } |
| 549 | } |
| 550 | |
| 551 | void Instrumentation::ResetQuickAllocEntryPoints() { |
| 552 | Runtime* runtime = Runtime::Current(); |
| 553 | if (runtime->IsStarted()) { |
| Mathieu Chartier | e6da9af | 2013-12-16 11:54:42 -0800 | [diff] [blame] | 554 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
| 555 | runtime->GetThreadList()->ForEach(ResetQuickAllocEntryPointsForThread, NULL); |
| Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 556 | } |
| 557 | } |
| 558 | |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 559 | void Instrumentation::UpdateMethodsCode(mirror::ArtMethod* method, const void* quick_code, |
| 560 | const void* portable_code, bool have_portable_code) const { |
| 561 | const void* new_portable_code; |
| 562 | const void* new_quick_code; |
| 563 | bool new_have_portable_code; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 564 | if (LIKELY(!instrumentation_stubs_installed_)) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 565 | new_portable_code = portable_code; |
| 566 | new_quick_code = quick_code; |
| 567 | new_have_portable_code = have_portable_code; |
| Jeff Hao | 65d15d9 | 2013-07-16 16:39:33 -0700 | [diff] [blame] | 568 | } else { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 569 | if ((interpreter_stubs_installed_ || IsDeoptimized(method)) && !method->IsNative()) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 570 | new_portable_code = GetPortableToInterpreterBridge(); |
| 571 | new_quick_code = GetQuickToInterpreterBridge(); |
| 572 | new_have_portable_code = false; |
| 573 | } else if (quick_code == GetQuickResolutionTrampoline(Runtime::Current()->GetClassLinker()) || |
| Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 574 | quick_code == GetQuickToInterpreterBridgeTrampoline(Runtime::Current()->GetClassLinker()) || |
| 575 | quick_code == GetQuickToInterpreterBridge()) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 576 | DCHECK((portable_code == GetPortableResolutionTrampoline(Runtime::Current()->GetClassLinker())) || |
| 577 | (portable_code == GetPortableToInterpreterBridge())); |
| 578 | new_portable_code = portable_code; |
| 579 | new_quick_code = quick_code; |
| 580 | new_have_portable_code = have_portable_code; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 581 | } else if (entry_exit_stubs_installed_) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 582 | new_quick_code = GetQuickInstrumentationEntryPoint(); |
| 583 | new_portable_code = GetPortableToInterpreterBridge(); |
| 584 | new_have_portable_code = false; |
| Jeff Hao | 65d15d9 | 2013-07-16 16:39:33 -0700 | [diff] [blame] | 585 | } else { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 586 | new_portable_code = portable_code; |
| 587 | new_quick_code = quick_code; |
| 588 | new_have_portable_code = have_portable_code; |
| Jeff Hao | 65d15d9 | 2013-07-16 16:39:33 -0700 | [diff] [blame] | 589 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 590 | } |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 591 | UpdateEntrypoints(method, new_quick_code, new_portable_code, new_have_portable_code); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | void Instrumentation::Deoptimize(mirror::ArtMethod* method) { |
| 595 | CHECK(!method->IsNative()); |
| 596 | CHECK(!method->IsProxyMethod()); |
| 597 | CHECK(!method->IsAbstract()); |
| 598 | |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 599 | Thread* self = Thread::Current(); |
| 600 | std::pair<std::set<mirror::ArtMethod*>::iterator, bool> pair; |
| 601 | { |
| 602 | WriterMutexLock mu(self, deoptimized_methods_lock_); |
| 603 | pair = deoptimized_methods_.insert(method); |
| 604 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 605 | bool already_deoptimized = !pair.second; |
| 606 | CHECK(!already_deoptimized) << "Method " << PrettyMethod(method) << " is already deoptimized"; |
| 607 | |
| 608 | if (!interpreter_stubs_installed_) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 609 | UpdateEntrypoints(method, GetQuickToInterpreterBridge(), GetPortableToInterpreterBridge(), |
| 610 | false); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 611 | |
| 612 | // Install instrumentation exit stub and instrumentation frames. We may already have installed |
| 613 | // these previously so it will only cover the newly created frames. |
| 614 | instrumentation_stubs_installed_ = true; |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 615 | MutexLock mu(self, *Locks::thread_list_lock_); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 616 | Runtime::Current()->GetThreadList()->ForEach(InstrumentationInstallStack, this); |
| 617 | } |
| 618 | } |
| 619 | |
| 620 | void Instrumentation::Undeoptimize(mirror::ArtMethod* method) { |
| 621 | CHECK(!method->IsNative()); |
| 622 | CHECK(!method->IsProxyMethod()); |
| 623 | CHECK(!method->IsAbstract()); |
| 624 | |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 625 | Thread* self = Thread::Current(); |
| 626 | bool empty; |
| 627 | { |
| 628 | WriterMutexLock mu(self, deoptimized_methods_lock_); |
| 629 | auto it = deoptimized_methods_.find(method); |
| 630 | CHECK(it != deoptimized_methods_.end()) << "Method " << PrettyMethod(method) |
| 631 | << " is not deoptimized"; |
| 632 | deoptimized_methods_.erase(it); |
| 633 | empty = deoptimized_methods_.empty(); |
| 634 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 635 | |
| 636 | // Restore code and possibly stack only if we did not deoptimize everything. |
| 637 | if (!interpreter_stubs_installed_) { |
| 638 | // Restore its code or resolution trampoline. |
| 639 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 640 | if (method->IsStatic() && !method->IsConstructor() && |
| 641 | !method->GetDeclaringClass()->IsInitialized()) { |
| 642 | UpdateEntrypoints(method, GetQuickResolutionTrampoline(class_linker), |
| 643 | GetPortableResolutionTrampoline(class_linker), false); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 644 | } else { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 645 | bool have_portable_code = false; |
| 646 | const void* quick_code = class_linker->GetQuickOatCodeFor(method); |
| 647 | const void* portable_code = class_linker->GetPortableOatCodeFor(method, &have_portable_code); |
| 648 | UpdateEntrypoints(method, quick_code, portable_code, have_portable_code); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 649 | } |
| 650 | |
| 651 | // 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] | 652 | if (empty) { |
| 653 | MutexLock mu(self, *Locks::thread_list_lock_); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 654 | Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this); |
| 655 | instrumentation_stubs_installed_ = false; |
| 656 | } |
| 657 | } |
| 658 | } |
| 659 | |
| 660 | bool Instrumentation::IsDeoptimized(mirror::ArtMethod* method) const { |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 661 | ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 662 | DCHECK(method != nullptr); |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 663 | return deoptimized_methods_.find(method) != deoptimized_methods_.end(); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | void Instrumentation::EnableDeoptimization() { |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 667 | ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 668 | CHECK(deoptimized_methods_.empty()); |
| Sebastien Hertz | 11d40c2 | 2014-02-19 18:00:17 +0100 | [diff] [blame] | 669 | CHECK_EQ(deoptimization_enabled_, false); |
| 670 | deoptimization_enabled_ = true; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 671 | } |
| 672 | |
| 673 | void Instrumentation::DisableDeoptimization() { |
| Sebastien Hertz | 11d40c2 | 2014-02-19 18:00:17 +0100 | [diff] [blame] | 674 | CHECK_EQ(deoptimization_enabled_, true); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 675 | // If we deoptimized everything, undo it. |
| 676 | if (interpreter_stubs_installed_) { |
| 677 | UndeoptimizeEverything(); |
| 678 | } |
| 679 | // Undeoptimized selected methods. |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 680 | while (true) { |
| 681 | mirror::ArtMethod* method; |
| 682 | { |
| 683 | ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_); |
| 684 | if (deoptimized_methods_.empty()) { |
| 685 | break; |
| 686 | } |
| 687 | method = *deoptimized_methods_.begin(); |
| 688 | } |
| 689 | Undeoptimize(method); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 690 | } |
| Sebastien Hertz | 11d40c2 | 2014-02-19 18:00:17 +0100 | [diff] [blame] | 691 | deoptimization_enabled_ = false; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 692 | } |
| 693 | |
| Sebastien Hertz | 11d40c2 | 2014-02-19 18:00:17 +0100 | [diff] [blame] | 694 | // Indicates if instrumentation should notify method enter/exit events to the listeners. |
| 695 | bool Instrumentation::ShouldNotifyMethodEnterExitEvents() const { |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 696 | return !deoptimization_enabled_ && !interpreter_stubs_installed_; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 697 | } |
| 698 | |
| 699 | void Instrumentation::DeoptimizeEverything() { |
| 700 | CHECK(!interpreter_stubs_installed_); |
| 701 | ConfigureStubs(false, true); |
| 702 | } |
| 703 | |
| 704 | void Instrumentation::UndeoptimizeEverything() { |
| 705 | CHECK(interpreter_stubs_installed_); |
| 706 | ConfigureStubs(false, false); |
| 707 | } |
| 708 | |
| 709 | void Instrumentation::EnableMethodTracing() { |
| 710 | bool require_interpreter = kDeoptimizeForAccurateMethodEntryExitListeners; |
| 711 | ConfigureStubs(!require_interpreter, require_interpreter); |
| 712 | } |
| 713 | |
| 714 | void Instrumentation::DisableMethodTracing() { |
| 715 | ConfigureStubs(false, false); |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 716 | } |
| 717 | |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 718 | const void* Instrumentation::GetQuickCodeFor(mirror::ArtMethod* method) const { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 719 | Runtime* runtime = Runtime::Current(); |
| 720 | if (LIKELY(!instrumentation_stubs_installed_)) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 721 | const void* code = method->GetEntryPointFromQuickCompiledCode(); |
| Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 722 | DCHECK(code != nullptr); |
| 723 | if (LIKELY(code != GetQuickResolutionTrampoline(runtime->GetClassLinker())) && |
| 724 | LIKELY(code != GetQuickToInterpreterBridgeTrampoline(runtime->GetClassLinker())) && |
| 725 | LIKELY(code != GetQuickToInterpreterBridge())) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 726 | return code; |
| 727 | } |
| 728 | } |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 729 | return runtime->GetClassLinker()->GetQuickOatCodeFor(method); |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 730 | } |
| 731 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 732 | void Instrumentation::MethodEnterEventImpl(Thread* thread, mirror::Object* this_object, |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 733 | mirror::ArtMethod* method, |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 734 | uint32_t dex_pc) const { |
| Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 735 | auto it = method_entry_listeners_.begin(); |
| Jeff Hao | 65d15d9 | 2013-07-16 16:39:33 -0700 | [diff] [blame] | 736 | bool is_end = (it == method_entry_listeners_.end()); |
| 737 | // Implemented this way to prevent problems caused by modification of the list while iterating. |
| 738 | while (!is_end) { |
| 739 | InstrumentationListener* cur = *it; |
| 740 | ++it; |
| 741 | is_end = (it == method_entry_listeners_.end()); |
| 742 | cur->MethodEntered(thread, this_object, method, dex_pc); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 743 | } |
| 744 | } |
| 745 | |
| 746 | void Instrumentation::MethodExitEventImpl(Thread* thread, mirror::Object* this_object, |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 747 | mirror::ArtMethod* method, |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 748 | uint32_t dex_pc, const JValue& return_value) const { |
| Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 749 | auto it = method_exit_listeners_.begin(); |
| Jeff Hao | 65d15d9 | 2013-07-16 16:39:33 -0700 | [diff] [blame] | 750 | bool is_end = (it == method_exit_listeners_.end()); |
| 751 | // Implemented this way to prevent problems caused by modification of the list while iterating. |
| 752 | while (!is_end) { |
| 753 | InstrumentationListener* cur = *it; |
| 754 | ++it; |
| 755 | is_end = (it == method_exit_listeners_.end()); |
| 756 | cur->MethodExited(thread, this_object, method, dex_pc, return_value); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 757 | } |
| 758 | } |
| 759 | |
| 760 | void Instrumentation::MethodUnwindEvent(Thread* thread, mirror::Object* this_object, |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 761 | mirror::ArtMethod* method, |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 762 | uint32_t dex_pc) const { |
| 763 | if (have_method_unwind_listeners_) { |
| Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 764 | for (InstrumentationListener* listener : method_unwind_listeners_) { |
| Sebastien Hertz | 51db44a | 2013-11-19 10:00:29 +0100 | [diff] [blame] | 765 | listener->MethodUnwind(thread, this_object, method, dex_pc); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 766 | } |
| 767 | } |
| 768 | } |
| 769 | |
| 770 | void Instrumentation::DexPcMovedEventImpl(Thread* thread, mirror::Object* this_object, |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 771 | mirror::ArtMethod* method, |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 772 | uint32_t dex_pc) const { |
| 773 | // TODO: STL copy-on-write collection? The copy below is due to the debug listener having an |
| 774 | // action where it can remove itself as a listener and break the iterator. The copy only works |
| 775 | // around the problem and in general we may have to move to something like reference counting to |
| 776 | // ensure listeners are deleted correctly. |
| 777 | std::list<InstrumentationListener*> copy(dex_pc_listeners_); |
| Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 778 | for (InstrumentationListener* listener : copy) { |
| 779 | listener->DexPcMoved(thread, this_object, method, dex_pc); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 780 | } |
| 781 | } |
| 782 | |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 783 | void Instrumentation::FieldReadEventImpl(Thread* thread, mirror::Object* this_object, |
| 784 | mirror::ArtMethod* method, uint32_t dex_pc, |
| 785 | mirror::ArtField* field) const { |
| Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 786 | // TODO: same comment than DexPcMovedEventImpl. |
| 787 | std::list<InstrumentationListener*> copy(field_read_listeners_); |
| 788 | for (InstrumentationListener* listener : copy) { |
| 789 | listener->FieldRead(thread, this_object, method, dex_pc, field); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 790 | } |
| 791 | } |
| 792 | |
| 793 | void Instrumentation::FieldWriteEventImpl(Thread* thread, mirror::Object* this_object, |
| 794 | mirror::ArtMethod* method, uint32_t dex_pc, |
| 795 | mirror::ArtField* field, const JValue& field_value) const { |
| Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 796 | // TODO: same comment than DexPcMovedEventImpl. |
| 797 | std::list<InstrumentationListener*> copy(field_write_listeners_); |
| 798 | for (InstrumentationListener* listener : copy) { |
| 799 | listener->FieldWritten(thread, this_object, method, dex_pc, field, field_value); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 800 | } |
| 801 | } |
| 802 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 803 | void Instrumentation::ExceptionCaughtEvent(Thread* thread, const ThrowLocation& throw_location, |
| Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 804 | mirror::ArtMethod* catch_method, |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 805 | uint32_t catch_dex_pc, |
| Sebastien Hertz | 947ff08 | 2013-09-17 14:10:13 +0200 | [diff] [blame] | 806 | mirror::Throwable* exception_object) const { |
| Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 807 | if (HasExceptionCaughtListeners()) { |
| 808 | DCHECK_EQ(thread->GetException(nullptr), exception_object); |
| 809 | bool is_exception_reported = thread->IsExceptionReportedToInstrumentation(); |
| Jeff Hao | c0bd4da | 2013-04-11 15:52:28 -0700 | [diff] [blame] | 810 | thread->ClearException(); |
| Sebastien Hertz | bf079fe | 2014-04-01 15:31:05 +0200 | [diff] [blame] | 811 | // TODO: The copy below is due to the debug listener having an action where it can remove |
| 812 | // itself as a listener and break the iterator. The copy only works around the problem. |
| 813 | std::list<InstrumentationListener*> copy(exception_caught_listeners_); |
| 814 | for (InstrumentationListener* listener : copy) { |
| Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 815 | listener->ExceptionCaught(thread, throw_location, catch_method, catch_dex_pc, exception_object); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 816 | } |
| Jeff Hao | c0bd4da | 2013-04-11 15:52:28 -0700 | [diff] [blame] | 817 | thread->SetException(throw_location, exception_object); |
| Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 818 | thread->SetExceptionReportedToInstrumentation(is_exception_reported); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 819 | } |
| 820 | } |
| 821 | |
| 822 | static void CheckStackDepth(Thread* self, const InstrumentationStackFrame& instrumentation_frame, |
| 823 | int delta) |
| 824 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 825 | size_t frame_id = StackVisitor::ComputeNumFrames(self) + delta; |
| 826 | if (frame_id != instrumentation_frame.frame_id_) { |
| 827 | LOG(ERROR) << "Expected frame_id=" << frame_id << " but found " |
| 828 | << instrumentation_frame.frame_id_; |
| 829 | StackVisitor::DescribeStack(self); |
| 830 | CHECK_EQ(frame_id, instrumentation_frame.frame_id_); |
| 831 | } |
| 832 | } |
| 833 | |
| 834 | void Instrumentation::PushInstrumentationStackFrame(Thread* self, mirror::Object* this_object, |
| Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 835 | mirror::ArtMethod* method, |
| Jeff Hao | 9a916d3 | 2013-06-27 18:45:37 -0700 | [diff] [blame] | 836 | uintptr_t lr, bool interpreter_entry) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 837 | // We have a callee-save frame meaning this value is guaranteed to never be 0. |
| 838 | size_t frame_id = StackVisitor::ComputeNumFrames(self); |
| 839 | std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); |
| 840 | if (kVerboseInstrumentation) { |
| Brian Carlstrom | 2d88862 | 2013-07-18 17:02:00 -0700 | [diff] [blame] | 841 | LOG(INFO) << "Entering " << PrettyMethod(method) << " from PC " << reinterpret_cast<void*>(lr); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 842 | } |
| 843 | instrumentation::InstrumentationStackFrame instrumentation_frame(this_object, method, lr, |
| Jeff Hao | 9a916d3 | 2013-06-27 18:45:37 -0700 | [diff] [blame] | 844 | frame_id, interpreter_entry); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 845 | stack->push_front(instrumentation_frame); |
| 846 | |
| 847 | MethodEnterEvent(self, this_object, method, 0); |
| 848 | } |
| 849 | |
| Andreas Gampe | d58342c | 2014-06-05 14:18:08 -0700 | [diff] [blame] | 850 | TwoWordReturn Instrumentation::PopInstrumentationStackFrame(Thread* self, uintptr_t* return_pc, |
| 851 | uint64_t gpr_result, |
| 852 | uint64_t fpr_result) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 853 | // Do the pop. |
| 854 | std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); |
| 855 | CHECK_GT(stack->size(), 0U); |
| 856 | InstrumentationStackFrame instrumentation_frame = stack->front(); |
| 857 | stack->pop_front(); |
| 858 | |
| 859 | // Set return PC and check the sanity of the stack. |
| 860 | *return_pc = instrumentation_frame.return_pc_; |
| 861 | CheckStackDepth(self, instrumentation_frame, 0); |
| 862 | |
| Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 863 | mirror::ArtMethod* method = instrumentation_frame.method_; |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 864 | uint32_t length; |
| 865 | char return_shorty = method->GetShorty(&length)[0]; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 866 | JValue return_value; |
| 867 | if (return_shorty == 'V') { |
| 868 | return_value.SetJ(0); |
| 869 | } else if (return_shorty == 'F' || return_shorty == 'D') { |
| 870 | return_value.SetJ(fpr_result); |
| 871 | } else { |
| 872 | return_value.SetJ(gpr_result); |
| 873 | } |
| 874 | // TODO: improve the dex pc information here, requires knowledge of current PC as opposed to |
| 875 | // return_pc. |
| 876 | uint32_t dex_pc = DexFile::kDexNoIndex; |
| 877 | mirror::Object* this_object = instrumentation_frame.this_object_; |
| 878 | MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value); |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 879 | |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 880 | // Deoptimize if the caller needs to continue execution in the interpreter. Do nothing if we get |
| 881 | // back to an upcall. |
| 882 | NthCallerVisitor visitor(self, 1, true); |
| 883 | visitor.WalkStack(true); |
| 884 | bool deoptimize = (visitor.caller != NULL) && |
| 885 | (interpreter_stubs_installed_ || IsDeoptimized(visitor.caller)); |
| 886 | if (deoptimize && kVerboseInstrumentation) { |
| 887 | LOG(INFO) << "Deoptimizing into " << PrettyMethod(visitor.caller); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 888 | } |
| 889 | if (deoptimize) { |
| 890 | if (kVerboseInstrumentation) { |
| 891 | LOG(INFO) << "Deoptimizing from " << PrettyMethod(method) |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 892 | << " result is " << std::hex << return_value.GetJ(); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 893 | } |
| 894 | self->SetDeoptimizationReturnValue(return_value); |
| Andreas Gampe | d58342c | 2014-06-05 14:18:08 -0700 | [diff] [blame] | 895 | return GetTwoWordSuccessValue(*return_pc, |
| 896 | reinterpret_cast<uintptr_t>(GetQuickDeoptimizationEntryPoint())); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 897 | } else { |
| 898 | if (kVerboseInstrumentation) { |
| Brian Carlstrom | 2d88862 | 2013-07-18 17:02:00 -0700 | [diff] [blame] | 899 | LOG(INFO) << "Returning from " << PrettyMethod(method) |
| 900 | << " to PC " << reinterpret_cast<void*>(*return_pc); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 901 | } |
| Andreas Gampe | d58342c | 2014-06-05 14:18:08 -0700 | [diff] [blame] | 902 | return GetTwoWordSuccessValue(0, *return_pc); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 903 | } |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 904 | } |
| 905 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 906 | void Instrumentation::PopMethodForUnwind(Thread* self, bool is_deoptimization) const { |
| 907 | // Do the pop. |
| 908 | std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); |
| 909 | CHECK_GT(stack->size(), 0U); |
| 910 | InstrumentationStackFrame instrumentation_frame = stack->front(); |
| 911 | // TODO: bring back CheckStackDepth(self, instrumentation_frame, 2); |
| 912 | stack->pop_front(); |
| 913 | |
| Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 914 | mirror::ArtMethod* method = instrumentation_frame.method_; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 915 | if (is_deoptimization) { |
| 916 | if (kVerboseInstrumentation) { |
| 917 | LOG(INFO) << "Popping for deoptimization " << PrettyMethod(method); |
| 918 | } |
| 919 | } else { |
| 920 | if (kVerboseInstrumentation) { |
| 921 | LOG(INFO) << "Popping for unwind " << PrettyMethod(method); |
| 922 | } |
| 923 | |
| 924 | // Notify listeners of method unwind. |
| 925 | // TODO: improve the dex pc information here, requires knowledge of current PC as opposed to |
| 926 | // return_pc. |
| 927 | uint32_t dex_pc = DexFile::kDexNoIndex; |
| 928 | MethodUnwindEvent(self, instrumentation_frame.this_object_, method, dex_pc); |
| 929 | } |
| 930 | } |
| 931 | |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 932 | void Instrumentation::VisitRoots(RootCallback* callback, void* arg) { |
| 933 | WriterMutexLock mu(Thread::Current(), deoptimized_methods_lock_); |
| 934 | if (deoptimized_methods_.empty()) { |
| 935 | return; |
| 936 | } |
| 937 | std::set<mirror::ArtMethod*> new_deoptimized_methods; |
| 938 | for (mirror::ArtMethod* method : deoptimized_methods_) { |
| 939 | DCHECK(method != nullptr); |
| 940 | callback(reinterpret_cast<mirror::Object**>(&method), arg, 0, kRootVMInternal); |
| 941 | new_deoptimized_methods.insert(method); |
| 942 | } |
| 943 | deoptimized_methods_ = new_deoptimized_methods; |
| 944 | } |
| 945 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 946 | std::string InstrumentationStackFrame::Dump() const { |
| 947 | std::ostringstream os; |
| 948 | os << "Frame " << frame_id_ << " " << PrettyMethod(method_) << ":" |
| 949 | << reinterpret_cast<void*>(return_pc_) << " this=" << reinterpret_cast<void*>(this_object_); |
| 950 | return os.str(); |
| 951 | } |
| 952 | |
| 953 | } // namespace instrumentation |
| jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 954 | } // namespace art |