blob: e79e8e40838bfc978a5aa868bc309fc9763333b2 [file] [log] [blame]
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001/*
2 * Copyright (C) 2008 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
17/*
18 * Dalvik-specific side of debugger support. (The JDWP code is intended to
19 * be relatively generic.)
20 */
Brian Carlstromfc0e3212013-07-17 14:40:12 -070021#ifndef ART_RUNTIME_DEBUGGER_H_
22#define ART_RUNTIME_DEBUGGER_H_
Elliott Hughes872d4ec2011-10-21 17:07:15 -070023
24#include <pthread.h>
25
Mathieu Chartier4345c462014-06-27 10:20:14 -070026#include <map>
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +010027#include <set>
Elliott Hughes3bb81562011-10-21 18:52:59 -070028#include <string>
Sebastien Hertz4d25df32014-03-21 17:44:46 +010029#include <vector>
Elliott Hughes3bb81562011-10-21 18:52:59 -070030
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -080031#include "gc_root.h"
Elliott Hughes872d4ec2011-10-21 17:07:15 -070032#include "jdwp/jdwp.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080033#include "jni.h"
34#include "jvalue.h"
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080035#include "object_callbacks.h"
Jeff Hao920af3e2013-08-28 15:46:38 -070036#include "thread_state.h"
Elliott Hughes872d4ec2011-10-21 17:07:15 -070037
38namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039namespace mirror {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +020040class ArtField;
Brian Carlstromea46f952013-07-30 01:26:50 -070041class ArtMethod;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080042class Class;
43class Object;
44class Throwable;
45} // namespace mirror
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -070046class AllocRecord;
Sebastien Hertz6995c602014-09-09 12:10:13 +020047class ObjectRegistry;
48class ScopedObjectAccessUnchecked;
Sebastien Hertz8009f392014-09-01 17:07:11 +020049class StackVisitor;
Ian Rogers1b09b092012-08-20 15:35:52 -070050class Thread;
Ian Rogers62d6c772013-02-27 08:32:07 -080051class ThrowLocation;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070052
53/*
54 * Invoke-during-breakpoint support.
55 */
56struct DebugInvokeReq {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -080057 DebugInvokeReq()
Sebastien Hertzd38667a2013-11-25 15:43:54 +010058 : ready(false), invoke_needed(false),
59 receiver(NULL), thread(NULL), klass(NULL), method(NULL),
60 arg_count(0), arg_values(NULL), options(0), error(JDWP::ERR_NONE),
Ian Rogers00f7d0e2012-07-19 15:28:27 -070061 result_tag(JDWP::JT_VOID), exception(0),
Sebastien Hertzd38667a2013-11-25 15:43:54 +010062 lock("a DebugInvokeReq lock", kBreakpointInvokeLock),
63 cond("a DebugInvokeReq condition variable", lock) {
Elliott Hughes475fc232011-10-25 15:00:35 -070064 }
65
Elliott Hughes872d4ec2011-10-21 17:07:15 -070066 /* boolean; only set when we're in the tail end of an event handler */
67 bool ready;
68
69 /* boolean; set if the JDWP thread wants this thread to do work */
Sebastien Hertzd38667a2013-11-25 15:43:54 +010070 bool invoke_needed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070071
72 /* request */
Sebastien Hertzd38667a2013-11-25 15:43:54 +010073 mirror::Object* receiver; /* not used for ClassType.InvokeMethod */
74 mirror::Object* thread;
75 mirror::Class* klass;
76 mirror::ArtMethod* method;
77 uint32_t arg_count;
78 uint64_t* arg_values; /* will be NULL if arg_count_ == 0 */
79 uint32_t options;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070080
81 /* result */
Elliott Hughes475fc232011-10-25 15:00:35 -070082 JDWP::JdwpError error;
Elliott Hughesd07986f2011-12-06 18:27:45 -080083 JDWP::JdwpTag result_tag;
Elliott Hughes475fc232011-10-25 15:00:35 -070084 JValue result_value;
85 JDWP::ObjectId exception;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070086
87 /* condition variable to wait on while the method executes */
Sebastien Hertzd38667a2013-11-25 15:43:54 +010088 Mutex lock DEFAULT_MUTEX_ACQUIRED_AFTER;
89 ConditionVariable cond GUARDED_BY(lock);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +010090
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -080091 void VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info)
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070092 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
93
Sebastien Hertzbb43b432014-04-14 11:59:08 +020094 void Clear();
95
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +010096 private:
97 DISALLOW_COPY_AND_ASSIGN(DebugInvokeReq);
98};
99
100// Thread local data-structure that holds fields for controlling single-stepping.
101struct SingleStepControl {
102 SingleStepControl()
103 : is_active(false), step_size(JDWP::SS_MIN), step_depth(JDWP::SD_INTO),
104 method(nullptr), stack_depth(0) {
105 }
106
107 // Are we single-stepping right now?
108 bool is_active;
109
110 // See JdwpStepSize and JdwpStepDepth for details.
111 JDWP::JdwpStepSize step_size;
112 JDWP::JdwpStepDepth step_depth;
113
114 // The location this single-step was initiated from.
115 // A single-step is initiated in a suspended thread. We save here the current method and the
116 // set of DEX pcs associated to the source line number where the suspension occurred.
117 // This is used to support SD_INTO and SD_OVER single-step depths so we detect when a single-step
118 // causes the execution of an instruction in a different method or at a different line number.
119 mirror::ArtMethod* method;
120 std::set<uint32_t> dex_pcs;
121
122 // The stack depth when this single-step was initiated. This is used to support SD_OVER and SD_OUT
123 // single-step depth.
124 int stack_depth;
125
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800126 void VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info)
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700127 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
128
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200129 bool ContainsDexPc(uint32_t dex_pc) const;
130
131 void Clear();
132
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100133 private:
134 DISALLOW_COPY_AND_ASSIGN(SingleStepControl);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700135};
136
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200137// TODO rename to InstrumentationRequest.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700138class DeoptimizationRequest {
139 public:
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100140 enum Kind {
141 kNothing, // no action.
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200142 kRegisterForEvent, // start listening for instrumentation event.
143 kUnregisterForEvent, // stop listening for instrumentation event.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100144 kFullDeoptimization, // deoptimize everything.
145 kFullUndeoptimization, // undeoptimize everything.
146 kSelectiveDeoptimization, // deoptimize one method.
147 kSelectiveUndeoptimization // undeoptimize one method.
148 };
149
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700150 DeoptimizationRequest() : kind_(kNothing), instrumentation_event_(0), method_(nullptr) {}
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100151
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700152 DeoptimizationRequest(const DeoptimizationRequest& other)
153 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
154 : kind_(other.kind_), instrumentation_event_(other.instrumentation_event_) {
155 // Create a new JNI global reference for the method.
156 SetMethod(other.Method());
157 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100158
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700159 mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
160
161 void SetMethod(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
162
163 // Name 'Kind()' would collide with the above enum name.
164 Kind GetKind() const {
165 return kind_;
166 }
167
168 void SetKind(Kind kind) {
169 kind_ = kind;
170 }
171
172 uint32_t InstrumentationEvent() const {
173 return instrumentation_event_;
174 }
175
176 void SetInstrumentationEvent(uint32_t instrumentation_event) {
177 instrumentation_event_ = instrumentation_event;
178 }
179
180 private:
181 Kind kind_;
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100182
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200183 // TODO we could use a union to hold the instrumentation_event and the method since they
184 // respectively have sense only for kRegisterForEvent/kUnregisterForEvent and
185 // kSelectiveDeoptimization/kSelectiveUndeoptimization.
186
187 // Event to start or stop listening to. Only for kRegisterForEvent and kUnregisterForEvent.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700188 uint32_t instrumentation_event_;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200189
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100190 // Method for selective deoptimization.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700191 jmethodID method_;
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100192};
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700193std::ostream& operator<<(std::ostream& os, const DeoptimizationRequest::Kind& rhs);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100194
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700195class Dbg {
Elliott Hughesff17f1f2012-01-24 18:12:29 -0800196 public:
Mathieu Chartier4345c462014-06-27 10:20:14 -0700197 class TypeCache {
198 public:
199 // Returns a weak global for the input type. Deduplicates.
Brian Carlstrom306db812014-09-05 13:01:41 -0700200 jobject Add(mirror::Class* t) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
201 Locks::alloc_tracker_lock_);
Mathieu Chartier4345c462014-06-27 10:20:14 -0700202 // Clears the type cache and deletes all the weak global refs.
Brian Carlstrom306db812014-09-05 13:01:41 -0700203 void Clear() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_,
204 Locks::alloc_tracker_lock_);
Mathieu Chartier4345c462014-06-27 10:20:14 -0700205
206 private:
207 std::multimap<int32_t, jobject> objects_;
208 };
209
Elliott Hughes3bb81562011-10-21 18:52:59 -0700210 static bool ParseJdwpOptions(const std::string& options);
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700211 static void SetJdwpAllowed(bool allowed);
212
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700213 static void StartJdwp();
214 static void StopJdwp();
215
Elliott Hughes767a1472011-10-26 18:49:02 -0700216 // Invoked by the GC in case we need to keep DDMS informed.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700217 static void GcDidFinish() LOCKS_EXCLUDED(Locks::mutator_lock_);
Elliott Hughes767a1472011-10-26 18:49:02 -0700218
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700219 // Return the DebugInvokeReq for the current thread.
220 static DebugInvokeReq* GetInvokeReq();
221
Elliott Hughes475fc232011-10-25 15:00:35 -0700222 static Thread* GetDebugThread();
223 static void ClearWaitForEventThread();
224
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700225 /*
226 * Enable/disable breakpoints and step modes. Used to provide a heads-up
227 * when the debugger attaches.
228 */
229 static void Connected();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100230 static void GoActive()
Brian Carlstrom306db812014-09-05 13:01:41 -0700231 LOCKS_EXCLUDED(Locks::breakpoint_lock_, Locks::deoptimization_lock_, Locks::mutator_lock_);
232 static void Disconnected() LOCKS_EXCLUDED(Locks::deoptimization_lock_, Locks::mutator_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800233 static void Disposed();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700234
Elliott Hughesc0f09332012-03-26 13:27:06 -0700235 // Returns true if we're actually debugging with a real debugger, false if it's
236 // just DDMS (or nothing at all).
237 static bool IsDebuggerActive();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700238
Elliott Hughesc0f09332012-03-26 13:27:06 -0700239 // Returns true if we had -Xrunjdwp or -agentlib:jdwp= on the command line.
240 static bool IsJdwpConfigured();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700241
Elliott Hughes86964332012-02-15 19:37:42 -0800242 static bool IsDisposed();
243
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700244 /*
245 * Time, in milliseconds, since the last debugger activity. Does not
246 * include DDMS activity. Returns -1 if there has been no activity.
247 * Returns 0 if we're in the middle of handling a debugger request.
248 */
249 static int64_t LastDebuggerActivity();
250
Sebastien Hertz253fa552014-10-14 17:27:15 +0200251 static void UndoDebuggerSuspensions()
252 LOCKS_EXCLUDED(Locks::thread_list_lock_,
253 Locks::thread_suspend_count_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700254
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700255 /*
256 * Class, Object, Array
257 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700258 static std::string GetClassName(JDWP::RefTypeId id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700259 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz6995c602014-09-09 12:10:13 +0200260 static std::string GetClassName(mirror::Class* klass)
261 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700262 static JDWP::JdwpError GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700263 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700264 static JDWP::JdwpError GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700265 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700266 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700267 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700268 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700269 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800270 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700271 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700272 static void GetClassList(std::vector<JDWP::RefTypeId>* classes)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700273 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800274 static JDWP::JdwpError GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700275 uint32_t* pStatus, std::string* pDescriptor)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700276 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700277 static void FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700278 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800279 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
280 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700281 static JDWP::JdwpError GetSignature(JDWP::RefTypeId ref_type_id, std::string* signature)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700282 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700283 static JDWP::JdwpError GetSourceFile(JDWP::RefTypeId ref_type_id, std::string* source_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700284 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700285 static JDWP::JdwpError GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700286 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesaed4be92011-12-02 16:16:23 -0800287 static size_t GetTagWidth(JDWP::JdwpTag tag);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700288
Ian Rogersc0542af2014-09-03 16:16:56 -0700289 static JDWP::JdwpError GetArrayLength(JDWP::ObjectId array_id, int32_t* length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700290 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800291 static JDWP::JdwpError OutputArray(JDWP::ObjectId array_id, int offset, int count,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700292 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700293 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800294 static JDWP::JdwpError SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700295 JDWP::Request* request)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700296 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700297
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700298 static JDWP::ObjectId CreateString(const std::string& str)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700299 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700300 static JDWP::JdwpError CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700301 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800302 static JDWP::JdwpError CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogersc0542af2014-09-03 16:16:56 -0700303 JDWP::ObjectId* new_array)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700304 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700305
Sebastien Hertz6995c602014-09-09 12:10:13 +0200306 //
307 // Event filtering.
308 //
309 static bool MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread)
310 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
311
312 static bool MatchLocation(const JDWP::JdwpLocation& expected_location,
313 const JDWP::EventLocation& event_location)
314 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
315
316 static bool MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id)
317 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
318
319 static bool MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
320 mirror::ArtField* event_field)
321 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
322
323 static bool MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700324 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700325
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800326 //
327 // Monitors.
328 //
329 static JDWP::JdwpError GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
330 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
331 static JDWP::JdwpError GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700332 std::vector<JDWP::ObjectId>* monitors,
333 std::vector<uint32_t>* stack_depths)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100334 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800335 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100336 static JDWP::JdwpError GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700337 JDWP::ObjectId* contended_monitor)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100338 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800339 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
340
341 //
342 // Heap.
343 //
344 static JDWP::JdwpError GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -0700345 std::vector<uint64_t>* counts)
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800346 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800347 static JDWP::JdwpError GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700348 std::vector<JDWP::ObjectId>* instances)
Elliott Hughes3b78c942013-01-15 17:35:41 -0800349 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800350 static JDWP::JdwpError GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700351 std::vector<JDWP::ObjectId>* referring_objects)
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800352 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800353 static JDWP::JdwpError DisableCollection(JDWP::ObjectId object_id)
354 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
355 static JDWP::JdwpError EnableCollection(JDWP::ObjectId object_id)
356 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700357 static JDWP::JdwpError IsCollected(JDWP::ObjectId object_id, bool* is_collected)
Elliott Hughes64f574f2013-02-20 14:57:12 -0800358 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
359 static void DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
360 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800361
Elliott Hughes9777ba22013-01-17 09:04:19 -0800362 //
363 // Methods and fields.
364 //
Elliott Hughesa96836a2013-01-17 12:27:49 -0800365 static std::string GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700366 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800367 static JDWP::JdwpError OutputDeclaredFields(JDWP::RefTypeId ref_type_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700368 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700369 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800370 static JDWP::JdwpError OutputDeclaredMethods(JDWP::RefTypeId ref_type_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700371 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700372 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800373 static JDWP::JdwpError OutputDeclaredInterfaces(JDWP::RefTypeId ref_type_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700374 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700375 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800376 static void OutputLineTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700377 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700378 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800379 static void OutputVariableTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700380 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700381 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jeff Hao579b0242013-11-18 13:16:49 -0800382 static void OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
383 JDWP::ExpandBuf* pReply)
384 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200385 static void OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
386 JDWP::ExpandBuf* pReply)
387 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes9777ba22013-01-17 09:04:19 -0800388 static JDWP::JdwpError GetBytecodes(JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700389 std::vector<uint8_t>* bytecodes)
Elliott Hughes9777ba22013-01-17 09:04:19 -0800390 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700391
Elliott Hughesa96836a2013-01-17 12:27:49 -0800392 static std::string GetFieldName(JDWP::FieldId field_id)
393 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800394 static JDWP::JdwpTag GetFieldBasicTag(JDWP::FieldId field_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700395 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800396 static JDWP::JdwpTag GetStaticFieldBasicTag(JDWP::FieldId field_id)
Brian Carlstromf69863b2013-07-17 21:53:13 -0700397 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800398 static JDWP::JdwpError GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700399 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700400 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800401 static JDWP::JdwpError SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700402 uint64_t value, int width)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700403 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800404 static JDWP::JdwpError GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700405 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700406 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800407 static JDWP::JdwpError SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700408 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700409
Sebastien Hertzb0b0b492014-09-15 11:27:27 +0200410 static JDWP::JdwpError StringToUtf8(JDWP::ObjectId string_id, std::string* str)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700411 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jeff Hao579b0242013-11-18 13:16:49 -0800412 static void OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply)
413 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700414
415 /*
416 * Thread, ThreadGroup, Frame
417 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700418 static JDWP::JdwpError GetThreadName(JDWP::ObjectId thread_id, std::string* name)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700419 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
420 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100421 static JDWP::JdwpError GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply)
Sebastien Hertza06430c2014-09-15 19:21:30 +0200422 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100423 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Sebastien Hertza06430c2014-09-15 19:21:30 +0200424 static JDWP::JdwpError GetThreadGroupName(JDWP::ObjectId thread_group_id,
425 JDWP::ExpandBuf* pReply)
426 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
427 static JDWP::JdwpError GetThreadGroupParent(JDWP::ObjectId thread_group_id,
428 JDWP::ExpandBuf* pReply)
429 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
430 static JDWP::JdwpError GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
431 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700432 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700433 static JDWP::ObjectId GetSystemThreadGroupId()
Ian Rogersb726dcb2012-09-05 08:57:23 -0700434 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700435
Jeff Hao920af3e2013-08-28 15:46:38 -0700436 static JDWP::JdwpThreadStatus ToJdwpThreadStatus(ThreadState state);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100437 static JDWP::JdwpError GetThreadStatus(JDWP::ObjectId thread_id,
438 JDWP::JdwpThreadStatus* pThreadStatus,
439 JDWP::JdwpSuspendStatus* pSuspendStatus)
440 LOCKS_EXCLUDED(Locks::thread_list_lock_);
441 static JDWP::JdwpError GetThreadDebugSuspendCount(JDWP::ObjectId thread_id,
442 JDWP::ExpandBuf* pReply)
443 LOCKS_EXCLUDED(Locks::thread_list_lock_,
444 Locks::thread_suspend_count_lock_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700445 // static void WaitForSuspend(JDWP::ObjectId thread_id);
Elliott Hughescaf76542012-06-28 16:08:22 -0700446
Elliott Hughes026b1462012-06-28 20:43:49 -0700447 // Fills 'thread_ids' with the threads in the given thread group. If thread_group_id == 0,
Elliott Hughescaf76542012-06-28 16:08:22 -0700448 // returns all threads.
Sebastien Hertza06430c2014-09-15 19:21:30 +0200449 static void GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700450 LOCKS_EXCLUDED(Locks::thread_list_lock_)
451 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescaf76542012-06-28 16:08:22 -0700452
Ian Rogersc0542af2014-09-03 16:16:56 -0700453 static JDWP::JdwpError GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100454 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700455 static JDWP::JdwpError GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
456 size_t frame_count, JDWP::ExpandBuf* buf)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100457 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700458 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700459
Sebastien Hertz6995c602014-09-09 12:10:13 +0200460 static JDWP::ObjectId GetThreadSelfId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
461 static JDWP::ObjectId GetThreadId(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
462
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700463 static void SuspendVM()
Ian Rogersb726dcb2012-09-05 08:57:23 -0700464 LOCKS_EXCLUDED(Locks::thread_list_lock_,
465 Locks::thread_suspend_count_lock_);
Sebastien Hertz253fa552014-10-14 17:27:15 +0200466 static void ResumeVM()
467 LOCKS_EXCLUDED(Locks::thread_list_lock_,
468 Locks::thread_suspend_count_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800469 static JDWP::JdwpError SuspendThread(JDWP::ObjectId thread_id, bool request_suspension = true)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700470 LOCKS_EXCLUDED(Locks::mutator_lock_,
471 Locks::thread_list_lock_,
472 Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700473
Elliott Hughes88d63092013-01-09 09:55:54 -0800474 static void ResumeThread(JDWP::ObjectId thread_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700475 LOCKS_EXCLUDED(Locks::thread_list_lock_,
476 Locks::thread_suspend_count_lock_)
477 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700478 static void SuspendSelf();
479
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700480 static JDWP::JdwpError GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
481 JDWP::ObjectId* result)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700482 LOCKS_EXCLUDED(Locks::thread_list_lock_,
483 Locks::thread_suspend_count_lock_)
484 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8009f392014-09-01 17:07:11 +0200485 static JDWP::JdwpError GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100486 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700487 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8009f392014-09-01 17:07:11 +0200488 static JDWP::JdwpError SetLocalValues(JDWP::Request* request)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100489 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700490 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700491
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100492 static JDWP::JdwpError Interrupt(JDWP::ObjectId thread_id)
493 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Elliott Hughesf9501702013-01-11 11:22:27 -0800494
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700495 /*
496 * Debugger notification
497 */
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700498 enum EventFlag {
Elliott Hughes86964332012-02-15 19:37:42 -0800499 kBreakpoint = 0x01,
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700500 kSingleStep = 0x02,
501 kMethodEntry = 0x04,
502 kMethodExit = 0x08,
503 };
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200504 static void PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
505 mirror::ArtField* f)
506 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
507 static void PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
508 mirror::Object* this_object, mirror::ArtField* f,
509 const JValue* field_value)
510 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
511 static void PostException(const ThrowLocation& throw_location, mirror::ArtMethod* catch_method,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800512 uint32_t catch_dex_pc, mirror::Throwable* exception)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700513 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700514 static void PostThreadStart(Thread* t)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700515 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700516 static void PostThreadDeath(Thread* t)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700517 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800518 static void PostClassPrepare(mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700519 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700520
Ian Rogers62d6c772013-02-27 08:32:07 -0800521 static void UpdateDebugger(Thread* thread, mirror::Object* this_object,
Sebastien Hertz8379b222014-02-24 17:38:15 +0100522 mirror::ArtMethod* method, uint32_t new_dex_pc,
523 int event_flags, const JValue* return_value)
jeffhao09bfc6a2012-12-11 18:11:43 -0800524 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700525 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -0800526
Sebastien Hertzf3928792014-11-17 19:00:37 +0100527 // Indicates whether we need deoptimization for debugging.
528 static bool RequiresDeoptimization();
529
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100530 // Records deoptimization request in the queue.
531 static void RequestDeoptimization(const DeoptimizationRequest& req)
Brian Carlstrom306db812014-09-05 13:01:41 -0700532 LOCKS_EXCLUDED(Locks::deoptimization_lock_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100533 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
534
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100535 // Support delayed full undeoptimization requests. This is currently only used for single-step
536 // events.
Brian Carlstrom306db812014-09-05 13:01:41 -0700537 static void DelayFullUndeoptimization() LOCKS_EXCLUDED(Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100538 static void ProcessDelayedFullUndeoptimizations()
Brian Carlstrom306db812014-09-05 13:01:41 -0700539 LOCKS_EXCLUDED(Locks::deoptimization_lock_)
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100540 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
541
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100542 // Manage deoptimization after updating JDWP events list. Suspends all threads, processes each
543 // request and finally resumes all threads.
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100544 static void ManageDeoptimization()
Brian Carlstrom306db812014-09-05 13:01:41 -0700545 LOCKS_EXCLUDED(Locks::deoptimization_lock_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100546 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
547
548 // Breakpoints.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100549 static void WatchLocation(const JDWP::JdwpLocation* pLoc, DeoptimizationRequest* req)
550 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700551 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100552 static void UnwatchLocation(const JDWP::JdwpLocation* pLoc, DeoptimizationRequest* req)
553 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700554 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100555
556 // Single-stepping.
Elliott Hughes88d63092013-01-09 09:55:54 -0800557 static JDWP::JdwpError ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize size,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700558 JDWP::JdwpStepDepth depth)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700559 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100560 static void UnconfigureStep(JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100561 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100562 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700563
Elliott Hughes88d63092013-01-09 09:55:54 -0800564 static JDWP::JdwpError InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
565 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700566 uint32_t arg_count, uint64_t* arg_values,
567 JDWP::JdwpTag* arg_types, uint32_t options,
568 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
569 JDWP::ObjectId* pExceptObj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700570 LOCKS_EXCLUDED(Locks::thread_list_lock_,
571 Locks::thread_suspend_count_lock_)
572 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700573 static void ExecuteMethod(DebugInvokeReq* pReq);
574
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700575 /*
576 * DDM support.
577 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700578 static void DdmSendThreadNotification(Thread* t, uint32_t type)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700579 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100580 static void DdmSetThreadNotification(bool enable)
581 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700582 static bool DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen);
Ian Rogersb726dcb2012-09-05 08:57:23 -0700583 static void DdmConnected() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
584 static void DdmDisconnected() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700585 static void DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700586 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700587 static void DdmSendChunk(uint32_t type, size_t len, const uint8_t* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700588 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700589 static void DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700590 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes767a1472011-10-26 18:49:02 -0700591
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700592 static void VisitRoots(RootCallback* callback, void* arg)
593 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
594
Elliott Hughes545a0642011-11-08 19:10:03 -0800595 /*
596 * Recent allocation tracking support.
597 */
Ian Rogers844506b2014-09-12 19:59:33 -0700598 static void RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count)
Brian Carlstrom306db812014-09-05 13:01:41 -0700599 LOCKS_EXCLUDED(Locks::alloc_tracker_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700600 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom306db812014-09-05 13:01:41 -0700601 static void SetAllocTrackingEnabled(bool enabled) LOCKS_EXCLUDED(Locks::alloc_tracker_lock_);
Ian Rogers719d1a32014-03-06 12:13:39 -0800602 static bool IsAllocTrackingEnabled() {
603 return recent_allocation_records_ != nullptr;
604 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100605 static jbyteArray GetRecentAllocations()
Brian Carlstrom306db812014-09-05 13:01:41 -0700606 LOCKS_EXCLUDED(Locks::alloc_tracker_lock_)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100607 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom306db812014-09-05 13:01:41 -0700608 static size_t HeadIndex() EXCLUSIVE_LOCKS_REQUIRED(Locks::alloc_tracker_lock_);
609 static void DumpRecentAllocations() LOCKS_EXCLUDED(Locks::alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -0800610
Elliott Hughes767a1472011-10-26 18:49:02 -0700611 enum HpifWhen {
612 HPIF_WHEN_NEVER = 0,
613 HPIF_WHEN_NOW = 1,
614 HPIF_WHEN_NEXT_GC = 2,
615 HPIF_WHEN_EVERY_GC = 3
616 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700617 static int DdmHandleHpifChunk(HpifWhen when)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700618 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes767a1472011-10-26 18:49:02 -0700619
620 enum HpsgWhen {
621 HPSG_WHEN_NEVER = 0,
622 HPSG_WHEN_EVERY_GC = 1,
623 };
624 enum HpsgWhat {
625 HPSG_WHAT_MERGED_OBJECTS = 0,
626 HPSG_WHAT_DISTINCT_OBJECTS = 1,
627 };
628 static bool DdmHandleHpsgNhsgChunk(HpsgWhen when, HpsgWhat what, bool native);
629
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700630 static void DdmSendHeapInfo(HpifWhen reason)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700631 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700632 static void DdmSendHeapSegments(bool native)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700633 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -0800634
Sebastien Hertz6995c602014-09-09 12:10:13 +0200635 static ObjectRegistry* GetObjectRegistry() {
636 return gRegistry;
637 }
638
639 static JDWP::JdwpTag TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o)
640 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
641
642 static JDWP::JdwpTypeTag GetTypeTag(mirror::Class* klass)
643 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
644
645 static JDWP::FieldId ToFieldId(const mirror::ArtField* f)
646 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
647
648 static void SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc)
649 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
650
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800651 static JDWP::JdwpState* GetJdwpState();
652
Elliott Hughes545a0642011-11-08 19:10:03 -0800653 private:
Sebastien Hertz8009f392014-09-01 17:07:11 +0200654 static JDWP::JdwpError GetLocalValue(const StackVisitor& visitor,
655 ScopedObjectAccessUnchecked& soa, int slot,
656 JDWP::JdwpTag tag, uint8_t* buf, size_t width)
657 LOCKS_EXCLUDED(Locks::thread_list_lock_)
658 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
659 static JDWP::JdwpError SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
660 uint64_t value, size_t width)
661 LOCKS_EXCLUDED(Locks::thread_list_lock_)
662 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
663
Brian Carlstrom2d888622013-07-18 17:02:00 -0700664 static void DdmBroadcast(bool connect) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700665 static void PostThreadStartOrStop(Thread*, uint32_t)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700666 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesa2155262011-11-16 16:26:58 -0800667
Sebastien Hertz8379b222014-02-24 17:38:15 +0100668 static void PostLocationEvent(mirror::ArtMethod* method, int pcOffset,
669 mirror::Object* thisPtr, int eventFlags,
670 const JValue* return_value)
671 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
672
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100673 static void ProcessDeoptimizationRequest(const DeoptimizationRequest& request)
674 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
675
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100676 static void RequestDeoptimizationLocked(const DeoptimizationRequest& req)
Brian Carlstrom306db812014-09-05 13:01:41 -0700677 EXCLUSIVE_LOCKS_REQUIRED(Locks::deoptimization_lock_)
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100678 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
679
Brian Carlstrom306db812014-09-05 13:01:41 -0700680 static AllocRecord* recent_allocation_records_ PT_GUARDED_BY(Locks::alloc_tracker_lock_);
681 static size_t alloc_record_max_ GUARDED_BY(Locks::alloc_tracker_lock_);
682 static size_t alloc_record_head_ GUARDED_BY(Locks::alloc_tracker_lock_);
683 static size_t alloc_record_count_ GUARDED_BY(Locks::alloc_tracker_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100684
Sebastien Hertz6995c602014-09-09 12:10:13 +0200685 static ObjectRegistry* gRegistry;
686
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100687 // Deoptimization requests to be processed each time the event list is updated. This is used when
688 // registering and unregistering events so we do not deoptimize while holding the event list
689 // lock.
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200690 // TODO rename to instrumentation_requests.
Brian Carlstrom306db812014-09-05 13:01:41 -0700691 static std::vector<DeoptimizationRequest> deoptimization_requests_ GUARDED_BY(Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100692
693 // Count the number of events requiring full deoptimization. When the counter is > 0, everything
694 // is deoptimized, otherwise everything is undeoptimized.
695 // Note: we fully deoptimize on the first event only (when the counter is set to 1). We fully
696 // undeoptimize when the last event is unregistered (when the counter is set to 0).
Brian Carlstrom306db812014-09-05 13:01:41 -0700697 static size_t full_deoptimization_event_count_ GUARDED_BY(Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100698
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100699 // Count the number of full undeoptimization requests delayed to next resume or end of debug
700 // session.
Brian Carlstrom306db812014-09-05 13:01:41 -0700701 static size_t delayed_full_undeoptimization_count_ GUARDED_BY(Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100702
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200703 static size_t* GetReferenceCounterForEvent(uint32_t instrumentation_event);
704
Mathieu Chartier4345c462014-06-27 10:20:14 -0700705 // Weak global type cache, TODO improve this.
Brian Carlstrom306db812014-09-05 13:01:41 -0700706 static TypeCache type_cache_ GUARDED_BY(Locks::alloc_tracker_lock_);
Mathieu Chartier4345c462014-06-27 10:20:14 -0700707
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200708 // Instrumentation event reference counters.
709 // TODO we could use an array instead of having all these dedicated counters. Instrumentation
710 // events are bits of a mask so we could convert them to array index.
Brian Carlstrom306db812014-09-05 13:01:41 -0700711 static size_t dex_pc_change_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_);
712 static size_t method_enter_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_);
713 static size_t method_exit_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_);
714 static size_t field_read_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_);
715 static size_t field_write_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_);
716 static size_t exception_catch_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200717 static uint32_t instrumentation_events_ GUARDED_BY(Locks::mutator_lock_);
718
Brian Carlstrom306db812014-09-05 13:01:41 -0700719 friend class AllocRecord; // For type_cache_ with proper annotalysis.
Ian Rogers719d1a32014-03-06 12:13:39 -0800720 DISALLOW_COPY_AND_ASSIGN(Dbg);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700721};
722
723#define CHUNK_TYPE(_name) \
Elliott Hughes82188472011-11-07 18:11:48 -0800724 static_cast<uint32_t>((_name)[0] << 24 | (_name)[1] << 16 | (_name)[2] << 8 | (_name)[3])
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700725
726} // namespace art
727
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700728#endif // ART_RUNTIME_DEBUGGER_H_