blob: 0b76e8a29ec3cde6677629d6d074d93a1398493d [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#include "debugger.h"
18
Elliott Hughes3bb81562011-10-21 18:52:59 -070019#include <sys/uio.h>
20
Elliott Hughes545a0642011-11-08 19:10:03 -080021#include <set>
22
23#include "class_linker.h"
Elliott Hughes1bba14f2011-12-01 18:00:36 -080024#include "class_loader.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070025#include "dex_instruction.h"
26#if !defined(ART_USE_LLVM_COMPILER)
27#include "oat/runtime/context.h" // For VmapTable
28#endif
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080029#include "object_utils.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070030#include "safe_map.h"
31#include "scoped_thread_list_lock.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070032#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070033#include "ScopedPrimitiveArray.h"
Ian Rogers30fab402012-01-23 15:43:46 -080034#include "space.h"
Elliott Hughes47fce012011-10-25 18:37:19 -070035#include "stack_indirect_reference_table.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070036#include "thread_list.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070037#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070038
Elliott Hughes872d4ec2011-10-21 17:07:15 -070039namespace art {
40
Elliott Hughes545a0642011-11-08 19:10:03 -080041static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
42static const size_t kNumAllocRecords = 512; // Must be power of 2.
43
Elliott Hughes436e3722012-02-17 20:01:47 -080044static const uintptr_t kInvalidId = 1;
45static const Object* kInvalidObject = reinterpret_cast<Object*>(kInvalidId);
46
Elliott Hughes475fc232011-10-25 15:00:35 -070047class ObjectRegistry {
48 public:
49 ObjectRegistry() : lock_("ObjectRegistry lock") {
50 }
51
52 JDWP::ObjectId Add(Object* o) {
53 if (o == NULL) {
54 return 0;
55 }
56 JDWP::ObjectId id = static_cast<JDWP::ObjectId>(reinterpret_cast<uintptr_t>(o));
57 MutexLock mu(lock_);
Elliott Hughesa0e18062012-04-13 15:59:59 -070058 map_.Overwrite(id, o);
Elliott Hughes475fc232011-10-25 15:00:35 -070059 return id;
60 }
61
Elliott Hughes234ab152011-10-26 14:02:26 -070062 void Clear() {
63 MutexLock mu(lock_);
64 LOG(DEBUG) << "Debugger has detached; object registry had " << map_.size() << " entries";
65 map_.clear();
66 }
67
Elliott Hughes475fc232011-10-25 15:00:35 -070068 bool Contains(JDWP::ObjectId id) {
69 MutexLock mu(lock_);
70 return map_.find(id) != map_.end();
71 }
72
Elliott Hughesa2155262011-11-16 16:26:58 -080073 template<typename T> T Get(JDWP::ObjectId id) {
Elliott Hughes436e3722012-02-17 20:01:47 -080074 if (id == 0) {
75 return NULL;
76 }
77
Elliott Hughesa2155262011-11-16 16:26:58 -080078 MutexLock mu(lock_);
Elliott Hughesa0e18062012-04-13 15:59:59 -070079 typedef SafeMap<JDWP::ObjectId, Object*>::iterator It; // C++0x auto
Elliott Hughesa2155262011-11-16 16:26:58 -080080 It it = map_.find(id);
Elliott Hughes436e3722012-02-17 20:01:47 -080081 return (it != map_.end()) ? reinterpret_cast<T>(it->second) : reinterpret_cast<T>(kInvalidId);
Elliott Hughesa2155262011-11-16 16:26:58 -080082 }
83
Elliott Hughesbfe487b2011-10-26 15:48:55 -070084 void VisitRoots(Heap::RootVisitor* visitor, void* arg) {
85 MutexLock mu(lock_);
Elliott Hughesa0e18062012-04-13 15:59:59 -070086 typedef SafeMap<JDWP::ObjectId, Object*>::iterator It; // C++0x auto
Elliott Hughesbfe487b2011-10-26 15:48:55 -070087 for (It it = map_.begin(); it != map_.end(); ++it) {
88 visitor(it->second, arg);
89 }
90 }
91
Elliott Hughes475fc232011-10-25 15:00:35 -070092 private:
93 Mutex lock_;
Elliott Hughesa0e18062012-04-13 15:59:59 -070094 SafeMap<JDWP::ObjectId, Object*> map_;
Elliott Hughes475fc232011-10-25 15:00:35 -070095};
96
Elliott Hughes545a0642011-11-08 19:10:03 -080097struct AllocRecordStackTraceElement {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080098 Method* method;
Ian Rogers0399dde2012-06-06 17:09:28 -070099 uint32_t dex_pc;
Elliott Hughes545a0642011-11-08 19:10:03 -0800100
101 int32_t LineNumber() const {
Ian Rogers0399dde2012-06-06 17:09:28 -0700102 return MethodHelper(method).GetLineNumFromDexPC(dex_pc);
Elliott Hughes545a0642011-11-08 19:10:03 -0800103 }
104};
105
106struct AllocRecord {
107 Class* type;
108 size_t byte_count;
109 uint16_t thin_lock_id;
110 AllocRecordStackTraceElement stack[kMaxAllocRecordStackDepth]; // Unused entries have NULL method.
111
112 size_t GetDepth() {
113 size_t depth = 0;
114 while (depth < kMaxAllocRecordStackDepth && stack[depth].method != NULL) {
115 ++depth;
116 }
117 return depth;
118 }
119};
120
Elliott Hughes86964332012-02-15 19:37:42 -0800121struct Breakpoint {
122 Method* method;
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800123 uint32_t dex_pc;
124 Breakpoint(Method* method, uint32_t dex_pc) : method(method), dex_pc(dex_pc) {}
Elliott Hughes86964332012-02-15 19:37:42 -0800125};
126
127static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs) {
Elliott Hughes229feb72012-02-23 13:33:29 -0800128 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.method).c_str(), rhs.dex_pc);
Elliott Hughes86964332012-02-15 19:37:42 -0800129 return os;
130}
131
132struct SingleStepControl {
133 // Are we single-stepping right now?
134 bool is_active;
135 Thread* thread;
136
137 JDWP::JdwpStepSize step_size;
138 JDWP::JdwpStepDepth step_depth;
139
140 const Method* method;
Elliott Hughes2435a572012-02-17 16:07:41 -0800141 int32_t line_number; // Or -1 for native methods.
142 std::set<uint32_t> dex_pcs;
Elliott Hughes86964332012-02-15 19:37:42 -0800143 int stack_depth;
144};
145
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700146// JDWP is allowed unless the Zygote forbids it.
147static bool gJdwpAllowed = true;
148
Elliott Hughesc0f09332012-03-26 13:27:06 -0700149// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700150static bool gJdwpConfigured = false;
151
Elliott Hughesc0f09332012-03-26 13:27:06 -0700152// Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.)
Elliott Hughes376a7a02011-10-24 18:35:55 -0700153static JDWP::JdwpOptions gJdwpOptions;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700154
155// Runtime JDWP state.
156static JDWP::JdwpState* gJdwpState = NULL;
157static bool gDebuggerConnected; // debugger or DDMS is connected.
158static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800159static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700160
Elliott Hughes47fce012011-10-25 18:37:19 -0700161static bool gDdmThreadNotification = false;
162
Elliott Hughes767a1472011-10-26 18:49:02 -0700163// DDMS GC-related settings.
164static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
165static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
166static Dbg::HpsgWhat gDdmHpsgWhat;
167static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
168static Dbg::HpsgWhat gDdmNhsgWhat;
169
Elliott Hughes475fc232011-10-25 15:00:35 -0700170static ObjectRegistry* gRegistry = NULL;
171
Elliott Hughes545a0642011-11-08 19:10:03 -0800172// Recent allocation tracking.
173static Mutex gAllocTrackerLock("AllocTracker lock");
Elliott Hughesf8349362012-06-18 15:00:06 -0700174AllocRecord* Dbg::recent_allocation_records_ PT_GUARDED_BY(gAllocTrackerLock) = NULL; // TODO: CircularBuffer<AllocRecord>
175static size_t gAllocRecordHead GUARDED_BY(gAllocTrackerLock) = 0;
176static size_t gAllocRecordCount GUARDED_BY(gAllocTrackerLock) = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -0800177
Elliott Hughes86964332012-02-15 19:37:42 -0800178// Breakpoints and single-stepping.
179static Mutex gBreakpointsLock("breakpoints lock");
Elliott Hughesf8349362012-06-18 15:00:06 -0700180static std::vector<Breakpoint> gBreakpoints GUARDED_BY(gBreakpointsLock);
181static SingleStepControl gSingleStepControl GUARDED_BY(gBreakpointsLock);
Elliott Hughes86964332012-02-15 19:37:42 -0800182
183static bool IsBreakpoint(Method* m, uint32_t dex_pc) {
184 MutexLock mu(gBreakpointsLock);
185 for (size_t i = 0; i < gBreakpoints.size(); ++i) {
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800186 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == dex_pc) {
Elliott Hughes86964332012-02-15 19:37:42 -0800187 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
188 return true;
189 }
190 }
191 return false;
192}
193
Elliott Hughes436e3722012-02-17 20:01:47 -0800194static Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status) {
195 Object* o = gRegistry->Get<Object*>(id);
196 if (o == NULL || o == kInvalidObject) {
197 status = JDWP::ERR_INVALID_OBJECT;
198 return NULL;
199 }
200 if (!o->IsArrayInstance()) {
201 status = JDWP::ERR_INVALID_ARRAY;
202 return NULL;
203 }
204 status = JDWP::ERR_NONE;
205 return o->AsArray();
206}
207
208static Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status) {
209 Object* o = gRegistry->Get<Object*>(id);
210 if (o == NULL || o == kInvalidObject) {
211 status = JDWP::ERR_INVALID_OBJECT;
212 return NULL;
213 }
214 if (!o->IsClass()) {
215 status = JDWP::ERR_INVALID_CLASS;
216 return NULL;
217 }
218 status = JDWP::ERR_NONE;
219 return o->AsClass();
220}
221
222static Thread* DecodeThread(JDWP::ObjectId threadId) {
223 Object* thread_peer = gRegistry->Get<Object*>(threadId);
224 if (thread_peer == NULL || thread_peer == kInvalidObject) {
225 return NULL;
226 }
227 return Thread::FromManagedThread(thread_peer);
228}
229
Elliott Hughes24437992011-11-30 14:49:33 -0800230static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
231 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
232 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
233 return static_cast<JDWP::JdwpTag>(descriptor[0]);
234}
235
236static JDWP::JdwpTag TagFromClass(Class* c) {
Elliott Hughes86b00102011-12-05 17:54:26 -0800237 CHECK(c != NULL);
Elliott Hughes24437992011-11-30 14:49:33 -0800238 if (c->IsArrayClass()) {
239 return JDWP::JT_ARRAY;
240 }
241
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800242 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Elliott Hughes24437992011-11-30 14:49:33 -0800243 if (c->IsStringClass()) {
244 return JDWP::JT_STRING;
245 } else if (c->IsClassClass()) {
246 return JDWP::JT_CLASS_OBJECT;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800247 } else if (class_linker->FindSystemClass("Ljava/lang/Thread;")->IsAssignableFrom(c)) {
Elliott Hughes24437992011-11-30 14:49:33 -0800248 return JDWP::JT_THREAD;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800249 } else if (class_linker->FindSystemClass("Ljava/lang/ThreadGroup;")->IsAssignableFrom(c)) {
Elliott Hughes24437992011-11-30 14:49:33 -0800250 return JDWP::JT_THREAD_GROUP;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800251 } else if (class_linker->FindSystemClass("Ljava/lang/ClassLoader;")->IsAssignableFrom(c)) {
Elliott Hughes24437992011-11-30 14:49:33 -0800252 return JDWP::JT_CLASS_LOADER;
Elliott Hughes24437992011-11-30 14:49:33 -0800253 } else {
254 return JDWP::JT_OBJECT;
255 }
256}
257
258/*
259 * Objects declared to hold Object might actually hold a more specific
260 * type. The debugger may take a special interest in these (e.g. it
261 * wants to display the contents of Strings), so we want to return an
262 * appropriate tag.
263 *
264 * Null objects are tagged JT_OBJECT.
265 */
266static JDWP::JdwpTag TagFromObject(const Object* o) {
267 return (o == NULL) ? JDWP::JT_OBJECT : TagFromClass(o->GetClass());
268}
269
270static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
271 switch (tag) {
272 case JDWP::JT_BOOLEAN:
273 case JDWP::JT_BYTE:
274 case JDWP::JT_CHAR:
275 case JDWP::JT_FLOAT:
276 case JDWP::JT_DOUBLE:
277 case JDWP::JT_INT:
278 case JDWP::JT_LONG:
279 case JDWP::JT_SHORT:
280 case JDWP::JT_VOID:
281 return true;
282 default:
283 return false;
284 }
285}
286
Elliott Hughes3bb81562011-10-21 18:52:59 -0700287/*
288 * Handle one of the JDWP name/value pairs.
289 *
290 * JDWP options are:
291 * help: if specified, show help message and bail
292 * transport: may be dt_socket or dt_shmem
293 * address: for dt_socket, "host:port", or just "port" when listening
294 * server: if "y", wait for debugger to attach; if "n", attach to debugger
295 * timeout: how long to wait for debugger to connect / listen
296 *
297 * Useful with server=n (these aren't supported yet):
298 * onthrow=<exception-name>: connect to debugger when exception thrown
299 * onuncaught=y|n: connect to debugger when uncaught exception thrown
300 * launch=<command-line>: launch the debugger itself
301 *
302 * The "transport" option is required, as is "address" if server=n.
303 */
304static bool ParseJdwpOption(const std::string& name, const std::string& value) {
305 if (name == "transport") {
306 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700307 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700308 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700309 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700310 } else {
311 LOG(ERROR) << "JDWP transport not supported: " << value;
312 return false;
313 }
314 } else if (name == "server") {
315 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700316 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700317 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700318 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700319 } else {
320 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
321 return false;
322 }
323 } else if (name == "suspend") {
324 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700325 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700326 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700327 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700328 } else {
329 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
330 return false;
331 }
332 } else if (name == "address") {
333 /* this is either <port> or <host>:<port> */
334 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700335 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700336 std::string::size_type colon = value.find(':');
337 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700338 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700339 port_string = value.substr(colon + 1);
340 } else {
341 port_string = value;
342 }
343 if (port_string.empty()) {
344 LOG(ERROR) << "JDWP address missing port: " << value;
345 return false;
346 }
347 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800348 uint64_t port = strtoul(port_string.c_str(), &end, 10);
349 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700350 LOG(ERROR) << "JDWP address has junk in port field: " << value;
351 return false;
352 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700353 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700354 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
355 /* valid but unsupported */
356 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
357 } else {
358 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
359 }
360
361 return true;
362}
363
364/*
365 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
366 * "transport=dt_socket,address=8000,server=y,suspend=n"
367 */
368bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800369 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700370
Elliott Hughes3bb81562011-10-21 18:52:59 -0700371 std::vector<std::string> pairs;
372 Split(options, ',', pairs);
373
374 for (size_t i = 0; i < pairs.size(); ++i) {
375 std::string::size_type equals = pairs[i].find('=');
376 if (equals == std::string::npos) {
377 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
378 return false;
379 }
380 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
381 }
382
Elliott Hughes376a7a02011-10-24 18:35:55 -0700383 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700384 LOG(ERROR) << "Must specify JDWP transport: " << options;
385 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700386 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700387 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
388 return false;
389 }
390
391 gJdwpConfigured = true;
392 return true;
393}
394
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700395void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700396 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700397 // No JDWP for you!
398 return;
399 }
400
Elliott Hughes475fc232011-10-25 15:00:35 -0700401 CHECK(gRegistry == NULL);
402 gRegistry = new ObjectRegistry;
403
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700404 // Init JDWP if the debugger is enabled. This may connect out to a
405 // debugger, passively listen for a debugger, or block waiting for a
406 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700407 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
408 if (gJdwpState == NULL) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800409 // We probably failed because some other process has the port already, which means that
410 // if we don't abort the user is likely to think they're talking to us when they're actually
411 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800412 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700413 }
414
415 // If a debugger has already attached, send the "welcome" message.
416 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700417 if (gJdwpState->IsActive()) {
Elliott Hughes34e06962012-04-09 13:55:55 -0700418 //ScopedThreadStateChange tsc(Thread::Current(), kRunnable);
Elliott Hughes376a7a02011-10-24 18:35:55 -0700419 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800420 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700421 }
422 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700423}
424
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700425void Dbg::StopJdwp() {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700426 delete gJdwpState;
Elliott Hughes475fc232011-10-25 15:00:35 -0700427 delete gRegistry;
428 gRegistry = NULL;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700429}
430
Elliott Hughes767a1472011-10-26 18:49:02 -0700431void Dbg::GcDidFinish() {
432 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700433 LOG(DEBUG) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700434 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700435 }
436 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700437 LOG(DEBUG) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700438 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700439 }
440 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
441 LOG(DEBUG) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700442 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700443 }
444}
445
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700446void Dbg::SetJdwpAllowed(bool allowed) {
447 gJdwpAllowed = allowed;
448}
449
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700450DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700451 return Thread::Current()->GetInvokeReq();
452}
453
454Thread* Dbg::GetDebugThread() {
455 return (gJdwpState != NULL) ? gJdwpState->GetDebugThread() : NULL;
456}
457
458void Dbg::ClearWaitForEventThread() {
459 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700460}
461
462void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700463 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800464 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700465 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800466 gDisposed = false;
467}
468
469void Dbg::Disposed() {
470 gDisposed = true;
471}
472
473bool Dbg::IsDisposed() {
474 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700475}
476
Elliott Hughesc0f09332012-03-26 13:27:06 -0700477static void SetDebuggerUpdatesEnabledCallback(Thread* t, void* user_data) {
478 t->SetDebuggerUpdatesEnabled(*reinterpret_cast<bool*>(user_data));
479}
480
481static void SetDebuggerUpdatesEnabled(bool enabled) {
Elliott Hughesf8349362012-06-18 15:00:06 -0700482 Runtime::Current()->GetThreadList()->ForEach(SetDebuggerUpdatesEnabledCallback, &enabled);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700483}
484
Elliott Hughesa2155262011-11-16 16:26:58 -0800485void Dbg::GoActive() {
486 // Enable all debugging features, including scans for breakpoints.
487 // This is a no-op if we're already active.
488 // Only called from the JDWP handler thread.
489 if (gDebuggerActive) {
490 return;
491 }
492
493 LOG(INFO) << "Debugger is active";
494
Elliott Hughesc0f09332012-03-26 13:27:06 -0700495 {
496 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
497 MutexLock mu(gBreakpointsLock);
498 CHECK_EQ(gBreakpoints.size(), 0U);
499 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800500
501 gDebuggerActive = true;
Elliott Hughesc0f09332012-03-26 13:27:06 -0700502 SetDebuggerUpdatesEnabled(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700503}
504
505void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700506 CHECK(gDebuggerConnected);
507
Elliott Hughesc0f09332012-03-26 13:27:06 -0700508 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700509
Elliott Hughesc0f09332012-03-26 13:27:06 -0700510 gDebuggerActive = false;
511 SetDebuggerUpdatesEnabled(false);
Elliott Hughes234ab152011-10-26 14:02:26 -0700512
513 gRegistry->Clear();
514 gDebuggerConnected = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700515}
516
Elliott Hughesc0f09332012-03-26 13:27:06 -0700517bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700518 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700519}
520
Elliott Hughesc0f09332012-03-26 13:27:06 -0700521bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700522 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700523}
524
525int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800526 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700527}
528
529int Dbg::ThreadRunning() {
Elliott Hughes34e06962012-04-09 13:55:55 -0700530 return static_cast<int>(Thread::Current()->SetState(kRunnable));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700531}
532
533int Dbg::ThreadWaiting() {
Elliott Hughes34e06962012-04-09 13:55:55 -0700534 return static_cast<int>(Thread::Current()->SetState(kVmWait));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700535}
536
Elliott Hughes6ba581a2011-10-25 11:45:35 -0700537int Dbg::ThreadContinuing(int new_state) {
Elliott Hughes34e06962012-04-09 13:55:55 -0700538 return static_cast<int>(Thread::Current()->SetState(static_cast<ThreadState>(new_state)));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700539}
540
541void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700542 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700543}
544
545void Dbg::Exit(int status) {
Elliott Hughes1bba14f2011-12-01 18:00:36 -0800546 exit(status); // This is all dalvik did.
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700547}
548
Elliott Hughesbfe487b2011-10-26 15:48:55 -0700549void Dbg::VisitRoots(Heap::RootVisitor* visitor, void* arg) {
550 if (gRegistry != NULL) {
551 gRegistry->VisitRoots(visitor, arg);
552 }
553}
554
Elliott Hughesc308a5d2012-02-16 17:12:06 -0800555std::string Dbg::GetClassName(JDWP::RefTypeId classId) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800556 Object* o = gRegistry->Get<Object*>(classId);
Elliott Hughes436e3722012-02-17 20:01:47 -0800557 if (o == NULL) {
558 return "NULL";
559 }
560 if (o == kInvalidObject) {
561 return StringPrintf("invalid object %p", reinterpret_cast<void*>(classId));
562 }
563 if (!o->IsClass()) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800564 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
565 }
Elliott Hughesc308a5d2012-02-16 17:12:06 -0800566 return DescriptorToName(ClassHelper(o->AsClass()).GetDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700567}
568
Elliott Hughes436e3722012-02-17 20:01:47 -0800569JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& classObjectId) {
570 JDWP::JdwpError status;
571 Class* c = DecodeClass(id, status);
572 if (c == NULL) {
573 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800574 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800575 classObjectId = gRegistry->Add(c);
576 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800577}
578
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800579JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclassId) {
580 JDWP::JdwpError status;
581 Class* c = DecodeClass(id, status);
582 if (c == NULL) {
583 return status;
584 }
585 if (c->IsInterface()) {
586 // http://code.google.com/p/android/issues/detail?id=20856
Elliott Hughesa0933622012-04-17 10:46:02 -0700587 superclassId = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800588 } else {
589 superclassId = gRegistry->Add(c->GetSuperClass());
590 }
591 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700592}
593
Elliott Hughes436e3722012-02-17 20:01:47 -0800594JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Elliott Hughes1bba14f2011-12-01 18:00:36 -0800595 Object* o = gRegistry->Get<Object*>(id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800596 if (o == NULL || o == kInvalidObject) {
597 return JDWP::ERR_INVALID_OBJECT;
598 }
599 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
600 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700601}
602
Elliott Hughes436e3722012-02-17 20:01:47 -0800603JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
604 JDWP::JdwpError status;
605 Class* c = DecodeClass(id, status);
606 if (c == NULL) {
607 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800608 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800609
610 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
611
612 // Set ACC_SUPER; dex files don't contain this flag, but all classes are supposed to have it set.
613 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
614 access_flags |= kAccSuper;
615
616 expandBufAdd4BE(pReply, access_flags);
617
618 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700619}
620
Elliott Hughes436e3722012-02-17 20:01:47 -0800621JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId classId, JDWP::ExpandBuf* pReply) {
622 JDWP::JdwpError status;
623 Class* c = DecodeClass(classId, status);
624 if (c == NULL) {
625 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800626 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800627
628 expandBufAdd1(pReply, c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS);
629 expandBufAddRefTypeId(pReply, classId);
630 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700631}
632
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800633void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800634 // Get the complete list of reference classes (i.e. all classes except
635 // the primitive types).
636 // Returns a newly-allocated buffer full of RefTypeId values.
637 struct ClassListCreator {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800638 explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800639 }
640
Elliott Hughesa2155262011-11-16 16:26:58 -0800641 static bool Visit(Class* c, void* arg) {
642 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
643 }
644
645 bool Visit(Class* c) {
646 if (!c->IsPrimitive()) {
647 classes.push_back(static_cast<JDWP::RefTypeId>(gRegistry->Add(c)));
648 }
649 return true;
650 }
651
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800652 std::vector<JDWP::RefTypeId>& classes;
Elliott Hughesa2155262011-11-16 16:26:58 -0800653 };
654
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800655 ClassListCreator clc(classes);
Elliott Hughesa2155262011-11-16 16:26:58 -0800656 Runtime::Current()->GetClassLinker()->VisitClasses(ClassListCreator::Visit, &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700657}
658
Elliott Hughes436e3722012-02-17 20:01:47 -0800659JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId classId, JDWP::JdwpTypeTag* pTypeTag, uint32_t* pStatus, std::string* pDescriptor) {
660 JDWP::JdwpError status;
661 Class* c = DecodeClass(classId, status);
662 if (c == NULL) {
663 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800664 }
665
Elliott Hughesa2155262011-11-16 16:26:58 -0800666 if (c->IsArrayClass()) {
667 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
668 *pTypeTag = JDWP::TT_ARRAY;
669 } else {
670 if (c->IsErroneous()) {
671 *pStatus = JDWP::CS_ERROR;
672 } else {
673 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
674 }
675 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
676 }
677
678 if (pDescriptor != NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800679 *pDescriptor = ClassHelper(c).GetDescriptor();
Elliott Hughesa2155262011-11-16 16:26:58 -0800680 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800681 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700682}
683
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800684void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800685 std::vector<Class*> classes;
686 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
687 ids.clear();
688 for (size_t i = 0; i < classes.size(); ++i) {
689 ids.push_back(gRegistry->Add(classes[i]));
690 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700691}
692
Elliott Hughes2435a572012-02-17 16:07:41 -0800693JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId objectId, JDWP::ExpandBuf* pReply) {
Elliott Hughes499c5132011-11-17 14:55:11 -0800694 Object* o = gRegistry->Get<Object*>(objectId);
Elliott Hughes436e3722012-02-17 20:01:47 -0800695 if (o == NULL || o == kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800696 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -0800697 }
Elliott Hughes2435a572012-02-17 16:07:41 -0800698
699 JDWP::JdwpTypeTag type_tag;
700 if (o->GetClass()->IsArrayClass()) {
701 type_tag = JDWP::TT_ARRAY;
702 } else if (o->GetClass()->IsInterface()) {
703 type_tag = JDWP::TT_INTERFACE;
704 } else {
705 type_tag = JDWP::TT_CLASS;
706 }
707 JDWP::RefTypeId type_id = gRegistry->Add(o->GetClass());
708
709 expandBufAdd1(pReply, type_tag);
710 expandBufAddRefTypeId(pReply, type_id);
711
712 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700713}
714
Elliott Hughes436e3722012-02-17 20:01:47 -0800715JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId classId, std::string& signature) {
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800716 JDWP::JdwpError status;
Elliott Hughes436e3722012-02-17 20:01:47 -0800717 Class* c = DecodeClass(classId, status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800718 if (c == NULL) {
719 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800720 }
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800721 signature = ClassHelper(c).GetDescriptor();
722 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700723}
724
Elliott Hughes436e3722012-02-17 20:01:47 -0800725JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId classId, std::string& result) {
726 JDWP::JdwpError status;
727 Class* c = DecodeClass(classId, status);
728 if (c == NULL) {
729 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800730 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800731 result = ClassHelper(c).GetSourceFile();
732 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700733}
734
Elliott Hughes546b9862012-06-20 16:06:13 -0700735JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId objectId, uint8_t& tag) {
Elliott Hughes24437992011-11-30 14:49:33 -0800736 Object* o = gRegistry->Get<Object*>(objectId);
Elliott Hughes546b9862012-06-20 16:06:13 -0700737 if (o == kInvalidObject) {
738 return JDWP::ERR_INVALID_OBJECT;
739 }
740 tag = TagFromObject(o);
741 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700742}
743
Elliott Hughesaed4be92011-12-02 16:16:23 -0800744size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -0800745 switch (tag) {
746 case JDWP::JT_VOID:
747 return 0;
748 case JDWP::JT_BYTE:
749 case JDWP::JT_BOOLEAN:
750 return 1;
751 case JDWP::JT_CHAR:
752 case JDWP::JT_SHORT:
753 return 2;
754 case JDWP::JT_FLOAT:
755 case JDWP::JT_INT:
756 return 4;
757 case JDWP::JT_ARRAY:
758 case JDWP::JT_OBJECT:
759 case JDWP::JT_STRING:
760 case JDWP::JT_THREAD:
761 case JDWP::JT_THREAD_GROUP:
762 case JDWP::JT_CLASS_LOADER:
763 case JDWP::JT_CLASS_OBJECT:
764 return sizeof(JDWP::ObjectId);
765 case JDWP::JT_DOUBLE:
766 case JDWP::JT_LONG:
767 return 8;
768 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800769 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -0800770 return -1;
771 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700772}
773
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800774JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId arrayId, int& length) {
775 JDWP::JdwpError status;
776 Array* a = DecodeArray(arrayId, status);
777 if (a == NULL) {
778 return status;
Elliott Hughes24437992011-11-30 14:49:33 -0800779 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800780 length = a->GetLength();
781 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700782}
783
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800784JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId arrayId, int offset, int count, JDWP::ExpandBuf* pReply) {
785 JDWP::JdwpError status;
786 Array* a = DecodeArray(arrayId, status);
787 if (a == NULL) {
788 return status;
789 }
Elliott Hughes24437992011-11-30 14:49:33 -0800790
791 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
792 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800793 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -0800794 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800795 std::string descriptor(ClassHelper(a->GetClass()).GetDescriptor());
Elliott Hughes24437992011-11-30 14:49:33 -0800796 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
797
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800798 expandBufAdd1(pReply, tag);
799 expandBufAdd4BE(pReply, count);
800
Elliott Hughes24437992011-11-30 14:49:33 -0800801 if (IsPrimitiveTag(tag)) {
802 size_t width = GetTagWidth(tag);
Elliott Hughes24437992011-11-30 14:49:33 -0800803 uint8_t* dst = expandBufAddSpace(pReply, count * width);
804 if (width == 8) {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800805 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t)));
Elliott Hughes24437992011-11-30 14:49:33 -0800806 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
807 } else if (width == 4) {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800808 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t)));
Elliott Hughes24437992011-11-30 14:49:33 -0800809 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
810 } else if (width == 2) {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800811 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t)));
Elliott Hughes24437992011-11-30 14:49:33 -0800812 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
813 } else {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800814 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t)));
Elliott Hughes24437992011-11-30 14:49:33 -0800815 memcpy(dst, &src[offset * width], count * width);
816 }
817 } else {
818 ObjectArray<Object>* oa = a->AsObjectArray<Object>();
819 for (int i = 0; i < count; ++i) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800820 Object* element = oa->Get(offset + i);
Elliott Hughes24437992011-11-30 14:49:33 -0800821 JDWP::JdwpTag specific_tag = (element != NULL) ? TagFromObject(element) : tag;
822 expandBufAdd1(pReply, specific_tag);
823 expandBufAddObjectId(pReply, gRegistry->Add(element));
824 }
825 }
826
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800827 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700828}
829
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800830JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId arrayId, int offset, int count, const uint8_t* src) {
831 JDWP::JdwpError status;
832 Array* a = DecodeArray(arrayId, status);
833 if (a == NULL) {
834 return status;
835 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800836
837 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
838 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800839 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800840 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800841 std::string descriptor(ClassHelper(a->GetClass()).GetDescriptor());
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800842 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
843
844 if (IsPrimitiveTag(tag)) {
845 size_t width = GetTagWidth(tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800846 if (width == 8) {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800847 uint8_t* dst = &(reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint64_t)))[offset * width]);
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800848 for (int i = 0; i < count; ++i) {
849 // Handle potentially non-aligned memory access one byte at a time for ARM's benefit.
850 uint64_t value;
851 for (size_t j = 0; j < sizeof(uint64_t); ++j) reinterpret_cast<uint8_t*>(&value)[j] = src[j];
852 src += sizeof(uint64_t);
853 JDWP::Write8BE(&dst, value);
854 }
855 } else if (width == 4) {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800856 uint8_t* dst = &(reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint32_t)))[offset * width]);
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800857 const uint32_t* src4 = reinterpret_cast<const uint32_t*>(src);
858 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[i]);
859 } else if (width == 2) {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800860 uint8_t* dst = &(reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint16_t)))[offset * width]);
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800861 const uint16_t* src2 = reinterpret_cast<const uint16_t*>(src);
862 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[i]);
863 } else {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800864 uint8_t* dst = &(reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t)))[offset * width]);
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800865 memcpy(&dst[offset * width], src, count * width);
866 }
867 } else {
868 ObjectArray<Object>* oa = a->AsObjectArray<Object>();
869 for (int i = 0; i < count; ++i) {
870 JDWP::ObjectId id = JDWP::ReadObjectId(&src);
Elliott Hughes436e3722012-02-17 20:01:47 -0800871 Object* o = gRegistry->Get<Object*>(id);
872 if (o == kInvalidObject) {
873 return JDWP::ERR_INVALID_OBJECT;
874 }
875 oa->Set(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800876 }
877 }
878
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800879 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700880}
881
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800882JDWP::ObjectId Dbg::CreateString(const std::string& str) {
883 return gRegistry->Add(String::AllocFromModifiedUtf8(str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700884}
885
Elliott Hughes436e3722012-02-17 20:01:47 -0800886JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId classId, JDWP::ObjectId& new_object) {
887 JDWP::JdwpError status;
888 Class* c = DecodeClass(classId, status);
889 if (c == NULL) {
890 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800891 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800892 new_object = gRegistry->Add(c->AllocObject());
893 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700894}
895
Elliott Hughesbf13d362011-12-08 15:51:37 -0800896/*
897 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
898 */
Elliott Hughes436e3722012-02-17 20:01:47 -0800899JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId arrayClassId, uint32_t length, JDWP::ObjectId& new_array) {
900 JDWP::JdwpError status;
901 Class* c = DecodeClass(arrayClassId, status);
902 if (c == NULL) {
903 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800904 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800905 new_array = gRegistry->Add(Array::Alloc(c, length));
906 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700907}
908
909bool Dbg::MatchType(JDWP::RefTypeId instClassId, JDWP::RefTypeId classId) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800910 JDWP::JdwpError status;
911 Class* c1 = DecodeClass(instClassId, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800912 CHECK(c1 != NULL);
Elliott Hughes436e3722012-02-17 20:01:47 -0800913 Class* c2 = DecodeClass(classId, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800914 CHECK(c2 != NULL);
915 return c1->IsAssignableFrom(c2);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700916}
917
Elliott Hughes86964332012-02-15 19:37:42 -0800918static JDWP::FieldId ToFieldId(const Field* f) {
Elliott Hughes03181a82011-11-17 17:22:21 -0800919#ifdef MOVING_GARBAGE_COLLECTOR
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700920 UNIMPLEMENTED(FATAL);
Elliott Hughes03181a82011-11-17 17:22:21 -0800921#else
922 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
923#endif
924}
925
Elliott Hughes86964332012-02-15 19:37:42 -0800926static JDWP::MethodId ToMethodId(const Method* m) {
Elliott Hughes03181a82011-11-17 17:22:21 -0800927#ifdef MOVING_GARBAGE_COLLECTOR
928 UNIMPLEMENTED(FATAL);
929#else
930 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
931#endif
932}
933
Elliott Hughes86964332012-02-15 19:37:42 -0800934static Field* FromFieldId(JDWP::FieldId fid) {
Elliott Hughesaed4be92011-12-02 16:16:23 -0800935#ifdef MOVING_GARBAGE_COLLECTOR
936 UNIMPLEMENTED(FATAL);
937#else
938 return reinterpret_cast<Field*>(static_cast<uintptr_t>(fid));
939#endif
940}
941
Elliott Hughes86964332012-02-15 19:37:42 -0800942static Method* FromMethodId(JDWP::MethodId mid) {
Elliott Hughes03181a82011-11-17 17:22:21 -0800943#ifdef MOVING_GARBAGE_COLLECTOR
944 UNIMPLEMENTED(FATAL);
945#else
946 return reinterpret_cast<Method*>(static_cast<uintptr_t>(mid));
947#endif
948}
949
Ian Rogers0399dde2012-06-06 17:09:28 -0700950static void SetLocation(JDWP::JdwpLocation& location, Method* m, uint32_t dex_pc) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -0800951 if (m == NULL) {
952 memset(&location, 0, sizeof(location));
953 } else {
954 Class* c = m->GetDeclaringClass();
Elliott Hughes74847412012-06-20 18:10:21 -0700955 location.type_tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
956 location.class_id = gRegistry->Add(c);
957 location.method_id = ToMethodId(m);
Ian Rogers0399dde2012-06-06 17:09:28 -0700958 location.dex_pc = dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -0800959 }
Elliott Hughesd07986f2011-12-06 18:27:45 -0800960}
961
Elliott Hughes436e3722012-02-17 20:01:47 -0800962std::string Dbg::GetMethodName(JDWP::RefTypeId, JDWP::MethodId methodId) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800963 Method* m = FromMethodId(methodId);
964 return MethodHelper(m).GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700965}
966
Elliott Hughesa2e54f62011-11-17 13:01:30 -0800967/*
968 * Augment the access flags for synthetic methods and fields by setting
969 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
970 * flags not specified by the Java programming language.
971 */
972static uint32_t MangleAccessFlags(uint32_t accessFlags) {
973 accessFlags &= kAccJavaFlagsMask;
974 if ((accessFlags & kAccSynthetic) != 0) {
975 accessFlags |= 0xf0000000;
976 }
977 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700978}
979
Elliott Hughesdbb40792011-11-18 17:05:22 -0800980static const uint16_t kEclipseWorkaroundSlot = 1000;
981
982/*
983 * Eclipse appears to expect that the "this" reference is in slot zero.
984 * If it's not, the "variables" display will show two copies of "this",
985 * possibly because it gets "this" from SF.ThisObject and then displays
986 * all locals with nonzero slot numbers.
987 *
988 * So, we remap the item in slot 0 to 1000, and remap "this" to zero. On
989 * SF.GetValues / SF.SetValues we map them back.
Elliott Hughesc5b734a2011-12-01 17:20:58 -0800990 *
991 * TODO: jdb uses the value to determine whether a variable is a local or an argument,
992 * by checking whether it's less than the number of arguments. To make that work, we'd
993 * have to "mangle" all the arguments to come first, not just the implicit argument 'this'.
Elliott Hughesdbb40792011-11-18 17:05:22 -0800994 */
995static uint16_t MangleSlot(uint16_t slot, const char* name) {
996 uint16_t newSlot = slot;
997 if (strcmp(name, "this") == 0) {
998 newSlot = 0;
999 } else if (slot == 0) {
1000 newSlot = kEclipseWorkaroundSlot;
1001 }
1002 return newSlot;
1003}
1004
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001005static uint16_t DemangleSlot(uint16_t slot, Method* m) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001006 if (slot == kEclipseWorkaroundSlot) {
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001007 return 0;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001008 } else if (slot == 0) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001009 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
1010 CHECK(code_item != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001011 return code_item->registers_size_ - code_item->ins_size_;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001012 }
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001013 return slot;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001014}
1015
Elliott Hughes436e3722012-02-17 20:01:47 -08001016JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId classId, bool with_generic, JDWP::ExpandBuf* pReply) {
1017 JDWP::JdwpError status;
1018 Class* c = DecodeClass(classId, status);
1019 if (c == NULL) {
1020 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001021 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001022
1023 size_t instance_field_count = c->NumInstanceFields();
1024 size_t static_field_count = c->NumStaticFields();
1025
1026 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1027
1028 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
1029 Field* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001030 FieldHelper fh(f);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001031 expandBufAddFieldId(pReply, ToFieldId(f));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001032 expandBufAddUtf8String(pReply, fh.GetName());
1033 expandBufAddUtf8String(pReply, fh.GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001034 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001035 static const char genericSignature[1] = "";
1036 expandBufAddUtf8String(pReply, genericSignature);
1037 }
1038 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1039 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001040 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001041}
1042
Elliott Hughes436e3722012-02-17 20:01:47 -08001043JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId classId, bool with_generic, JDWP::ExpandBuf* pReply) {
1044 JDWP::JdwpError status;
1045 Class* c = DecodeClass(classId, status);
1046 if (c == NULL) {
1047 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001048 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001049
1050 size_t direct_method_count = c->NumDirectMethods();
1051 size_t virtual_method_count = c->NumVirtualMethods();
1052
1053 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1054
1055 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
1056 Method* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001057 MethodHelper mh(m);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001058 expandBufAddMethodId(pReply, ToMethodId(m));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001059 expandBufAddUtf8String(pReply, mh.GetName());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001060 expandBufAddUtf8String(pReply, mh.GetSignature());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001061 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001062 static const char genericSignature[1] = "";
1063 expandBufAddUtf8String(pReply, genericSignature);
1064 }
1065 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1066 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001067 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001068}
1069
Elliott Hughes436e3722012-02-17 20:01:47 -08001070JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId classId, JDWP::ExpandBuf* pReply) {
1071 JDWP::JdwpError status;
1072 Class* c = DecodeClass(classId, status);
1073 if (c == NULL) {
1074 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001075 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001076
1077 ClassHelper kh(c);
Ian Rogersd24e2642012-06-06 21:21:43 -07001078 size_t interface_count = kh.NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001079 expandBufAdd4BE(pReply, interface_count);
1080 for (size_t i = 0; i < interface_count; ++i) {
Ian Rogersd24e2642012-06-06 21:21:43 -07001081 expandBufAddRefTypeId(pReply, gRegistry->Add(kh.GetDirectInterface(i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001082 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001083 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001084}
1085
Elliott Hughes436e3722012-02-17 20:01:47 -08001086void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId methodId, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001087 struct DebugCallbackContext {
1088 int numItems;
1089 JDWP::ExpandBuf* pReply;
1090
Elliott Hughes2435a572012-02-17 16:07:41 -08001091 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001092 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1093 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001094 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001095 pContext->numItems++;
1096 return true;
1097 }
1098 };
1099
1100 Method* m = FromMethodId(methodId);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001101 MethodHelper mh(m);
Elliott Hughes03181a82011-11-17 17:22:21 -08001102 uint64_t start, end;
1103 if (m->IsNative()) {
1104 start = -1;
1105 end = -1;
1106 } else {
1107 start = 0;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001108 // TODO: what are the units supposed to be? *2?
1109 end = mh.GetCodeItem()->insns_size_in_code_units_;
Elliott Hughes03181a82011-11-17 17:22:21 -08001110 }
1111
1112 expandBufAdd8BE(pReply, start);
1113 expandBufAdd8BE(pReply, end);
1114
1115 // Add numLines later
1116 size_t numLinesOffset = expandBufGetLength(pReply);
1117 expandBufAdd4BE(pReply, 0);
1118
1119 DebugCallbackContext context;
1120 context.numItems = 0;
1121 context.pReply = pReply;
1122
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001123 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
1124 DebugCallbackContext::Callback, NULL, &context);
Elliott Hughes03181a82011-11-17 17:22:21 -08001125
1126 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001127}
1128
Elliott Hughes436e3722012-02-17 20:01:47 -08001129void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId methodId, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001130 struct DebugCallbackContext {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001131 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001132 size_t variable_count;
1133 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001134
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001135 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress, const char* name, const char* descriptor, const char* signature) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001136 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1137
Elliott Hughesad3da692012-02-24 16:51:35 -08001138 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d", pContext->variable_count, startAddress, endAddress - startAddress, name, descriptor, signature, slot, MangleSlot(slot, name));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001139
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001140 slot = MangleSlot(slot, name);
1141
Elliott Hughesdbb40792011-11-18 17:05:22 -08001142 expandBufAdd8BE(pContext->pReply, startAddress);
1143 expandBufAddUtf8String(pContext->pReply, name);
1144 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001145 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001146 expandBufAddUtf8String(pContext->pReply, signature);
1147 }
1148 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1149 expandBufAdd4BE(pContext->pReply, slot);
1150
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001151 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001152 }
1153 };
1154
1155 Method* m = FromMethodId(methodId);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001156 MethodHelper mh(m);
1157 const DexFile::CodeItem* code_item = mh.GetCodeItem();
Elliott Hughesdbb40792011-11-18 17:05:22 -08001158
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001159 // arg_count considers doubles and longs to take 2 units.
1160 // variable_count considers everything to take 1 unit.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001161 std::string shorty(mh.GetShorty());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001162 expandBufAdd4BE(pReply, m->NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001163
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001164 // We don't know the total number of variables yet, so leave a blank and update it later.
1165 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001166 expandBufAdd4BE(pReply, 0);
1167
1168 DebugCallbackContext context;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001169 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001170 context.variable_count = 0;
1171 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001172
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001173 mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL,
1174 DebugCallbackContext::Callback, &context);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001175
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001176 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001177}
1178
Elliott Hughesaed4be92011-12-02 16:16:23 -08001179JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId fieldId) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001180 return BasicTagFromDescriptor(FieldHelper(FromFieldId(fieldId)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001181}
1182
Elliott Hughesaed4be92011-12-02 16:16:23 -08001183JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId fieldId) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001184 return BasicTagFromDescriptor(FieldHelper(FromFieldId(fieldId)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001185}
1186
Elliott Hughes0cf74332012-02-23 23:14:00 -08001187static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId refTypeId, JDWP::ObjectId objectId, JDWP::FieldId fieldId, JDWP::ExpandBuf* pReply, bool is_static) {
1188 JDWP::JdwpError status;
1189 Class* c = DecodeClass(refTypeId, status);
1190 if (refTypeId != 0 && c == NULL) {
1191 return status;
1192 }
1193
Elliott Hughesaed4be92011-12-02 16:16:23 -08001194 Object* o = gRegistry->Get<Object*>(objectId);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001195 if ((!is_static && o == NULL) || o == kInvalidObject) {
1196 return JDWP::ERR_INVALID_OBJECT;
1197 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001198 Field* f = FromFieldId(fieldId);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001199
1200 Class* receiver_class = c;
1201 if (receiver_class == NULL && o != NULL) {
1202 receiver_class = o->GetClass();
1203 }
1204 // TODO: should we give up now if receiver_class is NULL?
1205 if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
1206 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001207 return JDWP::ERR_INVALID_FIELDID;
1208 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001209
Elliott Hughes0cf74332012-02-23 23:14:00 -08001210 // The RI only enforces the static/non-static mismatch in one direction.
1211 // TODO: should we change the tests and check both?
1212 if (is_static) {
1213 if (!f->IsStatic()) {
1214 return JDWP::ERR_INVALID_FIELDID;
1215 }
1216 } else {
1217 if (f->IsStatic()) {
1218 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
1219 o = NULL;
1220 }
1221 }
1222
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001223 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001224
1225 if (IsPrimitiveTag(tag)) {
1226 expandBufAdd1(pReply, tag);
1227 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1228 expandBufAdd1(pReply, f->Get32(o));
1229 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1230 expandBufAdd2BE(pReply, f->Get32(o));
1231 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1232 expandBufAdd4BE(pReply, f->Get32(o));
1233 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1234 expandBufAdd8BE(pReply, f->Get64(o));
1235 } else {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001236 LOG(FATAL) << "Unknown tag: " << tag;
Elliott Hughesaed4be92011-12-02 16:16:23 -08001237 }
1238 } else {
1239 Object* value = f->GetObject(o);
1240 expandBufAdd1(pReply, TagFromObject(value));
1241 expandBufAddObjectId(pReply, gRegistry->Add(value));
1242 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001243 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001244}
1245
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001246JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId objectId, JDWP::FieldId fieldId, JDWP::ExpandBuf* pReply) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001247 return GetFieldValueImpl(0, objectId, fieldId, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001248}
1249
Elliott Hughes0cf74332012-02-23 23:14:00 -08001250JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId refTypeId, JDWP::FieldId fieldId, JDWP::ExpandBuf* pReply) {
1251 return GetFieldValueImpl(refTypeId, 0, fieldId, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001252}
1253
1254static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId objectId, JDWP::FieldId fieldId, uint64_t value, int width, bool is_static) {
Elliott Hughesaed4be92011-12-02 16:16:23 -08001255 Object* o = gRegistry->Get<Object*>(objectId);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001256 if ((!is_static && o == NULL) || o == kInvalidObject) {
1257 return JDWP::ERR_INVALID_OBJECT;
1258 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001259 Field* f = FromFieldId(fieldId);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001260
1261 // The RI only enforces the static/non-static mismatch in one direction.
1262 // TODO: should we change the tests and check both?
1263 if (is_static) {
1264 if (!f->IsStatic()) {
1265 return JDWP::ERR_INVALID_FIELDID;
1266 }
1267 } else {
1268 if (f->IsStatic()) {
1269 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
1270 o = NULL;
1271 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001272 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001273
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001274 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001275
1276 if (IsPrimitiveTag(tag)) {
1277 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001278 CHECK_EQ(width, 8);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001279 f->Set64(o, value);
1280 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001281 CHECK_LE(width, 4);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001282 f->Set32(o, value);
1283 }
1284 } else {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001285 Object* v = gRegistry->Get<Object*>(value);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001286 if (v == kInvalidObject) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001287 return JDWP::ERR_INVALID_OBJECT;
1288 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001289 if (v != NULL) {
1290 Class* field_type = FieldHelper(f).GetType();
1291 if (!field_type->IsAssignableFrom(v->GetClass())) {
1292 return JDWP::ERR_INVALID_OBJECT;
1293 }
1294 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001295 f->SetObject(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001296 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001297
1298 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001299}
1300
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001301JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId objectId, JDWP::FieldId fieldId, uint64_t value, int width) {
1302 return SetFieldValueImpl(objectId, fieldId, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001303}
1304
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001305JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId fieldId, uint64_t value, int width) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001306 return SetFieldValueImpl(0, fieldId, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001307}
1308
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001309std::string Dbg::StringToUtf8(JDWP::ObjectId strId) {
1310 String* s = gRegistry->Get<String*>(strId);
1311 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001312}
1313
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001314bool Dbg::GetThreadName(JDWP::ObjectId threadId, std::string& name) {
1315 ScopedThreadListLock thread_list_lock;
1316 Thread* thread = DecodeThread(threadId);
1317 if (thread == NULL) {
1318 return false;
1319 }
Elliott Hughesffb465f2012-03-01 18:46:05 -08001320 thread->GetThreadName(name);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001321 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001322}
1323
Elliott Hughes2435a572012-02-17 16:07:41 -08001324JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId threadId, JDWP::ExpandBuf* pReply) {
Elliott Hughes499c5132011-11-17 14:55:11 -08001325 Object* thread = gRegistry->Get<Object*>(threadId);
Elliott Hughes436e3722012-02-17 20:01:47 -08001326 if (thread == kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001327 return JDWP::ERR_INVALID_OBJECT;
1328 }
1329
1330 // Okay, so it's an object, but is it actually a thread?
Elliott Hughes436e3722012-02-17 20:01:47 -08001331 if (DecodeThread(threadId) == NULL) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001332 return JDWP::ERR_INVALID_THREAD;
1333 }
Elliott Hughes499c5132011-11-17 14:55:11 -08001334
1335 Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/Thread;");
1336 CHECK(c != NULL);
1337 Field* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
1338 CHECK(f != NULL);
1339 Object* group = f->GetObject(thread);
1340 CHECK(group != NULL);
Elliott Hughes2435a572012-02-17 16:07:41 -08001341 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1342
1343 expandBufAddObjectId(pReply, thread_group_id);
1344 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001345}
1346
Elliott Hughes499c5132011-11-17 14:55:11 -08001347std::string Dbg::GetThreadGroupName(JDWP::ObjectId threadGroupId) {
1348 Object* thread_group = gRegistry->Get<Object*>(threadGroupId);
1349 CHECK(thread_group != NULL);
1350
1351 Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/ThreadGroup;");
1352 CHECK(c != NULL);
1353 Field* f = c->FindInstanceField("name", "Ljava/lang/String;");
1354 CHECK(f != NULL);
1355 String* s = reinterpret_cast<String*>(f->GetObject(thread_group));
1356 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001357}
1358
1359JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId threadGroupId) {
Elliott Hughes4e235312011-12-02 11:34:15 -08001360 Object* thread_group = gRegistry->Get<Object*>(threadGroupId);
1361 CHECK(thread_group != NULL);
1362
1363 Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/ThreadGroup;");
1364 CHECK(c != NULL);
1365 Field* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
1366 CHECK(f != NULL);
1367 Object* parent = f->GetObject(thread_group);
1368 return gRegistry->Add(parent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001369}
1370
1371JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Elliott Hughes462c9442012-03-23 18:47:50 -07001372 return gRegistry->Add(Thread::GetSystemThreadGroup());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001373}
1374
1375JDWP::ObjectId Dbg::GetMainThreadGroupId() {
Elliott Hughes462c9442012-03-23 18:47:50 -07001376 return gRegistry->Add(Thread::GetMainThreadGroup());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001377}
1378
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001379bool Dbg::GetThreadStatus(JDWP::ObjectId threadId, JDWP::JdwpThreadStatus* pThreadStatus, JDWP::JdwpSuspendStatus* pSuspendStatus) {
Elliott Hughes499c5132011-11-17 14:55:11 -08001380 ScopedThreadListLock thread_list_lock;
1381
1382 Thread* thread = DecodeThread(threadId);
1383 if (thread == NULL) {
1384 return false;
1385 }
1386
Elliott Hughes3ce4b262012-02-24 11:24:02 -08001387 // TODO: if we're in Thread.sleep(long), we should return TS_SLEEPING,
1388 // even if it's implemented using Object.wait(long).
Elliott Hughes499c5132011-11-17 14:55:11 -08001389 switch (thread->GetState()) {
Elliott Hughes34e06962012-04-09 13:55:55 -07001390 case kTerminated: *pThreadStatus = JDWP::TS_ZOMBIE; break;
1391 case kRunnable: *pThreadStatus = JDWP::TS_RUNNING; break;
1392 case kTimedWaiting: *pThreadStatus = JDWP::TS_WAIT; break;
1393 case kBlocked: *pThreadStatus = JDWP::TS_MONITOR; break;
1394 case kWaiting: *pThreadStatus = JDWP::TS_WAIT; break;
1395 case kStarting: *pThreadStatus = JDWP::TS_ZOMBIE; break;
1396 case kNative: *pThreadStatus = JDWP::TS_RUNNING; break;
1397 case kVmWait: *pThreadStatus = JDWP::TS_WAIT; break;
1398 case kSuspended: *pThreadStatus = JDWP::TS_RUNNING; break;
Elliott Hughescf2b2d42012-03-27 17:11:42 -07001399 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
Elliott Hughes499c5132011-11-17 14:55:11 -08001400 }
1401
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001402 *pSuspendStatus = (thread->IsSuspended() ? JDWP::SUSPEND_STATUS_SUSPENDED : JDWP::SUSPEND_STATUS_NOT_SUSPENDED);
Elliott Hughes499c5132011-11-17 14:55:11 -08001403
1404 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001405}
1406
Elliott Hughes2435a572012-02-17 16:07:41 -08001407JDWP::JdwpError Dbg::GetThreadSuspendCount(JDWP::ObjectId threadId, JDWP::ExpandBuf* pReply) {
1408 Thread* thread = DecodeThread(threadId);
1409 if (thread == NULL) {
1410 return JDWP::ERR_INVALID_THREAD;
1411 }
1412 expandBufAdd4BE(pReply, thread->GetSuspendCount());
1413 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001414}
1415
1416bool Dbg::ThreadExists(JDWP::ObjectId threadId) {
Elliott Hughes761928d2011-11-16 18:33:03 -08001417 return DecodeThread(threadId) != NULL;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001418}
1419
1420bool Dbg::IsSuspended(JDWP::ObjectId threadId) {
Elliott Hughes761928d2011-11-16 18:33:03 -08001421 return DecodeThread(threadId)->IsSuspended();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001422}
1423
Elliott Hughesa2155262011-11-16 16:26:58 -08001424void Dbg::GetThreadGroupThreadsImpl(Object* thread_group, JDWP::ObjectId** ppThreadIds, uint32_t* pThreadCount) {
1425 struct ThreadListVisitor {
1426 static void Visit(Thread* t, void* arg) {
1427 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
1428 }
1429
1430 void Visit(Thread* t) {
1431 if (t == Dbg::GetDebugThread()) {
1432 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
1433 // query all threads, so it's easier if we just don't tell them about this thread.
1434 return;
1435 }
1436 if (thread_group == NULL || t->GetThreadGroup() == thread_group) {
1437 threads.push_back(gRegistry->Add(t->GetPeer()));
1438 }
1439 }
1440
1441 Object* thread_group;
1442 std::vector<JDWP::ObjectId> threads;
1443 };
1444
1445 ThreadListVisitor tlv;
1446 tlv.thread_group = thread_group;
1447
Elliott Hughesf8349362012-06-18 15:00:06 -07001448 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
Elliott Hughesa2155262011-11-16 16:26:58 -08001449
1450 *pThreadCount = tlv.threads.size();
1451 if (*pThreadCount == 0) {
1452 *ppThreadIds = NULL;
1453 } else {
1454 *ppThreadIds = new JDWP::ObjectId[*pThreadCount];
1455 for (size_t i = 0; i < *pThreadCount; ++i) {
1456 (*ppThreadIds)[i] = tlv.threads[i];
1457 }
1458 }
1459}
1460
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001461void Dbg::GetThreadGroupThreads(JDWP::ObjectId threadGroupId, JDWP::ObjectId** ppThreadIds, uint32_t* pThreadCount) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001462 GetThreadGroupThreadsImpl(gRegistry->Get<Object*>(threadGroupId), ppThreadIds, pThreadCount);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001463}
1464
1465void Dbg::GetAllThreads(JDWP::ObjectId** ppThreadIds, uint32_t* pThreadCount) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001466 GetThreadGroupThreadsImpl(NULL, ppThreadIds, pThreadCount);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001467}
1468
Elliott Hughes86964332012-02-15 19:37:42 -08001469static int GetStackDepth(Thread* thread) {
Ian Rogers0399dde2012-06-06 17:09:28 -07001470 struct CountStackDepthVisitor : public StackVisitor {
1471 CountStackDepthVisitor(const ManagedStack* stack,
1472 const std::vector<TraceStackFrame>* trace_stack) :
1473 StackVisitor(stack, trace_stack), depth(0) {}
1474
1475 bool VisitFrame() {
1476 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08001477 ++depth;
1478 }
Elliott Hughes530fa002012-03-12 11:44:49 -07001479 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001480 }
1481 size_t depth;
1482 };
Ian Rogers0399dde2012-06-06 17:09:28 -07001483 CountStackDepthVisitor visitor(thread->GetManagedStack(), thread->GetTraceStack());
1484 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001485 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001486}
1487
Elliott Hughes86964332012-02-15 19:37:42 -08001488int Dbg::GetThreadFrameCount(JDWP::ObjectId threadId) {
1489 ScopedThreadListLock thread_list_lock;
1490 return GetStackDepth(DecodeThread(threadId));
1491}
1492
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001493JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001494 ScopedThreadListLock thread_list_lock;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001495 class GetFrameVisitor : public StackVisitor {
1496 public:
Ian Rogers0399dde2012-06-06 17:09:28 -07001497 GetFrameVisitor(const ManagedStack* stack, const std::vector<TraceStackFrame>* trace_stack,
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001498 size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
1499 : StackVisitor(stack, trace_stack), depth_(0),
1500 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
1501 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08001502 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001503
1504 bool VisitFrame() {
1505 if (GetMethod()->IsRuntimeMethod()) {
Elliott Hughes530fa002012-03-12 11:44:49 -07001506 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08001507 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001508 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07001509 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001510 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001511 if (depth_ >= start_frame_) {
1512 JDWP::FrameId frame_id(GetFrameId());
1513 JDWP::JdwpLocation location;
1514 SetLocation(location, GetMethod(), GetDexPc());
Elliott Hughes7baf96f2012-06-22 16:33:50 -07001515 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3lld ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001516 expandBufAdd8BE(buf_, frame_id);
1517 expandBufAddLocation(buf_, location);
1518 }
1519 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07001520 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08001521 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001522
1523 private:
1524 size_t depth_;
1525 const size_t start_frame_;
1526 const size_t frame_count_;
1527 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08001528 };
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001529 Thread* thread = DecodeThread(thread_id);
1530 GetFrameVisitor visitor(thread->GetManagedStack(), thread->GetTraceStack(), start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07001531 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001532 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001533}
1534
1535JDWP::ObjectId Dbg::GetThreadSelfId() {
Elliott Hughes475fc232011-10-25 15:00:35 -07001536 return gRegistry->Add(Thread::Current()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001537}
1538
Elliott Hughes475fc232011-10-25 15:00:35 -07001539void Dbg::SuspendVM() {
Elliott Hughes34e06962012-04-09 13:55:55 -07001540 ScopedThreadStateChange tsc(Thread::Current(), kRunnable); // TODO: do we really want to change back? should the JDWP thread be Runnable usually?
Elliott Hughes475fc232011-10-25 15:00:35 -07001541 Runtime::Current()->GetThreadList()->SuspendAll(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001542}
1543
1544void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07001545 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001546}
1547
1548void Dbg::SuspendThread(JDWP::ObjectId threadId) {
Elliott Hughes4e235312011-12-02 11:34:15 -08001549 Object* peer = gRegistry->Get<Object*>(threadId);
1550 ScopedThreadListLock thread_list_lock;
1551 Thread* thread = Thread::FromManagedThread(peer);
1552 if (thread == NULL) {
1553 LOG(WARNING) << "No such thread for suspend: " << peer;
1554 return;
1555 }
1556 Runtime::Current()->GetThreadList()->Suspend(thread, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001557}
1558
1559void Dbg::ResumeThread(JDWP::ObjectId threadId) {
Elliott Hughes4e235312011-12-02 11:34:15 -08001560 Object* peer = gRegistry->Get<Object*>(threadId);
1561 ScopedThreadListLock thread_list_lock;
1562 Thread* thread = Thread::FromManagedThread(peer);
1563 if (thread == NULL) {
1564 LOG(WARNING) << "No such thread for resume: " << peer;
1565 return;
1566 }
Elliott Hughes546b9862012-06-20 16:06:13 -07001567 if (thread->GetSuspendCount() > 0) {
1568 Runtime::Current()->GetThreadList()->Resume(thread, true);
1569 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001570}
1571
1572void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07001573 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001574}
1575
Ian Rogers0399dde2012-06-06 17:09:28 -07001576struct GetThisVisitor : public StackVisitor {
1577 GetThisVisitor(const ManagedStack* stack, const std::vector<TraceStackFrame>* trace_stack,
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001578 Context* context, JDWP::FrameId frameId)
1579 : StackVisitor(stack, trace_stack, context), this_object(NULL), frame_id(frameId) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07001580
1581 virtual bool VisitFrame() {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001582 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07001583 return true; // continue
1584 }
1585 Method* m = GetMethod();
1586 if (m->IsNative() || m->IsStatic()) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001587 this_object = NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -07001588 } else {
1589 uint16_t reg = DemangleSlot(0, m);
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001590 this_object = reinterpret_cast<Object*>(GetVReg(m, reg));
Ian Rogers0399dde2012-06-06 17:09:28 -07001591 }
1592 return false;
Elliott Hughes86b00102011-12-05 17:54:26 -08001593 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001594
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001595 Object* this_object;
1596 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07001597};
1598
1599static Object* GetThis(Method** quickFrame) {
1600 struct FrameIdVisitor : public StackVisitor {
1601 FrameIdVisitor(const ManagedStack* stack, const std::vector<TraceStackFrame>* trace_stack,
1602 Method** m) : StackVisitor(stack, trace_stack),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001603 quick_frame_to_find(m) , frame_id(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07001604
1605 virtual bool VisitFrame() {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001606 if (quick_frame_to_find != GetCurrentQuickFrame()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07001607 return true; // Continue.
1608 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001609 frame_id = GetFrameId();
Ian Rogers0399dde2012-06-06 17:09:28 -07001610 return false; // Stop.
1611 }
1612
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001613 Method** const quick_frame_to_find;
1614 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07001615 };
1616
1617 Method* m = *quickFrame;
1618 if (m->IsNative() || m->IsStatic()) {
1619 return NULL;
1620 }
1621 Thread* self = Thread::Current();
1622 const ManagedStack* stack = self->GetManagedStack();
1623 const std::vector<TraceStackFrame>* trace_stack = self->GetTraceStack();
1624 FrameIdVisitor frameIdVisitor(stack, trace_stack, quickFrame);
1625 frameIdVisitor.WalkStack();
1626 UniquePtr<Context> context(Context::Create());
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001627 GetThisVisitor getThisVisitor(stack, trace_stack, context.get(), frameIdVisitor.frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07001628 getThisVisitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001629 return getThisVisitor.this_object;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001630}
1631
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001632JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, JDWP::ObjectId* result) {
Ian Rogers0399dde2012-06-06 17:09:28 -07001633 UniquePtr<Context> context(Context::Create());
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001634 Thread* thread = DecodeThread(thread_id);
1635 if (thread == NULL) {
1636 return JDWP::ERR_INVALID_THREAD;
1637 }
1638 GetThisVisitor visitor(thread->GetManagedStack(), thread->GetTraceStack(), context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07001639 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001640 *result = gRegistry->Add(visitor.this_object);
1641 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001642}
1643
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001644void Dbg::GetLocalValue(JDWP::ObjectId threadId, JDWP::FrameId frameId, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07001645 struct GetLocalVisitor : public StackVisitor {
1646 GetLocalVisitor(const ManagedStack* stack, const std::vector<TraceStackFrame>* trace_stack,
1647 Context* context, JDWP::FrameId frameId, int slot, JDWP::JdwpTag tag,
1648 uint8_t* buf, size_t width) :
1649 StackVisitor(stack, trace_stack, context), frame_id_(frameId), slot_(slot), tag_(tag),
1650 buf_(buf), width_(width) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001651 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001652 bool VisitFrame() {
1653 if (GetFrameId() != frame_id_) {
1654 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001655 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001656 // TODO: check that the tag is compatible with the actual type of the slot!
1657 Method* m = GetMethod();
1658 uint16_t reg = DemangleSlot(slot_, m);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001659
Ian Rogers0399dde2012-06-06 17:09:28 -07001660 switch (tag_) {
1661 case JDWP::JT_BOOLEAN:
1662 {
1663 CHECK_EQ(width_, 1U);
1664 uint32_t intVal = GetVReg(m, reg);
1665 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
1666 JDWP::Set1(buf_+1, intVal != 0);
1667 }
1668 break;
1669 case JDWP::JT_BYTE:
1670 {
1671 CHECK_EQ(width_, 1U);
1672 uint32_t intVal = GetVReg(m, reg);
1673 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
1674 JDWP::Set1(buf_+1, intVal);
1675 }
1676 break;
1677 case JDWP::JT_SHORT:
1678 case JDWP::JT_CHAR:
1679 {
1680 CHECK_EQ(width_, 2U);
1681 uint32_t intVal = GetVReg(m, reg);
1682 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
1683 JDWP::Set2BE(buf_+1, intVal);
1684 }
1685 break;
1686 case JDWP::JT_INT:
1687 case JDWP::JT_FLOAT:
1688 {
1689 CHECK_EQ(width_, 4U);
1690 uint32_t intVal = GetVReg(m, reg);
1691 VLOG(jdwp) << "get int/float local " << reg << " = " << intVal;
1692 JDWP::Set4BE(buf_+1, intVal);
1693 }
1694 break;
1695 case JDWP::JT_ARRAY:
1696 {
1697 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
1698 Object* o = reinterpret_cast<Object*>(GetVReg(m, reg));
1699 VLOG(jdwp) << "get array local " << reg << " = " << o;
1700 if (!Runtime::Current()->GetHeap()->IsHeapAddress(o)) {
1701 LOG(FATAL) << "Register " << reg << " expected to hold array: " << o;
1702 }
1703 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
1704 }
1705 break;
1706 case JDWP::JT_CLASS_LOADER:
1707 case JDWP::JT_CLASS_OBJECT:
1708 case JDWP::JT_OBJECT:
1709 case JDWP::JT_STRING:
1710 case JDWP::JT_THREAD:
1711 case JDWP::JT_THREAD_GROUP:
1712 {
1713 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
1714 Object* o = reinterpret_cast<Object*>(GetVReg(m, reg));
1715 VLOG(jdwp) << "get object local " << reg << " = " << o;
1716 if (!Runtime::Current()->GetHeap()->IsHeapAddress(o)) {
1717 LOG(FATAL) << "Register " << reg << " expected to hold object: " << o;
1718 }
1719 tag_ = TagFromObject(o);
1720 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
1721 }
1722 break;
1723 case JDWP::JT_DOUBLE:
1724 case JDWP::JT_LONG:
1725 {
1726 CHECK_EQ(width_, 8U);
1727 uint32_t lo = GetVReg(m, reg);
1728 uint64_t hi = GetVReg(m, reg + 1);
1729 uint64_t longVal = (hi << 32) | lo;
1730 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
1731 JDWP::Set8BE(buf_+1, longVal);
1732 }
1733 break;
1734 default:
1735 LOG(FATAL) << "Unknown tag " << tag_;
1736 break;
1737 }
1738
1739 // Prepend tag, which may have been updated.
1740 JDWP::Set1(buf_, tag_);
1741 return false;
1742 }
1743
1744 const JDWP::FrameId frame_id_;
1745 const int slot_;
1746 JDWP::JdwpTag tag_;
1747 uint8_t* const buf_;
1748 const size_t width_;
1749 };
1750 Thread* thread = DecodeThread(threadId);
1751 UniquePtr<Context> context(Context::Create());
1752 GetLocalVisitor visitor(thread->GetManagedStack(), thread->GetTraceStack(), context.get(),
1753 frameId, slot, tag, buf, width);
1754 visitor.WalkStack();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001755}
1756
Ian Rogers0399dde2012-06-06 17:09:28 -07001757void Dbg::SetLocalValue(JDWP::ObjectId threadId, JDWP::FrameId frameId, int slot, JDWP::JdwpTag tag,
1758 uint64_t value, size_t width) {
1759 struct SetLocalVisitor : public StackVisitor {
1760 SetLocalVisitor(const ManagedStack* stack, const std::vector<TraceStackFrame>* trace_stack,
1761 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
1762 size_t width) :
1763 StackVisitor(stack, trace_stack), frame_id_(frame_id), slot_(slot), tag_(tag),
1764 value_(value), width_(width) {
Elliott Hughescccd84f2011-12-05 16:51:54 -08001765 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001766 bool VisitFrame() {
1767 if (GetFrameId() != frame_id_) {
1768 return true; // Not our frame, carry on.
1769 }
1770 // TODO: check that the tag is compatible with the actual type of the slot!
1771 Method* m = GetMethod();
1772 uint16_t reg = DemangleSlot(slot_, m);
1773
1774 switch (tag_) {
1775 case JDWP::JT_BOOLEAN:
1776 case JDWP::JT_BYTE:
1777 CHECK_EQ(width_, 1U);
1778 SetVReg(m, reg, static_cast<uint32_t>(value_));
1779 break;
1780 case JDWP::JT_SHORT:
1781 case JDWP::JT_CHAR:
1782 CHECK_EQ(width_, 2U);
1783 SetVReg(m, reg, static_cast<uint32_t>(value_));
1784 break;
1785 case JDWP::JT_INT:
1786 case JDWP::JT_FLOAT:
1787 CHECK_EQ(width_, 4U);
1788 SetVReg(m, reg, static_cast<uint32_t>(value_));
1789 break;
1790 case JDWP::JT_ARRAY:
1791 case JDWP::JT_OBJECT:
1792 case JDWP::JT_STRING:
1793 {
1794 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
1795 Object* o = gRegistry->Get<Object*>(static_cast<JDWP::ObjectId>(value_));
1796 if (o == kInvalidObject) {
1797 UNIMPLEMENTED(FATAL) << "return an error code when given an invalid object to store";
1798 }
1799 SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)));
1800 }
1801 break;
1802 case JDWP::JT_DOUBLE:
1803 case JDWP::JT_LONG:
1804 CHECK_EQ(width_, 8U);
1805 SetVReg(m, reg, static_cast<uint32_t>(value_));
1806 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32));
1807 break;
1808 default:
1809 LOG(FATAL) << "Unknown tag " << tag_;
1810 break;
1811 }
1812 return false;
1813 }
1814
1815 const JDWP::FrameId frame_id_;
1816 const int slot_;
1817 const JDWP::JdwpTag tag_;
1818 const uint64_t value_;
1819 const size_t width_;
1820 };
1821 Thread* thread = DecodeThread(threadId);
1822 SetLocalVisitor visitor(thread->GetManagedStack(), thread->GetTraceStack(), frameId, slot, tag,
1823 value, width);
1824 visitor.WalkStack();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001825}
1826
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001827void Dbg::PostLocationEvent(const Method* m, int dex_pc, Object* this_object, int event_flags) {
1828 Class* c = m->GetDeclaringClass();
1829
1830 JDWP::JdwpLocation location;
Elliott Hughes74847412012-06-20 18:10:21 -07001831 location.type_tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1832 location.class_id = gRegistry->Add(c);
1833 location.method_id = ToMethodId(m);
Elliott Hughes972a47b2012-02-21 18:16:06 -08001834 location.dex_pc = m->IsNative() ? -1 : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001835
1836 // Note we use "NoReg" so we don't keep track of references that are
1837 // never actually sent to the debugger. 'this_id' is only used to
1838 // compare against registered events...
1839 JDWP::ObjectId this_id = static_cast<JDWP::ObjectId>(reinterpret_cast<uintptr_t>(this_object));
1840 if (gJdwpState->PostLocationEvent(&location, this_id, event_flags)) {
1841 // ...unless there's a registered event, in which case we
1842 // need to really track the class and 'this'.
1843 gRegistry->Add(c);
1844 gRegistry->Add(this_object);
1845 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001846}
1847
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001848void Dbg::PostException(Thread* thread, JDWP::FrameId throwFrameId, Method* throwMethod, uint32_t throwDexPc,
Ian Rogers0399dde2012-06-06 17:09:28 -07001849 Method* catchMethod, uint32_t catchDexPc, Throwable* exception) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07001850 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08001851 return;
1852 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001853
Elliott Hughesd07986f2011-12-06 18:27:45 -08001854 JDWP::JdwpLocation throw_location;
Ian Rogers0399dde2012-06-06 17:09:28 -07001855 SetLocation(throw_location, throwMethod, throwDexPc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08001856 JDWP::JdwpLocation catch_location;
Ian Rogers0399dde2012-06-06 17:09:28 -07001857 SetLocation(catch_location, catchMethod, catchDexPc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08001858
1859 // We need 'this' for InstanceOnly filters.
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001860 JDWP::ObjectId thread_id = gRegistry->Add(thread->GetPeer());
Elliott Hughesd07986f2011-12-06 18:27:45 -08001861 JDWP::ObjectId this_id;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001862 JDWP::JdwpError get_this_error = GetThisObject(thread_id, throwFrameId, &this_id);
1863 CHECK_EQ(get_this_error, JDWP::ERR_NONE);
Elliott Hughesd07986f2011-12-06 18:27:45 -08001864
1865 /*
1866 * Hand the event to the JDWP exception handler. Note we're using the
1867 * "NoReg" objectID on the exception, which is not strictly correct --
1868 * the exception object WILL be passed up to the debugger if the
1869 * debugger is interested in the event. We do this because the current
1870 * implementation of the debugger object registry never throws anything
1871 * away, and some people were experiencing a fatal build up of exception
1872 * objects when dealing with certain libraries.
1873 */
1874 JDWP::ObjectId exception_id = static_cast<JDWP::ObjectId>(reinterpret_cast<uintptr_t>(exception));
1875 JDWP::RefTypeId exception_class_id = gRegistry->Add(exception->GetClass());
1876
1877 gJdwpState->PostException(&throw_location, exception_id, exception_class_id, &catch_location, this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001878}
1879
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001880void Dbg::PostClassPrepare(Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07001881 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001882 return;
1883 }
1884
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001885 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001886 // debuggers seem to like that. There might be some advantage to honesty,
1887 // since the class may not yet be verified.
1888 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1889 JDWP::JdwpTypeTag tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1890 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c), ClassHelper(c).GetDescriptor(), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001891}
1892
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001893void Dbg::UpdateDebugger(int32_t dex_pc, Thread* self, Method** sp) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07001894 if (!IsDebuggerActive() || dex_pc == -2 /* fake method exit */) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001895 return;
1896 }
1897
Ian Rogers0399dde2012-06-06 17:09:28 -07001898 Method* m = self->GetCurrentMethod();
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001899
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001900 if (dex_pc == -1) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08001901 // We use a pc of -1 to represent method entry, since we might branch back to pc 0 later.
1902 // This means that for this special notification, there can't be anything else interesting
1903 // going on, so we're done already.
Ian Rogers0399dde2012-06-06 17:09:28 -07001904 Dbg::PostLocationEvent(m, 0, GetThis(sp), kMethodEntry);
Elliott Hughes2aa2e392012-02-17 17:15:43 -08001905 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001906 }
1907
Elliott Hughes2aa2e392012-02-17 17:15:43 -08001908 int event_flags = 0;
1909
Elliott Hughes86964332012-02-15 19:37:42 -08001910 if (IsBreakpoint(m, dex_pc)) {
1911 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001912 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001913
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001914 // If the debugger is single-stepping one of our threads, check to
1915 // see if we're that thread and we've reached a step point.
Elliott Hughesf8349362012-06-18 15:00:06 -07001916 MutexLock mu(gBreakpointsLock);
Elliott Hughes86964332012-02-15 19:37:42 -08001917 if (gSingleStepControl.is_active && gSingleStepControl.thread == self) {
1918 CHECK(!m->IsNative());
1919 if (gSingleStepControl.step_depth == JDWP::SD_INTO) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001920 // Step into method calls. We break when the line number
1921 // or method pointer changes. If we're in SS_MIN mode, we
1922 // always stop.
Elliott Hughes86964332012-02-15 19:37:42 -08001923 if (gSingleStepControl.method != m) {
1924 event_flags |= kSingleStep;
1925 VLOG(jdwp) << "SS new method";
1926 } else if (gSingleStepControl.step_size == JDWP::SS_MIN) {
1927 event_flags |= kSingleStep;
1928 VLOG(jdwp) << "SS new instruction";
Elliott Hughes2435a572012-02-17 16:07:41 -08001929 } else if (gSingleStepControl.dex_pcs.find(dex_pc) == gSingleStepControl.dex_pcs.end()) {
1930 event_flags |= kSingleStep;
1931 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001932 }
Elliott Hughes86964332012-02-15 19:37:42 -08001933 } else if (gSingleStepControl.step_depth == JDWP::SD_OVER) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001934 // Step over method calls. We break when the line number is
1935 // different and the frame depth is <= the original frame
1936 // depth. (We can't just compare on the method, because we
1937 // might get unrolled past it by an exception, and it's tricky
1938 // to identify recursion.)
Elliott Hughes86964332012-02-15 19:37:42 -08001939
1940 // TODO: can we just use the value of 'sp'?
1941 int stack_depth = GetStackDepth(self);
1942
1943 if (stack_depth < gSingleStepControl.stack_depth) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001944 // popped up one or more frames, always trigger
Elliott Hughes86964332012-02-15 19:37:42 -08001945 event_flags |= kSingleStep;
1946 VLOG(jdwp) << "SS method pop";
1947 } else if (stack_depth == gSingleStepControl.stack_depth) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001948 // same depth, see if we moved
Elliott Hughes86964332012-02-15 19:37:42 -08001949 if (gSingleStepControl.step_size == JDWP::SS_MIN) {
1950 event_flags |= kSingleStep;
1951 VLOG(jdwp) << "SS new instruction";
Elliott Hughes2435a572012-02-17 16:07:41 -08001952 } else if (gSingleStepControl.dex_pcs.find(dex_pc) == gSingleStepControl.dex_pcs.end()) {
1953 event_flags |= kSingleStep;
1954 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001955 }
1956 }
1957 } else {
Elliott Hughes86964332012-02-15 19:37:42 -08001958 CHECK_EQ(gSingleStepControl.step_depth, JDWP::SD_OUT);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001959 // Return from the current method. We break when the frame
1960 // depth pops up.
1961
1962 // This differs from the "method exit" break in that it stops
1963 // with the PC at the next instruction in the returned-to
1964 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08001965
1966 // TODO: can we just use the value of 'sp'?
1967 int stack_depth = GetStackDepth(self);
1968 if (stack_depth < gSingleStepControl.stack_depth) {
1969 event_flags |= kSingleStep;
1970 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001971 }
1972 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001973 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001974
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001975 // Check to see if this is a "return" instruction. JDWP says we should
1976 // send the event *after* the code has been executed, but it also says
1977 // the location we provide is the last instruction. Since the "return"
1978 // instruction has no interesting side effects, we should be safe.
1979 // (We can't just move this down to the returnFromMethod label because
1980 // we potentially need to combine it with other events.)
1981 // We're also not supposed to generate a method exit event if the method
1982 // terminates "with a thrown exception".
Elliott Hughes86964332012-02-15 19:37:42 -08001983 if (dex_pc >= 0) {
1984 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
1985 CHECK(code_item != NULL);
1986 CHECK_LT(dex_pc, static_cast<int32_t>(code_item->insns_size_in_code_units_));
1987 if (Instruction::At(&code_item->insns_[dex_pc])->IsReturn()) {
1988 event_flags |= kMethodExit;
1989 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001990 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001991
1992 // If there's something interesting going on, see if it matches one
1993 // of the debugger filters.
1994 if (event_flags != 0) {
Ian Rogers0399dde2012-06-06 17:09:28 -07001995 Dbg::PostLocationEvent(m, dex_pc, GetThis(sp), event_flags);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001996 }
1997}
1998
Elliott Hughes86964332012-02-15 19:37:42 -08001999void Dbg::WatchLocation(const JDWP::JdwpLocation* location) {
2000 MutexLock mu(gBreakpointsLock);
Elliott Hughes74847412012-06-20 18:10:21 -07002001 Method* m = FromMethodId(location->method_id);
Elliott Hughes972a47b2012-02-21 18:16:06 -08002002 gBreakpoints.push_back(Breakpoint(m, location->dex_pc));
Elliott Hughes86964332012-02-15 19:37:42 -08002003 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " << gBreakpoints[gBreakpoints.size() - 1];
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002004}
2005
Elliott Hughes86964332012-02-15 19:37:42 -08002006void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location) {
2007 MutexLock mu(gBreakpointsLock);
Elliott Hughes74847412012-06-20 18:10:21 -07002008 Method* m = FromMethodId(location->method_id);
Elliott Hughes86964332012-02-15 19:37:42 -08002009 for (size_t i = 0; i < gBreakpoints.size(); ++i) {
Elliott Hughes972a47b2012-02-21 18:16:06 -08002010 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == location->dex_pc) {
Elliott Hughes86964332012-02-15 19:37:42 -08002011 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
2012 gBreakpoints.erase(gBreakpoints.begin() + i);
2013 return;
2014 }
2015 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002016}
2017
Elliott Hughes2435a572012-02-17 16:07:41 -08002018JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId threadId, JDWP::JdwpStepSize step_size, JDWP::JdwpStepDepth step_depth) {
Elliott Hughes86964332012-02-15 19:37:42 -08002019 Thread* thread = DecodeThread(threadId);
Elliott Hughes2435a572012-02-17 16:07:41 -08002020 if (thread == NULL) {
2021 return JDWP::ERR_INVALID_THREAD;
2022 }
Elliott Hughes86964332012-02-15 19:37:42 -08002023
Elliott Hughesf8349362012-06-18 15:00:06 -07002024 MutexLock mu(gBreakpointsLock);
2025
Elliott Hughes86964332012-02-15 19:37:42 -08002026 // TODO: there's no theoretical reason why we couldn't support single-stepping
2027 // of multiple threads at once, but we never did so historically.
2028 if (gSingleStepControl.thread != NULL && thread != gSingleStepControl.thread) {
2029 LOG(WARNING) << "single-step already active for " << *gSingleStepControl.thread
2030 << "; switching to " << *thread;
2031 }
2032
Elliott Hughes2435a572012-02-17 16:07:41 -08002033 //
2034 // Work out what Method* we're in, the current line number, and how deep the stack currently
2035 // is for step-out.
2036 //
2037
Ian Rogers0399dde2012-06-06 17:09:28 -07002038 struct SingleStepStackVisitor : public StackVisitor {
2039 SingleStepStackVisitor(const ManagedStack* stack,
2040 const std::vector<TraceStackFrame>* trace_stack) :
2041 StackVisitor(stack, trace_stack) {
Elliott Hughesf8349362012-06-18 15:00:06 -07002042 MutexLock mu(gBreakpointsLock); // Keep GCC happy.
Elliott Hughes86964332012-02-15 19:37:42 -08002043 gSingleStepControl.method = NULL;
2044 gSingleStepControl.stack_depth = 0;
2045 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002046 bool VisitFrame() {
Elliott Hughesf8349362012-06-18 15:00:06 -07002047 MutexLock mu(gBreakpointsLock); // Keep GCC happy.
Ian Rogers0399dde2012-06-06 17:09:28 -07002048 const Method* m = GetMethod();
2049 if (!m->IsRuntimeMethod()) {
Elliott Hughes86964332012-02-15 19:37:42 -08002050 ++gSingleStepControl.stack_depth;
2051 if (gSingleStepControl.method == NULL) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002052 const DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
2053 gSingleStepControl.method = m;
2054 gSingleStepControl.line_number = -1;
2055 if (dex_cache != NULL) {
2056 const DexFile& dex_file = Runtime::Current()->GetClassLinker()->FindDexFile(dex_cache);
Ian Rogers0399dde2012-06-06 17:09:28 -07002057 gSingleStepControl.line_number = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08002058 }
Elliott Hughes86964332012-02-15 19:37:42 -08002059 }
2060 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002061 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08002062 }
2063 };
Ian Rogers0399dde2012-06-06 17:09:28 -07002064 SingleStepStackVisitor visitor(thread->GetManagedStack(), thread->GetTraceStack());
2065 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08002066
Elliott Hughes2435a572012-02-17 16:07:41 -08002067 //
2068 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
2069 //
2070
2071 struct DebugCallbackContext {
2072 DebugCallbackContext() {
2073 last_pc_valid = false;
2074 last_pc = 0;
Elliott Hughes2435a572012-02-17 16:07:41 -08002075 }
2076
2077 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughesf8349362012-06-18 15:00:06 -07002078 MutexLock mu(gBreakpointsLock); // Keep GCC happy.
Elliott Hughes2435a572012-02-17 16:07:41 -08002079 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
2080 if (static_cast<int32_t>(line_number) == gSingleStepControl.line_number) {
2081 if (!context->last_pc_valid) {
2082 // Everything from this address until the next line change is ours.
2083 context->last_pc = address;
2084 context->last_pc_valid = true;
2085 }
2086 // Otherwise, if we're already in a valid range for this line,
2087 // just keep going (shouldn't really happen)...
2088 } else if (context->last_pc_valid) { // and the line number is new
2089 // Add everything from the last entry up until here to the set
2090 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
2091 gSingleStepControl.dex_pcs.insert(dex_pc);
2092 }
2093 context->last_pc_valid = false;
2094 }
2095 return false; // There may be multiple entries for any given line.
2096 }
2097
2098 ~DebugCallbackContext() {
Elliott Hughesf8349362012-06-18 15:00:06 -07002099 MutexLock mu(gBreakpointsLock); // Keep GCC happy.
Elliott Hughes2435a572012-02-17 16:07:41 -08002100 // If the line number was the last in the position table...
2101 if (last_pc_valid) {
2102 size_t end = MethodHelper(gSingleStepControl.method).GetCodeItem()->insns_size_in_code_units_;
2103 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
2104 gSingleStepControl.dex_pcs.insert(dex_pc);
2105 }
2106 }
2107 }
2108
2109 bool last_pc_valid;
2110 uint32_t last_pc;
2111 };
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08002112 gSingleStepControl.dex_pcs.clear();
Elliott Hughes2435a572012-02-17 16:07:41 -08002113 const Method* m = gSingleStepControl.method;
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08002114 if (m->IsNative()) {
2115 gSingleStepControl.line_number = -1;
2116 } else {
2117 DebugCallbackContext context;
2118 MethodHelper mh(m);
2119 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
2120 DebugCallbackContext::Callback, NULL, &context);
2121 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002122
2123 //
2124 // Everything else...
2125 //
2126
Elliott Hughes86964332012-02-15 19:37:42 -08002127 gSingleStepControl.thread = thread;
2128 gSingleStepControl.step_size = step_size;
2129 gSingleStepControl.step_depth = step_depth;
2130 gSingleStepControl.is_active = true;
2131
Elliott Hughes2435a572012-02-17 16:07:41 -08002132 if (VLOG_IS_ON(jdwp)) {
2133 VLOG(jdwp) << "Single-step thread: " << *gSingleStepControl.thread;
2134 VLOG(jdwp) << "Single-step step size: " << gSingleStepControl.step_size;
2135 VLOG(jdwp) << "Single-step step depth: " << gSingleStepControl.step_depth;
2136 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(gSingleStepControl.method);
2137 VLOG(jdwp) << "Single-step current line: " << gSingleStepControl.line_number;
2138 VLOG(jdwp) << "Single-step current stack depth: " << gSingleStepControl.stack_depth;
2139 VLOG(jdwp) << "Single-step dex_pc values:";
2140 for (std::set<uint32_t>::iterator it = gSingleStepControl.dex_pcs.begin() ; it != gSingleStepControl.dex_pcs.end(); ++it) {
Elliott Hughes229feb72012-02-23 13:33:29 -08002141 VLOG(jdwp) << StringPrintf(" %#x", *it);
Elliott Hughes2435a572012-02-17 16:07:41 -08002142 }
2143 }
2144
2145 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002146}
2147
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002148void Dbg::UnconfigureStep(JDWP::ObjectId /*threadId*/) {
Elliott Hughesf8349362012-06-18 15:00:06 -07002149 MutexLock mu(gBreakpointsLock);
2150
Elliott Hughes86964332012-02-15 19:37:42 -08002151 gSingleStepControl.is_active = false;
2152 gSingleStepControl.thread = NULL;
Elliott Hughes2435a572012-02-17 16:07:41 -08002153 gSingleStepControl.dex_pcs.clear();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002154}
2155
Elliott Hughes45651fd2012-02-21 15:48:20 -08002156static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
2157 switch (tag) {
2158 default:
2159 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
2160
2161 // Primitives.
2162 case JDWP::JT_BYTE: return 'B';
2163 case JDWP::JT_CHAR: return 'C';
2164 case JDWP::JT_FLOAT: return 'F';
2165 case JDWP::JT_DOUBLE: return 'D';
2166 case JDWP::JT_INT: return 'I';
2167 case JDWP::JT_LONG: return 'J';
2168 case JDWP::JT_SHORT: return 'S';
2169 case JDWP::JT_VOID: return 'V';
2170 case JDWP::JT_BOOLEAN: return 'Z';
2171
2172 // Reference types.
2173 case JDWP::JT_ARRAY:
2174 case JDWP::JT_OBJECT:
2175 case JDWP::JT_STRING:
2176 case JDWP::JT_THREAD:
2177 case JDWP::JT_THREAD_GROUP:
2178 case JDWP::JT_CLASS_LOADER:
2179 case JDWP::JT_CLASS_OBJECT:
2180 return 'L';
2181 }
2182}
2183
2184JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId threadId, JDWP::ObjectId objectId, JDWP::RefTypeId classId, JDWP::MethodId methodId, uint32_t arg_count, uint64_t* arg_values, JDWP::JdwpTag* arg_types, uint32_t options, JDWP::JdwpTag* pResultTag, uint64_t* pResultValue, JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08002185 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2186
2187 Thread* targetThread = NULL;
2188 DebugInvokeReq* req = NULL;
2189 {
2190 ScopedThreadListLock thread_list_lock;
2191 targetThread = DecodeThread(threadId);
2192 if (targetThread == NULL) {
2193 LOG(ERROR) << "InvokeMethod request for non-existent thread " << threadId;
2194 return JDWP::ERR_INVALID_THREAD;
2195 }
2196 req = targetThread->GetInvokeReq();
2197 if (!req->ready) {
2198 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
2199 return JDWP::ERR_INVALID_THREAD;
2200 }
2201
2202 /*
2203 * We currently have a bug where we don't successfully resume the
2204 * target thread if the suspend count is too deep. We're expected to
2205 * require one "resume" for each "suspend", but when asked to execute
2206 * a method we have to resume fully and then re-suspend it back to the
2207 * same level. (The easiest way to cause this is to type "suspend"
2208 * multiple times in jdb.)
2209 *
2210 * It's unclear what this means when the event specifies "resume all"
2211 * and some threads are suspended more deeply than others. This is
2212 * a rare problem, so for now we just prevent it from hanging forever
2213 * by rejecting the method invocation request. Without this, we will
2214 * be stuck waiting on a suspended thread.
2215 */
2216 int suspend_count = targetThread->GetSuspendCount();
2217 if (suspend_count > 1) {
2218 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
2219 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
2220 }
2221
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002222 JDWP::JdwpError status;
Elliott Hughes45651fd2012-02-21 15:48:20 -08002223 Object* receiver = gRegistry->Get<Object*>(objectId);
2224 if (receiver == kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002225 return JDWP::ERR_INVALID_OBJECT;
2226 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002227
2228 Object* thread = gRegistry->Get<Object*>(threadId);
2229 if (thread == kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002230 return JDWP::ERR_INVALID_OBJECT;
2231 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002232 // TODO: check that 'thread' is actually a java.lang.Thread!
2233
2234 Class* c = DecodeClass(classId, status);
2235 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002236 return status;
2237 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002238
2239 Method* m = FromMethodId(methodId);
2240 if (m->IsStatic() != (receiver == NULL)) {
2241 return JDWP::ERR_INVALID_METHODID;
2242 }
2243 if (m->IsStatic()) {
2244 if (m->GetDeclaringClass() != c) {
2245 return JDWP::ERR_INVALID_METHODID;
2246 }
2247 } else {
2248 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
2249 return JDWP::ERR_INVALID_METHODID;
2250 }
2251 }
2252
2253 // Check the argument list matches the method.
2254 MethodHelper mh(m);
2255 if (mh.GetShortyLength() - 1 != arg_count) {
2256 return JDWP::ERR_ILLEGAL_ARGUMENT;
2257 }
2258 const char* shorty = mh.GetShorty();
2259 for (size_t i = 0; i < arg_count; ++i) {
2260 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
2261 return JDWP::ERR_ILLEGAL_ARGUMENT;
2262 }
2263 }
2264
2265 req->receiver_ = receiver;
2266 req->thread_ = thread;
2267 req->class_ = c;
2268 req->method_ = m;
2269 req->arg_count_ = arg_count;
2270 req->arg_values_ = arg_values;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002271 req->options_ = options;
2272 req->invoke_needed_ = true;
2273 }
2274
2275 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
2276 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
2277 // call, and it's unwise to hold it during WaitForSuspend.
2278
2279 {
2280 /*
2281 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07002282 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08002283 * run out of memory. It's also a good idea to change it before locking
2284 * the invokeReq mutex, although that should never be held for long.
2285 */
Elliott Hughes34e06962012-04-09 13:55:55 -07002286 ScopedThreadStateChange tsc(Thread::Current(), kVmWait);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002287
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002288 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002289 {
2290 MutexLock mu(req->lock_);
2291
2292 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002293 VLOG(jdwp) << " Resuming all threads";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002294 thread_list->ResumeAll(true);
2295 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002296 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002297 thread_list->Resume(targetThread, true);
2298 }
2299
2300 // Wait for the request to finish executing.
2301 while (req->invoke_needed_) {
2302 req->cond_.Wait(req->lock_);
2303 }
2304 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002305 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002306
2307 /* wait for thread to re-suspend itself */
2308 targetThread->WaitUntilSuspended();
2309 //dvmWaitForSuspend(targetThread);
2310 }
2311
2312 /*
2313 * Suspend the threads. We waited for the target thread to suspend
2314 * itself, so all we need to do is suspend the others.
2315 *
2316 * The suspendAllThreads() call will double-suspend the event thread,
2317 * so we want to resume the target thread once to keep the books straight.
2318 */
2319 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002320 VLOG(jdwp) << " Suspending all threads";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002321 thread_list->SuspendAll(true);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002322 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002323 thread_list->Resume(targetThread, true);
2324 }
2325
2326 // Copy the result.
2327 *pResultTag = req->result_tag;
2328 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002329 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002330 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002331 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002332 }
2333 *pExceptionId = req->exception;
2334 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002335}
2336
2337void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08002338 Thread* self = Thread::Current();
2339
Elliott Hughes81ff3182012-03-23 20:35:56 -07002340 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08002341 // to preserve that across the method invocation.
2342 SirtRef<Throwable> old_exception(self->GetException());
2343 self->ClearException();
2344
Elliott Hughes34e06962012-04-09 13:55:55 -07002345 ScopedThreadStateChange tsc(self, kRunnable);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002346
2347 // Translate the method through the vtable, unless the debugger wants to suppress it.
2348 Method* m = pReq->method_;
2349 if ((pReq->options_ & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver_ != NULL) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08002350 Method* actual_method = pReq->class_->FindVirtualMethodForVirtualOrInterface(pReq->method_);
2351 if (actual_method != m) {
2352 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m) << " to " << PrettyMethod(actual_method);
2353 m = actual_method;
2354 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08002355 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002356 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002357 CHECK(m != NULL);
2358
2359 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
2360
Elliott Hughes45651fd2012-02-21 15:48:20 -08002361 LOG(INFO) << "self=" << self << " pReq->receiver_=" << pReq->receiver_ << " m=" << m << " #" << pReq->arg_count_ << " " << pReq->arg_values_;
2362 pReq->result_value = InvokeWithJValues(self, pReq->receiver_, m, reinterpret_cast<JValue*>(pReq->arg_values_));
Elliott Hughesd07986f2011-12-06 18:27:45 -08002363
2364 pReq->exception = gRegistry->Add(self->GetException());
2365 pReq->result_tag = BasicTagFromDescriptor(MethodHelper(m).GetShorty());
2366 if (pReq->exception != 0) {
2367 Object* exc = self->GetException();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002368 VLOG(jdwp) << " JDWP invocation returning with exception=" << exc << " " << PrettyTypeOf(exc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002369 self->ClearException();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002370 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002371 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
2372 /* if no exception thrown, examine object result more closely */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002373 JDWP::JdwpTag new_tag = TagFromObject(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002374 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002375 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002376 pReq->result_tag = new_tag;
2377 }
2378
2379 /*
2380 * Register the object. We don't actually need an ObjectId yet,
2381 * but we do need to be sure that the GC won't move or discard the
2382 * object when we switch out of RUNNING. The ObjectId conversion
2383 * will add the object to the "do not touch" list.
2384 *
2385 * We can't use the "tracked allocation" mechanism here because
2386 * the object is going to be handed off to a different thread.
2387 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002388 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002389 }
2390
2391 if (old_exception.get() != NULL) {
2392 self->SetException(old_exception.get());
2393 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002394}
2395
Elliott Hughesd07986f2011-12-06 18:27:45 -08002396/*
2397 * Register an object ID that might not have been registered previously.
2398 *
2399 * Normally this wouldn't happen -- the conversion to an ObjectId would
2400 * have added the object to the registry -- but in some cases (e.g.
2401 * throwing exceptions) we really want to do the registration late.
2402 */
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002403void Dbg::RegisterObjectId(JDWP::ObjectId id) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08002404 gRegistry->Add(reinterpret_cast<Object*>(id));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002405}
2406
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002407/*
2408 * "buf" contains a full JDWP packet, possibly with multiple chunks. We
2409 * need to process each, accumulate the replies, and ship the whole thing
2410 * back.
2411 *
2412 * Returns "true" if we have a reply. The reply buffer is newly allocated,
2413 * and includes the chunk type/length, followed by the data.
2414 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002415 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002416 * chunk. If this becomes inconvenient we will need to adapt.
2417 */
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002418bool Dbg::DdmHandlePacket(const uint8_t* buf, int dataLen, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002419 CHECK_GE(dataLen, 0);
2420
2421 Thread* self = Thread::Current();
2422 JNIEnv* env = self->GetJniEnv();
2423
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002424 // Create a byte[] corresponding to 'buf'.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002425 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(dataLen));
2426 if (dataArray.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002427 LOG(WARNING) << "byte[] allocation failed: " << dataLen;
2428 env->ExceptionClear();
2429 return false;
2430 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002431 env->SetByteArrayRegion(dataArray.get(), 0, dataLen, reinterpret_cast<const jbyte*>(buf));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002432
2433 const int kChunkHdrLen = 8;
2434
2435 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002436 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughesf7c3b662011-10-27 12:04:56 -07002437 jint type = JDWP::Get4BE(reinterpret_cast<const uint8_t*>(&contents[0]));
2438 jint length = JDWP::Get4BE(reinterpret_cast<const uint8_t*>(&contents[4]));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002439 jint offset = kChunkHdrLen;
2440 if (offset + length > dataLen) {
2441 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%d)", length, dataLen);
2442 return false;
2443 }
2444
2445 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07002446 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
2447 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
2448 type, dataArray.get(), offset, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002449 if (env->ExceptionCheck()) {
2450 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
2451 env->ExceptionDescribe();
2452 env->ExceptionClear();
2453 return false;
2454 }
2455
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002456 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002457 return false;
2458 }
2459
2460 /*
2461 * Pull the pieces out of the chunk. We copy the results into a
2462 * newly-allocated buffer that the caller can free. We don't want to
2463 * continue using the Chunk object because nothing has a reference to it.
2464 *
2465 * We could avoid this by returning type/data/offset/length and having
2466 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07002467 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002468 * if we have responses for multiple chunks.
2469 *
2470 * So we're pretty much stuck with copying data around multiple times.
2471 */
Elliott Hugheseac76672012-05-24 21:56:51 -07002472 ScopedLocalRef<jbyteArray> replyData(env, reinterpret_cast<jbyteArray>(env->GetObjectField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_data)));
2473 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
2474 offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
2475 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002476
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002477 VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d", type, replyData.get(), offset, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002478 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002479 return false;
2480 }
2481
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002482 jsize replyLength = env->GetArrayLength(replyData.get());
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002483 if (offset + length > replyLength) {
2484 LOG(WARNING) << StringPrintf("chunk off=%d len=%d exceeds reply array len %d", offset, length, replyLength);
2485 return false;
2486 }
2487
2488 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
2489 if (reply == NULL) {
2490 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
2491 return false;
2492 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07002493 JDWP::Set4BE(reply + 0, type);
2494 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002495 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002496
2497 *pReplyBuf = reply;
2498 *pReplyLen = length + kChunkHdrLen;
2499
Elliott Hughesba8eee12012-01-24 20:25:24 -08002500 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s buf=%p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002501 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002502}
2503
Elliott Hughesa2155262011-11-16 16:26:58 -08002504void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002505 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07002506
2507 Thread* self = Thread::Current();
Elliott Hughes34e06962012-04-09 13:55:55 -07002508 if (self->GetState() != kRunnable) {
Elliott Hughes47fce012011-10-25 18:37:19 -07002509 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
2510 /* try anyway? */
2511 }
2512
2513 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07002514 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07002515 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
2516 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
2517 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07002518 if (env->ExceptionCheck()) {
2519 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
2520 env->ExceptionDescribe();
2521 env->ExceptionClear();
2522 }
2523}
2524
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002525void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08002526 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002527}
2528
2529void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08002530 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07002531 gDdmThreadNotification = false;
2532}
2533
2534/*
Elliott Hughes82188472011-11-07 18:11:48 -08002535 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07002536 *
2537 * Because we broadcast the full set of threads when the notifications are
2538 * first enabled, it's possible for "thread" to be actively executing.
2539 */
Elliott Hughes82188472011-11-07 18:11:48 -08002540void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07002541 if (!gDdmThreadNotification) {
2542 return;
2543 }
2544
Elliott Hughes82188472011-11-07 18:11:48 -08002545 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07002546 uint8_t buf[4];
Elliott Hughesf7c3b662011-10-27 12:04:56 -07002547 JDWP::Set4BE(&buf[0], t->GetThinLockId());
Elliott Hughes47fce012011-10-25 18:37:19 -07002548 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08002549 } else {
2550 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Elliott Hughes899e7892012-01-24 14:57:32 -08002551 SirtRef<String> name(t->GetThreadName());
Elliott Hughes82188472011-11-07 18:11:48 -08002552 size_t char_count = (name.get() != NULL) ? name->GetLength() : 0;
2553 const jchar* chars = name->GetCharArray()->GetData();
2554
Elliott Hughes21f32d72011-11-09 17:44:13 -08002555 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08002556 JDWP::Append4BE(bytes, t->GetThinLockId());
2557 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08002558 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
2559 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07002560 }
2561}
2562
Elliott Hughesa2155262011-11-16 16:26:58 -08002563static void DdmSendThreadStartCallback(Thread* t, void*) {
Elliott Hughes82188472011-11-07 18:11:48 -08002564 Dbg::DdmSendThreadNotification(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07002565}
2566
2567void Dbg::DdmSetThreadNotification(bool enable) {
2568 // We lock the thread list to avoid sending duplicate events or missing
2569 // a thread change. We should be okay holding this lock while sending
2570 // the messages out. (We have to hold it while accessing a live thread.)
Elliott Hughesbbd9d832011-11-07 14:40:00 -08002571 ScopedThreadListLock thread_list_lock;
Elliott Hughes47fce012011-10-25 18:37:19 -07002572
2573 gDdmThreadNotification = enable;
2574 if (enable) {
Elliott Hughesbfe487b2011-10-26 15:48:55 -07002575 Runtime::Current()->GetThreadList()->ForEach(DdmSendThreadStartCallback, NULL);
Elliott Hughes47fce012011-10-25 18:37:19 -07002576 }
2577}
2578
Elliott Hughesa2155262011-11-16 16:26:58 -08002579void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002580 if (IsDebuggerActive()) {
Elliott Hughes47fce012011-10-25 18:37:19 -07002581 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08002582 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughesc0f09332012-03-26 13:27:06 -07002583 // If this thread's just joined the party while we're already debugging, make sure it knows
2584 // to give us updates when it's running.
2585 t->SetDebuggerUpdatesEnabled(true);
Elliott Hughes47fce012011-10-25 18:37:19 -07002586 }
Elliott Hughes82188472011-11-07 18:11:48 -08002587 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07002588}
2589
2590void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08002591 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07002592}
2593
2594void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08002595 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002596}
2597
Elliott Hughes82188472011-11-07 18:11:48 -08002598void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07002599 CHECK(buf != NULL);
2600 iovec vec[1];
2601 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
2602 vec[0].iov_len = byte_count;
2603 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002604}
2605
Elliott Hughes21f32d72011-11-09 17:44:13 -08002606void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
2607 DdmSendChunk(type, bytes.size(), &bytes[0]);
2608}
2609
Elliott Hughescccd84f2011-12-05 16:51:54 -08002610void Dbg::DdmSendChunkV(uint32_t type, const struct iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07002611 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002612 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07002613 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08002614 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07002615 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002616}
2617
Elliott Hughes767a1472011-10-26 18:49:02 -07002618int Dbg::DdmHandleHpifChunk(HpifWhen when) {
2619 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07002620 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07002621 return true;
2622 }
2623
2624 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
2625 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
2626 return false;
2627 }
2628
2629 gDdmHpifWhen = when;
2630 return true;
2631}
2632
2633bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
2634 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
2635 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
2636 return false;
2637 }
2638
2639 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
2640 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
2641 return false;
2642 }
2643
2644 if (native) {
2645 gDdmNhsgWhen = when;
2646 gDdmNhsgWhat = what;
2647 } else {
2648 gDdmHpsgWhen = when;
2649 gDdmHpsgWhat = what;
2650 }
2651 return true;
2652}
2653
Elliott Hughes7162ad92011-10-27 14:08:42 -07002654void Dbg::DdmSendHeapInfo(HpifWhen reason) {
2655 // If there's a one-shot 'when', reset it.
2656 if (reason == gDdmHpifWhen) {
2657 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
2658 gDdmHpifWhen = HPIF_WHEN_NEVER;
2659 }
2660 }
2661
2662 /*
2663 * Chunk HPIF (client --> server)
2664 *
2665 * Heap Info. General information about the heap,
2666 * suitable for a summary display.
2667 *
2668 * [u4]: number of heaps
2669 *
2670 * For each heap:
2671 * [u4]: heap ID
2672 * [u8]: timestamp in ms since Unix epoch
2673 * [u1]: capture reason (same as 'when' value from server)
2674 * [u4]: max heap size in bytes (-Xmx)
2675 * [u4]: current heap size in bytes
2676 * [u4]: current number of bytes allocated
2677 * [u4]: current number of objects allocated
2678 */
2679 uint8_t heap_count = 1;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002680 Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08002681 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08002682 JDWP::Append4BE(bytes, heap_count);
2683 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
2684 JDWP::Append8BE(bytes, MilliTime());
2685 JDWP::Append1BE(bytes, reason);
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002686 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
2687 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
2688 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
2689 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08002690 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
2691 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07002692}
2693
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002694enum HpsgSolidity {
2695 SOLIDITY_FREE = 0,
2696 SOLIDITY_HARD = 1,
2697 SOLIDITY_SOFT = 2,
2698 SOLIDITY_WEAK = 3,
2699 SOLIDITY_PHANTOM = 4,
2700 SOLIDITY_FINALIZABLE = 5,
2701 SOLIDITY_SWEEP = 6,
2702};
2703
2704enum HpsgKind {
2705 KIND_OBJECT = 0,
2706 KIND_CLASS_OBJECT = 1,
2707 KIND_ARRAY_1 = 2,
2708 KIND_ARRAY_2 = 3,
2709 KIND_ARRAY_4 = 4,
2710 KIND_ARRAY_8 = 5,
2711 KIND_UNKNOWN = 6,
2712 KIND_NATIVE = 7,
2713};
2714
2715#define HPSG_PARTIAL (1<<7)
2716#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
2717
Ian Rogers30fab402012-01-23 15:43:46 -08002718class HeapChunkContext {
2719 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002720 // Maximum chunk size. Obtain this from the formula:
2721 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
2722 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08002723 : buf_(16384 - 16),
2724 type_(0),
2725 merge_(merge) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002726 Reset();
2727 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08002728 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002729 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08002730 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002731 }
2732 }
2733
2734 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08002735 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002736 Flush();
2737 }
2738 }
2739
2740 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08002741 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002742 return;
2743 }
2744
2745 // Start a new HPSx chunk.
Ian Rogers30fab402012-01-23 15:43:46 -08002746 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
2747 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002748
Ian Rogers30fab402012-01-23 15:43:46 -08002749 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
2750 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002751 // [u4]: length of piece, in allocation units
2752 // We won't know this until we're done, so save the offset and stuff in a dummy value.
Ian Rogers30fab402012-01-23 15:43:46 -08002753 pieceLenField_ = p_;
2754 JDWP::Write4BE(&p_, 0x55555555);
2755 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002756 }
2757
2758 void Flush() {
2759 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08002760 CHECK_LE(&buf_[0], pieceLenField_);
2761 CHECK_LE(pieceLenField_, p_);
2762 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002763
Ian Rogers30fab402012-01-23 15:43:46 -08002764 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002765 Reset();
2766 }
2767
Ian Rogers30fab402012-01-23 15:43:46 -08002768 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg) {
2769 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08002770 }
2771
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002772 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08002773 enum { ALLOCATION_UNIT_SIZE = 8 };
2774
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002775 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08002776 p_ = &buf_[0];
2777 totalAllocationUnits_ = 0;
2778 needHeader_ = true;
2779 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002780 }
2781
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002782 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes) {
Ian Rogers30fab402012-01-23 15:43:46 -08002783 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
2784 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
2785
Elliott Hughes741c9fa2012-06-08 15:51:32 -07002786 void* user_ptr = used_bytes > 0 ? start : NULL;
2787 size_t chunk_len = mspace_usable_size(user_ptr);
Ian Rogers30fab402012-01-23 15:43:46 -08002788
Elliott Hughes741c9fa2012-06-08 15:51:32 -07002789 // Make sure there's enough room left in the buffer.
2790 // We need to use two bytes for every fractional 256 allocation units used by the chunk.
Elliott Hughesa2155262011-11-16 16:26:58 -08002791 {
2792 size_t needed = (((chunk_len/ALLOCATION_UNIT_SIZE + 255) / 256) * 2);
Ian Rogers30fab402012-01-23 15:43:46 -08002793 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
Elliott Hughesa2155262011-11-16 16:26:58 -08002794 if (bytesLeft < needed) {
2795 Flush();
2796 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002797
Ian Rogers30fab402012-01-23 15:43:46 -08002798 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
Elliott Hughesa2155262011-11-16 16:26:58 -08002799 if (bytesLeft < needed) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002800 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << chunk_len << ", " << needed << " bytes)";
Elliott Hughesa2155262011-11-16 16:26:58 -08002801 return;
2802 }
2803 }
2804
2805 // OLD-TODO: notice when there's a gap and start a new heap, or at least a new range.
Elliott Hughes741c9fa2012-06-08 15:51:32 -07002806 EnsureHeader(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08002807
2808 // Determine the type of this chunk.
2809 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
2810 // If it's the same, we should combine them.
Ian Rogers30fab402012-01-23 15:43:46 -08002811 uint8_t state = ExamineObject(reinterpret_cast<const Object*>(user_ptr), (type_ == CHUNK_TYPE("NHSG")));
Elliott Hughesa2155262011-11-16 16:26:58 -08002812
2813 // Write out the chunk description.
2814 chunk_len /= ALLOCATION_UNIT_SIZE; // convert to allocation units
Ian Rogers30fab402012-01-23 15:43:46 -08002815 totalAllocationUnits_ += chunk_len;
Elliott Hughesa2155262011-11-16 16:26:58 -08002816 while (chunk_len > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08002817 *p_++ = state | HPSG_PARTIAL;
2818 *p_++ = 255; // length - 1
Elliott Hughesa2155262011-11-16 16:26:58 -08002819 chunk_len -= 256;
2820 }
Ian Rogers30fab402012-01-23 15:43:46 -08002821 *p_++ = state;
2822 *p_++ = chunk_len - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002823 }
2824
Elliott Hughesa2155262011-11-16 16:26:58 -08002825 uint8_t ExamineObject(const Object* o, bool is_native_heap) {
2826 if (o == NULL) {
2827 return HPSG_STATE(SOLIDITY_FREE, 0);
2828 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002829
Elliott Hughesa2155262011-11-16 16:26:58 -08002830 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002831
Elliott Hughesa2155262011-11-16 16:26:58 -08002832 // If we're looking at the native heap, we'll just return
2833 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002834 if (is_native_heap || !Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Elliott Hughesa2155262011-11-16 16:26:58 -08002835 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
2836 }
2837
2838 Class* c = o->GetClass();
2839 if (c == NULL) {
2840 // The object was probably just created but hasn't been initialized yet.
2841 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
2842 }
2843
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002844 if (!Runtime::Current()->GetHeap()->IsHeapAddress(c)) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002845 LOG(WARNING) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08002846 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
2847 }
2848
2849 if (c->IsClassClass()) {
2850 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
2851 }
2852
2853 if (c->IsArrayClass()) {
2854 if (o->IsObjectArray()) {
2855 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
2856 }
2857 switch (c->GetComponentSize()) {
2858 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
2859 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
2860 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
2861 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
2862 }
2863 }
2864
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002865 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
2866 }
2867
Ian Rogers30fab402012-01-23 15:43:46 -08002868 std::vector<uint8_t> buf_;
2869 uint8_t* p_;
2870 uint8_t* pieceLenField_;
2871 size_t totalAllocationUnits_;
2872 uint32_t type_;
2873 bool merge_;
2874 bool needHeader_;
2875
Elliott Hughesa2155262011-11-16 16:26:58 -08002876 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
2877};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002878
2879void Dbg::DdmSendHeapSegments(bool native) {
2880 Dbg::HpsgWhen when;
2881 Dbg::HpsgWhat what;
2882 if (!native) {
2883 when = gDdmHpsgWhen;
2884 what = gDdmHpsgWhat;
2885 } else {
2886 when = gDdmNhsgWhen;
2887 what = gDdmNhsgWhat;
2888 }
2889 if (when == HPSG_WHEN_NEVER) {
2890 return;
2891 }
2892
2893 // Figure out what kind of chunks we'll be sending.
2894 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
2895
2896 // First, send a heap start chunk.
2897 uint8_t heap_id[4];
2898 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
2899 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
2900
2901 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08002902 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
2903 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08002904 // TODO: enable when bionic has moved to dlmalloc 2.8.5
2905 // dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
2906 UNIMPLEMENTED(WARNING) << "Native heap send heap segments";
Elliott Hughesa2155262011-11-16 16:26:58 -08002907 } else {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002908 Heap* heap = Runtime::Current()->GetHeap();
2909 heap->GetAllocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08002910 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002911
2912 // Finally, send a heap end chunk.
2913 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07002914}
2915
Elliott Hughes545a0642011-11-08 19:10:03 -08002916void Dbg::SetAllocTrackingEnabled(bool enabled) {
2917 MutexLock mu(gAllocTrackerLock);
2918 if (enabled) {
2919 if (recent_allocation_records_ == NULL) {
2920 LOG(INFO) << "Enabling alloc tracker (" << kNumAllocRecords << " entries, "
2921 << kMaxAllocRecordStackDepth << " frames --> "
2922 << (sizeof(AllocRecord) * kNumAllocRecords) << " bytes)";
2923 gAllocRecordHead = gAllocRecordCount = 0;
2924 recent_allocation_records_ = new AllocRecord[kNumAllocRecords];
2925 CHECK(recent_allocation_records_ != NULL);
2926 }
2927 } else {
2928 delete[] recent_allocation_records_;
2929 recent_allocation_records_ = NULL;
2930 }
2931}
2932
Ian Rogers0399dde2012-06-06 17:09:28 -07002933struct AllocRecordStackVisitor : public StackVisitor {
2934 AllocRecordStackVisitor(const ManagedStack* stack,
2935 const std::vector<TraceStackFrame>* trace_stack, AllocRecord* record) :
2936 StackVisitor(stack, trace_stack), record(record), depth(0) {
Elliott Hughes545a0642011-11-08 19:10:03 -08002937 }
2938
Ian Rogers0399dde2012-06-06 17:09:28 -07002939 bool VisitFrame() {
Elliott Hughes545a0642011-11-08 19:10:03 -08002940 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002941 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08002942 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002943 Method* m = GetMethod();
2944 if (!m->IsRuntimeMethod()) {
2945 record->stack[depth].method = m;
2946 record->stack[depth].dex_pc = GetDexPc();
Elliott Hughes530fa002012-03-12 11:44:49 -07002947 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08002948 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002949 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08002950 }
2951
2952 ~AllocRecordStackVisitor() {
2953 // Clear out any unused stack trace elements.
2954 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
2955 record->stack[depth].method = NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -07002956 record->stack[depth].dex_pc = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08002957 }
2958 }
2959
2960 AllocRecord* record;
2961 size_t depth;
2962};
2963
2964void Dbg::RecordAllocation(Class* type, size_t byte_count) {
2965 Thread* self = Thread::Current();
2966 CHECK(self != NULL);
2967
2968 MutexLock mu(gAllocTrackerLock);
2969 if (recent_allocation_records_ == NULL) {
2970 return;
2971 }
2972
2973 // Advance and clip.
2974 if (++gAllocRecordHead == kNumAllocRecords) {
2975 gAllocRecordHead = 0;
2976 }
2977
2978 // Fill in the basics.
2979 AllocRecord* record = &recent_allocation_records_[gAllocRecordHead];
2980 record->type = type;
2981 record->byte_count = byte_count;
2982 record->thin_lock_id = self->GetThinLockId();
2983
2984 // Fill in the stack trace.
Ian Rogers0399dde2012-06-06 17:09:28 -07002985 AllocRecordStackVisitor visitor(self->GetManagedStack(), self->GetTraceStack(), record);
2986 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08002987
2988 if (gAllocRecordCount < kNumAllocRecords) {
2989 ++gAllocRecordCount;
2990 }
2991}
2992
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07002993// Returns the index of the head element.
2994//
2995// We point at the most-recently-written record, so if gAllocRecordCount is 1
2996// we want to use the current element. Take "head+1" and subtract count
2997// from it.
2998//
2999// We need to handle underflow in our circular buffer, so we add
3000// kNumAllocRecords and then mask it back down.
Elliott Hughesf8349362012-06-18 15:00:06 -07003001static inline int HeadIndex() EXCLUSIVE_LOCKS_REQUIRED(gAllocTrackerLock) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003002 return (gAllocRecordHead+1 + kNumAllocRecords - gAllocRecordCount) & (kNumAllocRecords-1);
3003}
3004
3005void Dbg::DumpRecentAllocations() {
3006 MutexLock mu(gAllocTrackerLock);
3007 if (recent_allocation_records_ == NULL) {
3008 LOG(INFO) << "Not recording tracked allocations";
3009 return;
3010 }
3011
3012 // "i" is the head of the list. We want to start at the end of the
3013 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003014 size_t i = HeadIndex();
Elliott Hughes545a0642011-11-08 19:10:03 -08003015 size_t count = gAllocRecordCount;
3016
3017 LOG(INFO) << "Tracked allocations, (head=" << gAllocRecordHead << " count=" << count << ")";
3018 while (count--) {
3019 AllocRecord* record = &recent_allocation_records_[i];
3020
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003021 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->thin_lock_id, record->byte_count)
Elliott Hughes545a0642011-11-08 19:10:03 -08003022 << PrettyClass(record->type);
3023
3024 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
3025 const Method* m = record->stack[stack_frame].method;
3026 if (m == NULL) {
3027 break;
3028 }
3029 LOG(INFO) << " " << PrettyMethod(m) << " line " << record->stack[stack_frame].LineNumber();
3030 }
3031
3032 // pause periodically to help logcat catch up
3033 if ((count % 5) == 0) {
3034 usleep(40000);
3035 }
3036
3037 i = (i + 1) & (kNumAllocRecords-1);
3038 }
3039}
3040
3041class StringTable {
3042 public:
3043 StringTable() {
3044 }
3045
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003046 void Add(const char* s) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003047 table_.insert(s);
3048 }
3049
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003050 size_t IndexOf(const char* s) const {
3051 typedef std::set<std::string>::const_iterator It; // TODO: C++0x auto
3052 It it = table_.find(s);
3053 if (it == table_.end()) {
3054 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
3055 }
3056 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08003057 }
3058
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003059 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08003060 return table_.size();
3061 }
3062
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003063 void WriteTo(std::vector<uint8_t>& bytes) const {
3064 typedef std::set<std::string>::const_iterator It; // TODO: C++0x auto
Elliott Hughes545a0642011-11-08 19:10:03 -08003065 for (It it = table_.begin(); it != table_.end(); ++it) {
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003066 const char* s = (*it).c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003067 size_t s_len = CountModifiedUtf8Chars(s);
3068 UniquePtr<uint16_t> s_utf16(new uint16_t[s_len]);
3069 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
3070 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08003071 }
3072 }
3073
3074 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003075 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003076 DISALLOW_COPY_AND_ASSIGN(StringTable);
3077};
3078
3079/*
3080 * The data we send to DDMS contains everything we have recorded.
3081 *
3082 * Message header (all values big-endian):
3083 * (1b) message header len (to allow future expansion); includes itself
3084 * (1b) entry header len
3085 * (1b) stack frame len
3086 * (2b) number of entries
3087 * (4b) offset to string table from start of message
3088 * (2b) number of class name strings
3089 * (2b) number of method name strings
3090 * (2b) number of source file name strings
3091 * For each entry:
3092 * (4b) total allocation size
3093 * (2b) threadId
3094 * (2b) allocated object's class name index
3095 * (1b) stack depth
3096 * For each stack frame:
3097 * (2b) method's class name
3098 * (2b) method name
3099 * (2b) method source file
3100 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
3101 * (xb) class name strings
3102 * (xb) method name strings
3103 * (xb) source file strings
3104 *
3105 * As with other DDM traffic, strings are sent as a 4-byte length
3106 * followed by UTF-16 data.
3107 *
3108 * We send up 16-bit unsigned indexes into string tables. In theory there
3109 * can be (kMaxAllocRecordStackDepth * kNumAllocRecords) unique strings in
3110 * each table, but in practice there should be far fewer.
3111 *
3112 * The chief reason for using a string table here is to keep the size of
3113 * the DDMS message to a minimum. This is partly to make the protocol
3114 * efficient, but also because we have to form the whole thing up all at
3115 * once in a memory buffer.
3116 *
3117 * We use separate string tables for class names, method names, and source
3118 * files to keep the indexes small. There will generally be no overlap
3119 * between the contents of these tables.
3120 */
3121jbyteArray Dbg::GetRecentAllocations() {
3122 if (false) {
3123 DumpRecentAllocations();
3124 }
3125
3126 MutexLock mu(gAllocTrackerLock);
3127
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003128 //
3129 // Part 1: generate string tables.
3130 //
Elliott Hughes545a0642011-11-08 19:10:03 -08003131 StringTable class_names;
3132 StringTable method_names;
3133 StringTable filenames;
3134
3135 int count = gAllocRecordCount;
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003136 int idx = HeadIndex();
Elliott Hughes545a0642011-11-08 19:10:03 -08003137 while (count--) {
3138 AllocRecord* record = &recent_allocation_records_[idx];
3139
Elliott Hughes91250e02011-12-13 22:30:35 -08003140 class_names.Add(ClassHelper(record->type).GetDescriptor());
Elliott Hughes545a0642011-11-08 19:10:03 -08003141
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003142 MethodHelper mh;
Elliott Hughes545a0642011-11-08 19:10:03 -08003143 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003144 Method* m = record->stack[i].method;
Elliott Hughes545a0642011-11-08 19:10:03 -08003145 if (m != NULL) {
Ian Rogersba377812012-05-28 21:16:29 -07003146 mh.ChangeMethod(m);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003147 class_names.Add(mh.GetDeclaringClassDescriptor());
3148 method_names.Add(mh.GetName());
3149 filenames.Add(mh.GetDeclaringClassSourceFile());
Elliott Hughes545a0642011-11-08 19:10:03 -08003150 }
3151 }
3152
3153 idx = (idx + 1) & (kNumAllocRecords-1);
3154 }
3155
3156 LOG(INFO) << "allocation records: " << gAllocRecordCount;
3157
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003158 //
3159 // Part 2: allocate a buffer and generate the output.
3160 //
Elliott Hughes545a0642011-11-08 19:10:03 -08003161 std::vector<uint8_t> bytes;
3162
3163 // (1b) message header len (to allow future expansion); includes itself
3164 // (1b) entry header len
3165 // (1b) stack frame len
3166 const int kMessageHeaderLen = 15;
3167 const int kEntryHeaderLen = 9;
3168 const int kStackFrameLen = 8;
3169 JDWP::Append1BE(bytes, kMessageHeaderLen);
3170 JDWP::Append1BE(bytes, kEntryHeaderLen);
3171 JDWP::Append1BE(bytes, kStackFrameLen);
3172
3173 // (2b) number of entries
3174 // (4b) offset to string table from start of message
3175 // (2b) number of class name strings
3176 // (2b) number of method name strings
3177 // (2b) number of source file name strings
3178 JDWP::Append2BE(bytes, gAllocRecordCount);
3179 size_t string_table_offset = bytes.size();
3180 JDWP::Append4BE(bytes, 0); // We'll patch this later...
3181 JDWP::Append2BE(bytes, class_names.Size());
3182 JDWP::Append2BE(bytes, method_names.Size());
3183 JDWP::Append2BE(bytes, filenames.Size());
3184
3185 count = gAllocRecordCount;
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003186 idx = HeadIndex();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003187 ClassHelper kh;
Elliott Hughes545a0642011-11-08 19:10:03 -08003188 while (count--) {
3189 // For each entry:
3190 // (4b) total allocation size
3191 // (2b) thread id
3192 // (2b) allocated object's class name index
3193 // (1b) stack depth
3194 AllocRecord* record = &recent_allocation_records_[idx];
3195 size_t stack_depth = record->GetDepth();
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003196 kh.ChangeClass(record->type);
3197 size_t allocated_object_class_name_index = class_names.IndexOf(kh.GetDescriptor());
Elliott Hughes545a0642011-11-08 19:10:03 -08003198 JDWP::Append4BE(bytes, record->byte_count);
3199 JDWP::Append2BE(bytes, record->thin_lock_id);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003200 JDWP::Append2BE(bytes, allocated_object_class_name_index);
Elliott Hughes545a0642011-11-08 19:10:03 -08003201 JDWP::Append1BE(bytes, stack_depth);
3202
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003203 MethodHelper mh;
Elliott Hughes545a0642011-11-08 19:10:03 -08003204 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
3205 // For each stack frame:
3206 // (2b) method's class name
3207 // (2b) method name
3208 // (2b) method source file
3209 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003210 mh.ChangeMethod(record->stack[stack_frame].method);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003211 size_t class_name_index = class_names.IndexOf(mh.GetDeclaringClassDescriptor());
3212 size_t method_name_index = method_names.IndexOf(mh.GetName());
3213 size_t file_name_index = filenames.IndexOf(mh.GetDeclaringClassSourceFile());
3214 JDWP::Append2BE(bytes, class_name_index);
3215 JDWP::Append2BE(bytes, method_name_index);
3216 JDWP::Append2BE(bytes, file_name_index);
Elliott Hughes545a0642011-11-08 19:10:03 -08003217 JDWP::Append2BE(bytes, record->stack[stack_frame].LineNumber());
3218 }
3219
3220 idx = (idx + 1) & (kNumAllocRecords-1);
3221 }
3222
3223 // (xb) class name strings
3224 // (xb) method name strings
3225 // (xb) source file strings
3226 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
3227 class_names.WriteTo(bytes);
3228 method_names.WriteTo(bytes);
3229 filenames.WriteTo(bytes);
3230
3231 JNIEnv* env = Thread::Current()->GetJniEnv();
3232 jbyteArray result = env->NewByteArray(bytes.size());
3233 if (result != NULL) {
3234 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
3235 }
3236 return result;
3237}
3238
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003239} // namespace art