blob: 7dfc83fd822e05c7729ee5577dfe0765bfd3a1d6 [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"
Mathieu Chartiere401d142015-04-22 13:56:20 -070022#include "art_method-inl.h"
Ian Rogersef7d42f2014-01-06 12:55:46 -080023#include "atomic.h"
jeffhao725a9572012-11-13 18:20:12 -080024#include "class_linker.h"
25#include "debugger.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080026#include "dex_file-inl.h"
Ian Rogersc7dd2952014-10-21 23:31:19 -070027#include "entrypoints/quick/quick_entrypoints.h"
Mathieu Chartierd8891782014-03-02 13:28:37 -080028#include "entrypoints/quick/quick_alloc_entrypoints.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070029#include "entrypoints/runtime_asm_entrypoints.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070030#include "gc_root-inl.h"
Sebastien Hertz138dbfc2013-12-04 18:15:25 +010031#include "interpreter/interpreter.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080032#include "jit/jit.h"
33#include "jit/jit_code_cache.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034#include "mirror/class-inl.h"
35#include "mirror/dex_cache.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036#include "mirror/object_array-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070037#include "mirror/object-inl.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080038#include "nth_caller_visitor.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010039#include "oat_quick_method_header.h"
jeffhao725a9572012-11-13 18:20:12 -080040#include "thread.h"
41#include "thread_list.h"
jeffhao725a9572012-11-13 18:20:12 -080042
43namespace art {
Ian Rogers62d6c772013-02-27 08:32:07 -080044namespace instrumentation {
jeffhao725a9572012-11-13 18:20:12 -080045
Sebastien Hertz0462c4c2015-04-01 16:34:17 +020046constexpr bool kVerboseInstrumentation = false;
Sebastien Hertz5bfd5c92013-11-15 11:36:07 +010047
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010048// Instrumentation works on non-inlined frames by updating returned PCs
49// of compiled frames.
50static constexpr StackVisitor::StackWalkKind kInstrumentationStackWalk =
51 StackVisitor::StackWalkKind::kSkipInlinedFrames;
52
Mathieu Chartiere0671ce2015-07-28 17:23:28 -070053class InstallStubsClassVisitor : public ClassVisitor {
54 public:
55 explicit InstallStubsClassVisitor(Instrumentation* instrumentation)
56 : instrumentation_(instrumentation) {}
57
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -080058 bool operator()(mirror::Class* klass) OVERRIDE REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -070059 instrumentation_->InstallStubsForClass(klass);
60 return true; // we visit all classes.
61 }
62
63 private:
64 Instrumentation* const instrumentation_;
65};
66
Ian Rogers62d6c772013-02-27 08:32:07 -080067
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070068Instrumentation::Instrumentation()
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +000069 : instrumentation_stubs_installed_(false),
70 entry_exit_stubs_installed_(false),
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070071 interpreter_stubs_installed_(false),
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +000072 interpret_only_(false),
73 forced_interpret_only_(false),
74 have_method_entry_listeners_(false),
75 have_method_exit_listeners_(false),
76 have_method_unwind_listeners_(false),
77 have_dex_pc_listeners_(false),
78 have_field_read_listeners_(false),
79 have_field_write_listeners_(false),
80 have_exception_caught_listeners_(false),
Nicolas Geoffray81f0f952016-01-20 16:25:19 +000081 have_branch_listeners_(false),
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +000082 have_invoke_virtual_or_interface_listeners_(false),
Mathieu Chartierb8aa1e42016-04-05 14:36:57 -070083 deoptimized_methods_lock_("deoptimized methods lock", kDeoptimizedMethodsLock),
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070084 deoptimization_enabled_(false),
85 interpreter_handler_table_(kMainHandlerTable),
Mathieu Chartier50e93312016-03-16 11:25:29 -070086 quick_alloc_entry_points_instrumentation_counter_(0),
87 alloc_entrypoints_instrumented_(false) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070088}
89
Sebastien Hertza10aa372015-01-21 17:30:58 +010090void Instrumentation::InstallStubsForClass(mirror::Class* klass) {
Sebastien Hertza8a697f2015-01-15 12:28:47 +010091 if (klass->IsErroneous()) {
92 // We can't execute code in a erroneous class: do nothing.
93 } else if (!klass->IsResolved()) {
94 // We need the class to be resolved to install/uninstall stubs. Otherwise its methods
95 // could not be initialized or linked with regards to class inheritance.
96 } else {
Alex Light51a64d52015-12-17 13:55:59 -080097 for (ArtMethod& method : klass->GetMethods(sizeof(void*))) {
98 InstallStubsForMethod(&method);
Sebastien Hertza8a697f2015-01-15 12:28:47 +010099 }
jeffhao725a9572012-11-13 18:20:12 -0800100 }
jeffhao725a9572012-11-13 18:20:12 -0800101}
102
Mathieu Chartiere401d142015-04-22 13:56:20 -0700103static void UpdateEntrypoints(ArtMethod* method, const void* quick_code)
Mathieu Chartier90443472015-07-16 20:32:27 -0700104 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800105 method->SetEntryPointFromQuickCompiledCode(quick_code);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100106}
107
Mingyao Yang6ea1a0e2016-01-29 12:12:49 -0800108bool Instrumentation::NeedDebugVersionForBootImageCode(ArtMethod* method, const void* code) const
109 SHARED_REQUIRES(Locks::mutator_lock_) {
110 return Dbg::IsDebuggerActive() &&
111 Runtime::Current()->GetHeap()->IsInBootImageOatFile(code) &&
112 !method->IsNative() &&
113 !method->IsProxyMethod();
114}
115
Mathieu Chartiere401d142015-04-22 13:56:20 -0700116void Instrumentation::InstallStubsForMethod(ArtMethod* method) {
Alex Light9139e002015-10-09 15:59:48 -0700117 if (!method->IsInvokable() || method->IsProxyMethod()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100118 // Do not change stubs for these methods.
119 return;
120 }
Jeff Hao56802772014-08-19 10:17:36 -0700121 // Don't stub Proxy.<init>. Note that the Proxy class itself is not a proxy class.
122 if (method->IsConstructor() &&
123 method->GetDeclaringClass()->DescriptorEquals("Ljava/lang/reflect/Proxy;")) {
Jeff Haodb8a6642014-08-14 17:18:52 -0700124 return;
125 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800126 const void* new_quick_code;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100127 bool uninstall = !entry_exit_stubs_installed_ && !interpreter_stubs_installed_;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800128 Runtime* const runtime = Runtime::Current();
129 ClassLinker* const class_linker = runtime->GetClassLinker();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100130 bool is_class_initialized = method->GetDeclaringClass()->IsInitialized();
131 if (uninstall) {
132 if ((forced_interpret_only_ || IsDeoptimized(method)) && !method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800133 new_quick_code = GetQuickToInterpreterBridge();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100134 } else if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800135 new_quick_code = class_linker->GetQuickOatCodeFor(method);
Mingyao Yang6ea1a0e2016-01-29 12:12:49 -0800136 if (NeedDebugVersionForBootImageCode(method, new_quick_code)) {
137 new_quick_code = GetQuickToInterpreterBridge();
138 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100139 } else {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700140 new_quick_code = GetQuickResolutionStub();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100141 }
142 } else { // !uninstall
Sebastien Hertzbae182c2013-12-17 10:42:03 +0100143 if ((interpreter_stubs_installed_ || forced_interpret_only_ || IsDeoptimized(method)) &&
144 !method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800145 new_quick_code = GetQuickToInterpreterBridge();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100146 } else {
147 // Do not overwrite resolution trampoline. When the trampoline initializes the method's
148 // class, all its static methods code will be set to the instrumentation entry point.
149 // For more details, see ClassLinker::FixupStaticTrampolines.
150 if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) {
Mingyao Yang6ea1a0e2016-01-29 12:12:49 -0800151 new_quick_code = class_linker->GetQuickOatCodeFor(method);
152 if (NeedDebugVersionForBootImageCode(method, new_quick_code)) {
153 // Oat code should not be used. Don't install instrumentation stub and
154 // use interpreter for instrumentation.
155 new_quick_code = GetQuickToInterpreterBridge();
156 } else if (entry_exit_stubs_installed_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800157 new_quick_code = GetQuickInstrumentationEntryPoint();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100158 }
159 } else {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700160 new_quick_code = GetQuickResolutionStub();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100161 }
162 }
163 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800164 UpdateEntrypoints(method, new_quick_code);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100165}
166
Ian Rogers62d6c772013-02-27 08:32:07 -0800167// Places the instrumentation exit pc as the return PC for every quick frame. This also allows
168// deoptimization of quick frames to interpreter frames.
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100169// Since we may already have done this previously, we need to push new instrumentation frame before
170// existing instrumentation frames.
Ian Rogers62d6c772013-02-27 08:32:07 -0800171static void InstrumentationInstallStack(Thread* thread, void* arg)
Mathieu Chartier90443472015-07-16 20:32:27 -0700172 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200173 struct InstallStackVisitor FINAL : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800174 InstallStackVisitor(Thread* thread_in, Context* context, uintptr_t instrumentation_exit_pc)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100175 : StackVisitor(thread_in, context, kInstrumentationStackWalk),
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800176 instrumentation_stack_(thread_in->GetInstrumentationStack()),
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100177 instrumentation_exit_pc_(instrumentation_exit_pc),
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100178 reached_existing_instrumentation_frames_(false), instrumentation_stack_depth_(0),
179 last_return_pc_(0) {
180 }
jeffhao725a9572012-11-13 18:20:12 -0800181
Mathieu Chartier90443472015-07-16 20:32:27 -0700182 bool VisitFrame() OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700183 ArtMethod* m = GetMethod();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700184 if (m == nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800185 if (kVerboseInstrumentation) {
186 LOG(INFO) << " Skipping upcall. Frame " << GetFrameId();
187 }
188 last_return_pc_ = 0;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700189 return true; // Ignore upcalls.
Ian Rogers306057f2012-11-26 12:45:53 -0800190 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700191 if (GetCurrentQuickFrame() == nullptr) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800192 bool interpreter_frame = true;
Sebastien Hertz320deb22014-06-11 19:45:05 +0200193 InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, 0, GetFrameId(),
194 interpreter_frame);
Jeff Haoa15a81b2014-05-27 18:25:47 -0700195 if (kVerboseInstrumentation) {
196 LOG(INFO) << "Pushing shadow frame " << instrumentation_frame.Dump();
197 }
198 shadow_stack_.push_back(instrumentation_frame);
199 return true; // Continue.
200 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800201 uintptr_t return_pc = GetReturnPc();
Sebastien Hertz320deb22014-06-11 19:45:05 +0200202 if (m->IsRuntimeMethod()) {
203 if (return_pc == instrumentation_exit_pc_) {
204 if (kVerboseInstrumentation) {
205 LOG(INFO) << " Handling quick to interpreter transition. Frame " << GetFrameId();
206 }
207 CHECK_LT(instrumentation_stack_depth_, instrumentation_stack_->size());
Daniel Mihalyica1d06c2014-08-18 18:45:31 +0200208 const InstrumentationStackFrame& frame =
209 instrumentation_stack_->at(instrumentation_stack_depth_);
Sebastien Hertz320deb22014-06-11 19:45:05 +0200210 CHECK(frame.interpreter_entry_);
211 // This is an interpreter frame so method enter event must have been reported. However we
212 // need to push a DEX pc into the dex_pcs_ list to match size of instrumentation stack.
213 // Since we won't report method entry here, we can safely push any DEX pc.
214 dex_pcs_.push_back(0);
215 last_return_pc_ = frame.return_pc_;
216 ++instrumentation_stack_depth_;
217 return true;
218 } else {
219 if (kVerboseInstrumentation) {
220 LOG(INFO) << " Skipping runtime method. Frame " << GetFrameId();
221 }
222 last_return_pc_ = GetReturnPc();
223 return true; // Ignore unresolved methods since they will be instrumented after resolution.
224 }
225 }
226 if (kVerboseInstrumentation) {
227 LOG(INFO) << " Installing exit stub in " << DescribeLocation();
228 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100229 if (return_pc == instrumentation_exit_pc_) {
230 // We've reached a frame which has already been installed with instrumentation exit stub.
231 // We should have already installed instrumentation on previous frames.
232 reached_existing_instrumentation_frames_ = true;
233
234 CHECK_LT(instrumentation_stack_depth_, instrumentation_stack_->size());
Daniel Mihalyica1d06c2014-08-18 18:45:31 +0200235 const InstrumentationStackFrame& frame =
236 instrumentation_stack_->at(instrumentation_stack_depth_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100237 CHECK_EQ(m, frame.method_) << "Expected " << PrettyMethod(m)
238 << ", Found " << PrettyMethod(frame.method_);
239 return_pc = frame.return_pc_;
240 if (kVerboseInstrumentation) {
241 LOG(INFO) << "Ignoring already instrumented " << frame.Dump();
242 }
243 } else {
244 CHECK_NE(return_pc, 0U);
245 CHECK(!reached_existing_instrumentation_frames_);
246 InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, return_pc, GetFrameId(),
247 false);
248 if (kVerboseInstrumentation) {
249 LOG(INFO) << "Pushing frame " << instrumentation_frame.Dump();
250 }
251
Sebastien Hertz320deb22014-06-11 19:45:05 +0200252 // Insert frame at the right position so we do not corrupt the instrumentation stack.
253 // Instrumentation stack frames are in descending frame id order.
254 auto it = instrumentation_stack_->begin();
255 for (auto end = instrumentation_stack_->end(); it != end; ++it) {
256 const InstrumentationStackFrame& current = *it;
257 if (instrumentation_frame.frame_id_ >= current.frame_id_) {
258 break;
259 }
260 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100261 instrumentation_stack_->insert(it, instrumentation_frame);
262 SetReturnPc(instrumentation_exit_pc_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800263 }
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100264 dex_pcs_.push_back((GetCurrentOatQuickMethodHeader() == nullptr)
265 ? DexFile::kDexNoIndex
266 : GetCurrentOatQuickMethodHeader()->ToDexPc(m, last_return_pc_));
Ian Rogers62d6c772013-02-27 08:32:07 -0800267 last_return_pc_ = return_pc;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100268 ++instrumentation_stack_depth_;
Ian Rogers306057f2012-11-26 12:45:53 -0800269 return true; // Continue.
270 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800271 std::deque<InstrumentationStackFrame>* const instrumentation_stack_;
Jeff Haoa15a81b2014-05-27 18:25:47 -0700272 std::vector<InstrumentationStackFrame> shadow_stack_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800273 std::vector<uint32_t> dex_pcs_;
Ian Rogers306057f2012-11-26 12:45:53 -0800274 const uintptr_t instrumentation_exit_pc_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100275 bool reached_existing_instrumentation_frames_;
276 size_t instrumentation_stack_depth_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800277 uintptr_t last_return_pc_;
Ian Rogers306057f2012-11-26 12:45:53 -0800278 };
Ian Rogers62d6c772013-02-27 08:32:07 -0800279 if (kVerboseInstrumentation) {
280 std::string thread_name;
281 thread->GetThreadName(thread_name);
282 LOG(INFO) << "Installing exit stubs in " << thread_name;
Ian Rogers306057f2012-11-26 12:45:53 -0800283 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100284
285 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg);
Ian Rogers700a4022014-05-19 16:49:03 -0700286 std::unique_ptr<Context> context(Context::Create());
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700287 uintptr_t instrumentation_exit_pc = reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc());
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100288 InstallStackVisitor visitor(thread, context.get(), instrumentation_exit_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800289 visitor.WalkStack(true);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100290 CHECK_EQ(visitor.dex_pcs_.size(), thread->GetInstrumentationStack()->size());
Ian Rogers62d6c772013-02-27 08:32:07 -0800291
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100292 if (instrumentation->ShouldNotifyMethodEnterExitEvents()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100293 // Create method enter events for all methods currently on the thread's stack. We only do this
294 // if no debugger is attached to prevent from posting events twice.
Jeff Haoa15a81b2014-05-27 18:25:47 -0700295 auto ssi = visitor.shadow_stack_.rbegin();
296 for (auto isi = thread->GetInstrumentationStack()->rbegin(),
297 end = thread->GetInstrumentationStack()->rend(); isi != end; ++isi) {
298 while (ssi != visitor.shadow_stack_.rend() && (*ssi).frame_id_ < (*isi).frame_id_) {
299 instrumentation->MethodEnterEvent(thread, (*ssi).this_object_, (*ssi).method_, 0);
300 ++ssi;
301 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100302 uint32_t dex_pc = visitor.dex_pcs_.back();
303 visitor.dex_pcs_.pop_back();
Sebastien Hertz320deb22014-06-11 19:45:05 +0200304 if (!isi->interpreter_entry_) {
305 instrumentation->MethodEnterEvent(thread, (*isi).this_object_, (*isi).method_, dex_pc);
306 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100307 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800308 }
309 thread->VerifyStack();
Ian Rogers306057f2012-11-26 12:45:53 -0800310}
311
Mingyao Yang99170c62015-07-06 11:10:37 -0700312void Instrumentation::InstrumentThreadStack(Thread* thread) {
313 instrumentation_stubs_installed_ = true;
314 InstrumentationInstallStack(thread, this);
315}
316
Ian Rogers62d6c772013-02-27 08:32:07 -0800317// Removes the instrumentation exit pc as the return PC for every quick frame.
318static void InstrumentationRestoreStack(Thread* thread, void* arg)
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000319 REQUIRES(Locks::mutator_lock_) {
320 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
321
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200322 struct RestoreStackVisitor FINAL : public StackVisitor {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800323 RestoreStackVisitor(Thread* thread_in, uintptr_t instrumentation_exit_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -0800324 Instrumentation* instrumentation)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100325 : StackVisitor(thread_in, nullptr, kInstrumentationStackWalk),
326 thread_(thread_in),
Ian Rogers62d6c772013-02-27 08:32:07 -0800327 instrumentation_exit_pc_(instrumentation_exit_pc),
328 instrumentation_(instrumentation),
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800329 instrumentation_stack_(thread_in->GetInstrumentationStack()),
Ian Rogers62d6c772013-02-27 08:32:07 -0800330 frames_removed_(0) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800331
Mathieu Chartier90443472015-07-16 20:32:27 -0700332 bool VisitFrame() OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800333 if (instrumentation_stack_->size() == 0) {
jeffhao725a9572012-11-13 18:20:12 -0800334 return false; // Stop.
335 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700336 ArtMethod* m = GetMethod();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700337 if (GetCurrentQuickFrame() == nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800338 if (kVerboseInstrumentation) {
Daniel Mihalyica1d06c2014-08-18 18:45:31 +0200339 LOG(INFO) << " Ignoring a shadow frame. Frame " << GetFrameId()
340 << " Method=" << PrettyMethod(m);
Ian Rogers62d6c772013-02-27 08:32:07 -0800341 }
342 return true; // Ignore shadow frames.
343 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700344 if (m == nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800345 if (kVerboseInstrumentation) {
346 LOG(INFO) << " Skipping upcall. Frame " << GetFrameId();
347 }
Ian Rogers306057f2012-11-26 12:45:53 -0800348 return true; // Ignore upcalls.
349 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800350 bool removed_stub = false;
351 // TODO: make this search more efficient?
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100352 const size_t frameId = GetFrameId();
353 for (const InstrumentationStackFrame& instrumentation_frame : *instrumentation_stack_) {
354 if (instrumentation_frame.frame_id_ == frameId) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800355 if (kVerboseInstrumentation) {
356 LOG(INFO) << " Removing exit stub in " << DescribeLocation();
357 }
Jeff Hao9a916d32013-06-27 18:45:37 -0700358 if (instrumentation_frame.interpreter_entry_) {
359 CHECK(m == Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs));
360 } else {
361 CHECK(m == instrumentation_frame.method_) << PrettyMethod(m);
362 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800363 SetReturnPc(instrumentation_frame.return_pc_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100364 if (instrumentation_->ShouldNotifyMethodEnterExitEvents()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100365 // Create the method exit events. As the methods didn't really exit the result is 0.
366 // We only do this if no debugger is attached to prevent from posting events twice.
367 instrumentation_->MethodExitEvent(thread_, instrumentation_frame.this_object_, m,
368 GetDexPc(), JValue());
369 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800370 frames_removed_++;
371 removed_stub = true;
372 break;
373 }
374 }
375 if (!removed_stub) {
376 if (kVerboseInstrumentation) {
377 LOG(INFO) << " No exit stub in " << DescribeLocation();
Ian Rogers306057f2012-11-26 12:45:53 -0800378 }
jeffhao725a9572012-11-13 18:20:12 -0800379 }
380 return true; // Continue.
381 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800382 Thread* const thread_;
Ian Rogers306057f2012-11-26 12:45:53 -0800383 const uintptr_t instrumentation_exit_pc_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800384 Instrumentation* const instrumentation_;
385 std::deque<instrumentation::InstrumentationStackFrame>* const instrumentation_stack_;
386 size_t frames_removed_;
jeffhao725a9572012-11-13 18:20:12 -0800387 };
Ian Rogers62d6c772013-02-27 08:32:07 -0800388 if (kVerboseInstrumentation) {
389 std::string thread_name;
390 thread->GetThreadName(thread_name);
391 LOG(INFO) << "Removing exit stubs in " << thread_name;
392 }
393 std::deque<instrumentation::InstrumentationStackFrame>* stack = thread->GetInstrumentationStack();
394 if (stack->size() > 0) {
395 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg);
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700396 uintptr_t instrumentation_exit_pc =
397 reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc());
Ian Rogers62d6c772013-02-27 08:32:07 -0800398 RestoreStackVisitor visitor(thread, instrumentation_exit_pc, instrumentation);
399 visitor.WalkStack(true);
400 CHECK_EQ(visitor.frames_removed_, stack->size());
401 while (stack->size() > 0) {
402 stack->pop_front();
403 }
jeffhao725a9572012-11-13 18:20:12 -0800404 }
405}
406
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200407static bool HasEvent(Instrumentation::InstrumentationEvent expected, uint32_t events) {
408 return (events & expected) != 0;
409}
410
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000411static void PotentiallyAddListenerTo(Instrumentation::InstrumentationEvent event,
412 uint32_t events,
413 std::list<InstrumentationListener*>& list,
414 InstrumentationListener* listener,
415 bool* has_listener)
416 REQUIRES(Locks::mutator_lock_, !Locks::thread_list_lock_, !Locks::classlinker_classes_lock_) {
417 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
418 if (!HasEvent(event, events)) {
419 return;
420 }
421 // If there is a free slot in the list, we insert the listener in that slot.
422 // Otherwise we add it to the end of the list.
423 auto it = std::find(list.begin(), list.end(), nullptr);
424 if (it != list.end()) {
425 *it = listener;
426 } else {
427 list.push_back(listener);
428 }
429 *has_listener = true;
430}
431
Ian Rogers62d6c772013-02-27 08:32:07 -0800432void Instrumentation::AddListener(InstrumentationListener* listener, uint32_t events) {
433 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000434 PotentiallyAddListenerTo(kMethodEntered,
435 events,
436 method_entry_listeners_,
437 listener,
438 &have_method_entry_listeners_);
439 PotentiallyAddListenerTo(kMethodExited,
440 events,
441 method_exit_listeners_,
442 listener,
443 &have_method_exit_listeners_);
444 PotentiallyAddListenerTo(kMethodUnwind,
445 events,
446 method_unwind_listeners_,
447 listener,
448 &have_method_unwind_listeners_);
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000449 PotentiallyAddListenerTo(kBranch,
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000450 events,
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000451 branch_listeners_,
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000452 listener,
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000453 &have_branch_listeners_);
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000454 PotentiallyAddListenerTo(kInvokeVirtualOrInterface,
455 events,
456 invoke_virtual_or_interface_listeners_,
457 listener,
458 &have_invoke_virtual_or_interface_listeners_);
459 PotentiallyAddListenerTo(kDexPcMoved,
460 events,
461 dex_pc_listeners_,
462 listener,
463 &have_dex_pc_listeners_);
464 PotentiallyAddListenerTo(kFieldRead,
465 events,
466 field_read_listeners_,
467 listener,
468 &have_field_read_listeners_);
469 PotentiallyAddListenerTo(kFieldWritten,
470 events,
471 field_write_listeners_,
472 listener,
473 &have_field_write_listeners_);
474 PotentiallyAddListenerTo(kExceptionCaught,
475 events,
476 exception_caught_listeners_,
477 listener,
478 &have_exception_caught_listeners_);
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200479 UpdateInterpreterHandlerTable();
jeffhao725a9572012-11-13 18:20:12 -0800480}
481
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000482static void PotentiallyRemoveListenerFrom(Instrumentation::InstrumentationEvent event,
483 uint32_t events,
484 std::list<InstrumentationListener*>& list,
485 InstrumentationListener* listener,
486 bool* has_listener)
487 REQUIRES(Locks::mutator_lock_, !Locks::thread_list_lock_, !Locks::classlinker_classes_lock_) {
488 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
489 if (!HasEvent(event, events)) {
490 return;
491 }
492 auto it = std::find(list.begin(), list.end(), listener);
493 if (it != list.end()) {
494 // Just update the entry, do not remove from the list. Removing entries in the list
495 // is unsafe when mutators are iterating over it.
496 *it = nullptr;
497 }
498
499 // Check if the list contains any non-null listener, and update 'has_listener'.
500 for (InstrumentationListener* l : list) {
501 if (l != nullptr) {
502 *has_listener = true;
503 return;
504 }
505 }
506 *has_listener = false;
507}
508
Ian Rogers62d6c772013-02-27 08:32:07 -0800509void Instrumentation::RemoveListener(InstrumentationListener* listener, uint32_t events) {
510 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000511 PotentiallyRemoveListenerFrom(kMethodEntered,
512 events,
513 method_entry_listeners_,
514 listener,
515 &have_method_entry_listeners_);
516 PotentiallyRemoveListenerFrom(kMethodExited,
517 events,
518 method_exit_listeners_,
519 listener,
520 &have_method_exit_listeners_);
521 PotentiallyRemoveListenerFrom(kMethodUnwind,
522 events,
523 method_unwind_listeners_,
524 listener,
525 &have_method_unwind_listeners_);
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000526 PotentiallyRemoveListenerFrom(kBranch,
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000527 events,
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000528 branch_listeners_,
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000529 listener,
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000530 &have_branch_listeners_);
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000531 PotentiallyRemoveListenerFrom(kInvokeVirtualOrInterface,
532 events,
533 invoke_virtual_or_interface_listeners_,
534 listener,
535 &have_invoke_virtual_or_interface_listeners_);
536 PotentiallyRemoveListenerFrom(kDexPcMoved,
537 events,
538 dex_pc_listeners_,
539 listener,
540 &have_dex_pc_listeners_);
541 PotentiallyRemoveListenerFrom(kFieldRead,
542 events,
543 field_read_listeners_,
544 listener,
545 &have_field_read_listeners_);
546 PotentiallyRemoveListenerFrom(kFieldWritten,
547 events,
548 field_write_listeners_,
549 listener,
550 &have_field_write_listeners_);
551 PotentiallyRemoveListenerFrom(kExceptionCaught,
552 events,
553 exception_caught_listeners_,
554 listener,
555 &have_exception_caught_listeners_);
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200556 UpdateInterpreterHandlerTable();
jeffhao725a9572012-11-13 18:20:12 -0800557}
558
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200559Instrumentation::InstrumentationLevel Instrumentation::GetCurrentInstrumentationLevel() const {
Ian Rogers62d6c772013-02-27 08:32:07 -0800560 if (interpreter_stubs_installed_) {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200561 return InstrumentationLevel::kInstrumentWithInterpreter;
Ian Rogers62d6c772013-02-27 08:32:07 -0800562 } else if (entry_exit_stubs_installed_) {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200563 return InstrumentationLevel::kInstrumentWithInstrumentationStubs;
Ian Rogers62d6c772013-02-27 08:32:07 -0800564 } else {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200565 return InstrumentationLevel::kInstrumentNothing;
Ian Rogers62d6c772013-02-27 08:32:07 -0800566 }
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200567}
568
569void Instrumentation::ConfigureStubs(const char* key, InstrumentationLevel desired_level) {
570 // Store the instrumentation level for this key or remove it.
571 if (desired_level == InstrumentationLevel::kInstrumentNothing) {
572 // The client no longer needs instrumentation.
573 requested_instrumentation_levels_.erase(key);
574 } else {
575 // The client needs instrumentation.
576 requested_instrumentation_levels_.Overwrite(key, desired_level);
577 }
578
579 // Look for the highest required instrumentation level.
580 InstrumentationLevel requested_level = InstrumentationLevel::kInstrumentNothing;
581 for (const auto& v : requested_instrumentation_levels_) {
582 requested_level = std::max(requested_level, v.second);
583 }
584
585 interpret_only_ = (requested_level == InstrumentationLevel::kInstrumentWithInterpreter) ||
586 forced_interpret_only_;
587
588 InstrumentationLevel current_level = GetCurrentInstrumentationLevel();
589 if (requested_level == current_level) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800590 // We're already set.
591 return;
592 }
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100593 Thread* const self = Thread::Current();
Ian Rogers62d6c772013-02-27 08:32:07 -0800594 Runtime* runtime = Runtime::Current();
Sebastien Hertza8a697f2015-01-15 12:28:47 +0100595 Locks::mutator_lock_->AssertExclusiveHeld(self);
Ian Rogers62d6c772013-02-27 08:32:07 -0800596 Locks::thread_list_lock_->AssertNotHeld(self);
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200597 if (requested_level > InstrumentationLevel::kInstrumentNothing) {
598 if (requested_level == InstrumentationLevel::kInstrumentWithInterpreter) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800599 interpreter_stubs_installed_ = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800600 entry_exit_stubs_installed_ = true;
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200601 } else {
602 CHECK_EQ(requested_level, InstrumentationLevel::kInstrumentWithInstrumentationStubs);
603 entry_exit_stubs_installed_ = true;
604 interpreter_stubs_installed_ = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800605 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700606 InstallStubsClassVisitor visitor(this);
607 runtime->GetClassLinker()->VisitClasses(&visitor);
Ian Rogers62d6c772013-02-27 08:32:07 -0800608 instrumentation_stubs_installed_ = true;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100609 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800610 runtime->GetThreadList()->ForEach(InstrumentationInstallStack, this);
611 } else {
612 interpreter_stubs_installed_ = false;
613 entry_exit_stubs_installed_ = false;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700614 InstallStubsClassVisitor visitor(this);
615 runtime->GetClassLinker()->VisitClasses(&visitor);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100616 // Restore stack only if there is no method currently deoptimized.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700617 bool empty;
618 {
619 ReaderMutexLock mu(self, deoptimized_methods_lock_);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700620 empty = IsDeoptimizedMethodsEmpty(); // Avoid lock violation.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700621 }
622 if (empty) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100623 MutexLock mu(self, *Locks::thread_list_lock_);
624 Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this);
Nicolas Geoffray5a23d2e2015-11-03 18:58:57 +0000625 // Only do this after restoring, as walking the stack when restoring will see
626 // the instrumentation exit pc.
627 instrumentation_stubs_installed_ = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100628 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800629 }
jeffhao725a9572012-11-13 18:20:12 -0800630}
631
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200632static void ResetQuickAllocEntryPointsForThread(Thread* thread, void* arg ATTRIBUTE_UNUSED) {
Ian Rogersfa824272013-11-05 16:12:57 -0800633 thread->ResetQuickAllocEntryPointsForThread();
634}
635
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700636void Instrumentation::SetEntrypointsInstrumented(bool instrumented) {
637 Thread* self = Thread::Current();
Mathieu Chartier661974a2014-01-09 11:23:53 -0800638 Runtime* runtime = Runtime::Current();
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700639 Locks::mutator_lock_->AssertNotHeld(self);
640 Locks::instrument_entrypoints_lock_->AssertHeld(self);
641 if (runtime->IsStarted()) {
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700642 ScopedSuspendAll ssa(__FUNCTION__);
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700643 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
Mathieu Chartier661974a2014-01-09 11:23:53 -0800644 SetQuickAllocEntryPointsInstrumented(instrumented);
645 ResetQuickAllocEntryPoints();
Mathieu Chartier50e93312016-03-16 11:25:29 -0700646 alloc_entrypoints_instrumented_ = instrumented;
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700647 } else {
648 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
649 SetQuickAllocEntryPointsInstrumented(instrumented);
650 ResetQuickAllocEntryPoints();
Mathieu Chartier50e93312016-03-16 11:25:29 -0700651 alloc_entrypoints_instrumented_ = instrumented;
Mathieu Chartier661974a2014-01-09 11:23:53 -0800652 }
653}
654
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700655void Instrumentation::InstrumentQuickAllocEntryPoints() {
656 MutexLock mu(Thread::Current(), *Locks::instrument_entrypoints_lock_);
657 InstrumentQuickAllocEntryPointsLocked();
Ian Rogersfa824272013-11-05 16:12:57 -0800658}
659
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700660void Instrumentation::UninstrumentQuickAllocEntryPoints() {
661 MutexLock mu(Thread::Current(), *Locks::instrument_entrypoints_lock_);
662 UninstrumentQuickAllocEntryPointsLocked();
663}
664
665void Instrumentation::InstrumentQuickAllocEntryPointsLocked() {
666 Locks::instrument_entrypoints_lock_->AssertHeld(Thread::Current());
667 if (quick_alloc_entry_points_instrumentation_counter_ == 0) {
668 SetEntrypointsInstrumented(true);
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800669 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700670 ++quick_alloc_entry_points_instrumentation_counter_;
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700671}
672
673void Instrumentation::UninstrumentQuickAllocEntryPointsLocked() {
674 Locks::instrument_entrypoints_lock_->AssertHeld(Thread::Current());
675 CHECK_GT(quick_alloc_entry_points_instrumentation_counter_, 0U);
676 --quick_alloc_entry_points_instrumentation_counter_;
677 if (quick_alloc_entry_points_instrumentation_counter_ == 0) {
678 SetEntrypointsInstrumented(false);
679 }
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800680}
681
682void Instrumentation::ResetQuickAllocEntryPoints() {
683 Runtime* runtime = Runtime::Current();
684 if (runtime->IsStarted()) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800685 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700686 runtime->GetThreadList()->ForEach(ResetQuickAllocEntryPointsForThread, nullptr);
Ian Rogersfa824272013-11-05 16:12:57 -0800687 }
688}
689
Mingyao Yang3fd448a2016-05-10 14:30:41 -0700690void Instrumentation::UpdateMethodsCodeImpl(ArtMethod* method, const void* quick_code) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800691 const void* new_quick_code;
Ian Rogers62d6c772013-02-27 08:32:07 -0800692 if (LIKELY(!instrumentation_stubs_installed_)) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800693 new_quick_code = quick_code;
Jeff Hao65d15d92013-07-16 16:39:33 -0700694 } else {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100695 if ((interpreter_stubs_installed_ || IsDeoptimized(method)) && !method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800696 new_quick_code = GetQuickToInterpreterBridge();
Jeff Hao65d15d92013-07-16 16:39:33 -0700697 } else {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700698 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700699 if (class_linker->IsQuickResolutionStub(quick_code) ||
700 class_linker->IsQuickToInterpreterBridge(quick_code)) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700701 new_quick_code = quick_code;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700702 } else if (entry_exit_stubs_installed_) {
703 new_quick_code = GetQuickInstrumentationEntryPoint();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700704 } else {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700705 new_quick_code = quick_code;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700706 }
Jeff Hao65d15d92013-07-16 16:39:33 -0700707 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800708 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800709 UpdateEntrypoints(method, new_quick_code);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100710}
711
Mingyao Yang3fd448a2016-05-10 14:30:41 -0700712void Instrumentation::UpdateMethodsCode(ArtMethod* method, const void* quick_code) {
713 DCHECK(method->GetDeclaringClass()->IsResolved());
714 UpdateMethodsCodeImpl(method, quick_code);
715}
716
717void Instrumentation::UpdateMethodsCodeFromDebugger(ArtMethod* method, const void* quick_code) {
718 // When debugger attaches, we may update the entry points of all methods of a class
719 // to the interpreter bridge. A method's declaring class might not be in resolved
720 // state yet in that case.
721 UpdateMethodsCodeImpl(method, quick_code);
722}
723
Mathieu Chartiere401d142015-04-22 13:56:20 -0700724bool Instrumentation::AddDeoptimizedMethod(ArtMethod* method) {
725 if (IsDeoptimizedMethod(method)) {
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700726 // Already in the map. Return.
727 return false;
728 }
729 // Not found. Add it.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700730 deoptimized_methods_.insert(method);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700731 return true;
732}
733
Mathieu Chartiere401d142015-04-22 13:56:20 -0700734bool Instrumentation::IsDeoptimizedMethod(ArtMethod* method) {
735 return deoptimized_methods_.find(method) != deoptimized_methods_.end();
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700736}
737
Mathieu Chartiere401d142015-04-22 13:56:20 -0700738ArtMethod* Instrumentation::BeginDeoptimizedMethod() {
739 if (deoptimized_methods_.empty()) {
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700740 // Empty.
741 return nullptr;
742 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700743 return *deoptimized_methods_.begin();
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700744}
745
Mathieu Chartiere401d142015-04-22 13:56:20 -0700746bool Instrumentation::RemoveDeoptimizedMethod(ArtMethod* method) {
747 auto it = deoptimized_methods_.find(method);
748 if (it == deoptimized_methods_.end()) {
749 return false;
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700750 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700751 deoptimized_methods_.erase(it);
752 return true;
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700753}
754
755bool Instrumentation::IsDeoptimizedMethodsEmpty() const {
756 return deoptimized_methods_.empty();
757}
758
Mathieu Chartiere401d142015-04-22 13:56:20 -0700759void Instrumentation::Deoptimize(ArtMethod* method) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100760 CHECK(!method->IsNative());
761 CHECK(!method->IsProxyMethod());
Alex Light9139e002015-10-09 15:59:48 -0700762 CHECK(method->IsInvokable());
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100763
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700764 Thread* self = Thread::Current();
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700765 {
766 WriterMutexLock mu(self, deoptimized_methods_lock_);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700767 bool has_not_been_deoptimized = AddDeoptimizedMethod(method);
Daniel Mihalyica1d06c2014-08-18 18:45:31 +0200768 CHECK(has_not_been_deoptimized) << "Method " << PrettyMethod(method)
769 << " is already deoptimized";
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700770 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100771 if (!interpreter_stubs_installed_) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800772 UpdateEntrypoints(method, GetQuickInstrumentationEntryPoint());
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100773
774 // Install instrumentation exit stub and instrumentation frames. We may already have installed
775 // these previously so it will only cover the newly created frames.
776 instrumentation_stubs_installed_ = true;
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700777 MutexLock mu(self, *Locks::thread_list_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100778 Runtime::Current()->GetThreadList()->ForEach(InstrumentationInstallStack, this);
779 }
780}
781
Mathieu Chartiere401d142015-04-22 13:56:20 -0700782void Instrumentation::Undeoptimize(ArtMethod* method) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100783 CHECK(!method->IsNative());
784 CHECK(!method->IsProxyMethod());
Alex Light9139e002015-10-09 15:59:48 -0700785 CHECK(method->IsInvokable());
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100786
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700787 Thread* self = Thread::Current();
788 bool empty;
789 {
790 WriterMutexLock mu(self, deoptimized_methods_lock_);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700791 bool found_and_erased = RemoveDeoptimizedMethod(method);
792 CHECK(found_and_erased) << "Method " << PrettyMethod(method)
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700793 << " is not deoptimized";
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700794 empty = IsDeoptimizedMethodsEmpty();
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700795 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100796
797 // Restore code and possibly stack only if we did not deoptimize everything.
798 if (!interpreter_stubs_installed_) {
799 // Restore its code or resolution trampoline.
800 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800801 if (method->IsStatic() && !method->IsConstructor() &&
802 !method->GetDeclaringClass()->IsInitialized()) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800803 UpdateEntrypoints(method, GetQuickResolutionStub());
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100804 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800805 const void* quick_code = class_linker->GetQuickOatCodeFor(method);
Mingyao Yang6ea1a0e2016-01-29 12:12:49 -0800806 if (NeedDebugVersionForBootImageCode(method, quick_code)) {
807 quick_code = GetQuickToInterpreterBridge();
808 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800809 UpdateEntrypoints(method, quick_code);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100810 }
811
812 // If there is no deoptimized method left, we can restore the stack of each thread.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700813 if (empty) {
814 MutexLock mu(self, *Locks::thread_list_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100815 Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this);
816 instrumentation_stubs_installed_ = false;
817 }
818 }
819}
820
Mathieu Chartiere401d142015-04-22 13:56:20 -0700821bool Instrumentation::IsDeoptimized(ArtMethod* method) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100822 DCHECK(method != nullptr);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700823 ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700824 return IsDeoptimizedMethod(method);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100825}
826
827void Instrumentation::EnableDeoptimization() {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700828 ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700829 CHECK(IsDeoptimizedMethodsEmpty());
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100830 CHECK_EQ(deoptimization_enabled_, false);
831 deoptimization_enabled_ = true;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100832}
833
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200834void Instrumentation::DisableDeoptimization(const char* key) {
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100835 CHECK_EQ(deoptimization_enabled_, true);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100836 // If we deoptimized everything, undo it.
837 if (interpreter_stubs_installed_) {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200838 UndeoptimizeEverything(key);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100839 }
840 // Undeoptimized selected methods.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700841 while (true) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700842 ArtMethod* method;
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700843 {
844 ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700845 if (IsDeoptimizedMethodsEmpty()) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700846 break;
847 }
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700848 method = BeginDeoptimizedMethod();
849 CHECK(method != nullptr);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700850 }
851 Undeoptimize(method);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100852 }
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100853 deoptimization_enabled_ = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100854}
855
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100856// Indicates if instrumentation should notify method enter/exit events to the listeners.
857bool Instrumentation::ShouldNotifyMethodEnterExitEvents() const {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200858 if (!HasMethodEntryListeners() && !HasMethodExitListeners()) {
859 return false;
860 }
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100861 return !deoptimization_enabled_ && !interpreter_stubs_installed_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100862}
863
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200864void Instrumentation::DeoptimizeEverything(const char* key) {
865 CHECK(deoptimization_enabled_);
866 ConfigureStubs(key, InstrumentationLevel::kInstrumentWithInterpreter);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100867}
868
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200869void Instrumentation::UndeoptimizeEverything(const char* key) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100870 CHECK(interpreter_stubs_installed_);
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200871 CHECK(deoptimization_enabled_);
872 ConfigureStubs(key, InstrumentationLevel::kInstrumentNothing);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100873}
874
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200875void Instrumentation::EnableMethodTracing(const char* key, bool needs_interpreter) {
876 InstrumentationLevel level;
877 if (needs_interpreter) {
878 level = InstrumentationLevel::kInstrumentWithInterpreter;
879 } else {
880 level = InstrumentationLevel::kInstrumentWithInstrumentationStubs;
881 }
882 ConfigureStubs(key, level);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100883}
884
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200885void Instrumentation::DisableMethodTracing(const char* key) {
886 ConfigureStubs(key, InstrumentationLevel::kInstrumentNothing);
jeffhao725a9572012-11-13 18:20:12 -0800887}
888
Mathieu Chartiere401d142015-04-22 13:56:20 -0700889const void* Instrumentation::GetQuickCodeFor(ArtMethod* method, size_t pointer_size) const {
Ian Rogers62d6c772013-02-27 08:32:07 -0800890 Runtime* runtime = Runtime::Current();
891 if (LIKELY(!instrumentation_stubs_installed_)) {
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800892 const void* code = method->GetEntryPointFromQuickCompiledCodePtrSize(pointer_size);
Vladimir Marko8a630572014-04-09 18:45:35 +0100893 DCHECK(code != nullptr);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700894 ClassLinker* class_linker = runtime->GetClassLinker();
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700895 if (LIKELY(!class_linker->IsQuickResolutionStub(code) &&
896 !class_linker->IsQuickToInterpreterBridge(code)) &&
897 !class_linker->IsQuickResolutionStub(code) &&
898 !class_linker->IsQuickToInterpreterBridge(code)) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800899 return code;
900 }
901 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800902 return runtime->GetClassLinker()->GetQuickOatCodeFor(method);
jeffhao725a9572012-11-13 18:20:12 -0800903}
904
Ian Rogers62d6c772013-02-27 08:32:07 -0800905void Instrumentation::MethodEnterEventImpl(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700906 ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800907 uint32_t dex_pc) const {
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000908 if (HasMethodEntryListeners()) {
909 for (InstrumentationListener* listener : method_entry_listeners_) {
910 if (listener != nullptr) {
911 listener->MethodEntered(thread, this_object, method, dex_pc);
912 }
913 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800914 }
915}
916
917void Instrumentation::MethodExitEventImpl(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700918 ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800919 uint32_t dex_pc, const JValue& return_value) const {
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000920 if (HasMethodExitListeners()) {
921 for (InstrumentationListener* listener : method_exit_listeners_) {
922 if (listener != nullptr) {
923 listener->MethodExited(thread, this_object, method, dex_pc, return_value);
924 }
925 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800926 }
927}
928
929void Instrumentation::MethodUnwindEvent(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700930 ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800931 uint32_t dex_pc) const {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200932 if (HasMethodUnwindListeners()) {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700933 for (InstrumentationListener* listener : method_unwind_listeners_) {
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000934 if (listener != nullptr) {
935 listener->MethodUnwind(thread, this_object, method, dex_pc);
936 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800937 }
938 }
939}
940
941void Instrumentation::DexPcMovedEventImpl(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700942 ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800943 uint32_t dex_pc) const {
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000944 for (InstrumentationListener* listener : dex_pc_listeners_) {
945 if (listener != nullptr) {
946 listener->DexPcMoved(thread, this_object, method, dex_pc);
947 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800948 }
949}
950
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000951void Instrumentation::BranchImpl(Thread* thread,
952 ArtMethod* method,
953 uint32_t dex_pc,
954 int32_t offset) const {
955 for (InstrumentationListener* listener : branch_listeners_) {
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000956 if (listener != nullptr) {
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000957 listener->Branch(thread, method, dex_pc, offset);
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000958 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800959 }
960}
961
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100962void Instrumentation::InvokeVirtualOrInterfaceImpl(Thread* thread,
963 mirror::Object* this_object,
964 ArtMethod* caller,
965 uint32_t dex_pc,
966 ArtMethod* callee) const {
Roland Levillain91d65e02016-01-19 15:59:16 +0000967 // We cannot have thread suspension since that would cause the this_object parameter to
Mathieu Chartier3fdb3fe2016-01-14 10:24:28 -0800968 // potentially become a dangling pointer. An alternative could be to put it in a handle instead.
969 ScopedAssertNoThreadSuspension ants(thread, __FUNCTION__);
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100970 for (InstrumentationListener* listener : invoke_virtual_or_interface_listeners_) {
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000971 if (listener != nullptr) {
972 listener->InvokeVirtualOrInterface(thread, this_object, caller, dex_pc, callee);
973 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100974 }
975}
976
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200977void Instrumentation::FieldReadEventImpl(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700978 ArtMethod* method, uint32_t dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700979 ArtField* field) const {
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000980 for (InstrumentationListener* listener : field_read_listeners_) {
981 if (listener != nullptr) {
982 listener->FieldRead(thread, this_object, method, dex_pc, field);
983 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200984 }
985}
986
987void Instrumentation::FieldWriteEventImpl(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700988 ArtMethod* method, uint32_t dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700989 ArtField* field, const JValue& field_value) const {
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000990 for (InstrumentationListener* listener : field_write_listeners_) {
991 if (listener != nullptr) {
992 listener->FieldWritten(thread, this_object, method, dex_pc, field, field_value);
993 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200994 }
995}
996
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000997void Instrumentation::ExceptionCaughtEvent(Thread* thread,
Sebastien Hertz947ff082013-09-17 14:10:13 +0200998 mirror::Throwable* exception_object) const {
Sebastien Hertz9f102032014-05-23 08:59:42 +0200999 if (HasExceptionCaughtListeners()) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001000 DCHECK_EQ(thread->GetException(), exception_object);
Jeff Haoc0bd4da2013-04-11 15:52:28 -07001001 thread->ClearException();
Nicolas Geoffray514a6162015-11-03 11:44:24 +00001002 for (InstrumentationListener* listener : exception_caught_listeners_) {
1003 if (listener != nullptr) {
1004 listener->ExceptionCaught(thread, exception_object);
1005 }
Ian Rogers62d6c772013-02-27 08:32:07 -08001006 }
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001007 thread->SetException(exception_object);
Ian Rogers62d6c772013-02-27 08:32:07 -08001008 }
1009}
1010
Sebastien Hertzb2feaaf2015-10-12 13:40:10 +00001011// Computes a frame ID by ignoring inlined frames.
1012size_t Instrumentation::ComputeFrameId(Thread* self,
1013 size_t frame_depth,
1014 size_t inlined_frames_before_frame) {
1015 CHECK_GE(frame_depth, inlined_frames_before_frame);
1016 size_t no_inline_depth = frame_depth - inlined_frames_before_frame;
1017 return StackVisitor::ComputeNumFrames(self, kInstrumentationStackWalk) - no_inline_depth;
1018}
1019
Ian Rogers62d6c772013-02-27 08:32:07 -08001020static void CheckStackDepth(Thread* self, const InstrumentationStackFrame& instrumentation_frame,
1021 int delta)
Mathieu Chartier90443472015-07-16 20:32:27 -07001022 SHARED_REQUIRES(Locks::mutator_lock_) {
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01001023 size_t frame_id = StackVisitor::ComputeNumFrames(self, kInstrumentationStackWalk) + delta;
Ian Rogers62d6c772013-02-27 08:32:07 -08001024 if (frame_id != instrumentation_frame.frame_id_) {
1025 LOG(ERROR) << "Expected frame_id=" << frame_id << " but found "
1026 << instrumentation_frame.frame_id_;
1027 StackVisitor::DescribeStack(self);
1028 CHECK_EQ(frame_id, instrumentation_frame.frame_id_);
1029 }
1030}
1031
1032void Instrumentation::PushInstrumentationStackFrame(Thread* self, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -07001033 ArtMethod* method,
Jeff Hao9a916d32013-06-27 18:45:37 -07001034 uintptr_t lr, bool interpreter_entry) {
Ian Rogers62d6c772013-02-27 08:32:07 -08001035 // We have a callee-save frame meaning this value is guaranteed to never be 0.
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01001036 size_t frame_id = StackVisitor::ComputeNumFrames(self, kInstrumentationStackWalk);
Ian Rogers62d6c772013-02-27 08:32:07 -08001037 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack();
1038 if (kVerboseInstrumentation) {
Brian Carlstrom2d888622013-07-18 17:02:00 -07001039 LOG(INFO) << "Entering " << PrettyMethod(method) << " from PC " << reinterpret_cast<void*>(lr);
Ian Rogers62d6c772013-02-27 08:32:07 -08001040 }
1041 instrumentation::InstrumentationStackFrame instrumentation_frame(this_object, method, lr,
Jeff Hao9a916d32013-06-27 18:45:37 -07001042 frame_id, interpreter_entry);
Ian Rogers62d6c772013-02-27 08:32:07 -08001043 stack->push_front(instrumentation_frame);
1044
Sebastien Hertz320deb22014-06-11 19:45:05 +02001045 if (!interpreter_entry) {
1046 MethodEnterEvent(self, this_object, method, 0);
1047 }
Ian Rogers62d6c772013-02-27 08:32:07 -08001048}
1049
Andreas Gamped58342c2014-06-05 14:18:08 -07001050TwoWordReturn Instrumentation::PopInstrumentationStackFrame(Thread* self, uintptr_t* return_pc,
1051 uint64_t gpr_result,
1052 uint64_t fpr_result) {
Ian Rogers62d6c772013-02-27 08:32:07 -08001053 // Do the pop.
1054 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack();
1055 CHECK_GT(stack->size(), 0U);
1056 InstrumentationStackFrame instrumentation_frame = stack->front();
1057 stack->pop_front();
1058
1059 // Set return PC and check the sanity of the stack.
1060 *return_pc = instrumentation_frame.return_pc_;
1061 CheckStackDepth(self, instrumentation_frame, 0);
Ian Rogers1d8cdbc2014-09-22 22:51:09 -07001062 self->VerifyStack();
Ian Rogers62d6c772013-02-27 08:32:07 -08001063
Mathieu Chartiere401d142015-04-22 13:56:20 -07001064 ArtMethod* method = instrumentation_frame.method_;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001065 uint32_t length;
Mingyao Yang99170c62015-07-06 11:10:37 -07001066 const size_t pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
1067 char return_shorty = method->GetInterfaceMethodIfProxy(pointer_size)->GetShorty(&length)[0];
Ian Rogers62d6c772013-02-27 08:32:07 -08001068 JValue return_value;
1069 if (return_shorty == 'V') {
1070 return_value.SetJ(0);
1071 } else if (return_shorty == 'F' || return_shorty == 'D') {
1072 return_value.SetJ(fpr_result);
1073 } else {
1074 return_value.SetJ(gpr_result);
1075 }
1076 // TODO: improve the dex pc information here, requires knowledge of current PC as opposed to
1077 // return_pc.
1078 uint32_t dex_pc = DexFile::kDexNoIndex;
1079 mirror::Object* this_object = instrumentation_frame.this_object_;
Sebastien Hertz320deb22014-06-11 19:45:05 +02001080 if (!instrumentation_frame.interpreter_entry_) {
1081 MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value);
1082 }
jeffhao725a9572012-11-13 18:20:12 -08001083
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01001084 // Deoptimize if the caller needs to continue execution in the interpreter. Do nothing if we get
1085 // back to an upcall.
1086 NthCallerVisitor visitor(self, 1, true);
1087 visitor.WalkStack(true);
Sebastien Hertz270a0e12015-01-16 19:49:09 +01001088 bool deoptimize = (visitor.caller != nullptr) &&
Daniel Mihalyieb076692014-08-22 17:33:31 +02001089 (interpreter_stubs_installed_ || IsDeoptimized(visitor.caller) ||
1090 Dbg::IsForcedInterpreterNeededForUpcall(self, visitor.caller));
Mingyao Yangf711f2c2016-05-23 12:29:39 -07001091 if (deoptimize && Runtime::Current()->IsDeoptimizeable(*return_pc)) {
Ian Rogers62d6c772013-02-27 08:32:07 -08001092 if (kVerboseInstrumentation) {
Sebastien Hertz270a0e12015-01-16 19:49:09 +01001093 LOG(INFO) << StringPrintf("Deoptimizing %s by returning from %s with result %#" PRIx64 " in ",
1094 PrettyMethod(visitor.caller).c_str(),
1095 PrettyMethod(method).c_str(),
1096 return_value.GetJ()) << *self;
Ian Rogers62d6c772013-02-27 08:32:07 -08001097 }
Nicolas Geoffray73be1e82015-09-17 15:22:56 +01001098 self->PushDeoptimizationContext(return_value,
1099 return_shorty == 'L',
1100 false /* from_code */,
Sebastien Hertz07474662015-08-25 15:12:33 +00001101 nullptr /* no pending exception */);
Andreas Gamped58342c2014-06-05 14:18:08 -07001102 return GetTwoWordSuccessValue(*return_pc,
1103 reinterpret_cast<uintptr_t>(GetQuickDeoptimizationEntryPoint()));
Ian Rogers62d6c772013-02-27 08:32:07 -08001104 } else {
1105 if (kVerboseInstrumentation) {
Brian Carlstrom2d888622013-07-18 17:02:00 -07001106 LOG(INFO) << "Returning from " << PrettyMethod(method)
1107 << " to PC " << reinterpret_cast<void*>(*return_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -08001108 }
Andreas Gamped58342c2014-06-05 14:18:08 -07001109 return GetTwoWordSuccessValue(0, *return_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -08001110 }
jeffhao725a9572012-11-13 18:20:12 -08001111}
1112
Mingyao Yangf711f2c2016-05-23 12:29:39 -07001113uintptr_t Instrumentation::PopMethodForUnwind(Thread* self, bool is_deoptimization) const {
Ian Rogers62d6c772013-02-27 08:32:07 -08001114 // Do the pop.
1115 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack();
1116 CHECK_GT(stack->size(), 0U);
1117 InstrumentationStackFrame instrumentation_frame = stack->front();
1118 // TODO: bring back CheckStackDepth(self, instrumentation_frame, 2);
1119 stack->pop_front();
1120
Mathieu Chartiere401d142015-04-22 13:56:20 -07001121 ArtMethod* method = instrumentation_frame.method_;
Ian Rogers62d6c772013-02-27 08:32:07 -08001122 if (is_deoptimization) {
1123 if (kVerboseInstrumentation) {
1124 LOG(INFO) << "Popping for deoptimization " << PrettyMethod(method);
1125 }
1126 } else {
1127 if (kVerboseInstrumentation) {
1128 LOG(INFO) << "Popping for unwind " << PrettyMethod(method);
1129 }
1130
1131 // Notify listeners of method unwind.
1132 // TODO: improve the dex pc information here, requires knowledge of current PC as opposed to
1133 // return_pc.
1134 uint32_t dex_pc = DexFile::kDexNoIndex;
1135 MethodUnwindEvent(self, instrumentation_frame.this_object_, method, dex_pc);
1136 }
Mingyao Yangf711f2c2016-05-23 12:29:39 -07001137 return instrumentation_frame.return_pc_;
Ian Rogers62d6c772013-02-27 08:32:07 -08001138}
1139
1140std::string InstrumentationStackFrame::Dump() const {
1141 std::ostringstream os;
1142 os << "Frame " << frame_id_ << " " << PrettyMethod(method_) << ":"
1143 << reinterpret_cast<void*>(return_pc_) << " this=" << reinterpret_cast<void*>(this_object_);
1144 return os.str();
1145}
1146
1147} // namespace instrumentation
jeffhao725a9572012-11-13 18:20:12 -08001148} // namespace art