blob: 05384b417cad252f21595afba6143aa6aee2c7a7 [file] [log] [blame]
jeffhao725a9572012-11-13 18:20:12 -08001/*
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 Rogersc7dd2952014-10-21 23:31:19 -070019#include <sstream>
20
Ian Rogerse63db272014-07-15 15:36:11 -070021#include "arch/context.h"
Alex Lightd7661582017-05-01 13:48:16 -070022#include "art_field-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070023#include "art_method-inl.h"
Ian Rogersef7d42f2014-01-06 12:55:46 -080024#include "atomic.h"
Andreas Gampe8228cdf2017-05-30 15:03:54 -070025#include "base/callee_save_type.h"
jeffhao725a9572012-11-13 18:20:12 -080026#include "class_linker.h"
27#include "debugger.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080028#include "dex_file-inl.h"
Mathieu Chartierd8891782014-03-02 13:28:37 -080029#include "entrypoints/quick/quick_alloc_entrypoints.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070030#include "entrypoints/quick/quick_entrypoints.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070031#include "entrypoints/runtime_asm_entrypoints.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070032#include "gc_root-inl.h"
Sebastien Hertz138dbfc2013-12-04 18:15:25 +010033#include "interpreter/interpreter.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080034#include "jit/jit.h"
35#include "jit/jit_code_cache.h"
Alex Lightd7661582017-05-01 13:48:16 -070036#include "jvalue-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "mirror/class-inl.h"
38#include "mirror/dex_cache.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070039#include "mirror/object-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070040#include "mirror/object_array-inl.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080041#include "nth_caller_visitor.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010042#include "oat_quick_method_header.h"
jeffhao725a9572012-11-13 18:20:12 -080043#include "thread.h"
44#include "thread_list.h"
jeffhao725a9572012-11-13 18:20:12 -080045
46namespace art {
Ian Rogers62d6c772013-02-27 08:32:07 -080047namespace instrumentation {
jeffhao725a9572012-11-13 18:20:12 -080048
Sebastien Hertz0462c4c2015-04-01 16:34:17 +020049constexpr bool kVerboseInstrumentation = false;
Sebastien Hertz5bfd5c92013-11-15 11:36:07 +010050
Alex Lightd7661582017-05-01 13:48:16 -070051void InstrumentationListener::MethodExited(Thread* thread,
52 Handle<mirror::Object> this_object,
53 ArtMethod* method,
54 uint32_t dex_pc,
55 Handle<mirror::Object> return_value) {
56 DCHECK_EQ(method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetReturnTypePrimitive(),
57 Primitive::kPrimNot);
58 JValue v;
59 v.SetL(return_value.Get());
60 MethodExited(thread, this_object, method, dex_pc, v);
61}
62
63void InstrumentationListener::FieldWritten(Thread* thread,
64 Handle<mirror::Object> this_object,
65 ArtMethod* method,
66 uint32_t dex_pc,
67 ArtField* field,
68 Handle<mirror::Object> field_value) {
69 DCHECK(!field->IsPrimitiveType());
70 JValue v;
71 v.SetL(field_value.Get());
72 FieldWritten(thread, this_object, method, dex_pc, field, v);
73}
74
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010075// Instrumentation works on non-inlined frames by updating returned PCs
76// of compiled frames.
77static constexpr StackVisitor::StackWalkKind kInstrumentationStackWalk =
78 StackVisitor::StackWalkKind::kSkipInlinedFrames;
79
Mathieu Chartiere0671ce2015-07-28 17:23:28 -070080class InstallStubsClassVisitor : public ClassVisitor {
81 public:
82 explicit InstallStubsClassVisitor(Instrumentation* instrumentation)
83 : instrumentation_(instrumentation) {}
84
Mathieu Chartier28357fa2016-10-18 16:27:40 -070085 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES(Locks::mutator_lock_) {
86 instrumentation_->InstallStubsForClass(klass.Ptr());
Mathieu Chartiere0671ce2015-07-28 17:23:28 -070087 return true; // we visit all classes.
88 }
89
90 private:
91 Instrumentation* const instrumentation_;
92};
93
Ian Rogers62d6c772013-02-27 08:32:07 -080094
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070095Instrumentation::Instrumentation()
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +000096 : instrumentation_stubs_installed_(false),
97 entry_exit_stubs_installed_(false),
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070098 interpreter_stubs_installed_(false),
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +000099 interpret_only_(false),
100 forced_interpret_only_(false),
101 have_method_entry_listeners_(false),
102 have_method_exit_listeners_(false),
103 have_method_unwind_listeners_(false),
104 have_dex_pc_listeners_(false),
105 have_field_read_listeners_(false),
106 have_field_write_listeners_(false),
Alex Light6e1607e2017-08-23 10:06:18 -0700107 have_exception_thrown_listeners_(false),
Alex Lighte814f9d2017-07-31 16:14:39 -0700108 have_watched_frame_pop_listeners_(false),
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000109 have_branch_listeners_(false),
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000110 have_invoke_virtual_or_interface_listeners_(false),
Mathieu Chartierb8aa1e42016-04-05 14:36:57 -0700111 deoptimized_methods_lock_("deoptimized methods lock", kDeoptimizedMethodsLock),
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700112 deoptimization_enabled_(false),
113 interpreter_handler_table_(kMainHandlerTable),
Mathieu Chartier50e93312016-03-16 11:25:29 -0700114 quick_alloc_entry_points_instrumentation_counter_(0),
115 alloc_entrypoints_instrumented_(false) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700116}
117
Sebastien Hertza10aa372015-01-21 17:30:58 +0100118void Instrumentation::InstallStubsForClass(mirror::Class* klass) {
Vladimir Marko72ab6842017-01-20 19:32:50 +0000119 if (!klass->IsResolved()) {
Sebastien Hertza8a697f2015-01-15 12:28:47 +0100120 // We need the class to be resolved to install/uninstall stubs. Otherwise its methods
121 // could not be initialized or linked with regards to class inheritance.
Vladimir Marko72ab6842017-01-20 19:32:50 +0000122 } else if (klass->IsErroneousResolved()) {
123 // We can't execute code in a erroneous class: do nothing.
Sebastien Hertza8a697f2015-01-15 12:28:47 +0100124 } else {
Andreas Gampe542451c2016-07-26 09:02:02 -0700125 for (ArtMethod& method : klass->GetMethods(kRuntimePointerSize)) {
Alex Light51a64d52015-12-17 13:55:59 -0800126 InstallStubsForMethod(&method);
Sebastien Hertza8a697f2015-01-15 12:28:47 +0100127 }
jeffhao725a9572012-11-13 18:20:12 -0800128 }
jeffhao725a9572012-11-13 18:20:12 -0800129}
130
Mathieu Chartiere401d142015-04-22 13:56:20 -0700131static void UpdateEntrypoints(ArtMethod* method, const void* quick_code)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700132 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800133 method->SetEntryPointFromQuickCompiledCode(quick_code);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100134}
135
Nicolas Geoffraya0619e22016-12-20 13:57:43 +0000136bool Instrumentation::NeedDebugVersionFor(ArtMethod* method) const REQUIRES_SHARED(Locks::mutator_lock_) {
Mingyao Yang6ea1a0e2016-01-29 12:12:49 -0800137 return Dbg::IsDebuggerActive() &&
Nicolas Geoffraya0619e22016-12-20 13:57:43 +0000138 Runtime::Current()->IsJavaDebuggable() &&
Mingyao Yang6ea1a0e2016-01-29 12:12:49 -0800139 !method->IsNative() &&
140 !method->IsProxyMethod();
141}
142
Mathieu Chartiere401d142015-04-22 13:56:20 -0700143void Instrumentation::InstallStubsForMethod(ArtMethod* method) {
Alex Light9139e002015-10-09 15:59:48 -0700144 if (!method->IsInvokable() || method->IsProxyMethod()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100145 // Do not change stubs for these methods.
146 return;
147 }
Jeff Hao56802772014-08-19 10:17:36 -0700148 // Don't stub Proxy.<init>. Note that the Proxy class itself is not a proxy class.
149 if (method->IsConstructor() &&
150 method->GetDeclaringClass()->DescriptorEquals("Ljava/lang/reflect/Proxy;")) {
Jeff Haodb8a6642014-08-14 17:18:52 -0700151 return;
152 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800153 const void* new_quick_code;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100154 bool uninstall = !entry_exit_stubs_installed_ && !interpreter_stubs_installed_;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800155 Runtime* const runtime = Runtime::Current();
156 ClassLinker* const class_linker = runtime->GetClassLinker();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100157 bool is_class_initialized = method->GetDeclaringClass()->IsInitialized();
158 if (uninstall) {
159 if ((forced_interpret_only_ || IsDeoptimized(method)) && !method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800160 new_quick_code = GetQuickToInterpreterBridge();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100161 } else if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) {
Nicolas Geoffraya0619e22016-12-20 13:57:43 +0000162 if (NeedDebugVersionFor(method)) {
Mingyao Yang6ea1a0e2016-01-29 12:12:49 -0800163 new_quick_code = GetQuickToInterpreterBridge();
Nicolas Geoffraya0619e22016-12-20 13:57:43 +0000164 } else {
165 new_quick_code = class_linker->GetQuickOatCodeFor(method);
Mingyao Yang6ea1a0e2016-01-29 12:12:49 -0800166 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100167 } else {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700168 new_quick_code = GetQuickResolutionStub();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100169 }
170 } else { // !uninstall
Sebastien Hertzbae182c2013-12-17 10:42:03 +0100171 if ((interpreter_stubs_installed_ || forced_interpret_only_ || IsDeoptimized(method)) &&
172 !method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800173 new_quick_code = GetQuickToInterpreterBridge();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100174 } else {
175 // Do not overwrite resolution trampoline. When the trampoline initializes the method's
176 // class, all its static methods code will be set to the instrumentation entry point.
177 // For more details, see ClassLinker::FixupStaticTrampolines.
178 if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) {
Nicolas Geoffraya0619e22016-12-20 13:57:43 +0000179 if (NeedDebugVersionFor(method)) {
Mingyao Yang6ea1a0e2016-01-29 12:12:49 -0800180 // Oat code should not be used. Don't install instrumentation stub and
181 // use interpreter for instrumentation.
182 new_quick_code = GetQuickToInterpreterBridge();
183 } else if (entry_exit_stubs_installed_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800184 new_quick_code = GetQuickInstrumentationEntryPoint();
Nicolas Geoffraya0619e22016-12-20 13:57:43 +0000185 } else {
186 new_quick_code = class_linker->GetQuickOatCodeFor(method);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100187 }
188 } else {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700189 new_quick_code = GetQuickResolutionStub();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100190 }
191 }
192 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800193 UpdateEntrypoints(method, new_quick_code);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100194}
195
Ian Rogers62d6c772013-02-27 08:32:07 -0800196// Places the instrumentation exit pc as the return PC for every quick frame. This also allows
197// deoptimization of quick frames to interpreter frames.
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100198// Since we may already have done this previously, we need to push new instrumentation frame before
199// existing instrumentation frames.
Ian Rogers62d6c772013-02-27 08:32:07 -0800200static void InstrumentationInstallStack(Thread* thread, void* arg)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700201 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200202 struct InstallStackVisitor FINAL : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800203 InstallStackVisitor(Thread* thread_in, Context* context, uintptr_t instrumentation_exit_pc)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100204 : StackVisitor(thread_in, context, kInstrumentationStackWalk),
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800205 instrumentation_stack_(thread_in->GetInstrumentationStack()),
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100206 instrumentation_exit_pc_(instrumentation_exit_pc),
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100207 reached_existing_instrumentation_frames_(false), instrumentation_stack_depth_(0),
208 last_return_pc_(0) {
209 }
jeffhao725a9572012-11-13 18:20:12 -0800210
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700211 bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700212 ArtMethod* m = GetMethod();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700213 if (m == nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800214 if (kVerboseInstrumentation) {
215 LOG(INFO) << " Skipping upcall. Frame " << GetFrameId();
216 }
217 last_return_pc_ = 0;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700218 return true; // Ignore upcalls.
Ian Rogers306057f2012-11-26 12:45:53 -0800219 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700220 if (GetCurrentQuickFrame() == nullptr) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800221 bool interpreter_frame = true;
Sebastien Hertz320deb22014-06-11 19:45:05 +0200222 InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, 0, GetFrameId(),
223 interpreter_frame);
Jeff Haoa15a81b2014-05-27 18:25:47 -0700224 if (kVerboseInstrumentation) {
225 LOG(INFO) << "Pushing shadow frame " << instrumentation_frame.Dump();
226 }
227 shadow_stack_.push_back(instrumentation_frame);
228 return true; // Continue.
229 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800230 uintptr_t return_pc = GetReturnPc();
Nicolas Geoffray07c70282017-08-30 08:09:42 +0000231 if (m->IsRuntimeMethod()) {
232 if (return_pc == instrumentation_exit_pc_) {
233 if (kVerboseInstrumentation) {
234 LOG(INFO) << " Handling quick to interpreter transition. Frame " << GetFrameId();
235 }
236 CHECK_LT(instrumentation_stack_depth_, instrumentation_stack_->size());
237 const InstrumentationStackFrame& frame =
238 instrumentation_stack_->at(instrumentation_stack_depth_);
239 CHECK(frame.interpreter_entry_);
240 // This is an interpreter frame so method enter event must have been reported. However we
241 // need to push a DEX pc into the dex_pcs_ list to match size of instrumentation stack.
242 // Since we won't report method entry here, we can safely push any DEX pc.
243 dex_pcs_.push_back(0);
244 last_return_pc_ = frame.return_pc_;
245 ++instrumentation_stack_depth_;
246 return true;
247 } else {
248 if (kVerboseInstrumentation) {
249 LOG(INFO) << " Skipping runtime method. Frame " << GetFrameId();
250 }
251 last_return_pc_ = GetReturnPc();
252 return true; // Ignore unresolved methods since they will be instrumented after resolution.
253 }
254 }
Sebastien Hertz320deb22014-06-11 19:45:05 +0200255 if (kVerboseInstrumentation) {
256 LOG(INFO) << " Installing exit stub in " << DescribeLocation();
257 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100258 if (return_pc == instrumentation_exit_pc_) {
259 // We've reached a frame which has already been installed with instrumentation exit stub.
260 // We should have already installed instrumentation on previous frames.
261 reached_existing_instrumentation_frames_ = true;
262
Nicolas Geoffray07c70282017-08-30 08:09:42 +0000263 CHECK_LT(instrumentation_stack_depth_, instrumentation_stack_->size());
Daniel Mihalyica1d06c2014-08-18 18:45:31 +0200264 const InstrumentationStackFrame& frame =
265 instrumentation_stack_->at(instrumentation_stack_depth_);
David Sehr709b0702016-10-13 09:12:37 -0700266 CHECK_EQ(m, frame.method_) << "Expected " << ArtMethod::PrettyMethod(m)
267 << ", Found " << ArtMethod::PrettyMethod(frame.method_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100268 return_pc = frame.return_pc_;
269 if (kVerboseInstrumentation) {
270 LOG(INFO) << "Ignoring already instrumented " << frame.Dump();
271 }
272 } else {
273 CHECK_NE(return_pc, 0U);
274 CHECK(!reached_existing_instrumentation_frames_);
Nicolas Geoffray07c70282017-08-30 08:09:42 +0000275 InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, return_pc, GetFrameId(),
276 false);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100277 if (kVerboseInstrumentation) {
278 LOG(INFO) << "Pushing frame " << instrumentation_frame.Dump();
279 }
280
Sebastien Hertz320deb22014-06-11 19:45:05 +0200281 // Insert frame at the right position so we do not corrupt the instrumentation stack.
282 // Instrumentation stack frames are in descending frame id order.
283 auto it = instrumentation_stack_->begin();
284 for (auto end = instrumentation_stack_->end(); it != end; ++it) {
285 const InstrumentationStackFrame& current = *it;
286 if (instrumentation_frame.frame_id_ >= current.frame_id_) {
287 break;
288 }
289 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100290 instrumentation_stack_->insert(it, instrumentation_frame);
291 SetReturnPc(instrumentation_exit_pc_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800292 }
Nicolas Geoffray07c70282017-08-30 08:09:42 +0000293 dex_pcs_.push_back((GetCurrentOatQuickMethodHeader() == nullptr)
294 ? DexFile::kDexNoIndex
295 : GetCurrentOatQuickMethodHeader()->ToDexPc(m, last_return_pc_));
Ian Rogers62d6c772013-02-27 08:32:07 -0800296 last_return_pc_ = return_pc;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100297 ++instrumentation_stack_depth_;
Ian Rogers306057f2012-11-26 12:45:53 -0800298 return true; // Continue.
299 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800300 std::deque<InstrumentationStackFrame>* const instrumentation_stack_;
Jeff Haoa15a81b2014-05-27 18:25:47 -0700301 std::vector<InstrumentationStackFrame> shadow_stack_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800302 std::vector<uint32_t> dex_pcs_;
Ian Rogers306057f2012-11-26 12:45:53 -0800303 const uintptr_t instrumentation_exit_pc_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100304 bool reached_existing_instrumentation_frames_;
305 size_t instrumentation_stack_depth_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800306 uintptr_t last_return_pc_;
Ian Rogers306057f2012-11-26 12:45:53 -0800307 };
Ian Rogers62d6c772013-02-27 08:32:07 -0800308 if (kVerboseInstrumentation) {
309 std::string thread_name;
310 thread->GetThreadName(thread_name);
311 LOG(INFO) << "Installing exit stubs in " << thread_name;
Ian Rogers306057f2012-11-26 12:45:53 -0800312 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100313
314 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg);
Ian Rogers700a4022014-05-19 16:49:03 -0700315 std::unique_ptr<Context> context(Context::Create());
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700316 uintptr_t instrumentation_exit_pc = reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc());
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100317 InstallStackVisitor visitor(thread, context.get(), instrumentation_exit_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800318 visitor.WalkStack(true);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100319 CHECK_EQ(visitor.dex_pcs_.size(), thread->GetInstrumentationStack()->size());
Ian Rogers62d6c772013-02-27 08:32:07 -0800320
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100321 if (instrumentation->ShouldNotifyMethodEnterExitEvents()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100322 // Create method enter events for all methods currently on the thread's stack. We only do this
323 // if no debugger is attached to prevent from posting events twice.
Jeff Haoa15a81b2014-05-27 18:25:47 -0700324 auto ssi = visitor.shadow_stack_.rbegin();
325 for (auto isi = thread->GetInstrumentationStack()->rbegin(),
326 end = thread->GetInstrumentationStack()->rend(); isi != end; ++isi) {
327 while (ssi != visitor.shadow_stack_.rend() && (*ssi).frame_id_ < (*isi).frame_id_) {
328 instrumentation->MethodEnterEvent(thread, (*ssi).this_object_, (*ssi).method_, 0);
329 ++ssi;
330 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100331 uint32_t dex_pc = visitor.dex_pcs_.back();
332 visitor.dex_pcs_.pop_back();
Sebastien Hertz320deb22014-06-11 19:45:05 +0200333 if (!isi->interpreter_entry_) {
334 instrumentation->MethodEnterEvent(thread, (*isi).this_object_, (*isi).method_, dex_pc);
335 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100336 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800337 }
338 thread->VerifyStack();
Ian Rogers306057f2012-11-26 12:45:53 -0800339}
340
Mingyao Yang99170c62015-07-06 11:10:37 -0700341void Instrumentation::InstrumentThreadStack(Thread* thread) {
342 instrumentation_stubs_installed_ = true;
343 InstrumentationInstallStack(thread, this);
344}
345
Ian Rogers62d6c772013-02-27 08:32:07 -0800346// Removes the instrumentation exit pc as the return PC for every quick frame.
347static void InstrumentationRestoreStack(Thread* thread, void* arg)
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000348 REQUIRES(Locks::mutator_lock_) {
349 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
350
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200351 struct RestoreStackVisitor FINAL : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800352 RestoreStackVisitor(Thread* thread_in, uintptr_t instrumentation_exit_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -0800353 Instrumentation* instrumentation)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100354 : StackVisitor(thread_in, nullptr, kInstrumentationStackWalk),
355 thread_(thread_in),
Ian Rogers62d6c772013-02-27 08:32:07 -0800356 instrumentation_exit_pc_(instrumentation_exit_pc),
357 instrumentation_(instrumentation),
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800358 instrumentation_stack_(thread_in->GetInstrumentationStack()),
Ian Rogers62d6c772013-02-27 08:32:07 -0800359 frames_removed_(0) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800360
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700361 bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800362 if (instrumentation_stack_->size() == 0) {
jeffhao725a9572012-11-13 18:20:12 -0800363 return false; // Stop.
364 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700365 ArtMethod* m = GetMethod();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700366 if (GetCurrentQuickFrame() == nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800367 if (kVerboseInstrumentation) {
Daniel Mihalyica1d06c2014-08-18 18:45:31 +0200368 LOG(INFO) << " Ignoring a shadow frame. Frame " << GetFrameId()
David Sehr709b0702016-10-13 09:12:37 -0700369 << " Method=" << ArtMethod::PrettyMethod(m);
Ian Rogers62d6c772013-02-27 08:32:07 -0800370 }
371 return true; // Ignore shadow frames.
372 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700373 if (m == nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800374 if (kVerboseInstrumentation) {
375 LOG(INFO) << " Skipping upcall. Frame " << GetFrameId();
376 }
Ian Rogers306057f2012-11-26 12:45:53 -0800377 return true; // Ignore upcalls.
378 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800379 bool removed_stub = false;
380 // TODO: make this search more efficient?
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100381 const size_t frameId = GetFrameId();
382 for (const InstrumentationStackFrame& instrumentation_frame : *instrumentation_stack_) {
383 if (instrumentation_frame.frame_id_ == frameId) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800384 if (kVerboseInstrumentation) {
385 LOG(INFO) << " Removing exit stub in " << DescribeLocation();
386 }
Jeff Hao9a916d32013-06-27 18:45:37 -0700387 if (instrumentation_frame.interpreter_entry_) {
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700388 CHECK(m == Runtime::Current()->GetCalleeSaveMethod(CalleeSaveType::kSaveRefsAndArgs));
Jeff Hao9a916d32013-06-27 18:45:37 -0700389 } else {
David Sehr709b0702016-10-13 09:12:37 -0700390 CHECK(m == instrumentation_frame.method_) << ArtMethod::PrettyMethod(m);
Jeff Hao9a916d32013-06-27 18:45:37 -0700391 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800392 SetReturnPc(instrumentation_frame.return_pc_);
Nicolas Geoffray07c70282017-08-30 08:09:42 +0000393 if (instrumentation_->ShouldNotifyMethodEnterExitEvents()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100394 // Create the method exit events. As the methods didn't really exit the result is 0.
395 // We only do this if no debugger is attached to prevent from posting events twice.
396 instrumentation_->MethodExitEvent(thread_, instrumentation_frame.this_object_, m,
397 GetDexPc(), JValue());
398 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800399 frames_removed_++;
400 removed_stub = true;
401 break;
402 }
403 }
404 if (!removed_stub) {
405 if (kVerboseInstrumentation) {
406 LOG(INFO) << " No exit stub in " << DescribeLocation();
Ian Rogers306057f2012-11-26 12:45:53 -0800407 }
jeffhao725a9572012-11-13 18:20:12 -0800408 }
409 return true; // Continue.
410 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800411 Thread* const thread_;
Ian Rogers306057f2012-11-26 12:45:53 -0800412 const uintptr_t instrumentation_exit_pc_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800413 Instrumentation* const instrumentation_;
414 std::deque<instrumentation::InstrumentationStackFrame>* const instrumentation_stack_;
415 size_t frames_removed_;
jeffhao725a9572012-11-13 18:20:12 -0800416 };
Ian Rogers62d6c772013-02-27 08:32:07 -0800417 if (kVerboseInstrumentation) {
418 std::string thread_name;
419 thread->GetThreadName(thread_name);
420 LOG(INFO) << "Removing exit stubs in " << thread_name;
421 }
422 std::deque<instrumentation::InstrumentationStackFrame>* stack = thread->GetInstrumentationStack();
423 if (stack->size() > 0) {
424 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700425 uintptr_t instrumentation_exit_pc =
426 reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc());
Ian Rogers62d6c772013-02-27 08:32:07 -0800427 RestoreStackVisitor visitor(thread, instrumentation_exit_pc, instrumentation);
428 visitor.WalkStack(true);
429 CHECK_EQ(visitor.frames_removed_, stack->size());
430 while (stack->size() > 0) {
431 stack->pop_front();
432 }
jeffhao725a9572012-11-13 18:20:12 -0800433 }
434}
435
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200436static bool HasEvent(Instrumentation::InstrumentationEvent expected, uint32_t events) {
437 return (events & expected) != 0;
438}
439
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000440static void PotentiallyAddListenerTo(Instrumentation::InstrumentationEvent event,
441 uint32_t events,
442 std::list<InstrumentationListener*>& list,
443 InstrumentationListener* listener,
444 bool* has_listener)
445 REQUIRES(Locks::mutator_lock_, !Locks::thread_list_lock_, !Locks::classlinker_classes_lock_) {
446 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
447 if (!HasEvent(event, events)) {
448 return;
449 }
450 // If there is a free slot in the list, we insert the listener in that slot.
451 // Otherwise we add it to the end of the list.
452 auto it = std::find(list.begin(), list.end(), nullptr);
453 if (it != list.end()) {
454 *it = listener;
455 } else {
456 list.push_back(listener);
457 }
458 *has_listener = true;
459}
460
Ian Rogers62d6c772013-02-27 08:32:07 -0800461void Instrumentation::AddListener(InstrumentationListener* listener, uint32_t events) {
462 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000463 PotentiallyAddListenerTo(kMethodEntered,
464 events,
465 method_entry_listeners_,
466 listener,
467 &have_method_entry_listeners_);
468 PotentiallyAddListenerTo(kMethodExited,
469 events,
470 method_exit_listeners_,
471 listener,
472 &have_method_exit_listeners_);
473 PotentiallyAddListenerTo(kMethodUnwind,
474 events,
475 method_unwind_listeners_,
476 listener,
477 &have_method_unwind_listeners_);
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000478 PotentiallyAddListenerTo(kBranch,
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000479 events,
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000480 branch_listeners_,
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000481 listener,
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000482 &have_branch_listeners_);
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000483 PotentiallyAddListenerTo(kInvokeVirtualOrInterface,
484 events,
485 invoke_virtual_or_interface_listeners_,
486 listener,
487 &have_invoke_virtual_or_interface_listeners_);
488 PotentiallyAddListenerTo(kDexPcMoved,
489 events,
490 dex_pc_listeners_,
491 listener,
492 &have_dex_pc_listeners_);
493 PotentiallyAddListenerTo(kFieldRead,
494 events,
495 field_read_listeners_,
496 listener,
497 &have_field_read_listeners_);
498 PotentiallyAddListenerTo(kFieldWritten,
499 events,
500 field_write_listeners_,
501 listener,
502 &have_field_write_listeners_);
Alex Light6e1607e2017-08-23 10:06:18 -0700503 PotentiallyAddListenerTo(kExceptionThrown,
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000504 events,
Alex Light6e1607e2017-08-23 10:06:18 -0700505 exception_thrown_listeners_,
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000506 listener,
Alex Light6e1607e2017-08-23 10:06:18 -0700507 &have_exception_thrown_listeners_);
Alex Lighte814f9d2017-07-31 16:14:39 -0700508 PotentiallyAddListenerTo(kWatchedFramePop,
509 events,
510 watched_frame_pop_listeners_,
511 listener,
512 &have_watched_frame_pop_listeners_);
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200513 UpdateInterpreterHandlerTable();
jeffhao725a9572012-11-13 18:20:12 -0800514}
515
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000516static void PotentiallyRemoveListenerFrom(Instrumentation::InstrumentationEvent event,
517 uint32_t events,
518 std::list<InstrumentationListener*>& list,
519 InstrumentationListener* listener,
520 bool* has_listener)
521 REQUIRES(Locks::mutator_lock_, !Locks::thread_list_lock_, !Locks::classlinker_classes_lock_) {
522 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
523 if (!HasEvent(event, events)) {
524 return;
525 }
526 auto it = std::find(list.begin(), list.end(), listener);
527 if (it != list.end()) {
528 // Just update the entry, do not remove from the list. Removing entries in the list
529 // is unsafe when mutators are iterating over it.
530 *it = nullptr;
531 }
532
533 // Check if the list contains any non-null listener, and update 'has_listener'.
534 for (InstrumentationListener* l : list) {
535 if (l != nullptr) {
536 *has_listener = true;
537 return;
538 }
539 }
540 *has_listener = false;
541}
542
Ian Rogers62d6c772013-02-27 08:32:07 -0800543void Instrumentation::RemoveListener(InstrumentationListener* listener, uint32_t events) {
544 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000545 PotentiallyRemoveListenerFrom(kMethodEntered,
546 events,
547 method_entry_listeners_,
548 listener,
549 &have_method_entry_listeners_);
550 PotentiallyRemoveListenerFrom(kMethodExited,
551 events,
552 method_exit_listeners_,
553 listener,
554 &have_method_exit_listeners_);
555 PotentiallyRemoveListenerFrom(kMethodUnwind,
556 events,
557 method_unwind_listeners_,
558 listener,
559 &have_method_unwind_listeners_);
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000560 PotentiallyRemoveListenerFrom(kBranch,
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000561 events,
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000562 branch_listeners_,
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000563 listener,
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000564 &have_branch_listeners_);
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000565 PotentiallyRemoveListenerFrom(kInvokeVirtualOrInterface,
566 events,
567 invoke_virtual_or_interface_listeners_,
568 listener,
569 &have_invoke_virtual_or_interface_listeners_);
570 PotentiallyRemoveListenerFrom(kDexPcMoved,
571 events,
572 dex_pc_listeners_,
573 listener,
574 &have_dex_pc_listeners_);
575 PotentiallyRemoveListenerFrom(kFieldRead,
576 events,
577 field_read_listeners_,
578 listener,
579 &have_field_read_listeners_);
580 PotentiallyRemoveListenerFrom(kFieldWritten,
581 events,
582 field_write_listeners_,
583 listener,
584 &have_field_write_listeners_);
Alex Light6e1607e2017-08-23 10:06:18 -0700585 PotentiallyRemoveListenerFrom(kExceptionThrown,
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000586 events,
Alex Light6e1607e2017-08-23 10:06:18 -0700587 exception_thrown_listeners_,
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000588 listener,
Alex Light6e1607e2017-08-23 10:06:18 -0700589 &have_exception_thrown_listeners_);
Alex Lighte814f9d2017-07-31 16:14:39 -0700590 PotentiallyRemoveListenerFrom(kWatchedFramePop,
591 events,
592 watched_frame_pop_listeners_,
593 listener,
594 &have_watched_frame_pop_listeners_);
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200595 UpdateInterpreterHandlerTable();
jeffhao725a9572012-11-13 18:20:12 -0800596}
597
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200598Instrumentation::InstrumentationLevel Instrumentation::GetCurrentInstrumentationLevel() const {
Alex Light4ba388a2017-01-27 10:26:49 -0800599 if (interpreter_stubs_installed_) {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200600 return InstrumentationLevel::kInstrumentWithInterpreter;
Ian Rogers62d6c772013-02-27 08:32:07 -0800601 } else if (entry_exit_stubs_installed_) {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200602 return InstrumentationLevel::kInstrumentWithInstrumentationStubs;
Ian Rogers62d6c772013-02-27 08:32:07 -0800603 } else {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200604 return InstrumentationLevel::kInstrumentNothing;
Ian Rogers62d6c772013-02-27 08:32:07 -0800605 }
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200606}
607
Alex Lightdba61482016-12-21 08:20:29 -0800608bool Instrumentation::RequiresInstrumentationInstallation(InstrumentationLevel new_level) const {
Alex Light4ba388a2017-01-27 10:26:49 -0800609 // We need to reinstall instrumentation if we go to a different level.
610 return GetCurrentInstrumentationLevel() != new_level;
Alex Lightdba61482016-12-21 08:20:29 -0800611}
612
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200613void Instrumentation::ConfigureStubs(const char* key, InstrumentationLevel desired_level) {
614 // Store the instrumentation level for this key or remove it.
615 if (desired_level == InstrumentationLevel::kInstrumentNothing) {
616 // The client no longer needs instrumentation.
617 requested_instrumentation_levels_.erase(key);
618 } else {
619 // The client needs instrumentation.
620 requested_instrumentation_levels_.Overwrite(key, desired_level);
621 }
622
623 // Look for the highest required instrumentation level.
624 InstrumentationLevel requested_level = InstrumentationLevel::kInstrumentNothing;
625 for (const auto& v : requested_instrumentation_levels_) {
626 requested_level = std::max(requested_level, v.second);
627 }
628
629 interpret_only_ = (requested_level == InstrumentationLevel::kInstrumentWithInterpreter) ||
630 forced_interpret_only_;
631
Alex Lightdba61482016-12-21 08:20:29 -0800632 if (!RequiresInstrumentationInstallation(requested_level)) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800633 // We're already set.
634 return;
635 }
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100636 Thread* const self = Thread::Current();
Ian Rogers62d6c772013-02-27 08:32:07 -0800637 Runtime* runtime = Runtime::Current();
Sebastien Hertza8a697f2015-01-15 12:28:47 +0100638 Locks::mutator_lock_->AssertExclusiveHeld(self);
Ian Rogers62d6c772013-02-27 08:32:07 -0800639 Locks::thread_list_lock_->AssertNotHeld(self);
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200640 if (requested_level > InstrumentationLevel::kInstrumentNothing) {
Alex Light4ba388a2017-01-27 10:26:49 -0800641 if (requested_level == InstrumentationLevel::kInstrumentWithInterpreter) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800642 interpreter_stubs_installed_ = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800643 entry_exit_stubs_installed_ = true;
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200644 } else {
645 CHECK_EQ(requested_level, InstrumentationLevel::kInstrumentWithInstrumentationStubs);
646 entry_exit_stubs_installed_ = true;
647 interpreter_stubs_installed_ = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800648 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700649 InstallStubsClassVisitor visitor(this);
650 runtime->GetClassLinker()->VisitClasses(&visitor);
Ian Rogers62d6c772013-02-27 08:32:07 -0800651 instrumentation_stubs_installed_ = true;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100652 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800653 runtime->GetThreadList()->ForEach(InstrumentationInstallStack, this);
654 } else {
655 interpreter_stubs_installed_ = false;
656 entry_exit_stubs_installed_ = false;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700657 InstallStubsClassVisitor visitor(this);
658 runtime->GetClassLinker()->VisitClasses(&visitor);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100659 // Restore stack only if there is no method currently deoptimized.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700660 bool empty;
661 {
662 ReaderMutexLock mu(self, deoptimized_methods_lock_);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700663 empty = IsDeoptimizedMethodsEmpty(); // Avoid lock violation.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700664 }
665 if (empty) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100666 MutexLock mu(self, *Locks::thread_list_lock_);
667 Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this);
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000668 // Only do this after restoring, as walking the stack when restoring will see
669 // the instrumentation exit pc.
670 instrumentation_stubs_installed_ = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100671 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800672 }
jeffhao725a9572012-11-13 18:20:12 -0800673}
674
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200675static void ResetQuickAllocEntryPointsForThread(Thread* thread, void* arg ATTRIBUTE_UNUSED) {
Mathieu Chartier5ace2012016-11-30 10:15:41 -0800676 thread->ResetQuickAllocEntryPointsForThread(kUseReadBarrier && thread->GetIsGcMarking());
Ian Rogersfa824272013-11-05 16:12:57 -0800677}
678
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700679void Instrumentation::SetEntrypointsInstrumented(bool instrumented) {
680 Thread* self = Thread::Current();
Mathieu Chartier661974a2014-01-09 11:23:53 -0800681 Runtime* runtime = Runtime::Current();
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700682 Locks::mutator_lock_->AssertNotHeld(self);
683 Locks::instrument_entrypoints_lock_->AssertHeld(self);
684 if (runtime->IsStarted()) {
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700685 ScopedSuspendAll ssa(__FUNCTION__);
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700686 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
Mathieu Chartier661974a2014-01-09 11:23:53 -0800687 SetQuickAllocEntryPointsInstrumented(instrumented);
688 ResetQuickAllocEntryPoints();
Mathieu Chartier50e93312016-03-16 11:25:29 -0700689 alloc_entrypoints_instrumented_ = instrumented;
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700690 } else {
691 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
692 SetQuickAllocEntryPointsInstrumented(instrumented);
Andreas Gampe157c77e2016-10-17 17:44:41 -0700693
694 // Note: ResetQuickAllocEntryPoints only works when the runtime is started. Manually run the
695 // update for just this thread.
Andreas Gampe162ae502016-10-18 10:03:42 -0700696 // Note: self may be null. One of those paths is setting instrumentation in the Heap
697 // constructor for gcstress mode.
698 if (self != nullptr) {
699 ResetQuickAllocEntryPointsForThread(self, nullptr);
700 }
Andreas Gampe157c77e2016-10-17 17:44:41 -0700701
Mathieu Chartier50e93312016-03-16 11:25:29 -0700702 alloc_entrypoints_instrumented_ = instrumented;
Mathieu Chartier661974a2014-01-09 11:23:53 -0800703 }
704}
705
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700706void Instrumentation::InstrumentQuickAllocEntryPoints() {
707 MutexLock mu(Thread::Current(), *Locks::instrument_entrypoints_lock_);
708 InstrumentQuickAllocEntryPointsLocked();
Ian Rogersfa824272013-11-05 16:12:57 -0800709}
710
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700711void Instrumentation::UninstrumentQuickAllocEntryPoints() {
712 MutexLock mu(Thread::Current(), *Locks::instrument_entrypoints_lock_);
713 UninstrumentQuickAllocEntryPointsLocked();
714}
715
716void Instrumentation::InstrumentQuickAllocEntryPointsLocked() {
717 Locks::instrument_entrypoints_lock_->AssertHeld(Thread::Current());
718 if (quick_alloc_entry_points_instrumentation_counter_ == 0) {
719 SetEntrypointsInstrumented(true);
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800720 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700721 ++quick_alloc_entry_points_instrumentation_counter_;
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700722}
723
724void Instrumentation::UninstrumentQuickAllocEntryPointsLocked() {
725 Locks::instrument_entrypoints_lock_->AssertHeld(Thread::Current());
726 CHECK_GT(quick_alloc_entry_points_instrumentation_counter_, 0U);
727 --quick_alloc_entry_points_instrumentation_counter_;
728 if (quick_alloc_entry_points_instrumentation_counter_ == 0) {
729 SetEntrypointsInstrumented(false);
730 }
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800731}
732
733void Instrumentation::ResetQuickAllocEntryPoints() {
734 Runtime* runtime = Runtime::Current();
735 if (runtime->IsStarted()) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800736 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700737 runtime->GetThreadList()->ForEach(ResetQuickAllocEntryPointsForThread, nullptr);
Ian Rogersfa824272013-11-05 16:12:57 -0800738 }
739}
740
Mingyao Yang3fd448a2016-05-10 14:30:41 -0700741void Instrumentation::UpdateMethodsCodeImpl(ArtMethod* method, const void* quick_code) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800742 const void* new_quick_code;
Ian Rogers62d6c772013-02-27 08:32:07 -0800743 if (LIKELY(!instrumentation_stubs_installed_)) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800744 new_quick_code = quick_code;
Jeff Hao65d15d92013-07-16 16:39:33 -0700745 } else {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100746 if ((interpreter_stubs_installed_ || IsDeoptimized(method)) && !method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800747 new_quick_code = GetQuickToInterpreterBridge();
Jeff Hao65d15d92013-07-16 16:39:33 -0700748 } else {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700749 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700750 if (class_linker->IsQuickResolutionStub(quick_code) ||
751 class_linker->IsQuickToInterpreterBridge(quick_code)) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700752 new_quick_code = quick_code;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700753 } else if (entry_exit_stubs_installed_) {
754 new_quick_code = GetQuickInstrumentationEntryPoint();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700755 } else {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700756 new_quick_code = quick_code;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700757 }
Jeff Hao65d15d92013-07-16 16:39:33 -0700758 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800759 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800760 UpdateEntrypoints(method, new_quick_code);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100761}
762
Mingyao Yang3fd448a2016-05-10 14:30:41 -0700763void Instrumentation::UpdateMethodsCode(ArtMethod* method, const void* quick_code) {
764 DCHECK(method->GetDeclaringClass()->IsResolved());
765 UpdateMethodsCodeImpl(method, quick_code);
766}
767
Nicolas Geoffraya0619e22016-12-20 13:57:43 +0000768void Instrumentation::UpdateMethodsCodeForJavaDebuggable(ArtMethod* method,
769 const void* quick_code) {
770 // When the runtime is set to Java debuggable, we may update the entry points of
771 // all methods of a class to the interpreter bridge. A method's declaring class
772 // might not be in resolved state yet in that case, so we bypass the DCHECK in
773 // UpdateMethodsCode.
Mingyao Yang3fd448a2016-05-10 14:30:41 -0700774 UpdateMethodsCodeImpl(method, quick_code);
775}
776
Mathieu Chartiere401d142015-04-22 13:56:20 -0700777bool Instrumentation::AddDeoptimizedMethod(ArtMethod* method) {
778 if (IsDeoptimizedMethod(method)) {
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700779 // Already in the map. Return.
780 return false;
781 }
782 // Not found. Add it.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700783 deoptimized_methods_.insert(method);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700784 return true;
785}
786
Mathieu Chartiere401d142015-04-22 13:56:20 -0700787bool Instrumentation::IsDeoptimizedMethod(ArtMethod* method) {
788 return deoptimized_methods_.find(method) != deoptimized_methods_.end();
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700789}
790
Mathieu Chartiere401d142015-04-22 13:56:20 -0700791ArtMethod* Instrumentation::BeginDeoptimizedMethod() {
792 if (deoptimized_methods_.empty()) {
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700793 // Empty.
794 return nullptr;
795 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700796 return *deoptimized_methods_.begin();
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700797}
798
Mathieu Chartiere401d142015-04-22 13:56:20 -0700799bool Instrumentation::RemoveDeoptimizedMethod(ArtMethod* method) {
800 auto it = deoptimized_methods_.find(method);
801 if (it == deoptimized_methods_.end()) {
802 return false;
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700803 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700804 deoptimized_methods_.erase(it);
805 return true;
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700806}
807
808bool Instrumentation::IsDeoptimizedMethodsEmpty() const {
809 return deoptimized_methods_.empty();
810}
811
Mathieu Chartiere401d142015-04-22 13:56:20 -0700812void Instrumentation::Deoptimize(ArtMethod* method) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100813 CHECK(!method->IsNative());
814 CHECK(!method->IsProxyMethod());
Alex Light9139e002015-10-09 15:59:48 -0700815 CHECK(method->IsInvokable());
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100816
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700817 Thread* self = Thread::Current();
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700818 {
819 WriterMutexLock mu(self, deoptimized_methods_lock_);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700820 bool has_not_been_deoptimized = AddDeoptimizedMethod(method);
David Sehr709b0702016-10-13 09:12:37 -0700821 CHECK(has_not_been_deoptimized) << "Method " << ArtMethod::PrettyMethod(method)
Daniel Mihalyica1d06c2014-08-18 18:45:31 +0200822 << " is already deoptimized";
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700823 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100824 if (!interpreter_stubs_installed_) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800825 UpdateEntrypoints(method, GetQuickInstrumentationEntryPoint());
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100826
827 // Install instrumentation exit stub and instrumentation frames. We may already have installed
828 // these previously so it will only cover the newly created frames.
829 instrumentation_stubs_installed_ = true;
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700830 MutexLock mu(self, *Locks::thread_list_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100831 Runtime::Current()->GetThreadList()->ForEach(InstrumentationInstallStack, this);
832 }
833}
834
Mathieu Chartiere401d142015-04-22 13:56:20 -0700835void Instrumentation::Undeoptimize(ArtMethod* method) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100836 CHECK(!method->IsNative());
837 CHECK(!method->IsProxyMethod());
Alex Light9139e002015-10-09 15:59:48 -0700838 CHECK(method->IsInvokable());
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100839
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700840 Thread* self = Thread::Current();
841 bool empty;
842 {
843 WriterMutexLock mu(self, deoptimized_methods_lock_);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700844 bool found_and_erased = RemoveDeoptimizedMethod(method);
David Sehr709b0702016-10-13 09:12:37 -0700845 CHECK(found_and_erased) << "Method " << ArtMethod::PrettyMethod(method)
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700846 << " is not deoptimized";
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700847 empty = IsDeoptimizedMethodsEmpty();
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700848 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100849
850 // Restore code and possibly stack only if we did not deoptimize everything.
851 if (!interpreter_stubs_installed_) {
852 // Restore its code or resolution trampoline.
853 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800854 if (method->IsStatic() && !method->IsConstructor() &&
855 !method->GetDeclaringClass()->IsInitialized()) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800856 UpdateEntrypoints(method, GetQuickResolutionStub());
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100857 } else {
Nicolas Geoffraya0619e22016-12-20 13:57:43 +0000858 const void* quick_code = NeedDebugVersionFor(method)
859 ? GetQuickToInterpreterBridge()
860 : class_linker->GetQuickOatCodeFor(method);
Elliott Hughes956af0f2014-12-11 14:34:28 -0800861 UpdateEntrypoints(method, quick_code);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100862 }
863
864 // If there is no deoptimized method left, we can restore the stack of each thread.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700865 if (empty) {
866 MutexLock mu(self, *Locks::thread_list_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100867 Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this);
868 instrumentation_stubs_installed_ = false;
869 }
870 }
871}
872
Mathieu Chartiere401d142015-04-22 13:56:20 -0700873bool Instrumentation::IsDeoptimized(ArtMethod* method) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100874 DCHECK(method != nullptr);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700875 ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700876 return IsDeoptimizedMethod(method);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100877}
878
879void Instrumentation::EnableDeoptimization() {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700880 ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700881 CHECK(IsDeoptimizedMethodsEmpty());
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100882 CHECK_EQ(deoptimization_enabled_, false);
883 deoptimization_enabled_ = true;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100884}
885
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200886void Instrumentation::DisableDeoptimization(const char* key) {
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100887 CHECK_EQ(deoptimization_enabled_, true);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100888 // If we deoptimized everything, undo it.
Alex Lightdba61482016-12-21 08:20:29 -0800889 InstrumentationLevel level = GetCurrentInstrumentationLevel();
890 if (level == InstrumentationLevel::kInstrumentWithInterpreter) {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200891 UndeoptimizeEverything(key);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100892 }
893 // Undeoptimized selected methods.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700894 while (true) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700895 ArtMethod* method;
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700896 {
897 ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700898 if (IsDeoptimizedMethodsEmpty()) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700899 break;
900 }
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700901 method = BeginDeoptimizedMethod();
902 CHECK(method != nullptr);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700903 }
904 Undeoptimize(method);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100905 }
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100906 deoptimization_enabled_ = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100907}
908
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100909// Indicates if instrumentation should notify method enter/exit events to the listeners.
910bool Instrumentation::ShouldNotifyMethodEnterExitEvents() const {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200911 if (!HasMethodEntryListeners() && !HasMethodExitListeners()) {
912 return false;
913 }
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100914 return !deoptimization_enabled_ && !interpreter_stubs_installed_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100915}
916
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200917void Instrumentation::DeoptimizeEverything(const char* key) {
918 CHECK(deoptimization_enabled_);
919 ConfigureStubs(key, InstrumentationLevel::kInstrumentWithInterpreter);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100920}
921
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200922void Instrumentation::UndeoptimizeEverything(const char* key) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100923 CHECK(interpreter_stubs_installed_);
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200924 CHECK(deoptimization_enabled_);
925 ConfigureStubs(key, InstrumentationLevel::kInstrumentNothing);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100926}
927
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200928void Instrumentation::EnableMethodTracing(const char* key, bool needs_interpreter) {
929 InstrumentationLevel level;
930 if (needs_interpreter) {
931 level = InstrumentationLevel::kInstrumentWithInterpreter;
932 } else {
933 level = InstrumentationLevel::kInstrumentWithInstrumentationStubs;
934 }
935 ConfigureStubs(key, level);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100936}
937
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200938void Instrumentation::DisableMethodTracing(const char* key) {
939 ConfigureStubs(key, InstrumentationLevel::kInstrumentNothing);
jeffhao725a9572012-11-13 18:20:12 -0800940}
941
Andreas Gampe542451c2016-07-26 09:02:02 -0700942const void* Instrumentation::GetQuickCodeFor(ArtMethod* method, PointerSize pointer_size) const {
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100943 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers62d6c772013-02-27 08:32:07 -0800944 if (LIKELY(!instrumentation_stubs_installed_)) {
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800945 const void* code = method->GetEntryPointFromQuickCompiledCodePtrSize(pointer_size);
Vladimir Marko8a630572014-04-09 18:45:35 +0100946 DCHECK(code != nullptr);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700947 if (LIKELY(!class_linker->IsQuickResolutionStub(code) &&
948 !class_linker->IsQuickToInterpreterBridge(code)) &&
949 !class_linker->IsQuickResolutionStub(code) &&
950 !class_linker->IsQuickToInterpreterBridge(code)) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800951 return code;
952 }
953 }
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100954 return class_linker->GetQuickOatCodeFor(method);
jeffhao725a9572012-11-13 18:20:12 -0800955}
956
Alex Lightd7661582017-05-01 13:48:16 -0700957void Instrumentation::MethodEnterEventImpl(Thread* thread,
958 ObjPtr<mirror::Object> this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700959 ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800960 uint32_t dex_pc) const {
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000961 if (HasMethodEntryListeners()) {
Alex Lightd7661582017-05-01 13:48:16 -0700962 Thread* self = Thread::Current();
963 StackHandleScope<1> hs(self);
964 Handle<mirror::Object> thiz(hs.NewHandle(this_object));
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000965 for (InstrumentationListener* listener : method_entry_listeners_) {
966 if (listener != nullptr) {
Alex Lightd7661582017-05-01 13:48:16 -0700967 listener->MethodEntered(thread, thiz, method, dex_pc);
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000968 }
969 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800970 }
971}
972
Alex Lightd7661582017-05-01 13:48:16 -0700973void Instrumentation::MethodExitEventImpl(Thread* thread,
974 ObjPtr<mirror::Object> this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700975 ArtMethod* method,
Alex Lightd7661582017-05-01 13:48:16 -0700976 uint32_t dex_pc,
977 const JValue& return_value) const {
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000978 if (HasMethodExitListeners()) {
Alex Lightd7661582017-05-01 13:48:16 -0700979 Thread* self = Thread::Current();
980 StackHandleScope<2> hs(self);
981 Handle<mirror::Object> thiz(hs.NewHandle(this_object));
982 if (method->GetInterfaceMethodIfProxy(kRuntimePointerSize)
983 ->GetReturnTypePrimitive() != Primitive::kPrimNot) {
984 for (InstrumentationListener* listener : method_exit_listeners_) {
985 if (listener != nullptr) {
986 listener->MethodExited(thread, thiz, method, dex_pc, return_value);
987 }
988 }
989 } else {
990 Handle<mirror::Object> ret(hs.NewHandle(return_value.GetL()));
991 for (InstrumentationListener* listener : method_exit_listeners_) {
992 if (listener != nullptr) {
993 listener->MethodExited(thread, thiz, method, dex_pc, ret);
994 }
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000995 }
996 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800997 }
998}
999
Alex Lightd7661582017-05-01 13:48:16 -07001000void Instrumentation::MethodUnwindEvent(Thread* thread,
1001 mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -07001002 ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -08001003 uint32_t dex_pc) const {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +02001004 if (HasMethodUnwindListeners()) {
Alex Lightd7661582017-05-01 13:48:16 -07001005 Thread* self = Thread::Current();
1006 StackHandleScope<1> hs(self);
1007 Handle<mirror::Object> thiz(hs.NewHandle(this_object));
Mathieu Chartier02e25112013-08-14 16:14:24 -07001008 for (InstrumentationListener* listener : method_unwind_listeners_) {
Nicolas Geoffray514a6162015-11-03 11:44:24 +00001009 if (listener != nullptr) {
Alex Lightd7661582017-05-01 13:48:16 -07001010 listener->MethodUnwind(thread, thiz, method, dex_pc);
Nicolas Geoffray514a6162015-11-03 11:44:24 +00001011 }
Ian Rogers62d6c772013-02-27 08:32:07 -08001012 }
1013 }
1014}
1015
Alex Lightd7661582017-05-01 13:48:16 -07001016void Instrumentation::DexPcMovedEventImpl(Thread* thread,
1017 ObjPtr<mirror::Object> this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -07001018 ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -08001019 uint32_t dex_pc) const {
Alex Lightd7661582017-05-01 13:48:16 -07001020 Thread* self = Thread::Current();
1021 StackHandleScope<1> hs(self);
1022 Handle<mirror::Object> thiz(hs.NewHandle(this_object));
Nicolas Geoffray514a6162015-11-03 11:44:24 +00001023 for (InstrumentationListener* listener : dex_pc_listeners_) {
1024 if (listener != nullptr) {
Alex Lightd7661582017-05-01 13:48:16 -07001025 listener->DexPcMoved(thread, thiz, method, dex_pc);
Nicolas Geoffray514a6162015-11-03 11:44:24 +00001026 }
Ian Rogers62d6c772013-02-27 08:32:07 -08001027 }
1028}
1029
Nicolas Geoffray81f0f952016-01-20 16:25:19 +00001030void Instrumentation::BranchImpl(Thread* thread,
1031 ArtMethod* method,
1032 uint32_t dex_pc,
1033 int32_t offset) const {
1034 for (InstrumentationListener* listener : branch_listeners_) {
Nicolas Geoffray514a6162015-11-03 11:44:24 +00001035 if (listener != nullptr) {
Nicolas Geoffray81f0f952016-01-20 16:25:19 +00001036 listener->Branch(thread, method, dex_pc, offset);
Nicolas Geoffray514a6162015-11-03 11:44:24 +00001037 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001038 }
1039}
1040
Nicolas Geoffray5550ca82015-08-21 18:38:30 +01001041void Instrumentation::InvokeVirtualOrInterfaceImpl(Thread* thread,
Alex Lightd7661582017-05-01 13:48:16 -07001042 ObjPtr<mirror::Object> this_object,
Nicolas Geoffray5550ca82015-08-21 18:38:30 +01001043 ArtMethod* caller,
1044 uint32_t dex_pc,
1045 ArtMethod* callee) const {
Alex Lightd7661582017-05-01 13:48:16 -07001046 Thread* self = Thread::Current();
1047 StackHandleScope<1> hs(self);
1048 Handle<mirror::Object> thiz(hs.NewHandle(this_object));
Nicolas Geoffray5550ca82015-08-21 18:38:30 +01001049 for (InstrumentationListener* listener : invoke_virtual_or_interface_listeners_) {
Nicolas Geoffray514a6162015-11-03 11:44:24 +00001050 if (listener != nullptr) {
Alex Lightd7661582017-05-01 13:48:16 -07001051 listener->InvokeVirtualOrInterface(thread, thiz, caller, dex_pc, callee);
Nicolas Geoffray514a6162015-11-03 11:44:24 +00001052 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +01001053 }
1054}
1055
Alex Lighte814f9d2017-07-31 16:14:39 -07001056void Instrumentation::WatchedFramePopImpl(Thread* thread, const ShadowFrame& frame) const {
1057 for (InstrumentationListener* listener : watched_frame_pop_listeners_) {
1058 if (listener != nullptr) {
1059 listener->WatchedFramePop(thread, frame);
1060 }
1061 }
1062}
1063
Alex Lightd7661582017-05-01 13:48:16 -07001064void Instrumentation::FieldReadEventImpl(Thread* thread,
1065 ObjPtr<mirror::Object> this_object,
1066 ArtMethod* method,
1067 uint32_t dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001068 ArtField* field) const {
Alex Lightd7661582017-05-01 13:48:16 -07001069 Thread* self = Thread::Current();
1070 StackHandleScope<1> hs(self);
1071 Handle<mirror::Object> thiz(hs.NewHandle(this_object));
Nicolas Geoffray514a6162015-11-03 11:44:24 +00001072 for (InstrumentationListener* listener : field_read_listeners_) {
1073 if (listener != nullptr) {
Alex Lightd7661582017-05-01 13:48:16 -07001074 listener->FieldRead(thread, thiz, method, dex_pc, field);
Nicolas Geoffray514a6162015-11-03 11:44:24 +00001075 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001076 }
1077}
1078
Alex Lightd7661582017-05-01 13:48:16 -07001079void Instrumentation::FieldWriteEventImpl(Thread* thread,
1080 ObjPtr<mirror::Object> this_object,
1081 ArtMethod* method,
1082 uint32_t dex_pc,
1083 ArtField* field,
1084 const JValue& field_value) const {
1085 Thread* self = Thread::Current();
1086 StackHandleScope<2> hs(self);
1087 Handle<mirror::Object> thiz(hs.NewHandle(this_object));
1088 if (field->IsPrimitiveType()) {
1089 for (InstrumentationListener* listener : field_write_listeners_) {
1090 if (listener != nullptr) {
1091 listener->FieldWritten(thread, thiz, method, dex_pc, field, field_value);
1092 }
1093 }
1094 } else {
1095 Handle<mirror::Object> val(hs.NewHandle(field_value.GetL()));
1096 for (InstrumentationListener* listener : field_write_listeners_) {
1097 if (listener != nullptr) {
1098 listener->FieldWritten(thread, thiz, method, dex_pc, field, val);
1099 }
Nicolas Geoffray514a6162015-11-03 11:44:24 +00001100 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001101 }
1102}
1103
Alex Light6e1607e2017-08-23 10:06:18 -07001104void Instrumentation::ExceptionThrownEvent(Thread* thread,
Sebastien Hertz947ff082013-09-17 14:10:13 +02001105 mirror::Throwable* exception_object) const {
Hiroshi Yamauchi3481f7a2017-02-10 12:07:36 -08001106 Thread* self = Thread::Current();
1107 StackHandleScope<1> hs(self);
1108 Handle<mirror::Throwable> h_exception(hs.NewHandle(exception_object));
Alex Light6e1607e2017-08-23 10:06:18 -07001109 if (HasExceptionThrownListeners()) {
Hiroshi Yamauchi3481f7a2017-02-10 12:07:36 -08001110 DCHECK_EQ(thread->GetException(), h_exception.Get());
Jeff Haoc0bd4da2013-04-11 15:52:28 -07001111 thread->ClearException();
Alex Light6e1607e2017-08-23 10:06:18 -07001112 for (InstrumentationListener* listener : exception_thrown_listeners_) {
Nicolas Geoffray514a6162015-11-03 11:44:24 +00001113 if (listener != nullptr) {
Alex Light6e1607e2017-08-23 10:06:18 -07001114 listener->ExceptionThrown(thread, h_exception);
Nicolas Geoffray514a6162015-11-03 11:44:24 +00001115 }
Ian Rogers62d6c772013-02-27 08:32:07 -08001116 }
Hiroshi Yamauchi3481f7a2017-02-10 12:07:36 -08001117 thread->SetException(h_exception.Get());
Ian Rogers62d6c772013-02-27 08:32:07 -08001118 }
1119}
1120
Sebastien Hertzb2feaaf2015-10-12 13:40:10 +00001121// Computes a frame ID by ignoring inlined frames.
1122size_t Instrumentation::ComputeFrameId(Thread* self,
1123 size_t frame_depth,
1124 size_t inlined_frames_before_frame) {
1125 CHECK_GE(frame_depth, inlined_frames_before_frame);
1126 size_t no_inline_depth = frame_depth - inlined_frames_before_frame;
1127 return StackVisitor::ComputeNumFrames(self, kInstrumentationStackWalk) - no_inline_depth;
1128}
1129
Ian Rogers62d6c772013-02-27 08:32:07 -08001130static void CheckStackDepth(Thread* self, const InstrumentationStackFrame& instrumentation_frame,
1131 int delta)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001132 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01001133 size_t frame_id = StackVisitor::ComputeNumFrames(self, kInstrumentationStackWalk) + delta;
Ian Rogers62d6c772013-02-27 08:32:07 -08001134 if (frame_id != instrumentation_frame.frame_id_) {
1135 LOG(ERROR) << "Expected frame_id=" << frame_id << " but found "
1136 << instrumentation_frame.frame_id_;
1137 StackVisitor::DescribeStack(self);
1138 CHECK_EQ(frame_id, instrumentation_frame.frame_id_);
1139 }
1140}
1141
1142void Instrumentation::PushInstrumentationStackFrame(Thread* self, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -07001143 ArtMethod* method,
Jeff Hao9a916d32013-06-27 18:45:37 -07001144 uintptr_t lr, bool interpreter_entry) {
Alex Lightb7edcda2017-04-27 13:20:31 -07001145 DCHECK(!self->IsExceptionPending());
Ian Rogers62d6c772013-02-27 08:32:07 -08001146 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack();
1147 if (kVerboseInstrumentation) {
David Sehr709b0702016-10-13 09:12:37 -07001148 LOG(INFO) << "Entering " << ArtMethod::PrettyMethod(method) << " from PC "
1149 << reinterpret_cast<void*>(lr);
Ian Rogers62d6c772013-02-27 08:32:07 -08001150 }
Alex Lightb7edcda2017-04-27 13:20:31 -07001151
1152 // We send the enter event before pushing the instrumentation frame to make cleanup easier. If the
1153 // event causes an exception we can simply send the unwind event and return.
1154 StackHandleScope<1> hs(self);
1155 Handle<mirror::Object> h_this(hs.NewHandle(this_object));
1156 if (!interpreter_entry) {
1157 MethodEnterEvent(self, h_this.Get(), method, 0);
1158 if (self->IsExceptionPending()) {
1159 MethodUnwindEvent(self, h_this.Get(), method, 0);
1160 return;
1161 }
1162 }
1163
1164 // We have a callee-save frame meaning this value is guaranteed to never be 0.
1165 DCHECK(!self->IsExceptionPending());
1166 size_t frame_id = StackVisitor::ComputeNumFrames(self, kInstrumentationStackWalk);
1167
1168 instrumentation::InstrumentationStackFrame instrumentation_frame(h_this.Get(), method, lr,
Jeff Hao9a916d32013-06-27 18:45:37 -07001169 frame_id, interpreter_entry);
Ian Rogers62d6c772013-02-27 08:32:07 -08001170 stack->push_front(instrumentation_frame);
Ian Rogers62d6c772013-02-27 08:32:07 -08001171}
1172
Alex Lightb7edcda2017-04-27 13:20:31 -07001173TwoWordReturn Instrumentation::PopInstrumentationStackFrame(Thread* self,
1174 uintptr_t* return_pc,
1175 uint64_t* gpr_result,
1176 uint64_t* fpr_result) {
1177 DCHECK(gpr_result != nullptr);
1178 DCHECK(fpr_result != nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -08001179 // Do the pop.
1180 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack();
1181 CHECK_GT(stack->size(), 0U);
1182 InstrumentationStackFrame instrumentation_frame = stack->front();
1183 stack->pop_front();
1184
1185 // Set return PC and check the sanity of the stack.
1186 *return_pc = instrumentation_frame.return_pc_;
1187 CheckStackDepth(self, instrumentation_frame, 0);
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001188 self->VerifyStack();
Ian Rogers62d6c772013-02-27 08:32:07 -08001189
Mathieu Chartiere401d142015-04-22 13:56:20 -07001190 ArtMethod* method = instrumentation_frame.method_;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001191 uint32_t length;
Andreas Gampe542451c2016-07-26 09:02:02 -07001192 const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Nicolas Geoffray07c70282017-08-30 08:09:42 +00001193 char return_shorty = method->GetInterfaceMethodIfProxy(pointer_size)->GetShorty(&length)[0];
Alex Lightb7edcda2017-04-27 13:20:31 -07001194 bool is_ref = return_shorty == '[' || return_shorty == 'L';
1195 StackHandleScope<1> hs(self);
1196 MutableHandle<mirror::Object> res(hs.NewHandle<mirror::Object>(nullptr));
Ian Rogers62d6c772013-02-27 08:32:07 -08001197 JValue return_value;
1198 if (return_shorty == 'V') {
1199 return_value.SetJ(0);
1200 } else if (return_shorty == 'F' || return_shorty == 'D') {
Alex Lightb7edcda2017-04-27 13:20:31 -07001201 return_value.SetJ(*fpr_result);
Ian Rogers62d6c772013-02-27 08:32:07 -08001202 } else {
Alex Lightb7edcda2017-04-27 13:20:31 -07001203 return_value.SetJ(*gpr_result);
1204 }
1205 if (is_ref) {
1206 // Take a handle to the return value so we won't lose it if we suspend.
1207 res.Assign(return_value.GetL());
Ian Rogers62d6c772013-02-27 08:32:07 -08001208 }
1209 // TODO: improve the dex pc information here, requires knowledge of current PC as opposed to
1210 // return_pc.
1211 uint32_t dex_pc = DexFile::kDexNoIndex;
1212 mirror::Object* this_object = instrumentation_frame.this_object_;
Nicolas Geoffray07c70282017-08-30 08:09:42 +00001213 if (!instrumentation_frame.interpreter_entry_) {
Sebastien Hertz320deb22014-06-11 19:45:05 +02001214 MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value);
1215 }
jeffhao725a9572012-11-13 18:20:12 -08001216
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01001217 // Deoptimize if the caller needs to continue execution in the interpreter. Do nothing if we get
1218 // back to an upcall.
1219 NthCallerVisitor visitor(self, 1, true);
1220 visitor.WalkStack(true);
Sebastien Hertz270a0e12015-01-16 19:49:09 +01001221 bool deoptimize = (visitor.caller != nullptr) &&
Daniel Mihalyieb076692014-08-22 17:33:31 +02001222 (interpreter_stubs_installed_ || IsDeoptimized(visitor.caller) ||
1223 Dbg::IsForcedInterpreterNeededForUpcall(self, visitor.caller));
Alex Lightb7edcda2017-04-27 13:20:31 -07001224 if (is_ref) {
1225 // Restore the return value if it's a reference since it might have moved.
1226 *reinterpret_cast<mirror::Object**>(gpr_result) = res.Get();
1227 }
Nicolas Geoffraya0619e22016-12-20 13:57:43 +00001228 if (deoptimize && Runtime::Current()->IsAsyncDeoptimizeable(*return_pc)) {
Ian Rogers62d6c772013-02-27 08:32:07 -08001229 if (kVerboseInstrumentation) {
Andreas Gampe46ee31b2016-12-14 10:11:49 -08001230 LOG(INFO) << "Deoptimizing "
1231 << visitor.caller->PrettyMethod()
1232 << " by returning from "
1233 << method->PrettyMethod()
1234 << " with result "
1235 << std::hex << return_value.GetJ() << std::dec
1236 << " in "
1237 << *self;
Ian Rogers62d6c772013-02-27 08:32:07 -08001238 }
Nicolas Geoffray73be1e82015-09-17 15:22:56 +01001239 self->PushDeoptimizationContext(return_value,
Nicolas Geoffray07c70282017-08-30 08:09:42 +00001240 return_shorty == 'L',
Nicolas Geoffray73be1e82015-09-17 15:22:56 +01001241 false /* from_code */,
Nicolas Geoffray07c70282017-08-30 08:09:42 +00001242 nullptr /* no pending exception */);
Andreas Gamped58342c2014-06-05 14:18:08 -07001243 return GetTwoWordSuccessValue(*return_pc,
1244 reinterpret_cast<uintptr_t>(GetQuickDeoptimizationEntryPoint()));
Ian Rogers62d6c772013-02-27 08:32:07 -08001245 } else {
Nicolas Geoffraya0619e22016-12-20 13:57:43 +00001246 if (deoptimize && !Runtime::Current()->IsAsyncDeoptimizeable(*return_pc)) {
1247 LOG(WARNING) << "Got a deoptimization request on un-deoptimizable " << method->PrettyMethod()
1248 << " at PC " << reinterpret_cast<void*>(*return_pc);
1249 }
Ian Rogers62d6c772013-02-27 08:32:07 -08001250 if (kVerboseInstrumentation) {
David Sehr709b0702016-10-13 09:12:37 -07001251 LOG(INFO) << "Returning from " << method->PrettyMethod()
Brian Carlstrom2d888622013-07-18 17:02:00 -07001252 << " to PC " << reinterpret_cast<void*>(*return_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -08001253 }
Andreas Gamped58342c2014-06-05 14:18:08 -07001254 return GetTwoWordSuccessValue(0, *return_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -08001255 }
jeffhao725a9572012-11-13 18:20:12 -08001256}
1257
Mingyao Yangf711f2c2016-05-23 12:29:39 -07001258uintptr_t Instrumentation::PopMethodForUnwind(Thread* self, bool is_deoptimization) const {
Ian Rogers62d6c772013-02-27 08:32:07 -08001259 // Do the pop.
1260 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack();
1261 CHECK_GT(stack->size(), 0U);
Alex Lightb7edcda2017-04-27 13:20:31 -07001262 size_t idx = stack->size();
Ian Rogers62d6c772013-02-27 08:32:07 -08001263 InstrumentationStackFrame instrumentation_frame = stack->front();
Ian Rogers62d6c772013-02-27 08:32:07 -08001264
Mathieu Chartiere401d142015-04-22 13:56:20 -07001265 ArtMethod* method = instrumentation_frame.method_;
Ian Rogers62d6c772013-02-27 08:32:07 -08001266 if (is_deoptimization) {
1267 if (kVerboseInstrumentation) {
David Sehr709b0702016-10-13 09:12:37 -07001268 LOG(INFO) << "Popping for deoptimization " << ArtMethod::PrettyMethod(method);
Ian Rogers62d6c772013-02-27 08:32:07 -08001269 }
1270 } else {
1271 if (kVerboseInstrumentation) {
David Sehr709b0702016-10-13 09:12:37 -07001272 LOG(INFO) << "Popping for unwind " << ArtMethod::PrettyMethod(method);
Ian Rogers62d6c772013-02-27 08:32:07 -08001273 }
1274
1275 // Notify listeners of method unwind.
1276 // TODO: improve the dex pc information here, requires knowledge of current PC as opposed to
1277 // return_pc.
1278 uint32_t dex_pc = DexFile::kDexNoIndex;
Nicolas Geoffray07c70282017-08-30 08:09:42 +00001279 MethodUnwindEvent(self, instrumentation_frame.this_object_, method, dex_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -08001280 }
Alex Lightb7edcda2017-04-27 13:20:31 -07001281 // TODO: bring back CheckStackDepth(self, instrumentation_frame, 2);
1282 CHECK_EQ(stack->size(), idx);
1283 DCHECK(instrumentation_frame.method_ == stack->front().method_);
1284 stack->pop_front();
Mingyao Yangf711f2c2016-05-23 12:29:39 -07001285 return instrumentation_frame.return_pc_;
Ian Rogers62d6c772013-02-27 08:32:07 -08001286}
1287
1288std::string InstrumentationStackFrame::Dump() const {
1289 std::ostringstream os;
David Sehr709b0702016-10-13 09:12:37 -07001290 os << "Frame " << frame_id_ << " " << ArtMethod::PrettyMethod(method_) << ":"
Ian Rogers62d6c772013-02-27 08:32:07 -08001291 << reinterpret_cast<void*>(return_pc_) << " this=" << reinterpret_cast<void*>(this_object_);
1292 return os.str();
1293}
1294
1295} // namespace instrumentation
jeffhao725a9572012-11-13 18:20:12 -08001296} // namespace art