blob: 23c9c6a1a11ee025c33f27fb0babea1a94b41332 [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 {
Brian Carlstromea46f952013-07-30 01:26:50 -070038class ArtMethod;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039class Class;
40class Object;
41class Throwable;
42} // namespace mirror
Elliott Hughes545a0642011-11-08 19:10:03 -080043struct AllocRecord;
Ian Rogers1b09b092012-08-20 15:35:52 -070044class Thread;
Ian Rogers62d6c772013-02-27 08:32:07 -080045class ThrowLocation;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070046
47/*
48 * Invoke-during-breakpoint support.
49 */
50struct DebugInvokeReq {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -080051 DebugInvokeReq()
Sebastien Hertzd38667a2013-11-25 15:43:54 +010052 : ready(false), invoke_needed(false),
53 receiver(NULL), thread(NULL), klass(NULL), method(NULL),
54 arg_count(0), arg_values(NULL), options(0), error(JDWP::ERR_NONE),
Ian Rogers00f7d0e2012-07-19 15:28:27 -070055 result_tag(JDWP::JT_VOID), exception(0),
Sebastien Hertzd38667a2013-11-25 15:43:54 +010056 lock("a DebugInvokeReq lock", kBreakpointInvokeLock),
57 cond("a DebugInvokeReq condition variable", lock) {
Elliott Hughes475fc232011-10-25 15:00:35 -070058 }
59
Elliott Hughes872d4ec2011-10-21 17:07:15 -070060 /* boolean; only set when we're in the tail end of an event handler */
61 bool ready;
62
63 /* boolean; set if the JDWP thread wants this thread to do work */
Sebastien Hertzd38667a2013-11-25 15:43:54 +010064 bool invoke_needed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070065
66 /* request */
Sebastien Hertzd38667a2013-11-25 15:43:54 +010067 mirror::Object* receiver; /* not used for ClassType.InvokeMethod */
68 mirror::Object* thread;
69 mirror::Class* klass;
70 mirror::ArtMethod* method;
71 uint32_t arg_count;
72 uint64_t* arg_values; /* will be NULL if arg_count_ == 0 */
73 uint32_t options;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070074
75 /* result */
Elliott Hughes475fc232011-10-25 15:00:35 -070076 JDWP::JdwpError error;
Elliott Hughesd07986f2011-12-06 18:27:45 -080077 JDWP::JdwpTag result_tag;
Elliott Hughes475fc232011-10-25 15:00:35 -070078 JValue result_value;
79 JDWP::ObjectId exception;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070080
81 /* condition variable to wait on while the method executes */
Sebastien Hertzd38667a2013-11-25 15:43:54 +010082 Mutex lock DEFAULT_MUTEX_ACQUIRED_AFTER;
83 ConditionVariable cond GUARDED_BY(lock);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +010084
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070085 void VisitRoots(RootCallback* callback, void* arg, uint32_t tid, RootType root_type)
86 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
87
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +010088 private:
89 DISALLOW_COPY_AND_ASSIGN(DebugInvokeReq);
90};
91
92// Thread local data-structure that holds fields for controlling single-stepping.
93struct SingleStepControl {
94 SingleStepControl()
95 : is_active(false), step_size(JDWP::SS_MIN), step_depth(JDWP::SD_INTO),
96 method(nullptr), stack_depth(0) {
97 }
98
99 // Are we single-stepping right now?
100 bool is_active;
101
102 // See JdwpStepSize and JdwpStepDepth for details.
103 JDWP::JdwpStepSize step_size;
104 JDWP::JdwpStepDepth step_depth;
105
106 // The location this single-step was initiated from.
107 // A single-step is initiated in a suspended thread. We save here the current method and the
108 // set of DEX pcs associated to the source line number where the suspension occurred.
109 // This is used to support SD_INTO and SD_OVER single-step depths so we detect when a single-step
110 // causes the execution of an instruction in a different method or at a different line number.
111 mirror::ArtMethod* method;
112 std::set<uint32_t> dex_pcs;
113
114 // The stack depth when this single-step was initiated. This is used to support SD_OVER and SD_OUT
115 // single-step depth.
116 int stack_depth;
117
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700118 void VisitRoots(RootCallback* callback, void* arg, uint32_t tid, RootType root_type)
119 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
120
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100121 private:
122 DISALLOW_COPY_AND_ASSIGN(SingleStepControl);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700123};
124
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100125struct DeoptimizationRequest {
126 enum Kind {
127 kNothing, // no action.
128 kFullDeoptimization, // deoptimize everything.
129 kFullUndeoptimization, // undeoptimize everything.
130 kSelectiveDeoptimization, // deoptimize one method.
131 kSelectiveUndeoptimization // undeoptimize one method.
132 };
133
134 DeoptimizationRequest() : kind(kNothing), method(nullptr) {}
135
136 void VisitRoots(RootCallback* callback, void* arg);
137
138 Kind kind;
139
140 // Method for selective deoptimization.
141 mirror::ArtMethod* method;
142};
143
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700144class Dbg {
Elliott Hughesff17f1f2012-01-24 18:12:29 -0800145 public:
Elliott Hughes3bb81562011-10-21 18:52:59 -0700146 static bool ParseJdwpOptions(const std::string& options);
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700147 static void SetJdwpAllowed(bool allowed);
148
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700149 static void StartJdwp();
150 static void StopJdwp();
151
Elliott Hughes767a1472011-10-26 18:49:02 -0700152 // Invoked by the GC in case we need to keep DDMS informed.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700153 static void GcDidFinish() LOCKS_EXCLUDED(Locks::mutator_lock_);
Elliott Hughes767a1472011-10-26 18:49:02 -0700154
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700155 // Return the DebugInvokeReq for the current thread.
156 static DebugInvokeReq* GetInvokeReq();
157
Elliott Hughes475fc232011-10-25 15:00:35 -0700158 static Thread* GetDebugThread();
159 static void ClearWaitForEventThread();
160
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700161 /*
162 * Enable/disable breakpoints and step modes. Used to provide a heads-up
163 * when the debugger attaches.
164 */
165 static void Connected();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100166 static void GoActive()
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100167 LOCKS_EXCLUDED(Locks::breakpoint_lock_, deoptimization_lock_, Locks::mutator_lock_);
168 static void Disconnected() LOCKS_EXCLUDED(deoptimization_lock_, Locks::mutator_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800169 static void Disposed();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700170
Elliott Hughesc0f09332012-03-26 13:27:06 -0700171 // Returns true if we're actually debugging with a real debugger, false if it's
172 // just DDMS (or nothing at all).
173 static bool IsDebuggerActive();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700174
Elliott Hughesc0f09332012-03-26 13:27:06 -0700175 // Returns true if we had -Xrunjdwp or -agentlib:jdwp= on the command line.
176 static bool IsJdwpConfigured();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700177
Elliott Hughes86964332012-02-15 19:37:42 -0800178 static bool IsDisposed();
179
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700180 /*
181 * Time, in milliseconds, since the last debugger activity. Does not
182 * include DDMS activity. Returns -1 if there has been no activity.
183 * Returns 0 if we're in the middle of handling a debugger request.
184 */
185 static int64_t LastDebuggerActivity();
186
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700187 static void UndoDebuggerSuspensions();
188
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700189 /*
190 * Class, Object, Array
191 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700192 static std::string GetClassName(JDWP::RefTypeId id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700193 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800194 static JDWP::JdwpError GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700195 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800196 static JDWP::JdwpError GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700197 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700198 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700199 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700200 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700201 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800202 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700203 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700204 static void GetClassList(std::vector<JDWP::RefTypeId>& classes)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700205 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800206 static JDWP::JdwpError GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700207 uint32_t* pStatus, std::string* pDescriptor)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700208 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700209 static void FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700210 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800211 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
212 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700213 static JDWP::JdwpError GetSignature(JDWP::RefTypeId ref_type_id, std::string* signature)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700214 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800215 static JDWP::JdwpError GetSourceFile(JDWP::RefTypeId ref_type_id, std::string& source_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700216 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800217 static JDWP::JdwpError GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700218 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesaed4be92011-12-02 16:16:23 -0800219 static size_t GetTagWidth(JDWP::JdwpTag tag);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700220
Elliott Hughes88d63092013-01-09 09:55:54 -0800221 static JDWP::JdwpError GetArrayLength(JDWP::ObjectId array_id, int& length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700222 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800223 static JDWP::JdwpError OutputArray(JDWP::ObjectId array_id, int offset, int count,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700224 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700225 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800226 static JDWP::JdwpError SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800227 JDWP::Request& request)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700228 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700229
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700230 static JDWP::ObjectId CreateString(const std::string& str)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700231 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800232 static JDWP::JdwpError CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700233 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800234 static JDWP::JdwpError CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700235 JDWP::ObjectId& new_array)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700236 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700237
Elliott Hughes88d63092013-01-09 09:55:54 -0800238 static bool MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700239 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700240
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800241 //
242 // Monitors.
243 //
244 static JDWP::JdwpError GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
245 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
246 static JDWP::JdwpError GetOwnedMonitors(JDWP::ObjectId thread_id,
247 std::vector<JDWP::ObjectId>& monitors,
248 std::vector<uint32_t>& stack_depths)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100249 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800250 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100251 static JDWP::JdwpError GetContendedMonitor(JDWP::ObjectId thread_id,
252 JDWP::ObjectId& contended_monitor)
253 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800254 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
255
256 //
257 // Heap.
258 //
259 static JDWP::JdwpError GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
260 std::vector<uint64_t>& counts)
261 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800262 static JDWP::JdwpError GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
263 std::vector<JDWP::ObjectId>& instances)
264 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800265 static JDWP::JdwpError GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
266 std::vector<JDWP::ObjectId>& referring_objects)
267 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800268 static JDWP::JdwpError DisableCollection(JDWP::ObjectId object_id)
269 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
270 static JDWP::JdwpError EnableCollection(JDWP::ObjectId object_id)
271 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
272 static JDWP::JdwpError IsCollected(JDWP::ObjectId object_id, bool& is_collected)
273 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
274 static void DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
275 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800276
Elliott Hughes9777ba22013-01-17 09:04:19 -0800277 //
278 // Methods and fields.
279 //
Elliott Hughesa96836a2013-01-17 12:27:49 -0800280 static std::string GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700281 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800282 static JDWP::JdwpError OutputDeclaredFields(JDWP::RefTypeId ref_type_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700283 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700284 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800285 static JDWP::JdwpError OutputDeclaredMethods(JDWP::RefTypeId ref_type_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700286 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700287 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800288 static JDWP::JdwpError OutputDeclaredInterfaces(JDWP::RefTypeId ref_type_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700289 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700290 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800291 static void OutputLineTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId method_id,
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 void OutputVariableTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700295 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700296 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jeff Hao579b0242013-11-18 13:16:49 -0800297 static void OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
298 JDWP::ExpandBuf* pReply)
299 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes9777ba22013-01-17 09:04:19 -0800300 static JDWP::JdwpError GetBytecodes(JDWP::RefTypeId class_id, JDWP::MethodId method_id,
301 std::vector<uint8_t>& bytecodes)
302 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700303
Elliott Hughesa96836a2013-01-17 12:27:49 -0800304 static std::string GetFieldName(JDWP::FieldId field_id)
305 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800306 static JDWP::JdwpTag GetFieldBasicTag(JDWP::FieldId field_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700307 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800308 static JDWP::JdwpTag GetStaticFieldBasicTag(JDWP::FieldId field_id)
Brian Carlstromf69863b2013-07-17 21:53:13 -0700309 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800310 static JDWP::JdwpError GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700311 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700312 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800313 static JDWP::JdwpError SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700314 uint64_t value, int width)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700315 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800316 static JDWP::JdwpError GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700317 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700318 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800319 static JDWP::JdwpError SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700320 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700321
Elliott Hughes88d63092013-01-09 09:55:54 -0800322 static std::string StringToUtf8(JDWP::ObjectId string_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700323 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jeff Hao579b0242013-11-18 13:16:49 -0800324 static void OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply)
325 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700326
327 /*
328 * Thread, ThreadGroup, Frame
329 */
Elliott Hughes88d63092013-01-09 09:55:54 -0800330 static JDWP::JdwpError GetThreadName(JDWP::ObjectId thread_id, std::string& name)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700331 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
332 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100333 static JDWP::JdwpError GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply)
334 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800335 static std::string GetThreadGroupName(JDWP::ObjectId thread_group_id);
336 static JDWP::ObjectId GetThreadGroupParent(JDWP::ObjectId thread_group_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700337 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700338 static JDWP::ObjectId GetSystemThreadGroupId()
Ian Rogersb726dcb2012-09-05 08:57:23 -0700339 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700340 static JDWP::ObjectId GetMainThreadGroupId();
341
Jeff Hao920af3e2013-08-28 15:46:38 -0700342 static JDWP::JdwpThreadStatus ToJdwpThreadStatus(ThreadState state);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100343 static JDWP::JdwpError GetThreadStatus(JDWP::ObjectId thread_id,
344 JDWP::JdwpThreadStatus* pThreadStatus,
345 JDWP::JdwpSuspendStatus* pSuspendStatus)
346 LOCKS_EXCLUDED(Locks::thread_list_lock_);
347 static JDWP::JdwpError GetThreadDebugSuspendCount(JDWP::ObjectId thread_id,
348 JDWP::ExpandBuf* pReply)
349 LOCKS_EXCLUDED(Locks::thread_list_lock_,
350 Locks::thread_suspend_count_lock_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700351 // static void WaitForSuspend(JDWP::ObjectId thread_id);
Elliott Hughescaf76542012-06-28 16:08:22 -0700352
Elliott Hughes026b1462012-06-28 20:43:49 -0700353 // Fills 'thread_ids' with the threads in the given thread group. If thread_group_id == 0,
Elliott Hughescaf76542012-06-28 16:08:22 -0700354 // returns all threads.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700355 static void GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700356 LOCKS_EXCLUDED(Locks::thread_list_lock_)
357 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescaf76542012-06-28 16:08:22 -0700358 static void GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids);
359
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100360 static JDWP::JdwpError GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result)
361 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700362 static JDWP::JdwpError GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
363 size_t frame_count, JDWP::ExpandBuf* buf)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100364 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700365 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700366
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700367 static JDWP::ObjectId GetThreadSelfId()
Ian Rogersb726dcb2012-09-05 08:57:23 -0700368 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700369 static void SuspendVM()
Ian Rogersb726dcb2012-09-05 08:57:23 -0700370 LOCKS_EXCLUDED(Locks::thread_list_lock_,
371 Locks::thread_suspend_count_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700372 static void ResumeVM();
Elliott Hughes88d63092013-01-09 09:55:54 -0800373 static JDWP::JdwpError SuspendThread(JDWP::ObjectId thread_id, bool request_suspension = true)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700374 LOCKS_EXCLUDED(Locks::mutator_lock_,
375 Locks::thread_list_lock_,
376 Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700377
Elliott Hughes88d63092013-01-09 09:55:54 -0800378 static void ResumeThread(JDWP::ObjectId thread_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700379 LOCKS_EXCLUDED(Locks::thread_list_lock_,
380 Locks::thread_suspend_count_lock_)
381 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700382 static void SuspendSelf();
383
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700384 static JDWP::JdwpError GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
385 JDWP::ObjectId* result)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700386 LOCKS_EXCLUDED(Locks::thread_list_lock_,
387 Locks::thread_suspend_count_lock_)
388 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +0100389 static JDWP::JdwpError GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
390 JDWP::JdwpTag tag, uint8_t* buf, size_t expectedLen)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100391 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700392 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +0100393 static JDWP::JdwpError SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
394 JDWP::JdwpTag tag, uint64_t value, size_t width)
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_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700397
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100398 static JDWP::JdwpError Interrupt(JDWP::ObjectId thread_id)
399 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Elliott Hughesf9501702013-01-11 11:22:27 -0800400
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700401 /*
402 * Debugger notification
403 */
404 enum {
Elliott Hughes86964332012-02-15 19:37:42 -0800405 kBreakpoint = 0x01,
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700406 kSingleStep = 0x02,
407 kMethodEntry = 0x04,
408 kMethodExit = 0x08,
409 };
Ian Rogersef7d42f2014-01-06 12:55:46 -0800410 static void PostLocationEvent(mirror::ArtMethod* method, int pcOffset,
Jeff Hao579b0242013-11-18 13:16:49 -0800411 mirror::Object* thisPtr, int eventFlags,
412 const JValue* return_value)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700413 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800414 static void PostException(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -0700415 mirror::ArtMethod* catch_method,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800416 uint32_t catch_dex_pc, mirror::Throwable* exception)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700417 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700418 static void PostThreadStart(Thread* t)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700419 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700420 static void PostThreadDeath(Thread* t)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700421 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800422 static void PostClassPrepare(mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700423 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700424
Ian Rogers62d6c772013-02-27 08:32:07 -0800425 static void UpdateDebugger(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800426 mirror::ArtMethod* method, uint32_t new_dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800427 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700428 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -0800429
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100430 // Records deoptimization request in the queue.
431 static void RequestDeoptimization(const DeoptimizationRequest& req)
432 LOCKS_EXCLUDED(deoptimization_lock_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100433 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
434
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100435 // Manage deoptimization after updating JDWP events list. Suspends all threads, processes each
436 // request and finally resumes all threads.
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100437 static void ManageDeoptimization()
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100438 LOCKS_EXCLUDED(deoptimization_lock_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100439 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
440
441 // Breakpoints.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100442 static void WatchLocation(const JDWP::JdwpLocation* pLoc, DeoptimizationRequest* req)
443 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700444 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100445 static void UnwatchLocation(const JDWP::JdwpLocation* pLoc, DeoptimizationRequest* req)
446 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700447 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100448
449 // Single-stepping.
Elliott Hughes88d63092013-01-09 09:55:54 -0800450 static JDWP::JdwpError ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize size,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700451 JDWP::JdwpStepDepth depth)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700452 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100453 static void UnconfigureStep(JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100454 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100455 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700456
Elliott Hughes88d63092013-01-09 09:55:54 -0800457 static JDWP::JdwpError InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
458 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700459 uint32_t arg_count, uint64_t* arg_values,
460 JDWP::JdwpTag* arg_types, uint32_t options,
461 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
462 JDWP::ObjectId* pExceptObj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700463 LOCKS_EXCLUDED(Locks::thread_list_lock_,
464 Locks::thread_suspend_count_lock_)
465 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700466 static void ExecuteMethod(DebugInvokeReq* pReq);
467
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700468 /*
469 * DDM support.
470 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700471 static void DdmSendThreadNotification(Thread* t, uint32_t type)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700472 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100473 static void DdmSetThreadNotification(bool enable)
474 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800475 static bool DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen);
Ian Rogersb726dcb2012-09-05 08:57:23 -0700476 static void DdmConnected() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
477 static void DdmDisconnected() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700478 static void DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700479 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700480 static void DdmSendChunk(uint32_t type, size_t len, const uint8_t* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700481 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700482 static void DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700483 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes767a1472011-10-26 18:49:02 -0700484
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700485 static void VisitRoots(RootCallback* callback, void* arg)
486 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
487
Elliott Hughes545a0642011-11-08 19:10:03 -0800488 /*
489 * Recent allocation tracking support.
490 */
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800491 static void RecordAllocation(mirror::Class* type, size_t byte_count)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100492 LOCKS_EXCLUDED(alloc_tracker_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700493 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100494 static void SetAllocTrackingEnabled(bool enabled) LOCKS_EXCLUDED(alloc_tracker_lock_);
Ian Rogers719d1a32014-03-06 12:13:39 -0800495 static bool IsAllocTrackingEnabled() {
496 return recent_allocation_records_ != nullptr;
497 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100498 static jbyteArray GetRecentAllocations()
499 LOCKS_EXCLUDED(alloc_tracker_lock_)
500 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers719d1a32014-03-06 12:13:39 -0800501 static size_t HeadIndex() EXCLUSIVE_LOCKS_REQUIRED(alloc_tracker_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100502 static void DumpRecentAllocations() LOCKS_EXCLUDED(alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -0800503
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800504 // Updates the stored direct object pointers (called from SweepSystemWeaks).
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800505 static void UpdateObjectPointers(IsMarkedCallback* callback, void* arg)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100506 LOCKS_EXCLUDED(alloc_tracker_lock_)
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800507 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
508
Elliott Hughes767a1472011-10-26 18:49:02 -0700509 enum HpifWhen {
510 HPIF_WHEN_NEVER = 0,
511 HPIF_WHEN_NOW = 1,
512 HPIF_WHEN_NEXT_GC = 2,
513 HPIF_WHEN_EVERY_GC = 3
514 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700515 static int DdmHandleHpifChunk(HpifWhen when)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700516 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes767a1472011-10-26 18:49:02 -0700517
518 enum HpsgWhen {
519 HPSG_WHEN_NEVER = 0,
520 HPSG_WHEN_EVERY_GC = 1,
521 };
522 enum HpsgWhat {
523 HPSG_WHAT_MERGED_OBJECTS = 0,
524 HPSG_WHAT_DISTINCT_OBJECTS = 1,
525 };
526 static bool DdmHandleHpsgNhsgChunk(HpsgWhen when, HpsgWhat what, bool native);
527
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700528 static void DdmSendHeapInfo(HpifWhen reason)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700529 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700530 static void DdmSendHeapSegments(bool native)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700531 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -0800532
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800533 static void AllowNewObjectRegistryObjects() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
534 static void DisallowNewObjectRegistryObjects() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
535
Elliott Hughes545a0642011-11-08 19:10:03 -0800536 private:
Brian Carlstrom2d888622013-07-18 17:02:00 -0700537 static void DdmBroadcast(bool connect) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700538 static void PostThreadStartOrStop(Thread*, uint32_t)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700539 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesa2155262011-11-16 16:26:58 -0800540
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100541 static void ProcessDeoptimizationRequest(const DeoptimizationRequest& request)
542 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
543
Ian Rogers719d1a32014-03-06 12:13:39 -0800544 static Mutex* alloc_tracker_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
545
546 static AllocRecord* recent_allocation_records_ PT_GUARDED_BY(alloc_tracker_lock_);
547 static size_t alloc_record_max_ GUARDED_BY(alloc_tracker_lock_);
548 static size_t alloc_record_head_ GUARDED_BY(alloc_tracker_lock_);
549 static size_t alloc_record_count_ GUARDED_BY(alloc_tracker_lock_);
550
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100551 // Guards deoptimization requests.
552 static Mutex* deoptimization_lock_ ACQUIRED_AFTER(Locks::breakpoint_lock_);
553
554 // Deoptimization requests to be processed each time the event list is updated. This is used when
555 // registering and unregistering events so we do not deoptimize while holding the event list
556 // lock.
557 static std::vector<DeoptimizationRequest> deoptimization_requests_ GUARDED_BY(deoptimization_lock_);
558
559 // Count the number of events requiring full deoptimization. When the counter is > 0, everything
560 // is deoptimized, otherwise everything is undeoptimized.
561 // Note: we fully deoptimize on the first event only (when the counter is set to 1). We fully
562 // undeoptimize when the last event is unregistered (when the counter is set to 0).
563 static size_t full_deoptimization_event_count_ GUARDED_BY(deoptimization_lock_);
564
Ian Rogers719d1a32014-03-06 12:13:39 -0800565 DISALLOW_COPY_AND_ASSIGN(Dbg);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700566};
567
568#define CHUNK_TYPE(_name) \
Elliott Hughes82188472011-11-07 18:11:48 -0800569 static_cast<uint32_t>((_name)[0] << 24 | (_name)[1] << 16 | (_name)[2] << 8 | (_name)[3])
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700570
571} // namespace art
572
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700573#endif // ART_RUNTIME_DEBUGGER_H_