blob: 25a4eec976ac12d73efe1b80e76964221a9780ee [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
Elliott Hughes76160052012-12-12 16:31:20 -080020#include "base/macros.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080021#include "locks.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080022
23#include <stdint.h>
Ian Rogers62d6c772013-02-27 08:32:07 -080024#include <list>
jeffhao725a9572012-11-13 18:20:12 -080025
26namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027namespace mirror {
Brian Carlstromea46f952013-07-30 01:26:50 -070028 class ArtMethod;
29 class Class;
30 class Object;
31 class Throwable;
Ian Rogers62d6c772013-02-27 08:32:07 -080032} // namespace mirror
33union JValue;
jeffhao725a9572012-11-13 18:20:12 -080034class Thread;
Ian Rogers62d6c772013-02-27 08:32:07 -080035class ThrowLocation;
jeffhao725a9572012-11-13 18:20:12 -080036
Ian Rogers62d6c772013-02-27 08:32:07 -080037namespace instrumentation {
jeffhao725a9572012-11-13 18:20:12 -080038
Ian Rogers62d6c772013-02-27 08:32:07 -080039const bool kVerboseInstrumentation = false;
40
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,
Brian Carlstromea46f952013-07-30 01:26:50 -070058 const 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,
Brian Carlstromea46f952013-07-30 01:26:50 -070065 const 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.
Brian Carlstromea46f952013-07-30 01:26:50 -070071 virtual void MethodUnwind(Thread* thread, const mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -080072 uint32_t dex_pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
73
74 // Call-back for when the dex pc moves in a method.
75 virtual void DexPcMoved(Thread* thread, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -070076 const mirror::ArtMethod* method, uint32_t new_dex_pc)
Ian Rogers62d6c772013-02-27 08:32:07 -080077 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
78
79 // Call-back when an exception is caught.
80 virtual void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -070081 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -080082 mirror::Throwable* exception_object)
83 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
jeffhao725a9572012-11-13 18:20:12 -080084};
85
Ian Rogers62d6c772013-02-27 08:32:07 -080086// Instrumentation is a catch-all for when extra information is required from the runtime. The
87// typical use for instrumentation is for profiling and debugging. Instrumentation may add stubs
88// to method entry and exit, it may also force execution to be switched to the interpreter and
89// trigger deoptimization.
jeffhao725a9572012-11-13 18:20:12 -080090class Instrumentation {
91 public:
Ian Rogers62d6c772013-02-27 08:32:07 -080092 enum InstrumentationEvent {
93 kMethodEntered = 1,
94 kMethodExited = 2,
95 kMethodUnwind = 4,
96 kDexPcMoved = 8,
97 kExceptionCaught = 16
98 };
jeffhao725a9572012-11-13 18:20:12 -080099
Ian Rogers62d6c772013-02-27 08:32:07 -0800100 Instrumentation() :
101 instrumentation_stubs_installed_(false), entry_exit_stubs_installed_(false),
102 interpreter_stubs_installed_(false),
103 interpret_only_(false), forced_interpret_only_(false),
104 have_method_entry_listeners_(false), have_method_exit_listeners_(false),
105 have_method_unwind_listeners_(false), have_dex_pc_listeners_(false),
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200106 have_exception_caught_listeners_(false),
Ian Rogersfa824272013-11-05 16:12:57 -0800107 interpreter_handler_table_(kMainHandlerTable),
108 quick_alloc_entry_points_instrumentation_counter_(0) {}
jeffhao725a9572012-11-13 18:20:12 -0800109
Ian Rogers62d6c772013-02-27 08:32:07 -0800110 // Add a listener to be notified of the masked together sent of instrumentation events. This
111 // suspend the runtime to install stubs. You are expected to hold the mutator lock as a proxy
112 // for saying you should have suspended all threads (installing stubs while threads are running
113 // will break).
114 void AddListener(InstrumentationListener* listener, uint32_t events)
115 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
116 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800117
Ian Rogers62d6c772013-02-27 08:32:07 -0800118 // Removes a listener possibly removing instrumentation stubs.
119 void RemoveListener(InstrumentationListener* listener, uint32_t events)
120 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
121 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800122
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200123 InterpreterHandlerTable GetInterpreterHandlerTable() const {
124 return interpreter_handler_table_;
125 }
126
Ian Rogersfa824272013-11-05 16:12:57 -0800127 void InstrumentQuickAllocEntryPoints() LOCKS_EXCLUDED(Locks::thread_list_lock_);
128 void UninstrumentQuickAllocEntryPoints() LOCKS_EXCLUDED(Locks::thread_list_lock_);
129
Ian Rogers62d6c772013-02-27 08:32:07 -0800130 // Update the code of a method respecting any installed stubs.
Brian Carlstromea46f952013-07-30 01:26:50 -0700131 void UpdateMethodsCode(mirror::ArtMethod* method, const void* code) const;
Ian Rogers62d6c772013-02-27 08:32:07 -0800132
133 // Get the quick code for the given method. More efficient than asking the class linker as it
134 // will short-cut to GetCode if instrumentation and static method resolution stubs aren't
135 // installed.
Brian Carlstromea46f952013-07-30 01:26:50 -0700136 const void* GetQuickCodeFor(const mirror::ArtMethod* method) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800137 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
138
139 void ForceInterpretOnly() {
140 interpret_only_ = true;
141 forced_interpret_only_ = true;
142 }
143
Brian Carlstromea46f952013-07-30 01:26:50 -0700144 // Called by ArtMethod::Invoke to determine dispatch mechanism.
Ian Rogers62d6c772013-02-27 08:32:07 -0800145 bool InterpretOnly() const {
146 return interpret_only_;
147 }
148
149 bool ShouldPortableCodeDeoptimize() const {
150 return instrumentation_stubs_installed_;
151 }
152
153 bool AreExitStubsInstalled() const {
154 return instrumentation_stubs_installed_;
155 }
156
Sebastien Hertz74109f62013-06-07 17:40:09 +0200157 bool HasMethodEntryListeners() const {
158 return have_method_entry_listeners_;
159 }
160
161 bool HasMethodExitListeners() const {
162 return have_method_exit_listeners_;
163 }
164
165 bool HasDexPcListeners() const {
166 return have_dex_pc_listeners_;
167 }
168
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200169 bool IsActive() const {
170 return have_dex_pc_listeners_ || have_method_entry_listeners_ || have_method_exit_listeners_ ||
171 have_exception_caught_listeners_ || have_method_unwind_listeners_;
172 }
173
Ian Rogers62d6c772013-02-27 08:32:07 -0800174 // Inform listeners that a method has been entered. A dex PC is provided as we may install
175 // listeners into executing code and get method enter events for methods already on the stack.
176 void MethodEnterEvent(Thread* thread, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700177 const mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800178 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200179 if (UNLIKELY(HasMethodEntryListeners())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800180 MethodEnterEventImpl(thread, this_object, method, dex_pc);
181 }
182 }
183
184 // Inform listeners that a method has been exited.
185 void MethodExitEvent(Thread* thread, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700186 const mirror::ArtMethod* method, uint32_t dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -0800187 const JValue& return_value) const
188 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200189 if (UNLIKELY(HasMethodExitListeners())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800190 MethodExitEventImpl(thread, this_object, method, dex_pc, return_value);
191 }
192 }
193
194 // Inform listeners that a method has been exited due to an exception.
195 void MethodUnwindEvent(Thread* thread, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700196 const mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800197 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
198
199 // Inform listeners that the dex pc has moved (only supported by the interpreter).
200 void DexPcMovedEvent(Thread* thread, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700201 const mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800202 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz74109f62013-06-07 17:40:09 +0200203 if (UNLIKELY(HasDexPcListeners())) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800204 DexPcMovedEventImpl(thread, this_object, method, dex_pc);
205 }
206 }
207
208 // Inform listeners that an exception was caught.
209 void ExceptionCaughtEvent(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -0700210 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
Sebastien Hertz947ff082013-09-17 14:10:13 +0200211 mirror::Throwable* exception_object) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800212 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
213
214 // Called when an instrumented method is entered. The intended link register (lr) is saved so
215 // that returning causes a branch to the method exit stub. Generates method enter events.
216 void PushInstrumentationStackFrame(Thread* self, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700217 mirror::ArtMethod* method, uintptr_t lr,
Jeff Hao9a916d32013-06-27 18:45:37 -0700218 bool interpreter_entry)
Ian Rogers62d6c772013-02-27 08:32:07 -0800219 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
220
221 // Called when an instrumented method is exited. Removes the pushed instrumentation frame
222 // returning the intended link register. Generates method exit events.
223 uint64_t PopInstrumentationStackFrame(Thread* self, uintptr_t* return_pc, uint64_t gpr_result,
224 uint64_t fpr_result)
225 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
226
227 // Pops an instrumentation frame from the current thread and generate an unwind event.
228 void PopMethodForUnwind(Thread* self, bool is_deoptimization) const
229 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
230
231 // Call back for configure stubs.
232 bool InstallStubsForClass(mirror::Class* klass) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800233
234 private:
Ian Rogers62d6c772013-02-27 08:32:07 -0800235 // Does the job of installing or removing instrumentation code within methods.
236 void ConfigureStubs(bool require_entry_exit_stubs, bool require_interpreter)
237 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_)
238 LOCKS_EXCLUDED(Locks::thread_list_lock_, Locks::classlinker_classes_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800239
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200240 void UpdateInterpreterHandlerTable() {
241 interpreter_handler_table_ = IsActive() ? kAlternativeHandlerTable : kMainHandlerTable;
242 }
243
Ian Rogers62d6c772013-02-27 08:32:07 -0800244 void MethodEnterEventImpl(Thread* thread, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700245 const mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800246 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
247 void MethodExitEventImpl(Thread* thread, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700248 const mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800249 uint32_t dex_pc, const JValue& return_value) const
250 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
251 void DexPcMovedEventImpl(Thread* thread, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700252 const mirror::ArtMethod* method, uint32_t dex_pc) const
Ian Rogers62d6c772013-02-27 08:32:07 -0800253 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800254
Brian Carlstromea46f952013-07-30 01:26:50 -0700255 // Have we hijacked ArtMethod::code_ so that it calls instrumentation/interpreter code?
Ian Rogers62d6c772013-02-27 08:32:07 -0800256 bool instrumentation_stubs_installed_;
257
Brian Carlstromea46f952013-07-30 01:26:50 -0700258 // Have we hijacked ArtMethod::code_ to reference the enter/exit stubs?
Ian Rogers62d6c772013-02-27 08:32:07 -0800259 bool entry_exit_stubs_installed_;
260
Brian Carlstromea46f952013-07-30 01:26:50 -0700261 // Have we hijacked ArtMethod::code_ to reference the enter interpreter stub?
Ian Rogers62d6c772013-02-27 08:32:07 -0800262 bool interpreter_stubs_installed_;
263
264 // Do we need the fidelity of events that we only get from running within the interpreter?
265 bool interpret_only_;
266
267 // Did the runtime request we only run in the interpreter? ie -Xint mode.
268 bool forced_interpret_only_;
269
270 // Do we have any listeners for method entry events? Short-cut to avoid taking the
271 // instrumentation_lock_.
272 bool have_method_entry_listeners_;
273
274 // Do we have any listeners for method exit events? Short-cut to avoid taking the
275 // instrumentation_lock_.
276 bool have_method_exit_listeners_;
277
278 // Do we have any listeners for method unwind events? Short-cut to avoid taking the
279 // instrumentation_lock_.
280 bool have_method_unwind_listeners_;
281
282 // Do we have any listeners for dex move events? Short-cut to avoid taking the
283 // instrumentation_lock_.
284 bool have_dex_pc_listeners_;
285
286 // Do we have any exception caught listeners? Short-cut to avoid taking the instrumentation_lock_.
287 bool have_exception_caught_listeners_;
288
289 // The event listeners, written to with the mutator_lock_ exclusively held.
290 std::list<InstrumentationListener*> method_entry_listeners_ GUARDED_BY(Locks::mutator_lock_);
291 std::list<InstrumentationListener*> method_exit_listeners_ GUARDED_BY(Locks::mutator_lock_);
292 std::list<InstrumentationListener*> method_unwind_listeners_ GUARDED_BY(Locks::mutator_lock_);
293 std::list<InstrumentationListener*> dex_pc_listeners_ GUARDED_BY(Locks::mutator_lock_);
294 std::list<InstrumentationListener*> exception_caught_listeners_ GUARDED_BY(Locks::mutator_lock_);
jeffhao725a9572012-11-13 18:20:12 -0800295
Ian Rogersfa824272013-11-05 16:12:57 -0800296 // Current interpreter handler table. This is updated each time the thread state flags are
297 // modified.
Sebastien Hertzee1997a2013-09-19 14:47:09 +0200298 InterpreterHandlerTable interpreter_handler_table_;
299
Ian Rogersfa824272013-11-05 16:12:57 -0800300 // Greater than 0 if quick alloc entry points instrumented.
301 // TODO: The access and changes to this is racy and should be guarded by a lock.
302 size_t quick_alloc_entry_points_instrumentation_counter_;
303
jeffhao725a9572012-11-13 18:20:12 -0800304 DISALLOW_COPY_AND_ASSIGN(Instrumentation);
305};
306
Ian Rogers62d6c772013-02-27 08:32:07 -0800307// An element in the instrumentation side stack maintained in art::Thread.
308struct InstrumentationStackFrame {
Brian Carlstromea46f952013-07-30 01:26:50 -0700309 InstrumentationStackFrame(mirror::Object* this_object, mirror::ArtMethod* method,
Jeff Hao9a916d32013-06-27 18:45:37 -0700310 uintptr_t return_pc, size_t frame_id, bool interpreter_entry)
311 : this_object_(this_object), method_(method), return_pc_(return_pc), frame_id_(frame_id),
312 interpreter_entry_(interpreter_entry) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800313 }
314
315 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
316
317 mirror::Object* this_object_;
Brian Carlstromea46f952013-07-30 01:26:50 -0700318 mirror::ArtMethod* method_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800319 const uintptr_t return_pc_;
320 const size_t frame_id_;
Jeff Hao65d15d92013-07-16 16:39:33 -0700321 const bool interpreter_entry_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800322};
323
324} // namespace instrumentation
jeffhao725a9572012-11-13 18:20:12 -0800325} // namespace art
326
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700327#endif // ART_RUNTIME_INSTRUMENTATION_H_