blob: d7a0b4d3a7312de6c2972ef405969388f5acb6fc [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 Rogers62d6c772013-02-27 08:32:07 -080022#include "locks.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080023
24#include <stdint.h>
Sebastien Hertz138dbfc2013-12-04 18:15:25 +010025#include <set>
Ian Rogers62d6c772013-02-27 08:32:07 -080026#include <list>
jeffhao725a9572012-11-13 18:20:12 -080027
28namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029namespace mirror {
Brian Carlstromea46f952013-07-30 01:26:50 -070030 class ArtMethod;
31 class Class;
32 class Object;
33 class Throwable;
Ian Rogers62d6c772013-02-27 08:32:07 -080034} // namespace mirror
35union JValue;
jeffhao725a9572012-11-13 18:20:12 -080036class Thread;
Ian Rogers62d6c772013-02-27 08:32:07 -080037class ThrowLocation;
jeffhao725a9572012-11-13 18:20:12 -080038
Ian Rogers62d6c772013-02-27 08:32:07 -080039namespace instrumentation {
jeffhao725a9572012-11-13 18:20:12 -080040
Sebastien Hertzee1997a2013-09-19 14:47:09 +020041// Interpreter handler tables.
42enum InterpreterHandlerTable {
43 kMainHandlerTable = 0, // Main handler table: no suspend check, no instrumentation.
44 kAlternativeHandlerTable = 1, // Alternative handler table: suspend check and/or instrumentation
45 // enabled.
46 kNumHandlerTables
47};
48
Ian Rogers62d6c772013-02-27 08:32:07 -080049// Instrumentation event listener API. Registered listeners will get the appropriate call back for
50// the events they are listening for. The call backs supply the thread, method and dex_pc the event
51// occurred upon. The thread may or may not be Thread::Current().
52struct InstrumentationListener {
53 InstrumentationListener() {}
54 virtual ~InstrumentationListener() {}
55
56 // Call-back for when a method is entered.
57 virtual void MethodEntered(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -080058 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -080059 uint32_t dex_pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
60
61 // Call-back for when a method is exited.
62 // TODO: its likely passing the return value would be useful, however, we may need to get and
63 // parse the shorty to determine what kind of register holds the result.
64 virtual void MethodExited(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -080065 mirror::ArtMethod* method, uint32_t dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -080066 const JValue& return_value)
67 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
68
69 // Call-back for when a method is popped due to an exception throw. A method will either cause a
70 // MethodExited call-back or a MethodUnwind call-back when its activation is removed.
Sebastien Hertz51db44a2013-11-19 10:00:29 +010071 virtual void MethodUnwind(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -080072 mirror::ArtMethod* method, uint32_t dex_pc)
Sebastien Hertz51db44a2013-11-19 10:00:29 +010073 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
Ian Rogers62d6c772013-02-27 08:32:07 -080074
75 // Call-back for when the dex pc moves in a method.
76 virtual void DexPcMoved(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -080077 mirror::ArtMethod* method, uint32_t new_dex_pc)
Ian Rogers62d6c772013-02-27 08:32:07 -080078 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
79
80 // Call-back when an exception is caught.
81 virtual void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -070082 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -080083 mirror::Throwable* exception_object)
84 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
jeffhao725a9572012-11-13 18:20:12 -080085};
86
Ian Rogers62d6c772013-02-27 08:32:07 -080087// Instrumentation is a catch-all for when extra information is required from the runtime. The
88// typical use for instrumentation is for profiling and debugging. Instrumentation may add stubs
89// to method entry and exit, it may also force execution to be switched to the interpreter and
90// trigger deoptimization.
jeffhao725a9572012-11-13 18:20:12 -080091class Instrumentation {
92 public:
Ian Rogers62d6c772013-02-27 08:32:07 -080093 enum InstrumentationEvent {
94 kMethodEntered = 1,
95 kMethodExited = 2,
96 kMethodUnwind = 4,
97 kDexPcMoved = 8,
98 kExceptionCaught = 16
99 };
jeffhao725a9572012-11-13 18:20:12 -0800100
Ian Rogers62d6c772013-02-27 08:32:07 -0800101 Instrumentation() :
102 instrumentation_stubs_installed_(false), entry_exit_stubs_installed_(false),
103 interpreter_stubs_installed_(false),
104 interpret_only_(false), forced_interpret_only_(false),
105 have_method_entry_listeners_(false), have_method_exit_listeners_(false),
106 have_method_unwind_listeners_(false), have_dex_pc_listeners_(false),
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200107 have_exception_caught_listeners_(false),
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100108 deoptimization_enabled_(false),
Ian Rogersfa824272013-11-05 16:12:57 -0800109 interpreter_handler_table_(kMainHandlerTable),
110 quick_alloc_entry_points_instrumentation_counter_(0) {}
jeffhao725a9572012-11-13 18:20:12 -0800111
Ian Rogers62d6c772013-02-27 08:32:07 -0800112 // Add a listener to be notified of the masked together sent of instrumentation events. This
113 // suspend the runtime to install stubs. You are expected to hold the mutator lock as a proxy
114 // for saying you should have suspended all threads (installing stubs while threads are running
115 // will break).
116 void AddListener(InstrumentationListener* listener, uint32_t events)
117 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
118 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800119
Ian Rogers62d6c772013-02-27 08:32:07 -0800120 // Removes a listener possibly removing instrumentation stubs.
121 void RemoveListener(InstrumentationListener* listener, uint32_t events)
122 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
123 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800124
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100125 // Deoptimization.
126 void EnableDeoptimization() EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
127 void DisableDeoptimization() EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100128 bool ShouldNotifyMethodEnterExitEvents() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100129
130 // Executes everything with interpreter.
131 void DeoptimizeEverything()
132 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
133 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
134
135 // Executes everything with compiled code (or interpreter if there is no code).
136 void UndeoptimizeEverything()
137 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
138 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
139
140 // Deoptimize a method by forcing its execution with the interpreter. Nevertheless, a static
141 // method (except a class initializer) set to the resolution trampoline will be deoptimized only
142 // once its declaring class is initialized.
143 void Deoptimize(mirror::ArtMethod* method)
144 LOCKS_EXCLUDED(Locks::thread_list_lock_)
145 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
146
147 // Undeoptimze the method by restoring its entrypoints. Nevertheless, a static method
148 // (except a class initializer) set to the resolution trampoline will be updated only once its
149 // declaring class is initialized.
150 void Undeoptimize(mirror::ArtMethod* method)
151 LOCKS_EXCLUDED(Locks::thread_list_lock_)
152 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
153
154 bool IsDeoptimized(mirror::ArtMethod* method) const;
155
156 // Enable method tracing by installing instrumentation entry/exit stubs.
157 void EnableMethodTracing()
158 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
159 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
160
161 // Disable method tracing by uninstalling instrumentation entry/exit stubs.
162 void DisableMethodTracing()
163 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
164 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
165
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200166 InterpreterHandlerTable GetInterpreterHandlerTable() const {
167 return interpreter_handler_table_;
168 }
169
Mathieu Chartierd8891782014-03-02 13:28:37 -0800170 void InstrumentQuickAllocEntryPoints() LOCKS_EXCLUDED(Locks::thread_list_lock_,
171 Locks::runtime_shutdown_lock_);
172 void UninstrumentQuickAllocEntryPoints() LOCKS_EXCLUDED(Locks::thread_list_lock_,
173 Locks::runtime_shutdown_lock_);
174 void ResetQuickAllocEntryPoints() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_);
Ian Rogersfa824272013-11-05 16:12:57 -0800175
Ian Rogers62d6c772013-02-27 08:32:07 -0800176 // Update the code of a method respecting any installed stubs.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800177 void UpdateMethodsCode(mirror::ArtMethod* method, const void* quick_code,
178 const void* portable_code, bool have_portable_code) const
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100179 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800180
181 // Get the quick code for the given method. More efficient than asking the class linker as it
182 // will short-cut to GetCode if instrumentation and static method resolution stubs aren't
183 // installed.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800184 const void* GetQuickCodeFor(mirror::ArtMethod* method) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800185 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
186
187 void ForceInterpretOnly() {
188 interpret_only_ = true;
189 forced_interpret_only_ = true;
190 }
191
Brian Carlstromea46f952013-07-30 01:26:50 -0700192 // Called by ArtMethod::Invoke to determine dispatch mechanism.
Ian Rogers62d6c772013-02-27 08:32:07 -0800193 bool InterpretOnly() const {
194 return interpret_only_;
195 }
196
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -0800197 bool IsForcedInterpretOnly() const {
198 return forced_interpret_only_;
199 }
200
Ian Rogers62d6c772013-02-27 08:32:07 -0800201 bool ShouldPortableCodeDeoptimize() const {
202 return instrumentation_stubs_installed_;
203 }
204
205 bool AreExitStubsInstalled() const {
206 return instrumentation_stubs_installed_;
207 }
208
Sebastien Hertz74109f62013-06-07 17:40:09 +0200209 bool HasMethodEntryListeners() const {
210 return have_method_entry_listeners_;
211 }
212
213 bool HasMethodExitListeners() const {
214 return have_method_exit_listeners_;
215 }
216
217 bool HasDexPcListeners() const {
218 return have_dex_pc_listeners_;
219 }
220
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200221 bool IsActive() const {
222 return have_dex_pc_listeners_ || have_method_entry_listeners_ || have_method_exit_listeners_ ||
223 have_exception_caught_listeners_ || have_method_unwind_listeners_;
224 }
225
Ian Rogers62d6c772013-02-27 08:32:07 -0800226 // Inform listeners that a method has been entered. A dex PC is provided as we may install
227 // listeners into executing code and get method enter events for methods already on the stack.
228 void MethodEnterEvent(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800229 mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800230 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200231 if (UNLIKELY(HasMethodEntryListeners())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800232 MethodEnterEventImpl(thread, this_object, method, dex_pc);
233 }
234 }
235
236 // Inform listeners that a method has been exited.
237 void MethodExitEvent(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800238 mirror::ArtMethod* method, uint32_t dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -0800239 const JValue& return_value) const
240 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200241 if (UNLIKELY(HasMethodExitListeners())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800242 MethodExitEventImpl(thread, this_object, method, dex_pc, return_value);
243 }
244 }
245
246 // Inform listeners that a method has been exited due to an exception.
247 void MethodUnwindEvent(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800248 mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800249 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
250
251 // Inform listeners that the dex pc has moved (only supported by the interpreter).
252 void DexPcMovedEvent(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800253 mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800254 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200255 if (UNLIKELY(HasDexPcListeners())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800256 DexPcMovedEventImpl(thread, this_object, method, dex_pc);
257 }
258 }
259
260 // Inform listeners that an exception was caught.
261 void ExceptionCaughtEvent(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -0700262 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
Sebastien Hertz947ff082013-09-17 14:10:13 +0200263 mirror::Throwable* exception_object) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800264 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
265
266 // Called when an instrumented method is entered. The intended link register (lr) is saved so
267 // that returning causes a branch to the method exit stub. Generates method enter events.
268 void PushInstrumentationStackFrame(Thread* self, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700269 mirror::ArtMethod* method, uintptr_t lr,
Jeff Hao9a916d32013-06-27 18:45:37 -0700270 bool interpreter_entry)
Ian Rogers62d6c772013-02-27 08:32:07 -0800271 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
272
273 // Called when an instrumented method is exited. Removes the pushed instrumentation frame
274 // returning the intended link register. Generates method exit events.
275 uint64_t PopInstrumentationStackFrame(Thread* self, uintptr_t* return_pc, uint64_t gpr_result,
276 uint64_t fpr_result)
277 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
278
279 // Pops an instrumentation frame from the current thread and generate an unwind event.
280 void PopMethodForUnwind(Thread* self, bool is_deoptimization) const
281 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
282
283 // Call back for configure stubs.
284 bool InstallStubsForClass(mirror::Class* klass) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800285
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100286 void InstallStubsForMethod(mirror::ArtMethod* method)
287 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
288
jeffhao725a9572012-11-13 18:20:12 -0800289 private:
Ian Rogers62d6c772013-02-27 08:32:07 -0800290 // Does the job of installing or removing instrumentation code within methods.
291 void ConfigureStubs(bool require_entry_exit_stubs, bool require_interpreter)
292 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
293 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800294
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200295 void UpdateInterpreterHandlerTable() {
296 interpreter_handler_table_ = IsActive() ? kAlternativeHandlerTable : kMainHandlerTable;
297 }
298
Ian Rogers62d6c772013-02-27 08:32:07 -0800299 void MethodEnterEventImpl(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800300 mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800301 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
302 void MethodExitEventImpl(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800303 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800304 uint32_t dex_pc, const JValue& return_value) const
305 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
306 void DexPcMovedEventImpl(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_);
jeffhao725a9572012-11-13 18:20:12 -0800309
Brian Carlstromea46f952013-07-30 01:26:50 -0700310 // Have we hijacked ArtMethod::code_ so that it calls instrumentation/interpreter code?
Ian Rogers62d6c772013-02-27 08:32:07 -0800311 bool instrumentation_stubs_installed_;
312
Brian Carlstromea46f952013-07-30 01:26:50 -0700313 // Have we hijacked ArtMethod::code_ to reference the enter/exit stubs?
Ian Rogers62d6c772013-02-27 08:32:07 -0800314 bool entry_exit_stubs_installed_;
315
Brian Carlstromea46f952013-07-30 01:26:50 -0700316 // Have we hijacked ArtMethod::code_ to reference the enter interpreter stub?
Ian Rogers62d6c772013-02-27 08:32:07 -0800317 bool interpreter_stubs_installed_;
318
319 // Do we need the fidelity of events that we only get from running within the interpreter?
320 bool interpret_only_;
321
322 // Did the runtime request we only run in the interpreter? ie -Xint mode.
323 bool forced_interpret_only_;
324
325 // Do we have any listeners for method entry events? Short-cut to avoid taking the
326 // instrumentation_lock_.
327 bool have_method_entry_listeners_;
328
329 // Do we have any listeners for method exit events? Short-cut to avoid taking the
330 // instrumentation_lock_.
331 bool have_method_exit_listeners_;
332
333 // Do we have any listeners for method unwind events? Short-cut to avoid taking the
334 // instrumentation_lock_.
335 bool have_method_unwind_listeners_;
336
337 // Do we have any listeners for dex move events? Short-cut to avoid taking the
338 // instrumentation_lock_.
339 bool have_dex_pc_listeners_;
340
341 // Do we have any exception caught listeners? Short-cut to avoid taking the instrumentation_lock_.
342 bool have_exception_caught_listeners_;
343
344 // The event listeners, written to with the mutator_lock_ exclusively held.
345 std::list<InstrumentationListener*> method_entry_listeners_ GUARDED_BY(Locks::mutator_lock_);
346 std::list<InstrumentationListener*> method_exit_listeners_ GUARDED_BY(Locks::mutator_lock_);
347 std::list<InstrumentationListener*> method_unwind_listeners_ GUARDED_BY(Locks::mutator_lock_);
348 std::list<InstrumentationListener*> dex_pc_listeners_ GUARDED_BY(Locks::mutator_lock_);
349 std::list<InstrumentationListener*> exception_caught_listeners_ GUARDED_BY(Locks::mutator_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800350
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100351 // The set of methods being deoptimized (by the debugger) which must be executed with interpreter
352 // only.
353 // TODO we need to visit these methods as roots.
354 std::set<mirror::ArtMethod*> deoptimized_methods_;
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100355 bool deoptimization_enabled_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100356
Ian Rogersfa824272013-11-05 16:12:57 -0800357 // Current interpreter handler table. This is updated each time the thread state flags are
358 // modified.
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200359 InterpreterHandlerTable interpreter_handler_table_;
360
Ian Rogersfa824272013-11-05 16:12:57 -0800361 // Greater than 0 if quick alloc entry points instrumented.
362 // TODO: The access and changes to this is racy and should be guarded by a lock.
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800363 AtomicInteger quick_alloc_entry_points_instrumentation_counter_;
Ian Rogersfa824272013-11-05 16:12:57 -0800364
jeffhao725a9572012-11-13 18:20:12 -0800365 DISALLOW_COPY_AND_ASSIGN(Instrumentation);
366};
367
Ian Rogers62d6c772013-02-27 08:32:07 -0800368// An element in the instrumentation side stack maintained in art::Thread.
369struct InstrumentationStackFrame {
Brian Carlstromea46f952013-07-30 01:26:50 -0700370 InstrumentationStackFrame(mirror::Object* this_object, mirror::ArtMethod* method,
Jeff Hao9a916d32013-06-27 18:45:37 -0700371 uintptr_t return_pc, size_t frame_id, bool interpreter_entry)
372 : this_object_(this_object), method_(method), return_pc_(return_pc), frame_id_(frame_id),
373 interpreter_entry_(interpreter_entry) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800374 }
375
376 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
377
378 mirror::Object* this_object_;
Brian Carlstromea46f952013-07-30 01:26:50 -0700379 mirror::ArtMethod* method_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100380 uintptr_t return_pc_;
381 size_t frame_id_;
382 bool interpreter_entry_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800383};
384
385} // namespace instrumentation
jeffhao725a9572012-11-13 18:20:12 -0800386} // namespace art
387
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700388#endif // ART_RUNTIME_INSTRUMENTATION_H_