blob: bbd205227d049e8260321ac96485e6704aac0efa [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 Rogers62d6c772013-02-27 08:32:07 -080021#include "atomic_integer.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"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "mirror/class-inl.h"
27#include "mirror/dex_cache.h"
28#include "mirror/abstract_method-inl.h"
29#include "mirror/object_array-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070030#include "mirror/object-inl.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080031#include "nth_caller_visitor.h"
Ian Rogersc928de92013-02-27 14:30:44 -080032#if !defined(ART_USE_PORTABLE_COMPILER)
jeffhao725a9572012-11-13 18:20:12 -080033#include "oat/runtime/oat_support_entrypoints.h"
34#endif
35#include "object_utils.h"
36#include "os.h"
37#include "scoped_thread_state_change.h"
38#include "thread.h"
39#include "thread_list.h"
jeffhao725a9572012-11-13 18:20:12 -080040
41namespace art {
Ian Rogers62d6c772013-02-27 08:32:07 -080042namespace instrumentation {
jeffhao725a9572012-11-13 18:20:12 -080043
Ian Rogers62d6c772013-02-27 08:32:07 -080044static bool InstallStubsClassVisitor(mirror::Class* klass, void* arg)
jeffhao725a9572012-11-13 18:20:12 -080045 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -080046 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg);
47 return instrumentation->InstallStubsForClass(klass);
48}
49
50bool Instrumentation::InstallStubsForClass(mirror::Class* klass) {
51 bool uninstall = !entry_exit_stubs_installed_ && !interpreter_stubs_installed_;
52 ClassLinker* class_linker = NULL;
53 if (uninstall) {
54 class_linker = Runtime::Current()->GetClassLinker();
55 }
56 bool is_initialized = klass->IsInitialized();
jeffhao725a9572012-11-13 18:20:12 -080057 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080058 mirror::AbstractMethod* method = klass->GetDirectMethod(i);
Ian Rogers62d6c772013-02-27 08:32:07 -080059 if (!method->IsAbstract()) {
60 const void* new_code;
61 if (uninstall) {
62 if (is_initialized || !method->IsStatic() || method->IsConstructor()) {
63 new_code = class_linker->GetOatCodeFor(method);
64 } else {
Jeff Hao0aba0ba2013-06-03 14:49:28 -070065 new_code = GetResolutionTrampoline(class_linker);
Ian Rogers62d6c772013-02-27 08:32:07 -080066 }
67 } else { // !uninstall
68 if (!interpreter_stubs_installed_ || method->IsNative()) {
69 new_code = GetInstrumentationEntryPoint();
70 } else {
71 new_code = GetInterpreterEntryPoint();
72 }
73 }
Jeff Haoaa4a7932013-05-13 11:28:27 -070074 method->SetEntryPointFromCompiledCode(new_code);
jeffhao725a9572012-11-13 18:20:12 -080075 }
76 }
jeffhao725a9572012-11-13 18:20:12 -080077 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080078 mirror::AbstractMethod* method = klass->GetVirtualMethod(i);
Ian Rogers62d6c772013-02-27 08:32:07 -080079 if (!method->IsAbstract()) {
80 const void* new_code;
81 if (uninstall) {
82 new_code = class_linker->GetOatCodeFor(method);
83 } else { // !uninstall
84 if (!interpreter_stubs_installed_ || method->IsNative()) {
85 new_code = GetInstrumentationEntryPoint();
86 } else {
87 new_code = GetInterpreterEntryPoint();
88 }
89 }
Jeff Haoaa4a7932013-05-13 11:28:27 -070090 method->SetEntryPointFromCompiledCode(new_code);
jeffhao725a9572012-11-13 18:20:12 -080091 }
92 }
93 return true;
94}
95
Ian Rogers62d6c772013-02-27 08:32:07 -080096// Places the instrumentation exit pc as the return PC for every quick frame. This also allows
97// deoptimization of quick frames to interpreter frames.
98static void InstrumentationInstallStack(Thread* thread, void* arg)
Ian Rogers306057f2012-11-26 12:45:53 -080099 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
100 struct InstallStackVisitor : public StackVisitor {
Ian Rogers62d6c772013-02-27 08:32:07 -0800101 InstallStackVisitor(Thread* thread, Context* context, uintptr_t instrumentation_exit_pc)
102 : StackVisitor(thread, context), instrumentation_stack_(thread->GetInstrumentationStack()),
103 instrumentation_exit_pc_(instrumentation_exit_pc), last_return_pc_(0) {}
jeffhao725a9572012-11-13 18:20:12 -0800104
Ian Rogers306057f2012-11-26 12:45:53 -0800105 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800106 mirror::AbstractMethod* m = GetMethod();
Ian Rogers306057f2012-11-26 12:45:53 -0800107 if (GetCurrentQuickFrame() == NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800108 if (kVerboseInstrumentation) {
109 LOG(INFO) << " Ignoring a shadow frame. Frame " << GetFrameId()
110 << " Method=" << PrettyMethod(m);
111 }
Ian Rogers306057f2012-11-26 12:45:53 -0800112 return true; // Ignore shadow frames.
113 }
Ian Rogers306057f2012-11-26 12:45:53 -0800114 if (m == NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800115 if (kVerboseInstrumentation) {
116 LOG(INFO) << " Skipping upcall. Frame " << GetFrameId();
117 }
118 last_return_pc_ = 0;
Ian Rogers306057f2012-11-26 12:45:53 -0800119 return true; // Ignore upcalls.
120 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800121 if (m->IsRuntimeMethod()) {
122 if (kVerboseInstrumentation) {
123 LOG(INFO) << " Skipping runtime method. Frame " << GetFrameId();
124 }
125 last_return_pc_ = GetReturnPc();
Ian Rogers306057f2012-11-26 12:45:53 -0800126 return true; // Ignore unresolved methods since they will be instrumented after resolution.
127 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800128 if (kVerboseInstrumentation) {
129 LOG(INFO) << " Installing exit stub in " << DescribeLocation();
130 }
131 uintptr_t return_pc = GetReturnPc();
132 CHECK_NE(return_pc, instrumentation_exit_pc_);
133 CHECK_NE(return_pc, 0U);
Jeff Hao9a916d32013-06-27 18:45:37 -0700134 InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, return_pc, GetFrameId(),
135 false);
Ian Rogers62d6c772013-02-27 08:32:07 -0800136 if (kVerboseInstrumentation) {
137 LOG(INFO) << "Pushing frame " << instrumentation_frame.Dump();
138 }
139 instrumentation_stack_->push_back(instrumentation_frame);
140 dex_pcs_.push_back(m->ToDexPc(last_return_pc_));
Ian Rogers306057f2012-11-26 12:45:53 -0800141 SetReturnPc(instrumentation_exit_pc_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800142 last_return_pc_ = return_pc;
Ian Rogers306057f2012-11-26 12:45:53 -0800143 return true; // Continue.
144 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800145 std::deque<InstrumentationStackFrame>* const instrumentation_stack_;
146 std::vector<uint32_t> dex_pcs_;
Ian Rogers306057f2012-11-26 12:45:53 -0800147 const uintptr_t instrumentation_exit_pc_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800148 uintptr_t last_return_pc_;
Ian Rogers306057f2012-11-26 12:45:53 -0800149 };
Ian Rogers62d6c772013-02-27 08:32:07 -0800150 if (kVerboseInstrumentation) {
151 std::string thread_name;
152 thread->GetThreadName(thread_name);
153 LOG(INFO) << "Installing exit stubs in " << thread_name;
Ian Rogers306057f2012-11-26 12:45:53 -0800154 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800155 UniquePtr<Context> context(Context::Create());
156 uintptr_t instrumentation_exit_pc = GetInstrumentationExitPc();
157 InstallStackVisitor visitor(thread, context.get(), instrumentation_exit_pc);
158 visitor.WalkStack(true);
159
160 // Create method enter events for all methods current on the thread's stack.
161 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg);
162 typedef std::deque<InstrumentationStackFrame>::const_reverse_iterator It;
163 for (It it = thread->GetInstrumentationStack()->rbegin(),
164 end = thread->GetInstrumentationStack()->rend(); it != end; ++it) {
165 mirror::Object* this_object = (*it).this_object_;
166 mirror::AbstractMethod* method = (*it).method_;
167 uint32_t dex_pc = visitor.dex_pcs_.back();
168 visitor.dex_pcs_.pop_back();
169 instrumentation->MethodEnterEvent(thread, this_object, method, dex_pc);
170 }
171 thread->VerifyStack();
Ian Rogers306057f2012-11-26 12:45:53 -0800172}
173
Ian Rogers62d6c772013-02-27 08:32:07 -0800174// Removes the instrumentation exit pc as the return PC for every quick frame.
175static void InstrumentationRestoreStack(Thread* thread, void* arg)
Ian Rogers306057f2012-11-26 12:45:53 -0800176 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
177 struct RestoreStackVisitor : public StackVisitor {
Ian Rogers62d6c772013-02-27 08:32:07 -0800178 RestoreStackVisitor(Thread* thread, uintptr_t instrumentation_exit_pc,
179 Instrumentation* instrumentation)
180 : StackVisitor(thread, NULL), thread_(thread),
181 instrumentation_exit_pc_(instrumentation_exit_pc),
182 instrumentation_(instrumentation),
183 instrumentation_stack_(thread->GetInstrumentationStack()),
184 frames_removed_(0) {}
Ian Rogers306057f2012-11-26 12:45:53 -0800185
186 virtual bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800187 if (instrumentation_stack_->size() == 0) {
jeffhao725a9572012-11-13 18:20:12 -0800188 return false; // Stop.
189 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800190 mirror::AbstractMethod* m = GetMethod();
Ian Rogers62d6c772013-02-27 08:32:07 -0800191 if (GetCurrentQuickFrame() == NULL) {
192 if (kVerboseInstrumentation) {
193 LOG(INFO) << " Ignoring a shadow frame. Frame " << GetFrameId() << " Method=" << PrettyMethod(m);
194 }
195 return true; // Ignore shadow frames.
196 }
Ian Rogers306057f2012-11-26 12:45:53 -0800197 if (m == NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800198 if (kVerboseInstrumentation) {
199 LOG(INFO) << " Skipping upcall. Frame " << GetFrameId();
200 }
Ian Rogers306057f2012-11-26 12:45:53 -0800201 return true; // Ignore upcalls.
202 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800203 typedef std::deque<instrumentation::InstrumentationStackFrame>::const_iterator It; // TODO: C++0x auto
204 bool removed_stub = false;
205 // TODO: make this search more efficient?
206 for (It it = instrumentation_stack_->begin(), end = instrumentation_stack_->end(); it != end;
207 ++it) {
208 InstrumentationStackFrame instrumentation_frame = *it;
209 if (instrumentation_frame.frame_id_ == GetFrameId()) {
210 if (kVerboseInstrumentation) {
211 LOG(INFO) << " Removing exit stub in " << DescribeLocation();
212 }
Jeff Hao9a916d32013-06-27 18:45:37 -0700213 if (instrumentation_frame.interpreter_entry_) {
214 CHECK(m == Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs));
215 } else {
216 CHECK(m == instrumentation_frame.method_) << PrettyMethod(m);
217 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800218 SetReturnPc(instrumentation_frame.return_pc_);
219 // Create the method exit events. As the methods didn't really exit the result is 0.
220 instrumentation_->MethodExitEvent(thread_, instrumentation_frame.this_object_, m,
221 GetDexPc(), JValue());
222 frames_removed_++;
223 removed_stub = true;
224 break;
225 }
226 }
227 if (!removed_stub) {
228 if (kVerboseInstrumentation) {
229 LOG(INFO) << " No exit stub in " << DescribeLocation();
Ian Rogers306057f2012-11-26 12:45:53 -0800230 }
jeffhao725a9572012-11-13 18:20:12 -0800231 }
232 return true; // Continue.
233 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800234 Thread* const thread_;
Ian Rogers306057f2012-11-26 12:45:53 -0800235 const uintptr_t instrumentation_exit_pc_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800236 Instrumentation* const instrumentation_;
237 std::deque<instrumentation::InstrumentationStackFrame>* const instrumentation_stack_;
238 size_t frames_removed_;
jeffhao725a9572012-11-13 18:20:12 -0800239 };
Ian Rogers62d6c772013-02-27 08:32:07 -0800240 if (kVerboseInstrumentation) {
241 std::string thread_name;
242 thread->GetThreadName(thread_name);
243 LOG(INFO) << "Removing exit stubs in " << thread_name;
244 }
245 std::deque<instrumentation::InstrumentationStackFrame>* stack = thread->GetInstrumentationStack();
246 if (stack->size() > 0) {
247 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg);
248 uintptr_t instrumentation_exit_pc = GetInstrumentationExitPc();
249 RestoreStackVisitor visitor(thread, instrumentation_exit_pc, instrumentation);
250 visitor.WalkStack(true);
251 CHECK_EQ(visitor.frames_removed_, stack->size());
252 while (stack->size() > 0) {
253 stack->pop_front();
254 }
jeffhao725a9572012-11-13 18:20:12 -0800255 }
256}
257
Ian Rogers62d6c772013-02-27 08:32:07 -0800258void Instrumentation::AddListener(InstrumentationListener* listener, uint32_t events) {
259 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
260 bool require_entry_exit_stubs = false;
261 bool require_interpreter = false;
262 if ((events & kMethodEntered) != 0) {
263 method_entry_listeners_.push_back(listener);
264 require_entry_exit_stubs = true;
265 have_method_entry_listeners_ = true;
266 }
267 if ((events & kMethodExited) != 0) {
268 method_exit_listeners_.push_back(listener);
269 require_entry_exit_stubs = true;
270 have_method_exit_listeners_ = true;
271 }
272 if ((events & kMethodUnwind) != 0) {
273 method_unwind_listeners_.push_back(listener);
274 have_method_unwind_listeners_ = true;
275 }
276 if ((events & kDexPcMoved) != 0) {
277 dex_pc_listeners_.push_back(listener);
278 require_interpreter = true;
279 have_dex_pc_listeners_ = true;
280 }
Jeff Hao14dd5a82013-04-11 10:23:36 -0700281 if ((events & kExceptionCaught) != 0) {
282 exception_caught_listeners_.push_back(listener);
283 have_exception_caught_listeners_ = true;
284 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800285 ConfigureStubs(require_entry_exit_stubs, require_interpreter);
jeffhao725a9572012-11-13 18:20:12 -0800286}
287
Ian Rogers62d6c772013-02-27 08:32:07 -0800288void Instrumentation::RemoveListener(InstrumentationListener* listener, uint32_t events) {
289 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
290 bool require_entry_exit_stubs = false;
291 bool require_interpreter = false;
292
293 if ((events & kMethodEntered) != 0) {
294 bool contains = std::find(method_entry_listeners_.begin(), method_entry_listeners_.end(),
295 listener) != method_entry_listeners_.end();
296 if (contains) {
297 method_entry_listeners_.remove(listener);
298 }
299 have_method_entry_listeners_ = method_entry_listeners_.size() > 0;
300 require_entry_exit_stubs |= have_method_entry_listeners_;
301 }
302 if ((events & kMethodExited) != 0) {
303 bool contains = std::find(method_exit_listeners_.begin(), method_exit_listeners_.end(),
304 listener) != method_exit_listeners_.end();
305 if (contains) {
306 method_exit_listeners_.remove(listener);
307 }
308 have_method_exit_listeners_ = method_exit_listeners_.size() > 0;
309 require_entry_exit_stubs |= have_method_exit_listeners_;
310 }
311 if ((events & kMethodUnwind) != 0) {
312 method_unwind_listeners_.remove(listener);
313 }
314 if ((events & kDexPcMoved) != 0) {
315 bool contains = std::find(dex_pc_listeners_.begin(), dex_pc_listeners_.end(),
316 listener) != dex_pc_listeners_.end();
317 if (contains) {
318 dex_pc_listeners_.remove(listener);
319 }
320 have_dex_pc_listeners_ = dex_pc_listeners_.size() > 0;
321 require_interpreter |= have_dex_pc_listeners_;
322 }
Jeff Hao14dd5a82013-04-11 10:23:36 -0700323 if ((events & kExceptionCaught) != 0) {
324 exception_caught_listeners_.remove(listener);
325 have_exception_caught_listeners_ = exception_caught_listeners_.size() > 0;
326 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800327 ConfigureStubs(require_entry_exit_stubs, require_interpreter);
jeffhao725a9572012-11-13 18:20:12 -0800328}
329
Ian Rogers62d6c772013-02-27 08:32:07 -0800330void Instrumentation::ConfigureStubs(bool require_entry_exit_stubs, bool require_interpreter) {
331 interpret_only_ = require_interpreter || forced_interpret_only_;
332 // Compute what level of instrumentation is required and compare to current.
333 int desired_level, current_level;
334 if (require_interpreter) {
335 desired_level = 2;
336 } else if (require_entry_exit_stubs) {
337 desired_level = 1;
338 } else {
339 desired_level = 0;
340 }
341 if (interpreter_stubs_installed_) {
342 current_level = 2;
343 } else if (entry_exit_stubs_installed_) {
344 current_level = 1;
345 } else {
346 current_level = 0;
347 }
348 if (desired_level == current_level) {
349 // We're already set.
350 return;
351 }
352 Thread* self = Thread::Current();
353 Runtime* runtime = Runtime::Current();
354 Locks::thread_list_lock_->AssertNotHeld(self);
355 if (desired_level > 0) {
356 if (require_interpreter) {
357 interpreter_stubs_installed_ = true;
358 } else {
359 CHECK(require_entry_exit_stubs);
360 entry_exit_stubs_installed_ = true;
361 }
362 runtime->GetClassLinker()->VisitClasses(InstallStubsClassVisitor, this);
363 instrumentation_stubs_installed_ = true;
364 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
365 runtime->GetThreadList()->ForEach(InstrumentationInstallStack, this);
366 } else {
367 interpreter_stubs_installed_ = false;
368 entry_exit_stubs_installed_ = false;
369 runtime->GetClassLinker()->VisitClasses(InstallStubsClassVisitor, this);
370 instrumentation_stubs_installed_ = false;
371 MutexLock mu(self, *Locks::thread_list_lock_);
372 Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this);
373 }
jeffhao725a9572012-11-13 18:20:12 -0800374}
375
Ian Rogers62d6c772013-02-27 08:32:07 -0800376void Instrumentation::UpdateMethodsCode(mirror::AbstractMethod* method, const void* code) const {
377 if (LIKELY(!instrumentation_stubs_installed_)) {
Jeff Haoaa4a7932013-05-13 11:28:27 -0700378 method->SetEntryPointFromCompiledCode(code);
Ian Rogers62d6c772013-02-27 08:32:07 -0800379 }
jeffhao725a9572012-11-13 18:20:12 -0800380}
381
Ian Rogers62d6c772013-02-27 08:32:07 -0800382const void* Instrumentation::GetQuickCodeFor(const mirror::AbstractMethod* method) const {
383 Runtime* runtime = Runtime::Current();
384 if (LIKELY(!instrumentation_stubs_installed_)) {
Jeff Haoaa4a7932013-05-13 11:28:27 -0700385 const void* code = method->GetEntryPointFromCompiledCode();
Ian Rogers62d6c772013-02-27 08:32:07 -0800386 DCHECK(code != NULL);
Jeff Haof3e861d2013-07-03 15:42:17 -0700387 if (LIKELY(code != GetResolutionTrampoline(runtime->GetClassLinker()) &&
388 code != GetInterpreterEntryPoint())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800389 return code;
390 }
391 }
392 return runtime->GetClassLinker()->GetOatCodeFor(method);
jeffhao725a9572012-11-13 18:20:12 -0800393}
394
Ian Rogers62d6c772013-02-27 08:32:07 -0800395void Instrumentation::MethodEnterEventImpl(Thread* thread, mirror::Object* this_object,
396 const mirror::AbstractMethod* method,
397 uint32_t dex_pc) const {
398 typedef std::list<InstrumentationListener*>::const_iterator It; // TODO: C++0x auto
399 for (It it = method_entry_listeners_.begin(), end = method_entry_listeners_.end(); it != end;
400 ++it) {
401 (*it)->MethodEntered(thread, this_object, method, dex_pc);
402 }
403}
404
405void Instrumentation::MethodExitEventImpl(Thread* thread, mirror::Object* this_object,
406 const mirror::AbstractMethod* method,
407 uint32_t dex_pc, const JValue& return_value) const {
408 typedef std::list<InstrumentationListener*>::const_iterator It; // TODO: C++0x auto
409 for (It it = method_exit_listeners_.begin(), end = method_exit_listeners_.end(); it != end;
410 ++it) {
411 (*it)->MethodExited(thread, this_object, method, dex_pc, return_value);
412 }
413}
414
415void Instrumentation::MethodUnwindEvent(Thread* thread, mirror::Object* this_object,
416 const mirror::AbstractMethod* method,
417 uint32_t dex_pc) const {
418 if (have_method_unwind_listeners_) {
419 typedef std::list<InstrumentationListener*>::const_iterator It; // TODO: C++0x auto
420 for (It it = method_unwind_listeners_.begin(), end = method_unwind_listeners_.end(); it != end;
421 ++it) {
422 (*it)->MethodUnwind(thread, method, dex_pc);
423 }
424 }
425}
426
427void Instrumentation::DexPcMovedEventImpl(Thread* thread, mirror::Object* this_object,
428 const mirror::AbstractMethod* method,
429 uint32_t dex_pc) const {
430 // TODO: STL copy-on-write collection? The copy below is due to the debug listener having an
431 // action where it can remove itself as a listener and break the iterator. The copy only works
432 // around the problem and in general we may have to move to something like reference counting to
433 // ensure listeners are deleted correctly.
434 std::list<InstrumentationListener*> copy(dex_pc_listeners_);
435 typedef std::list<InstrumentationListener*>::const_iterator It; // TODO: C++0x auto
436 for (It it = copy.begin(), end = copy.end(); it != end; ++it) {
437 (*it)->DexPcMoved(thread, this_object, method, dex_pc);
438 }
439}
440
441void Instrumentation::ExceptionCaughtEvent(Thread* thread, const ThrowLocation& throw_location,
442 mirror::AbstractMethod* catch_method,
443 uint32_t catch_dex_pc,
444 mirror::Throwable* exception_object) {
445 if (have_exception_caught_listeners_) {
Jeff Haoc0bd4da2013-04-11 15:52:28 -0700446 DCHECK_EQ(thread->GetException(NULL), exception_object);
447 thread->ClearException();
Ian Rogers62d6c772013-02-27 08:32:07 -0800448 typedef std::list<InstrumentationListener*>::const_iterator It; // TODO: C++0x auto
449 for (It it = exception_caught_listeners_.begin(), end = exception_caught_listeners_.end();
450 it != end; ++it) {
451 (*it)->ExceptionCaught(thread, throw_location, catch_method, catch_dex_pc, exception_object);
452 }
Jeff Haoc0bd4da2013-04-11 15:52:28 -0700453 thread->SetException(throw_location, exception_object);
Ian Rogers62d6c772013-02-27 08:32:07 -0800454 }
455}
456
457static void CheckStackDepth(Thread* self, const InstrumentationStackFrame& instrumentation_frame,
458 int delta)
459 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
460 size_t frame_id = StackVisitor::ComputeNumFrames(self) + delta;
461 if (frame_id != instrumentation_frame.frame_id_) {
462 LOG(ERROR) << "Expected frame_id=" << frame_id << " but found "
463 << instrumentation_frame.frame_id_;
464 StackVisitor::DescribeStack(self);
465 CHECK_EQ(frame_id, instrumentation_frame.frame_id_);
466 }
467}
468
469void Instrumentation::PushInstrumentationStackFrame(Thread* self, mirror::Object* this_object,
470 mirror::AbstractMethod* method,
Jeff Hao9a916d32013-06-27 18:45:37 -0700471 uintptr_t lr, bool interpreter_entry) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800472 // We have a callee-save frame meaning this value is guaranteed to never be 0.
473 size_t frame_id = StackVisitor::ComputeNumFrames(self);
474 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack();
475 if (kVerboseInstrumentation) {
Brian Carlstrom2d888622013-07-18 17:02:00 -0700476 LOG(INFO) << "Entering " << PrettyMethod(method) << " from PC " << reinterpret_cast<void*>(lr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800477 }
478 instrumentation::InstrumentationStackFrame instrumentation_frame(this_object, method, lr,
Jeff Hao9a916d32013-06-27 18:45:37 -0700479 frame_id, interpreter_entry);
Ian Rogers62d6c772013-02-27 08:32:07 -0800480 stack->push_front(instrumentation_frame);
481
482 MethodEnterEvent(self, this_object, method, 0);
483}
484
485uint64_t Instrumentation::PopInstrumentationStackFrame(Thread* self, uintptr_t* return_pc,
486 uint64_t gpr_result, uint64_t fpr_result) {
487 // Do the pop.
488 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack();
489 CHECK_GT(stack->size(), 0U);
490 InstrumentationStackFrame instrumentation_frame = stack->front();
491 stack->pop_front();
492
493 // Set return PC and check the sanity of the stack.
494 *return_pc = instrumentation_frame.return_pc_;
495 CheckStackDepth(self, instrumentation_frame, 0);
496
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800497 mirror::AbstractMethod* method = instrumentation_frame.method_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800498 char return_shorty = MethodHelper(method).GetShorty()[0];
499 JValue return_value;
500 if (return_shorty == 'V') {
501 return_value.SetJ(0);
502 } else if (return_shorty == 'F' || return_shorty == 'D') {
503 return_value.SetJ(fpr_result);
504 } else {
505 return_value.SetJ(gpr_result);
506 }
507 // TODO: improve the dex pc information here, requires knowledge of current PC as opposed to
508 // return_pc.
509 uint32_t dex_pc = DexFile::kDexNoIndex;
510 mirror::Object* this_object = instrumentation_frame.this_object_;
511 MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value);
jeffhao725a9572012-11-13 18:20:12 -0800512
Ian Rogers62d6c772013-02-27 08:32:07 -0800513 bool deoptimize = false;
514 if (interpreter_stubs_installed_) {
515 // Deoptimize unless we're returning to an upcall.
516 NthCallerVisitor visitor(self, 1, true);
517 visitor.WalkStack(true);
518 deoptimize = visitor.caller != NULL;
519 if (deoptimize && kVerboseInstrumentation) {
520 LOG(INFO) << "Deoptimizing into " << PrettyMethod(visitor.caller);
521 }
522 }
523 if (deoptimize) {
524 if (kVerboseInstrumentation) {
525 LOG(INFO) << "Deoptimizing from " << PrettyMethod(method)
526 << " result is " << std::hex << return_value.GetJ();
527 }
528 self->SetDeoptimizationReturnValue(return_value);
529 return static_cast<uint64_t>(GetDeoptimizationEntryPoint()) |
530 (static_cast<uint64_t>(*return_pc) << 32);
531 } else {
532 if (kVerboseInstrumentation) {
Brian Carlstrom2d888622013-07-18 17:02:00 -0700533 LOG(INFO) << "Returning from " << PrettyMethod(method)
534 << " to PC " << reinterpret_cast<void*>(*return_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800535 }
536 return *return_pc;
537 }
jeffhao725a9572012-11-13 18:20:12 -0800538}
539
Ian Rogers62d6c772013-02-27 08:32:07 -0800540void Instrumentation::PopMethodForUnwind(Thread* self, bool is_deoptimization) const {
541 // Do the pop.
542 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack();
543 CHECK_GT(stack->size(), 0U);
544 InstrumentationStackFrame instrumentation_frame = stack->front();
545 // TODO: bring back CheckStackDepth(self, instrumentation_frame, 2);
546 stack->pop_front();
547
548 mirror::AbstractMethod* method = instrumentation_frame.method_;
549 if (is_deoptimization) {
550 if (kVerboseInstrumentation) {
551 LOG(INFO) << "Popping for deoptimization " << PrettyMethod(method);
552 }
553 } else {
554 if (kVerboseInstrumentation) {
555 LOG(INFO) << "Popping for unwind " << PrettyMethod(method);
556 }
557
558 // Notify listeners of method unwind.
559 // TODO: improve the dex pc information here, requires knowledge of current PC as opposed to
560 // return_pc.
561 uint32_t dex_pc = DexFile::kDexNoIndex;
562 MethodUnwindEvent(self, instrumentation_frame.this_object_, method, dex_pc);
563 }
564}
565
566std::string InstrumentationStackFrame::Dump() const {
567 std::ostringstream os;
568 os << "Frame " << frame_id_ << " " << PrettyMethod(method_) << ":"
569 << reinterpret_cast<void*>(return_pc_) << " this=" << reinterpret_cast<void*>(this_object_);
570 return os.str();
571}
572
573} // namespace instrumentation
jeffhao725a9572012-11-13 18:20:12 -0800574} // namespace art