blob: 84dd0552a29f41e874834a09ad2aa55012f731fb [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"
Elliott Hughes86964332012-02-15 19:37:42 -080025#include "dex_verifier.h" // For Instruction.
Elliott Hughes68fdbd02011-11-29 19:22:47 -080026#include "context.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080027#include "object_utils.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070028#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070029#include "ScopedPrimitiveArray.h"
Elliott Hughes88c5c352012-03-15 18:49:48 -070030#include "scoped_thread_list_lock.h"
Ian Rogers30fab402012-01-23 15:43:46 -080031#include "space.h"
Elliott Hughes47fce012011-10-25 18:37:19 -070032#include "stack_indirect_reference_table.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070033#include "thread_list.h"
34
Elliott Hughes6a5bd492011-10-28 14:33:57 -070035extern "C" void dlmalloc_walk_heap(void(*)(const void*, size_t, const void*, size_t, void*), void*);
36#ifndef HAVE_ANDROID_OS
37void dlmalloc_walk_heap(void(*)(const void*, size_t, const void*, size_t, void*), void*) {
38 // No-op for glibc.
39}
40#endif
41
Elliott Hughes872d4ec2011-10-21 17:07:15 -070042namespace art {
43
Elliott Hughes545a0642011-11-08 19:10:03 -080044static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
45static const size_t kNumAllocRecords = 512; // Must be power of 2.
46
Elliott Hughes436e3722012-02-17 20:01:47 -080047static const uintptr_t kInvalidId = 1;
48static const Object* kInvalidObject = reinterpret_cast<Object*>(kInvalidId);
49
Elliott Hughes475fc232011-10-25 15:00:35 -070050class ObjectRegistry {
51 public:
52 ObjectRegistry() : lock_("ObjectRegistry lock") {
53 }
54
55 JDWP::ObjectId Add(Object* o) {
56 if (o == NULL) {
57 return 0;
58 }
59 JDWP::ObjectId id = static_cast<JDWP::ObjectId>(reinterpret_cast<uintptr_t>(o));
60 MutexLock mu(lock_);
61 map_[id] = o;
62 return id;
63 }
64
Elliott Hughes234ab152011-10-26 14:02:26 -070065 void Clear() {
66 MutexLock mu(lock_);
67 LOG(DEBUG) << "Debugger has detached; object registry had " << map_.size() << " entries";
68 map_.clear();
69 }
70
Elliott Hughes475fc232011-10-25 15:00:35 -070071 bool Contains(JDWP::ObjectId id) {
72 MutexLock mu(lock_);
73 return map_.find(id) != map_.end();
74 }
75
Elliott Hughesa2155262011-11-16 16:26:58 -080076 template<typename T> T Get(JDWP::ObjectId id) {
Elliott Hughes436e3722012-02-17 20:01:47 -080077 if (id == 0) {
78 return NULL;
79 }
80
Elliott Hughesa2155262011-11-16 16:26:58 -080081 MutexLock mu(lock_);
82 typedef std::map<JDWP::ObjectId, Object*>::iterator It; // C++0x auto
83 It it = map_.find(id);
Elliott Hughes436e3722012-02-17 20:01:47 -080084 return (it != map_.end()) ? reinterpret_cast<T>(it->second) : reinterpret_cast<T>(kInvalidId);
Elliott Hughesa2155262011-11-16 16:26:58 -080085 }
86
Elliott Hughesbfe487b2011-10-26 15:48:55 -070087 void VisitRoots(Heap::RootVisitor* visitor, void* arg) {
88 MutexLock mu(lock_);
89 typedef std::map<JDWP::ObjectId, Object*>::iterator It; // C++0x auto
90 for (It it = map_.begin(); it != map_.end(); ++it) {
91 visitor(it->second, arg);
92 }
93 }
94
Elliott Hughes475fc232011-10-25 15:00:35 -070095 private:
96 Mutex lock_;
97 std::map<JDWP::ObjectId, Object*> map_;
98};
99
Elliott Hughes545a0642011-11-08 19:10:03 -0800100struct AllocRecordStackTraceElement {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800101 Method* method;
Elliott Hughes545a0642011-11-08 19:10:03 -0800102 uintptr_t raw_pc;
103
104 int32_t LineNumber() const {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800105 return MethodHelper(method).GetLineNumFromNativePC(raw_pc);
Elliott Hughes545a0642011-11-08 19:10:03 -0800106 }
107};
108
109struct AllocRecord {
110 Class* type;
111 size_t byte_count;
112 uint16_t thin_lock_id;
113 AllocRecordStackTraceElement stack[kMaxAllocRecordStackDepth]; // Unused entries have NULL method.
114
115 size_t GetDepth() {
116 size_t depth = 0;
117 while (depth < kMaxAllocRecordStackDepth && stack[depth].method != NULL) {
118 ++depth;
119 }
120 return depth;
121 }
122};
123
Elliott Hughes86964332012-02-15 19:37:42 -0800124struct Breakpoint {
125 Method* method;
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800126 uint32_t dex_pc;
127 Breakpoint(Method* method, uint32_t dex_pc) : method(method), dex_pc(dex_pc) {}
Elliott Hughes86964332012-02-15 19:37:42 -0800128};
129
130static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs) {
Elliott Hughes229feb72012-02-23 13:33:29 -0800131 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.method).c_str(), rhs.dex_pc);
Elliott Hughes86964332012-02-15 19:37:42 -0800132 return os;
133}
134
135struct SingleStepControl {
136 // Are we single-stepping right now?
137 bool is_active;
138 Thread* thread;
139
140 JDWP::JdwpStepSize step_size;
141 JDWP::JdwpStepDepth step_depth;
142
143 const Method* method;
Elliott Hughes2435a572012-02-17 16:07:41 -0800144 int32_t line_number; // Or -1 for native methods.
145 std::set<uint32_t> dex_pcs;
Elliott Hughes86964332012-02-15 19:37:42 -0800146 int stack_depth;
147};
148
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700149// JDWP is allowed unless the Zygote forbids it.
150static bool gJdwpAllowed = true;
151
Elliott Hughes3bb81562011-10-21 18:52:59 -0700152// Was there a -Xrunjdwp or -agent argument on the command-line?
153static bool gJdwpConfigured = false;
154
155// Broken-down JDWP options. (Only valid if gJdwpConfigured is true.)
Elliott Hughes376a7a02011-10-24 18:35:55 -0700156static JDWP::JdwpOptions gJdwpOptions;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700157
158// Runtime JDWP state.
159static JDWP::JdwpState* gJdwpState = NULL;
160static bool gDebuggerConnected; // debugger or DDMS is connected.
161static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800162static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700163
Elliott Hughes47fce012011-10-25 18:37:19 -0700164static bool gDdmThreadNotification = false;
165
Elliott Hughes767a1472011-10-26 18:49:02 -0700166// DDMS GC-related settings.
167static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
168static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
169static Dbg::HpsgWhat gDdmHpsgWhat;
170static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
171static Dbg::HpsgWhat gDdmNhsgWhat;
172
Elliott Hughes475fc232011-10-25 15:00:35 -0700173static ObjectRegistry* gRegistry = NULL;
174
Elliott Hughes545a0642011-11-08 19:10:03 -0800175// Recent allocation tracking.
176static Mutex gAllocTrackerLock("AllocTracker lock");
177AllocRecord* Dbg::recent_allocation_records_ = NULL; // TODO: CircularBuffer<AllocRecord>
178static size_t gAllocRecordHead = 0;
179static size_t gAllocRecordCount = 0;
180
Elliott Hughes86964332012-02-15 19:37:42 -0800181// Breakpoints and single-stepping.
182static Mutex gBreakpointsLock("breakpoints lock");
183static std::vector<Breakpoint> gBreakpoints;
184static SingleStepControl gSingleStepControl;
185
186static bool IsBreakpoint(Method* m, uint32_t dex_pc) {
187 MutexLock mu(gBreakpointsLock);
188 for (size_t i = 0; i < gBreakpoints.size(); ++i) {
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800189 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == dex_pc) {
Elliott Hughes86964332012-02-15 19:37:42 -0800190 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
191 return true;
192 }
193 }
194 return false;
195}
196
Elliott Hughes436e3722012-02-17 20:01:47 -0800197static Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status) {
198 Object* o = gRegistry->Get<Object*>(id);
199 if (o == NULL || o == kInvalidObject) {
200 status = JDWP::ERR_INVALID_OBJECT;
201 return NULL;
202 }
203 if (!o->IsArrayInstance()) {
204 status = JDWP::ERR_INVALID_ARRAY;
205 return NULL;
206 }
207 status = JDWP::ERR_NONE;
208 return o->AsArray();
209}
210
211static Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status) {
212 Object* o = gRegistry->Get<Object*>(id);
213 if (o == NULL || o == kInvalidObject) {
214 status = JDWP::ERR_INVALID_OBJECT;
215 return NULL;
216 }
217 if (!o->IsClass()) {
218 status = JDWP::ERR_INVALID_CLASS;
219 return NULL;
220 }
221 status = JDWP::ERR_NONE;
222 return o->AsClass();
223}
224
225static Thread* DecodeThread(JDWP::ObjectId threadId) {
226 Object* thread_peer = gRegistry->Get<Object*>(threadId);
227 if (thread_peer == NULL || thread_peer == kInvalidObject) {
228 return NULL;
229 }
230 return Thread::FromManagedThread(thread_peer);
231}
232
Elliott Hughes24437992011-11-30 14:49:33 -0800233static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
234 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
235 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
236 return static_cast<JDWP::JdwpTag>(descriptor[0]);
237}
238
239static JDWP::JdwpTag TagFromClass(Class* c) {
Elliott Hughes86b00102011-12-05 17:54:26 -0800240 CHECK(c != NULL);
Elliott Hughes24437992011-11-30 14:49:33 -0800241 if (c->IsArrayClass()) {
242 return JDWP::JT_ARRAY;
243 }
244
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800245 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Elliott Hughes24437992011-11-30 14:49:33 -0800246 if (c->IsStringClass()) {
247 return JDWP::JT_STRING;
248 } else if (c->IsClassClass()) {
249 return JDWP::JT_CLASS_OBJECT;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800250 } else if (class_linker->FindSystemClass("Ljava/lang/Thread;")->IsAssignableFrom(c)) {
Elliott Hughes24437992011-11-30 14:49:33 -0800251 return JDWP::JT_THREAD;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800252 } else if (class_linker->FindSystemClass("Ljava/lang/ThreadGroup;")->IsAssignableFrom(c)) {
Elliott Hughes24437992011-11-30 14:49:33 -0800253 return JDWP::JT_THREAD_GROUP;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800254 } else if (class_linker->FindSystemClass("Ljava/lang/ClassLoader;")->IsAssignableFrom(c)) {
Elliott Hughes24437992011-11-30 14:49:33 -0800255 return JDWP::JT_CLASS_LOADER;
Elliott Hughes24437992011-11-30 14:49:33 -0800256 } else {
257 return JDWP::JT_OBJECT;
258 }
259}
260
261/*
262 * Objects declared to hold Object might actually hold a more specific
263 * type. The debugger may take a special interest in these (e.g. it
264 * wants to display the contents of Strings), so we want to return an
265 * appropriate tag.
266 *
267 * Null objects are tagged JT_OBJECT.
268 */
269static JDWP::JdwpTag TagFromObject(const Object* o) {
270 return (o == NULL) ? JDWP::JT_OBJECT : TagFromClass(o->GetClass());
271}
272
273static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
274 switch (tag) {
275 case JDWP::JT_BOOLEAN:
276 case JDWP::JT_BYTE:
277 case JDWP::JT_CHAR:
278 case JDWP::JT_FLOAT:
279 case JDWP::JT_DOUBLE:
280 case JDWP::JT_INT:
281 case JDWP::JT_LONG:
282 case JDWP::JT_SHORT:
283 case JDWP::JT_VOID:
284 return true;
285 default:
286 return false;
287 }
288}
289
Elliott Hughes3bb81562011-10-21 18:52:59 -0700290/*
291 * Handle one of the JDWP name/value pairs.
292 *
293 * JDWP options are:
294 * help: if specified, show help message and bail
295 * transport: may be dt_socket or dt_shmem
296 * address: for dt_socket, "host:port", or just "port" when listening
297 * server: if "y", wait for debugger to attach; if "n", attach to debugger
298 * timeout: how long to wait for debugger to connect / listen
299 *
300 * Useful with server=n (these aren't supported yet):
301 * onthrow=<exception-name>: connect to debugger when exception thrown
302 * onuncaught=y|n: connect to debugger when uncaught exception thrown
303 * launch=<command-line>: launch the debugger itself
304 *
305 * The "transport" option is required, as is "address" if server=n.
306 */
307static bool ParseJdwpOption(const std::string& name, const std::string& value) {
308 if (name == "transport") {
309 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700310 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700311 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700312 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700313 } else {
314 LOG(ERROR) << "JDWP transport not supported: " << value;
315 return false;
316 }
317 } else if (name == "server") {
318 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700319 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700320 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700321 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700322 } else {
323 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
324 return false;
325 }
326 } else if (name == "suspend") {
327 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700328 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700329 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700330 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700331 } else {
332 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
333 return false;
334 }
335 } else if (name == "address") {
336 /* this is either <port> or <host>:<port> */
337 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700338 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700339 std::string::size_type colon = value.find(':');
340 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700341 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700342 port_string = value.substr(colon + 1);
343 } else {
344 port_string = value;
345 }
346 if (port_string.empty()) {
347 LOG(ERROR) << "JDWP address missing port: " << value;
348 return false;
349 }
350 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800351 uint64_t port = strtoul(port_string.c_str(), &end, 10);
352 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700353 LOG(ERROR) << "JDWP address has junk in port field: " << value;
354 return false;
355 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700356 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700357 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
358 /* valid but unsupported */
359 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
360 } else {
361 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
362 }
363
364 return true;
365}
366
367/*
368 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
369 * "transport=dt_socket,address=8000,server=y,suspend=n"
370 */
371bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800372 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700373
Elliott Hughes3bb81562011-10-21 18:52:59 -0700374 std::vector<std::string> pairs;
375 Split(options, ',', pairs);
376
377 for (size_t i = 0; i < pairs.size(); ++i) {
378 std::string::size_type equals = pairs[i].find('=');
379 if (equals == std::string::npos) {
380 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
381 return false;
382 }
383 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
384 }
385
Elliott Hughes376a7a02011-10-24 18:35:55 -0700386 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700387 LOG(ERROR) << "Must specify JDWP transport: " << options;
388 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700389 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700390 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
391 return false;
392 }
393
394 gJdwpConfigured = true;
395 return true;
396}
397
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700398void Dbg::StartJdwp() {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700399 if (!gJdwpAllowed || !gJdwpConfigured) {
400 // No JDWP for you!
401 return;
402 }
403
Elliott Hughes475fc232011-10-25 15:00:35 -0700404 CHECK(gRegistry == NULL);
405 gRegistry = new ObjectRegistry;
406
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700407 // Init JDWP if the debugger is enabled. This may connect out to a
408 // debugger, passively listen for a debugger, or block waiting for a
409 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700410 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
411 if (gJdwpState == NULL) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800412 // We probably failed because some other process has the port already, which means that
413 // if we don't abort the user is likely to think they're talking to us when they're actually
414 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800415 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700416 }
417
418 // If a debugger has already attached, send the "welcome" message.
419 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700420 if (gJdwpState->IsActive()) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800421 //ScopedThreadStateChange tsc(Thread::Current(), Thread::kRunnable);
Elliott Hughes376a7a02011-10-24 18:35:55 -0700422 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800423 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700424 }
425 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700426}
427
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700428void Dbg::StopJdwp() {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700429 delete gJdwpState;
Elliott Hughes475fc232011-10-25 15:00:35 -0700430 delete gRegistry;
431 gRegistry = NULL;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700432}
433
Elliott Hughes767a1472011-10-26 18:49:02 -0700434void Dbg::GcDidFinish() {
435 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
436 LOG(DEBUG) << "Sending VM heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700437 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700438 }
439 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
440 LOG(DEBUG) << "Dumping VM heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700441 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700442 }
443 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
444 LOG(DEBUG) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700445 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700446 }
447}
448
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700449void Dbg::SetJdwpAllowed(bool allowed) {
450 gJdwpAllowed = allowed;
451}
452
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700453DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700454 return Thread::Current()->GetInvokeReq();
455}
456
457Thread* Dbg::GetDebugThread() {
458 return (gJdwpState != NULL) ? gJdwpState->GetDebugThread() : NULL;
459}
460
461void Dbg::ClearWaitForEventThread() {
462 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700463}
464
465void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700466 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800467 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700468 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800469 gDisposed = false;
470}
471
472void Dbg::Disposed() {
473 gDisposed = true;
474}
475
476bool Dbg::IsDisposed() {
477 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700478}
479
Elliott Hughesa2155262011-11-16 16:26:58 -0800480void Dbg::GoActive() {
481 // Enable all debugging features, including scans for breakpoints.
482 // This is a no-op if we're already active.
483 // Only called from the JDWP handler thread.
484 if (gDebuggerActive) {
485 return;
486 }
487
488 LOG(INFO) << "Debugger is active";
489
490 // TODO: CHECK we don't have any outstanding breakpoints.
491
492 gDebuggerActive = true;
493
494 //dvmEnableAllSubMode(kSubModeDebuggerActive);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700495}
496
497void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700498 CHECK(gDebuggerConnected);
499
500 gDebuggerActive = false;
501
502 //dvmDisableAllSubMode(kSubModeDebuggerActive);
503
504 gRegistry->Clear();
505 gDebuggerConnected = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700506}
507
508bool Dbg::IsDebuggerConnected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700509 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700510}
511
512bool Dbg::IsDebuggingEnabled() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700513 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700514}
515
516int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800517 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700518}
519
520int Dbg::ThreadRunning() {
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700521 return static_cast<int>(Thread::Current()->SetState(Thread::kRunnable));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700522}
523
524int Dbg::ThreadWaiting() {
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700525 return static_cast<int>(Thread::Current()->SetState(Thread::kVmWait));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700526}
527
Elliott Hughes6ba581a2011-10-25 11:45:35 -0700528int Dbg::ThreadContinuing(int new_state) {
529 return static_cast<int>(Thread::Current()->SetState(static_cast<Thread::State>(new_state)));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700530}
531
532void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700533 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700534}
535
536void Dbg::Exit(int status) {
Elliott Hughes1bba14f2011-12-01 18:00:36 -0800537 exit(status); // This is all dalvik did.
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700538}
539
Elliott Hughesbfe487b2011-10-26 15:48:55 -0700540void Dbg::VisitRoots(Heap::RootVisitor* visitor, void* arg) {
541 if (gRegistry != NULL) {
542 gRegistry->VisitRoots(visitor, arg);
543 }
544}
545
Elliott Hughesc308a5d2012-02-16 17:12:06 -0800546std::string Dbg::GetClassName(JDWP::RefTypeId classId) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800547 Object* o = gRegistry->Get<Object*>(classId);
Elliott Hughes436e3722012-02-17 20:01:47 -0800548 if (o == NULL) {
549 return "NULL";
550 }
551 if (o == kInvalidObject) {
552 return StringPrintf("invalid object %p", reinterpret_cast<void*>(classId));
553 }
554 if (!o->IsClass()) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800555 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
556 }
Elliott Hughesc308a5d2012-02-16 17:12:06 -0800557 return DescriptorToName(ClassHelper(o->AsClass()).GetDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700558}
559
Elliott Hughes436e3722012-02-17 20:01:47 -0800560JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& classObjectId) {
561 JDWP::JdwpError status;
562 Class* c = DecodeClass(id, status);
563 if (c == NULL) {
564 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800565 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800566 classObjectId = gRegistry->Add(c);
567 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800568}
569
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800570JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclassId) {
571 JDWP::JdwpError status;
572 Class* c = DecodeClass(id, status);
573 if (c == NULL) {
574 return status;
575 }
576 if (c->IsInterface()) {
577 // http://code.google.com/p/android/issues/detail?id=20856
578 superclassId = NULL;
579 } else {
580 superclassId = gRegistry->Add(c->GetSuperClass());
581 }
582 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700583}
584
Elliott Hughes436e3722012-02-17 20:01:47 -0800585JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Elliott Hughes1bba14f2011-12-01 18:00:36 -0800586 Object* o = gRegistry->Get<Object*>(id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800587 if (o == NULL || o == kInvalidObject) {
588 return JDWP::ERR_INVALID_OBJECT;
589 }
590 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
591 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700592}
593
Elliott Hughes436e3722012-02-17 20:01:47 -0800594JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
595 JDWP::JdwpError status;
596 Class* c = DecodeClass(id, status);
597 if (c == NULL) {
598 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800599 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800600
601 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
602
603 // Set ACC_SUPER; dex files don't contain this flag, but all classes are supposed to have it set.
604 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
605 access_flags |= kAccSuper;
606
607 expandBufAdd4BE(pReply, access_flags);
608
609 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700610}
611
Elliott Hughes436e3722012-02-17 20:01:47 -0800612JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId classId, JDWP::ExpandBuf* pReply) {
613 JDWP::JdwpError status;
614 Class* c = DecodeClass(classId, status);
615 if (c == NULL) {
616 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800617 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800618
619 expandBufAdd1(pReply, c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS);
620 expandBufAddRefTypeId(pReply, classId);
621 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700622}
623
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800624void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800625 // Get the complete list of reference classes (i.e. all classes except
626 // the primitive types).
627 // Returns a newly-allocated buffer full of RefTypeId values.
628 struct ClassListCreator {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800629 explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800630 }
631
Elliott Hughesa2155262011-11-16 16:26:58 -0800632 static bool Visit(Class* c, void* arg) {
633 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
634 }
635
636 bool Visit(Class* c) {
637 if (!c->IsPrimitive()) {
638 classes.push_back(static_cast<JDWP::RefTypeId>(gRegistry->Add(c)));
639 }
640 return true;
641 }
642
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800643 std::vector<JDWP::RefTypeId>& classes;
Elliott Hughesa2155262011-11-16 16:26:58 -0800644 };
645
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800646 ClassListCreator clc(classes);
Elliott Hughesa2155262011-11-16 16:26:58 -0800647 Runtime::Current()->GetClassLinker()->VisitClasses(ClassListCreator::Visit, &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700648}
649
Elliott Hughes436e3722012-02-17 20:01:47 -0800650JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId classId, JDWP::JdwpTypeTag* pTypeTag, uint32_t* pStatus, std::string* pDescriptor) {
651 JDWP::JdwpError status;
652 Class* c = DecodeClass(classId, status);
653 if (c == NULL) {
654 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800655 }
656
Elliott Hughesa2155262011-11-16 16:26:58 -0800657 if (c->IsArrayClass()) {
658 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
659 *pTypeTag = JDWP::TT_ARRAY;
660 } else {
661 if (c->IsErroneous()) {
662 *pStatus = JDWP::CS_ERROR;
663 } else {
664 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
665 }
666 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
667 }
668
669 if (pDescriptor != NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800670 *pDescriptor = ClassHelper(c).GetDescriptor();
Elliott Hughesa2155262011-11-16 16:26:58 -0800671 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800672 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700673}
674
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800675void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800676 std::vector<Class*> classes;
677 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
678 ids.clear();
679 for (size_t i = 0; i < classes.size(); ++i) {
680 ids.push_back(gRegistry->Add(classes[i]));
681 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700682}
683
Elliott Hughes2435a572012-02-17 16:07:41 -0800684JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId objectId, JDWP::ExpandBuf* pReply) {
Elliott Hughes499c5132011-11-17 14:55:11 -0800685 Object* o = gRegistry->Get<Object*>(objectId);
Elliott Hughes436e3722012-02-17 20:01:47 -0800686 if (o == NULL || o == kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800687 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -0800688 }
Elliott Hughes2435a572012-02-17 16:07:41 -0800689
690 JDWP::JdwpTypeTag type_tag;
691 if (o->GetClass()->IsArrayClass()) {
692 type_tag = JDWP::TT_ARRAY;
693 } else if (o->GetClass()->IsInterface()) {
694 type_tag = JDWP::TT_INTERFACE;
695 } else {
696 type_tag = JDWP::TT_CLASS;
697 }
698 JDWP::RefTypeId type_id = gRegistry->Add(o->GetClass());
699
700 expandBufAdd1(pReply, type_tag);
701 expandBufAddRefTypeId(pReply, type_id);
702
703 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700704}
705
Elliott Hughes436e3722012-02-17 20:01:47 -0800706JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId classId, std::string& signature) {
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800707 JDWP::JdwpError status;
Elliott Hughes436e3722012-02-17 20:01:47 -0800708 Class* c = DecodeClass(classId, status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800709 if (c == NULL) {
710 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800711 }
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800712 signature = ClassHelper(c).GetDescriptor();
713 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700714}
715
Elliott Hughes436e3722012-02-17 20:01:47 -0800716JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId classId, std::string& result) {
717 JDWP::JdwpError status;
718 Class* c = DecodeClass(classId, status);
719 if (c == NULL) {
720 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800721 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800722 result = ClassHelper(c).GetSourceFile();
723 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700724}
725
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700726uint8_t Dbg::GetObjectTag(JDWP::ObjectId objectId) {
Elliott Hughes24437992011-11-30 14:49:33 -0800727 Object* o = gRegistry->Get<Object*>(objectId);
728 return TagFromObject(o);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700729}
730
Elliott Hughesaed4be92011-12-02 16:16:23 -0800731size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -0800732 switch (tag) {
733 case JDWP::JT_VOID:
734 return 0;
735 case JDWP::JT_BYTE:
736 case JDWP::JT_BOOLEAN:
737 return 1;
738 case JDWP::JT_CHAR:
739 case JDWP::JT_SHORT:
740 return 2;
741 case JDWP::JT_FLOAT:
742 case JDWP::JT_INT:
743 return 4;
744 case JDWP::JT_ARRAY:
745 case JDWP::JT_OBJECT:
746 case JDWP::JT_STRING:
747 case JDWP::JT_THREAD:
748 case JDWP::JT_THREAD_GROUP:
749 case JDWP::JT_CLASS_LOADER:
750 case JDWP::JT_CLASS_OBJECT:
751 return sizeof(JDWP::ObjectId);
752 case JDWP::JT_DOUBLE:
753 case JDWP::JT_LONG:
754 return 8;
755 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800756 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -0800757 return -1;
758 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700759}
760
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800761JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId arrayId, int& length) {
762 JDWP::JdwpError status;
763 Array* a = DecodeArray(arrayId, status);
764 if (a == NULL) {
765 return status;
Elliott Hughes24437992011-11-30 14:49:33 -0800766 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800767 length = a->GetLength();
768 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700769}
770
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800771JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId arrayId, int offset, int count, JDWP::ExpandBuf* pReply) {
772 JDWP::JdwpError status;
773 Array* a = DecodeArray(arrayId, status);
774 if (a == NULL) {
775 return status;
776 }
Elliott Hughes24437992011-11-30 14:49:33 -0800777
778 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
779 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800780 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -0800781 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800782 std::string descriptor(ClassHelper(a->GetClass()).GetDescriptor());
Elliott Hughes24437992011-11-30 14:49:33 -0800783 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
784
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800785 expandBufAdd1(pReply, tag);
786 expandBufAdd4BE(pReply, count);
787
Elliott Hughes24437992011-11-30 14:49:33 -0800788 if (IsPrimitiveTag(tag)) {
789 size_t width = GetTagWidth(tag);
Elliott Hughes24437992011-11-30 14:49:33 -0800790 uint8_t* dst = expandBufAddSpace(pReply, count * width);
791 if (width == 8) {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800792 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t)));
Elliott Hughes24437992011-11-30 14:49:33 -0800793 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
794 } else if (width == 4) {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800795 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t)));
Elliott Hughes24437992011-11-30 14:49:33 -0800796 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
797 } else if (width == 2) {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800798 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t)));
Elliott Hughes24437992011-11-30 14:49:33 -0800799 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
800 } else {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800801 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t)));
Elliott Hughes24437992011-11-30 14:49:33 -0800802 memcpy(dst, &src[offset * width], count * width);
803 }
804 } else {
805 ObjectArray<Object>* oa = a->AsObjectArray<Object>();
806 for (int i = 0; i < count; ++i) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800807 Object* element = oa->Get(offset + i);
Elliott Hughes24437992011-11-30 14:49:33 -0800808 JDWP::JdwpTag specific_tag = (element != NULL) ? TagFromObject(element) : tag;
809 expandBufAdd1(pReply, specific_tag);
810 expandBufAddObjectId(pReply, gRegistry->Add(element));
811 }
812 }
813
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800814 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700815}
816
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800817JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId arrayId, int offset, int count, const uint8_t* src) {
818 JDWP::JdwpError status;
819 Array* a = DecodeArray(arrayId, status);
820 if (a == NULL) {
821 return status;
822 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800823
824 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
825 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800826 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800827 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800828 std::string descriptor(ClassHelper(a->GetClass()).GetDescriptor());
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800829 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
830
831 if (IsPrimitiveTag(tag)) {
832 size_t width = GetTagWidth(tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800833 if (width == 8) {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800834 uint8_t* dst = &(reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint64_t)))[offset * width]);
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800835 for (int i = 0; i < count; ++i) {
836 // Handle potentially non-aligned memory access one byte at a time for ARM's benefit.
837 uint64_t value;
838 for (size_t j = 0; j < sizeof(uint64_t); ++j) reinterpret_cast<uint8_t*>(&value)[j] = src[j];
839 src += sizeof(uint64_t);
840 JDWP::Write8BE(&dst, value);
841 }
842 } else if (width == 4) {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800843 uint8_t* dst = &(reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint32_t)))[offset * width]);
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800844 const uint32_t* src4 = reinterpret_cast<const uint32_t*>(src);
845 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[i]);
846 } else if (width == 2) {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800847 uint8_t* dst = &(reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint16_t)))[offset * width]);
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800848 const uint16_t* src2 = reinterpret_cast<const uint16_t*>(src);
849 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[i]);
850 } else {
Ian Rogersa15e67d2012-02-28 13:51:55 -0800851 uint8_t* dst = &(reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t)))[offset * width]);
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800852 memcpy(&dst[offset * width], src, count * width);
853 }
854 } else {
855 ObjectArray<Object>* oa = a->AsObjectArray<Object>();
856 for (int i = 0; i < count; ++i) {
857 JDWP::ObjectId id = JDWP::ReadObjectId(&src);
Elliott Hughes436e3722012-02-17 20:01:47 -0800858 Object* o = gRegistry->Get<Object*>(id);
859 if (o == kInvalidObject) {
860 return JDWP::ERR_INVALID_OBJECT;
861 }
862 oa->Set(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -0800863 }
864 }
865
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800866 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700867}
868
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800869JDWP::ObjectId Dbg::CreateString(const std::string& str) {
870 return gRegistry->Add(String::AllocFromModifiedUtf8(str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700871}
872
Elliott Hughes436e3722012-02-17 20:01:47 -0800873JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId classId, JDWP::ObjectId& new_object) {
874 JDWP::JdwpError status;
875 Class* c = DecodeClass(classId, status);
876 if (c == NULL) {
877 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800878 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800879 new_object = gRegistry->Add(c->AllocObject());
880 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700881}
882
Elliott Hughesbf13d362011-12-08 15:51:37 -0800883/*
884 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
885 */
Elliott Hughes436e3722012-02-17 20:01:47 -0800886JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId arrayClassId, uint32_t length, JDWP::ObjectId& new_array) {
887 JDWP::JdwpError status;
888 Class* c = DecodeClass(arrayClassId, 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_array = gRegistry->Add(Array::Alloc(c, length));
893 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700894}
895
896bool Dbg::MatchType(JDWP::RefTypeId instClassId, JDWP::RefTypeId classId) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800897 JDWP::JdwpError status;
898 Class* c1 = DecodeClass(instClassId, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800899 CHECK(c1 != NULL);
Elliott Hughes436e3722012-02-17 20:01:47 -0800900 Class* c2 = DecodeClass(classId, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800901 CHECK(c2 != NULL);
902 return c1->IsAssignableFrom(c2);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700903}
904
Elliott Hughes86964332012-02-15 19:37:42 -0800905static JDWP::FieldId ToFieldId(const Field* f) {
Elliott Hughes03181a82011-11-17 17:22:21 -0800906#ifdef MOVING_GARBAGE_COLLECTOR
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700907 UNIMPLEMENTED(FATAL);
Elliott Hughes03181a82011-11-17 17:22:21 -0800908#else
909 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
910#endif
911}
912
Elliott Hughes86964332012-02-15 19:37:42 -0800913static JDWP::MethodId ToMethodId(const Method* m) {
Elliott Hughes03181a82011-11-17 17:22:21 -0800914#ifdef MOVING_GARBAGE_COLLECTOR
915 UNIMPLEMENTED(FATAL);
916#else
917 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
918#endif
919}
920
Elliott Hughes86964332012-02-15 19:37:42 -0800921static Field* FromFieldId(JDWP::FieldId fid) {
Elliott Hughesaed4be92011-12-02 16:16:23 -0800922#ifdef MOVING_GARBAGE_COLLECTOR
923 UNIMPLEMENTED(FATAL);
924#else
925 return reinterpret_cast<Field*>(static_cast<uintptr_t>(fid));
926#endif
927}
928
Elliott Hughes86964332012-02-15 19:37:42 -0800929static Method* FromMethodId(JDWP::MethodId mid) {
Elliott Hughes03181a82011-11-17 17:22:21 -0800930#ifdef MOVING_GARBAGE_COLLECTOR
931 UNIMPLEMENTED(FATAL);
932#else
933 return reinterpret_cast<Method*>(static_cast<uintptr_t>(mid));
934#endif
935}
936
Elliott Hughes86964332012-02-15 19:37:42 -0800937static void SetLocation(JDWP::JdwpLocation& location, Method* m, uintptr_t native_pc) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -0800938 if (m == NULL) {
939 memset(&location, 0, sizeof(location));
940 } else {
941 Class* c = m->GetDeclaringClass();
942 location.typeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
943 location.classId = gRegistry->Add(c);
944 location.methodId = ToMethodId(m);
Elliott Hughes972a47b2012-02-21 18:16:06 -0800945 location.dex_pc = m->IsNative() ? -1 : m->ToDexPC(native_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -0800946 }
Elliott Hughesd07986f2011-12-06 18:27:45 -0800947}
948
Elliott Hughes436e3722012-02-17 20:01:47 -0800949std::string Dbg::GetMethodName(JDWP::RefTypeId, JDWP::MethodId methodId) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800950 Method* m = FromMethodId(methodId);
951 return MethodHelper(m).GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700952}
953
Elliott Hughesa2e54f62011-11-17 13:01:30 -0800954/*
955 * Augment the access flags for synthetic methods and fields by setting
956 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
957 * flags not specified by the Java programming language.
958 */
959static uint32_t MangleAccessFlags(uint32_t accessFlags) {
960 accessFlags &= kAccJavaFlagsMask;
961 if ((accessFlags & kAccSynthetic) != 0) {
962 accessFlags |= 0xf0000000;
963 }
964 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700965}
966
Elliott Hughesdbb40792011-11-18 17:05:22 -0800967static const uint16_t kEclipseWorkaroundSlot = 1000;
968
969/*
970 * Eclipse appears to expect that the "this" reference is in slot zero.
971 * If it's not, the "variables" display will show two copies of "this",
972 * possibly because it gets "this" from SF.ThisObject and then displays
973 * all locals with nonzero slot numbers.
974 *
975 * So, we remap the item in slot 0 to 1000, and remap "this" to zero. On
976 * SF.GetValues / SF.SetValues we map them back.
Elliott Hughesc5b734a2011-12-01 17:20:58 -0800977 *
978 * TODO: jdb uses the value to determine whether a variable is a local or an argument,
979 * by checking whether it's less than the number of arguments. To make that work, we'd
980 * have to "mangle" all the arguments to come first, not just the implicit argument 'this'.
Elliott Hughesdbb40792011-11-18 17:05:22 -0800981 */
982static uint16_t MangleSlot(uint16_t slot, const char* name) {
983 uint16_t newSlot = slot;
984 if (strcmp(name, "this") == 0) {
985 newSlot = 0;
986 } else if (slot == 0) {
987 newSlot = kEclipseWorkaroundSlot;
988 }
989 return newSlot;
990}
991
Elliott Hughes91bf6cd2012-02-14 17:27:48 -0800992static uint16_t DemangleSlot(uint16_t slot, Method* m) {
Elliott Hughesdbb40792011-11-18 17:05:22 -0800993 if (slot == kEclipseWorkaroundSlot) {
Elliott Hughes68fdbd02011-11-29 19:22:47 -0800994 return 0;
Elliott Hughesdbb40792011-11-18 17:05:22 -0800995 } else if (slot == 0) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -0800996 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
997 CHECK(code_item != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800998 return code_item->registers_size_ - code_item->ins_size_;
Elliott Hughesdbb40792011-11-18 17:05:22 -0800999 }
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001000 return slot;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001001}
1002
Elliott Hughes436e3722012-02-17 20:01:47 -08001003JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId classId, bool with_generic, JDWP::ExpandBuf* pReply) {
1004 JDWP::JdwpError status;
1005 Class* c = DecodeClass(classId, status);
1006 if (c == NULL) {
1007 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001008 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001009
1010 size_t instance_field_count = c->NumInstanceFields();
1011 size_t static_field_count = c->NumStaticFields();
1012
1013 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1014
1015 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
1016 Field* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001017 FieldHelper fh(f);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001018 expandBufAddFieldId(pReply, ToFieldId(f));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001019 expandBufAddUtf8String(pReply, fh.GetName());
1020 expandBufAddUtf8String(pReply, fh.GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001021 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001022 static const char genericSignature[1] = "";
1023 expandBufAddUtf8String(pReply, genericSignature);
1024 }
1025 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1026 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001027 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001028}
1029
Elliott Hughes436e3722012-02-17 20:01:47 -08001030JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId classId, bool with_generic, JDWP::ExpandBuf* pReply) {
1031 JDWP::JdwpError status;
1032 Class* c = DecodeClass(classId, status);
1033 if (c == NULL) {
1034 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001035 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001036
1037 size_t direct_method_count = c->NumDirectMethods();
1038 size_t virtual_method_count = c->NumVirtualMethods();
1039
1040 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1041
1042 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
1043 Method* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001044 MethodHelper mh(m);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001045 expandBufAddMethodId(pReply, ToMethodId(m));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001046 expandBufAddUtf8String(pReply, mh.GetName());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001047 expandBufAddUtf8String(pReply, mh.GetSignature());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001048 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001049 static const char genericSignature[1] = "";
1050 expandBufAddUtf8String(pReply, genericSignature);
1051 }
1052 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1053 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001054 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001055}
1056
Elliott Hughes436e3722012-02-17 20:01:47 -08001057JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId classId, JDWP::ExpandBuf* pReply) {
1058 JDWP::JdwpError status;
1059 Class* c = DecodeClass(classId, status);
1060 if (c == NULL) {
1061 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001062 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001063
1064 ClassHelper kh(c);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001065 size_t interface_count = kh.NumInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001066 expandBufAdd4BE(pReply, interface_count);
1067 for (size_t i = 0; i < interface_count; ++i) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001068 expandBufAddRefTypeId(pReply, gRegistry->Add(kh.GetInterface(i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001069 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001070 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001071}
1072
Elliott Hughes436e3722012-02-17 20:01:47 -08001073void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId methodId, JDWP::ExpandBuf* pReply) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001074 struct DebugCallbackContext {
1075 int numItems;
1076 JDWP::ExpandBuf* pReply;
1077
Elliott Hughes2435a572012-02-17 16:07:41 -08001078 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001079 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1080 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001081 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001082 pContext->numItems++;
1083 return true;
1084 }
1085 };
1086
1087 Method* m = FromMethodId(methodId);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001088 MethodHelper mh(m);
Elliott Hughes03181a82011-11-17 17:22:21 -08001089 uint64_t start, end;
1090 if (m->IsNative()) {
1091 start = -1;
1092 end = -1;
1093 } else {
1094 start = 0;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001095 // TODO: what are the units supposed to be? *2?
1096 end = mh.GetCodeItem()->insns_size_in_code_units_;
Elliott Hughes03181a82011-11-17 17:22:21 -08001097 }
1098
1099 expandBufAdd8BE(pReply, start);
1100 expandBufAdd8BE(pReply, end);
1101
1102 // Add numLines later
1103 size_t numLinesOffset = expandBufGetLength(pReply);
1104 expandBufAdd4BE(pReply, 0);
1105
1106 DebugCallbackContext context;
1107 context.numItems = 0;
1108 context.pReply = pReply;
1109
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001110 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
1111 DebugCallbackContext::Callback, NULL, &context);
Elliott Hughes03181a82011-11-17 17:22:21 -08001112
1113 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001114}
1115
Elliott Hughes436e3722012-02-17 20:01:47 -08001116void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId methodId, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001117 struct DebugCallbackContext {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001118 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001119 size_t variable_count;
1120 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001121
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001122 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 -08001123 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1124
Elliott Hughesad3da692012-02-24 16:51:35 -08001125 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 -08001126
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001127 slot = MangleSlot(slot, name);
1128
Elliott Hughesdbb40792011-11-18 17:05:22 -08001129 expandBufAdd8BE(pContext->pReply, startAddress);
1130 expandBufAddUtf8String(pContext->pReply, name);
1131 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001132 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001133 expandBufAddUtf8String(pContext->pReply, signature);
1134 }
1135 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1136 expandBufAdd4BE(pContext->pReply, slot);
1137
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001138 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001139 }
1140 };
1141
1142 Method* m = FromMethodId(methodId);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001143 MethodHelper mh(m);
1144 const DexFile::CodeItem* code_item = mh.GetCodeItem();
Elliott Hughesdbb40792011-11-18 17:05:22 -08001145
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001146 // arg_count considers doubles and longs to take 2 units.
1147 // variable_count considers everything to take 1 unit.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001148 std::string shorty(mh.GetShorty());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001149 expandBufAdd4BE(pReply, m->NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001150
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001151 // We don't know the total number of variables yet, so leave a blank and update it later.
1152 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001153 expandBufAdd4BE(pReply, 0);
1154
1155 DebugCallbackContext context;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001156 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001157 context.variable_count = 0;
1158 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001159
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001160 mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL,
1161 DebugCallbackContext::Callback, &context);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001162
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001163 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001164}
1165
Elliott Hughesaed4be92011-12-02 16:16:23 -08001166JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId fieldId) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001167 return BasicTagFromDescriptor(FieldHelper(FromFieldId(fieldId)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001168}
1169
Elliott Hughesaed4be92011-12-02 16:16:23 -08001170JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId fieldId) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001171 return BasicTagFromDescriptor(FieldHelper(FromFieldId(fieldId)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001172}
1173
Elliott Hughes0cf74332012-02-23 23:14:00 -08001174static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId refTypeId, JDWP::ObjectId objectId, JDWP::FieldId fieldId, JDWP::ExpandBuf* pReply, bool is_static) {
1175 JDWP::JdwpError status;
1176 Class* c = DecodeClass(refTypeId, status);
1177 if (refTypeId != 0 && c == NULL) {
1178 return status;
1179 }
1180
Elliott Hughesaed4be92011-12-02 16:16:23 -08001181 Object* o = gRegistry->Get<Object*>(objectId);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001182 if ((!is_static && o == NULL) || o == kInvalidObject) {
1183 return JDWP::ERR_INVALID_OBJECT;
1184 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001185 Field* f = FromFieldId(fieldId);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001186
1187 Class* receiver_class = c;
1188 if (receiver_class == NULL && o != NULL) {
1189 receiver_class = o->GetClass();
1190 }
1191 // TODO: should we give up now if receiver_class is NULL?
1192 if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
1193 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001194 return JDWP::ERR_INVALID_FIELDID;
1195 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001196
Elliott Hughes0cf74332012-02-23 23:14:00 -08001197 // The RI only enforces the static/non-static mismatch in one direction.
1198 // TODO: should we change the tests and check both?
1199 if (is_static) {
1200 if (!f->IsStatic()) {
1201 return JDWP::ERR_INVALID_FIELDID;
1202 }
1203 } else {
1204 if (f->IsStatic()) {
1205 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
1206 o = NULL;
1207 }
1208 }
1209
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001210 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001211
1212 if (IsPrimitiveTag(tag)) {
1213 expandBufAdd1(pReply, tag);
1214 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1215 expandBufAdd1(pReply, f->Get32(o));
1216 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1217 expandBufAdd2BE(pReply, f->Get32(o));
1218 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1219 expandBufAdd4BE(pReply, f->Get32(o));
1220 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1221 expandBufAdd8BE(pReply, f->Get64(o));
1222 } else {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001223 LOG(FATAL) << "Unknown tag: " << tag;
Elliott Hughesaed4be92011-12-02 16:16:23 -08001224 }
1225 } else {
1226 Object* value = f->GetObject(o);
1227 expandBufAdd1(pReply, TagFromObject(value));
1228 expandBufAddObjectId(pReply, gRegistry->Add(value));
1229 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001230 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001231}
1232
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001233JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId objectId, JDWP::FieldId fieldId, JDWP::ExpandBuf* pReply) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001234 return GetFieldValueImpl(0, objectId, fieldId, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001235}
1236
Elliott Hughes0cf74332012-02-23 23:14:00 -08001237JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId refTypeId, JDWP::FieldId fieldId, JDWP::ExpandBuf* pReply) {
1238 return GetFieldValueImpl(refTypeId, 0, fieldId, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001239}
1240
1241static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId objectId, JDWP::FieldId fieldId, uint64_t value, int width, bool is_static) {
Elliott Hughesaed4be92011-12-02 16:16:23 -08001242 Object* o = gRegistry->Get<Object*>(objectId);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001243 if ((!is_static && o == NULL) || o == kInvalidObject) {
1244 return JDWP::ERR_INVALID_OBJECT;
1245 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001246 Field* f = FromFieldId(fieldId);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001247
1248 // The RI only enforces the static/non-static mismatch in one direction.
1249 // TODO: should we change the tests and check both?
1250 if (is_static) {
1251 if (!f->IsStatic()) {
1252 return JDWP::ERR_INVALID_FIELDID;
1253 }
1254 } else {
1255 if (f->IsStatic()) {
1256 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
1257 o = NULL;
1258 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001259 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001260
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001261 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001262
1263 if (IsPrimitiveTag(tag)) {
1264 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1265 f->Set64(o, value);
1266 } else {
1267 f->Set32(o, value);
1268 }
1269 } else {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001270 Object* v = gRegistry->Get<Object*>(value);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001271 if (v == kInvalidObject) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001272 return JDWP::ERR_INVALID_OBJECT;
1273 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001274 if (v != NULL) {
1275 Class* field_type = FieldHelper(f).GetType();
1276 if (!field_type->IsAssignableFrom(v->GetClass())) {
1277 return JDWP::ERR_INVALID_OBJECT;
1278 }
1279 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001280 f->SetObject(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001281 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001282
1283 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001284}
1285
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001286JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId objectId, JDWP::FieldId fieldId, uint64_t value, int width) {
1287 return SetFieldValueImpl(objectId, fieldId, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001288}
1289
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001290JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId fieldId, uint64_t value, int width) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001291 return SetFieldValueImpl(0, fieldId, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001292}
1293
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001294std::string Dbg::StringToUtf8(JDWP::ObjectId strId) {
1295 String* s = gRegistry->Get<String*>(strId);
1296 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001297}
1298
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001299bool Dbg::GetThreadName(JDWP::ObjectId threadId, std::string& name) {
1300 ScopedThreadListLock thread_list_lock;
1301 Thread* thread = DecodeThread(threadId);
1302 if (thread == NULL) {
1303 return false;
1304 }
Elliott Hughesffb465f2012-03-01 18:46:05 -08001305 thread->GetThreadName(name);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001306 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001307}
1308
Elliott Hughes2435a572012-02-17 16:07:41 -08001309JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId threadId, JDWP::ExpandBuf* pReply) {
Elliott Hughes499c5132011-11-17 14:55:11 -08001310 Object* thread = gRegistry->Get<Object*>(threadId);
Elliott Hughes436e3722012-02-17 20:01:47 -08001311 if (thread == kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001312 return JDWP::ERR_INVALID_OBJECT;
1313 }
1314
1315 // Okay, so it's an object, but is it actually a thread?
Elliott Hughes436e3722012-02-17 20:01:47 -08001316 if (DecodeThread(threadId) == NULL) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001317 return JDWP::ERR_INVALID_THREAD;
1318 }
Elliott Hughes499c5132011-11-17 14:55:11 -08001319
1320 Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/Thread;");
1321 CHECK(c != NULL);
1322 Field* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
1323 CHECK(f != NULL);
1324 Object* group = f->GetObject(thread);
1325 CHECK(group != NULL);
Elliott Hughes2435a572012-02-17 16:07:41 -08001326 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1327
1328 expandBufAddObjectId(pReply, thread_group_id);
1329 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001330}
1331
Elliott Hughes499c5132011-11-17 14:55:11 -08001332std::string Dbg::GetThreadGroupName(JDWP::ObjectId threadGroupId) {
1333 Object* thread_group = gRegistry->Get<Object*>(threadGroupId);
1334 CHECK(thread_group != NULL);
1335
1336 Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/ThreadGroup;");
1337 CHECK(c != NULL);
1338 Field* f = c->FindInstanceField("name", "Ljava/lang/String;");
1339 CHECK(f != NULL);
1340 String* s = reinterpret_cast<String*>(f->GetObject(thread_group));
1341 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001342}
1343
1344JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId threadGroupId) {
Elliott Hughes4e235312011-12-02 11:34:15 -08001345 Object* thread_group = gRegistry->Get<Object*>(threadGroupId);
1346 CHECK(thread_group != NULL);
1347
1348 Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/ThreadGroup;");
1349 CHECK(c != NULL);
1350 Field* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
1351 CHECK(f != NULL);
1352 Object* parent = f->GetObject(thread_group);
1353 return gRegistry->Add(parent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001354}
1355
Elliott Hughes499c5132011-11-17 14:55:11 -08001356static Object* GetStaticThreadGroup(const char* field_name) {
1357 Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/ThreadGroup;");
1358 CHECK(c != NULL);
1359 Field* f = c->FindStaticField(field_name, "Ljava/lang/ThreadGroup;");
1360 CHECK(f != NULL);
1361 Object* group = f->GetObject(NULL);
1362 CHECK(group != NULL);
1363 return group;
1364}
1365
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001366JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Elliott Hughes499c5132011-11-17 14:55:11 -08001367 return gRegistry->Add(GetStaticThreadGroup("mSystem"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001368}
1369
1370JDWP::ObjectId Dbg::GetMainThreadGroupId() {
Elliott Hughes499c5132011-11-17 14:55:11 -08001371 return gRegistry->Add(GetStaticThreadGroup("mMain"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001372}
1373
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001374bool Dbg::GetThreadStatus(JDWP::ObjectId threadId, JDWP::JdwpThreadStatus* pThreadStatus, JDWP::JdwpSuspendStatus* pSuspendStatus) {
Elliott Hughes499c5132011-11-17 14:55:11 -08001375 ScopedThreadListLock thread_list_lock;
1376
1377 Thread* thread = DecodeThread(threadId);
1378 if (thread == NULL) {
1379 return false;
1380 }
1381
Elliott Hughes3ce4b262012-02-24 11:24:02 -08001382 // TODO: if we're in Thread.sleep(long), we should return TS_SLEEPING,
1383 // even if it's implemented using Object.wait(long).
Elliott Hughes499c5132011-11-17 14:55:11 -08001384 switch (thread->GetState()) {
1385 case Thread::kTerminated: *pThreadStatus = JDWP::TS_ZOMBIE; break;
1386 case Thread::kRunnable: *pThreadStatus = JDWP::TS_RUNNING; break;
Elliott Hughes3ce4b262012-02-24 11:24:02 -08001387 case Thread::kTimedWaiting: *pThreadStatus = JDWP::TS_WAIT; break;
Elliott Hughes499c5132011-11-17 14:55:11 -08001388 case Thread::kBlocked: *pThreadStatus = JDWP::TS_MONITOR; break;
1389 case Thread::kWaiting: *pThreadStatus = JDWP::TS_WAIT; break;
1390 case Thread::kInitializing: *pThreadStatus = JDWP::TS_ZOMBIE; break;
1391 case Thread::kStarting: *pThreadStatus = JDWP::TS_ZOMBIE; break;
1392 case Thread::kNative: *pThreadStatus = JDWP::TS_RUNNING; break;
1393 case Thread::kVmWait: *pThreadStatus = JDWP::TS_WAIT; break;
1394 case Thread::kSuspended: *pThreadStatus = JDWP::TS_RUNNING; break;
1395 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001396 LOG(FATAL) << "Unknown thread state " << thread->GetState();
Elliott Hughes499c5132011-11-17 14:55:11 -08001397 }
1398
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001399 *pSuspendStatus = (thread->IsSuspended() ? JDWP::SUSPEND_STATUS_SUSPENDED : JDWP::SUSPEND_STATUS_NOT_SUSPENDED);
Elliott Hughes499c5132011-11-17 14:55:11 -08001400
1401 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001402}
1403
Elliott Hughes2435a572012-02-17 16:07:41 -08001404JDWP::JdwpError Dbg::GetThreadSuspendCount(JDWP::ObjectId threadId, JDWP::ExpandBuf* pReply) {
1405 Thread* thread = DecodeThread(threadId);
1406 if (thread == NULL) {
1407 return JDWP::ERR_INVALID_THREAD;
1408 }
1409 expandBufAdd4BE(pReply, thread->GetSuspendCount());
1410 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001411}
1412
1413bool Dbg::ThreadExists(JDWP::ObjectId threadId) {
Elliott Hughes761928d2011-11-16 18:33:03 -08001414 return DecodeThread(threadId) != NULL;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001415}
1416
1417bool Dbg::IsSuspended(JDWP::ObjectId threadId) {
Elliott Hughes761928d2011-11-16 18:33:03 -08001418 return DecodeThread(threadId)->IsSuspended();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001419}
1420
Elliott Hughesa2155262011-11-16 16:26:58 -08001421void Dbg::GetThreadGroupThreadsImpl(Object* thread_group, JDWP::ObjectId** ppThreadIds, uint32_t* pThreadCount) {
1422 struct ThreadListVisitor {
1423 static void Visit(Thread* t, void* arg) {
1424 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
1425 }
1426
1427 void Visit(Thread* t) {
1428 if (t == Dbg::GetDebugThread()) {
1429 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
1430 // query all threads, so it's easier if we just don't tell them about this thread.
1431 return;
1432 }
1433 if (thread_group == NULL || t->GetThreadGroup() == thread_group) {
1434 threads.push_back(gRegistry->Add(t->GetPeer()));
1435 }
1436 }
1437
1438 Object* thread_group;
1439 std::vector<JDWP::ObjectId> threads;
1440 };
1441
1442 ThreadListVisitor tlv;
1443 tlv.thread_group = thread_group;
1444
1445 {
1446 ScopedThreadListLock thread_list_lock;
1447 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
1448 }
1449
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) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001470 struct CountStackDepthVisitor : public Thread::StackVisitor {
1471 CountStackDepthVisitor() : depth(0) {}
Elliott Hughes530fa002012-03-12 11:44:49 -07001472 bool VisitFrame(const Frame& f, uintptr_t) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08001473 if (f.HasMethod()) {
1474 ++depth;
1475 }
Elliott Hughes530fa002012-03-12 11:44:49 -07001476 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001477 }
1478 size_t depth;
1479 };
1480 CountStackDepthVisitor visitor;
Elliott Hughes86964332012-02-15 19:37:42 -08001481 thread->WalkStack(&visitor);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001482 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001483}
1484
Elliott Hughes86964332012-02-15 19:37:42 -08001485int Dbg::GetThreadFrameCount(JDWP::ObjectId threadId) {
1486 ScopedThreadListLock thread_list_lock;
1487 return GetStackDepth(DecodeThread(threadId));
1488}
1489
Elliott Hughes530fa002012-03-12 11:44:49 -07001490void Dbg::GetThreadFrame(JDWP::ObjectId threadId, int desired_frame_number, JDWP::FrameId* pFrameId, JDWP::JdwpLocation* pLoc) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001491 ScopedThreadListLock thread_list_lock;
1492 struct GetFrameVisitor : public Thread::StackVisitor {
1493 GetFrameVisitor(int desired_frame_number, JDWP::FrameId* pFrameId, JDWP::JdwpLocation* pLoc)
Elliott Hughes530fa002012-03-12 11:44:49 -07001494 : depth(0), desired_frame_number(desired_frame_number), pFrameId(pFrameId), pLoc(pLoc) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001495 }
Elliott Hughes530fa002012-03-12 11:44:49 -07001496 bool VisitFrame(const Frame& f, uintptr_t pc) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001497 if (!f.HasMethod()) {
Elliott Hughes530fa002012-03-12 11:44:49 -07001498 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08001499 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001500 if (depth == desired_frame_number) {
1501 *pFrameId = reinterpret_cast<JDWP::FrameId>(f.GetSP());
Elliott Hughesd07986f2011-12-06 18:27:45 -08001502 SetLocation(*pLoc, f.GetMethod(), pc);
Elliott Hughes530fa002012-03-12 11:44:49 -07001503 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001504 }
1505 ++depth;
Elliott Hughes530fa002012-03-12 11:44:49 -07001506 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08001507 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001508 int depth;
1509 int desired_frame_number;
1510 JDWP::FrameId* pFrameId;
1511 JDWP::JdwpLocation* pLoc;
1512 };
1513 GetFrameVisitor visitor(desired_frame_number, pFrameId, pLoc);
1514 visitor.desired_frame_number = desired_frame_number;
1515 DecodeThread(threadId)->WalkStack(&visitor);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001516}
1517
1518JDWP::ObjectId Dbg::GetThreadSelfId() {
Elliott Hughes475fc232011-10-25 15:00:35 -07001519 return gRegistry->Add(Thread::Current()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001520}
1521
Elliott Hughes475fc232011-10-25 15:00:35 -07001522void Dbg::SuspendVM() {
Elliott Hughesa2155262011-11-16 16:26:58 -08001523 ScopedThreadStateChange tsc(Thread::Current(), Thread::kRunnable); // TODO: do we really want to change back? should the JDWP thread be Runnable usually?
Elliott Hughes475fc232011-10-25 15:00:35 -07001524 Runtime::Current()->GetThreadList()->SuspendAll(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001525}
1526
1527void Dbg::ResumeVM() {
Elliott Hughes475fc232011-10-25 15:00:35 -07001528 Runtime::Current()->GetThreadList()->ResumeAll(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001529}
1530
1531void Dbg::SuspendThread(JDWP::ObjectId threadId) {
Elliott Hughes4e235312011-12-02 11:34:15 -08001532 Object* peer = gRegistry->Get<Object*>(threadId);
1533 ScopedThreadListLock thread_list_lock;
1534 Thread* thread = Thread::FromManagedThread(peer);
1535 if (thread == NULL) {
1536 LOG(WARNING) << "No such thread for suspend: " << peer;
1537 return;
1538 }
1539 Runtime::Current()->GetThreadList()->Suspend(thread, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001540}
1541
1542void Dbg::ResumeThread(JDWP::ObjectId threadId) {
Elliott Hughes4e235312011-12-02 11:34:15 -08001543 Object* peer = gRegistry->Get<Object*>(threadId);
1544 ScopedThreadListLock thread_list_lock;
1545 Thread* thread = Thread::FromManagedThread(peer);
1546 if (thread == NULL) {
1547 LOG(WARNING) << "No such thread for resume: " << peer;
1548 return;
1549 }
1550 Runtime::Current()->GetThreadList()->Resume(thread, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001551}
1552
1553void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07001554 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001555}
1556
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001557static Object* GetThis(Frame& f) {
Elliott Hughes86b00102011-12-05 17:54:26 -08001558 Method* m = f.GetMethod();
Elliott Hughes86b00102011-12-05 17:54:26 -08001559 Object* o = NULL;
1560 if (!m->IsNative() && !m->IsStatic()) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001561 uint16_t reg = DemangleSlot(0, m);
Elliott Hughes86b00102011-12-05 17:54:26 -08001562 o = reinterpret_cast<Object*>(f.GetVReg(m, reg));
1563 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001564 return o;
1565}
1566
1567void Dbg::GetThisObject(JDWP::FrameId frameId, JDWP::ObjectId* pThisId) {
1568 Method** sp = reinterpret_cast<Method**>(frameId);
1569 Frame f(sp);
1570 Object* o = GetThis(f);
Elliott Hughes86b00102011-12-05 17:54:26 -08001571 *pThisId = gRegistry->Add(o);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001572}
1573
Elliott Hughescccd84f2011-12-05 16:51:54 -08001574void Dbg::GetLocalValue(JDWP::ObjectId threadId, JDWP::FrameId frameId, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001575 Method** sp = reinterpret_cast<Method**>(frameId);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001576 Frame f(sp);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001577 Method* m = f.GetMethod();
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001578 uint16_t reg = DemangleSlot(slot, m);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001579
1580 const VmapTable vmap_table(m->GetVmapTableRaw());
1581 uint32_t vmap_offset;
1582 if (vmap_table.IsInContext(reg, vmap_offset)) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001583 UNIMPLEMENTED(FATAL) << "Don't know how to pull locals from callee save frames: " << vmap_offset;
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001584 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001585
Elliott Hughesad3da692012-02-24 16:51:35 -08001586 // TODO: check that the tag is compatible with the actual type of the slot!
1587
Elliott Hughesdbb40792011-11-18 17:05:22 -08001588 switch (tag) {
1589 case JDWP::JT_BOOLEAN:
1590 {
Elliott Hughescccd84f2011-12-05 16:51:54 -08001591 CHECK_EQ(width, 1U);
Elliott Hughes1bba14f2011-12-01 18:00:36 -08001592 uint32_t intVal = f.GetVReg(m, reg);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001593 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001594 JDWP::Set1(buf+1, intVal != 0);
1595 }
1596 break;
1597 case JDWP::JT_BYTE:
1598 {
Elliott Hughescccd84f2011-12-05 16:51:54 -08001599 CHECK_EQ(width, 1U);
Elliott Hughes1bba14f2011-12-01 18:00:36 -08001600 uint32_t intVal = f.GetVReg(m, reg);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001601 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001602 JDWP::Set1(buf+1, intVal);
1603 }
1604 break;
1605 case JDWP::JT_SHORT:
1606 case JDWP::JT_CHAR:
1607 {
Elliott Hughescccd84f2011-12-05 16:51:54 -08001608 CHECK_EQ(width, 2U);
Elliott Hughes1bba14f2011-12-01 18:00:36 -08001609 uint32_t intVal = f.GetVReg(m, reg);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001610 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001611 JDWP::Set2BE(buf+1, intVal);
1612 }
1613 break;
1614 case JDWP::JT_INT:
1615 case JDWP::JT_FLOAT:
1616 {
Elliott Hughescccd84f2011-12-05 16:51:54 -08001617 CHECK_EQ(width, 4U);
Elliott Hughes1bba14f2011-12-01 18:00:36 -08001618 uint32_t intVal = f.GetVReg(m, reg);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001619 VLOG(jdwp) << "get int/float local " << reg << " = " << intVal;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001620 JDWP::Set4BE(buf+1, intVal);
1621 }
1622 break;
1623 case JDWP::JT_ARRAY:
1624 {
Elliott Hughescccd84f2011-12-05 16:51:54 -08001625 CHECK_EQ(width, sizeof(JDWP::ObjectId));
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001626 Object* o = reinterpret_cast<Object*>(f.GetVReg(m, reg));
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001627 VLOG(jdwp) << "get array local " << reg << " = " << o;
Elliott Hughes88c5c352012-03-15 18:49:48 -07001628 if (!Runtime::Current()->GetHeap()->IsHeapAddress(o)) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001629 LOG(FATAL) << "Register " << reg << " expected to hold array: " << o;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001630 }
1631 JDWP::SetObjectId(buf+1, gRegistry->Add(o));
1632 }
1633 break;
Elliott Hughesad3da692012-02-24 16:51:35 -08001634 case JDWP::JT_CLASS_LOADER:
1635 case JDWP::JT_CLASS_OBJECT:
Elliott Hughesdbb40792011-11-18 17:05:22 -08001636 case JDWP::JT_OBJECT:
Elliott Hughesad3da692012-02-24 16:51:35 -08001637 case JDWP::JT_STRING:
1638 case JDWP::JT_THREAD:
1639 case JDWP::JT_THREAD_GROUP:
Elliott Hughesdbb40792011-11-18 17:05:22 -08001640 {
Elliott Hughescccd84f2011-12-05 16:51:54 -08001641 CHECK_EQ(width, sizeof(JDWP::ObjectId));
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001642 Object* o = reinterpret_cast<Object*>(f.GetVReg(m, reg));
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001643 VLOG(jdwp) << "get object local " << reg << " = " << o;
Elliott Hughes88c5c352012-03-15 18:49:48 -07001644 if (!Runtime::Current()->GetHeap()->IsHeapAddress(o)) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001645 LOG(FATAL) << "Register " << reg << " expected to hold object: " << o;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001646 }
1647 tag = TagFromObject(o);
1648 JDWP::SetObjectId(buf+1, gRegistry->Add(o));
1649 }
1650 break;
1651 case JDWP::JT_DOUBLE:
1652 case JDWP::JT_LONG:
1653 {
Elliott Hughescccd84f2011-12-05 16:51:54 -08001654 CHECK_EQ(width, 8U);
Elliott Hughes1bba14f2011-12-01 18:00:36 -08001655 uint32_t lo = f.GetVReg(m, reg);
1656 uint64_t hi = f.GetVReg(m, reg + 1);
1657 uint64_t longVal = (hi << 32) | lo;
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001658 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001659 JDWP::Set8BE(buf+1, longVal);
1660 }
1661 break;
1662 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001663 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001664 break;
1665 }
1666
1667 // Prepend tag, which may have been updated.
1668 JDWP::Set1(buf, tag);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001669}
1670
Elliott Hughesdbb40792011-11-18 17:05:22 -08001671void Dbg::SetLocalValue(JDWP::ObjectId threadId, JDWP::FrameId frameId, int slot, JDWP::JdwpTag tag, uint64_t value, size_t width) {
Elliott Hughescccd84f2011-12-05 16:51:54 -08001672 Method** sp = reinterpret_cast<Method**>(frameId);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001673 Frame f(sp);
Elliott Hughescccd84f2011-12-05 16:51:54 -08001674 Method* m = f.GetMethod();
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001675 uint16_t reg = DemangleSlot(slot, m);
Elliott Hughescccd84f2011-12-05 16:51:54 -08001676
1677 const VmapTable vmap_table(m->GetVmapTableRaw());
1678 uint32_t vmap_offset;
1679 if (vmap_table.IsInContext(reg, vmap_offset)) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001680 UNIMPLEMENTED(FATAL) << "Don't know how to pull locals from callee save frames: " << vmap_offset;
Elliott Hughescccd84f2011-12-05 16:51:54 -08001681 }
1682
Elliott Hughesad3da692012-02-24 16:51:35 -08001683 // TODO: check that the tag is compatible with the actual type of the slot!
1684
Elliott Hughescccd84f2011-12-05 16:51:54 -08001685 switch (tag) {
1686 case JDWP::JT_BOOLEAN:
1687 case JDWP::JT_BYTE:
1688 CHECK_EQ(width, 1U);
1689 f.SetVReg(m, reg, static_cast<uint32_t>(value));
1690 break;
1691 case JDWP::JT_SHORT:
1692 case JDWP::JT_CHAR:
1693 CHECK_EQ(width, 2U);
1694 f.SetVReg(m, reg, static_cast<uint32_t>(value));
1695 break;
1696 case JDWP::JT_INT:
1697 case JDWP::JT_FLOAT:
1698 CHECK_EQ(width, 4U);
1699 f.SetVReg(m, reg, static_cast<uint32_t>(value));
1700 break;
1701 case JDWP::JT_ARRAY:
1702 case JDWP::JT_OBJECT:
1703 case JDWP::JT_STRING:
1704 {
1705 CHECK_EQ(width, sizeof(JDWP::ObjectId));
1706 Object* o = gRegistry->Get<Object*>(static_cast<JDWP::ObjectId>(value));
Elliott Hughesad3da692012-02-24 16:51:35 -08001707 if (o == kInvalidObject) {
1708 UNIMPLEMENTED(FATAL) << "return an error code when given an invalid object to store";
1709 }
Elliott Hughescccd84f2011-12-05 16:51:54 -08001710 f.SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)));
1711 }
1712 break;
1713 case JDWP::JT_DOUBLE:
1714 case JDWP::JT_LONG:
1715 CHECK_EQ(width, 8U);
1716 f.SetVReg(m, reg, static_cast<uint32_t>(value));
1717 f.SetVReg(m, reg + 1, static_cast<uint32_t>(value >> 32));
1718 break;
1719 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001720 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughescccd84f2011-12-05 16:51:54 -08001721 break;
1722 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001723}
1724
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001725void Dbg::PostLocationEvent(const Method* m, int dex_pc, Object* this_object, int event_flags) {
1726 Class* c = m->GetDeclaringClass();
1727
1728 JDWP::JdwpLocation location;
1729 location.typeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1730 location.classId = gRegistry->Add(c);
1731 location.methodId = ToMethodId(m);
Elliott Hughes972a47b2012-02-21 18:16:06 -08001732 location.dex_pc = m->IsNative() ? -1 : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001733
1734 // Note we use "NoReg" so we don't keep track of references that are
1735 // never actually sent to the debugger. 'this_id' is only used to
1736 // compare against registered events...
1737 JDWP::ObjectId this_id = static_cast<JDWP::ObjectId>(reinterpret_cast<uintptr_t>(this_object));
1738 if (gJdwpState->PostLocationEvent(&location, this_id, event_flags)) {
1739 // ...unless there's a registered event, in which case we
1740 // need to really track the class and 'this'.
1741 gRegistry->Add(c);
1742 gRegistry->Add(this_object);
1743 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001744}
1745
Elliott Hughesd07986f2011-12-06 18:27:45 -08001746void Dbg::PostException(Method** sp, Method* throwMethod, uintptr_t throwNativePc, Method* catchMethod, uintptr_t catchNativePc, Object* exception) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08001747 if (!gDebuggerActive) {
1748 return;
1749 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001750
Elliott Hughesd07986f2011-12-06 18:27:45 -08001751 JDWP::JdwpLocation throw_location;
1752 SetLocation(throw_location, throwMethod, throwNativePc);
1753 JDWP::JdwpLocation catch_location;
1754 SetLocation(catch_location, catchMethod, catchNativePc);
1755
1756 // We need 'this' for InstanceOnly filters.
1757 JDWP::ObjectId this_id;
1758 GetThisObject(reinterpret_cast<JDWP::FrameId>(sp), &this_id);
1759
1760 /*
1761 * Hand the event to the JDWP exception handler. Note we're using the
1762 * "NoReg" objectID on the exception, which is not strictly correct --
1763 * the exception object WILL be passed up to the debugger if the
1764 * debugger is interested in the event. We do this because the current
1765 * implementation of the debugger object registry never throws anything
1766 * away, and some people were experiencing a fatal build up of exception
1767 * objects when dealing with certain libraries.
1768 */
1769 JDWP::ObjectId exception_id = static_cast<JDWP::ObjectId>(reinterpret_cast<uintptr_t>(exception));
1770 JDWP::RefTypeId exception_class_id = gRegistry->Add(exception->GetClass());
1771
1772 gJdwpState->PostException(&throw_location, exception_id, exception_class_id, &catch_location, this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001773}
1774
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001775void Dbg::PostClassPrepare(Class* c) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001776 if (!gDebuggerActive) {
1777 return;
1778 }
1779
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001780 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001781 // debuggers seem to like that. There might be some advantage to honesty,
1782 // since the class may not yet be verified.
1783 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1784 JDWP::JdwpTypeTag tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1785 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c), ClassHelper(c).GetDescriptor(), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001786}
1787
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001788void Dbg::UpdateDebugger(int32_t dex_pc, Thread* self, Method** sp) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08001789 if (!gDebuggerActive || dex_pc == -2 /* fake method exit */) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001790 return;
1791 }
1792
Elliott Hughes86964332012-02-15 19:37:42 -08001793 Frame f(sp);
1794 f.Next(); // Skip callee save frame.
1795 Method* m = f.GetMethod();
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001796
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001797 if (dex_pc == -1) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08001798 // We use a pc of -1 to represent method entry, since we might branch back to pc 0 later.
1799 // This means that for this special notification, there can't be anything else interesting
1800 // going on, so we're done already.
1801 Dbg::PostLocationEvent(m, 0, GetThis(f), kMethodEntry);
1802 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001803 }
1804
Elliott Hughes2aa2e392012-02-17 17:15:43 -08001805 int event_flags = 0;
1806
Elliott Hughes86964332012-02-15 19:37:42 -08001807 if (IsBreakpoint(m, dex_pc)) {
1808 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001809 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001810
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001811 // If the debugger is single-stepping one of our threads, check to
1812 // see if we're that thread and we've reached a step point.
Elliott Hughes86964332012-02-15 19:37:42 -08001813 if (gSingleStepControl.is_active && gSingleStepControl.thread == self) {
1814 CHECK(!m->IsNative());
1815 if (gSingleStepControl.step_depth == JDWP::SD_INTO) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001816 // Step into method calls. We break when the line number
1817 // or method pointer changes. If we're in SS_MIN mode, we
1818 // always stop.
Elliott Hughes86964332012-02-15 19:37:42 -08001819 if (gSingleStepControl.method != m) {
1820 event_flags |= kSingleStep;
1821 VLOG(jdwp) << "SS new method";
1822 } else if (gSingleStepControl.step_size == JDWP::SS_MIN) {
1823 event_flags |= kSingleStep;
1824 VLOG(jdwp) << "SS new instruction";
Elliott Hughes2435a572012-02-17 16:07:41 -08001825 } else if (gSingleStepControl.dex_pcs.find(dex_pc) == gSingleStepControl.dex_pcs.end()) {
1826 event_flags |= kSingleStep;
1827 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001828 }
Elliott Hughes86964332012-02-15 19:37:42 -08001829 } else if (gSingleStepControl.step_depth == JDWP::SD_OVER) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001830 // Step over method calls. We break when the line number is
1831 // different and the frame depth is <= the original frame
1832 // depth. (We can't just compare on the method, because we
1833 // might get unrolled past it by an exception, and it's tricky
1834 // to identify recursion.)
Elliott Hughes86964332012-02-15 19:37:42 -08001835
1836 // TODO: can we just use the value of 'sp'?
1837 int stack_depth = GetStackDepth(self);
1838
1839 if (stack_depth < gSingleStepControl.stack_depth) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001840 // popped up one or more frames, always trigger
Elliott Hughes86964332012-02-15 19:37:42 -08001841 event_flags |= kSingleStep;
1842 VLOG(jdwp) << "SS method pop";
1843 } else if (stack_depth == gSingleStepControl.stack_depth) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001844 // same depth, see if we moved
Elliott Hughes86964332012-02-15 19:37:42 -08001845 if (gSingleStepControl.step_size == JDWP::SS_MIN) {
1846 event_flags |= kSingleStep;
1847 VLOG(jdwp) << "SS new instruction";
Elliott Hughes2435a572012-02-17 16:07:41 -08001848 } else if (gSingleStepControl.dex_pcs.find(dex_pc) == gSingleStepControl.dex_pcs.end()) {
1849 event_flags |= kSingleStep;
1850 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001851 }
1852 }
1853 } else {
Elliott Hughes86964332012-02-15 19:37:42 -08001854 CHECK_EQ(gSingleStepControl.step_depth, JDWP::SD_OUT);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001855 // Return from the current method. We break when the frame
1856 // depth pops up.
1857
1858 // This differs from the "method exit" break in that it stops
1859 // with the PC at the next instruction in the returned-to
1860 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08001861
1862 // TODO: can we just use the value of 'sp'?
1863 int stack_depth = GetStackDepth(self);
1864 if (stack_depth < gSingleStepControl.stack_depth) {
1865 event_flags |= kSingleStep;
1866 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001867 }
1868 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001869 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001870
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001871 // Check to see if this is a "return" instruction. JDWP says we should
1872 // send the event *after* the code has been executed, but it also says
1873 // the location we provide is the last instruction. Since the "return"
1874 // instruction has no interesting side effects, we should be safe.
1875 // (We can't just move this down to the returnFromMethod label because
1876 // we potentially need to combine it with other events.)
1877 // We're also not supposed to generate a method exit event if the method
1878 // terminates "with a thrown exception".
Elliott Hughes86964332012-02-15 19:37:42 -08001879 if (dex_pc >= 0) {
1880 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
1881 CHECK(code_item != NULL);
1882 CHECK_LT(dex_pc, static_cast<int32_t>(code_item->insns_size_in_code_units_));
1883 if (Instruction::At(&code_item->insns_[dex_pc])->IsReturn()) {
1884 event_flags |= kMethodExit;
1885 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001886 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001887
1888 // If there's something interesting going on, see if it matches one
1889 // of the debugger filters.
1890 if (event_flags != 0) {
Elliott Hughes86964332012-02-15 19:37:42 -08001891 Dbg::PostLocationEvent(m, dex_pc, GetThis(f), event_flags);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001892 }
1893}
1894
Elliott Hughes86964332012-02-15 19:37:42 -08001895void Dbg::WatchLocation(const JDWP::JdwpLocation* location) {
1896 MutexLock mu(gBreakpointsLock);
1897 Method* m = FromMethodId(location->methodId);
Elliott Hughes972a47b2012-02-21 18:16:06 -08001898 gBreakpoints.push_back(Breakpoint(m, location->dex_pc));
Elliott Hughes86964332012-02-15 19:37:42 -08001899 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " << gBreakpoints[gBreakpoints.size() - 1];
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001900}
1901
Elliott Hughes86964332012-02-15 19:37:42 -08001902void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location) {
1903 MutexLock mu(gBreakpointsLock);
1904 Method* m = FromMethodId(location->methodId);
1905 for (size_t i = 0; i < gBreakpoints.size(); ++i) {
Elliott Hughes972a47b2012-02-21 18:16:06 -08001906 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == location->dex_pc) {
Elliott Hughes86964332012-02-15 19:37:42 -08001907 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
1908 gBreakpoints.erase(gBreakpoints.begin() + i);
1909 return;
1910 }
1911 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001912}
1913
Elliott Hughes2435a572012-02-17 16:07:41 -08001914JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId threadId, JDWP::JdwpStepSize step_size, JDWP::JdwpStepDepth step_depth) {
Elliott Hughes86964332012-02-15 19:37:42 -08001915 Thread* thread = DecodeThread(threadId);
Elliott Hughes2435a572012-02-17 16:07:41 -08001916 if (thread == NULL) {
1917 return JDWP::ERR_INVALID_THREAD;
1918 }
Elliott Hughes86964332012-02-15 19:37:42 -08001919
1920 // TODO: there's no theoretical reason why we couldn't support single-stepping
1921 // of multiple threads at once, but we never did so historically.
1922 if (gSingleStepControl.thread != NULL && thread != gSingleStepControl.thread) {
1923 LOG(WARNING) << "single-step already active for " << *gSingleStepControl.thread
1924 << "; switching to " << *thread;
1925 }
1926
Elliott Hughes2435a572012-02-17 16:07:41 -08001927 //
1928 // Work out what Method* we're in, the current line number, and how deep the stack currently
1929 // is for step-out.
1930 //
1931
Elliott Hughes86964332012-02-15 19:37:42 -08001932 struct SingleStepStackVisitor : public Thread::StackVisitor {
1933 SingleStepStackVisitor() {
1934 gSingleStepControl.method = NULL;
1935 gSingleStepControl.stack_depth = 0;
1936 }
Elliott Hughes530fa002012-03-12 11:44:49 -07001937 bool VisitFrame(const Frame& f, uintptr_t pc) {
Elliott Hughes86964332012-02-15 19:37:42 -08001938 if (f.HasMethod()) {
1939 ++gSingleStepControl.stack_depth;
1940 if (gSingleStepControl.method == NULL) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001941 const Method* m = f.GetMethod();
1942 const DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
1943 gSingleStepControl.method = m;
1944 gSingleStepControl.line_number = -1;
1945 if (dex_cache != NULL) {
1946 const DexFile& dex_file = Runtime::Current()->GetClassLinker()->FindDexFile(dex_cache);
1947 gSingleStepControl.line_number = dex_file.GetLineNumFromPC(m, m->ToDexPC(pc));
1948 }
Elliott Hughes86964332012-02-15 19:37:42 -08001949 }
1950 }
Elliott Hughes530fa002012-03-12 11:44:49 -07001951 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08001952 }
1953 };
1954 SingleStepStackVisitor visitor;
1955 thread->WalkStack(&visitor);
1956
Elliott Hughes2435a572012-02-17 16:07:41 -08001957 //
1958 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
1959 //
1960
1961 struct DebugCallbackContext {
1962 DebugCallbackContext() {
1963 last_pc_valid = false;
1964 last_pc = 0;
Elliott Hughes2435a572012-02-17 16:07:41 -08001965 }
1966
1967 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
1968 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
1969 if (static_cast<int32_t>(line_number) == gSingleStepControl.line_number) {
1970 if (!context->last_pc_valid) {
1971 // Everything from this address until the next line change is ours.
1972 context->last_pc = address;
1973 context->last_pc_valid = true;
1974 }
1975 // Otherwise, if we're already in a valid range for this line,
1976 // just keep going (shouldn't really happen)...
1977 } else if (context->last_pc_valid) { // and the line number is new
1978 // Add everything from the last entry up until here to the set
1979 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
1980 gSingleStepControl.dex_pcs.insert(dex_pc);
1981 }
1982 context->last_pc_valid = false;
1983 }
1984 return false; // There may be multiple entries for any given line.
1985 }
1986
1987 ~DebugCallbackContext() {
1988 // If the line number was the last in the position table...
1989 if (last_pc_valid) {
1990 size_t end = MethodHelper(gSingleStepControl.method).GetCodeItem()->insns_size_in_code_units_;
1991 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
1992 gSingleStepControl.dex_pcs.insert(dex_pc);
1993 }
1994 }
1995 }
1996
1997 bool last_pc_valid;
1998 uint32_t last_pc;
1999 };
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08002000 gSingleStepControl.dex_pcs.clear();
Elliott Hughes2435a572012-02-17 16:07:41 -08002001 const Method* m = gSingleStepControl.method;
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08002002 if (m->IsNative()) {
2003 gSingleStepControl.line_number = -1;
2004 } else {
2005 DebugCallbackContext context;
2006 MethodHelper mh(m);
2007 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
2008 DebugCallbackContext::Callback, NULL, &context);
2009 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002010
2011 //
2012 // Everything else...
2013 //
2014
Elliott Hughes86964332012-02-15 19:37:42 -08002015 gSingleStepControl.thread = thread;
2016 gSingleStepControl.step_size = step_size;
2017 gSingleStepControl.step_depth = step_depth;
2018 gSingleStepControl.is_active = true;
2019
Elliott Hughes2435a572012-02-17 16:07:41 -08002020 if (VLOG_IS_ON(jdwp)) {
2021 VLOG(jdwp) << "Single-step thread: " << *gSingleStepControl.thread;
2022 VLOG(jdwp) << "Single-step step size: " << gSingleStepControl.step_size;
2023 VLOG(jdwp) << "Single-step step depth: " << gSingleStepControl.step_depth;
2024 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(gSingleStepControl.method);
2025 VLOG(jdwp) << "Single-step current line: " << gSingleStepControl.line_number;
2026 VLOG(jdwp) << "Single-step current stack depth: " << gSingleStepControl.stack_depth;
2027 VLOG(jdwp) << "Single-step dex_pc values:";
2028 for (std::set<uint32_t>::iterator it = gSingleStepControl.dex_pcs.begin() ; it != gSingleStepControl.dex_pcs.end(); ++it) {
Elliott Hughes229feb72012-02-23 13:33:29 -08002029 VLOG(jdwp) << StringPrintf(" %#x", *it);
Elliott Hughes2435a572012-02-17 16:07:41 -08002030 }
2031 }
2032
2033 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002034}
2035
2036void Dbg::UnconfigureStep(JDWP::ObjectId threadId) {
Elliott Hughes86964332012-02-15 19:37:42 -08002037 gSingleStepControl.is_active = false;
2038 gSingleStepControl.thread = NULL;
Elliott Hughes2435a572012-02-17 16:07:41 -08002039 gSingleStepControl.dex_pcs.clear();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002040}
2041
Elliott Hughes45651fd2012-02-21 15:48:20 -08002042static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
2043 switch (tag) {
2044 default:
2045 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
2046
2047 // Primitives.
2048 case JDWP::JT_BYTE: return 'B';
2049 case JDWP::JT_CHAR: return 'C';
2050 case JDWP::JT_FLOAT: return 'F';
2051 case JDWP::JT_DOUBLE: return 'D';
2052 case JDWP::JT_INT: return 'I';
2053 case JDWP::JT_LONG: return 'J';
2054 case JDWP::JT_SHORT: return 'S';
2055 case JDWP::JT_VOID: return 'V';
2056 case JDWP::JT_BOOLEAN: return 'Z';
2057
2058 // Reference types.
2059 case JDWP::JT_ARRAY:
2060 case JDWP::JT_OBJECT:
2061 case JDWP::JT_STRING:
2062 case JDWP::JT_THREAD:
2063 case JDWP::JT_THREAD_GROUP:
2064 case JDWP::JT_CLASS_LOADER:
2065 case JDWP::JT_CLASS_OBJECT:
2066 return 'L';
2067 }
2068}
2069
2070JDWP::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 -08002071 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2072
2073 Thread* targetThread = NULL;
2074 DebugInvokeReq* req = NULL;
2075 {
2076 ScopedThreadListLock thread_list_lock;
2077 targetThread = DecodeThread(threadId);
2078 if (targetThread == NULL) {
2079 LOG(ERROR) << "InvokeMethod request for non-existent thread " << threadId;
2080 return JDWP::ERR_INVALID_THREAD;
2081 }
2082 req = targetThread->GetInvokeReq();
2083 if (!req->ready) {
2084 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
2085 return JDWP::ERR_INVALID_THREAD;
2086 }
2087
2088 /*
2089 * We currently have a bug where we don't successfully resume the
2090 * target thread if the suspend count is too deep. We're expected to
2091 * require one "resume" for each "suspend", but when asked to execute
2092 * a method we have to resume fully and then re-suspend it back to the
2093 * same level. (The easiest way to cause this is to type "suspend"
2094 * multiple times in jdb.)
2095 *
2096 * It's unclear what this means when the event specifies "resume all"
2097 * and some threads are suspended more deeply than others. This is
2098 * a rare problem, so for now we just prevent it from hanging forever
2099 * by rejecting the method invocation request. Without this, we will
2100 * be stuck waiting on a suspended thread.
2101 */
2102 int suspend_count = targetThread->GetSuspendCount();
2103 if (suspend_count > 1) {
2104 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
2105 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
2106 }
2107
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002108 JDWP::JdwpError status;
Elliott Hughes45651fd2012-02-21 15:48:20 -08002109 Object* receiver = gRegistry->Get<Object*>(objectId);
2110 if (receiver == kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002111 return JDWP::ERR_INVALID_OBJECT;
2112 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002113
2114 Object* thread = gRegistry->Get<Object*>(threadId);
2115 if (thread == kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002116 return JDWP::ERR_INVALID_OBJECT;
2117 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002118 // TODO: check that 'thread' is actually a java.lang.Thread!
2119
2120 Class* c = DecodeClass(classId, status);
2121 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002122 return status;
2123 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002124
2125 Method* m = FromMethodId(methodId);
2126 if (m->IsStatic() != (receiver == NULL)) {
2127 return JDWP::ERR_INVALID_METHODID;
2128 }
2129 if (m->IsStatic()) {
2130 if (m->GetDeclaringClass() != c) {
2131 return JDWP::ERR_INVALID_METHODID;
2132 }
2133 } else {
2134 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
2135 return JDWP::ERR_INVALID_METHODID;
2136 }
2137 }
2138
2139 // Check the argument list matches the method.
2140 MethodHelper mh(m);
2141 if (mh.GetShortyLength() - 1 != arg_count) {
2142 return JDWP::ERR_ILLEGAL_ARGUMENT;
2143 }
2144 const char* shorty = mh.GetShorty();
2145 for (size_t i = 0; i < arg_count; ++i) {
2146 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
2147 return JDWP::ERR_ILLEGAL_ARGUMENT;
2148 }
2149 }
2150
2151 req->receiver_ = receiver;
2152 req->thread_ = thread;
2153 req->class_ = c;
2154 req->method_ = m;
2155 req->arg_count_ = arg_count;
2156 req->arg_values_ = arg_values;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002157 req->options_ = options;
2158 req->invoke_needed_ = true;
2159 }
2160
2161 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
2162 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
2163 // call, and it's unwise to hold it during WaitForSuspend.
2164
2165 {
2166 /*
2167 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
2168 * so the VM can suspend for a GC if the invoke request causes us to
2169 * run out of memory. It's also a good idea to change it before locking
2170 * the invokeReq mutex, although that should never be held for long.
2171 */
2172 ScopedThreadStateChange tsc(Thread::Current(), Thread::kVmWait);
2173
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002174 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002175 {
2176 MutexLock mu(req->lock_);
2177
2178 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002179 VLOG(jdwp) << " Resuming all threads";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002180 thread_list->ResumeAll(true);
2181 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002182 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002183 thread_list->Resume(targetThread, true);
2184 }
2185
2186 // Wait for the request to finish executing.
2187 while (req->invoke_needed_) {
2188 req->cond_.Wait(req->lock_);
2189 }
2190 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002191 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002192
2193 /* wait for thread to re-suspend itself */
2194 targetThread->WaitUntilSuspended();
2195 //dvmWaitForSuspend(targetThread);
2196 }
2197
2198 /*
2199 * Suspend the threads. We waited for the target thread to suspend
2200 * itself, so all we need to do is suspend the others.
2201 *
2202 * The suspendAllThreads() call will double-suspend the event thread,
2203 * so we want to resume the target thread once to keep the books straight.
2204 */
2205 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002206 VLOG(jdwp) << " Suspending all threads";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002207 thread_list->SuspendAll(true);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002208 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002209 thread_list->Resume(targetThread, true);
2210 }
2211
2212 // Copy the result.
2213 *pResultTag = req->result_tag;
2214 if (IsPrimitiveTag(req->result_tag)) {
2215 *pResultValue = req->result_value.j;
2216 } else {
2217 *pResultValue = gRegistry->Add(req->result_value.l);
2218 }
2219 *pExceptionId = req->exception;
2220 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002221}
2222
2223void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08002224 Thread* self = Thread::Current();
2225
2226 // We can be called while an exception is pending in the VM. We need
2227 // to preserve that across the method invocation.
2228 SirtRef<Throwable> old_exception(self->GetException());
2229 self->ClearException();
2230
2231 ScopedThreadStateChange tsc(self, Thread::kRunnable);
2232
2233 // Translate the method through the vtable, unless the debugger wants to suppress it.
2234 Method* m = pReq->method_;
2235 if ((pReq->options_ & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver_ != NULL) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08002236 Method* actual_method = pReq->class_->FindVirtualMethodForVirtualOrInterface(pReq->method_);
2237 if (actual_method != m) {
2238 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m) << " to " << PrettyMethod(actual_method);
2239 m = actual_method;
2240 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08002241 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002242 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002243 CHECK(m != NULL);
2244
2245 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
2246
Elliott Hughes45651fd2012-02-21 15:48:20 -08002247 LOG(INFO) << "self=" << self << " pReq->receiver_=" << pReq->receiver_ << " m=" << m << " #" << pReq->arg_count_ << " " << pReq->arg_values_;
2248 pReq->result_value = InvokeWithJValues(self, pReq->receiver_, m, reinterpret_cast<JValue*>(pReq->arg_values_));
Elliott Hughesd07986f2011-12-06 18:27:45 -08002249
2250 pReq->exception = gRegistry->Add(self->GetException());
2251 pReq->result_tag = BasicTagFromDescriptor(MethodHelper(m).GetShorty());
2252 if (pReq->exception != 0) {
2253 Object* exc = self->GetException();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002254 VLOG(jdwp) << " JDWP invocation returning with exception=" << exc << " " << PrettyTypeOf(exc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002255 self->ClearException();
2256 pReq->result_value.j = 0;
2257 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
2258 /* if no exception thrown, examine object result more closely */
2259 JDWP::JdwpTag new_tag = TagFromObject(pReq->result_value.l);
2260 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002261 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002262 pReq->result_tag = new_tag;
2263 }
2264
2265 /*
2266 * Register the object. We don't actually need an ObjectId yet,
2267 * but we do need to be sure that the GC won't move or discard the
2268 * object when we switch out of RUNNING. The ObjectId conversion
2269 * will add the object to the "do not touch" list.
2270 *
2271 * We can't use the "tracked allocation" mechanism here because
2272 * the object is going to be handed off to a different thread.
2273 */
2274 gRegistry->Add(pReq->result_value.l);
2275 }
2276
2277 if (old_exception.get() != NULL) {
2278 self->SetException(old_exception.get());
2279 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002280}
2281
Elliott Hughesd07986f2011-12-06 18:27:45 -08002282/*
2283 * Register an object ID that might not have been registered previously.
2284 *
2285 * Normally this wouldn't happen -- the conversion to an ObjectId would
2286 * have added the object to the registry -- but in some cases (e.g.
2287 * throwing exceptions) we really want to do the registration late.
2288 */
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002289void Dbg::RegisterObjectId(JDWP::ObjectId id) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08002290 gRegistry->Add(reinterpret_cast<Object*>(id));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002291}
2292
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002293/*
2294 * "buf" contains a full JDWP packet, possibly with multiple chunks. We
2295 * need to process each, accumulate the replies, and ship the whole thing
2296 * back.
2297 *
2298 * Returns "true" if we have a reply. The reply buffer is newly allocated,
2299 * and includes the chunk type/length, followed by the data.
2300 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002301 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002302 * chunk. If this becomes inconvenient we will need to adapt.
2303 */
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002304bool Dbg::DdmHandlePacket(const uint8_t* buf, int dataLen, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002305 CHECK_GE(dataLen, 0);
2306
2307 Thread* self = Thread::Current();
2308 JNIEnv* env = self->GetJniEnv();
2309
Elliott Hughes844f9a02012-01-24 20:19:58 -08002310 static jclass Chunk_class = CacheClass(env, "org/apache/harmony/dalvik/ddmc/Chunk");
2311 static jclass DdmServer_class = CacheClass(env, "org/apache/harmony/dalvik/ddmc/DdmServer");
2312 static jmethodID dispatch_mid = env->GetStaticMethodID(DdmServer_class, "dispatch", "(I[BII)Lorg/apache/harmony/dalvik/ddmc/Chunk;");
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002313 static jfieldID data_fid = env->GetFieldID(Chunk_class, "data", "[B");
2314 static jfieldID length_fid = env->GetFieldID(Chunk_class, "length", "I");
2315 static jfieldID offset_fid = env->GetFieldID(Chunk_class, "offset", "I");
2316 static jfieldID type_fid = env->GetFieldID(Chunk_class, "type", "I");
2317
2318 // Create a byte[] corresponding to 'buf'.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002319 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(dataLen));
2320 if (dataArray.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002321 LOG(WARNING) << "byte[] allocation failed: " << dataLen;
2322 env->ExceptionClear();
2323 return false;
2324 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002325 env->SetByteArrayRegion(dataArray.get(), 0, dataLen, reinterpret_cast<const jbyte*>(buf));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002326
2327 const int kChunkHdrLen = 8;
2328
2329 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002330 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughesf7c3b662011-10-27 12:04:56 -07002331 jint type = JDWP::Get4BE(reinterpret_cast<const uint8_t*>(&contents[0]));
2332 jint length = JDWP::Get4BE(reinterpret_cast<const uint8_t*>(&contents[4]));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002333 jint offset = kChunkHdrLen;
2334 if (offset + length > dataLen) {
2335 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%d)", length, dataLen);
2336 return false;
2337 }
2338
2339 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002340 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(DdmServer_class, dispatch_mid, type, dataArray.get(), offset, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002341 if (env->ExceptionCheck()) {
2342 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
2343 env->ExceptionDescribe();
2344 env->ExceptionClear();
2345 return false;
2346 }
2347
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002348 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002349 return false;
2350 }
2351
2352 /*
2353 * Pull the pieces out of the chunk. We copy the results into a
2354 * newly-allocated buffer that the caller can free. We don't want to
2355 * continue using the Chunk object because nothing has a reference to it.
2356 *
2357 * We could avoid this by returning type/data/offset/length and having
2358 * the caller be aware of the object lifetime issues, but that
2359 * integrates the JDWP code more tightly into the VM, and doesn't work
2360 * if we have responses for multiple chunks.
2361 *
2362 * So we're pretty much stuck with copying data around multiple times.
2363 */
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002364 ScopedLocalRef<jbyteArray> replyData(env, reinterpret_cast<jbyteArray>(env->GetObjectField(chunk.get(), data_fid)));
2365 length = env->GetIntField(chunk.get(), length_fid);
2366 offset = env->GetIntField(chunk.get(), offset_fid);
2367 type = env->GetIntField(chunk.get(), type_fid);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002368
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002369 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 -07002370 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002371 return false;
2372 }
2373
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002374 jsize replyLength = env->GetArrayLength(replyData.get());
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002375 if (offset + length > replyLength) {
2376 LOG(WARNING) << StringPrintf("chunk off=%d len=%d exceeds reply array len %d", offset, length, replyLength);
2377 return false;
2378 }
2379
2380 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
2381 if (reply == NULL) {
2382 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
2383 return false;
2384 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07002385 JDWP::Set4BE(reply + 0, type);
2386 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002387 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002388
2389 *pReplyBuf = reply;
2390 *pReplyLen = length + kChunkHdrLen;
2391
Elliott Hughesba8eee12012-01-24 20:25:24 -08002392 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s buf=%p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002393 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002394}
2395
Elliott Hughesa2155262011-11-16 16:26:58 -08002396void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002397 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07002398
2399 Thread* self = Thread::Current();
2400 if (self->GetState() != Thread::kRunnable) {
2401 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
2402 /* try anyway? */
2403 }
2404
2405 JNIEnv* env = self->GetJniEnv();
Elliott Hughes844f9a02012-01-24 20:19:58 -08002406 static jclass DdmServer_class = CacheClass(env, "org/apache/harmony/dalvik/ddmc/DdmServer");
Elliott Hughes47fce012011-10-25 18:37:19 -07002407 static jmethodID broadcast_mid = env->GetStaticMethodID(DdmServer_class, "broadcast", "(I)V");
2408 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
2409 env->CallStaticVoidMethod(DdmServer_class, broadcast_mid, event);
2410 if (env->ExceptionCheck()) {
2411 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
2412 env->ExceptionDescribe();
2413 env->ExceptionClear();
2414 }
2415}
2416
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002417void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08002418 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002419}
2420
2421void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08002422 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07002423 gDdmThreadNotification = false;
2424}
2425
2426/*
Elliott Hughes82188472011-11-07 18:11:48 -08002427 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07002428 *
2429 * Because we broadcast the full set of threads when the notifications are
2430 * first enabled, it's possible for "thread" to be actively executing.
2431 */
Elliott Hughes82188472011-11-07 18:11:48 -08002432void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07002433 if (!gDdmThreadNotification) {
2434 return;
2435 }
2436
Elliott Hughes82188472011-11-07 18:11:48 -08002437 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07002438 uint8_t buf[4];
Elliott Hughesf7c3b662011-10-27 12:04:56 -07002439 JDWP::Set4BE(&buf[0], t->GetThinLockId());
Elliott Hughes47fce012011-10-25 18:37:19 -07002440 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08002441 } else {
2442 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Elliott Hughes899e7892012-01-24 14:57:32 -08002443 SirtRef<String> name(t->GetThreadName());
Elliott Hughes82188472011-11-07 18:11:48 -08002444 size_t char_count = (name.get() != NULL) ? name->GetLength() : 0;
2445 const jchar* chars = name->GetCharArray()->GetData();
2446
Elliott Hughes21f32d72011-11-09 17:44:13 -08002447 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08002448 JDWP::Append4BE(bytes, t->GetThinLockId());
2449 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08002450 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
2451 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07002452 }
2453}
2454
Elliott Hughesa2155262011-11-16 16:26:58 -08002455static void DdmSendThreadStartCallback(Thread* t, void*) {
Elliott Hughes82188472011-11-07 18:11:48 -08002456 Dbg::DdmSendThreadNotification(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07002457}
2458
2459void Dbg::DdmSetThreadNotification(bool enable) {
2460 // We lock the thread list to avoid sending duplicate events or missing
2461 // a thread change. We should be okay holding this lock while sending
2462 // the messages out. (We have to hold it while accessing a live thread.)
Elliott Hughesbbd9d832011-11-07 14:40:00 -08002463 ScopedThreadListLock thread_list_lock;
Elliott Hughes47fce012011-10-25 18:37:19 -07002464
2465 gDdmThreadNotification = enable;
2466 if (enable) {
Elliott Hughesbfe487b2011-10-26 15:48:55 -07002467 Runtime::Current()->GetThreadList()->ForEach(DdmSendThreadStartCallback, NULL);
Elliott Hughes47fce012011-10-25 18:37:19 -07002468 }
2469}
2470
Elliott Hughesa2155262011-11-16 16:26:58 -08002471void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07002472 if (gDebuggerActive) {
2473 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08002474 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07002475 }
Elliott Hughes82188472011-11-07 18:11:48 -08002476 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07002477}
2478
2479void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08002480 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07002481}
2482
2483void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08002484 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002485}
2486
Elliott Hughes82188472011-11-07 18:11:48 -08002487void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07002488 CHECK(buf != NULL);
2489 iovec vec[1];
2490 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
2491 vec[0].iov_len = byte_count;
2492 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002493}
2494
Elliott Hughes21f32d72011-11-09 17:44:13 -08002495void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
2496 DdmSendChunk(type, bytes.size(), &bytes[0]);
2497}
2498
Elliott Hughescccd84f2011-12-05 16:51:54 -08002499void Dbg::DdmSendChunkV(uint32_t type, const struct iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07002500 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002501 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07002502 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08002503 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07002504 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002505}
2506
Elliott Hughes767a1472011-10-26 18:49:02 -07002507int Dbg::DdmHandleHpifChunk(HpifWhen when) {
2508 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07002509 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07002510 return true;
2511 }
2512
2513 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
2514 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
2515 return false;
2516 }
2517
2518 gDdmHpifWhen = when;
2519 return true;
2520}
2521
2522bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
2523 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
2524 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
2525 return false;
2526 }
2527
2528 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
2529 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
2530 return false;
2531 }
2532
2533 if (native) {
2534 gDdmNhsgWhen = when;
2535 gDdmNhsgWhat = what;
2536 } else {
2537 gDdmHpsgWhen = when;
2538 gDdmHpsgWhat = what;
2539 }
2540 return true;
2541}
2542
Elliott Hughes7162ad92011-10-27 14:08:42 -07002543void Dbg::DdmSendHeapInfo(HpifWhen reason) {
2544 // If there's a one-shot 'when', reset it.
2545 if (reason == gDdmHpifWhen) {
2546 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
2547 gDdmHpifWhen = HPIF_WHEN_NEVER;
2548 }
2549 }
2550
2551 /*
2552 * Chunk HPIF (client --> server)
2553 *
2554 * Heap Info. General information about the heap,
2555 * suitable for a summary display.
2556 *
2557 * [u4]: number of heaps
2558 *
2559 * For each heap:
2560 * [u4]: heap ID
2561 * [u8]: timestamp in ms since Unix epoch
2562 * [u1]: capture reason (same as 'when' value from server)
2563 * [u4]: max heap size in bytes (-Xmx)
2564 * [u4]: current heap size in bytes
2565 * [u4]: current number of bytes allocated
2566 * [u4]: current number of objects allocated
2567 */
2568 uint8_t heap_count = 1;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002569 Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08002570 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08002571 JDWP::Append4BE(bytes, heap_count);
2572 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
2573 JDWP::Append8BE(bytes, MilliTime());
2574 JDWP::Append1BE(bytes, reason);
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002575 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
2576 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
2577 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
2578 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08002579 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
2580 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07002581}
2582
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002583enum HpsgSolidity {
2584 SOLIDITY_FREE = 0,
2585 SOLIDITY_HARD = 1,
2586 SOLIDITY_SOFT = 2,
2587 SOLIDITY_WEAK = 3,
2588 SOLIDITY_PHANTOM = 4,
2589 SOLIDITY_FINALIZABLE = 5,
2590 SOLIDITY_SWEEP = 6,
2591};
2592
2593enum HpsgKind {
2594 KIND_OBJECT = 0,
2595 KIND_CLASS_OBJECT = 1,
2596 KIND_ARRAY_1 = 2,
2597 KIND_ARRAY_2 = 3,
2598 KIND_ARRAY_4 = 4,
2599 KIND_ARRAY_8 = 5,
2600 KIND_UNKNOWN = 6,
2601 KIND_NATIVE = 7,
2602};
2603
2604#define HPSG_PARTIAL (1<<7)
2605#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
2606
Ian Rogers30fab402012-01-23 15:43:46 -08002607class HeapChunkContext {
2608 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002609 // Maximum chunk size. Obtain this from the formula:
2610 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
2611 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08002612 : buf_(16384 - 16),
2613 type_(0),
2614 merge_(merge) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002615 Reset();
2616 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08002617 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002618 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08002619 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002620 }
2621 }
2622
2623 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08002624 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002625 Flush();
2626 }
2627 }
2628
2629 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08002630 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002631 return;
2632 }
2633
2634 // Start a new HPSx chunk.
Ian Rogers30fab402012-01-23 15:43:46 -08002635 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
2636 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002637
Ian Rogers30fab402012-01-23 15:43:46 -08002638 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
2639 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002640 // [u4]: length of piece, in allocation units
2641 // 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 -08002642 pieceLenField_ = p_;
2643 JDWP::Write4BE(&p_, 0x55555555);
2644 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002645 }
2646
2647 void Flush() {
2648 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08002649 CHECK_LE(&buf_[0], pieceLenField_);
2650 CHECK_LE(pieceLenField_, p_);
2651 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002652
Ian Rogers30fab402012-01-23 15:43:46 -08002653 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002654 Reset();
2655 }
2656
Ian Rogers30fab402012-01-23 15:43:46 -08002657 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg) {
2658 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08002659 }
2660
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002661 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08002662 enum { ALLOCATION_UNIT_SIZE = 8 };
2663
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002664 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08002665 p_ = &buf_[0];
2666 totalAllocationUnits_ = 0;
2667 needHeader_ = true;
2668 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002669 }
2670
Ian Rogers30fab402012-01-23 15:43:46 -08002671 void HeapChunkCallback(void* start, void* end, size_t used_bytes) {
2672 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
2673 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
2674
2675 const void* user_ptr = used_bytes > 0 ? const_cast<void*>(start) : NULL;
2676 // from malloc.c mem2chunk(mem)
2677 const void* chunk_ptr =
2678 reinterpret_cast<const void*>(reinterpret_cast<const char*>(const_cast<void*>(start)) -
2679 (2 * sizeof(size_t)));
2680 // from malloc.c chunksize
2681 size_t chunk_len = (*reinterpret_cast<size_t* const*>(chunk_ptr))[1] & ~7;
2682
2683
2684 //size_t chunk_len = malloc_usable_size(user_ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08002685 CHECK_EQ((chunk_len & (ALLOCATION_UNIT_SIZE-1)), 0U);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002686
Elliott Hughesa2155262011-11-16 16:26:58 -08002687 /* Make sure there's enough room left in the buffer.
2688 * We need to use two bytes for every fractional 256
2689 * allocation units used by the chunk.
2690 */
2691 {
2692 size_t needed = (((chunk_len/ALLOCATION_UNIT_SIZE + 255) / 256) * 2);
Ian Rogers30fab402012-01-23 15:43:46 -08002693 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
Elliott Hughesa2155262011-11-16 16:26:58 -08002694 if (bytesLeft < needed) {
2695 Flush();
2696 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002697
Ian Rogers30fab402012-01-23 15:43:46 -08002698 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
Elliott Hughesa2155262011-11-16 16:26:58 -08002699 if (bytesLeft < needed) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002700 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << chunk_len << ", " << needed << " bytes)";
Elliott Hughesa2155262011-11-16 16:26:58 -08002701 return;
2702 }
2703 }
2704
2705 // OLD-TODO: notice when there's a gap and start a new heap, or at least a new range.
2706 EnsureHeader(chunk_ptr);
2707
2708 // Determine the type of this chunk.
2709 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
2710 // If it's the same, we should combine them.
Ian Rogers30fab402012-01-23 15:43:46 -08002711 uint8_t state = ExamineObject(reinterpret_cast<const Object*>(user_ptr), (type_ == CHUNK_TYPE("NHSG")));
Elliott Hughesa2155262011-11-16 16:26:58 -08002712
2713 // Write out the chunk description.
2714 chunk_len /= ALLOCATION_UNIT_SIZE; // convert to allocation units
Ian Rogers30fab402012-01-23 15:43:46 -08002715 totalAllocationUnits_ += chunk_len;
Elliott Hughesa2155262011-11-16 16:26:58 -08002716 while (chunk_len > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08002717 *p_++ = state | HPSG_PARTIAL;
2718 *p_++ = 255; // length - 1
Elliott Hughesa2155262011-11-16 16:26:58 -08002719 chunk_len -= 256;
2720 }
Ian Rogers30fab402012-01-23 15:43:46 -08002721 *p_++ = state;
2722 *p_++ = chunk_len - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002723 }
2724
Elliott Hughesa2155262011-11-16 16:26:58 -08002725 uint8_t ExamineObject(const Object* o, bool is_native_heap) {
2726 if (o == NULL) {
2727 return HPSG_STATE(SOLIDITY_FREE, 0);
2728 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002729
Elliott Hughesa2155262011-11-16 16:26:58 -08002730 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002731
Elliott Hughesa2155262011-11-16 16:26:58 -08002732 // If we're looking at the native heap, we'll just return
2733 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002734 if (is_native_heap || !Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Elliott Hughesa2155262011-11-16 16:26:58 -08002735 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
2736 }
2737
2738 Class* c = o->GetClass();
2739 if (c == NULL) {
2740 // The object was probably just created but hasn't been initialized yet.
2741 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
2742 }
2743
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002744 if (!Runtime::Current()->GetHeap()->IsHeapAddress(c)) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002745 LOG(WARNING) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08002746 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
2747 }
2748
2749 if (c->IsClassClass()) {
2750 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
2751 }
2752
2753 if (c->IsArrayClass()) {
2754 if (o->IsObjectArray()) {
2755 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
2756 }
2757 switch (c->GetComponentSize()) {
2758 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
2759 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
2760 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
2761 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
2762 }
2763 }
2764
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002765 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
2766 }
2767
Ian Rogers30fab402012-01-23 15:43:46 -08002768 std::vector<uint8_t> buf_;
2769 uint8_t* p_;
2770 uint8_t* pieceLenField_;
2771 size_t totalAllocationUnits_;
2772 uint32_t type_;
2773 bool merge_;
2774 bool needHeader_;
2775
Elliott Hughesa2155262011-11-16 16:26:58 -08002776 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
2777};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002778
2779void Dbg::DdmSendHeapSegments(bool native) {
2780 Dbg::HpsgWhen when;
2781 Dbg::HpsgWhat what;
2782 if (!native) {
2783 when = gDdmHpsgWhen;
2784 what = gDdmHpsgWhat;
2785 } else {
2786 when = gDdmNhsgWhen;
2787 what = gDdmNhsgWhat;
2788 }
2789 if (when == HPSG_WHEN_NEVER) {
2790 return;
2791 }
2792
2793 // Figure out what kind of chunks we'll be sending.
2794 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
2795
2796 // First, send a heap start chunk.
2797 uint8_t heap_id[4];
2798 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
2799 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
2800
2801 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08002802 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
2803 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08002804 // TODO: enable when bionic has moved to dlmalloc 2.8.5
2805 // dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
2806 UNIMPLEMENTED(WARNING) << "Native heap send heap segments";
Elliott Hughesa2155262011-11-16 16:26:58 -08002807 } else {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002808 Heap* heap = Runtime::Current()->GetHeap();
2809 heap->GetAllocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08002810 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002811
2812 // Finally, send a heap end chunk.
2813 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07002814}
2815
Elliott Hughes545a0642011-11-08 19:10:03 -08002816void Dbg::SetAllocTrackingEnabled(bool enabled) {
2817 MutexLock mu(gAllocTrackerLock);
2818 if (enabled) {
2819 if (recent_allocation_records_ == NULL) {
2820 LOG(INFO) << "Enabling alloc tracker (" << kNumAllocRecords << " entries, "
2821 << kMaxAllocRecordStackDepth << " frames --> "
2822 << (sizeof(AllocRecord) * kNumAllocRecords) << " bytes)";
2823 gAllocRecordHead = gAllocRecordCount = 0;
2824 recent_allocation_records_ = new AllocRecord[kNumAllocRecords];
2825 CHECK(recent_allocation_records_ != NULL);
2826 }
2827 } else {
2828 delete[] recent_allocation_records_;
2829 recent_allocation_records_ = NULL;
2830 }
2831}
2832
2833struct AllocRecordStackVisitor : public Thread::StackVisitor {
Elliott Hughesba8eee12012-01-24 20:25:24 -08002834 explicit AllocRecordStackVisitor(AllocRecord* record) : record(record), depth(0) {
Elliott Hughes545a0642011-11-08 19:10:03 -08002835 }
2836
Elliott Hughes530fa002012-03-12 11:44:49 -07002837 bool VisitFrame(const Frame& f, uintptr_t pc) {
Elliott Hughes545a0642011-11-08 19:10:03 -08002838 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002839 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08002840 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002841 if (f.HasMethod()) {
2842 record->stack[depth].method = f.GetMethod();
2843 record->stack[depth].raw_pc = pc;
2844 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08002845 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002846 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08002847 }
2848
2849 ~AllocRecordStackVisitor() {
2850 // Clear out any unused stack trace elements.
2851 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
2852 record->stack[depth].method = NULL;
2853 record->stack[depth].raw_pc = 0;
2854 }
2855 }
2856
2857 AllocRecord* record;
2858 size_t depth;
2859};
2860
2861void Dbg::RecordAllocation(Class* type, size_t byte_count) {
2862 Thread* self = Thread::Current();
2863 CHECK(self != NULL);
2864
2865 MutexLock mu(gAllocTrackerLock);
2866 if (recent_allocation_records_ == NULL) {
2867 return;
2868 }
2869
2870 // Advance and clip.
2871 if (++gAllocRecordHead == kNumAllocRecords) {
2872 gAllocRecordHead = 0;
2873 }
2874
2875 // Fill in the basics.
2876 AllocRecord* record = &recent_allocation_records_[gAllocRecordHead];
2877 record->type = type;
2878 record->byte_count = byte_count;
2879 record->thin_lock_id = self->GetThinLockId();
2880
2881 // Fill in the stack trace.
2882 AllocRecordStackVisitor visitor(record);
2883 self->WalkStack(&visitor);
2884
2885 if (gAllocRecordCount < kNumAllocRecords) {
2886 ++gAllocRecordCount;
2887 }
2888}
2889
2890/*
2891 * Return the index of the head element.
2892 *
2893 * We point at the most-recently-written record, so if allocRecordCount is 1
2894 * we want to use the current element. Take "head+1" and subtract count
2895 * from it.
2896 *
2897 * We need to handle underflow in our circular buffer, so we add
2898 * kNumAllocRecords and then mask it back down.
2899 */
2900inline static int headIndex() {
2901 return (gAllocRecordHead+1 + kNumAllocRecords - gAllocRecordCount) & (kNumAllocRecords-1);
2902}
2903
2904void Dbg::DumpRecentAllocations() {
2905 MutexLock mu(gAllocTrackerLock);
2906 if (recent_allocation_records_ == NULL) {
2907 LOG(INFO) << "Not recording tracked allocations";
2908 return;
2909 }
2910
2911 // "i" is the head of the list. We want to start at the end of the
2912 // list and move forward to the tail.
2913 size_t i = headIndex();
2914 size_t count = gAllocRecordCount;
2915
2916 LOG(INFO) << "Tracked allocations, (head=" << gAllocRecordHead << " count=" << count << ")";
2917 while (count--) {
2918 AllocRecord* record = &recent_allocation_records_[i];
2919
Elliott Hughesaa6e1cd2012-01-18 19:26:06 -08002920 LOG(INFO) << StringPrintf(" T=%-2d %6zd ", record->thin_lock_id, record->byte_count)
Elliott Hughes545a0642011-11-08 19:10:03 -08002921 << PrettyClass(record->type);
2922
2923 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
2924 const Method* m = record->stack[stack_frame].method;
2925 if (m == NULL) {
2926 break;
2927 }
2928 LOG(INFO) << " " << PrettyMethod(m) << " line " << record->stack[stack_frame].LineNumber();
2929 }
2930
2931 // pause periodically to help logcat catch up
2932 if ((count % 5) == 0) {
2933 usleep(40000);
2934 }
2935
2936 i = (i + 1) & (kNumAllocRecords-1);
2937 }
2938}
2939
2940class StringTable {
2941 public:
2942 StringTable() {
2943 }
2944
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002945 void Add(const char* s) {
Elliott Hughes545a0642011-11-08 19:10:03 -08002946 table_.insert(s);
2947 }
2948
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002949 size_t IndexOf(const char* s) {
Elliott Hughes545a0642011-11-08 19:10:03 -08002950 return std::distance(table_.begin(), table_.find(s));
2951 }
2952
2953 size_t Size() {
2954 return table_.size();
2955 }
2956
2957 void WriteTo(std::vector<uint8_t>& bytes) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002958 typedef std::set<const char*>::const_iterator It; // TODO: C++0x auto
Elliott Hughes545a0642011-11-08 19:10:03 -08002959 for (It it = table_.begin(); it != table_.end(); ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002960 const char* s = *it;
2961 size_t s_len = CountModifiedUtf8Chars(s);
2962 UniquePtr<uint16_t> s_utf16(new uint16_t[s_len]);
2963 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
2964 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08002965 }
2966 }
2967
2968 private:
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002969 std::set<const char*> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08002970 DISALLOW_COPY_AND_ASSIGN(StringTable);
2971};
2972
2973/*
2974 * The data we send to DDMS contains everything we have recorded.
2975 *
2976 * Message header (all values big-endian):
2977 * (1b) message header len (to allow future expansion); includes itself
2978 * (1b) entry header len
2979 * (1b) stack frame len
2980 * (2b) number of entries
2981 * (4b) offset to string table from start of message
2982 * (2b) number of class name strings
2983 * (2b) number of method name strings
2984 * (2b) number of source file name strings
2985 * For each entry:
2986 * (4b) total allocation size
2987 * (2b) threadId
2988 * (2b) allocated object's class name index
2989 * (1b) stack depth
2990 * For each stack frame:
2991 * (2b) method's class name
2992 * (2b) method name
2993 * (2b) method source file
2994 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
2995 * (xb) class name strings
2996 * (xb) method name strings
2997 * (xb) source file strings
2998 *
2999 * As with other DDM traffic, strings are sent as a 4-byte length
3000 * followed by UTF-16 data.
3001 *
3002 * We send up 16-bit unsigned indexes into string tables. In theory there
3003 * can be (kMaxAllocRecordStackDepth * kNumAllocRecords) unique strings in
3004 * each table, but in practice there should be far fewer.
3005 *
3006 * The chief reason for using a string table here is to keep the size of
3007 * the DDMS message to a minimum. This is partly to make the protocol
3008 * efficient, but also because we have to form the whole thing up all at
3009 * once in a memory buffer.
3010 *
3011 * We use separate string tables for class names, method names, and source
3012 * files to keep the indexes small. There will generally be no overlap
3013 * between the contents of these tables.
3014 */
3015jbyteArray Dbg::GetRecentAllocations() {
3016 if (false) {
3017 DumpRecentAllocations();
3018 }
3019
3020 MutexLock mu(gAllocTrackerLock);
3021
3022 /*
3023 * Part 1: generate string tables.
3024 */
3025 StringTable class_names;
3026 StringTable method_names;
3027 StringTable filenames;
3028
3029 int count = gAllocRecordCount;
3030 int idx = headIndex();
3031 while (count--) {
3032 AllocRecord* record = &recent_allocation_records_[idx];
3033
Elliott Hughes91250e02011-12-13 22:30:35 -08003034 class_names.Add(ClassHelper(record->type).GetDescriptor());
Elliott Hughes545a0642011-11-08 19:10:03 -08003035
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003036 MethodHelper mh;
Elliott Hughes545a0642011-11-08 19:10:03 -08003037 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003038 Method* m = record->stack[i].method;
3039 mh.ChangeMethod(m);
Elliott Hughes545a0642011-11-08 19:10:03 -08003040 if (m != NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003041 class_names.Add(mh.GetDeclaringClassDescriptor());
3042 method_names.Add(mh.GetName());
3043 filenames.Add(mh.GetDeclaringClassSourceFile());
Elliott Hughes545a0642011-11-08 19:10:03 -08003044 }
3045 }
3046
3047 idx = (idx + 1) & (kNumAllocRecords-1);
3048 }
3049
3050 LOG(INFO) << "allocation records: " << gAllocRecordCount;
3051
3052 /*
3053 * Part 2: allocate a buffer and generate the output.
3054 */
3055 std::vector<uint8_t> bytes;
3056
3057 // (1b) message header len (to allow future expansion); includes itself
3058 // (1b) entry header len
3059 // (1b) stack frame len
3060 const int kMessageHeaderLen = 15;
3061 const int kEntryHeaderLen = 9;
3062 const int kStackFrameLen = 8;
3063 JDWP::Append1BE(bytes, kMessageHeaderLen);
3064 JDWP::Append1BE(bytes, kEntryHeaderLen);
3065 JDWP::Append1BE(bytes, kStackFrameLen);
3066
3067 // (2b) number of entries
3068 // (4b) offset to string table from start of message
3069 // (2b) number of class name strings
3070 // (2b) number of method name strings
3071 // (2b) number of source file name strings
3072 JDWP::Append2BE(bytes, gAllocRecordCount);
3073 size_t string_table_offset = bytes.size();
3074 JDWP::Append4BE(bytes, 0); // We'll patch this later...
3075 JDWP::Append2BE(bytes, class_names.Size());
3076 JDWP::Append2BE(bytes, method_names.Size());
3077 JDWP::Append2BE(bytes, filenames.Size());
3078
3079 count = gAllocRecordCount;
3080 idx = headIndex();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003081 ClassHelper kh;
Elliott Hughes545a0642011-11-08 19:10:03 -08003082 while (count--) {
3083 // For each entry:
3084 // (4b) total allocation size
3085 // (2b) thread id
3086 // (2b) allocated object's class name index
3087 // (1b) stack depth
3088 AllocRecord* record = &recent_allocation_records_[idx];
3089 size_t stack_depth = record->GetDepth();
3090 JDWP::Append4BE(bytes, record->byte_count);
3091 JDWP::Append2BE(bytes, record->thin_lock_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003092 kh.ChangeClass(record->type);
Elliott Hughes91250e02011-12-13 22:30:35 -08003093 JDWP::Append2BE(bytes, class_names.IndexOf(kh.GetDescriptor()));
Elliott Hughes545a0642011-11-08 19:10:03 -08003094 JDWP::Append1BE(bytes, stack_depth);
3095
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003096 MethodHelper mh;
Elliott Hughes545a0642011-11-08 19:10:03 -08003097 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
3098 // For each stack frame:
3099 // (2b) method's class name
3100 // (2b) method name
3101 // (2b) method source file
3102 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003103 mh.ChangeMethod(record->stack[stack_frame].method);
3104 JDWP::Append2BE(bytes, class_names.IndexOf(mh.GetDeclaringClassDescriptor()));
3105 JDWP::Append2BE(bytes, method_names.IndexOf(mh.GetName()));
3106 JDWP::Append2BE(bytes, filenames.IndexOf(mh.GetDeclaringClassSourceFile()));
Elliott Hughes545a0642011-11-08 19:10:03 -08003107 JDWP::Append2BE(bytes, record->stack[stack_frame].LineNumber());
3108 }
3109
3110 idx = (idx + 1) & (kNumAllocRecords-1);
3111 }
3112
3113 // (xb) class name strings
3114 // (xb) method name strings
3115 // (xb) source file strings
3116 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
3117 class_names.WriteTo(bytes);
3118 method_names.WriteTo(bytes);
3119 filenames.WriteTo(bytes);
3120
3121 JNIEnv* env = Thread::Current()->GetJniEnv();
3122 jbyteArray result = env->NewByteArray(bytes.size());
3123 if (result != NULL) {
3124 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
3125 }
3126 return result;
3127}
3128
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003129} // namespace art