blob: 5233462187d4dfdba2f191ae83b696be7fcdeab1 [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),
66 have_exception_caught_listeners_(false),
67 deoptimized_methods_lock_("deoptimized methods lock"),
68 deoptimization_enabled_(false),
69 interpreter_handler_table_(kMainHandlerTable),
70 quick_alloc_entry_points_instrumentation_counter_(0) {
71}
72
Ian Rogers62d6c772013-02-27 08:32:07 -080073bool Instrumentation::InstallStubsForClass(mirror::Class* klass) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +010074 for (size_t i = 0, e = klass->NumDirectMethods(); i < e; i++) {
75 InstallStubsForMethod(klass->GetDirectMethod(i));
jeffhao725a9572012-11-13 18:20:12 -080076 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +010077 for (size_t i = 0, e = klass->NumVirtualMethods(); i < e; i++) {
78 InstallStubsForMethod(klass->GetVirtualMethod(i));
jeffhao725a9572012-11-13 18:20:12 -080079 }
80 return true;
81}
82
Ian Rogersef7d42f2014-01-06 12:55:46 -080083static void UpdateEntrypoints(mirror::ArtMethod* method, const void* quick_code,
84 const void* portable_code, bool have_portable_code)
85 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
86 method->SetEntryPointFromPortableCompiledCode(portable_code);
87 method->SetEntryPointFromQuickCompiledCode(quick_code);
88 bool portable_enabled = method->IsPortableCompiled();
89 if (have_portable_code && !portable_enabled) {
90 method->SetIsPortableCompiled();
91 } else if (portable_enabled) {
92 method->ClearIsPortableCompiled();
93 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +010094 if (!method->IsResolutionMethod()) {
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -080095 if (quick_code == GetQuickToInterpreterBridge() ||
96 (quick_code == GetQuickResolutionTrampoline(Runtime::Current()->GetClassLinker()) &&
97 Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly()
98 && !method->IsNative() && !method->IsProxyMethod())) {
99 if (kIsDebugBuild) {
100 if (quick_code == GetQuickToInterpreterBridge()) {
101 DCHECK(portable_code == GetPortableToInterpreterBridge());
102 } else if (quick_code == GetQuickResolutionTrampoline(Runtime::Current()->GetClassLinker())) {
103 DCHECK(portable_code == GetPortableResolutionTrampoline(Runtime::Current()->GetClassLinker()));
104 }
105 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800106 DCHECK(!method->IsNative()) << PrettyMethod(method);
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -0800107 DCHECK(!method->IsProxyMethod()) << PrettyMethod(method);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100108 method->SetEntryPointFromInterpreter(art::interpreter::artInterpreterToInterpreterBridge);
109 } else {
110 method->SetEntryPointFromInterpreter(art::artInterpreterToCompiledCodeBridge);
111 }
112 }
113}
114
115void Instrumentation::InstallStubsForMethod(mirror::ArtMethod* method) {
116 if (method->IsAbstract() || method->IsProxyMethod()) {
117 // Do not change stubs for these methods.
118 return;
119 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800120 const void* new_portable_code;
121 const void* new_quick_code;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100122 bool uninstall = !entry_exit_stubs_installed_ && !interpreter_stubs_installed_;
123 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
124 bool is_class_initialized = method->GetDeclaringClass()->IsInitialized();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800125 bool have_portable_code = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100126 if (uninstall) {
127 if ((forced_interpret_only_ || IsDeoptimized(method)) && !method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800128 new_portable_code = GetPortableToInterpreterBridge();
129 new_quick_code = GetQuickToInterpreterBridge();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100130 } else if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800131 new_portable_code = class_linker->GetPortableOatCodeFor(method, &have_portable_code);
132 new_quick_code = class_linker->GetQuickOatCodeFor(method);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100133 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800134 new_portable_code = GetPortableResolutionTrampoline(class_linker);
135 new_quick_code = GetQuickResolutionTrampoline(class_linker);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100136 }
137 } else { // !uninstall
138 if ((interpreter_stubs_installed_ || IsDeoptimized(method)) && !method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800139 new_portable_code = GetPortableToInterpreterBridge();
140 new_quick_code = GetQuickToInterpreterBridge();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100141 } else {
142 // Do not overwrite resolution trampoline. When the trampoline initializes the method's
143 // class, all its static methods code will be set to the instrumentation entry point.
144 // For more details, see ClassLinker::FixupStaticTrampolines.
145 if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) {
146 // Do not overwrite interpreter to prevent from posting method entry/exit events twice.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800147 new_portable_code = class_linker->GetPortableOatCodeFor(method, &have_portable_code);
148 new_quick_code = class_linker->GetQuickOatCodeFor(method);
149 if (entry_exit_stubs_installed_ && new_quick_code != GetQuickToInterpreterBridge()) {
150 DCHECK(new_portable_code != GetPortableToInterpreterBridge());
151 new_portable_code = GetPortableToInterpreterBridge();
152 new_quick_code = GetQuickInstrumentationEntryPoint();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100153 }
154 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800155 new_portable_code = GetPortableResolutionTrampoline(class_linker);
156 new_quick_code = GetQuickResolutionTrampoline(class_linker);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100157 }
158 }
159 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800160 UpdateEntrypoints(method, new_quick_code, new_portable_code, have_portable_code);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100161}
162
Ian Rogers62d6c772013-02-27 08:32:07 -0800163// Places the instrumentation exit pc as the return PC for every quick frame. This also allows
164// deoptimization of quick frames to interpreter frames.
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100165// Since we may already have done this previously, we need to push new instrumentation frame before
166// existing instrumentation frames.
Ian Rogers62d6c772013-02-27 08:32:07 -0800167static void InstrumentationInstallStack(Thread* thread, void* arg)
Ian Rogers306057f2012-11-26 12:45:53 -0800168 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
169 struct InstallStackVisitor : public StackVisitor {
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100170 InstallStackVisitor(Thread* thread, Context* context, uintptr_t instrumentation_exit_pc)
Ian Rogers62d6c772013-02-27 08:32:07 -0800171 : StackVisitor(thread, context), instrumentation_stack_(thread->GetInstrumentationStack()),
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100172 existing_instrumentation_frames_count_(instrumentation_stack_->size()),
173 instrumentation_exit_pc_(instrumentation_exit_pc),
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100174 reached_existing_instrumentation_frames_(false), instrumentation_stack_depth_(0),
175 last_return_pc_(0) {
176 }
jeffhao725a9572012-11-13 18:20:12 -0800177
Ian Rogers306057f2012-11-26 12:45:53 -0800178 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700179 mirror::ArtMethod* m = GetMethod();
Ian Rogers306057f2012-11-26 12:45:53 -0800180 if (GetCurrentQuickFrame() == NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800181 if (kVerboseInstrumentation) {
182 LOG(INFO) << " Ignoring a shadow frame. Frame " << GetFrameId()
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100183 << " Method=" << PrettyMethod(m);
Ian Rogers62d6c772013-02-27 08:32:07 -0800184 }
Ian Rogers306057f2012-11-26 12:45:53 -0800185 return true; // Ignore shadow frames.
186 }
Ian Rogers306057f2012-11-26 12:45:53 -0800187 if (m == NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800188 if (kVerboseInstrumentation) {
189 LOG(INFO) << " Skipping upcall. Frame " << GetFrameId();
190 }
191 last_return_pc_ = 0;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700192 return true; // Ignore upcalls.
Ian Rogers306057f2012-11-26 12:45:53 -0800193 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800194 if (m->IsRuntimeMethod()) {
195 if (kVerboseInstrumentation) {
196 LOG(INFO) << " Skipping runtime method. Frame " << GetFrameId();
197 }
198 last_return_pc_ = GetReturnPc();
Ian Rogers306057f2012-11-26 12:45:53 -0800199 return true; // Ignore unresolved methods since they will be instrumented after resolution.
200 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800201 if (kVerboseInstrumentation) {
202 LOG(INFO) << " Installing exit stub in " << DescribeLocation();
203 }
204 uintptr_t return_pc = GetReturnPc();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100205 if (return_pc == instrumentation_exit_pc_) {
206 // We've reached a frame which has already been installed with instrumentation exit stub.
207 // We should have already installed instrumentation on previous frames.
208 reached_existing_instrumentation_frames_ = true;
209
210 CHECK_LT(instrumentation_stack_depth_, instrumentation_stack_->size());
211 const InstrumentationStackFrame& frame = instrumentation_stack_->at(instrumentation_stack_depth_);
212 CHECK_EQ(m, frame.method_) << "Expected " << PrettyMethod(m)
213 << ", Found " << PrettyMethod(frame.method_);
214 return_pc = frame.return_pc_;
215 if (kVerboseInstrumentation) {
216 LOG(INFO) << "Ignoring already instrumented " << frame.Dump();
217 }
218 } else {
219 CHECK_NE(return_pc, 0U);
220 CHECK(!reached_existing_instrumentation_frames_);
221 InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, return_pc, GetFrameId(),
222 false);
223 if (kVerboseInstrumentation) {
224 LOG(INFO) << "Pushing frame " << instrumentation_frame.Dump();
225 }
226
227 // Insert frame before old ones so we do not corrupt the instrumentation stack.
228 auto it = instrumentation_stack_->end() - existing_instrumentation_frames_count_;
229 instrumentation_stack_->insert(it, instrumentation_frame);
230 SetReturnPc(instrumentation_exit_pc_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800231 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800232 dex_pcs_.push_back(m->ToDexPc(last_return_pc_));
Ian Rogers62d6c772013-02-27 08:32:07 -0800233 last_return_pc_ = return_pc;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100234 ++instrumentation_stack_depth_;
Ian Rogers306057f2012-11-26 12:45:53 -0800235 return true; // Continue.
236 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800237 std::deque<InstrumentationStackFrame>* const instrumentation_stack_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100238 const size_t existing_instrumentation_frames_count_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800239 std::vector<uint32_t> dex_pcs_;
Ian Rogers306057f2012-11-26 12:45:53 -0800240 const uintptr_t instrumentation_exit_pc_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100241 bool reached_existing_instrumentation_frames_;
242 size_t instrumentation_stack_depth_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800243 uintptr_t last_return_pc_;
Ian Rogers306057f2012-11-26 12:45:53 -0800244 };
Ian Rogers62d6c772013-02-27 08:32:07 -0800245 if (kVerboseInstrumentation) {
246 std::string thread_name;
247 thread->GetThreadName(thread_name);
248 LOG(INFO) << "Installing exit stubs in " << thread_name;
Ian Rogers306057f2012-11-26 12:45:53 -0800249 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100250
251 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg);
Ian Rogers62d6c772013-02-27 08:32:07 -0800252 UniquePtr<Context> context(Context::Create());
Ian Rogers848871b2013-08-05 10:56:33 -0700253 uintptr_t instrumentation_exit_pc = GetQuickInstrumentationExitPc();
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100254 InstallStackVisitor visitor(thread, context.get(), instrumentation_exit_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800255 visitor.WalkStack(true);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100256 CHECK_EQ(visitor.dex_pcs_.size(), thread->GetInstrumentationStack()->size());
Ian Rogers62d6c772013-02-27 08:32:07 -0800257
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100258 if (instrumentation->ShouldNotifyMethodEnterExitEvents()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100259 // Create method enter events for all methods currently on the thread's stack. We only do this
260 // if no debugger is attached to prevent from posting events twice.
261 typedef std::deque<InstrumentationStackFrame>::const_reverse_iterator It;
262 for (It it = thread->GetInstrumentationStack()->rbegin(),
263 end = thread->GetInstrumentationStack()->rend(); it != end; ++it) {
264 mirror::Object* this_object = (*it).this_object_;
265 mirror::ArtMethod* method = (*it).method_;
266 uint32_t dex_pc = visitor.dex_pcs_.back();
267 visitor.dex_pcs_.pop_back();
268 instrumentation->MethodEnterEvent(thread, this_object, method, dex_pc);
269 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800270 }
271 thread->VerifyStack();
Ian Rogers306057f2012-11-26 12:45:53 -0800272}
273
Ian Rogers62d6c772013-02-27 08:32:07 -0800274// Removes the instrumentation exit pc as the return PC for every quick frame.
275static void InstrumentationRestoreStack(Thread* thread, void* arg)
Ian Rogers306057f2012-11-26 12:45:53 -0800276 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
277 struct RestoreStackVisitor : public StackVisitor {
Ian Rogers62d6c772013-02-27 08:32:07 -0800278 RestoreStackVisitor(Thread* thread, uintptr_t instrumentation_exit_pc,
279 Instrumentation* instrumentation)
280 : StackVisitor(thread, NULL), thread_(thread),
281 instrumentation_exit_pc_(instrumentation_exit_pc),
282 instrumentation_(instrumentation),
283 instrumentation_stack_(thread->GetInstrumentationStack()),
284 frames_removed_(0) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800285
286 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800287 if (instrumentation_stack_->size() == 0) {
jeffhao725a9572012-11-13 18:20:12 -0800288 return false; // Stop.
289 }
Brian Carlstromea46f952013-07-30 01:26:50 -0700290 mirror::ArtMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -0800291 if (GetCurrentQuickFrame() == NULL) {
292 if (kVerboseInstrumentation) {
293 LOG(INFO) << " Ignoring a shadow frame. Frame " << GetFrameId() << " Method=" << PrettyMethod(m);
294 }
295 return true; // Ignore shadow frames.
296 }
Ian Rogers306057f2012-11-26 12:45:53 -0800297 if (m == NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800298 if (kVerboseInstrumentation) {
299 LOG(INFO) << " Skipping upcall. Frame " << GetFrameId();
300 }
Ian Rogers306057f2012-11-26 12:45:53 -0800301 return true; // Ignore upcalls.
302 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800303 bool removed_stub = false;
304 // TODO: make this search more efficient?
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100305 const size_t frameId = GetFrameId();
306 for (const InstrumentationStackFrame& instrumentation_frame : *instrumentation_stack_) {
307 if (instrumentation_frame.frame_id_ == frameId) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800308 if (kVerboseInstrumentation) {
309 LOG(INFO) << " Removing exit stub in " << DescribeLocation();
310 }
Jeff Hao9a916d32013-06-27 18:45:37 -0700311 if (instrumentation_frame.interpreter_entry_) {
312 CHECK(m == Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs));
313 } else {
314 CHECK(m == instrumentation_frame.method_) << PrettyMethod(m);
315 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800316 SetReturnPc(instrumentation_frame.return_pc_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100317 if (instrumentation_->ShouldNotifyMethodEnterExitEvents()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100318 // Create the method exit events. As the methods didn't really exit the result is 0.
319 // We only do this if no debugger is attached to prevent from posting events twice.
320 instrumentation_->MethodExitEvent(thread_, instrumentation_frame.this_object_, m,
321 GetDexPc(), JValue());
322 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800323 frames_removed_++;
324 removed_stub = true;
325 break;
326 }
327 }
328 if (!removed_stub) {
329 if (kVerboseInstrumentation) {
330 LOG(INFO) << " No exit stub in " << DescribeLocation();
Ian Rogers306057f2012-11-26 12:45:53 -0800331 }
jeffhao725a9572012-11-13 18:20:12 -0800332 }
333 return true; // Continue.
334 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800335 Thread* const thread_;
Ian Rogers306057f2012-11-26 12:45:53 -0800336 const uintptr_t instrumentation_exit_pc_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800337 Instrumentation* const instrumentation_;
338 std::deque<instrumentation::InstrumentationStackFrame>* const instrumentation_stack_;
339 size_t frames_removed_;
jeffhao725a9572012-11-13 18:20:12 -0800340 };
Ian Rogers62d6c772013-02-27 08:32:07 -0800341 if (kVerboseInstrumentation) {
342 std::string thread_name;
343 thread->GetThreadName(thread_name);
344 LOG(INFO) << "Removing exit stubs in " << thread_name;
345 }
346 std::deque<instrumentation::InstrumentationStackFrame>* stack = thread->GetInstrumentationStack();
347 if (stack->size() > 0) {
348 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg);
Ian Rogers848871b2013-08-05 10:56:33 -0700349 uintptr_t instrumentation_exit_pc = GetQuickInstrumentationExitPc();
Ian Rogers62d6c772013-02-27 08:32:07 -0800350 RestoreStackVisitor visitor(thread, instrumentation_exit_pc, instrumentation);
351 visitor.WalkStack(true);
352 CHECK_EQ(visitor.frames_removed_, stack->size());
353 while (stack->size() > 0) {
354 stack->pop_front();
355 }
jeffhao725a9572012-11-13 18:20:12 -0800356 }
357}
358
Ian Rogers62d6c772013-02-27 08:32:07 -0800359void Instrumentation::AddListener(InstrumentationListener* listener, uint32_t events) {
360 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Ian Rogers62d6c772013-02-27 08:32:07 -0800361 if ((events & kMethodEntered) != 0) {
362 method_entry_listeners_.push_back(listener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800363 have_method_entry_listeners_ = true;
364 }
365 if ((events & kMethodExited) != 0) {
366 method_exit_listeners_.push_back(listener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800367 have_method_exit_listeners_ = true;
368 }
369 if ((events & kMethodUnwind) != 0) {
370 method_unwind_listeners_.push_back(listener);
371 have_method_unwind_listeners_ = true;
372 }
373 if ((events & kDexPcMoved) != 0) {
374 dex_pc_listeners_.push_back(listener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800375 have_dex_pc_listeners_ = true;
376 }
Jeff Hao14dd5a82013-04-11 10:23:36 -0700377 if ((events & kExceptionCaught) != 0) {
378 exception_caught_listeners_.push_back(listener);
379 have_exception_caught_listeners_ = true;
380 }
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200381 UpdateInterpreterHandlerTable();
jeffhao725a9572012-11-13 18:20:12 -0800382}
383
Ian Rogers62d6c772013-02-27 08:32:07 -0800384void Instrumentation::RemoveListener(InstrumentationListener* listener, uint32_t events) {
385 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
Ian Rogers62d6c772013-02-27 08:32:07 -0800386
387 if ((events & kMethodEntered) != 0) {
388 bool contains = std::find(method_entry_listeners_.begin(), method_entry_listeners_.end(),
389 listener) != method_entry_listeners_.end();
390 if (contains) {
391 method_entry_listeners_.remove(listener);
392 }
393 have_method_entry_listeners_ = method_entry_listeners_.size() > 0;
Ian Rogers62d6c772013-02-27 08:32:07 -0800394 }
395 if ((events & kMethodExited) != 0) {
396 bool contains = std::find(method_exit_listeners_.begin(), method_exit_listeners_.end(),
397 listener) != method_exit_listeners_.end();
398 if (contains) {
399 method_exit_listeners_.remove(listener);
400 }
401 have_method_exit_listeners_ = method_exit_listeners_.size() > 0;
Ian Rogers62d6c772013-02-27 08:32:07 -0800402 }
403 if ((events & kMethodUnwind) != 0) {
404 method_unwind_listeners_.remove(listener);
405 }
406 if ((events & kDexPcMoved) != 0) {
407 bool contains = std::find(dex_pc_listeners_.begin(), dex_pc_listeners_.end(),
408 listener) != dex_pc_listeners_.end();
409 if (contains) {
410 dex_pc_listeners_.remove(listener);
411 }
412 have_dex_pc_listeners_ = dex_pc_listeners_.size() > 0;
Ian Rogers62d6c772013-02-27 08:32:07 -0800413 }
Jeff Hao14dd5a82013-04-11 10:23:36 -0700414 if ((events & kExceptionCaught) != 0) {
415 exception_caught_listeners_.remove(listener);
416 have_exception_caught_listeners_ = exception_caught_listeners_.size() > 0;
417 }
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200418 UpdateInterpreterHandlerTable();
jeffhao725a9572012-11-13 18:20:12 -0800419}
420
Ian Rogers62d6c772013-02-27 08:32:07 -0800421void Instrumentation::ConfigureStubs(bool require_entry_exit_stubs, bool require_interpreter) {
422 interpret_only_ = require_interpreter || forced_interpret_only_;
423 // Compute what level of instrumentation is required and compare to current.
424 int desired_level, current_level;
425 if (require_interpreter) {
426 desired_level = 2;
427 } else if (require_entry_exit_stubs) {
428 desired_level = 1;
429 } else {
430 desired_level = 0;
431 }
432 if (interpreter_stubs_installed_) {
433 current_level = 2;
434 } else if (entry_exit_stubs_installed_) {
435 current_level = 1;
436 } else {
437 current_level = 0;
438 }
439 if (desired_level == current_level) {
440 // We're already set.
441 return;
442 }
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100443 Thread* const self = Thread::Current();
Ian Rogers62d6c772013-02-27 08:32:07 -0800444 Runtime* runtime = Runtime::Current();
445 Locks::thread_list_lock_->AssertNotHeld(self);
446 if (desired_level > 0) {
447 if (require_interpreter) {
448 interpreter_stubs_installed_ = true;
449 } else {
450 CHECK(require_entry_exit_stubs);
451 entry_exit_stubs_installed_ = true;
452 }
453 runtime->GetClassLinker()->VisitClasses(InstallStubsClassVisitor, this);
454 instrumentation_stubs_installed_ = true;
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100455 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800456 runtime->GetThreadList()->ForEach(InstrumentationInstallStack, this);
457 } else {
458 interpreter_stubs_installed_ = false;
459 entry_exit_stubs_installed_ = false;
460 runtime->GetClassLinker()->VisitClasses(InstallStubsClassVisitor, this);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100461 // Restore stack only if there is no method currently deoptimized.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700462 bool empty;
463 {
464 ReaderMutexLock mu(self, deoptimized_methods_lock_);
465 empty = deoptimized_methods_.empty(); // Avoid lock violation.
466 }
467 if (empty) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100468 instrumentation_stubs_installed_ = false;
469 MutexLock mu(self, *Locks::thread_list_lock_);
470 Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this);
471 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800472 }
jeffhao725a9572012-11-13 18:20:12 -0800473}
474
Ian Rogersfa824272013-11-05 16:12:57 -0800475static void ResetQuickAllocEntryPointsForThread(Thread* thread, void* arg) {
476 thread->ResetQuickAllocEntryPointsForThread();
477}
478
Mathieu Chartier661974a2014-01-09 11:23:53 -0800479void Instrumentation::SetEntrypointsInstrumented(bool instrumented) {
480 Runtime* runtime = Runtime::Current();
481 ThreadList* tl = runtime->GetThreadList();
482 if (runtime->IsStarted()) {
483 tl->SuspendAll();
484 }
485 {
486 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
487 SetQuickAllocEntryPointsInstrumented(instrumented);
488 ResetQuickAllocEntryPoints();
489 }
490 if (runtime->IsStarted()) {
491 tl->ResumeAll();
492 }
493}
494
Ian Rogersfa824272013-11-05 16:12:57 -0800495void Instrumentation::InstrumentQuickAllocEntryPoints() {
496 // TODO: the read of quick_alloc_entry_points_instrumentation_counter_ is racey and this code
497 // should be guarded by a lock.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800498 DCHECK_GE(quick_alloc_entry_points_instrumentation_counter_.Load(), 0);
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800499 const bool enable_instrumentation =
Ian Rogersb122a4b2013-11-19 18:00:50 -0800500 quick_alloc_entry_points_instrumentation_counter_.FetchAndAdd(1) == 0;
Ian Rogersfa824272013-11-05 16:12:57 -0800501 if (enable_instrumentation) {
Mathieu Chartier661974a2014-01-09 11:23:53 -0800502 SetEntrypointsInstrumented(true);
Ian Rogersfa824272013-11-05 16:12:57 -0800503 }
504}
505
506void Instrumentation::UninstrumentQuickAllocEntryPoints() {
507 // TODO: the read of quick_alloc_entry_points_instrumentation_counter_ is racey and this code
508 // should be guarded by a lock.
Ian Rogersb122a4b2013-11-19 18:00:50 -0800509 DCHECK_GT(quick_alloc_entry_points_instrumentation_counter_.Load(), 0);
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800510 const bool disable_instrumentation =
Ian Rogersb122a4b2013-11-19 18:00:50 -0800511 quick_alloc_entry_points_instrumentation_counter_.FetchAndSub(1) == 1;
Ian Rogersfa824272013-11-05 16:12:57 -0800512 if (disable_instrumentation) {
Mathieu Chartier661974a2014-01-09 11:23:53 -0800513 SetEntrypointsInstrumented(false);
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800514 }
515}
516
517void Instrumentation::ResetQuickAllocEntryPoints() {
518 Runtime* runtime = Runtime::Current();
519 if (runtime->IsStarted()) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800520 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
521 runtime->GetThreadList()->ForEach(ResetQuickAllocEntryPointsForThread, NULL);
Ian Rogersfa824272013-11-05 16:12:57 -0800522 }
523}
524
Ian Rogersef7d42f2014-01-06 12:55:46 -0800525void Instrumentation::UpdateMethodsCode(mirror::ArtMethod* method, const void* quick_code,
526 const void* portable_code, bool have_portable_code) const {
527 const void* new_portable_code;
528 const void* new_quick_code;
529 bool new_have_portable_code;
Ian Rogers62d6c772013-02-27 08:32:07 -0800530 if (LIKELY(!instrumentation_stubs_installed_)) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800531 new_portable_code = portable_code;
532 new_quick_code = quick_code;
533 new_have_portable_code = have_portable_code;
Jeff Hao65d15d92013-07-16 16:39:33 -0700534 } else {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100535 if ((interpreter_stubs_installed_ || IsDeoptimized(method)) && !method->IsNative()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800536 new_portable_code = GetPortableToInterpreterBridge();
537 new_quick_code = GetQuickToInterpreterBridge();
538 new_have_portable_code = false;
539 } else if (quick_code == GetQuickResolutionTrampoline(Runtime::Current()->GetClassLinker()) ||
540 quick_code == GetQuickToInterpreterBridge()) {
541 DCHECK((portable_code == GetPortableResolutionTrampoline(Runtime::Current()->GetClassLinker())) ||
542 (portable_code == GetPortableToInterpreterBridge()));
543 new_portable_code = portable_code;
544 new_quick_code = quick_code;
545 new_have_portable_code = have_portable_code;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100546 } else if (entry_exit_stubs_installed_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800547 new_quick_code = GetQuickInstrumentationEntryPoint();
548 new_portable_code = GetPortableToInterpreterBridge();
549 new_have_portable_code = false;
Jeff Hao65d15d92013-07-16 16:39:33 -0700550 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800551 new_portable_code = portable_code;
552 new_quick_code = quick_code;
553 new_have_portable_code = have_portable_code;
Jeff Hao65d15d92013-07-16 16:39:33 -0700554 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800555 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800556 UpdateEntrypoints(method, new_quick_code, new_portable_code, new_have_portable_code);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100557}
558
559void Instrumentation::Deoptimize(mirror::ArtMethod* method) {
560 CHECK(!method->IsNative());
561 CHECK(!method->IsProxyMethod());
562 CHECK(!method->IsAbstract());
563
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700564 Thread* self = Thread::Current();
565 std::pair<std::set<mirror::ArtMethod*>::iterator, bool> pair;
566 {
567 WriterMutexLock mu(self, deoptimized_methods_lock_);
568 pair = deoptimized_methods_.insert(method);
569 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100570 bool already_deoptimized = !pair.second;
571 CHECK(!already_deoptimized) << "Method " << PrettyMethod(method) << " is already deoptimized";
572
573 if (!interpreter_stubs_installed_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800574 UpdateEntrypoints(method, GetQuickToInterpreterBridge(), GetPortableToInterpreterBridge(),
575 false);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100576
577 // Install instrumentation exit stub and instrumentation frames. We may already have installed
578 // these previously so it will only cover the newly created frames.
579 instrumentation_stubs_installed_ = true;
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700580 MutexLock mu(self, *Locks::thread_list_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100581 Runtime::Current()->GetThreadList()->ForEach(InstrumentationInstallStack, this);
582 }
583}
584
585void Instrumentation::Undeoptimize(mirror::ArtMethod* method) {
586 CHECK(!method->IsNative());
587 CHECK(!method->IsProxyMethod());
588 CHECK(!method->IsAbstract());
589
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700590 Thread* self = Thread::Current();
591 bool empty;
592 {
593 WriterMutexLock mu(self, deoptimized_methods_lock_);
594 auto it = deoptimized_methods_.find(method);
595 CHECK(it != deoptimized_methods_.end()) << "Method " << PrettyMethod(method)
596 << " is not deoptimized";
597 deoptimized_methods_.erase(it);
598 empty = deoptimized_methods_.empty();
599 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100600
601 // Restore code and possibly stack only if we did not deoptimize everything.
602 if (!interpreter_stubs_installed_) {
603 // Restore its code or resolution trampoline.
604 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800605 if (method->IsStatic() && !method->IsConstructor() &&
606 !method->GetDeclaringClass()->IsInitialized()) {
607 UpdateEntrypoints(method, GetQuickResolutionTrampoline(class_linker),
608 GetPortableResolutionTrampoline(class_linker), false);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100609 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800610 bool have_portable_code = false;
611 const void* quick_code = class_linker->GetQuickOatCodeFor(method);
612 const void* portable_code = class_linker->GetPortableOatCodeFor(method, &have_portable_code);
613 UpdateEntrypoints(method, quick_code, portable_code, have_portable_code);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100614 }
615
616 // If there is no deoptimized method left, we can restore the stack of each thread.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700617 if (empty) {
618 MutexLock mu(self, *Locks::thread_list_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100619 Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this);
620 instrumentation_stubs_installed_ = false;
621 }
622 }
623}
624
625bool Instrumentation::IsDeoptimized(mirror::ArtMethod* method) const {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700626 ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100627 DCHECK(method != nullptr);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700628 return deoptimized_methods_.find(method) != deoptimized_methods_.end();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100629}
630
631void Instrumentation::EnableDeoptimization() {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700632 ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100633 CHECK(deoptimized_methods_.empty());
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100634 CHECK_EQ(deoptimization_enabled_, false);
635 deoptimization_enabled_ = true;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100636}
637
638void Instrumentation::DisableDeoptimization() {
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100639 CHECK_EQ(deoptimization_enabled_, true);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100640 // If we deoptimized everything, undo it.
641 if (interpreter_stubs_installed_) {
642 UndeoptimizeEverything();
643 }
644 // Undeoptimized selected methods.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700645 while (true) {
646 mirror::ArtMethod* method;
647 {
648 ReaderMutexLock mu(Thread::Current(), deoptimized_methods_lock_);
649 if (deoptimized_methods_.empty()) {
650 break;
651 }
652 method = *deoptimized_methods_.begin();
653 }
654 Undeoptimize(method);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100655 }
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100656 deoptimization_enabled_ = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100657}
658
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100659// Indicates if instrumentation should notify method enter/exit events to the listeners.
660bool Instrumentation::ShouldNotifyMethodEnterExitEvents() const {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100661 return !deoptimization_enabled_ && !interpreter_stubs_installed_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100662}
663
664void Instrumentation::DeoptimizeEverything() {
665 CHECK(!interpreter_stubs_installed_);
666 ConfigureStubs(false, true);
667}
668
669void Instrumentation::UndeoptimizeEverything() {
670 CHECK(interpreter_stubs_installed_);
671 ConfigureStubs(false, false);
672}
673
674void Instrumentation::EnableMethodTracing() {
675 bool require_interpreter = kDeoptimizeForAccurateMethodEntryExitListeners;
676 ConfigureStubs(!require_interpreter, require_interpreter);
677}
678
679void Instrumentation::DisableMethodTracing() {
680 ConfigureStubs(false, false);
jeffhao725a9572012-11-13 18:20:12 -0800681}
682
Ian Rogersef7d42f2014-01-06 12:55:46 -0800683const void* Instrumentation::GetQuickCodeFor(mirror::ArtMethod* method) const {
Ian Rogers62d6c772013-02-27 08:32:07 -0800684 Runtime* runtime = Runtime::Current();
685 if (LIKELY(!instrumentation_stubs_installed_)) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800686 const void* code = method->GetEntryPointFromQuickCompiledCode();
Ian Rogers62d6c772013-02-27 08:32:07 -0800687 DCHECK(code != NULL);
Ian Rogers848871b2013-08-05 10:56:33 -0700688 if (LIKELY(code != GetQuickResolutionTrampoline(runtime->GetClassLinker()) &&
689 code != GetQuickToInterpreterBridge())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800690 return code;
691 }
692 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800693 return runtime->GetClassLinker()->GetQuickOatCodeFor(method);
jeffhao725a9572012-11-13 18:20:12 -0800694}
695
Ian Rogers62d6c772013-02-27 08:32:07 -0800696void Instrumentation::MethodEnterEventImpl(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800697 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800698 uint32_t dex_pc) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700699 auto it = method_entry_listeners_.begin();
Jeff Hao65d15d92013-07-16 16:39:33 -0700700 bool is_end = (it == method_entry_listeners_.end());
701 // Implemented this way to prevent problems caused by modification of the list while iterating.
702 while (!is_end) {
703 InstrumentationListener* cur = *it;
704 ++it;
705 is_end = (it == method_entry_listeners_.end());
706 cur->MethodEntered(thread, this_object, method, dex_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800707 }
708}
709
710void Instrumentation::MethodExitEventImpl(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800711 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800712 uint32_t dex_pc, const JValue& return_value) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700713 auto it = method_exit_listeners_.begin();
Jeff Hao65d15d92013-07-16 16:39:33 -0700714 bool is_end = (it == method_exit_listeners_.end());
715 // Implemented this way to prevent problems caused by modification of the list while iterating.
716 while (!is_end) {
717 InstrumentationListener* cur = *it;
718 ++it;
719 is_end = (it == method_exit_listeners_.end());
720 cur->MethodExited(thread, this_object, method, dex_pc, return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800721 }
722}
723
724void Instrumentation::MethodUnwindEvent(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800725 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800726 uint32_t dex_pc) const {
727 if (have_method_unwind_listeners_) {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700728 for (InstrumentationListener* listener : method_unwind_listeners_) {
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100729 listener->MethodUnwind(thread, this_object, method, dex_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800730 }
731 }
732}
733
734void Instrumentation::DexPcMovedEventImpl(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800735 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800736 uint32_t dex_pc) const {
737 // TODO: STL copy-on-write collection? The copy below is due to the debug listener having an
738 // action where it can remove itself as a listener and break the iterator. The copy only works
739 // around the problem and in general we may have to move to something like reference counting to
740 // ensure listeners are deleted correctly.
741 std::list<InstrumentationListener*> copy(dex_pc_listeners_);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700742 for (InstrumentationListener* listener : copy) {
743 listener->DexPcMoved(thread, this_object, method, dex_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800744 }
745}
746
747void Instrumentation::ExceptionCaughtEvent(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -0700748 mirror::ArtMethod* catch_method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800749 uint32_t catch_dex_pc,
Sebastien Hertz947ff082013-09-17 14:10:13 +0200750 mirror::Throwable* exception_object) const {
Ian Rogers62d6c772013-02-27 08:32:07 -0800751 if (have_exception_caught_listeners_) {
Jeff Haoc0bd4da2013-04-11 15:52:28 -0700752 DCHECK_EQ(thread->GetException(NULL), exception_object);
753 thread->ClearException();
Mathieu Chartier02e25112013-08-14 16:14:24 -0700754 for (InstrumentationListener* listener : exception_caught_listeners_) {
755 listener->ExceptionCaught(thread, throw_location, catch_method, catch_dex_pc, exception_object);
Ian Rogers62d6c772013-02-27 08:32:07 -0800756 }
Jeff Haoc0bd4da2013-04-11 15:52:28 -0700757 thread->SetException(throw_location, exception_object);
Ian Rogers62d6c772013-02-27 08:32:07 -0800758 }
759}
760
761static void CheckStackDepth(Thread* self, const InstrumentationStackFrame& instrumentation_frame,
762 int delta)
763 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
764 size_t frame_id = StackVisitor::ComputeNumFrames(self) + delta;
765 if (frame_id != instrumentation_frame.frame_id_) {
766 LOG(ERROR) << "Expected frame_id=" << frame_id << " but found "
767 << instrumentation_frame.frame_id_;
768 StackVisitor::DescribeStack(self);
769 CHECK_EQ(frame_id, instrumentation_frame.frame_id_);
770 }
771}
772
773void Instrumentation::PushInstrumentationStackFrame(Thread* self, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700774 mirror::ArtMethod* method,
Jeff Hao9a916d32013-06-27 18:45:37 -0700775 uintptr_t lr, bool interpreter_entry) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800776 // We have a callee-save frame meaning this value is guaranteed to never be 0.
777 size_t frame_id = StackVisitor::ComputeNumFrames(self);
778 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack();
779 if (kVerboseInstrumentation) {
Brian Carlstrom2d888622013-07-18 17:02:00 -0700780 LOG(INFO) << "Entering " << PrettyMethod(method) << " from PC " << reinterpret_cast<void*>(lr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800781 }
782 instrumentation::InstrumentationStackFrame instrumentation_frame(this_object, method, lr,
Jeff Hao9a916d32013-06-27 18:45:37 -0700783 frame_id, interpreter_entry);
Ian Rogers62d6c772013-02-27 08:32:07 -0800784 stack->push_front(instrumentation_frame);
785
786 MethodEnterEvent(self, this_object, method, 0);
787}
788
789uint64_t Instrumentation::PopInstrumentationStackFrame(Thread* self, uintptr_t* return_pc,
790 uint64_t gpr_result, uint64_t fpr_result) {
791 // Do the pop.
792 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack();
793 CHECK_GT(stack->size(), 0U);
794 InstrumentationStackFrame instrumentation_frame = stack->front();
795 stack->pop_front();
796
797 // Set return PC and check the sanity of the stack.
798 *return_pc = instrumentation_frame.return_pc_;
799 CheckStackDepth(self, instrumentation_frame, 0);
800
Brian Carlstromea46f952013-07-30 01:26:50 -0700801 mirror::ArtMethod* method = instrumentation_frame.method_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800802 char return_shorty = MethodHelper(method).GetShorty()[0];
803 JValue return_value;
804 if (return_shorty == 'V') {
805 return_value.SetJ(0);
806 } else if (return_shorty == 'F' || return_shorty == 'D') {
807 return_value.SetJ(fpr_result);
808 } else {
809 return_value.SetJ(gpr_result);
810 }
811 // TODO: improve the dex pc information here, requires knowledge of current PC as opposed to
812 // return_pc.
813 uint32_t dex_pc = DexFile::kDexNoIndex;
814 mirror::Object* this_object = instrumentation_frame.this_object_;
815 MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value);
jeffhao725a9572012-11-13 18:20:12 -0800816
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100817 // Deoptimize if the caller needs to continue execution in the interpreter. Do nothing if we get
818 // back to an upcall.
819 NthCallerVisitor visitor(self, 1, true);
820 visitor.WalkStack(true);
821 bool deoptimize = (visitor.caller != NULL) &&
822 (interpreter_stubs_installed_ || IsDeoptimized(visitor.caller));
823 if (deoptimize && kVerboseInstrumentation) {
824 LOG(INFO) << "Deoptimizing into " << PrettyMethod(visitor.caller);
Ian Rogers62d6c772013-02-27 08:32:07 -0800825 }
826 if (deoptimize) {
827 if (kVerboseInstrumentation) {
828 LOG(INFO) << "Deoptimizing from " << PrettyMethod(method)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100829 << " result is " << std::hex << return_value.GetJ();
Ian Rogers62d6c772013-02-27 08:32:07 -0800830 }
831 self->SetDeoptimizationReturnValue(return_value);
Ian Rogers848871b2013-08-05 10:56:33 -0700832 return static_cast<uint64_t>(GetQuickDeoptimizationEntryPoint()) |
Ian Rogers62d6c772013-02-27 08:32:07 -0800833 (static_cast<uint64_t>(*return_pc) << 32);
834 } else {
835 if (kVerboseInstrumentation) {
Brian Carlstrom2d888622013-07-18 17:02:00 -0700836 LOG(INFO) << "Returning from " << PrettyMethod(method)
837 << " to PC " << reinterpret_cast<void*>(*return_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800838 }
839 return *return_pc;
840 }
jeffhao725a9572012-11-13 18:20:12 -0800841}
842
Ian Rogers62d6c772013-02-27 08:32:07 -0800843void Instrumentation::PopMethodForUnwind(Thread* self, bool is_deoptimization) const {
844 // Do the pop.
845 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack();
846 CHECK_GT(stack->size(), 0U);
847 InstrumentationStackFrame instrumentation_frame = stack->front();
848 // TODO: bring back CheckStackDepth(self, instrumentation_frame, 2);
849 stack->pop_front();
850
Brian Carlstromea46f952013-07-30 01:26:50 -0700851 mirror::ArtMethod* method = instrumentation_frame.method_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800852 if (is_deoptimization) {
853 if (kVerboseInstrumentation) {
854 LOG(INFO) << "Popping for deoptimization " << PrettyMethod(method);
855 }
856 } else {
857 if (kVerboseInstrumentation) {
858 LOG(INFO) << "Popping for unwind " << PrettyMethod(method);
859 }
860
861 // Notify listeners of method unwind.
862 // TODO: improve the dex pc information here, requires knowledge of current PC as opposed to
863 // return_pc.
864 uint32_t dex_pc = DexFile::kDexNoIndex;
865 MethodUnwindEvent(self, instrumentation_frame.this_object_, method, dex_pc);
866 }
867}
868
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700869void Instrumentation::VisitRoots(RootCallback* callback, void* arg) {
870 WriterMutexLock mu(Thread::Current(), deoptimized_methods_lock_);
871 if (deoptimized_methods_.empty()) {
872 return;
873 }
874 std::set<mirror::ArtMethod*> new_deoptimized_methods;
875 for (mirror::ArtMethod* method : deoptimized_methods_) {
876 DCHECK(method != nullptr);
877 callback(reinterpret_cast<mirror::Object**>(&method), arg, 0, kRootVMInternal);
878 new_deoptimized_methods.insert(method);
879 }
880 deoptimized_methods_ = new_deoptimized_methods;
881}
882
Ian Rogers62d6c772013-02-27 08:32:07 -0800883std::string InstrumentationStackFrame::Dump() const {
884 std::ostringstream os;
885 os << "Frame " << frame_id_ << " " << PrettyMethod(method_) << ":"
886 << reinterpret_cast<void*>(return_pc_) << " this=" << reinterpret_cast<void*>(this_object_);
887 return os.str();
888}
889
890} // namespace instrumentation
jeffhao725a9572012-11-13 18:20:12 -0800891} // namespace art