blob: effa9f7b2e50093836231a57a780c54638fd1180 [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>
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -070022#include <map>
Ian Rogers576ca0c2014-06-06 15:58:22 -070023
Ian Rogersd582fa42014-11-05 23:46:43 -080024#include "arch/instruction_set.h"
Ian Rogersef7d42f2014-01-06 12:55:46 -080025#include "atomic.h"
Elliott Hughes76160052012-12-12 16:31:20 -080026#include "base/macros.h"
Ian Rogers719d1a32014-03-06 12:13:39 -080027#include "base/mutex.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070028#include "gc_root.h"
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070029#include "object_callbacks.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080030
jeffhao725a9572012-11-13 18:20:12 -080031namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080032namespace mirror {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +020033 class ArtField;
Brian Carlstromea46f952013-07-30 01:26:50 -070034 class ArtMethod;
35 class Class;
36 class Object;
37 class Throwable;
Ian Rogers62d6c772013-02-27 08:32:07 -080038} // namespace mirror
39union JValue;
jeffhao725a9572012-11-13 18:20:12 -080040class Thread;
Ian Rogers62d6c772013-02-27 08:32:07 -080041class ThrowLocation;
jeffhao725a9572012-11-13 18:20:12 -080042
Ian Rogers62d6c772013-02-27 08:32:07 -080043namespace instrumentation {
jeffhao725a9572012-11-13 18:20:12 -080044
Sebastien Hertzee1997a2013-09-19 14:47:09 +020045// Interpreter handler tables.
46enum InterpreterHandlerTable {
47 kMainHandlerTable = 0, // Main handler table: no suspend check, no instrumentation.
48 kAlternativeHandlerTable = 1, // Alternative handler table: suspend check and/or instrumentation
49 // enabled.
50 kNumHandlerTables
51};
52
Ian Rogers62d6c772013-02-27 08:32:07 -080053// Instrumentation event listener API. Registered listeners will get the appropriate call back for
54// the events they are listening for. The call backs supply the thread, method and dex_pc the event
55// occurred upon. The thread may or may not be Thread::Current().
56struct InstrumentationListener {
57 InstrumentationListener() {}
58 virtual ~InstrumentationListener() {}
59
60 // Call-back for when a method is entered.
61 virtual void MethodEntered(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -080062 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -080063 uint32_t dex_pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
64
65 // Call-back for when a method is exited.
66 // TODO: its likely passing the return value would be useful, however, we may need to get and
67 // parse the shorty to determine what kind of register holds the result.
68 virtual void MethodExited(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -080069 mirror::ArtMethod* method, uint32_t dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -080070 const JValue& return_value)
71 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
72
73 // Call-back for when a method is popped due to an exception throw. A method will either cause a
74 // MethodExited call-back or a MethodUnwind call-back when its activation is removed.
Sebastien Hertz51db44a2013-11-19 10:00:29 +010075 virtual void MethodUnwind(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -080076 mirror::ArtMethod* method, uint32_t dex_pc)
Sebastien Hertz51db44a2013-11-19 10:00:29 +010077 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
Ian Rogers62d6c772013-02-27 08:32:07 -080078
79 // Call-back for when the dex pc moves in a method.
80 virtual void DexPcMoved(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -080081 mirror::ArtMethod* method, uint32_t new_dex_pc)
Ian Rogers62d6c772013-02-27 08:32:07 -080082 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
83
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +020084 // Call-back for when we read from a field.
85 virtual void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
86 uint32_t dex_pc, mirror::ArtField* field) = 0;
87
88 // Call-back for when we write into a field.
89 virtual void FieldWritten(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
90 uint32_t dex_pc, mirror::ArtField* field, const JValue& field_value) = 0;
91
Ian Rogers62d6c772013-02-27 08:32:07 -080092 // Call-back when an exception is caught.
93 virtual void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -070094 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -080095 mirror::Throwable* exception_object)
96 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
jeffhao725a9572012-11-13 18:20:12 -080097};
98
Ian Rogers62d6c772013-02-27 08:32:07 -080099// Instrumentation is a catch-all for when extra information is required from the runtime. The
100// typical use for instrumentation is for profiling and debugging. Instrumentation may add stubs
101// to method entry and exit, it may also force execution to be switched to the interpreter and
102// trigger deoptimization.
jeffhao725a9572012-11-13 18:20:12 -0800103class Instrumentation {
104 public:
Ian Rogers62d6c772013-02-27 08:32:07 -0800105 enum InstrumentationEvent {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700106 kMethodEntered = 1, // 1 << 0
107 kMethodExited = 2, // 1 << 1
108 kMethodUnwind = 4, // 1 << 2
109 kDexPcMoved = 8, // 1 << 3
110 kFieldRead = 16, // 1 << 4,
111 kFieldWritten = 32, // 1 << 5
112 kExceptionCaught = 64, // 1 << 6
Ian Rogers62d6c772013-02-27 08:32:07 -0800113 };
jeffhao725a9572012-11-13 18:20:12 -0800114
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700115 Instrumentation();
jeffhao725a9572012-11-13 18:20:12 -0800116
Ian Rogers62d6c772013-02-27 08:32:07 -0800117 // Add a listener to be notified of the masked together sent of instrumentation events. This
118 // suspend the runtime to install stubs. You are expected to hold the mutator lock as a proxy
119 // for saying you should have suspended all threads (installing stubs while threads are running
120 // will break).
121 void AddListener(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
Ian Rogers62d6c772013-02-27 08:32:07 -0800125 // Removes a listener possibly removing instrumentation stubs.
126 void RemoveListener(InstrumentationListener* listener, uint32_t events)
127 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
128 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800129
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100130 // Deoptimization.
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100131 void EnableDeoptimization()
132 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700133 LOCKS_EXCLUDED(deoptimized_methods_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100134 void DisableDeoptimization()
135 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100136 LOCKS_EXCLUDED(deoptimized_methods_lock_);
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100137 bool AreAllMethodsDeoptimized() const {
138 return interpreter_stubs_installed_;
139 }
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100140 bool ShouldNotifyMethodEnterExitEvents() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100141
142 // Executes everything with interpreter.
143 void DeoptimizeEverything()
144 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
145 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
146
147 // Executes everything with compiled code (or interpreter if there is no code).
148 void UndeoptimizeEverything()
149 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
150 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
151
152 // Deoptimize a method by forcing its execution with the interpreter. Nevertheless, a static
153 // method (except a class initializer) set to the resolution trampoline will be deoptimized only
154 // once its declaring class is initialized.
155 void Deoptimize(mirror::ArtMethod* method)
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700156 LOCKS_EXCLUDED(Locks::thread_list_lock_, deoptimized_methods_lock_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100157 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
158
159 // Undeoptimze the method by restoring its entrypoints. Nevertheless, a static method
160 // (except a class initializer) set to the resolution trampoline will be updated only once its
161 // declaring class is initialized.
162 void Undeoptimize(mirror::ArtMethod* method)
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100163 LOCKS_EXCLUDED(Locks::thread_list_lock_, deoptimized_methods_lock_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100164 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
165
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700166 bool IsDeoptimized(mirror::ArtMethod* method)
167 LOCKS_EXCLUDED(deoptimized_methods_lock_)
168 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100169
170 // Enable method tracing by installing instrumentation entry/exit stubs.
171 void EnableMethodTracing()
172 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
173 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
174
175 // Disable method tracing by uninstalling instrumentation entry/exit stubs.
176 void DisableMethodTracing()
177 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
178 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
179
Sebastien Hertzed2be172014-08-19 15:33:43 +0200180 InterpreterHandlerTable GetInterpreterHandlerTable() const
181 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200182 return interpreter_handler_table_;
183 }
184
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700185 void InstrumentQuickAllocEntryPoints() LOCKS_EXCLUDED(Locks::instrument_entrypoints_lock_);
186 void UninstrumentQuickAllocEntryPoints() LOCKS_EXCLUDED(Locks::instrument_entrypoints_lock_);
187 void InstrumentQuickAllocEntryPointsLocked()
188 EXCLUSIVE_LOCKS_REQUIRED(Locks::instrument_entrypoints_lock_)
Jeff Hao69dbec62014-09-15 18:03:41 -0700189 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::runtime_shutdown_lock_);
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700190 void UninstrumentQuickAllocEntryPointsLocked()
191 EXCLUSIVE_LOCKS_REQUIRED(Locks::instrument_entrypoints_lock_)
Jeff Hao69dbec62014-09-15 18:03:41 -0700192 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::runtime_shutdown_lock_);
Mathieu Chartierd8891782014-03-02 13:28:37 -0800193 void ResetQuickAllocEntryPoints() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_);
Ian Rogersfa824272013-11-05 16:12:57 -0800194
Ian Rogers62d6c772013-02-27 08:32:07 -0800195 // Update the code of a method respecting any installed stubs.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800196 void UpdateMethodsCode(mirror::ArtMethod* method, const void* quick_code,
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700197 const void* portable_code, bool have_portable_code)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100198 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800199
200 // Get the quick code for the given method. More efficient than asking the class linker as it
201 // will short-cut to GetCode if instrumentation and static method resolution stubs aren't
202 // installed.
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800203 const void* GetQuickCodeFor(mirror::ArtMethod* method, size_t pointer_size) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800204 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
205
206 void ForceInterpretOnly() {
207 interpret_only_ = true;
208 forced_interpret_only_ = true;
209 }
210
Brian Carlstromea46f952013-07-30 01:26:50 -0700211 // Called by ArtMethod::Invoke to determine dispatch mechanism.
Ian Rogers62d6c772013-02-27 08:32:07 -0800212 bool InterpretOnly() const {
213 return interpret_only_;
214 }
215
Hiroshi Yamauchi563b47c2014-02-28 17:18:37 -0800216 bool IsForcedInterpretOnly() const {
217 return forced_interpret_only_;
218 }
219
Ian Rogers62d6c772013-02-27 08:32:07 -0800220 bool ShouldPortableCodeDeoptimize() const {
221 return instrumentation_stubs_installed_;
222 }
223
224 bool AreExitStubsInstalled() const {
225 return instrumentation_stubs_installed_;
226 }
227
Sebastien Hertzed2be172014-08-19 15:33:43 +0200228 bool HasMethodEntryListeners() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200229 return have_method_entry_listeners_;
230 }
231
Sebastien Hertzed2be172014-08-19 15:33:43 +0200232 bool HasMethodExitListeners() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200233 return have_method_exit_listeners_;
234 }
235
Sebastien Hertzed2be172014-08-19 15:33:43 +0200236 bool HasDexPcListeners() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200237 return have_dex_pc_listeners_;
238 }
239
Sebastien Hertzed2be172014-08-19 15:33:43 +0200240 bool HasFieldReadListeners() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200241 return have_field_read_listeners_;
242 }
243
Sebastien Hertzed2be172014-08-19 15:33:43 +0200244 bool HasFieldWriteListeners() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200245 return have_field_write_listeners_;
246 }
247
Sebastien Hertzed2be172014-08-19 15:33:43 +0200248 bool HasExceptionCaughtListeners() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz9f102032014-05-23 08:59:42 +0200249 return have_exception_caught_listeners_;
250 }
251
Sebastien Hertzed2be172014-08-19 15:33:43 +0200252 bool IsActive() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200253 return have_dex_pc_listeners_ || have_method_entry_listeners_ || have_method_exit_listeners_ ||
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200254 have_field_read_listeners_ || have_field_write_listeners_ ||
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200255 have_exception_caught_listeners_ || have_method_unwind_listeners_;
256 }
257
Ian Rogers62d6c772013-02-27 08:32:07 -0800258 // Inform listeners that a method has been entered. A dex PC is provided as we may install
259 // listeners into executing code and get method enter events for methods already on the stack.
260 void MethodEnterEvent(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800261 mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800262 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200263 if (UNLIKELY(HasMethodEntryListeners())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800264 MethodEnterEventImpl(thread, this_object, method, dex_pc);
265 }
266 }
267
268 // Inform listeners that a method has been exited.
269 void MethodExitEvent(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800270 mirror::ArtMethod* method, uint32_t dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -0800271 const JValue& return_value) const
272 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200273 if (UNLIKELY(HasMethodExitListeners())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800274 MethodExitEventImpl(thread, this_object, method, dex_pc, return_value);
275 }
276 }
277
278 // Inform listeners that a method has been exited due to an exception.
279 void MethodUnwindEvent(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800280 mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800281 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
282
283 // Inform listeners that the dex pc has moved (only supported by the interpreter).
284 void DexPcMovedEvent(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800285 mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800286 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200287 if (UNLIKELY(HasDexPcListeners())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800288 DexPcMovedEventImpl(thread, this_object, method, dex_pc);
289 }
290 }
291
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200292 // Inform listeners that we read a field (only supported by the interpreter).
293 void FieldReadEvent(Thread* thread, mirror::Object* this_object,
294 mirror::ArtMethod* method, uint32_t dex_pc,
295 mirror::ArtField* field) const
296 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
297 if (UNLIKELY(HasFieldReadListeners())) {
298 FieldReadEventImpl(thread, this_object, method, dex_pc, field);
299 }
300 }
301
302 // Inform listeners that we write a field (only supported by the interpreter).
303 void FieldWriteEvent(Thread* thread, mirror::Object* this_object,
304 mirror::ArtMethod* method, uint32_t dex_pc,
305 mirror::ArtField* field, const JValue& field_value) const
306 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
307 if (UNLIKELY(HasFieldWriteListeners())) {
308 FieldWriteEventImpl(thread, this_object, method, dex_pc, field, field_value);
309 }
310 }
311
Ian Rogers62d6c772013-02-27 08:32:07 -0800312 // Inform listeners that an exception was caught.
313 void ExceptionCaughtEvent(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -0700314 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
Sebastien Hertz947ff082013-09-17 14:10:13 +0200315 mirror::Throwable* exception_object) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800316 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
317
318 // Called when an instrumented method is entered. The intended link register (lr) is saved so
319 // that returning causes a branch to the method exit stub. Generates method enter events.
320 void PushInstrumentationStackFrame(Thread* self, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700321 mirror::ArtMethod* method, uintptr_t lr,
Jeff Hao9a916d32013-06-27 18:45:37 -0700322 bool interpreter_entry)
Ian Rogers62d6c772013-02-27 08:32:07 -0800323 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
324
325 // Called when an instrumented method is exited. Removes the pushed instrumentation frame
326 // returning the intended link register. Generates method exit events.
Andreas Gamped58342c2014-06-05 14:18:08 -0700327 TwoWordReturn PopInstrumentationStackFrame(Thread* self, uintptr_t* return_pc,
328 uint64_t gpr_result, uint64_t fpr_result)
Ian Rogers62d6c772013-02-27 08:32:07 -0800329 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
330
331 // Pops an instrumentation frame from the current thread and generate an unwind event.
332 void PopMethodForUnwind(Thread* self, bool is_deoptimization) const
333 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
334
335 // Call back for configure stubs.
336 bool InstallStubsForClass(mirror::Class* klass) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800337
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100338 void InstallStubsForMethod(mirror::ArtMethod* method)
339 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
340
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700341 void VisitRoots(RootCallback* callback, void* arg) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
342 LOCKS_EXCLUDED(deoptimized_methods_lock_);
343
jeffhao725a9572012-11-13 18:20:12 -0800344 private:
Ian Rogers62d6c772013-02-27 08:32:07 -0800345 // Does the job of installing or removing instrumentation code within methods.
346 void ConfigureStubs(bool require_entry_exit_stubs, bool require_interpreter)
347 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700348 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_,
349 deoptimized_methods_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800350
Sebastien Hertzed2be172014-08-19 15:33:43 +0200351 void UpdateInterpreterHandlerTable() EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200352 interpreter_handler_table_ = IsActive() ? kAlternativeHandlerTable : kMainHandlerTable;
353 }
354
Mathieu Chartier661974a2014-01-09 11:23:53 -0800355 // No thread safety analysis to get around SetQuickAllocEntryPointsInstrumented requiring
356 // exclusive access to mutator lock which you can't get if the runtime isn't started.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700357 void SetEntrypointsInstrumented(bool instrumented) NO_THREAD_SAFETY_ANALYSIS;
Mathieu Chartier661974a2014-01-09 11:23:53 -0800358
Ian Rogers62d6c772013-02-27 08:32:07 -0800359 void MethodEnterEventImpl(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800360 mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800361 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
362 void MethodExitEventImpl(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800363 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800364 uint32_t dex_pc, const JValue& return_value) const
365 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
366 void DexPcMovedEventImpl(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800367 mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800368 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200369 void FieldReadEventImpl(Thread* thread, mirror::Object* this_object,
370 mirror::ArtMethod* method, uint32_t dex_pc,
371 mirror::ArtField* field) const
372 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
373 void FieldWriteEventImpl(Thread* thread, mirror::Object* this_object,
374 mirror::ArtMethod* method, uint32_t dex_pc,
375 mirror::ArtField* field, const JValue& field_value) const
376 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800377
Hiroshi Yamauchi799eb3a2014-07-18 15:38:17 -0700378 // Read barrier-aware utility functions for accessing deoptimized_methods_
379 bool AddDeoptimizedMethod(mirror::ArtMethod* method)
380 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
381 EXCLUSIVE_LOCKS_REQUIRED(deoptimized_methods_lock_);
382 bool FindDeoptimizedMethod(mirror::ArtMethod* method)
383 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
384 SHARED_LOCKS_REQUIRED(deoptimized_methods_lock_);
385 bool RemoveDeoptimizedMethod(mirror::ArtMethod* method)
386 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
387 EXCLUSIVE_LOCKS_REQUIRED(deoptimized_methods_lock_);
388 mirror::ArtMethod* BeginDeoptimizedMethod()
389 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
390 SHARED_LOCKS_REQUIRED(deoptimized_methods_lock_);
391 bool IsDeoptimizedMethodsEmpty() const
392 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
393 SHARED_LOCKS_REQUIRED(deoptimized_methods_lock_);
394
Brian Carlstromea46f952013-07-30 01:26:50 -0700395 // Have we hijacked ArtMethod::code_ so that it calls instrumentation/interpreter code?
Ian Rogers62d6c772013-02-27 08:32:07 -0800396 bool instrumentation_stubs_installed_;
397
Brian Carlstromea46f952013-07-30 01:26:50 -0700398 // Have we hijacked ArtMethod::code_ to reference the enter/exit stubs?
Ian Rogers62d6c772013-02-27 08:32:07 -0800399 bool entry_exit_stubs_installed_;
400
Brian Carlstromea46f952013-07-30 01:26:50 -0700401 // Have we hijacked ArtMethod::code_ to reference the enter interpreter stub?
Ian Rogers62d6c772013-02-27 08:32:07 -0800402 bool interpreter_stubs_installed_;
403
404 // Do we need the fidelity of events that we only get from running within the interpreter?
405 bool interpret_only_;
406
407 // Did the runtime request we only run in the interpreter? ie -Xint mode.
408 bool forced_interpret_only_;
409
410 // Do we have any listeners for method entry events? Short-cut to avoid taking the
411 // instrumentation_lock_.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200412 bool have_method_entry_listeners_ GUARDED_BY(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800413
414 // Do we have any listeners for method exit events? Short-cut to avoid taking the
415 // instrumentation_lock_.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200416 bool have_method_exit_listeners_ GUARDED_BY(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800417
418 // Do we have any listeners for method unwind events? Short-cut to avoid taking the
419 // instrumentation_lock_.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200420 bool have_method_unwind_listeners_ GUARDED_BY(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800421
422 // Do we have any listeners for dex move events? Short-cut to avoid taking the
423 // instrumentation_lock_.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200424 bool have_dex_pc_listeners_ GUARDED_BY(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800425
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200426 // Do we have any listeners for field read events? Short-cut to avoid taking the
427 // instrumentation_lock_.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200428 bool have_field_read_listeners_ GUARDED_BY(Locks::mutator_lock_);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200429
430 // Do we have any listeners for field write events? Short-cut to avoid taking the
431 // instrumentation_lock_.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200432 bool have_field_write_listeners_ GUARDED_BY(Locks::mutator_lock_);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200433
Ian Rogers62d6c772013-02-27 08:32:07 -0800434 // Do we have any exception caught listeners? Short-cut to avoid taking the instrumentation_lock_.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200435 bool have_exception_caught_listeners_ GUARDED_BY(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800436
437 // The event listeners, written to with the mutator_lock_ exclusively held.
438 std::list<InstrumentationListener*> method_entry_listeners_ GUARDED_BY(Locks::mutator_lock_);
439 std::list<InstrumentationListener*> method_exit_listeners_ GUARDED_BY(Locks::mutator_lock_);
440 std::list<InstrumentationListener*> method_unwind_listeners_ GUARDED_BY(Locks::mutator_lock_);
Daniel Mihalyica1d06c2014-08-18 18:45:31 +0200441 std::shared_ptr<std::list<InstrumentationListener*>> dex_pc_listeners_
442 GUARDED_BY(Locks::mutator_lock_);
443 std::shared_ptr<std::list<InstrumentationListener*>> field_read_listeners_
444 GUARDED_BY(Locks::mutator_lock_);
445 std::shared_ptr<std::list<InstrumentationListener*>> field_write_listeners_
446 GUARDED_BY(Locks::mutator_lock_);
447 std::shared_ptr<std::list<InstrumentationListener*>> exception_caught_listeners_
448 GUARDED_BY(Locks::mutator_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800449
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100450 // The set of methods being deoptimized (by the debugger) which must be executed with interpreter
451 // only.
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700452 mutable ReaderWriterMutex deoptimized_methods_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700453 std::multimap<int32_t, GcRoot<mirror::ArtMethod>> deoptimized_methods_
454 GUARDED_BY(deoptimized_methods_lock_);
Sebastien Hertz11d40c22014-02-19 18:00:17 +0100455 bool deoptimization_enabled_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100456
Ian Rogersfa824272013-11-05 16:12:57 -0800457 // Current interpreter handler table. This is updated each time the thread state flags are
458 // modified.
Sebastien Hertzed2be172014-08-19 15:33:43 +0200459 InterpreterHandlerTable interpreter_handler_table_ GUARDED_BY(Locks::mutator_lock_);
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200460
Ian Rogersfa824272013-11-05 16:12:57 -0800461 // Greater than 0 if quick alloc entry points instrumented.
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700462 size_t quick_alloc_entry_points_instrumentation_counter_
463 GUARDED_BY(Locks::instrument_entrypoints_lock_);
Ian Rogersfa824272013-11-05 16:12:57 -0800464
jeffhao725a9572012-11-13 18:20:12 -0800465 DISALLOW_COPY_AND_ASSIGN(Instrumentation);
466};
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700467std::ostream& operator<<(std::ostream& os, const Instrumentation::InstrumentationEvent& rhs);
jeffhao725a9572012-11-13 18:20:12 -0800468
Ian Rogers62d6c772013-02-27 08:32:07 -0800469// An element in the instrumentation side stack maintained in art::Thread.
470struct InstrumentationStackFrame {
Brian Carlstromea46f952013-07-30 01:26:50 -0700471 InstrumentationStackFrame(mirror::Object* this_object, mirror::ArtMethod* method,
Jeff Hao9a916d32013-06-27 18:45:37 -0700472 uintptr_t return_pc, size_t frame_id, bool interpreter_entry)
473 : this_object_(this_object), method_(method), return_pc_(return_pc), frame_id_(frame_id),
474 interpreter_entry_(interpreter_entry) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800475 }
476
477 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
478
479 mirror::Object* this_object_;
Brian Carlstromea46f952013-07-30 01:26:50 -0700480 mirror::ArtMethod* method_;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100481 uintptr_t return_pc_;
482 size_t frame_id_;
483 bool interpreter_entry_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800484};
485
486} // namespace instrumentation
jeffhao725a9572012-11-13 18:20:12 -0800487} // namespace art
488
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700489#endif // ART_RUNTIME_INSTRUMENTATION_H_