blob: 2a9c35f5a3c66b876717ed833a8c4c29d6933e08 [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 Rogersef7d42f2014-01-06 12:55:46 -080020#include "atomic.h"
Elliott Hughes76160052012-12-12 16:31:20 -080021#include "base/macros.h"
Ian Rogers719d1a32014-03-06 12:13:39 -080022#include "base/mutex.h"
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070023#include "object_callbacks.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080024
25#include <stdint.h>
Sebastien Hertz138dbfc2013-12-04 18:15:25 +010026#include <set>
Ian Rogers62d6c772013-02-27 08:32:07 -080027#include <list>
jeffhao725a9572012-11-13 18:20:12 -080028
29namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080030namespace mirror {
Brian Carlstromea46f952013-07-30 01:26:50 -070031 class ArtMethod;
32 class Class;
33 class Object;
34 class Throwable;
Ian Rogers62d6c772013-02-27 08:32:07 -080035} // namespace mirror
36union JValue;
jeffhao725a9572012-11-13 18:20:12 -080037class Thread;
Ian Rogers62d6c772013-02-27 08:32:07 -080038class ThrowLocation;
jeffhao725a9572012-11-13 18:20:12 -080039
Ian Rogers62d6c772013-02-27 08:32:07 -080040namespace instrumentation {
jeffhao725a9572012-11-13 18:20:12 -080041
Sebastien Hertzee1997a2013-09-19 14:47:09 +020042// Interpreter handler tables.
43enum InterpreterHandlerTable {
44 kMainHandlerTable = 0, // Main handler table: no suspend check, no instrumentation.
45 kAlternativeHandlerTable = 1, // Alternative handler table: suspend check and/or instrumentation
46 // enabled.
47 kNumHandlerTables
48};
49
Ian Rogers62d6c772013-02-27 08:32:07 -080050// Instrumentation event listener API. Registered listeners will get the appropriate call back for
51// the events they are listening for. The call backs supply the thread, method and dex_pc the event
52// occurred upon. The thread may or may not be Thread::Current().
53struct InstrumentationListener {
54 InstrumentationListener() {}
55 virtual ~InstrumentationListener() {}
56
57 // Call-back for when a method is entered.
58 virtual void MethodEntered(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -080059 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -080060 uint32_t dex_pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
61
62 // Call-back for when a method is exited.
63 // TODO: its likely passing the return value would be useful, however, we may need to get and
64 // parse the shorty to determine what kind of register holds the result.
65 virtual void MethodExited(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -080066 mirror::ArtMethod* method, uint32_t dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -080067 const JValue& return_value)
68 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
69
70 // Call-back for when a method is popped due to an exception throw. A method will either cause a
71 // MethodExited call-back or a MethodUnwind call-back when its activation is removed.
Sebastien Hertz51db44a2013-11-19 10:00:29 +010072 virtual void MethodUnwind(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -080073 mirror::ArtMethod* method, uint32_t dex_pc)
Sebastien Hertz51db44a2013-11-19 10:00:29 +010074 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
Ian Rogers62d6c772013-02-27 08:32:07 -080075
76 // Call-back for when the dex pc moves in a method.
77 virtual void DexPcMoved(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -080078 mirror::ArtMethod* method, uint32_t new_dex_pc)
Ian Rogers62d6c772013-02-27 08:32:07 -080079 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
80
81 // Call-back when an exception is caught.
82 virtual void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -070083 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -080084 mirror::Throwable* exception_object)
85 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
jeffhao725a9572012-11-13 18:20:12 -080086};
87
Ian Rogers62d6c772013-02-27 08:32:07 -080088// Instrumentation is a catch-all for when extra information is required from the runtime. The
89// typical use for instrumentation is for profiling and debugging. Instrumentation may add stubs
90// to method entry and exit, it may also force execution to be switched to the interpreter and
91// trigger deoptimization.
jeffhao725a9572012-11-13 18:20:12 -080092class Instrumentation {
93 public:
Ian Rogers62d6c772013-02-27 08:32:07 -080094 enum InstrumentationEvent {
95 kMethodEntered = 1,
96 kMethodExited = 2,
97 kMethodUnwind = 4,
98 kDexPcMoved = 8,
99 kExceptionCaught = 16
100 };
jeffhao725a9572012-11-13 18:20:12 -0800101
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700102 Instrumentation();
jeffhao725a9572012-11-13 18:20:12 -0800103
Ian Rogers62d6c772013-02-27 08:32:07 -0800104 // Add a listener to be notified of the masked together sent of instrumentation events. This
105 // suspend the runtime to install stubs. You are expected to hold the mutator lock as a proxy
106 // for saying you should have suspended all threads (installing stubs while threads are running
107 // will break).
108 void AddListener(InstrumentationListener* listener, uint32_t events)
109 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
110 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800111
Ian Rogers62d6c772013-02-27 08:32:07 -0800112 // Removes a listener possibly removing instrumentation stubs.
113 void RemoveListener(InstrumentationListener* listener, uint32_t events)
114 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
115 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800116
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100117 // Deoptimization.
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100118 void EnableDeoptimization()
119 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700120 LOCKS_EXCLUDED(deoptimized_methods_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100121 void DisableDeoptimization()
122 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100123 LOCKS_EXCLUDED(deoptimized_methods_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100124 bool AreAllMethodsDeoptimized() const {
125 return interpreter_stubs_installed_;
126 }
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100127 bool ShouldNotifyMethodEnterExitEvents() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100128
129 // Executes everything with interpreter.
130 void DeoptimizeEverything()
131 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
132 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
133
134 // Executes everything with compiled code (or interpreter if there is no code).
135 void UndeoptimizeEverything()
136 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
137 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
138
139 // Deoptimize a method by forcing its execution with the interpreter. Nevertheless, a static
140 // method (except a class initializer) set to the resolution trampoline will be deoptimized only
141 // once its declaring class is initialized.
142 void Deoptimize(mirror::ArtMethod* method)
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700143 LOCKS_EXCLUDED(Locks::thread_list_lock_, deoptimized_methods_lock_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100144 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
145
146 // Undeoptimze the method by restoring its entrypoints. Nevertheless, a static method
147 // (except a class initializer) set to the resolution trampoline will be updated only once its
148 // declaring class is initialized.
149 void Undeoptimize(mirror::ArtMethod* method)
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100150 LOCKS_EXCLUDED(Locks::thread_list_lock_, deoptimized_methods_lock_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100151 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
152
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700153 bool IsDeoptimized(mirror::ArtMethod* method) const LOCKS_EXCLUDED(deoptimized_methods_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100154
155 // Enable method tracing by installing instrumentation entry/exit stubs.
156 void EnableMethodTracing()
157 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
158 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
159
160 // Disable method tracing by uninstalling instrumentation entry/exit stubs.
161 void DisableMethodTracing()
162 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
163 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
164
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200165 InterpreterHandlerTable GetInterpreterHandlerTable() const {
166 return interpreter_handler_table_;
167 }
168
Mathieu Chartierd8891782014-03-02 13:28:37 -0800169 void InstrumentQuickAllocEntryPoints() LOCKS_EXCLUDED(Locks::thread_list_lock_,
170 Locks::runtime_shutdown_lock_);
171 void UninstrumentQuickAllocEntryPoints() LOCKS_EXCLUDED(Locks::thread_list_lock_,
172 Locks::runtime_shutdown_lock_);
173 void ResetQuickAllocEntryPoints() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_);
Ian Rogersfa824272013-11-05 16:12:57 -0800174
Ian Rogers62d6c772013-02-27 08:32:07 -0800175 // Update the code of a method respecting any installed stubs.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800176 void UpdateMethodsCode(mirror::ArtMethod* method, const void* quick_code,
177 const void* portable_code, bool have_portable_code) const
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100178 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800179
180 // Get the quick code for the given method. More efficient than asking the class linker as it
181 // will short-cut to GetCode if instrumentation and static method resolution stubs aren't
182 // installed.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800183 const void* GetQuickCodeFor(mirror::ArtMethod* method) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800184 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
185
186 void ForceInterpretOnly() {
187 interpret_only_ = true;
188 forced_interpret_only_ = true;
189 }
190
Brian Carlstromea46f952013-07-30 01:26:50 -0700191 // Called by ArtMethod::Invoke to determine dispatch mechanism.
Ian Rogers62d6c772013-02-27 08:32:07 -0800192 bool InterpretOnly() const {
193 return interpret_only_;
194 }
195
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -0800196 bool IsForcedInterpretOnly() const {
197 return forced_interpret_only_;
198 }
199
Ian Rogers62d6c772013-02-27 08:32:07 -0800200 bool ShouldPortableCodeDeoptimize() const {
201 return instrumentation_stubs_installed_;
202 }
203
204 bool AreExitStubsInstalled() const {
205 return instrumentation_stubs_installed_;
206 }
207
Sebastien Hertz74109f62013-06-07 17:40:09 +0200208 bool HasMethodEntryListeners() const {
209 return have_method_entry_listeners_;
210 }
211
212 bool HasMethodExitListeners() const {
213 return have_method_exit_listeners_;
214 }
215
216 bool HasDexPcListeners() const {
217 return have_dex_pc_listeners_;
218 }
219
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200220 bool IsActive() const {
221 return have_dex_pc_listeners_ || have_method_entry_listeners_ || have_method_exit_listeners_ ||
222 have_exception_caught_listeners_ || have_method_unwind_listeners_;
223 }
224
Ian Rogers62d6c772013-02-27 08:32:07 -0800225 // Inform listeners that a method has been entered. A dex PC is provided as we may install
226 // listeners into executing code and get method enter events for methods already on the stack.
227 void MethodEnterEvent(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800228 mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800229 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200230 if (UNLIKELY(HasMethodEntryListeners())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800231 MethodEnterEventImpl(thread, this_object, method, dex_pc);
232 }
233 }
234
235 // Inform listeners that a method has been exited.
236 void MethodExitEvent(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800237 mirror::ArtMethod* method, uint32_t dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -0800238 const JValue& return_value) const
239 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200240 if (UNLIKELY(HasMethodExitListeners())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800241 MethodExitEventImpl(thread, this_object, method, dex_pc, return_value);
242 }
243 }
244
245 // Inform listeners that a method has been exited due to an exception.
246 void MethodUnwindEvent(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800247 mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800248 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
249
250 // Inform listeners that the dex pc has moved (only supported by the interpreter).
251 void DexPcMovedEvent(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800252 mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800253 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200254 if (UNLIKELY(HasDexPcListeners())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800255 DexPcMovedEventImpl(thread, this_object, method, dex_pc);
256 }
257 }
258
259 // Inform listeners that an exception was caught.
260 void ExceptionCaughtEvent(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -0700261 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
Sebastien Hertz947ff082013-09-17 14:10:13 +0200262 mirror::Throwable* exception_object) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800263 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
264
265 // Called when an instrumented method is entered. The intended link register (lr) is saved so
266 // that returning causes a branch to the method exit stub. Generates method enter events.
267 void PushInstrumentationStackFrame(Thread* self, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700268 mirror::ArtMethod* method, uintptr_t lr,
Jeff Hao9a916d32013-06-27 18:45:37 -0700269 bool interpreter_entry)
Ian Rogers62d6c772013-02-27 08:32:07 -0800270 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
271
272 // Called when an instrumented method is exited. Removes the pushed instrumentation frame
273 // returning the intended link register. Generates method exit events.
274 uint64_t PopInstrumentationStackFrame(Thread* self, uintptr_t* return_pc, uint64_t gpr_result,
275 uint64_t fpr_result)
276 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
277
278 // Pops an instrumentation frame from the current thread and generate an unwind event.
279 void PopMethodForUnwind(Thread* self, bool is_deoptimization) const
280 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
281
282 // Call back for configure stubs.
283 bool InstallStubsForClass(mirror::Class* klass) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800284
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100285 void InstallStubsForMethod(mirror::ArtMethod* method)
286 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
287
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700288 void VisitRoots(RootCallback* callback, void* arg) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
289 LOCKS_EXCLUDED(deoptimized_methods_lock_);
290
jeffhao725a9572012-11-13 18:20:12 -0800291 private:
Ian Rogers62d6c772013-02-27 08:32:07 -0800292 // Does the job of installing or removing instrumentation code within methods.
293 void ConfigureStubs(bool require_entry_exit_stubs, bool require_interpreter)
294 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700295 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_,
296 deoptimized_methods_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800297
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200298 void UpdateInterpreterHandlerTable() {
299 interpreter_handler_table_ = IsActive() ? kAlternativeHandlerTable : kMainHandlerTable;
300 }
301
Mathieu Chartier661974a2014-01-09 11:23:53 -0800302 // No thread safety analysis to get around SetQuickAllocEntryPointsInstrumented requiring
303 // exclusive access to mutator lock which you can't get if the runtime isn't started.
304 void SetEntrypointsInstrumented(bool instrumented) NO_THREAD_SAFETY_ANALYSIS;
305
Ian Rogers62d6c772013-02-27 08:32:07 -0800306 void MethodEnterEventImpl(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800307 mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800308 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
309 void MethodExitEventImpl(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800310 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800311 uint32_t dex_pc, const JValue& return_value) const
312 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
313 void DexPcMovedEventImpl(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800314 mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800315 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800316
Brian Carlstromea46f952013-07-30 01:26:50 -0700317 // Have we hijacked ArtMethod::code_ so that it calls instrumentation/interpreter code?
Ian Rogers62d6c772013-02-27 08:32:07 -0800318 bool instrumentation_stubs_installed_;
319
Brian Carlstromea46f952013-07-30 01:26:50 -0700320 // Have we hijacked ArtMethod::code_ to reference the enter/exit stubs?
Ian Rogers62d6c772013-02-27 08:32:07 -0800321 bool entry_exit_stubs_installed_;
322
Brian Carlstromea46f952013-07-30 01:26:50 -0700323 // Have we hijacked ArtMethod::code_ to reference the enter interpreter stub?
Ian Rogers62d6c772013-02-27 08:32:07 -0800324 bool interpreter_stubs_installed_;
325
326 // Do we need the fidelity of events that we only get from running within the interpreter?
327 bool interpret_only_;
328
329 // Did the runtime request we only run in the interpreter? ie -Xint mode.
330 bool forced_interpret_only_;
331
332 // Do we have any listeners for method entry events? Short-cut to avoid taking the
333 // instrumentation_lock_.
334 bool have_method_entry_listeners_;
335
336 // Do we have any listeners for method exit events? Short-cut to avoid taking the
337 // instrumentation_lock_.
338 bool have_method_exit_listeners_;
339
340 // Do we have any listeners for method unwind events? Short-cut to avoid taking the
341 // instrumentation_lock_.
342 bool have_method_unwind_listeners_;
343
344 // Do we have any listeners for dex move events? Short-cut to avoid taking the
345 // instrumentation_lock_.
346 bool have_dex_pc_listeners_;
347
348 // Do we have any exception caught listeners? Short-cut to avoid taking the instrumentation_lock_.
349 bool have_exception_caught_listeners_;
350
351 // The event listeners, written to with the mutator_lock_ exclusively held.
352 std::list<InstrumentationListener*> method_entry_listeners_ GUARDED_BY(Locks::mutator_lock_);
353 std::list<InstrumentationListener*> method_exit_listeners_ GUARDED_BY(Locks::mutator_lock_);
354 std::list<InstrumentationListener*> method_unwind_listeners_ GUARDED_BY(Locks::mutator_lock_);
355 std::list<InstrumentationListener*> dex_pc_listeners_ GUARDED_BY(Locks::mutator_lock_);
356 std::list<InstrumentationListener*> exception_caught_listeners_ GUARDED_BY(Locks::mutator_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800357
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100358 // The set of methods being deoptimized (by the debugger) which must be executed with interpreter
359 // only.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700360 mutable ReaderWriterMutex deoptimized_methods_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
361 std::set<mirror::ArtMethod*> deoptimized_methods_ GUARDED_BY(deoptimized_methods_lock_);
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100362 bool deoptimization_enabled_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100363
Ian Rogersfa824272013-11-05 16:12:57 -0800364 // Current interpreter handler table. This is updated each time the thread state flags are
365 // modified.
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200366 InterpreterHandlerTable interpreter_handler_table_;
367
Ian Rogersfa824272013-11-05 16:12:57 -0800368 // Greater than 0 if quick alloc entry points instrumented.
369 // TODO: The access and changes to this is racy and should be guarded by a lock.
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800370 AtomicInteger quick_alloc_entry_points_instrumentation_counter_;
Ian Rogersfa824272013-11-05 16:12:57 -0800371
jeffhao725a9572012-11-13 18:20:12 -0800372 DISALLOW_COPY_AND_ASSIGN(Instrumentation);
373};
374
Ian Rogers62d6c772013-02-27 08:32:07 -0800375// An element in the instrumentation side stack maintained in art::Thread.
376struct InstrumentationStackFrame {
Brian Carlstromea46f952013-07-30 01:26:50 -0700377 InstrumentationStackFrame(mirror::Object* this_object, mirror::ArtMethod* method,
Jeff Hao9a916d32013-06-27 18:45:37 -0700378 uintptr_t return_pc, size_t frame_id, bool interpreter_entry)
379 : this_object_(this_object), method_(method), return_pc_(return_pc), frame_id_(frame_id),
380 interpreter_entry_(interpreter_entry) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800381 }
382
383 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
384
385 mirror::Object* this_object_;
Brian Carlstromea46f952013-07-30 01:26:50 -0700386 mirror::ArtMethod* method_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100387 uintptr_t return_pc_;
388 size_t frame_id_;
389 bool interpreter_entry_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800390};
391
392} // namespace instrumentation
jeffhao725a9572012-11-13 18:20:12 -0800393} // namespace art
394
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700395#endif // ART_RUNTIME_INSTRUMENTATION_H_