blob: fd7d46c37e2c237ce38d2ee802048efe648231df [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
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -080030#include "gc_root.h"
Elliott Hughes872d4ec2011-10-21 17:07:15 -070031#include "jdwp/jdwp.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080032#include "jni.h"
33#include "jvalue.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 {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038class Class;
39class Object;
40class Throwable;
41} // namespace mirror
Mathieu Chartierc7853442015-03-27 14:35:38 -070042class ArtField;
Mathieu Chartiere401d142015-04-22 13:56:20 -070043class ArtMethod;
Sebastien Hertz6995c602014-09-09 12:10:13 +020044class ObjectRegistry;
Sebastien Hertzcbc50642015-06-01 17:33:12 +020045class ScopedObjectAccess;
Sebastien Hertz6995c602014-09-09 12:10:13 +020046class ScopedObjectAccessUnchecked;
Sebastien Hertz8009f392014-09-01 17:07:11 +020047class StackVisitor;
Ian Rogers1b09b092012-08-20 15:35:52 -070048class Thread;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070049
50/*
51 * Invoke-during-breakpoint support.
52 */
53struct DebugInvokeReq {
Sebastien Hertzcbc50642015-06-01 17:33:12 +020054 DebugInvokeReq(uint32_t invoke_request_id, JDWP::ObjectId invoke_thread_id,
55 mirror::Object* invoke_receiver, mirror::Class* invoke_class,
Mathieu Chartiere401d142015-04-22 13:56:20 -070056 ArtMethod* invoke_method, uint32_t invoke_options,
Sebastien Hertzcbc50642015-06-01 17:33:12 +020057 uint64_t args[], uint32_t args_count)
58 : request_id(invoke_request_id), thread_id(invoke_thread_id), receiver(invoke_receiver),
59 klass(invoke_class), method(invoke_method), arg_count(args_count), arg_values(args),
60 options(invoke_options), reply(JDWP::expandBufAlloc()) {
Elliott Hughes475fc232011-10-25 15:00:35 -070061 }
62
Sebastien Hertzcbc50642015-06-01 17:33:12 +020063 ~DebugInvokeReq() {
64 JDWP::expandBufFree(reply);
65 }
66
67 // Request
68 const uint32_t request_id;
69 const JDWP::ObjectId thread_id;
70 GcRoot<mirror::Object> receiver; // not used for ClassType.InvokeMethod.
Sebastien Hertz1558b572015-02-25 15:05:59 +010071 GcRoot<mirror::Class> klass;
Sebastien Hertzcbc50642015-06-01 17:33:12 +020072 ArtMethod* const method;
Sebastien Hertz1558b572015-02-25 15:05:59 +010073 const uint32_t arg_count;
Sebastien Hertzcbc50642015-06-01 17:33:12 +020074 std::unique_ptr<uint64_t[]> arg_values; // will be null if arg_count_ == 0. We take ownership
75 // of this array so we must delete it upon destruction.
Sebastien Hertz1558b572015-02-25 15:05:59 +010076 const uint32_t options;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070077
Sebastien Hertzcbc50642015-06-01 17:33:12 +020078 // Reply
79 JDWP::ExpandBuf* const reply;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +010080
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -070081 void VisitRoots(RootVisitor* visitor, const RootInfo& root_info)
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -070082 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
83
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +010084 private:
85 DISALLOW_COPY_AND_ASSIGN(DebugInvokeReq);
86};
87
88// Thread local data-structure that holds fields for controlling single-stepping.
Sebastien Hertz597c4f02015-01-26 17:37:14 +010089class SingleStepControl {
90 public:
91 SingleStepControl(JDWP::JdwpStepSize step_size, JDWP::JdwpStepDepth step_depth,
Mathieu Chartiere401d142015-04-22 13:56:20 -070092 int stack_depth, ArtMethod* method)
Sebastien Hertz597c4f02015-01-26 17:37:14 +010093 : step_size_(step_size), step_depth_(step_depth),
94 stack_depth_(stack_depth), method_(method) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +010095 }
96
Sebastien Hertz597c4f02015-01-26 17:37:14 +010097 JDWP::JdwpStepSize GetStepSize() const {
98 return step_size_;
99 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100100
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100101 JDWP::JdwpStepDepth GetStepDepth() const {
102 return step_depth_;
103 }
104
105 int GetStackDepth() const {
106 return stack_depth_;
107 }
108
Mathieu Chartiere401d142015-04-22 13:56:20 -0700109 ArtMethod* GetMethod() const {
110 return method_;
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100111 }
112
113 const std::set<uint32_t>& GetDexPcs() const {
114 return dex_pcs_;
115 }
116
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100117 void AddDexPc(uint32_t dex_pc);
118
119 bool ContainsDexPc(uint32_t dex_pc) const;
120
121 private:
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100122 // See JdwpStepSize and JdwpStepDepth for details.
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100123 const JDWP::JdwpStepSize step_size_;
124 const JDWP::JdwpStepDepth step_depth_;
125
126 // The stack depth when this single-step was initiated. This is used to support SD_OVER and SD_OUT
127 // single-step depth.
128 const int stack_depth_;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100129
130 // The location this single-step was initiated from.
131 // A single-step is initiated in a suspended thread. We save here the current method and the
132 // set of DEX pcs associated to the source line number where the suspension occurred.
133 // This is used to support SD_INTO and SD_OVER single-step depths so we detect when a single-step
134 // causes the execution of an instruction in a different method or at a different line number.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700135 ArtMethod* method_;
136
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100137 std::set<uint32_t> dex_pcs_;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100138
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100139 DISALLOW_COPY_AND_ASSIGN(SingleStepControl);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700140};
141
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200142// TODO rename to InstrumentationRequest.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700143class DeoptimizationRequest {
144 public:
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100145 enum Kind {
146 kNothing, // no action.
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200147 kRegisterForEvent, // start listening for instrumentation event.
148 kUnregisterForEvent, // stop listening for instrumentation event.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100149 kFullDeoptimization, // deoptimize everything.
150 kFullUndeoptimization, // undeoptimize everything.
151 kSelectiveDeoptimization, // deoptimize one method.
152 kSelectiveUndeoptimization // undeoptimize one method.
153 };
154
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700155 DeoptimizationRequest() : kind_(kNothing), instrumentation_event_(0), method_(nullptr) {}
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100156
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700157 DeoptimizationRequest(const DeoptimizationRequest& other)
158 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
159 : kind_(other.kind_), instrumentation_event_(other.instrumentation_event_) {
160 // Create a new JNI global reference for the method.
161 SetMethod(other.Method());
162 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100163
Mathieu Chartiere401d142015-04-22 13:56:20 -0700164 ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700165
Mathieu Chartiere401d142015-04-22 13:56:20 -0700166 void SetMethod(ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700167
168 // Name 'Kind()' would collide with the above enum name.
169 Kind GetKind() const {
170 return kind_;
171 }
172
173 void SetKind(Kind kind) {
174 kind_ = kind;
175 }
176
177 uint32_t InstrumentationEvent() const {
178 return instrumentation_event_;
179 }
180
181 void SetInstrumentationEvent(uint32_t instrumentation_event) {
182 instrumentation_event_ = instrumentation_event;
183 }
184
185 private:
186 Kind kind_;
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100187
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200188 // TODO we could use a union to hold the instrumentation_event and the method since they
189 // respectively have sense only for kRegisterForEvent/kUnregisterForEvent and
190 // kSelectiveDeoptimization/kSelectiveUndeoptimization.
191
192 // Event to start or stop listening to. Only for kRegisterForEvent and kUnregisterForEvent.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700193 uint32_t instrumentation_event_;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200194
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100195 // Method for selective deoptimization.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700196 jmethodID method_;
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100197};
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700198std::ostream& operator<<(std::ostream& os, const DeoptimizationRequest::Kind& rhs);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100199
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700200class Dbg {
Elliott Hughesff17f1f2012-01-24 18:12:29 -0800201 public:
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700202 static void SetJdwpAllowed(bool allowed);
203
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100204 static void StartJdwp();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700205 static void StopJdwp();
206
Elliott Hughes767a1472011-10-26 18:49:02 -0700207 // Invoked by the GC in case we need to keep DDMS informed.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700208 static void GcDidFinish() LOCKS_EXCLUDED(Locks::mutator_lock_);
Elliott Hughes767a1472011-10-26 18:49:02 -0700209
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700210 // Return the DebugInvokeReq for the current thread.
211 static DebugInvokeReq* GetInvokeReq();
212
Elliott Hughes475fc232011-10-25 15:00:35 -0700213 static Thread* GetDebugThread();
214 static void ClearWaitForEventThread();
215
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700216 /*
217 * Enable/disable breakpoints and step modes. Used to provide a heads-up
218 * when the debugger attaches.
219 */
220 static void Connected();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100221 static void GoActive()
Brian Carlstrom306db812014-09-05 13:01:41 -0700222 LOCKS_EXCLUDED(Locks::breakpoint_lock_, Locks::deoptimization_lock_, Locks::mutator_lock_);
223 static void Disconnected() LOCKS_EXCLUDED(Locks::deoptimization_lock_, Locks::mutator_lock_);
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100224 static void Dispose() {
225 gDisposed = true;
226 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700227
Elliott Hughesc0f09332012-03-26 13:27:06 -0700228 // Returns true if we're actually debugging with a real debugger, false if it's
229 // just DDMS (or nothing at all).
Daniel Mihalyieb076692014-08-22 17:33:31 +0200230 static bool IsDebuggerActive() {
231 return gDebuggerActive;
232 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700233
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100234 // Configures JDWP with parsed command-line options.
235 static void ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options);
236
Elliott Hughesc0f09332012-03-26 13:27:06 -0700237 // Returns true if we had -Xrunjdwp or -agentlib:jdwp= on the command line.
238 static bool IsJdwpConfigured();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700239
Mathieu Chartierd8565452015-03-26 09:41:50 -0700240 // Returns true if a method has any breakpoints.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700241 static bool MethodHasAnyBreakpoints(ArtMethod* method)
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100242 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
243 LOCKS_EXCLUDED(Locks::breakpoint_lock_);
Mathieu Chartierd8565452015-03-26 09:41:50 -0700244
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100245 static bool IsDisposed() {
246 return gDisposed;
247 }
Elliott Hughes86964332012-02-15 19:37:42 -0800248
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700249 /*
250 * Time, in milliseconds, since the last debugger activity. Does not
251 * include DDMS activity. Returns -1 if there has been no activity.
252 * Returns 0 if we're in the middle of handling a debugger request.
253 */
254 static int64_t LastDebuggerActivity();
255
Sebastien Hertz253fa552014-10-14 17:27:15 +0200256 static void UndoDebuggerSuspensions()
257 LOCKS_EXCLUDED(Locks::thread_list_lock_,
258 Locks::thread_suspend_count_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700259
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700260 /*
261 * Class, Object, Array
262 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700263 static std::string GetClassName(JDWP::RefTypeId id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700264 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz6995c602014-09-09 12:10:13 +0200265 static std::string GetClassName(mirror::Class* klass)
266 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700267 static JDWP::JdwpError GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700268 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700269 static JDWP::JdwpError GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700270 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700271 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700272 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700273 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700274 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800275 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700276 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700277 static void GetClassList(std::vector<JDWP::RefTypeId>* classes)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700278 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800279 static JDWP::JdwpError GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700280 uint32_t* pStatus, std::string* pDescriptor)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700281 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700282 static void FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700283 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800284 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
285 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700286 static JDWP::JdwpError GetSignature(JDWP::RefTypeId ref_type_id, std::string* signature)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700287 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700288 static JDWP::JdwpError GetSourceFile(JDWP::RefTypeId ref_type_id, std::string* source_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700289 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700290 static JDWP::JdwpError GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700291 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesaed4be92011-12-02 16:16:23 -0800292 static size_t GetTagWidth(JDWP::JdwpTag tag);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700293
Ian Rogersc0542af2014-09-03 16:16:56 -0700294 static JDWP::JdwpError GetArrayLength(JDWP::ObjectId array_id, int32_t* length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700295 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800296 static JDWP::JdwpError OutputArray(JDWP::ObjectId array_id, int offset, int count,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700297 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700298 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800299 static JDWP::JdwpError SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700300 JDWP::Request* request)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700301 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700302
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +0200303 static JDWP::JdwpError CreateString(const std::string& str, JDWP::ObjectId* new_string_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700304 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +0200305 static JDWP::JdwpError CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700306 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800307 static JDWP::JdwpError CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +0200308 JDWP::ObjectId* new_array_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700309 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700310
Sebastien Hertz6995c602014-09-09 12:10:13 +0200311 //
312 // Event filtering.
313 //
314 static bool MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread)
315 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
316
317 static bool MatchLocation(const JDWP::JdwpLocation& expected_location,
318 const JDWP::EventLocation& event_location)
319 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
320
321 static bool MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id)
322 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
323
324 static bool MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700325 ArtField* event_field)
Sebastien Hertz6995c602014-09-09 12:10:13 +0200326 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
327
328 static bool MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700329 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700330
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800331 //
332 // Monitors.
333 //
334 static JDWP::JdwpError GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
335 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
336 static JDWP::JdwpError GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700337 std::vector<JDWP::ObjectId>* monitors,
338 std::vector<uint32_t>* stack_depths)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100339 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800340 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100341 static JDWP::JdwpError GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700342 JDWP::ObjectId* contended_monitor)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100343 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800344 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
345
346 //
347 // Heap.
348 //
349 static JDWP::JdwpError GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -0700350 std::vector<uint64_t>* counts)
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800351 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800352 static JDWP::JdwpError GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700353 std::vector<JDWP::ObjectId>* instances)
Elliott Hughes3b78c942013-01-15 17:35:41 -0800354 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800355 static JDWP::JdwpError GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700356 std::vector<JDWP::ObjectId>* referring_objects)
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800357 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800358 static JDWP::JdwpError DisableCollection(JDWP::ObjectId object_id)
359 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
360 static JDWP::JdwpError EnableCollection(JDWP::ObjectId object_id)
361 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700362 static JDWP::JdwpError IsCollected(JDWP::ObjectId object_id, bool* is_collected)
Elliott Hughes64f574f2013-02-20 14:57:12 -0800363 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
364 static void DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
365 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800366
Elliott Hughes9777ba22013-01-17 09:04:19 -0800367 //
368 // Methods and fields.
369 //
Elliott Hughesa96836a2013-01-17 12:27:49 -0800370 static std::string GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700371 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800372 static JDWP::JdwpError OutputDeclaredFields(JDWP::RefTypeId ref_type_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700373 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700374 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800375 static JDWP::JdwpError OutputDeclaredMethods(JDWP::RefTypeId ref_type_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700376 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700377 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800378 static JDWP::JdwpError OutputDeclaredInterfaces(JDWP::RefTypeId ref_type_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700379 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700380 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800381 static void OutputLineTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700382 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700383 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800384 static void OutputVariableTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700385 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700386 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jeff Hao579b0242013-11-18 13:16:49 -0800387 static void OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
388 JDWP::ExpandBuf* pReply)
389 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200390 static void OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
391 JDWP::ExpandBuf* pReply)
392 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes9777ba22013-01-17 09:04:19 -0800393 static JDWP::JdwpError GetBytecodes(JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700394 std::vector<uint8_t>* bytecodes)
Elliott Hughes9777ba22013-01-17 09:04:19 -0800395 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700396
Elliott Hughesa96836a2013-01-17 12:27:49 -0800397 static std::string GetFieldName(JDWP::FieldId field_id)
398 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800399 static JDWP::JdwpTag GetFieldBasicTag(JDWP::FieldId field_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700400 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800401 static JDWP::JdwpTag GetStaticFieldBasicTag(JDWP::FieldId field_id)
Brian Carlstromf69863b2013-07-17 21:53:13 -0700402 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800403 static JDWP::JdwpError GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700404 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700405 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800406 static JDWP::JdwpError SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700407 uint64_t value, int width)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700408 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800409 static JDWP::JdwpError GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700410 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700411 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800412 static JDWP::JdwpError SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700413 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700414
Sebastien Hertzb0b0b492014-09-15 11:27:27 +0200415 static JDWP::JdwpError StringToUtf8(JDWP::ObjectId string_id, std::string* str)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700416 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jeff Hao579b0242013-11-18 13:16:49 -0800417 static void OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply)
418 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700419
420 /*
421 * Thread, ThreadGroup, Frame
422 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700423 static JDWP::JdwpError GetThreadName(JDWP::ObjectId thread_id, std::string* name)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700424 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
425 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100426 static JDWP::JdwpError GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply)
Sebastien Hertza06430c2014-09-15 19:21:30 +0200427 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100428 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Sebastien Hertza06430c2014-09-15 19:21:30 +0200429 static JDWP::JdwpError GetThreadGroupName(JDWP::ObjectId thread_group_id,
430 JDWP::ExpandBuf* pReply)
431 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
432 static JDWP::JdwpError GetThreadGroupParent(JDWP::ObjectId thread_group_id,
433 JDWP::ExpandBuf* pReply)
434 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
435 static JDWP::JdwpError GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
436 JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700437 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700438 static JDWP::ObjectId GetSystemThreadGroupId()
Ian Rogersb726dcb2012-09-05 08:57:23 -0700439 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700440
Jeff Hao920af3e2013-08-28 15:46:38 -0700441 static JDWP::JdwpThreadStatus ToJdwpThreadStatus(ThreadState state);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100442 static JDWP::JdwpError GetThreadStatus(JDWP::ObjectId thread_id,
443 JDWP::JdwpThreadStatus* pThreadStatus,
444 JDWP::JdwpSuspendStatus* pSuspendStatus)
445 LOCKS_EXCLUDED(Locks::thread_list_lock_);
446 static JDWP::JdwpError GetThreadDebugSuspendCount(JDWP::ObjectId thread_id,
447 JDWP::ExpandBuf* pReply)
448 LOCKS_EXCLUDED(Locks::thread_list_lock_,
449 Locks::thread_suspend_count_lock_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700450 // static void WaitForSuspend(JDWP::ObjectId thread_id);
Elliott Hughescaf76542012-06-28 16:08:22 -0700451
Elliott Hughes026b1462012-06-28 20:43:49 -0700452 // Fills 'thread_ids' with the threads in the given thread group. If thread_group_id == 0,
Elliott Hughescaf76542012-06-28 16:08:22 -0700453 // returns all threads.
Sebastien Hertza06430c2014-09-15 19:21:30 +0200454 static void GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700455 LOCKS_EXCLUDED(Locks::thread_list_lock_)
456 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescaf76542012-06-28 16:08:22 -0700457
Ian Rogersc0542af2014-09-03 16:16:56 -0700458 static JDWP::JdwpError GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100459 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700460 static JDWP::JdwpError GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
461 size_t frame_count, JDWP::ExpandBuf* buf)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100462 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700463 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700464
Sebastien Hertz6995c602014-09-09 12:10:13 +0200465 static JDWP::ObjectId GetThreadSelfId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
466 static JDWP::ObjectId GetThreadId(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
467
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700468 static void SuspendVM()
Ian Rogersb726dcb2012-09-05 08:57:23 -0700469 LOCKS_EXCLUDED(Locks::thread_list_lock_,
470 Locks::thread_suspend_count_lock_);
Sebastien Hertz253fa552014-10-14 17:27:15 +0200471 static void ResumeVM()
472 LOCKS_EXCLUDED(Locks::thread_list_lock_,
473 Locks::thread_suspend_count_lock_);
Elliott Hughes88d63092013-01-09 09:55:54 -0800474 static JDWP::JdwpError SuspendThread(JDWP::ObjectId thread_id, bool request_suspension = true)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700475 LOCKS_EXCLUDED(Locks::mutator_lock_,
476 Locks::thread_list_lock_,
477 Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700478
Elliott Hughes88d63092013-01-09 09:55:54 -0800479 static void ResumeThread(JDWP::ObjectId thread_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700480 LOCKS_EXCLUDED(Locks::thread_list_lock_,
481 Locks::thread_suspend_count_lock_)
482 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700483 static void SuspendSelf();
484
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700485 static JDWP::JdwpError GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
486 JDWP::ObjectId* result)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700487 LOCKS_EXCLUDED(Locks::thread_list_lock_,
488 Locks::thread_suspend_count_lock_)
489 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8009f392014-09-01 17:07:11 +0200490 static JDWP::JdwpError GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100491 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700492 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz8009f392014-09-01 17:07:11 +0200493 static JDWP::JdwpError SetLocalValues(JDWP::Request* request)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100494 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700495 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700496
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100497 static JDWP::JdwpError Interrupt(JDWP::ObjectId thread_id)
498 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Elliott Hughesf9501702013-01-11 11:22:27 -0800499
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700500 /*
501 * Debugger notification
502 */
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700503 enum EventFlag {
Elliott Hughes86964332012-02-15 19:37:42 -0800504 kBreakpoint = 0x01,
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700505 kSingleStep = 0x02,
506 kMethodEntry = 0x04,
507 kMethodExit = 0x08,
508 };
Mathieu Chartiere401d142015-04-22 13:56:20 -0700509 static void PostFieldAccessEvent(ArtMethod* m, int dex_pc, mirror::Object* this_object,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700510 ArtField* f)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200511 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700512 static void PostFieldModificationEvent(ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700513 mirror::Object* this_object, ArtField* f,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200514 const JValue* field_value)
515 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000516 static void PostException(mirror::Throwable* exception)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700517 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700518 static void PostThreadStart(Thread* t)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700519 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700520 static void PostThreadDeath(Thread* t)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700521 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800522 static void PostClassPrepare(mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700523 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700524
Ian Rogers62d6c772013-02-27 08:32:07 -0800525 static void UpdateDebugger(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700526 ArtMethod* method, uint32_t new_dex_pc,
Sebastien Hertz8379b222014-02-24 17:38:15 +0100527 int event_flags, const JValue* return_value)
jeffhao09bfc6a2012-12-11 18:11:43 -0800528 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700529 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -0800530
Sebastien Hertzf3928792014-11-17 19:00:37 +0100531 // Indicates whether we need deoptimization for debugging.
532 static bool RequiresDeoptimization();
533
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100534 // Records deoptimization request in the queue.
535 static void RequestDeoptimization(const DeoptimizationRequest& req)
Brian Carlstrom306db812014-09-05 13:01:41 -0700536 LOCKS_EXCLUDED(Locks::deoptimization_lock_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100537 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
538
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100539 // Manage deoptimization after updating JDWP events list. Suspends all threads, processes each
540 // request and finally resumes all threads.
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100541 static void ManageDeoptimization()
Brian Carlstrom306db812014-09-05 13:01:41 -0700542 LOCKS_EXCLUDED(Locks::deoptimization_lock_)
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100543 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
544
545 // Breakpoints.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100546 static void WatchLocation(const JDWP::JdwpLocation* pLoc, DeoptimizationRequest* req)
547 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700548 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100549 static void UnwatchLocation(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 Hertz138dbfc2013-12-04 18:15:25 +0100552
Daniel Mihalyieb076692014-08-22 17:33:31 +0200553 /*
554 * Forced interpreter checkers for single-step and continue support.
555 */
556
557 // Indicates whether we need to force the use of interpreter to invoke a method.
558 // This allows to single-step or continue into the called method.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700559 static bool IsForcedInterpreterNeededForCalling(Thread* thread, ArtMethod* m)
Daniel Mihalyieb076692014-08-22 17:33:31 +0200560 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
561 if (!IsDebuggerActive()) {
562 return false;
563 }
564 return IsForcedInterpreterNeededForCallingImpl(thread, m);
565 }
566
567 // Indicates whether we need to force the use of interpreter entrypoint when calling a
568 // method through the resolution trampoline. This allows to single-step or continue into
569 // the called method.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700570 static bool IsForcedInterpreterNeededForResolution(Thread* thread, ArtMethod* m)
Daniel Mihalyieb076692014-08-22 17:33:31 +0200571 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
572 if (!IsDebuggerActive()) {
573 return false;
574 }
575 return IsForcedInterpreterNeededForResolutionImpl(thread, m);
576 }
577
578 // Indicates whether we need to force the use of instrumentation entrypoint when calling
579 // a method through the resolution trampoline. This allows to deoptimize the stack for
580 // debugging when we returned from the called method.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700581 static bool IsForcedInstrumentationNeededForResolution(Thread* thread, ArtMethod* m)
Daniel Mihalyieb076692014-08-22 17:33:31 +0200582 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
583 if (!IsDebuggerActive()) {
584 return false;
585 }
586 return IsForcedInstrumentationNeededForResolutionImpl(thread, m);
587 }
588
589 // Indicates whether we need to force the use of interpreter when returning from the
590 // interpreter into the runtime. This allows to deoptimize the stack and continue
591 // execution with interpreter for debugging.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700592 static bool IsForcedInterpreterNeededForUpcall(Thread* thread, ArtMethod* m)
Daniel Mihalyieb076692014-08-22 17:33:31 +0200593 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
594 if (!IsDebuggerActive()) {
595 return false;
596 }
597 return IsForcedInterpreterNeededForUpcallImpl(thread, m);
598 }
599
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100600 // Single-stepping.
Elliott Hughes88d63092013-01-09 09:55:54 -0800601 static JDWP::JdwpError ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize size,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700602 JDWP::JdwpStepDepth depth)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700603 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100604 static void UnconfigureStep(JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100605 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +0100606 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700607
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200608 /*
609 * Invoke support
610 */
611
612 // Called by the JDWP thread to prepare invocation in the event thread (suspended on an event).
613 // If the information sent by the debugger is incorrect, it will send a reply with the
614 // appropriate error code. Otherwise, it will attach a DebugInvokeReq object to the event thread
615 // and resume it (and possibly other threads depending on the invoke options).
616 // Unlike other commands, the JDWP thread will not send the reply to the debugger (see
617 // JdwpState::ProcessRequest). The reply will be sent by the event thread itself after method
618 // invocation completes (see FinishInvokeMethod). This is required to allow the JDWP thread to
619 // process incoming commands from the debugger while the invocation is still in progress in the
620 // event thread, especially if it gets suspended by a debug event occurring in another thread.
621 static JDWP::JdwpError PrepareInvokeMethod(uint32_t request_id, JDWP::ObjectId thread_id,
622 JDWP::ObjectId object_id, JDWP::RefTypeId class_id,
623 JDWP::MethodId method_id, uint32_t arg_count,
624 uint64_t arg_values[], JDWP::JdwpTag* arg_types,
625 uint32_t options)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700626 LOCKS_EXCLUDED(Locks::thread_list_lock_,
627 Locks::thread_suspend_count_lock_)
628 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200629
630 // Called by the event thread to execute a method prepared by the JDWP thread in the given
631 // DebugInvokeReq object. Once the invocation completes, the event thread attaches a reply
632 // to that DebugInvokeReq object so it can be sent to the debugger only when the event thread
633 // is ready to suspend (see FinishInvokeMethod).
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700634 static void ExecuteMethod(DebugInvokeReq* pReq);
635
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200636 // Called by the event thread to send the reply of the invoke (created in ExecuteMethod)
637 // before suspending itself. This is to ensure the thread is ready to suspend before the
638 // debugger receives the reply.
639 static void FinishInvokeMethod(DebugInvokeReq* pReq);
640
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700641 /*
642 * DDM support.
643 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700644 static void DdmSendThreadNotification(Thread* t, uint32_t type)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700645 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100646 static void DdmSetThreadNotification(bool enable)
647 LOCKS_EXCLUDED(Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700648 static bool DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen);
Ian Rogersb726dcb2012-09-05 08:57:23 -0700649 static void DdmConnected() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
650 static void DdmDisconnected() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700651 static void DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700652 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700653 static void DdmSendChunk(uint32_t type, size_t len, const uint8_t* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700654 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700655 static void DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700656 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes767a1472011-10-26 18:49:02 -0700657
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700658 static void VisitRoots(RootVisitor* visitor)
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700659 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
660
Elliott Hughes545a0642011-11-08 19:10:03 -0800661 /*
Man Cao8c2ff642015-05-27 17:25:30 -0700662 * Allocation tracking support.
Elliott Hughes545a0642011-11-08 19:10:03 -0800663 */
Brian Carlstrom306db812014-09-05 13:01:41 -0700664 static void SetAllocTrackingEnabled(bool enabled) LOCKS_EXCLUDED(Locks::alloc_tracker_lock_);
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100665 static jbyteArray GetRecentAllocations()
Brian Carlstrom306db812014-09-05 13:01:41 -0700666 LOCKS_EXCLUDED(Locks::alloc_tracker_lock_)
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100667 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom306db812014-09-05 13:01:41 -0700668 static void DumpRecentAllocations() LOCKS_EXCLUDED(Locks::alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -0800669
Elliott Hughes767a1472011-10-26 18:49:02 -0700670 enum HpifWhen {
671 HPIF_WHEN_NEVER = 0,
672 HPIF_WHEN_NOW = 1,
673 HPIF_WHEN_NEXT_GC = 2,
674 HPIF_WHEN_EVERY_GC = 3
675 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700676 static int DdmHandleHpifChunk(HpifWhen when)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700677 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes767a1472011-10-26 18:49:02 -0700678
679 enum HpsgWhen {
680 HPSG_WHEN_NEVER = 0,
681 HPSG_WHEN_EVERY_GC = 1,
682 };
683 enum HpsgWhat {
684 HPSG_WHAT_MERGED_OBJECTS = 0,
685 HPSG_WHAT_DISTINCT_OBJECTS = 1,
686 };
687 static bool DdmHandleHpsgNhsgChunk(HpsgWhen when, HpsgWhat what, bool native);
688
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700689 static void DdmSendHeapInfo(HpifWhen reason)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700690 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700691 static void DdmSendHeapSegments(bool native)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700692 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -0800693
Sebastien Hertz6995c602014-09-09 12:10:13 +0200694 static ObjectRegistry* GetObjectRegistry() {
695 return gRegistry;
696 }
697
698 static JDWP::JdwpTag TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o)
699 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
700
701 static JDWP::JdwpTypeTag GetTypeTag(mirror::Class* klass)
702 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
703
Mathieu Chartierc7853442015-03-27 14:35:38 -0700704 static JDWP::FieldId ToFieldId(const ArtField* f)
Sebastien Hertz6995c602014-09-09 12:10:13 +0200705 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
706
Mathieu Chartiere401d142015-04-22 13:56:20 -0700707 static void SetJdwpLocation(JDWP::JdwpLocation* location, ArtMethod* m, uint32_t dex_pc)
Sebastien Hertz6995c602014-09-09 12:10:13 +0200708 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
709
Mathieu Chartierad466ad2015-01-08 16:28:08 -0800710 static JDWP::JdwpState* GetJdwpState();
711
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200712 static uint32_t GetInstrumentationEvents() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
713 return instrumentation_events_;
714 }
715
Elliott Hughes545a0642011-11-08 19:10:03 -0800716 private:
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200717 static void ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq)
718 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
719
720 static void BuildInvokeReply(JDWP::ExpandBuf* pReply, uint32_t request_id,
721 JDWP::JdwpTag result_tag, uint64_t result_value,
722 JDWP::ObjectId exception)
723 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
724
Sebastien Hertz8009f392014-09-01 17:07:11 +0200725 static JDWP::JdwpError GetLocalValue(const StackVisitor& visitor,
726 ScopedObjectAccessUnchecked& soa, int slot,
727 JDWP::JdwpTag tag, uint8_t* buf, size_t width)
728 LOCKS_EXCLUDED(Locks::thread_list_lock_)
729 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
730 static JDWP::JdwpError SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag,
731 uint64_t value, size_t width)
732 LOCKS_EXCLUDED(Locks::thread_list_lock_)
733 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
734
Brian Carlstrom2d888622013-07-18 17:02:00 -0700735 static void DdmBroadcast(bool connect) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700736 static void PostThreadStartOrStop(Thread*, uint32_t)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700737 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesa2155262011-11-16 16:26:58 -0800738
Mathieu Chartiere401d142015-04-22 13:56:20 -0700739 static void PostLocationEvent(ArtMethod* method, int pcOffset,
Sebastien Hertz8379b222014-02-24 17:38:15 +0100740 mirror::Object* thisPtr, int eventFlags,
741 const JValue* return_value)
742 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
743
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100744 static void ProcessDeoptimizationRequest(const DeoptimizationRequest& request)
745 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
746
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100747 static void RequestDeoptimizationLocked(const DeoptimizationRequest& req)
Brian Carlstrom306db812014-09-05 13:01:41 -0700748 EXCLUSIVE_LOCKS_REQUIRED(Locks::deoptimization_lock_)
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100749 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
750
Mathieu Chartiere401d142015-04-22 13:56:20 -0700751 static bool IsForcedInterpreterNeededForCallingImpl(Thread* thread, ArtMethod* m)
Daniel Mihalyieb076692014-08-22 17:33:31 +0200752 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
753
Mathieu Chartiere401d142015-04-22 13:56:20 -0700754 static bool IsForcedInterpreterNeededForResolutionImpl(Thread* thread, ArtMethod* m)
Daniel Mihalyieb076692014-08-22 17:33:31 +0200755 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
756
Mathieu Chartiere401d142015-04-22 13:56:20 -0700757 static bool IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, ArtMethod* m)
Daniel Mihalyieb076692014-08-22 17:33:31 +0200758 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
759
Mathieu Chartiere401d142015-04-22 13:56:20 -0700760 static bool IsForcedInterpreterNeededForUpcallImpl(Thread* thread, ArtMethod* m)
Daniel Mihalyieb076692014-08-22 17:33:31 +0200761 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
762
Daniel Mihalyieb076692014-08-22 17:33:31 +0200763 // Indicates whether the debugger is making requests.
764 static bool gDebuggerActive;
765
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100766 // Indicates whether we should drop the JDWP connection because the runtime stops or the
767 // debugger called VirtualMachine.Dispose.
768 static bool gDisposed;
769
Daniel Mihalyieb076692014-08-22 17:33:31 +0200770 // The registry mapping objects to JDWP ids.
Sebastien Hertz6995c602014-09-09 12:10:13 +0200771 static ObjectRegistry* gRegistry;
772
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100773 // Deoptimization requests to be processed each time the event list is updated. This is used when
774 // registering and unregistering events so we do not deoptimize while holding the event list
775 // lock.
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200776 // TODO rename to instrumentation_requests.
Brian Carlstrom306db812014-09-05 13:01:41 -0700777 static std::vector<DeoptimizationRequest> deoptimization_requests_ GUARDED_BY(Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100778
779 // Count the number of events requiring full deoptimization. When the counter is > 0, everything
780 // is deoptimized, otherwise everything is undeoptimized.
781 // Note: we fully deoptimize on the first event only (when the counter is set to 1). We fully
782 // undeoptimize when the last event is unregistered (when the counter is set to 0).
Brian Carlstrom306db812014-09-05 13:01:41 -0700783 static size_t full_deoptimization_event_count_ GUARDED_BY(Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100784
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200785 static size_t* GetReferenceCounterForEvent(uint32_t instrumentation_event);
786
787 // Instrumentation event reference counters.
788 // TODO we could use an array instead of having all these dedicated counters. Instrumentation
789 // events are bits of a mask so we could convert them to array index.
Brian Carlstrom306db812014-09-05 13:01:41 -0700790 static size_t dex_pc_change_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_);
791 static size_t method_enter_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_);
792 static size_t method_exit_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_);
793 static size_t field_read_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_);
794 static size_t field_write_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_);
795 static size_t exception_catch_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200796 static uint32_t instrumentation_events_ GUARDED_BY(Locks::mutator_lock_);
797
Ian Rogers719d1a32014-03-06 12:13:39 -0800798 DISALLOW_COPY_AND_ASSIGN(Dbg);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700799};
800
801#define CHUNK_TYPE(_name) \
Elliott Hughes82188472011-11-07 18:11:48 -0800802 static_cast<uint32_t>((_name)[0] << 24 | (_name)[1] << 16 | (_name)[2] << 8 | (_name)[3])
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700803
804} // namespace art
805
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700806#endif // ART_RUNTIME_DEBUGGER_H_