blob: b29245f052a41c7e9204cea56212a54abb5c4f4c [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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_INSTRUMENTATION_H_
18#define ART_RUNTIME_INSTRUMENTATION_H_
jeffhao725a9572012-11-13 18:20:12 -080019
Ian Rogers576ca0c2014-06-06 15:58:22 -070020#include <stdint.h>
Ian Rogers576ca0c2014-06-06 15:58:22 -070021#include <list>
Mathieu Chartiere401d142015-04-22 13:56:20 -070022#include <unordered_set>
Ian Rogers576ca0c2014-06-06 15:58:22 -070023
Ian Rogersd582fa42014-11-05 23:46:43 -080024#include "arch/instruction_set.h"
Elliott Hughes76160052012-12-12 16:31:20 -080025#include "base/macros.h"
Ian Rogers719d1a32014-03-06 12:13:39 -080026#include "base/mutex.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070027#include "gc_root.h"
Sebastien Hertz0462c4c2015-04-01 16:34:17 +020028#include "safe_map.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029
jeffhao725a9572012-11-13 18:20:12 -080030namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031namespace mirror {
Brian Carlstromea46f952013-07-30 01:26:50 -070032 class Class;
33 class Object;
34 class Throwable;
Ian Rogers62d6c772013-02-27 08:32:07 -080035} // namespace mirror
Mathieu Chartierc7853442015-03-27 14:35:38 -070036class ArtField;
Mathieu Chartiere401d142015-04-22 13:56:20 -070037class ArtMethod;
Ian Rogers62d6c772013-02-27 08:32:07 -080038union JValue;
jeffhao725a9572012-11-13 18:20:12 -080039class Thread;
40
Ian Rogers62d6c772013-02-27 08:32:07 -080041namespace instrumentation {
jeffhao725a9572012-11-13 18:20:12 -080042
Sebastien Hertzee1997a2013-09-19 14:47:09 +020043// Interpreter handler tables.
44enum InterpreterHandlerTable {
45 kMainHandlerTable = 0, // Main handler table: no suspend check, no instrumentation.
46 kAlternativeHandlerTable = 1, // Alternative handler table: suspend check and/or instrumentation
47 // enabled.
48 kNumHandlerTables
49};
50
Andreas Gampe40da2862015-02-27 12:49:04 -080051// Do we want to deoptimize for method entry and exit listeners or just try to intercept
52// invocations? Deoptimization forces all code to run in the interpreter and considerably hurts the
53// application's performance.
54static constexpr bool kDeoptimizeForAccurateMethodEntryExitListeners = true;
55
Ian Rogers62d6c772013-02-27 08:32:07 -080056// Instrumentation event listener API. Registered listeners will get the appropriate call back for
57// the events they are listening for. The call backs supply the thread, method and dex_pc the event
58// occurred upon. The thread may or may not be Thread::Current().
59struct InstrumentationListener {
60 InstrumentationListener() {}
61 virtual ~InstrumentationListener() {}
62
63 // Call-back for when a method is entered.
64 virtual void MethodEntered(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -070065 ArtMethod* method,
Mathieu Chartier90443472015-07-16 20:32:27 -070066 uint32_t dex_pc) SHARED_REQUIRES(Locks::mutator_lock_) = 0;
Ian Rogers62d6c772013-02-27 08:32:07 -080067
68 // Call-back for when a method is exited.
Ian Rogers62d6c772013-02-27 08:32:07 -080069 virtual void MethodExited(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -070070 ArtMethod* method, uint32_t dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -080071 const JValue& return_value)
Mathieu Chartier90443472015-07-16 20:32:27 -070072 SHARED_REQUIRES(Locks::mutator_lock_) = 0;
Ian Rogers62d6c772013-02-27 08:32:07 -080073
74 // Call-back for when a method is popped due to an exception throw. A method will either cause a
75 // MethodExited call-back or a MethodUnwind call-back when its activation is removed.
Sebastien Hertz51db44a2013-11-19 10:00:29 +010076 virtual void MethodUnwind(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -070077 ArtMethod* method, uint32_t dex_pc)
Mathieu Chartier90443472015-07-16 20:32:27 -070078 SHARED_REQUIRES(Locks::mutator_lock_) = 0;
Ian Rogers62d6c772013-02-27 08:32:07 -080079
80 // Call-back for when the dex pc moves in a method.
81 virtual void DexPcMoved(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -070082 ArtMethod* method, uint32_t new_dex_pc)
Mathieu Chartier90443472015-07-16 20:32:27 -070083 SHARED_REQUIRES(Locks::mutator_lock_) = 0;
Ian Rogers62d6c772013-02-27 08:32:07 -080084
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +020085 // Call-back for when we read from a field.
Mathieu Chartiere401d142015-04-22 13:56:20 -070086 virtual void FieldRead(Thread* thread, mirror::Object* this_object, ArtMethod* method,
Mathieu Chartierc7853442015-03-27 14:35:38 -070087 uint32_t dex_pc, ArtField* field) = 0;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +020088
89 // Call-back for when we write into a field.
Mathieu Chartiere401d142015-04-22 13:56:20 -070090 virtual void FieldWritten(Thread* thread, mirror::Object* this_object, ArtMethod* method,
Mathieu Chartierc7853442015-03-27 14:35:38 -070091 uint32_t dex_pc, ArtField* field, const JValue& field_value) = 0;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +020092
Ian Rogers62d6c772013-02-27 08:32:07 -080093 // Call-back when an exception is caught.
Nicolas Geoffray14691c52015-03-05 10:40:17 +000094 virtual void ExceptionCaught(Thread* thread, mirror::Throwable* exception_object)
Mathieu Chartier90443472015-07-16 20:32:27 -070095 SHARED_REQUIRES(Locks::mutator_lock_) = 0;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080096
97 // Call-back for when we get a backward branch.
Mathieu Chartiere401d142015-04-22 13:56:20 -070098 virtual void BackwardBranch(Thread* thread, ArtMethod* method, int32_t dex_pc_offset)
Mathieu Chartier90443472015-07-16 20:32:27 -070099 SHARED_REQUIRES(Locks::mutator_lock_) = 0;
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100100
101 // Call-back for when we get an invokevirtual or an invokeinterface.
102 virtual void InvokeVirtualOrInterface(Thread* thread,
103 mirror::Object* this_object,
104 ArtMethod* caller,
105 uint32_t dex_pc,
106 ArtMethod* callee)
Mathieu Chartier3fdb3fe2016-01-14 10:24:28 -0800107 REQUIRES(Roles::uninterruptible_)
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100108 SHARED_REQUIRES(Locks::mutator_lock_) = 0;
jeffhao725a9572012-11-13 18:20:12 -0800109};
110
Ian Rogers62d6c772013-02-27 08:32:07 -0800111// Instrumentation is a catch-all for when extra information is required from the runtime. The
112// typical use for instrumentation is for profiling and debugging. Instrumentation may add stubs
113// to method entry and exit, it may also force execution to be switched to the interpreter and
114// trigger deoptimization.
jeffhao725a9572012-11-13 18:20:12 -0800115class Instrumentation {
116 public:
Ian Rogers62d6c772013-02-27 08:32:07 -0800117 enum InstrumentationEvent {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800118 kMethodEntered = 0x1,
119 kMethodExited = 0x2,
120 kMethodUnwind = 0x4,
121 kDexPcMoved = 0x8,
122 kFieldRead = 0x10,
123 kFieldWritten = 0x20,
124 kExceptionCaught = 0x40,
125 kBackwardBranch = 0x80,
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100126 kInvokeVirtualOrInterface = 0x100,
Ian Rogers62d6c772013-02-27 08:32:07 -0800127 };
jeffhao725a9572012-11-13 18:20:12 -0800128
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200129 enum class InstrumentationLevel {
130 kInstrumentNothing, // execute without instrumentation
131 kInstrumentWithInstrumentationStubs, // execute with instrumentation entry/exit stubs
132 kInstrumentWithInterpreter // execute with interpreter
133 };
134
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700135 Instrumentation();
jeffhao725a9572012-11-13 18:20:12 -0800136
Ian Rogers62d6c772013-02-27 08:32:07 -0800137 // Add a listener to be notified of the masked together sent of instrumentation events. This
138 // suspend the runtime to install stubs. You are expected to hold the mutator lock as a proxy
139 // for saying you should have suspended all threads (installing stubs while threads are running
140 // will break).
141 void AddListener(InstrumentationListener* listener, uint32_t events)
Mathieu Chartier90443472015-07-16 20:32:27 -0700142 REQUIRES(Locks::mutator_lock_, !Locks::thread_list_lock_, !Locks::classlinker_classes_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800143
Ian Rogers62d6c772013-02-27 08:32:07 -0800144 // Removes a listener possibly removing instrumentation stubs.
145 void RemoveListener(InstrumentationListener* listener, uint32_t events)
Mathieu Chartier90443472015-07-16 20:32:27 -0700146 REQUIRES(Locks::mutator_lock_, !Locks::thread_list_lock_, !Locks::classlinker_classes_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800147
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100148 // Deoptimization.
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100149 void EnableDeoptimization()
Mathieu Chartieraa516822015-10-02 15:53:37 -0700150 REQUIRES(Locks::mutator_lock_)
151 REQUIRES(!deoptimized_methods_lock_);
152 // Calls UndeoptimizeEverything which may visit class linker classes through ConfigureStubs.
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200153 void DisableDeoptimization(const char* key)
Mathieu Chartieraa516822015-10-02 15:53:37 -0700154 REQUIRES(Locks::mutator_lock_, Roles::uninterruptible_)
155 REQUIRES(!deoptimized_methods_lock_);
156
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100157 bool AreAllMethodsDeoptimized() const {
158 return interpreter_stubs_installed_;
159 }
Mathieu Chartier90443472015-07-16 20:32:27 -0700160 bool ShouldNotifyMethodEnterExitEvents() const SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100161
162 // Executes everything with interpreter.
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200163 void DeoptimizeEverything(const char* key)
Mathieu Chartieraa516822015-10-02 15:53:37 -0700164 REQUIRES(Locks::mutator_lock_, Roles::uninterruptible_)
165 REQUIRES(!Locks::thread_list_lock_,
166 !Locks::classlinker_classes_lock_,
Mathieu Chartier90443472015-07-16 20:32:27 -0700167 !deoptimized_methods_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100168
Mathieu Chartieraa516822015-10-02 15:53:37 -0700169 // Executes everything with compiled code (or interpreter if there is no code). May visit class
170 // linker classes through ConfigureStubs.
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200171 void UndeoptimizeEverything(const char* key)
Mathieu Chartieraa516822015-10-02 15:53:37 -0700172 REQUIRES(Locks::mutator_lock_, Roles::uninterruptible_)
173 REQUIRES(!Locks::thread_list_lock_,
174 !Locks::classlinker_classes_lock_,
Mathieu Chartier90443472015-07-16 20:32:27 -0700175 !deoptimized_methods_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100176
177 // Deoptimize a method by forcing its execution with the interpreter. Nevertheless, a static
178 // method (except a class initializer) set to the resolution trampoline will be deoptimized only
179 // once its declaring class is initialized.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700180 void Deoptimize(ArtMethod* method)
Mathieu Chartier90443472015-07-16 20:32:27 -0700181 REQUIRES(Locks::mutator_lock_, !Locks::thread_list_lock_, !deoptimized_methods_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100182
183 // Undeoptimze the method by restoring its entrypoints. Nevertheless, a static method
184 // (except a class initializer) set to the resolution trampoline will be updated only once its
185 // declaring class is initialized.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700186 void Undeoptimize(ArtMethod* method)
Mathieu Chartier90443472015-07-16 20:32:27 -0700187 REQUIRES(Locks::mutator_lock_, !Locks::thread_list_lock_, !deoptimized_methods_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100188
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200189 // Indicates whether the method has been deoptimized so it is executed with the interpreter.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700190 bool IsDeoptimized(ArtMethod* method)
Mathieu Chartier90443472015-07-16 20:32:27 -0700191 REQUIRES(!deoptimized_methods_lock_) SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100192
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200193 // Enable method tracing by installing instrumentation entry/exit stubs or interpreter.
194 void EnableMethodTracing(const char* key,
195 bool needs_interpreter = kDeoptimizeForAccurateMethodEntryExitListeners)
Mathieu Chartieraa516822015-10-02 15:53:37 -0700196 REQUIRES(Locks::mutator_lock_, Roles::uninterruptible_)
197 REQUIRES(!Locks::thread_list_lock_,
198 !Locks::classlinker_classes_lock_,
Mathieu Chartier90443472015-07-16 20:32:27 -0700199 !deoptimized_methods_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100200
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200201 // Disable method tracing by uninstalling instrumentation entry/exit stubs or interpreter.
202 void DisableMethodTracing(const char* key)
Mathieu Chartieraa516822015-10-02 15:53:37 -0700203 REQUIRES(Locks::mutator_lock_, Roles::uninterruptible_)
204 REQUIRES(!Locks::thread_list_lock_,
205 !Locks::classlinker_classes_lock_,
Mathieu Chartier90443472015-07-16 20:32:27 -0700206 !deoptimized_methods_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100207
Sebastien Hertzed2be172014-08-19 15:33:43 +0200208 InterpreterHandlerTable GetInterpreterHandlerTable() const
Mathieu Chartier90443472015-07-16 20:32:27 -0700209 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200210 return interpreter_handler_table_;
211 }
212
Mathieu Chartier90443472015-07-16 20:32:27 -0700213 void InstrumentQuickAllocEntryPoints() REQUIRES(!Locks::instrument_entrypoints_lock_);
214 void UninstrumentQuickAllocEntryPoints() REQUIRES(!Locks::instrument_entrypoints_lock_);
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700215 void InstrumentQuickAllocEntryPointsLocked()
Mathieu Chartier90443472015-07-16 20:32:27 -0700216 REQUIRES(Locks::instrument_entrypoints_lock_, !Locks::thread_list_lock_,
217 !Locks::runtime_shutdown_lock_);
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700218 void UninstrumentQuickAllocEntryPointsLocked()
Mathieu Chartier90443472015-07-16 20:32:27 -0700219 REQUIRES(Locks::instrument_entrypoints_lock_, !Locks::thread_list_lock_,
220 !Locks::runtime_shutdown_lock_);
221 void ResetQuickAllocEntryPoints() REQUIRES(Locks::runtime_shutdown_lock_);
Ian Rogersfa824272013-11-05 16:12:57 -0800222
Ian Rogers62d6c772013-02-27 08:32:07 -0800223 // Update the code of a method respecting any installed stubs.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700224 void UpdateMethodsCode(ArtMethod* method, const void* quick_code)
Mathieu Chartier90443472015-07-16 20:32:27 -0700225 SHARED_REQUIRES(Locks::mutator_lock_) REQUIRES(!deoptimized_methods_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800226
227 // Get the quick code for the given method. More efficient than asking the class linker as it
228 // will short-cut to GetCode if instrumentation and static method resolution stubs aren't
229 // installed.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700230 const void* GetQuickCodeFor(ArtMethod* method, size_t pointer_size) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700231 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800232
233 void ForceInterpretOnly() {
234 interpret_only_ = true;
235 forced_interpret_only_ = true;
236 }
237
Brian Carlstromea46f952013-07-30 01:26:50 -0700238 // Called by ArtMethod::Invoke to determine dispatch mechanism.
Ian Rogers62d6c772013-02-27 08:32:07 -0800239 bool InterpretOnly() const {
240 return interpret_only_;
241 }
242
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -0800243 bool IsForcedInterpretOnly() const {
244 return forced_interpret_only_;
245 }
246
Ian Rogers62d6c772013-02-27 08:32:07 -0800247 bool AreExitStubsInstalled() const {
248 return instrumentation_stubs_installed_;
249 }
250
Mathieu Chartier90443472015-07-16 20:32:27 -0700251 bool HasMethodEntryListeners() const SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200252 return have_method_entry_listeners_;
253 }
254
Mathieu Chartier90443472015-07-16 20:32:27 -0700255 bool HasMethodExitListeners() const SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200256 return have_method_exit_listeners_;
257 }
258
Mathieu Chartier90443472015-07-16 20:32:27 -0700259 bool HasMethodUnwindListeners() const SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200260 return have_method_unwind_listeners_;
261 }
262
Mathieu Chartier90443472015-07-16 20:32:27 -0700263 bool HasDexPcListeners() const SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200264 return have_dex_pc_listeners_;
265 }
266
Mathieu Chartier90443472015-07-16 20:32:27 -0700267 bool HasFieldReadListeners() const SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200268 return have_field_read_listeners_;
269 }
270
Mathieu Chartier90443472015-07-16 20:32:27 -0700271 bool HasFieldWriteListeners() const SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200272 return have_field_write_listeners_;
273 }
274
Mathieu Chartier90443472015-07-16 20:32:27 -0700275 bool HasExceptionCaughtListeners() const SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz9f102032014-05-23 08:59:42 +0200276 return have_exception_caught_listeners_;
277 }
278
Mathieu Chartier90443472015-07-16 20:32:27 -0700279 bool HasBackwardBranchListeners() const SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800280 return have_backward_branch_listeners_;
281 }
282
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100283 bool HasInvokeVirtualOrInterfaceListeners() const SHARED_REQUIRES(Locks::mutator_lock_) {
284 return have_invoke_virtual_or_interface_listeners_;
285 }
286
Mathieu Chartier90443472015-07-16 20:32:27 -0700287 bool IsActive() const SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200288 return have_dex_pc_listeners_ || have_method_entry_listeners_ || have_method_exit_listeners_ ||
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200289 have_field_read_listeners_ || have_field_write_listeners_ ||
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200290 have_exception_caught_listeners_ || have_method_unwind_listeners_;
291 }
292
Ian Rogers62d6c772013-02-27 08:32:07 -0800293 // Inform listeners that a method has been entered. A dex PC is provided as we may install
294 // listeners into executing code and get method enter events for methods already on the stack.
295 void MethodEnterEvent(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700296 ArtMethod* method, uint32_t dex_pc) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700297 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200298 if (UNLIKELY(HasMethodEntryListeners())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800299 MethodEnterEventImpl(thread, this_object, method, dex_pc);
300 }
301 }
302
303 // Inform listeners that a method has been exited.
304 void MethodExitEvent(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700305 ArtMethod* method, uint32_t dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -0800306 const JValue& return_value) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700307 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200308 if (UNLIKELY(HasMethodExitListeners())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800309 MethodExitEventImpl(thread, this_object, method, dex_pc, return_value);
310 }
311 }
312
313 // Inform listeners that a method has been exited due to an exception.
314 void MethodUnwindEvent(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700315 ArtMethod* method, uint32_t dex_pc) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700316 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800317
318 // Inform listeners that the dex pc has moved (only supported by the interpreter).
319 void DexPcMovedEvent(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700320 ArtMethod* method, uint32_t dex_pc) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700321 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200322 if (UNLIKELY(HasDexPcListeners())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800323 DexPcMovedEventImpl(thread, this_object, method, dex_pc);
324 }
325 }
326
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800327 // Inform listeners that a backward branch has been taken (only supported by the interpreter).
Mathieu Chartiere401d142015-04-22 13:56:20 -0700328 void BackwardBranch(Thread* thread, ArtMethod* method, int32_t offset) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700329 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800330 if (UNLIKELY(HasBackwardBranchListeners())) {
331 BackwardBranchImpl(thread, method, offset);
332 }
333 }
334
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200335 // Inform listeners that we read a field (only supported by the interpreter).
336 void FieldReadEvent(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700337 ArtMethod* method, uint32_t dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700338 ArtField* field) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700339 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200340 if (UNLIKELY(HasFieldReadListeners())) {
341 FieldReadEventImpl(thread, this_object, method, dex_pc, field);
342 }
343 }
344
345 // Inform listeners that we write a field (only supported by the interpreter).
346 void FieldWriteEvent(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700347 ArtMethod* method, uint32_t dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700348 ArtField* field, const JValue& field_value) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700349 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200350 if (UNLIKELY(HasFieldWriteListeners())) {
351 FieldWriteEventImpl(thread, this_object, method, dex_pc, field, field_value);
352 }
353 }
354
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100355 void InvokeVirtualOrInterface(Thread* thread,
356 mirror::Object* this_object,
357 ArtMethod* caller,
358 uint32_t dex_pc,
359 ArtMethod* callee) const
360 SHARED_REQUIRES(Locks::mutator_lock_) {
361 if (UNLIKELY(HasInvokeVirtualOrInterfaceListeners())) {
362 InvokeVirtualOrInterfaceImpl(thread, this_object, caller, dex_pc, callee);
363 }
364 }
365
Ian Rogers62d6c772013-02-27 08:32:07 -0800366 // Inform listeners that an exception was caught.
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000367 void ExceptionCaughtEvent(Thread* thread, mirror::Throwable* exception_object) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700368 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800369
370 // Called when an instrumented method is entered. The intended link register (lr) is saved so
371 // that returning causes a branch to the method exit stub. Generates method enter events.
372 void PushInstrumentationStackFrame(Thread* self, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700373 ArtMethod* method, uintptr_t lr,
Jeff Hao9a916d32013-06-27 18:45:37 -0700374 bool interpreter_entry)
Mathieu Chartier90443472015-07-16 20:32:27 -0700375 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800376
377 // Called when an instrumented method is exited. Removes the pushed instrumentation frame
378 // returning the intended link register. Generates method exit events.
Andreas Gamped58342c2014-06-05 14:18:08 -0700379 TwoWordReturn PopInstrumentationStackFrame(Thread* self, uintptr_t* return_pc,
380 uint64_t gpr_result, uint64_t fpr_result)
Mathieu Chartier90443472015-07-16 20:32:27 -0700381 SHARED_REQUIRES(Locks::mutator_lock_) REQUIRES(!deoptimized_methods_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800382
383 // Pops an instrumentation frame from the current thread and generate an unwind event.
384 void PopMethodForUnwind(Thread* self, bool is_deoptimization) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700385 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800386
387 // Call back for configure stubs.
Mathieu Chartier90443472015-07-16 20:32:27 -0700388 void InstallStubsForClass(mirror::Class* klass) SHARED_REQUIRES(Locks::mutator_lock_)
389 REQUIRES(!deoptimized_methods_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800390
Mathieu Chartiere401d142015-04-22 13:56:20 -0700391 void InstallStubsForMethod(ArtMethod* method)
Mathieu Chartier90443472015-07-16 20:32:27 -0700392 SHARED_REQUIRES(Locks::mutator_lock_) REQUIRES(!deoptimized_methods_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100393
Mingyao Yang99170c62015-07-06 11:10:37 -0700394 // Install instrumentation exit stub on every method of the stack of the given thread.
395 // This is used by the debugger to cause a deoptimization of the thread's stack after updating
396 // local variable(s).
397 void InstrumentThreadStack(Thread* thread)
398 SHARED_REQUIRES(Locks::mutator_lock_)
399 REQUIRES(!Locks::thread_list_lock_);
400
Sebastien Hertzb2feaaf2015-10-12 13:40:10 +0000401 static size_t ComputeFrameId(Thread* self,
402 size_t frame_depth,
403 size_t inlined_frames_before_frame)
404 SHARED_REQUIRES(Locks::mutator_lock_);
405
jeffhao725a9572012-11-13 18:20:12 -0800406 private:
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200407 InstrumentationLevel GetCurrentInstrumentationLevel() const;
408
Ian Rogers62d6c772013-02-27 08:32:07 -0800409 // Does the job of installing or removing instrumentation code within methods.
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200410 // In order to support multiple clients using instrumentation at the same time,
411 // the caller must pass a unique key (a string) identifying it so we remind which
412 // instrumentation level it needs. Therefore the current instrumentation level
413 // becomes the highest instrumentation level required by a client.
414 void ConfigureStubs(const char* key, InstrumentationLevel desired_instrumentation_level)
Mathieu Chartieraa516822015-10-02 15:53:37 -0700415 REQUIRES(Locks::mutator_lock_, Roles::uninterruptible_)
416 REQUIRES(!deoptimized_methods_lock_,
417 !Locks::thread_list_lock_,
Mathieu Chartier90443472015-07-16 20:32:27 -0700418 !Locks::classlinker_classes_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800419
Mathieu Chartier90443472015-07-16 20:32:27 -0700420 void UpdateInterpreterHandlerTable() REQUIRES(Locks::mutator_lock_) {
buzbee1452bee2015-03-06 14:43:04 -0800421 /*
422 * TUNING: Dalvik's mterp stashes the actual current handler table base in a
423 * tls field. For Arm, this enables all suspend, debug & tracing checks to be
424 * collapsed into a single conditionally-executed ldw instruction.
425 * Move to Dalvik-style handler-table management for both the goto interpreter and
426 * mterp.
427 */
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200428 interpreter_handler_table_ = IsActive() ? kAlternativeHandlerTable : kMainHandlerTable;
429 }
430
Mathieu Chartier661974a2014-01-09 11:23:53 -0800431 // No thread safety analysis to get around SetQuickAllocEntryPointsInstrumented requiring
432 // exclusive access to mutator lock which you can't get if the runtime isn't started.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700433 void SetEntrypointsInstrumented(bool instrumented) NO_THREAD_SAFETY_ANALYSIS;
Mathieu Chartier661974a2014-01-09 11:23:53 -0800434
Ian Rogers62d6c772013-02-27 08:32:07 -0800435 void MethodEnterEventImpl(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700436 ArtMethod* method, uint32_t dex_pc) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700437 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800438 void MethodExitEventImpl(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700439 ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800440 uint32_t dex_pc, const JValue& return_value) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700441 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800442 void DexPcMovedEventImpl(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700443 ArtMethod* method, uint32_t dex_pc) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700444 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700445 void BackwardBranchImpl(Thread* thread, ArtMethod* method, int32_t offset) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700446 SHARED_REQUIRES(Locks::mutator_lock_);
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100447 void InvokeVirtualOrInterfaceImpl(Thread* thread,
448 mirror::Object* this_object,
449 ArtMethod* caller,
450 uint32_t dex_pc,
451 ArtMethod* callee) const
452 SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200453 void FieldReadEventImpl(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700454 ArtMethod* method, uint32_t dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700455 ArtField* field) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700456 SHARED_REQUIRES(Locks::mutator_lock_);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200457 void FieldWriteEventImpl(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700458 ArtMethod* method, uint32_t dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700459 ArtField* field, const JValue& field_value) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700460 SHARED_REQUIRES(Locks::mutator_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800461
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700462 // Read barrier-aware utility functions for accessing deoptimized_methods_
Mathieu Chartiere401d142015-04-22 13:56:20 -0700463 bool AddDeoptimizedMethod(ArtMethod* method)
Mathieu Chartier90443472015-07-16 20:32:27 -0700464 SHARED_REQUIRES(Locks::mutator_lock_) REQUIRES(deoptimized_methods_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700465 bool IsDeoptimizedMethod(ArtMethod* method)
Mathieu Chartier90443472015-07-16 20:32:27 -0700466 SHARED_REQUIRES(Locks::mutator_lock_, deoptimized_methods_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700467 bool RemoveDeoptimizedMethod(ArtMethod* method)
Mathieu Chartier90443472015-07-16 20:32:27 -0700468 SHARED_REQUIRES(Locks::mutator_lock_) REQUIRES(deoptimized_methods_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700469 ArtMethod* BeginDeoptimizedMethod()
Mathieu Chartier90443472015-07-16 20:32:27 -0700470 SHARED_REQUIRES(Locks::mutator_lock_, deoptimized_methods_lock_);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700471 bool IsDeoptimizedMethodsEmpty() const
Mathieu Chartier90443472015-07-16 20:32:27 -0700472 SHARED_REQUIRES(Locks::mutator_lock_, deoptimized_methods_lock_);
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700473
Brian Carlstromea46f952013-07-30 01:26:50 -0700474 // Have we hijacked ArtMethod::code_ so that it calls instrumentation/interpreter code?
Ian Rogers62d6c772013-02-27 08:32:07 -0800475 bool instrumentation_stubs_installed_;
476
Brian Carlstromea46f952013-07-30 01:26:50 -0700477 // Have we hijacked ArtMethod::code_ to reference the enter/exit stubs?
Ian Rogers62d6c772013-02-27 08:32:07 -0800478 bool entry_exit_stubs_installed_;
479
Brian Carlstromea46f952013-07-30 01:26:50 -0700480 // Have we hijacked ArtMethod::code_ to reference the enter interpreter stub?
Ian Rogers62d6c772013-02-27 08:32:07 -0800481 bool interpreter_stubs_installed_;
482
483 // Do we need the fidelity of events that we only get from running within the interpreter?
484 bool interpret_only_;
485
486 // Did the runtime request we only run in the interpreter? ie -Xint mode.
487 bool forced_interpret_only_;
488
489 // Do we have any listeners for method entry events? Short-cut to avoid taking the
490 // instrumentation_lock_.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200491 bool have_method_entry_listeners_ GUARDED_BY(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800492
493 // Do we have any listeners for method exit events? Short-cut to avoid taking the
494 // instrumentation_lock_.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200495 bool have_method_exit_listeners_ GUARDED_BY(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800496
497 // Do we have any listeners for method unwind events? Short-cut to avoid taking the
498 // instrumentation_lock_.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200499 bool have_method_unwind_listeners_ GUARDED_BY(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800500
501 // Do we have any listeners for dex move events? Short-cut to avoid taking the
502 // instrumentation_lock_.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200503 bool have_dex_pc_listeners_ GUARDED_BY(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800504
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200505 // Do we have any listeners for field read events? Short-cut to avoid taking the
506 // instrumentation_lock_.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200507 bool have_field_read_listeners_ GUARDED_BY(Locks::mutator_lock_);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200508
509 // Do we have any listeners for field write events? Short-cut to avoid taking the
510 // instrumentation_lock_.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200511 bool have_field_write_listeners_ GUARDED_BY(Locks::mutator_lock_);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200512
Ian Rogers62d6c772013-02-27 08:32:07 -0800513 // Do we have any exception caught listeners? Short-cut to avoid taking the instrumentation_lock_.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200514 bool have_exception_caught_listeners_ GUARDED_BY(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800515
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800516 // Do we have any backward branch listeners? Short-cut to avoid taking the instrumentation_lock_.
517 bool have_backward_branch_listeners_ GUARDED_BY(Locks::mutator_lock_);
518
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100519 // Do we have any invoke listeners? Short-cut to avoid taking the instrumentation_lock_.
520 bool have_invoke_virtual_or_interface_listeners_ GUARDED_BY(Locks::mutator_lock_);
521
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200522 // Contains the instrumentation level required by each client of the instrumentation identified
523 // by a string key.
524 typedef SafeMap<const char*, InstrumentationLevel> InstrumentationLevelTable;
525 InstrumentationLevelTable requested_instrumentation_levels_ GUARDED_BY(Locks::mutator_lock_);
526
Ian Rogers62d6c772013-02-27 08:32:07 -0800527 // The event listeners, written to with the mutator_lock_ exclusively held.
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000528 // Mutators must be able to iterate over these lists concurrently, that is, with listeners being
529 // added or removed while iterating. The modifying thread holds exclusive lock,
530 // so other threads cannot iterate (i.e. read the data of the list) at the same time but they
531 // do keep iterators that need to remain valid. This is the reason these listeners are std::list
532 // and not for example std::vector: the existing storage for a std::list does not move.
533 // Note that mutators cannot make a copy of these lists before iterating, as the instrumentation
534 // listeners can also be deleted concurrently.
535 // As a result, these lists are never trimmed. That's acceptable given the low number of
536 // listeners we have.
Ian Rogers62d6c772013-02-27 08:32:07 -0800537 std::list<InstrumentationListener*> method_entry_listeners_ GUARDED_BY(Locks::mutator_lock_);
538 std::list<InstrumentationListener*> method_exit_listeners_ GUARDED_BY(Locks::mutator_lock_);
539 std::list<InstrumentationListener*> method_unwind_listeners_ GUARDED_BY(Locks::mutator_lock_);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800540 std::list<InstrumentationListener*> backward_branch_listeners_ GUARDED_BY(Locks::mutator_lock_);
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100541 std::list<InstrumentationListener*> invoke_virtual_or_interface_listeners_
542 GUARDED_BY(Locks::mutator_lock_);
Nicolas Geoffray514a6162015-11-03 11:44:24 +0000543 std::list<InstrumentationListener*> dex_pc_listeners_ GUARDED_BY(Locks::mutator_lock_);
544 std::list<InstrumentationListener*> field_read_listeners_ GUARDED_BY(Locks::mutator_lock_);
545 std::list<InstrumentationListener*> field_write_listeners_ GUARDED_BY(Locks::mutator_lock_);
546 std::list<InstrumentationListener*> exception_caught_listeners_ GUARDED_BY(Locks::mutator_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800547
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100548 // The set of methods being deoptimized (by the debugger) which must be executed with interpreter
549 // only.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700550 mutable ReaderWriterMutex deoptimized_methods_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700551 std::unordered_set<ArtMethod*> deoptimized_methods_ GUARDED_BY(deoptimized_methods_lock_);
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100552 bool deoptimization_enabled_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100553
Ian Rogersfa824272013-11-05 16:12:57 -0800554 // Current interpreter handler table. This is updated each time the thread state flags are
555 // modified.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200556 InterpreterHandlerTable interpreter_handler_table_ GUARDED_BY(Locks::mutator_lock_);
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200557
Ian Rogersfa824272013-11-05 16:12:57 -0800558 // Greater than 0 if quick alloc entry points instrumented.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700559 size_t quick_alloc_entry_points_instrumentation_counter_
560 GUARDED_BY(Locks::instrument_entrypoints_lock_);
Ian Rogersfa824272013-11-05 16:12:57 -0800561
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200562 friend class InstrumentationTest; // For GetCurrentInstrumentationLevel and ConfigureStubs.
563
jeffhao725a9572012-11-13 18:20:12 -0800564 DISALLOW_COPY_AND_ASSIGN(Instrumentation);
565};
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700566std::ostream& operator<<(std::ostream& os, const Instrumentation::InstrumentationEvent& rhs);
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200567std::ostream& operator<<(std::ostream& os, const Instrumentation::InstrumentationLevel& rhs);
jeffhao725a9572012-11-13 18:20:12 -0800568
Ian Rogers62d6c772013-02-27 08:32:07 -0800569// An element in the instrumentation side stack maintained in art::Thread.
570struct InstrumentationStackFrame {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700571 InstrumentationStackFrame(mirror::Object* this_object, ArtMethod* method,
Jeff Hao9a916d32013-06-27 18:45:37 -0700572 uintptr_t return_pc, size_t frame_id, bool interpreter_entry)
573 : this_object_(this_object), method_(method), return_pc_(return_pc), frame_id_(frame_id),
574 interpreter_entry_(interpreter_entry) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800575 }
576
Mathieu Chartier90443472015-07-16 20:32:27 -0700577 std::string Dump() const SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800578
579 mirror::Object* this_object_;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700580 ArtMethod* method_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100581 uintptr_t return_pc_;
582 size_t frame_id_;
583 bool interpreter_entry_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800584};
585
586} // namespace instrumentation
jeffhao725a9572012-11-13 18:20:12 -0800587} // namespace art
588
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700589#endif // ART_RUNTIME_INSTRUMENTATION_H_