blob: 6eabf3316bcb6413072b32a78957990f8f0501b0 [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
119 /*
120 * Class, Object, Array
121 */
122 static const char* GetClassDescriptor(JDWP::RefTypeId id);
123 static JDWP::ObjectId GetClassObject(JDWP::RefTypeId id);
124 static JDWP::RefTypeId GetSuperclass(JDWP::RefTypeId id);
125 static JDWP::ObjectId GetClassLoader(JDWP::RefTypeId id);
126 static uint32_t GetAccessFlags(JDWP::RefTypeId id);
127 static bool IsInterface(JDWP::RefTypeId id);
128 static void GetClassList(uint32_t* pNumClasses, JDWP::RefTypeId** pClassRefBuf);
129 static void GetVisibleClassList(JDWP::ObjectId classLoaderId, uint32_t* pNumClasses, JDWP::RefTypeId** pClassRefBuf);
130 static void GetClassInfo(JDWP::RefTypeId classId, uint8_t* pTypeTag, uint32_t* pStatus, const char** pSignature);
131 static bool FindLoadedClassBySignature(const char* classDescriptor, JDWP::RefTypeId* pRefTypeId);
132 static void GetObjectType(JDWP::ObjectId objectId, uint8_t* pRefTypeTag, JDWP::RefTypeId* pRefTypeId);
133 static uint8_t GetClassObjectType(JDWP::RefTypeId refTypeId);
134 static const char* GetSignature(JDWP::RefTypeId refTypeId);
135 static const char* GetSourceFile(JDWP::RefTypeId refTypeId);
136 static const char* GetObjectTypeName(JDWP::ObjectId objectId);
137 static uint8_t GetObjectTag(JDWP::ObjectId objectId);
138 static int GetTagWidth(int tag);
139
140 static int GetArrayLength(JDWP::ObjectId arrayId);
141 static uint8_t GetArrayElementTag(JDWP::ObjectId arrayId);
142 static bool OutputArray(JDWP::ObjectId arrayId, int firstIndex, int count, JDWP::ExpandBuf* pReply);
143 static bool SetArrayElements(JDWP::ObjectId arrayId, int firstIndex, int count, const uint8_t* buf);
144
145 static JDWP::ObjectId CreateString(const char* str);
146 static JDWP::ObjectId CreateObject(JDWP::RefTypeId classId);
147 static JDWP::ObjectId CreateArrayObject(JDWP::RefTypeId arrayTypeId, uint32_t length);
148
149 static bool MatchType(JDWP::RefTypeId instClassId, JDWP::RefTypeId classId);
150
151 /*
152 * Method and Field
153 */
154 static const char* GetMethodName(JDWP::RefTypeId refTypeId, JDWP::MethodId id);
155 static void OutputAllFields(JDWP::RefTypeId refTypeId, bool withGeneric, JDWP::ExpandBuf* pReply);
156 static void OutputAllMethods(JDWP::RefTypeId refTypeId, bool withGeneric, JDWP::ExpandBuf* pReply);
157 static void OutputAllInterfaces(JDWP::RefTypeId refTypeId, JDWP::ExpandBuf* pReply);
158 static void OutputLineTable(JDWP::RefTypeId refTypeId, JDWP::MethodId methodId, JDWP::ExpandBuf* pReply);
159 static void OutputVariableTable(JDWP::RefTypeId refTypeId, JDWP::MethodId id, bool withGeneric, JDWP::ExpandBuf* pReply);
160
161 static uint8_t GetFieldBasicTag(JDWP::ObjectId objId, JDWP::FieldId fieldId);
162 static uint8_t GetStaticFieldBasicTag(JDWP::RefTypeId refTypeId, JDWP::FieldId fieldId);
163 static void GetFieldValue(JDWP::ObjectId objectId, JDWP::FieldId fieldId, JDWP::ExpandBuf* pReply);
164 static void SetFieldValue(JDWP::ObjectId objectId, JDWP::FieldId fieldId, uint64_t value, int width);
165 static void GetStaticFieldValue(JDWP::RefTypeId refTypeId, JDWP::FieldId fieldId, JDWP::ExpandBuf* pReply);
166 static void SetStaticFieldValue(JDWP::RefTypeId refTypeId, JDWP::FieldId fieldId, uint64_t rawValue, int width);
167
168 static char* StringToUtf8(JDWP::ObjectId strId);
169
170 /*
171 * Thread, ThreadGroup, Frame
172 */
173 static char* GetThreadName(JDWP::ObjectId threadId);
174 static JDWP::ObjectId GetThreadGroup(JDWP::ObjectId threadId);
175 static char* GetThreadGroupName(JDWP::ObjectId threadGroupId);
176 static JDWP::ObjectId GetThreadGroupParent(JDWP::ObjectId threadGroupId);
177 static JDWP::ObjectId GetSystemThreadGroupId();
178 static JDWP::ObjectId GetMainThreadGroupId();
179
180 static bool GetThreadStatus(JDWP::ObjectId threadId, uint32_t* threadStatus, uint32_t* suspendStatus);
181 static uint32_t GetThreadSuspendCount(JDWP::ObjectId threadId);
182 static bool ThreadExists(JDWP::ObjectId threadId);
183 static bool IsSuspended(JDWP::ObjectId threadId);
184 //static void WaitForSuspend(JDWP::ObjectId threadId);
185 static void GetThreadGroupThreads(JDWP::ObjectId threadGroupId, JDWP::ObjectId** ppThreadIds, uint32_t* pThreadCount);
186 static void GetAllThreads(JDWP::ObjectId** ppThreadIds, uint32_t* pThreadCount);
187 static int GetThreadFrameCount(JDWP::ObjectId threadId);
188 static bool GetThreadFrame(JDWP::ObjectId threadId, int num, JDWP::FrameId* pFrameId, JDWP::JdwpLocation* pLoc);
189
190 static JDWP::ObjectId GetThreadSelfId();
Elliott Hughes475fc232011-10-25 15:00:35 -0700191 static void SuspendVM();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700192 static void ResumeVM();
193 static void SuspendThread(JDWP::ObjectId threadId);
194 static void ResumeThread(JDWP::ObjectId threadId);
195 static void SuspendSelf();
196
197 static bool GetThisObject(JDWP::ObjectId threadId, JDWP::FrameId frameId, JDWP::ObjectId* pThisId);
198 static void GetLocalValue(JDWP::ObjectId threadId, JDWP::FrameId frameId, int slot, uint8_t tag, uint8_t* buf, int expectedLen);
199 static void SetLocalValue(JDWP::ObjectId threadId, JDWP::FrameId frameId, int slot, uint8_t tag, uint64_t value, int width);
200
201 /*
202 * Debugger notification
203 */
204 enum {
205 kBreakPoint = 0x01,
206 kSingleStep = 0x02,
207 kMethodEntry = 0x04,
208 kMethodExit = 0x08,
209 };
210 static void PostLocationEvent(const Method* method, int pcOffset, Object* thisPtr, int eventFlags);
211 static void PostException(void* throwFp, int throwRelPc, void* catchFp, int catchRelPc, Object* exception);
212 static void PostThreadStart(Thread* t);
213 static void PostThreadDeath(Thread* t);
214 static void PostClassPrepare(Class* c);
215
216 static bool WatchLocation(const JDWP::JdwpLocation* pLoc);
217 static void UnwatchLocation(const JDWP::JdwpLocation* pLoc);
218 static bool ConfigureStep(JDWP::ObjectId threadId, JDWP::JdwpStepSize size, JDWP::JdwpStepDepth depth);
219 static void UnconfigureStep(JDWP::ObjectId threadId);
220
221 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);
222 static void ExecuteMethod(DebugInvokeReq* pReq);
223
224 /* perform "late registration" of an object ID */
225 static void RegisterObjectId(JDWP::ObjectId id);
226
227 /*
228 * DDM support.
229 */
230 static bool DdmHandlePacket(const uint8_t* buf, int dataLen, uint8_t** pReplyBuf, int* pReplyLen);
231 static void DdmConnected();
232 static void DdmDisconnected();
233 static void DdmSendChunk(int type, size_t len, const uint8_t* buf);
234 static void DdmSendChunkV(int type, const struct iovec* iov, int iovcnt);
235};
236
237#define CHUNK_TYPE(_name) \
238 ((_name)[0] << 24 | (_name)[1] << 16 | (_name)[2] << 8 | (_name)[3])
239
240} // namespace art
241
242#endif // ART_DEBUGGER_H_