blob: 05320ced6d9feddc810e41e41f6bc6151146a298 [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
19#include <sys/uio.h>
20
Ian Rogersef7d42f2014-01-06 12:55:46 -080021#include "atomic.h"
Elliott Hughes76160052012-12-12 16:31:20 -080022#include "base/unix_file/fd_file.h"
jeffhao725a9572012-11-13 18:20:12 -080023#include "class_linker.h"
24#include "debugger.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080025#include "dex_file-inl.h"
Mathieu Chartierd8891782014-03-02 13:28:37 -080026#include "entrypoints/quick/quick_alloc_entrypoints.h"
Sebastien Hertz138dbfc2013-12-04 18:15:25 +010027#include "interpreter/interpreter.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070028#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029#include "mirror/class-inl.h"
30#include "mirror/dex_cache.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031#include "mirror/object_array-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070032#include "mirror/object-inl.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080033#include "nth_caller_visitor.h"
Ian Rogersc928de92013-02-27 14:30:44 -080034#if !defined(ART_USE_PORTABLE_COMPILER)
Ian Rogers166db042013-07-26 12:05:57 -070035#include "entrypoints/quick/quick_entrypoints.h"
jeffhao725a9572012-11-13 18:20:12 -080036#endif
37#include "object_utils.h"
38#include "os.h"
39#include "scoped_thread_state_change.h"
40#include "thread.h"
41#include "thread_list.h"
jeffhao725a9572012-11-13 18:20:12 -080042
43namespace art {
Ian Rogersfa824272013-11-05 16:12:57 -080044
Ian Rogers62d6c772013-02-27 08:32:07 -080045namespace instrumentation {
jeffhao725a9572012-11-13 18:20:12 -080046
Sebastien Hertz5bfd5c92013-11-15 11:36:07 +010047const bool kVerboseInstrumentation = false;
48
Ian Rogers816432e2013-09-06 15:47:45 -070049// Do we want to deoptimize for method entry and exit listeners or just try to intercept
50// invocations? Deoptimization forces all code to run in the interpreter and considerably hurts the
51// application's performance.
Ian Rogers7b6da362013-09-11 09:29:40 -070052static constexpr bool kDeoptimizeForAccurateMethodEntryExitListeners = false;
Ian Rogers816432e2013-09-06 15:47:45 -070053
Ian Rogers62d6c772013-02-27 08:32:07 -080054static bool InstallStubsClassVisitor(mirror::Class* klass, void* arg)
jeffhao725a9572012-11-13 18:20:12 -080055 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -080056 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg);
57 return instrumentation->InstallStubsForClass(klass);
58}
59
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070060Instrumentation::Instrumentation()
61 : instrumentation_stubs_installed_(false), entry_exit_stubs_installed_(false),
62 interpreter_stubs_installed_(false),
63 interpret_only_(false), forced_interpret_only_(false),
64 have_method_entry_listeners_(false), have_method_exit_listeners_(false),
65 have_method_unwind_listeners_(false), have_dex_pc_listeners_(false),
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +020066 have_field_read_listeners_(false), have_field_write_listeners_(false),
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070067 have_exception_caught_listeners_(false),
68 deoptimized_methods_lock_("deoptimized methods lock"),
69 deoptimization_enabled_(false),
70 interpreter_handler_table_(kMainHandlerTable),
71 quick_alloc_entry_points_instrumentation_counter_(0) {
72}
73
Ian Rogers62d6c772013-02-27 08:32:07 -080074bool Instrumentation::InstallStubsForClass(mirror::Class* klass) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +010075 for (size_t i = 0, e = klass->NumDirectMethods(); i < e; i++) {
76 InstallStubsForMethod(klass->GetDirectMethod(i));
jeffhao725a9572012-11-13 18:20:12 -080077 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +010078 for (size_t i = 0, e = klass->NumVirtualMethods(); i < e; i++) {
79 InstallStubsForMethod(klass->GetVirtualMethod(i));
jeffhao725a9572012-11-13 18:20:12 -080080 }
81 return true;
82}
83
Ian Rogersef7d42f2014-01-06 12:55:46 -080084static void UpdateEntrypoints(mirror::ArtMethod* method, const void* quick_code,
85 const void* portable_code, bool have_portable_code)
86 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
87 method->SetEntryPointFromPortableCompiledCode(portable_code);
88 method->SetEntryPointFromQuickCompiledCode(quick_code);
89 bool portable_enabled = method->IsPortableCompiled();
90 if (have_portable_code && !portable_enabled) {
91 method->SetIsPortableCompiled();
92 } else if (portable_enabled) {
93 method->ClearIsPortableCompiled();
94 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +010095 if (!method->IsResolutionMethod()) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -070096 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -080097 if (quick_code == GetQuickToInterpreterBridge() ||
Mingyao Yang98d1cc82014-05-15 17:02:16 -070098 quick_code == class_linker->GetQuickToInterpreterBridgeTrampoline() ||
99 (quick_code == class_linker->GetQuickResolutionTrampoline() &&
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -0800100 Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly()
101 && !method->IsNative() && !method->IsProxyMethod())) {
102 if (kIsDebugBuild) {
103 if (quick_code == GetQuickToInterpreterBridge()) {
104 DCHECK(portable_code == GetPortableToInterpreterBridge());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700105 } else if (quick_code == class_linker->GetQuickResolutionTrampoline()) {
106 DCHECK(portable_code == class_linker->GetPortableResolutionTrampoline());
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -0800107 }
108 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800109 DCHECK(!method->IsNative()) << PrettyMethod(method);
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -0800110 DCHECK(!method->IsProxyMethod()) << PrettyMethod(method);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100111 method->SetEntryPointFromInterpreter(art::interpreter::artInterpreterToInterpreterBridge);
112 } else {
113 method->SetEntryPointFromInterpreter(art::artInterpreterToCompiledCodeBridge);
114 }
115 }
116}
117
118void Instrumentation::InstallStubsForMethod(mirror::ArtMethod* method) {
119 if (method->IsAbstract() || method->IsProxyMethod()) {
120 // Do not change stubs for these methods.
121 return;
122 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800123 const void* new_portable_code;
124 const void* new_quick_code;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100125 bool uninstall = !entry_exit_stubs_installed_ && !interpreter_stubs_installed_;
126 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
127 bool is_class_initialized = method->GetDeclaringClass()->IsInitialized();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800128 bool have_portable_code = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100129 if (uninstall) {
130 if ((forced_interpret_only_ || IsDeoptimized(method)) && !method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800131 new_portable_code = GetPortableToInterpreterBridge();
132 new_quick_code = GetQuickToInterpreterBridge();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100133 } else if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800134 new_portable_code = class_linker->GetPortableOatCodeFor(method, &have_portable_code);
135 new_quick_code = class_linker->GetQuickOatCodeFor(method);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100136 } else {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700137 new_portable_code = class_linker->GetPortableResolutionTrampoline();
138 new_quick_code = class_linker->GetQuickResolutionTrampoline();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100139 }
140 } else { // !uninstall
Sebastien Hertzbae182c2013-12-17 10:42:03 +0100141 if ((interpreter_stubs_installed_ || forced_interpret_only_ || IsDeoptimized(method)) &&
142 !method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800143 new_portable_code = GetPortableToInterpreterBridge();
144 new_quick_code = GetQuickToInterpreterBridge();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100145 } else {
146 // Do not overwrite resolution trampoline. When the trampoline initializes the method's
147 // class, all its static methods code will be set to the instrumentation entry point.
148 // For more details, see ClassLinker::FixupStaticTrampolines.
149 if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) {
Sebastien Hertz320deb22014-06-11 19:45:05 +0200150 if (entry_exit_stubs_installed_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800151 new_portable_code = GetPortableToInterpreterBridge();
152 new_quick_code = GetQuickInstrumentationEntryPoint();
Sebastien Hertz320deb22014-06-11 19:45:05 +0200153 } else {
154 new_portable_code = class_linker->GetPortableOatCodeFor(method, &have_portable_code);
155 new_quick_code = class_linker->GetQuickOatCodeFor(method);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700156 DCHECK(new_quick_code != class_linker->GetQuickToInterpreterBridgeTrampoline());
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100157 }
158 } else {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700159 new_portable_code = class_linker->GetPortableResolutionTrampoline();
160 new_quick_code = class_linker->GetQuickResolutionTrampoline();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100161 }
162 }
163 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800164 UpdateEntrypoints(method, new_quick_code, new_portable_code, have_portable_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)
Ian Rogers306057f2012-11-26 12:45:53 -0800172 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
173 struct InstallStackVisitor : public StackVisitor {
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100174 InstallStackVisitor(Thread* thread, Context* context, uintptr_t instrumentation_exit_pc)
Ian Rogers62d6c772013-02-27 08:32:07 -0800175 : StackVisitor(thread, context), instrumentation_stack_(thread->GetInstrumentationStack()),
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100176 instrumentation_exit_pc_(instrumentation_exit_pc),
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100177 reached_existing_instrumentation_frames_(false), instrumentation_stack_depth_(0),
178 last_return_pc_(0) {
179 }
jeffhao725a9572012-11-13 18:20:12 -0800180
Ian Rogers306057f2012-11-26 12:45:53 -0800181 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700182 mirror::ArtMethod* m = GetMethod();
Ian Rogers306057f2012-11-26 12:45:53 -0800183 if (m == NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800184 if (kVerboseInstrumentation) {
185 LOG(INFO) << " Skipping upcall. Frame " << GetFrameId();
186 }
187 last_return_pc_ = 0;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700188 return true; // Ignore upcalls.
Ian Rogers306057f2012-11-26 12:45:53 -0800189 }
Jeff Haoa15a81b2014-05-27 18:25:47 -0700190 if (GetCurrentQuickFrame() == NULL) {
Sebastien Hertz320deb22014-06-11 19:45:05 +0200191 bool interpreter_frame = !m->IsPortableCompiled();
192 InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, 0, GetFrameId(),
193 interpreter_frame);
Jeff Haoa15a81b2014-05-27 18:25:47 -0700194 if (kVerboseInstrumentation) {
195 LOG(INFO) << "Pushing shadow frame " << instrumentation_frame.Dump();
196 }
197 shadow_stack_.push_back(instrumentation_frame);
198 return true; // Continue.
199 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800200 uintptr_t return_pc = GetReturnPc();
Sebastien Hertz320deb22014-06-11 19:45:05 +0200201 if (m->IsRuntimeMethod()) {
202 if (return_pc == instrumentation_exit_pc_) {
203 if (kVerboseInstrumentation) {
204 LOG(INFO) << " Handling quick to interpreter transition. Frame " << GetFrameId();
205 }
206 CHECK_LT(instrumentation_stack_depth_, instrumentation_stack_->size());
207 const InstrumentationStackFrame& frame = instrumentation_stack_->at(instrumentation_stack_depth_);
208 CHECK(frame.interpreter_entry_);
209 // This is an interpreter frame so method enter event must have been reported. However we
210 // need to push a DEX pc into the dex_pcs_ list to match size of instrumentation stack.
211 // Since we won't report method entry here, we can safely push any DEX pc.
212 dex_pcs_.push_back(0);
213 last_return_pc_ = frame.return_pc_;
214 ++instrumentation_stack_depth_;
215 return true;
216 } else {
217 if (kVerboseInstrumentation) {
218 LOG(INFO) << " Skipping runtime method. Frame " << GetFrameId();
219 }
220 last_return_pc_ = GetReturnPc();
221 return true; // Ignore unresolved methods since they will be instrumented after resolution.
222 }
223 }
224 if (kVerboseInstrumentation) {
225 LOG(INFO) << " Installing exit stub in " << DescribeLocation();
226 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100227 if (return_pc == instrumentation_exit_pc_) {
228 // We've reached a frame which has already been installed with instrumentation exit stub.
229 // We should have already installed instrumentation on previous frames.
230 reached_existing_instrumentation_frames_ = true;
231
232 CHECK_LT(instrumentation_stack_depth_, instrumentation_stack_->size());
233 const InstrumentationStackFrame& frame = instrumentation_stack_->at(instrumentation_stack_depth_);
234 CHECK_EQ(m, frame.method_) << "Expected " << PrettyMethod(m)
235 << ", Found " << PrettyMethod(frame.method_);
236 return_pc = frame.return_pc_;
237 if (kVerboseInstrumentation) {
238 LOG(INFO) << "Ignoring already instrumented " << frame.Dump();
239 }
240 } else {
241 CHECK_NE(return_pc, 0U);
242 CHECK(!reached_existing_instrumentation_frames_);
243 InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, return_pc, GetFrameId(),
244 false);
245 if (kVerboseInstrumentation) {
246 LOG(INFO) << "Pushing frame " << instrumentation_frame.Dump();
247 }
248
Sebastien Hertz320deb22014-06-11 19:45:05 +0200249 // Insert frame at the right position so we do not corrupt the instrumentation stack.
250 // Instrumentation stack frames are in descending frame id order.
251 auto it = instrumentation_stack_->begin();
252 for (auto end = instrumentation_stack_->end(); it != end; ++it) {
253 const InstrumentationStackFrame& current = *it;
254 if (instrumentation_frame.frame_id_ >= current.frame_id_) {
255 break;
256 }
257 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100258 instrumentation_stack_->insert(it, instrumentation_frame);
259 SetReturnPc(instrumentation_exit_pc_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800260 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800261 dex_pcs_.push_back(m->ToDexPc(last_return_pc_));
Ian Rogers62d6c772013-02-27 08:32:07 -0800262 last_return_pc_ = return_pc;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100263 ++instrumentation_stack_depth_;
Ian Rogers306057f2012-11-26 12:45:53 -0800264 return true; // Continue.
265 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800266 std::deque<InstrumentationStackFrame>* const instrumentation_stack_;
Jeff Haoa15a81b2014-05-27 18:25:47 -0700267 std::vector<InstrumentationStackFrame> shadow_stack_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800268 std::vector<uint32_t> dex_pcs_;
Ian Rogers306057f2012-11-26 12:45:53 -0800269 const uintptr_t instrumentation_exit_pc_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100270 bool reached_existing_instrumentation_frames_;
271 size_t instrumentation_stack_depth_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800272 uintptr_t last_return_pc_;
Ian Rogers306057f2012-11-26 12:45:53 -0800273 };
Ian Rogers62d6c772013-02-27 08:32:07 -0800274 if (kVerboseInstrumentation) {
275 std::string thread_name;
276 thread->GetThreadName(thread_name);
277 LOG(INFO) << "Installing exit stubs in " << thread_name;
Ian Rogers306057f2012-11-26 12:45:53 -0800278 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100279
280 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg);
Ian Rogers700a4022014-05-19 16:49:03 -0700281 std::unique_ptr<Context> context(Context::Create());
Ian Rogers848871b2013-08-05 10:56:33 -0700282 uintptr_t instrumentation_exit_pc = GetQuickInstrumentationExitPc();
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100283 InstallStackVisitor visitor(thread, context.get(), instrumentation_exit_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800284 visitor.WalkStack(true);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100285 CHECK_EQ(visitor.dex_pcs_.size(), thread->GetInstrumentationStack()->size());
Ian Rogers62d6c772013-02-27 08:32:07 -0800286
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100287 if (instrumentation->ShouldNotifyMethodEnterExitEvents()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100288 // Create method enter events for all methods currently on the thread's stack. We only do this
289 // if no debugger is attached to prevent from posting events twice.
Jeff Haoa15a81b2014-05-27 18:25:47 -0700290 auto ssi = visitor.shadow_stack_.rbegin();
291 for (auto isi = thread->GetInstrumentationStack()->rbegin(),
292 end = thread->GetInstrumentationStack()->rend(); isi != end; ++isi) {
293 while (ssi != visitor.shadow_stack_.rend() && (*ssi).frame_id_ < (*isi).frame_id_) {
294 instrumentation->MethodEnterEvent(thread, (*ssi).this_object_, (*ssi).method_, 0);
295 ++ssi;
296 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100297 uint32_t dex_pc = visitor.dex_pcs_.back();
298 visitor.dex_pcs_.pop_back();
Sebastien Hertz320deb22014-06-11 19:45:05 +0200299 if (!isi->interpreter_entry_) {
300 instrumentation->MethodEnterEvent(thread, (*isi).this_object_, (*isi).method_, dex_pc);
301 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100302 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800303 }
304 thread->VerifyStack();
Ian Rogers306057f2012-11-26 12:45:53 -0800305}
306
Ian Rogers62d6c772013-02-27 08:32:07 -0800307// Removes the instrumentation exit pc as the return PC for every quick frame.
308static void InstrumentationRestoreStack(Thread* thread, void* arg)
Ian Rogers306057f2012-11-26 12:45:53 -0800309 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
310 struct RestoreStackVisitor : public StackVisitor {
Ian Rogers62d6c772013-02-27 08:32:07 -0800311 RestoreStackVisitor(Thread* thread, uintptr_t instrumentation_exit_pc,
312 Instrumentation* instrumentation)
313 : StackVisitor(thread, NULL), thread_(thread),
314 instrumentation_exit_pc_(instrumentation_exit_pc),
315 instrumentation_(instrumentation),
316 instrumentation_stack_(thread->GetInstrumentationStack()),
317 frames_removed_(0) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800318
319 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800320 if (instrumentation_stack_->size() == 0) {
jeffhao725a9572012-11-13 18:20:12 -0800321 return false; // Stop.
322 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700323 mirror::ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -0800324 if (GetCurrentQuickFrame() == NULL) {
325 if (kVerboseInstrumentation) {
326 LOG(INFO) << " Ignoring a shadow frame. Frame " << GetFrameId() << " Method=" << PrettyMethod(m);
327 }
328 return true; // Ignore shadow frames.
329 }
Ian Rogers306057f2012-11-26 12:45:53 -0800330 if (m == NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800331 if (kVerboseInstrumentation) {
332 LOG(INFO) << " Skipping upcall. Frame " << GetFrameId();
333 }
Ian Rogers306057f2012-11-26 12:45:53 -0800334 return true; // Ignore upcalls.
335 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800336 bool removed_stub = false;
337 // TODO: make this search more efficient?
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100338 const size_t frameId = GetFrameId();
339 for (const InstrumentationStackFrame& instrumentation_frame : *instrumentation_stack_) {
340 if (instrumentation_frame.frame_id_ == frameId) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800341 if (kVerboseInstrumentation) {
342 LOG(INFO) << " Removing exit stub in " << DescribeLocation();
343 }
Jeff Hao9a916d32013-06-27 18:45:37 -0700344 if (instrumentation_frame.interpreter_entry_) {
345 CHECK(m == Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs));
346 } else {
347 CHECK(m == instrumentation_frame.method_) << PrettyMethod(m);
348 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800349 SetReturnPc(instrumentation_frame.return_pc_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100350 if (instrumentation_->ShouldNotifyMethodEnterExitEvents()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100351 // Create the method exit events. As the methods didn't really exit the result is 0.
352 // We only do this if no debugger is attached to prevent from posting events twice.
353 instrumentation_->MethodExitEvent(thread_, instrumentation_frame.this_object_, m,
354 GetDexPc(), JValue());
355 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800356 frames_removed_++;
357 removed_stub = true;
358 break;
359 }
360 }
361 if (!removed_stub) {
362 if (kVerboseInstrumentation) {
363 LOG(INFO) << " No exit stub in " << DescribeLocation();
Ian Rogers306057f2012-11-26 12:45:53 -0800364 }
jeffhao725a9572012-11-13 18:20:12 -0800365 }
366 return true; // Continue.
367 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800368 Thread* const thread_;
Ian Rogers306057f2012-11-26 12:45:53 -0800369 const uintptr_t instrumentation_exit_pc_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800370 Instrumentation* const instrumentation_;
371 std::deque<instrumentation::InstrumentationStackFrame>* const instrumentation_stack_;
372 size_t frames_removed_;
jeffhao725a9572012-11-13 18:20:12 -0800373 };
Ian Rogers62d6c772013-02-27 08:32:07 -0800374 if (kVerboseInstrumentation) {
375 std::string thread_name;
376 thread->GetThreadName(thread_name);
377 LOG(INFO) << "Removing exit stubs in " << thread_name;
378 }
379 std::deque<instrumentation::InstrumentationStackFrame>* stack = thread->GetInstrumentationStack();
380 if (stack->size() > 0) {
381 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg);
Ian Rogers848871b2013-08-05 10:56:33 -0700382 uintptr_t instrumentation_exit_pc = GetQuickInstrumentationExitPc();
Ian Rogers62d6c772013-02-27 08:32:07 -0800383 RestoreStackVisitor visitor(thread, instrumentation_exit_pc, instrumentation);
384 visitor.WalkStack(true);
385 CHECK_EQ(visitor.frames_removed_, stack->size());
386 while (stack->size() > 0) {
387 stack->pop_front();
388 }
jeffhao725a9572012-11-13 18:20:12 -0800389 }
390}
391
Ian Rogers62d6c772013-02-27 08:32:07 -0800392void Instrumentation::AddListener(InstrumentationListener* listener, uint32_t events) {
393 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Ian Rogers62d6c772013-02-27 08:32:07 -0800394 if ((events & kMethodEntered) != 0) {
395 method_entry_listeners_.push_back(listener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800396 have_method_entry_listeners_ = true;
397 }
398 if ((events & kMethodExited) != 0) {
399 method_exit_listeners_.push_back(listener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800400 have_method_exit_listeners_ = true;
401 }
402 if ((events & kMethodUnwind) != 0) {
403 method_unwind_listeners_.push_back(listener);
404 have_method_unwind_listeners_ = true;
405 }
406 if ((events & kDexPcMoved) != 0) {
407 dex_pc_listeners_.push_back(listener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800408 have_dex_pc_listeners_ = true;
409 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200410 if ((events & kFieldRead) != 0) {
411 field_read_listeners_.push_back(listener);
412 have_field_read_listeners_ = true;
413 }
414 if ((events & kFieldWritten) != 0) {
415 field_write_listeners_.push_back(listener);
416 have_field_write_listeners_ = true;
417 }
Jeff Hao14dd5a82013-04-11 10:23:36 -0700418 if ((events & kExceptionCaught) != 0) {
419 exception_caught_listeners_.push_back(listener);
420 have_exception_caught_listeners_ = true;
421 }
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200422 UpdateInterpreterHandlerTable();
jeffhao725a9572012-11-13 18:20:12 -0800423}
424
Ian Rogers62d6c772013-02-27 08:32:07 -0800425void Instrumentation::RemoveListener(InstrumentationListener* listener, uint32_t events) {
426 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Ian Rogers62d6c772013-02-27 08:32:07 -0800427
428 if ((events & kMethodEntered) != 0) {
429 bool contains = std::find(method_entry_listeners_.begin(), method_entry_listeners_.end(),
430 listener) != method_entry_listeners_.end();
431 if (contains) {
432 method_entry_listeners_.remove(listener);
433 }
434 have_method_entry_listeners_ = method_entry_listeners_.size() > 0;
Ian Rogers62d6c772013-02-27 08:32:07 -0800435 }
436 if ((events & kMethodExited) != 0) {
437 bool contains = std::find(method_exit_listeners_.begin(), method_exit_listeners_.end(),
438 listener) != method_exit_listeners_.end();
439 if (contains) {
440 method_exit_listeners_.remove(listener);
441 }
442 have_method_exit_listeners_ = method_exit_listeners_.size() > 0;
Ian Rogers62d6c772013-02-27 08:32:07 -0800443 }
444 if ((events & kMethodUnwind) != 0) {
445 method_unwind_listeners_.remove(listener);
446 }
447 if ((events & kDexPcMoved) != 0) {
448 bool contains = std::find(dex_pc_listeners_.begin(), dex_pc_listeners_.end(),
449 listener) != dex_pc_listeners_.end();
450 if (contains) {
451 dex_pc_listeners_.remove(listener);
452 }
453 have_dex_pc_listeners_ = dex_pc_listeners_.size() > 0;
Ian Rogers62d6c772013-02-27 08:32:07 -0800454 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200455 if ((events & kFieldRead) != 0) {
456 bool contains = std::find(field_read_listeners_.begin(), field_read_listeners_.end(),
457 listener) != field_read_listeners_.end();
458 if (contains) {
459 field_read_listeners_.remove(listener);
460 }
461 have_field_read_listeners_ = field_read_listeners_.size() > 0;
462 }
463 if ((events & kFieldWritten) != 0) {
464 bool contains = std::find(field_write_listeners_.begin(), field_write_listeners_.end(),
465 listener) != field_write_listeners_.end();
466 if (contains) {
467 field_write_listeners_.remove(listener);
468 }
469 have_field_write_listeners_ = field_write_listeners_.size() > 0;
470 }
Jeff Hao14dd5a82013-04-11 10:23:36 -0700471 if ((events & kExceptionCaught) != 0) {
472 exception_caught_listeners_.remove(listener);
473 have_exception_caught_listeners_ = exception_caught_listeners_.size() > 0;
474 }
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200475 UpdateInterpreterHandlerTable();
jeffhao725a9572012-11-13 18:20:12 -0800476}
477
Ian Rogers62d6c772013-02-27 08:32:07 -0800478void Instrumentation::ConfigureStubs(bool require_entry_exit_stubs, bool require_interpreter) {
479 interpret_only_ = require_interpreter || forced_interpret_only_;
480 // Compute what level of instrumentation is required and compare to current.
481 int desired_level, current_level;
482 if (require_interpreter) {
483 desired_level = 2;
484 } else if (require_entry_exit_stubs) {
485 desired_level = 1;
486 } else {
487 desired_level = 0;
488 }
489 if (interpreter_stubs_installed_) {
490 current_level = 2;
491 } else if (entry_exit_stubs_installed_) {
492 current_level = 1;
493 } else {
494 current_level = 0;
495 }
496 if (desired_level == current_level) {
497 // We're already set.
498 return;
499 }
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100500 Thread* const self = Thread::Current();
Ian Rogers62d6c772013-02-27 08:32:07 -0800501 Runtime* runtime = Runtime::Current();
502 Locks::thread_list_lock_->AssertNotHeld(self);
503 if (desired_level > 0) {
504 if (require_interpreter) {
505 interpreter_stubs_installed_ = true;
506 } else {
507 CHECK(require_entry_exit_stubs);
508 entry_exit_stubs_installed_ = true;
509 }
510 runtime->GetClassLinker()->VisitClasses(InstallStubsClassVisitor, this);
511 instrumentation_stubs_installed_ = true;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100512 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800513 runtime->GetThreadList()->ForEach(InstrumentationInstallStack, this);
514 } else {
515 interpreter_stubs_installed_ = false;
516 entry_exit_stubs_installed_ = false;
517 runtime->GetClassLinker()->VisitClasses(InstallStubsClassVisitor, this);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100518 // Restore stack only if there is no method currently deoptimized.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700519 bool empty;
520 {
521 ReaderMutexLock mu(self, deoptimized_methods_lock_);
522 empty = deoptimized_methods_.empty(); // Avoid lock violation.
523 }
524 if (empty) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100525 instrumentation_stubs_installed_ = false;
526 MutexLock mu(self, *Locks::thread_list_lock_);
527 Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this);
528 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800529 }
jeffhao725a9572012-11-13 18:20:12 -0800530}
531
Ian Rogersfa824272013-11-05 16:12:57 -0800532static void ResetQuickAllocEntryPointsForThread(Thread* thread, void* arg) {
533 thread->ResetQuickAllocEntryPointsForThread();
534}
535
Mathieu Chartier661974a2014-01-09 11:23:53 -0800536void Instrumentation::SetEntrypointsInstrumented(bool instrumented) {
537 Runtime* runtime = Runtime::Current();
538 ThreadList* tl = runtime->GetThreadList();
539 if (runtime->IsStarted()) {
540 tl->SuspendAll();
541 }
542 {
543 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
544 SetQuickAllocEntryPointsInstrumented(instrumented);
545 ResetQuickAllocEntryPoints();
546 }
547 if (runtime->IsStarted()) {
548 tl->ResumeAll();
549 }
550}
551
Ian Rogersfa824272013-11-05 16:12:57 -0800552void Instrumentation::InstrumentQuickAllocEntryPoints() {
553 // TODO: the read of quick_alloc_entry_points_instrumentation_counter_ is racey and this code
554 // should be guarded by a lock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700555 DCHECK_GE(quick_alloc_entry_points_instrumentation_counter_.LoadSequentiallyConsistent(), 0);
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800556 const bool enable_instrumentation =
Ian Rogers3e5cf302014-05-20 16:40:37 -0700557 quick_alloc_entry_points_instrumentation_counter_.FetchAndAddSequentiallyConsistent(1) == 0;
Ian Rogersfa824272013-11-05 16:12:57 -0800558 if (enable_instrumentation) {
Mathieu Chartier661974a2014-01-09 11:23:53 -0800559 SetEntrypointsInstrumented(true);
Ian Rogersfa824272013-11-05 16:12:57 -0800560 }
561}
562
563void Instrumentation::UninstrumentQuickAllocEntryPoints() {
564 // TODO: the read of quick_alloc_entry_points_instrumentation_counter_ is racey and this code
565 // should be guarded by a lock.
Ian Rogers3e5cf302014-05-20 16:40:37 -0700566 DCHECK_GT(quick_alloc_entry_points_instrumentation_counter_.LoadSequentiallyConsistent(), 0);
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800567 const bool disable_instrumentation =
Ian Rogers3e5cf302014-05-20 16:40:37 -0700568 quick_alloc_entry_points_instrumentation_counter_.FetchAndSubSequentiallyConsistent(1) == 1;
Ian Rogersfa824272013-11-05 16:12:57 -0800569 if (disable_instrumentation) {
Mathieu Chartier661974a2014-01-09 11:23:53 -0800570 SetEntrypointsInstrumented(false);
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800571 }
572}
573
574void Instrumentation::ResetQuickAllocEntryPoints() {
575 Runtime* runtime = Runtime::Current();
576 if (runtime->IsStarted()) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800577 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
578 runtime->GetThreadList()->ForEach(ResetQuickAllocEntryPointsForThread, NULL);
Ian Rogersfa824272013-11-05 16:12:57 -0800579 }
580}
581
Ian Rogersef7d42f2014-01-06 12:55:46 -0800582void Instrumentation::UpdateMethodsCode(mirror::ArtMethod* method, const void* quick_code,
583 const void* portable_code, bool have_portable_code) const {
584 const void* new_portable_code;
585 const void* new_quick_code;
586 bool new_have_portable_code;
Ian Rogers62d6c772013-02-27 08:32:07 -0800587 if (LIKELY(!instrumentation_stubs_installed_)) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800588 new_portable_code = portable_code;
589 new_quick_code = quick_code;
590 new_have_portable_code = have_portable_code;
Jeff Hao65d15d92013-07-16 16:39:33 -0700591 } else {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100592 if ((interpreter_stubs_installed_ || IsDeoptimized(method)) && !method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800593 new_portable_code = GetPortableToInterpreterBridge();
594 new_quick_code = GetQuickToInterpreterBridge();
595 new_have_portable_code = false;
Jeff Hao65d15d92013-07-16 16:39:33 -0700596 } else {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700597 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
598 if (quick_code == class_linker->GetQuickResolutionTrampoline() ||
599 quick_code == class_linker->GetQuickToInterpreterBridgeTrampoline() ||
600 quick_code == GetQuickToInterpreterBridge()) {
601 DCHECK((portable_code == class_linker->GetPortableResolutionTrampoline()) ||
602 (portable_code == GetPortableToInterpreterBridge()));
603 new_portable_code = portable_code;
604 new_quick_code = quick_code;
605 new_have_portable_code = have_portable_code;
606 } else if (entry_exit_stubs_installed_) {
607 new_quick_code = GetQuickInstrumentationEntryPoint();
608 new_portable_code = GetPortableToInterpreterBridge();
609 new_have_portable_code = false;
610 } else {
611 new_portable_code = portable_code;
612 new_quick_code = quick_code;
613 new_have_portable_code = have_portable_code;
614 }
Jeff Hao65d15d92013-07-16 16:39:33 -0700615 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800616 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800617 UpdateEntrypoints(method, new_quick_code, new_portable_code, new_have_portable_code);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100618}
619
620void Instrumentation::Deoptimize(mirror::ArtMethod* method) {
621 CHECK(!method->IsNative());
622 CHECK(!method->IsProxyMethod());
623 CHECK(!method->IsAbstract());
624
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700625 Thread* self = Thread::Current();
626 std::pair<std::set<mirror::ArtMethod*>::iterator, bool> pair;
627 {
628 WriterMutexLock mu(self, deoptimized_methods_lock_);
629 pair = deoptimized_methods_.insert(method);
630 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100631 bool already_deoptimized = !pair.second;
632 CHECK(!already_deoptimized) << "Method " << PrettyMethod(method) << " is already deoptimized";
633
634 if (!interpreter_stubs_installed_) {
Sebastien Hertz320deb22014-06-11 19:45:05 +0200635 UpdateEntrypoints(method, GetQuickInstrumentationEntryPoint(), GetPortableToInterpreterBridge(),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800636 false);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100637
638 // Install instrumentation exit stub and instrumentation frames. We may already have installed
639 // these previously so it will only cover the newly created frames.
640 instrumentation_stubs_installed_ = true;
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700641 MutexLock mu(self, *Locks::thread_list_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100642 Runtime::Current()->GetThreadList()->ForEach(InstrumentationInstallStack, this);
643 }
644}
645
646void Instrumentation::Undeoptimize(mirror::ArtMethod* method) {
647 CHECK(!method->IsNative());
648 CHECK(!method->IsProxyMethod());
649 CHECK(!method->IsAbstract());
650
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700651 Thread* self = Thread::Current();
652 bool empty;
653 {
654 WriterMutexLock mu(self, deoptimized_methods_lock_);
655 auto it = deoptimized_methods_.find(method);
656 CHECK(it != deoptimized_methods_.end()) << "Method " << PrettyMethod(method)
657 << " is not deoptimized";
658 deoptimized_methods_.erase(it);
659 empty = deoptimized_methods_.empty();
660 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100661
662 // Restore code and possibly stack only if we did not deoptimize everything.
663 if (!interpreter_stubs_installed_) {
664 // Restore its code or resolution trampoline.
665 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800666 if (method->IsStatic() && !method->IsConstructor() &&
667 !method->GetDeclaringClass()->IsInitialized()) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700668 // TODO: we're updating to entrypoints in the image here, we can avoid the trampoline.
669 UpdateEntrypoints(method, class_linker->GetQuickResolutionTrampoline(),
670 class_linker->GetPortableResolutionTrampoline(), false);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100671 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800672 bool have_portable_code = false;
673 const void* quick_code = class_linker->GetQuickOatCodeFor(method);
674 const void* portable_code = class_linker->GetPortableOatCodeFor(method, &have_portable_code);
675 UpdateEntrypoints(method, quick_code, portable_code, have_portable_code);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100676 }
677
678 // If there is no deoptimized method left, we can restore the stack of each thread.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700679 if (empty) {
680 MutexLock mu(self, *Locks::thread_list_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100681 Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this);
682 instrumentation_stubs_installed_ = false;
683 }
684 }
685}
686
687bool Instrumentation::IsDeoptimized(mirror::ArtMethod* method) const {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700688 ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100689 DCHECK(method != nullptr);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700690 return deoptimized_methods_.find(method) != deoptimized_methods_.end();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100691}
692
693void Instrumentation::EnableDeoptimization() {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700694 ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100695 CHECK(deoptimized_methods_.empty());
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100696 CHECK_EQ(deoptimization_enabled_, false);
697 deoptimization_enabled_ = true;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100698}
699
700void Instrumentation::DisableDeoptimization() {
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100701 CHECK_EQ(deoptimization_enabled_, true);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100702 // If we deoptimized everything, undo it.
703 if (interpreter_stubs_installed_) {
704 UndeoptimizeEverything();
705 }
706 // Undeoptimized selected methods.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700707 while (true) {
708 mirror::ArtMethod* method;
709 {
710 ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_);
711 if (deoptimized_methods_.empty()) {
712 break;
713 }
714 method = *deoptimized_methods_.begin();
715 }
716 Undeoptimize(method);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100717 }
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100718 deoptimization_enabled_ = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100719}
720
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100721// Indicates if instrumentation should notify method enter/exit events to the listeners.
722bool Instrumentation::ShouldNotifyMethodEnterExitEvents() const {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100723 return !deoptimization_enabled_ && !interpreter_stubs_installed_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100724}
725
726void Instrumentation::DeoptimizeEverything() {
727 CHECK(!interpreter_stubs_installed_);
728 ConfigureStubs(false, true);
729}
730
731void Instrumentation::UndeoptimizeEverything() {
732 CHECK(interpreter_stubs_installed_);
733 ConfigureStubs(false, false);
734}
735
736void Instrumentation::EnableMethodTracing() {
737 bool require_interpreter = kDeoptimizeForAccurateMethodEntryExitListeners;
738 ConfigureStubs(!require_interpreter, require_interpreter);
739}
740
741void Instrumentation::DisableMethodTracing() {
742 ConfigureStubs(false, false);
jeffhao725a9572012-11-13 18:20:12 -0800743}
744
Ian Rogersef7d42f2014-01-06 12:55:46 -0800745const void* Instrumentation::GetQuickCodeFor(mirror::ArtMethod* method) const {
Ian Rogers62d6c772013-02-27 08:32:07 -0800746 Runtime* runtime = Runtime::Current();
747 if (LIKELY(!instrumentation_stubs_installed_)) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800748 const void* code = method->GetEntryPointFromQuickCompiledCode();
Vladimir Marko8a630572014-04-09 18:45:35 +0100749 DCHECK(code != nullptr);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700750 ClassLinker* class_linker = runtime->GetClassLinker();
751 if (LIKELY(code != class_linker->GetQuickResolutionTrampoline()) &&
752 LIKELY(code != class_linker->GetQuickToInterpreterBridgeTrampoline()) &&
Vladimir Marko8a630572014-04-09 18:45:35 +0100753 LIKELY(code != GetQuickToInterpreterBridge())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800754 return code;
755 }
756 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800757 return runtime->GetClassLinker()->GetQuickOatCodeFor(method);
jeffhao725a9572012-11-13 18:20:12 -0800758}
759
Ian Rogers62d6c772013-02-27 08:32:07 -0800760void Instrumentation::MethodEnterEventImpl(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800761 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800762 uint32_t dex_pc) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700763 auto it = method_entry_listeners_.begin();
Jeff Hao65d15d92013-07-16 16:39:33 -0700764 bool is_end = (it == method_entry_listeners_.end());
765 // Implemented this way to prevent problems caused by modification of the list while iterating.
766 while (!is_end) {
767 InstrumentationListener* cur = *it;
768 ++it;
769 is_end = (it == method_entry_listeners_.end());
770 cur->MethodEntered(thread, this_object, method, dex_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800771 }
772}
773
774void Instrumentation::MethodExitEventImpl(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800775 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800776 uint32_t dex_pc, const JValue& return_value) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700777 auto it = method_exit_listeners_.begin();
Jeff Hao65d15d92013-07-16 16:39:33 -0700778 bool is_end = (it == method_exit_listeners_.end());
779 // Implemented this way to prevent problems caused by modification of the list while iterating.
780 while (!is_end) {
781 InstrumentationListener* cur = *it;
782 ++it;
783 is_end = (it == method_exit_listeners_.end());
784 cur->MethodExited(thread, this_object, method, dex_pc, return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800785 }
786}
787
788void Instrumentation::MethodUnwindEvent(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800789 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800790 uint32_t dex_pc) const {
791 if (have_method_unwind_listeners_) {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700792 for (InstrumentationListener* listener : method_unwind_listeners_) {
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100793 listener->MethodUnwind(thread, this_object, method, dex_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800794 }
795 }
796}
797
798void Instrumentation::DexPcMovedEventImpl(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800799 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800800 uint32_t dex_pc) const {
801 // TODO: STL copy-on-write collection? The copy below is due to the debug listener having an
802 // action where it can remove itself as a listener and break the iterator. The copy only works
803 // around the problem and in general we may have to move to something like reference counting to
804 // ensure listeners are deleted correctly.
805 std::list<InstrumentationListener*> copy(dex_pc_listeners_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700806 for (InstrumentationListener* listener : copy) {
807 listener->DexPcMoved(thread, this_object, method, dex_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800808 }
809}
810
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200811void Instrumentation::FieldReadEventImpl(Thread* thread, mirror::Object* this_object,
812 mirror::ArtMethod* method, uint32_t dex_pc,
813 mirror::ArtField* field) const {
Sebastien Hertz9f102032014-05-23 08:59:42 +0200814 // TODO: same comment than DexPcMovedEventImpl.
815 std::list<InstrumentationListener*> copy(field_read_listeners_);
816 for (InstrumentationListener* listener : copy) {
817 listener->FieldRead(thread, this_object, method, dex_pc, field);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200818 }
819}
820
821void Instrumentation::FieldWriteEventImpl(Thread* thread, mirror::Object* this_object,
822 mirror::ArtMethod* method, uint32_t dex_pc,
823 mirror::ArtField* field, const JValue& field_value) const {
Sebastien Hertz9f102032014-05-23 08:59:42 +0200824 // TODO: same comment than DexPcMovedEventImpl.
825 std::list<InstrumentationListener*> copy(field_write_listeners_);
826 for (InstrumentationListener* listener : copy) {
827 listener->FieldWritten(thread, this_object, method, dex_pc, field, field_value);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200828 }
829}
830
Ian Rogers62d6c772013-02-27 08:32:07 -0800831void Instrumentation::ExceptionCaughtEvent(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -0700832 mirror::ArtMethod* catch_method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800833 uint32_t catch_dex_pc,
Sebastien Hertz947ff082013-09-17 14:10:13 +0200834 mirror::Throwable* exception_object) const {
Sebastien Hertz9f102032014-05-23 08:59:42 +0200835 if (HasExceptionCaughtListeners()) {
836 DCHECK_EQ(thread->GetException(nullptr), exception_object);
837 bool is_exception_reported = thread->IsExceptionReportedToInstrumentation();
Jeff Haoc0bd4da2013-04-11 15:52:28 -0700838 thread->ClearException();
Sebastien Hertzbf079fe2014-04-01 15:31:05 +0200839 // TODO: The copy below is due to the debug listener having an action where it can remove
840 // itself as a listener and break the iterator. The copy only works around the problem.
841 std::list<InstrumentationListener*> copy(exception_caught_listeners_);
842 for (InstrumentationListener* listener : copy) {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700843 listener->ExceptionCaught(thread, throw_location, catch_method, catch_dex_pc, exception_object);
Ian Rogers62d6c772013-02-27 08:32:07 -0800844 }
Jeff Haoc0bd4da2013-04-11 15:52:28 -0700845 thread->SetException(throw_location, exception_object);
Sebastien Hertz9f102032014-05-23 08:59:42 +0200846 thread->SetExceptionReportedToInstrumentation(is_exception_reported);
Ian Rogers62d6c772013-02-27 08:32:07 -0800847 }
848}
849
850static void CheckStackDepth(Thread* self, const InstrumentationStackFrame& instrumentation_frame,
851 int delta)
852 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
853 size_t frame_id = StackVisitor::ComputeNumFrames(self) + delta;
854 if (frame_id != instrumentation_frame.frame_id_) {
855 LOG(ERROR) << "Expected frame_id=" << frame_id << " but found "
856 << instrumentation_frame.frame_id_;
857 StackVisitor::DescribeStack(self);
858 CHECK_EQ(frame_id, instrumentation_frame.frame_id_);
859 }
860}
861
862void Instrumentation::PushInstrumentationStackFrame(Thread* self, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700863 mirror::ArtMethod* method,
Jeff Hao9a916d32013-06-27 18:45:37 -0700864 uintptr_t lr, bool interpreter_entry) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800865 // We have a callee-save frame meaning this value is guaranteed to never be 0.
866 size_t frame_id = StackVisitor::ComputeNumFrames(self);
867 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack();
868 if (kVerboseInstrumentation) {
Brian Carlstrom2d888622013-07-18 17:02:00 -0700869 LOG(INFO) << "Entering " << PrettyMethod(method) << " from PC " << reinterpret_cast<void*>(lr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800870 }
871 instrumentation::InstrumentationStackFrame instrumentation_frame(this_object, method, lr,
Jeff Hao9a916d32013-06-27 18:45:37 -0700872 frame_id, interpreter_entry);
Ian Rogers62d6c772013-02-27 08:32:07 -0800873 stack->push_front(instrumentation_frame);
874
Sebastien Hertz320deb22014-06-11 19:45:05 +0200875 if (!interpreter_entry) {
876 MethodEnterEvent(self, this_object, method, 0);
877 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800878}
879
Andreas Gamped58342c2014-06-05 14:18:08 -0700880TwoWordReturn Instrumentation::PopInstrumentationStackFrame(Thread* self, uintptr_t* return_pc,
881 uint64_t gpr_result,
882 uint64_t fpr_result) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800883 // Do the pop.
884 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack();
885 CHECK_GT(stack->size(), 0U);
886 InstrumentationStackFrame instrumentation_frame = stack->front();
887 stack->pop_front();
888
889 // Set return PC and check the sanity of the stack.
890 *return_pc = instrumentation_frame.return_pc_;
891 CheckStackDepth(self, instrumentation_frame, 0);
892
Brian Carlstromea46f952013-07-30 01:26:50 -0700893 mirror::ArtMethod* method = instrumentation_frame.method_;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700894 uint32_t length;
895 char return_shorty = method->GetShorty(&length)[0];
Ian Rogers62d6c772013-02-27 08:32:07 -0800896 JValue return_value;
897 if (return_shorty == 'V') {
898 return_value.SetJ(0);
899 } else if (return_shorty == 'F' || return_shorty == 'D') {
900 return_value.SetJ(fpr_result);
901 } else {
902 return_value.SetJ(gpr_result);
903 }
904 // TODO: improve the dex pc information here, requires knowledge of current PC as opposed to
905 // return_pc.
906 uint32_t dex_pc = DexFile::kDexNoIndex;
907 mirror::Object* this_object = instrumentation_frame.this_object_;
Sebastien Hertz320deb22014-06-11 19:45:05 +0200908 if (!instrumentation_frame.interpreter_entry_) {
909 MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value);
910 }
jeffhao725a9572012-11-13 18:20:12 -0800911
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100912 // Deoptimize if the caller needs to continue execution in the interpreter. Do nothing if we get
913 // back to an upcall.
914 NthCallerVisitor visitor(self, 1, true);
915 visitor.WalkStack(true);
916 bool deoptimize = (visitor.caller != NULL) &&
917 (interpreter_stubs_installed_ || IsDeoptimized(visitor.caller));
918 if (deoptimize && kVerboseInstrumentation) {
919 LOG(INFO) << "Deoptimizing into " << PrettyMethod(visitor.caller);
Ian Rogers62d6c772013-02-27 08:32:07 -0800920 }
921 if (deoptimize) {
922 if (kVerboseInstrumentation) {
923 LOG(INFO) << "Deoptimizing from " << PrettyMethod(method)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100924 << " result is " << std::hex << return_value.GetJ();
Ian Rogers62d6c772013-02-27 08:32:07 -0800925 }
926 self->SetDeoptimizationReturnValue(return_value);
Andreas Gamped58342c2014-06-05 14:18:08 -0700927 return GetTwoWordSuccessValue(*return_pc,
928 reinterpret_cast<uintptr_t>(GetQuickDeoptimizationEntryPoint()));
Ian Rogers62d6c772013-02-27 08:32:07 -0800929 } else {
930 if (kVerboseInstrumentation) {
Brian Carlstrom2d888622013-07-18 17:02:00 -0700931 LOG(INFO) << "Returning from " << PrettyMethod(method)
932 << " to PC " << reinterpret_cast<void*>(*return_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800933 }
Andreas Gamped58342c2014-06-05 14:18:08 -0700934 return GetTwoWordSuccessValue(0, *return_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800935 }
jeffhao725a9572012-11-13 18:20:12 -0800936}
937
Ian Rogers62d6c772013-02-27 08:32:07 -0800938void Instrumentation::PopMethodForUnwind(Thread* self, bool is_deoptimization) const {
939 // Do the pop.
940 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack();
941 CHECK_GT(stack->size(), 0U);
942 InstrumentationStackFrame instrumentation_frame = stack->front();
943 // TODO: bring back CheckStackDepth(self, instrumentation_frame, 2);
944 stack->pop_front();
945
Brian Carlstromea46f952013-07-30 01:26:50 -0700946 mirror::ArtMethod* method = instrumentation_frame.method_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800947 if (is_deoptimization) {
948 if (kVerboseInstrumentation) {
949 LOG(INFO) << "Popping for deoptimization " << PrettyMethod(method);
950 }
951 } else {
952 if (kVerboseInstrumentation) {
953 LOG(INFO) << "Popping for unwind " << PrettyMethod(method);
954 }
955
956 // Notify listeners of method unwind.
957 // TODO: improve the dex pc information here, requires knowledge of current PC as opposed to
958 // return_pc.
959 uint32_t dex_pc = DexFile::kDexNoIndex;
960 MethodUnwindEvent(self, instrumentation_frame.this_object_, method, dex_pc);
961 }
962}
963
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700964void Instrumentation::VisitRoots(RootCallback* callback, void* arg) {
965 WriterMutexLock mu(Thread::Current(), deoptimized_methods_lock_);
966 if (deoptimized_methods_.empty()) {
967 return;
968 }
969 std::set<mirror::ArtMethod*> new_deoptimized_methods;
970 for (mirror::ArtMethod* method : deoptimized_methods_) {
971 DCHECK(method != nullptr);
972 callback(reinterpret_cast<mirror::Object**>(&method), arg, 0, kRootVMInternal);
973 new_deoptimized_methods.insert(method);
974 }
975 deoptimized_methods_ = new_deoptimized_methods;
976}
977
Ian Rogers62d6c772013-02-27 08:32:07 -0800978std::string InstrumentationStackFrame::Dump() const {
979 std::ostringstream os;
980 os << "Frame " << frame_id_ << " " << PrettyMethod(method_) << ":"
981 << reinterpret_cast<void*>(return_pc_) << " this=" << reinterpret_cast<void*>(this_object_);
982 return os.str();
983}
984
985} // namespace instrumentation
jeffhao725a9572012-11-13 18:20:12 -0800986} // namespace art