blob: 6126ddc2aeb394e7edb9a52c61ae8206e7cb35a5 [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
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +010026#include <set>
Elliott Hughes3bb81562011-10-21 18:52:59 -070027#include <string>
Sebastien Hertz4d25df32014-03-21 17:44:46 +010028#include <vector>
Elliott Hughes3bb81562011-10-21 18:52:59 -070029
Elliott Hughes872d4ec2011-10-21 17:07:15 -070030#include "jdwp/jdwp.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031#include "jni.h"
32#include "jvalue.h"
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080033#include "object_callbacks.h"
Jeff Hao920af3e2013-08-28 15:46:38 -070034#include "thread_state.h"
Elliott Hughes872d4ec2011-10-21 17:07:15 -070035
36namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037namespace mirror {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +020038class ArtField;
Brian Carlstromea46f952013-07-30 01:26:50 -070039class ArtMethod;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080040class Class;
41class Object;
42class Throwable;
43} // namespace mirror
Elliott Hughes545a0642011-11-08 19:10:03 -080044struct AllocRecord;
Ian Rogers1b09b092012-08-20 15:35:52 -070045class Thread;
Ian Rogers62d6c772013-02-27 08:32:07 -080046class ThrowLocation;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070047
48/*
49 * Invoke-during-breakpoint support.
50 */
51struct DebugInvokeReq {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -080052 DebugInvokeReq()
Sebastien Hertzd38667a2013-11-25 15:43:54 +010053 : ready(false), invoke_needed(false),
54 receiver(NULL), thread(NULL), klass(NULL), method(NULL),
55 arg_count(0), arg_values(NULL), options(0), error(JDWP::ERR_NONE),
Ian Rogers00f7d0e2012-07-19 15:28:27 -070056 result_tag(JDWP::JT_VOID), exception(0),
Sebastien Hertzd38667a2013-11-25 15:43:54 +010057 lock("a DebugInvokeReq lock", kBreakpointInvokeLock),
58 cond("a DebugInvokeReq condition variable", lock) {
Elliott Hughes475fc232011-10-25 15:00:35 -070059 }
60
Elliott Hughes872d4ec2011-10-21 17:07:15 -070061 /* boolean; only set when we're in the tail end of an event handler */
62 bool ready;
63
64 /* boolean; set if the JDWP thread wants this thread to do work */
Sebastien Hertzd38667a2013-11-25 15:43:54 +010065 bool invoke_needed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070066
67 /* request */
Sebastien Hertzd38667a2013-11-25 15:43:54 +010068 mirror::Object* receiver; /* not used for ClassType.InvokeMethod */
69 mirror::Object* thread;
70 mirror::Class* klass;
71 mirror::ArtMethod* method;
72 uint32_t arg_count;
73 uint64_t* arg_values; /* will be NULL if arg_count_ == 0 */
74 uint32_t options;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070075
76 /* result */
Elliott Hughes475fc232011-10-25 15:00:35 -070077 JDWP::JdwpError error;
Elliott Hughesd07986f2011-12-06 18:27:45 -080078 JDWP::JdwpTag result_tag;
Elliott Hughes475fc232011-10-25 15:00:35 -070079 JValue result_value;
80 JDWP::ObjectId exception;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070081
82 /* condition variable to wait on while the method executes */
Sebastien Hertzd38667a2013-11-25 15:43:54 +010083 Mutex lock DEFAULT_MUTEX_ACQUIRED_AFTER;
84 ConditionVariable cond GUARDED_BY(lock);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +010085
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070086 void VisitRoots(RootCallback* callback, void* arg, uint32_t tid, RootType root_type)
87 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
88
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +010089 private:
90 DISALLOW_COPY_AND_ASSIGN(DebugInvokeReq);
91};
92
93// Thread local data-structure that holds fields for controlling single-stepping.
94struct SingleStepControl {
95 SingleStepControl()
96 : is_active(false), step_size(JDWP::SS_MIN), step_depth(JDWP::SD_INTO),
97 method(nullptr), stack_depth(0) {
98 }
99
100 // Are we single-stepping right now?
101 bool is_active;
102
103 // See JdwpStepSize and JdwpStepDepth for details.
104 JDWP::JdwpStepSize step_size;
105 JDWP::JdwpStepDepth step_depth;
106
107 // The location this single-step was initiated from.
108 // A single-step is initiated in a suspended thread. We save here the current method and the
109 // set of DEX pcs associated to the source line number where the suspension occurred.
110 // This is used to support SD_INTO and SD_OVER single-step depths so we detect when a single-step
111 // causes the execution of an instruction in a different method or at a different line number.
112 mirror::ArtMethod* method;
113 std::set<uint32_t> dex_pcs;
114
115 // The stack depth when this single-step was initiated. This is used to support SD_OVER and SD_OUT
116 // single-step depth.
117 int stack_depth;
118
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700119 void VisitRoots(RootCallback* callback, void* arg, uint32_t tid, RootType root_type)
120 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
121
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100122 private:
123 DISALLOW_COPY_AND_ASSIGN(SingleStepControl);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700124};
125
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100126struct DeoptimizationRequest {
127 enum Kind {
128 kNothing, // no action.
129 kFullDeoptimization, // deoptimize everything.
130 kFullUndeoptimization, // undeoptimize everything.
131 kSelectiveDeoptimization, // deoptimize one method.
132 kSelectiveUndeoptimization // undeoptimize one method.
133 };
134
135 DeoptimizationRequest() : kind(kNothing), method(nullptr) {}
136
137 void VisitRoots(RootCallback* callback, void* arg);
138
139 Kind kind;
140
141 // Method for selective deoptimization.
142 mirror::ArtMethod* method;
143};
144
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700145class Dbg {
Elliott Hughesff17f1f2012-01-24 18:12:29 -0800146 public:
Elliott Hughes3bb81562011-10-21 18:52:59 -0700147 static bool ParseJdwpOptions(const std::string& options);
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700148 static void SetJdwpAllowed(bool allowed);
149
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700150 static void StartJdwp();
151 static void StopJdwp();
152
Elliott Hughes767a1472011-10-26 18:49:02 -0700153 // Invoked by the GC in case we need to keep DDMS informed.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700154 static void GcDidFinish() LOCKS_EXCLUDED(Locks::mutator_lock_);
Elliott Hughes767a1472011-10-26 18:49:02 -0700155
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700156 // Return the DebugInvokeReq for the current thread.
157 static DebugInvokeReq* GetInvokeReq();
158
Elliott Hughes475fc232011-10-25 15:00:35 -0700159 static Thread* GetDebugThread();
160 static void ClearWaitForEventThread();
161
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700162 /*
163 * Enable/disable breakpoints and step modes. Used to provide a heads-up
164 * when the debugger attaches.
165 */
166 static void Connected();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100167 static void GoActive()
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100168 LOCKS_EXCLUDED(Locks::breakpoint_lock_, deoptimization_lock_, Locks::mutator_lock_);
169 static void Disconnected() LOCKS_EXCLUDED(deoptimization_lock_, Locks::mutator_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800170 static void Disposed();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700171
Elliott Hughesc0f09332012-03-26 13:27:06 -0700172 // Returns true if we're actually debugging with a real debugger, false if it's
173 // just DDMS (or nothing at all).
174 static bool IsDebuggerActive();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700175
Elliott Hughesc0f09332012-03-26 13:27:06 -0700176 // Returns true if we had -Xrunjdwp or -agentlib:jdwp= on the command line.
177 static bool IsJdwpConfigured();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700178
Elliott Hughes86964332012-02-15 19:37:42 -0800179 static bool IsDisposed();
180
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700181 /*
182 * Time, in milliseconds, since the last debugger activity. Does not
183 * include DDMS activity. Returns -1 if there has been no activity.
184 * Returns 0 if we're in the middle of handling a debugger request.
185 */
186 static int64_t LastDebuggerActivity();
187
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700188 static void UndoDebuggerSuspensions();
189
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700190 /*
191 * Class, Object, Array
192 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700193 static std::string GetClassName(JDWP::RefTypeId id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700194 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800195 static JDWP::JdwpError GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700196 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800197 static JDWP::JdwpError GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700198 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700199 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700200 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700201 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700202 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800203 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700204 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700205 static void GetClassList(std::vector<JDWP::RefTypeId>& classes)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700206 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800207 static JDWP::JdwpError GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700208 uint32_t* pStatus, std::string* pDescriptor)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700209 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700210 static void FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700211 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800212 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
213 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700214 static JDWP::JdwpError GetSignature(JDWP::RefTypeId ref_type_id, std::string* signature)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700215 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800216 static JDWP::JdwpError GetSourceFile(JDWP::RefTypeId ref_type_id, std::string& source_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700217 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800218 static JDWP::JdwpError GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700219 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesaed4be92011-12-02 16:16:23 -0800220 static size_t GetTagWidth(JDWP::JdwpTag tag);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700221
Elliott Hughes88d63092013-01-09 09:55:54 -0800222 static JDWP::JdwpError GetArrayLength(JDWP::ObjectId array_id, int& length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700223 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800224 static JDWP::JdwpError OutputArray(JDWP::ObjectId array_id, int offset, int count,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700225 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700226 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800227 static JDWP::JdwpError SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800228 JDWP::Request& request)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700229 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700230
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700231 static JDWP::ObjectId CreateString(const std::string& str)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700232 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800233 static JDWP::JdwpError CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700234 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800235 static JDWP::JdwpError CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700236 JDWP::ObjectId& new_array)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700237 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700238
Elliott Hughes88d63092013-01-09 09:55:54 -0800239 static bool MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700240 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700241
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800242 //
243 // Monitors.
244 //
245 static JDWP::JdwpError GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
246 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
247 static JDWP::JdwpError GetOwnedMonitors(JDWP::ObjectId thread_id,
248 std::vector<JDWP::ObjectId>& monitors,
249 std::vector<uint32_t>& stack_depths)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100250 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800251 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100252 static JDWP::JdwpError GetContendedMonitor(JDWP::ObjectId thread_id,
253 JDWP::ObjectId& contended_monitor)
254 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800255 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
256
257 //
258 // Heap.
259 //
260 static JDWP::JdwpError GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
261 std::vector<uint64_t>& counts)
262 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800263 static JDWP::JdwpError GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
264 std::vector<JDWP::ObjectId>& instances)
265 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800266 static JDWP::JdwpError GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
267 std::vector<JDWP::ObjectId>& referring_objects)
268 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800269 static JDWP::JdwpError DisableCollection(JDWP::ObjectId object_id)
270 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
271 static JDWP::JdwpError EnableCollection(JDWP::ObjectId object_id)
272 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
273 static JDWP::JdwpError IsCollected(JDWP::ObjectId object_id, bool& is_collected)
274 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
275 static void DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
276 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800277
Elliott Hughes9777ba22013-01-17 09:04:19 -0800278 //
279 // Methods and fields.
280 //
Elliott Hughesa96836a2013-01-17 12:27:49 -0800281 static std::string GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700282 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800283 static JDWP::JdwpError OutputDeclaredFields(JDWP::RefTypeId ref_type_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700284 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700285 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800286 static JDWP::JdwpError OutputDeclaredMethods(JDWP::RefTypeId ref_type_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700287 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700288 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800289 static JDWP::JdwpError OutputDeclaredInterfaces(JDWP::RefTypeId ref_type_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700290 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700291 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800292 static void OutputLineTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700293 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700294 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800295 static void OutputVariableTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700296 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700297 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jeff Hao579b0242013-11-18 13:16:49 -0800298 static void OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
299 JDWP::ExpandBuf* pReply)
300 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200301 static void OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
302 JDWP::ExpandBuf* pReply)
303 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes9777ba22013-01-17 09:04:19 -0800304 static JDWP::JdwpError GetBytecodes(JDWP::RefTypeId class_id, JDWP::MethodId method_id,
305 std::vector<uint8_t>& bytecodes)
306 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700307
Elliott Hughesa96836a2013-01-17 12:27:49 -0800308 static std::string GetFieldName(JDWP::FieldId field_id)
309 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800310 static JDWP::JdwpTag GetFieldBasicTag(JDWP::FieldId field_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700311 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800312 static JDWP::JdwpTag GetStaticFieldBasicTag(JDWP::FieldId field_id)
Brian Carlstromf69863b2013-07-17 21:53:13 -0700313 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800314 static JDWP::JdwpError GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700315 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700316 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800317 static JDWP::JdwpError SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700318 uint64_t value, int width)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700319 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800320 static JDWP::JdwpError GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700321 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700322 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800323 static JDWP::JdwpError SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700324 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700325
Elliott Hughes88d63092013-01-09 09:55:54 -0800326 static std::string StringToUtf8(JDWP::ObjectId string_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700327 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jeff Hao579b0242013-11-18 13:16:49 -0800328 static void OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply)
329 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700330
331 /*
332 * Thread, ThreadGroup, Frame
333 */
Elliott Hughes88d63092013-01-09 09:55:54 -0800334 static JDWP::JdwpError GetThreadName(JDWP::ObjectId thread_id, std::string& name)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700335 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
336 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100337 static JDWP::JdwpError GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply)
338 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800339 static std::string GetThreadGroupName(JDWP::ObjectId thread_group_id);
340 static JDWP::ObjectId GetThreadGroupParent(JDWP::ObjectId thread_group_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700341 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700342 static JDWP::ObjectId GetSystemThreadGroupId()
Ian Rogersb726dcb2012-09-05 08:57:23 -0700343 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700344 static JDWP::ObjectId GetMainThreadGroupId();
345
Jeff Hao920af3e2013-08-28 15:46:38 -0700346 static JDWP::JdwpThreadStatus ToJdwpThreadStatus(ThreadState state);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100347 static JDWP::JdwpError GetThreadStatus(JDWP::ObjectId thread_id,
348 JDWP::JdwpThreadStatus* pThreadStatus,
349 JDWP::JdwpSuspendStatus* pSuspendStatus)
350 LOCKS_EXCLUDED(Locks::thread_list_lock_);
351 static JDWP::JdwpError GetThreadDebugSuspendCount(JDWP::ObjectId thread_id,
352 JDWP::ExpandBuf* pReply)
353 LOCKS_EXCLUDED(Locks::thread_list_lock_,
354 Locks::thread_suspend_count_lock_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700355 // static void WaitForSuspend(JDWP::ObjectId thread_id);
Elliott Hughescaf76542012-06-28 16:08:22 -0700356
Elliott Hughes026b1462012-06-28 20:43:49 -0700357 // Fills 'thread_ids' with the threads in the given thread group. If thread_group_id == 0,
Elliott Hughescaf76542012-06-28 16:08:22 -0700358 // returns all threads.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700359 static void GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700360 LOCKS_EXCLUDED(Locks::thread_list_lock_)
361 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescaf76542012-06-28 16:08:22 -0700362 static void GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids);
363
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100364 static JDWP::JdwpError GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result)
365 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700366 static JDWP::JdwpError GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
367 size_t frame_count, JDWP::ExpandBuf* buf)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100368 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700369 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700370
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700371 static JDWP::ObjectId GetThreadSelfId()
Ian Rogersb726dcb2012-09-05 08:57:23 -0700372 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700373 static void SuspendVM()
Ian Rogersb726dcb2012-09-05 08:57:23 -0700374 LOCKS_EXCLUDED(Locks::thread_list_lock_,
375 Locks::thread_suspend_count_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700376 static void ResumeVM();
Elliott Hughes88d63092013-01-09 09:55:54 -0800377 static JDWP::JdwpError SuspendThread(JDWP::ObjectId thread_id, bool request_suspension = true)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700378 LOCKS_EXCLUDED(Locks::mutator_lock_,
379 Locks::thread_list_lock_,
380 Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700381
Elliott Hughes88d63092013-01-09 09:55:54 -0800382 static void ResumeThread(JDWP::ObjectId thread_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700383 LOCKS_EXCLUDED(Locks::thread_list_lock_,
384 Locks::thread_suspend_count_lock_)
385 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700386 static void SuspendSelf();
387
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700388 static JDWP::JdwpError GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
389 JDWP::ObjectId* result)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700390 LOCKS_EXCLUDED(Locks::thread_list_lock_,
391 Locks::thread_suspend_count_lock_)
392 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +0100393 static JDWP::JdwpError GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
394 JDWP::JdwpTag tag, uint8_t* buf, size_t expectedLen)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100395 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700396 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +0100397 static JDWP::JdwpError SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
398 JDWP::JdwpTag tag, uint64_t value, size_t width)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100399 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700400 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700401
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100402 static JDWP::JdwpError Interrupt(JDWP::ObjectId thread_id)
403 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Elliott Hughesf9501702013-01-11 11:22:27 -0800404
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700405 /*
406 * Debugger notification
407 */
408 enum {
Elliott Hughes86964332012-02-15 19:37:42 -0800409 kBreakpoint = 0x01,
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700410 kSingleStep = 0x02,
411 kMethodEntry = 0x04,
412 kMethodExit = 0x08,
413 };
Ian Rogersef7d42f2014-01-06 12:55:46 -0800414 static void PostLocationEvent(mirror::ArtMethod* method, int pcOffset,
Jeff Hao579b0242013-11-18 13:16:49 -0800415 mirror::Object* thisPtr, int eventFlags,
416 const JValue* return_value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700417 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200418 static void PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
419 mirror::ArtField* f)
420 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
421 static void PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc,
422 mirror::Object* this_object, mirror::ArtField* f,
423 const JValue* field_value)
424 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
425 static void PostException(const ThrowLocation& throw_location, mirror::ArtMethod* catch_method,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800426 uint32_t catch_dex_pc, mirror::Throwable* exception)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700427 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700428 static void PostThreadStart(Thread* t)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700429 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700430 static void PostThreadDeath(Thread* t)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700431 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800432 static void PostClassPrepare(mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700433 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700434
Ian Rogers62d6c772013-02-27 08:32:07 -0800435 static void UpdateDebugger(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800436 mirror::ArtMethod* method, uint32_t new_dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800437 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700438 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -0800439
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100440 // Records deoptimization request in the queue.
441 static void RequestDeoptimization(const DeoptimizationRequest& req)
442 LOCKS_EXCLUDED(deoptimization_lock_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100443 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
444
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100445 // Manage deoptimization after updating JDWP events list. Suspends all threads, processes each
446 // request and finally resumes all threads.
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100447 static void ManageDeoptimization()
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100448 LOCKS_EXCLUDED(deoptimization_lock_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100449 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
450
451 // Breakpoints.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100452 static void WatchLocation(const JDWP::JdwpLocation* pLoc, DeoptimizationRequest* req)
453 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700454 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100455 static void UnwatchLocation(const JDWP::JdwpLocation* pLoc, DeoptimizationRequest* req)
456 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700457 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100458
459 // Single-stepping.
Elliott Hughes88d63092013-01-09 09:55:54 -0800460 static JDWP::JdwpError ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize size,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700461 JDWP::JdwpStepDepth depth)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700462 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100463 static void UnconfigureStep(JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100464 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100465 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700466
Elliott Hughes88d63092013-01-09 09:55:54 -0800467 static JDWP::JdwpError InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
468 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700469 uint32_t arg_count, uint64_t* arg_values,
470 JDWP::JdwpTag* arg_types, uint32_t options,
471 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
472 JDWP::ObjectId* pExceptObj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700473 LOCKS_EXCLUDED(Locks::thread_list_lock_,
474 Locks::thread_suspend_count_lock_)
475 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700476 static void ExecuteMethod(DebugInvokeReq* pReq);
477
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700478 /*
479 * DDM support.
480 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700481 static void DdmSendThreadNotification(Thread* t, uint32_t type)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700482 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100483 static void DdmSetThreadNotification(bool enable)
484 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800485 static bool DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen);
Ian Rogersb726dcb2012-09-05 08:57:23 -0700486 static void DdmConnected() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
487 static void DdmDisconnected() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700488 static void DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700489 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700490 static void DdmSendChunk(uint32_t type, size_t len, const uint8_t* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700491 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700492 static void DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700493 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes767a1472011-10-26 18:49:02 -0700494
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700495 static void VisitRoots(RootCallback* callback, void* arg)
496 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
497
Elliott Hughes545a0642011-11-08 19:10:03 -0800498 /*
499 * Recent allocation tracking support.
500 */
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800501 static void RecordAllocation(mirror::Class* type, size_t byte_count)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100502 LOCKS_EXCLUDED(alloc_tracker_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700503 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100504 static void SetAllocTrackingEnabled(bool enabled) LOCKS_EXCLUDED(alloc_tracker_lock_);
Ian Rogers719d1a32014-03-06 12:13:39 -0800505 static bool IsAllocTrackingEnabled() {
506 return recent_allocation_records_ != nullptr;
507 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100508 static jbyteArray GetRecentAllocations()
509 LOCKS_EXCLUDED(alloc_tracker_lock_)
510 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers719d1a32014-03-06 12:13:39 -0800511 static size_t HeadIndex() EXCLUSIVE_LOCKS_REQUIRED(alloc_tracker_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100512 static void DumpRecentAllocations() LOCKS_EXCLUDED(alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -0800513
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800514 // Updates the stored direct object pointers (called from SweepSystemWeaks).
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800515 static void UpdateObjectPointers(IsMarkedCallback* callback, void* arg)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100516 LOCKS_EXCLUDED(alloc_tracker_lock_)
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800517 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
518
Elliott Hughes767a1472011-10-26 18:49:02 -0700519 enum HpifWhen {
520 HPIF_WHEN_NEVER = 0,
521 HPIF_WHEN_NOW = 1,
522 HPIF_WHEN_NEXT_GC = 2,
523 HPIF_WHEN_EVERY_GC = 3
524 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700525 static int DdmHandleHpifChunk(HpifWhen when)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700526 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes767a1472011-10-26 18:49:02 -0700527
528 enum HpsgWhen {
529 HPSG_WHEN_NEVER = 0,
530 HPSG_WHEN_EVERY_GC = 1,
531 };
532 enum HpsgWhat {
533 HPSG_WHAT_MERGED_OBJECTS = 0,
534 HPSG_WHAT_DISTINCT_OBJECTS = 1,
535 };
536 static bool DdmHandleHpsgNhsgChunk(HpsgWhen when, HpsgWhat what, bool native);
537
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700538 static void DdmSendHeapInfo(HpifWhen reason)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700539 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700540 static void DdmSendHeapSegments(bool native)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700541 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -0800542
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800543 static void AllowNewObjectRegistryObjects() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
544 static void DisallowNewObjectRegistryObjects() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
545
Elliott Hughes545a0642011-11-08 19:10:03 -0800546 private:
Brian Carlstrom2d888622013-07-18 17:02:00 -0700547 static void DdmBroadcast(bool connect) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700548 static void PostThreadStartOrStop(Thread*, uint32_t)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700549 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesa2155262011-11-16 16:26:58 -0800550
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200551 static JDWP::ObjectId GetThisObjectIdForEvent(mirror::Object* this_object)
552 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
553
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100554 static void ProcessDeoptimizationRequest(const DeoptimizationRequest& request)
555 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
556
Ian Rogers719d1a32014-03-06 12:13:39 -0800557 static Mutex* alloc_tracker_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
558
559 static AllocRecord* recent_allocation_records_ PT_GUARDED_BY(alloc_tracker_lock_);
560 static size_t alloc_record_max_ GUARDED_BY(alloc_tracker_lock_);
561 static size_t alloc_record_head_ GUARDED_BY(alloc_tracker_lock_);
562 static size_t alloc_record_count_ GUARDED_BY(alloc_tracker_lock_);
563
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100564 // Guards deoptimization requests.
565 static Mutex* deoptimization_lock_ ACQUIRED_AFTER(Locks::breakpoint_lock_);
566
567 // Deoptimization requests to be processed each time the event list is updated. This is used when
568 // registering and unregistering events so we do not deoptimize while holding the event list
569 // lock.
570 static std::vector<DeoptimizationRequest> deoptimization_requests_ GUARDED_BY(deoptimization_lock_);
571
572 // Count the number of events requiring full deoptimization. When the counter is > 0, everything
573 // is deoptimized, otherwise everything is undeoptimized.
574 // Note: we fully deoptimize on the first event only (when the counter is set to 1). We fully
575 // undeoptimize when the last event is unregistered (when the counter is set to 0).
576 static size_t full_deoptimization_event_count_ GUARDED_BY(deoptimization_lock_);
577
Ian Rogers719d1a32014-03-06 12:13:39 -0800578 DISALLOW_COPY_AND_ASSIGN(Dbg);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700579};
580
581#define CHUNK_TYPE(_name) \
Elliott Hughes82188472011-11-07 18:11:48 -0800582 static_cast<uint32_t>((_name)[0] << 24 | (_name)[1] << 16 | (_name)[2] << 8 | (_name)[3])
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700583
584} // namespace art
585
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700586#endif // ART_RUNTIME_DEBUGGER_H_