blob: 270b62ae33368095e770747d10766aa79b4a7304 [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 */
21#ifndef ART_DEBUGGER_H_
22#define ART_DEBUGGER_H_
23
24#include <pthread.h>
25
Elliott Hughes3bb81562011-10-21 18:52:59 -070026#include <string>
27
Elliott Hughes872d4ec2011-10-21 17:07:15 -070028#include "jdwp/jdwp.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070029#include "object.h"
Elliott Hughes872d4ec2011-10-21 17:07:15 -070030
31namespace art {
32
33struct Thread;
34
35/*
36 * Invoke-during-breakpoint support.
37 */
38struct DebugInvokeReq {
Elliott Hughes475fc232011-10-25 15:00:35 -070039 DebugInvokeReq() : lock_("a DebugInvokeReq lock"), cond_("a DebugInvokeReq condition variable") {
40 }
41
Elliott Hughes872d4ec2011-10-21 17:07:15 -070042 /* boolean; only set when we're in the tail end of an event handler */
43 bool ready;
44
45 /* boolean; set if the JDWP thread wants this thread to do work */
Elliott Hughes475fc232011-10-25 15:00:35 -070046 bool invoke_needed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070047
48 /* request */
49 Object* obj; /* not used for ClassType.InvokeMethod */
50 Object* thread;
51 Class* class_;
52 Method* method;
Elliott Hughes475fc232011-10-25 15:00:35 -070053 uint32_t num_args;
54 uint64_t* arg_array; /* will be NULL if numArgs==0 */
Elliott Hughes872d4ec2011-10-21 17:07:15 -070055 uint32_t options;
56
57 /* result */
Elliott Hughes475fc232011-10-25 15:00:35 -070058 JDWP::JdwpError error;
59 uint8_t result_tag;
60 JValue result_value;
61 JDWP::ObjectId exception;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070062
63 /* condition variable to wait on while the method executes */
64 Mutex lock_;
65 ConditionVariable cond_;
66};
67
68class Dbg {
69public:
Elliott Hughes3bb81562011-10-21 18:52:59 -070070 static bool ParseJdwpOptions(const std::string& options);
Elliott Hughes4ffd3132011-10-24 12:06:42 -070071 static void SetJdwpAllowed(bool allowed);
72
Elliott Hughesd1cc8362011-10-24 16:58:50 -070073 static void StartJdwp();
74 static void StopJdwp();
75
Elliott Hughes872d4ec2011-10-21 17:07:15 -070076 // Return the DebugInvokeReq for the current thread.
77 static DebugInvokeReq* GetInvokeReq();
78
Elliott Hughes475fc232011-10-25 15:00:35 -070079 static Thread* GetDebugThread();
80 static void ClearWaitForEventThread();
81
Elliott Hughes872d4ec2011-10-21 17:07:15 -070082 /*
83 * Enable/disable breakpoints and step modes. Used to provide a heads-up
84 * when the debugger attaches.
85 */
86 static void Connected();
87 static void Active();
88 static void Disconnected();
89
90 /*
91 * Returns "true" if a debugger is connected. Returns "false" if it's
92 * just DDM.
93 */
94 static bool IsDebuggerConnected();
95
96 static bool IsDebuggingEnabled();
97
98 /*
99 * Time, in milliseconds, since the last debugger activity. Does not
100 * include DDMS activity. Returns -1 if there has been no activity.
101 * Returns 0 if we're in the middle of handling a debugger request.
102 */
103 static int64_t LastDebuggerActivity();
104
105 /*
106 * Block/allow GC depending on what we're doing. These return the old
107 * status, which can be fed to ThreadContinuing() to restore the previous
108 * mode.
109 */
110 static int ThreadRunning();
111 static int ThreadWaiting();
112 static int ThreadContinuing(int status);
113
114 static void UndoDebuggerSuspensions();
115
116 // The debugger wants the VM to exit.
117 static void Exit(int status);
118
Elliott Hughesbfe487b2011-10-26 15:48:55 -0700119 static void VisitRoots(Heap::RootVisitor* visitor, void* arg);
120
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700121 /*
122 * Class, Object, Array
123 */
124 static const char* GetClassDescriptor(JDWP::RefTypeId id);
125 static JDWP::ObjectId GetClassObject(JDWP::RefTypeId id);
126 static JDWP::RefTypeId GetSuperclass(JDWP::RefTypeId id);
127 static JDWP::ObjectId GetClassLoader(JDWP::RefTypeId id);
128 static uint32_t GetAccessFlags(JDWP::RefTypeId id);
129 static bool IsInterface(JDWP::RefTypeId id);
130 static void GetClassList(uint32_t* pNumClasses, JDWP::RefTypeId** pClassRefBuf);
131 static void GetVisibleClassList(JDWP::ObjectId classLoaderId, uint32_t* pNumClasses, JDWP::RefTypeId** pClassRefBuf);
132 static void GetClassInfo(JDWP::RefTypeId classId, uint8_t* pTypeTag, uint32_t* pStatus, const char** pSignature);
133 static bool FindLoadedClassBySignature(const char* classDescriptor, JDWP::RefTypeId* pRefTypeId);
134 static void GetObjectType(JDWP::ObjectId objectId, uint8_t* pRefTypeTag, JDWP::RefTypeId* pRefTypeId);
135 static uint8_t GetClassObjectType(JDWP::RefTypeId refTypeId);
136 static const char* GetSignature(JDWP::RefTypeId refTypeId);
137 static const char* GetSourceFile(JDWP::RefTypeId refTypeId);
138 static const char* GetObjectTypeName(JDWP::ObjectId objectId);
139 static uint8_t GetObjectTag(JDWP::ObjectId objectId);
140 static int GetTagWidth(int tag);
141
142 static int GetArrayLength(JDWP::ObjectId arrayId);
143 static uint8_t GetArrayElementTag(JDWP::ObjectId arrayId);
144 static bool OutputArray(JDWP::ObjectId arrayId, int firstIndex, int count, JDWP::ExpandBuf* pReply);
145 static bool SetArrayElements(JDWP::ObjectId arrayId, int firstIndex, int count, const uint8_t* buf);
146
147 static JDWP::ObjectId CreateString(const char* str);
148 static JDWP::ObjectId CreateObject(JDWP::RefTypeId classId);
149 static JDWP::ObjectId CreateArrayObject(JDWP::RefTypeId arrayTypeId, uint32_t length);
150
151 static bool MatchType(JDWP::RefTypeId instClassId, JDWP::RefTypeId classId);
152
153 /*
154 * Method and Field
155 */
156 static const char* GetMethodName(JDWP::RefTypeId refTypeId, JDWP::MethodId id);
157 static void OutputAllFields(JDWP::RefTypeId refTypeId, bool withGeneric, JDWP::ExpandBuf* pReply);
158 static void OutputAllMethods(JDWP::RefTypeId refTypeId, bool withGeneric, JDWP::ExpandBuf* pReply);
159 static void OutputAllInterfaces(JDWP::RefTypeId refTypeId, JDWP::ExpandBuf* pReply);
160 static void OutputLineTable(JDWP::RefTypeId refTypeId, JDWP::MethodId methodId, JDWP::ExpandBuf* pReply);
161 static void OutputVariableTable(JDWP::RefTypeId refTypeId, JDWP::MethodId id, bool withGeneric, JDWP::ExpandBuf* pReply);
162
163 static uint8_t GetFieldBasicTag(JDWP::ObjectId objId, JDWP::FieldId fieldId);
164 static uint8_t GetStaticFieldBasicTag(JDWP::RefTypeId refTypeId, JDWP::FieldId fieldId);
165 static void GetFieldValue(JDWP::ObjectId objectId, JDWP::FieldId fieldId, JDWP::ExpandBuf* pReply);
166 static void SetFieldValue(JDWP::ObjectId objectId, JDWP::FieldId fieldId, uint64_t value, int width);
167 static void GetStaticFieldValue(JDWP::RefTypeId refTypeId, JDWP::FieldId fieldId, JDWP::ExpandBuf* pReply);
168 static void SetStaticFieldValue(JDWP::RefTypeId refTypeId, JDWP::FieldId fieldId, uint64_t rawValue, int width);
169
170 static char* StringToUtf8(JDWP::ObjectId strId);
171
172 /*
173 * Thread, ThreadGroup, Frame
174 */
175 static char* GetThreadName(JDWP::ObjectId threadId);
176 static JDWP::ObjectId GetThreadGroup(JDWP::ObjectId threadId);
177 static char* GetThreadGroupName(JDWP::ObjectId threadGroupId);
178 static JDWP::ObjectId GetThreadGroupParent(JDWP::ObjectId threadGroupId);
179 static JDWP::ObjectId GetSystemThreadGroupId();
180 static JDWP::ObjectId GetMainThreadGroupId();
181
182 static bool GetThreadStatus(JDWP::ObjectId threadId, uint32_t* threadStatus, uint32_t* suspendStatus);
183 static uint32_t GetThreadSuspendCount(JDWP::ObjectId threadId);
184 static bool ThreadExists(JDWP::ObjectId threadId);
185 static bool IsSuspended(JDWP::ObjectId threadId);
186 //static void WaitForSuspend(JDWP::ObjectId threadId);
187 static void GetThreadGroupThreads(JDWP::ObjectId threadGroupId, JDWP::ObjectId** ppThreadIds, uint32_t* pThreadCount);
188 static void GetAllThreads(JDWP::ObjectId** ppThreadIds, uint32_t* pThreadCount);
189 static int GetThreadFrameCount(JDWP::ObjectId threadId);
190 static bool GetThreadFrame(JDWP::ObjectId threadId, int num, JDWP::FrameId* pFrameId, JDWP::JdwpLocation* pLoc);
191
192 static JDWP::ObjectId GetThreadSelfId();
Elliott Hughes475fc232011-10-25 15:00:35 -0700193 static void SuspendVM();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700194 static void ResumeVM();
195 static void SuspendThread(JDWP::ObjectId threadId);
196 static void ResumeThread(JDWP::ObjectId threadId);
197 static void SuspendSelf();
198
199 static bool GetThisObject(JDWP::ObjectId threadId, JDWP::FrameId frameId, JDWP::ObjectId* pThisId);
200 static void GetLocalValue(JDWP::ObjectId threadId, JDWP::FrameId frameId, int slot, uint8_t tag, uint8_t* buf, int expectedLen);
201 static void SetLocalValue(JDWP::ObjectId threadId, JDWP::FrameId frameId, int slot, uint8_t tag, uint64_t value, int width);
202
203 /*
204 * Debugger notification
205 */
206 enum {
207 kBreakPoint = 0x01,
208 kSingleStep = 0x02,
209 kMethodEntry = 0x04,
210 kMethodExit = 0x08,
211 };
212 static void PostLocationEvent(const Method* method, int pcOffset, Object* thisPtr, int eventFlags);
213 static void PostException(void* throwFp, int throwRelPc, void* catchFp, int catchRelPc, Object* exception);
214 static void PostThreadStart(Thread* t);
215 static void PostThreadDeath(Thread* t);
216 static void PostClassPrepare(Class* c);
217
218 static bool WatchLocation(const JDWP::JdwpLocation* pLoc);
219 static void UnwatchLocation(const JDWP::JdwpLocation* pLoc);
220 static bool ConfigureStep(JDWP::ObjectId threadId, JDWP::JdwpStepSize size, JDWP::JdwpStepDepth depth);
221 static void UnconfigureStep(JDWP::ObjectId threadId);
222
223 static JDWP::JdwpError InvokeMethod(JDWP::ObjectId threadId, JDWP::ObjectId objectId, JDWP::RefTypeId classId, JDWP::MethodId methodId, uint32_t numArgs, uint64_t* argArray, uint32_t options, uint8_t* pResultTag, uint64_t* pResultValue, JDWP::ObjectId* pExceptObj);
224 static void ExecuteMethod(DebugInvokeReq* pReq);
225
226 /* perform "late registration" of an object ID */
227 static void RegisterObjectId(JDWP::ObjectId id);
228
229 /*
230 * DDM support.
231 */
Elliott Hughes47fce012011-10-25 18:37:19 -0700232 static void DdmSetThreadNotification(bool enable);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700233 static bool DdmHandlePacket(const uint8_t* buf, int dataLen, uint8_t** pReplyBuf, int* pReplyLen);
234 static void DdmConnected();
235 static void DdmDisconnected();
236 static void DdmSendChunk(int type, size_t len, const uint8_t* buf);
237 static void DdmSendChunkV(int type, const struct iovec* iov, int iovcnt);
238};
239
240#define CHUNK_TYPE(_name) \
241 ((_name)[0] << 24 | (_name)[1] << 16 | (_name)[2] << 8 | (_name)[3])
242
243} // namespace art
244
245#endif // ART_DEBUGGER_H_