blob: 3591a5097be7dfd7869776839a6563272d98cfb3 [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
Ian Rogers166db042013-07-26 12:05:57 -070023#include "arch/context.h"
Elliott Hughes545a0642011-11-08 19:10:03 -080024#include "class_linker.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025#include "class_linker-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070026#include "dex_file-inl.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070027#include "dex_instruction.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070028#include "gc/accounting/card_table-inl.h"
29#include "gc/space/large_object_space.h"
30#include "gc/space/space-inl.h"
Jeff Hao5d917302013-02-27 17:57:33 -080031#include "invoke_arg_array_builder.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080032#include "jdwp/object_registry.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080033#include "mirror/abstract_method-inl.h"
34#include "mirror/class.h"
35#include "mirror/class-inl.h"
36#include "mirror/class_loader.h"
37#include "mirror/field-inl.h"
38#include "mirror/object-inl.h"
39#include "mirror/object_array-inl.h"
40#include "mirror/throwable.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080041#include "object_utils.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070042#include "safe_map.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080043#include "scoped_thread_state_change.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070044#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070045#include "ScopedPrimitiveArray.h"
Ian Rogers1f539342012-10-03 21:09:42 -070046#include "sirt_ref.h"
Elliott Hughes47fce012011-10-25 18:37:19 -070047#include "stack_indirect_reference_table.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070048#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080049#include "throw_location.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080050#include "utf.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070051#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070052
Brian Carlstrom3d92d522013-07-12 09:03:08 -070053#ifdef HAVE_ANDROID_OS
54#include "cutils/properties.h"
55#endif
56
Elliott Hughes872d4ec2011-10-21 17:07:15 -070057namespace art {
58
Brian Carlstrom7934ac22013-07-26 10:54:15 -070059static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
60static const size_t kDefaultNumAllocRecords = 64*1024; // Must be a power of 2.
Elliott Hughes475fc232011-10-25 15:00:35 -070061
Elliott Hughes545a0642011-11-08 19:10:03 -080062struct AllocRecordStackTraceElement {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080063 mirror::AbstractMethod* method;
Ian Rogers0399dde2012-06-06 17:09:28 -070064 uint32_t dex_pc;
Elliott Hughes545a0642011-11-08 19:10:03 -080065
Ian Rogersb726dcb2012-09-05 08:57:23 -070066 int32_t LineNumber() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -070067 return MethodHelper(method).GetLineNumFromDexPC(dex_pc);
Elliott Hughes545a0642011-11-08 19:10:03 -080068 }
69};
70
71struct AllocRecord {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080072 mirror::Class* type;
Elliott Hughes545a0642011-11-08 19:10:03 -080073 size_t byte_count;
74 uint16_t thin_lock_id;
Brian Carlstrom7934ac22013-07-26 10:54:15 -070075 AllocRecordStackTraceElement stack[kMaxAllocRecordStackDepth]; // Unused entries have NULL method.
Elliott Hughes545a0642011-11-08 19:10:03 -080076
77 size_t GetDepth() {
78 size_t depth = 0;
79 while (depth < kMaxAllocRecordStackDepth && stack[depth].method != NULL) {
80 ++depth;
81 }
82 return depth;
83 }
84};
85
Elliott Hughes86964332012-02-15 19:37:42 -080086struct Breakpoint {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080087 mirror::AbstractMethod* method;
Elliott Hughesa656a0f2012-02-21 18:03:44 -080088 uint32_t dex_pc;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080089 Breakpoint(mirror::AbstractMethod* method, uint32_t dex_pc) : method(method), dex_pc(dex_pc) {}
Elliott Hughes86964332012-02-15 19:37:42 -080090};
91
Ian Rogers00f7d0e2012-07-19 15:28:27 -070092static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -070093 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes229feb72012-02-23 13:33:29 -080094 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.method).c_str(), rhs.dex_pc);
Elliott Hughes86964332012-02-15 19:37:42 -080095 return os;
96}
97
98struct SingleStepControl {
99 // Are we single-stepping right now?
100 bool is_active;
101 Thread* thread;
102
103 JDWP::JdwpStepSize step_size;
104 JDWP::JdwpStepDepth step_depth;
105
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800106 const mirror::AbstractMethod* method;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700107 int32_t line_number; // Or -1 for native methods.
Elliott Hughes2435a572012-02-17 16:07:41 -0800108 std::set<uint32_t> dex_pcs;
Elliott Hughes86964332012-02-15 19:37:42 -0800109 int stack_depth;
110};
111
Ian Rogers62d6c772013-02-27 08:32:07 -0800112class DebugInstrumentationListener : public instrumentation::InstrumentationListener {
113 public:
114 DebugInstrumentationListener() {}
115 virtual ~DebugInstrumentationListener() {}
116
117 virtual void MethodEntered(Thread* thread, mirror::Object* this_object,
118 const mirror::AbstractMethod* method, uint32_t dex_pc)
119 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
120 if (method->IsNative()) {
121 // TODO: post location events is a suspension point and native method entry stubs aren't.
122 return;
123 }
124 Dbg::PostLocationEvent(method, 0, this_object, Dbg::kMethodEntry);
125 }
126
127 virtual void MethodExited(Thread* thread, mirror::Object* this_object,
128 const mirror::AbstractMethod* method,
129 uint32_t dex_pc, const JValue& return_value)
130 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
131 UNUSED(return_value);
132 if (method->IsNative()) {
133 // TODO: post location events is a suspension point and native method entry stubs aren't.
134 return;
135 }
136 Dbg::PostLocationEvent(method, dex_pc, this_object, Dbg::kMethodExit);
137 }
138
139 virtual void MethodUnwind(Thread* thread, const mirror::AbstractMethod* method,
140 uint32_t dex_pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
141 // We're not recorded to listen to this kind of event, so complain.
142 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
143 << " " << dex_pc;
144 }
145
146 virtual void DexPcMoved(Thread* thread, mirror::Object* this_object,
147 const mirror::AbstractMethod* method, uint32_t new_dex_pc)
148 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
149 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc);
150 }
151
152 virtual void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
153 mirror::AbstractMethod* catch_method, uint32_t catch_dex_pc,
154 mirror::Throwable* exception_object)
155 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
156 Dbg::PostException(thread, throw_location, catch_method, catch_dex_pc, exception_object);
157 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800158} gDebugInstrumentationListener;
159
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700160// JDWP is allowed unless the Zygote forbids it.
161static bool gJdwpAllowed = true;
162
Elliott Hughesc0f09332012-03-26 13:27:06 -0700163// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700164static bool gJdwpConfigured = false;
165
Elliott Hughesc0f09332012-03-26 13:27:06 -0700166// Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.)
Elliott Hughes376a7a02011-10-24 18:35:55 -0700167static JDWP::JdwpOptions gJdwpOptions;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700168
169// Runtime JDWP state.
170static JDWP::JdwpState* gJdwpState = NULL;
171static bool gDebuggerConnected; // debugger or DDMS is connected.
172static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800173static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700174
Elliott Hughes47fce012011-10-25 18:37:19 -0700175static bool gDdmThreadNotification = false;
176
Elliott Hughes767a1472011-10-26 18:49:02 -0700177// DDMS GC-related settings.
178static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
179static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
180static Dbg::HpsgWhat gDdmHpsgWhat;
181static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
182static Dbg::HpsgWhat gDdmNhsgWhat;
183
Elliott Hughes475fc232011-10-25 15:00:35 -0700184static ObjectRegistry* gRegistry = NULL;
185
Elliott Hughes545a0642011-11-08 19:10:03 -0800186// Recent allocation tracking.
Brian Carlstromdf629502013-07-17 22:39:56 -0700187static Mutex gAllocTrackerLock DEFAULT_MUTEX_ACQUIRED_AFTER("AllocTracker lock");
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700188AllocRecord* Dbg::recent_allocation_records_ PT_GUARDED_BY(gAllocTrackerLock) = NULL; // TODO: CircularBuffer<AllocRecord>
Elliott Hughesb1a58792013-07-11 18:10:58 -0700189static size_t gAllocRecordMax GUARDED_BY(gAllocTrackerLock) = 0;
Elliott Hughesf8349362012-06-18 15:00:06 -0700190static size_t gAllocRecordHead GUARDED_BY(gAllocTrackerLock) = 0;
191static size_t gAllocRecordCount GUARDED_BY(gAllocTrackerLock) = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -0800192
Elliott Hughes86964332012-02-15 19:37:42 -0800193// Breakpoints and single-stepping.
jeffhao09bfc6a2012-12-11 18:11:43 -0800194static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
195static SingleStepControl gSingleStepControl GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800196
Ian Rogers62d6c772013-02-27 08:32:07 -0800197static bool IsBreakpoint(const mirror::AbstractMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800198 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700199 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao09bfc6a2012-12-11 18:11:43 -0800200 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800201 for (size_t i = 0; i < gBreakpoints.size(); ++i) {
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800202 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == dex_pc) {
Elliott Hughes86964332012-02-15 19:37:42 -0800203 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
204 return true;
205 }
206 }
207 return false;
208}
209
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800210static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread) {
211 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
212 // A thread may be suspended for GC; in this code, we really want to know whether
213 // there's a debugger suspension active.
214 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
215}
216
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800217static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700218 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800219 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800220 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800221 status = JDWP::ERR_INVALID_OBJECT;
222 return NULL;
223 }
224 if (!o->IsArrayInstance()) {
225 status = JDWP::ERR_INVALID_ARRAY;
226 return NULL;
227 }
228 status = JDWP::ERR_NONE;
229 return o->AsArray();
230}
231
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800232static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700233 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800234 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800235 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800236 status = JDWP::ERR_INVALID_OBJECT;
237 return NULL;
238 }
239 if (!o->IsClass()) {
240 status = JDWP::ERR_INVALID_CLASS;
241 return NULL;
242 }
243 status = JDWP::ERR_NONE;
244 return o->AsClass();
245}
246
Elliott Hughes221229c2013-01-08 18:17:50 -0800247static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thread*& thread)
jeffhaoa77f0f62012-12-05 17:19:31 -0800248 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700249 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
250 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800251 mirror::Object* thread_peer = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800252 if (thread_peer == NULL || thread_peer == ObjectRegistry::kInvalidObject) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800253 // This isn't even an object.
254 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes436e3722012-02-17 20:01:47 -0800255 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800256
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800257 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800258 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
259 // This isn't a thread.
260 return JDWP::ERR_INVALID_THREAD;
261 }
262
263 thread = Thread::FromManagedThread(soa, thread_peer);
264 if (thread == NULL) {
265 // This is a java.lang.Thread without a Thread*. Must be a zombie.
266 return JDWP::ERR_THREAD_NOT_ALIVE;
267 }
268 return JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800269}
270
Elliott Hughes24437992011-11-30 14:49:33 -0800271static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
272 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
273 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
274 return static_cast<JDWP::JdwpTag>(descriptor[0]);
275}
276
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800277static JDWP::JdwpTag TagFromClass(mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700278 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes86b00102011-12-05 17:54:26 -0800279 CHECK(c != NULL);
Elliott Hughes24437992011-11-30 14:49:33 -0800280 if (c->IsArrayClass()) {
281 return JDWP::JT_ARRAY;
282 }
283
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800284 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Elliott Hughes24437992011-11-30 14:49:33 -0800285 if (c->IsStringClass()) {
286 return JDWP::JT_STRING;
287 } else if (c->IsClassClass()) {
288 return JDWP::JT_CLASS_OBJECT;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800289 } else if (class_linker->FindSystemClass("Ljava/lang/Thread;")->IsAssignableFrom(c)) {
Elliott Hughes24437992011-11-30 14:49:33 -0800290 return JDWP::JT_THREAD;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800291 } else if (class_linker->FindSystemClass("Ljava/lang/ThreadGroup;")->IsAssignableFrom(c)) {
Elliott Hughes24437992011-11-30 14:49:33 -0800292 return JDWP::JT_THREAD_GROUP;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800293 } else if (class_linker->FindSystemClass("Ljava/lang/ClassLoader;")->IsAssignableFrom(c)) {
Elliott Hughes24437992011-11-30 14:49:33 -0800294 return JDWP::JT_CLASS_LOADER;
Elliott Hughes24437992011-11-30 14:49:33 -0800295 } else {
296 return JDWP::JT_OBJECT;
297 }
298}
299
300/*
301 * Objects declared to hold Object might actually hold a more specific
302 * type. The debugger may take a special interest in these (e.g. it
303 * wants to display the contents of Strings), so we want to return an
304 * appropriate tag.
305 *
306 * Null objects are tagged JT_OBJECT.
307 */
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800308static JDWP::JdwpTag TagFromObject(const mirror::Object* o)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700309 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes24437992011-11-30 14:49:33 -0800310 return (o == NULL) ? JDWP::JT_OBJECT : TagFromClass(o->GetClass());
311}
312
313static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
314 switch (tag) {
315 case JDWP::JT_BOOLEAN:
316 case JDWP::JT_BYTE:
317 case JDWP::JT_CHAR:
318 case JDWP::JT_FLOAT:
319 case JDWP::JT_DOUBLE:
320 case JDWP::JT_INT:
321 case JDWP::JT_LONG:
322 case JDWP::JT_SHORT:
323 case JDWP::JT_VOID:
324 return true;
325 default:
326 return false;
327 }
328}
329
Elliott Hughes3bb81562011-10-21 18:52:59 -0700330/*
331 * Handle one of the JDWP name/value pairs.
332 *
333 * JDWP options are:
334 * help: if specified, show help message and bail
335 * transport: may be dt_socket or dt_shmem
336 * address: for dt_socket, "host:port", or just "port" when listening
337 * server: if "y", wait for debugger to attach; if "n", attach to debugger
338 * timeout: how long to wait for debugger to connect / listen
339 *
340 * Useful with server=n (these aren't supported yet):
341 * onthrow=<exception-name>: connect to debugger when exception thrown
342 * onuncaught=y|n: connect to debugger when uncaught exception thrown
343 * launch=<command-line>: launch the debugger itself
344 *
345 * The "transport" option is required, as is "address" if server=n.
346 */
347static bool ParseJdwpOption(const std::string& name, const std::string& value) {
348 if (name == "transport") {
349 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700350 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700351 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700352 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700353 } else {
354 LOG(ERROR) << "JDWP transport not supported: " << value;
355 return false;
356 }
357 } else if (name == "server") {
358 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700359 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700360 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700361 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700362 } else {
363 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
364 return false;
365 }
366 } else if (name == "suspend") {
367 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700368 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700369 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700370 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700371 } else {
372 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
373 return false;
374 }
375 } else if (name == "address") {
376 /* this is either <port> or <host>:<port> */
377 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700378 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700379 std::string::size_type colon = value.find(':');
380 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700381 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700382 port_string = value.substr(colon + 1);
383 } else {
384 port_string = value;
385 }
386 if (port_string.empty()) {
387 LOG(ERROR) << "JDWP address missing port: " << value;
388 return false;
389 }
390 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800391 uint64_t port = strtoul(port_string.c_str(), &end, 10);
392 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700393 LOG(ERROR) << "JDWP address has junk in port field: " << value;
394 return false;
395 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700396 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700397 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
398 /* valid but unsupported */
399 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
400 } else {
401 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
402 }
403
404 return true;
405}
406
407/*
408 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
409 * "transport=dt_socket,address=8000,server=y,suspend=n"
410 */
411bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800412 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700413
Elliott Hughes3bb81562011-10-21 18:52:59 -0700414 std::vector<std::string> pairs;
415 Split(options, ',', pairs);
416
417 for (size_t i = 0; i < pairs.size(); ++i) {
418 std::string::size_type equals = pairs[i].find('=');
419 if (equals == std::string::npos) {
420 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
421 return false;
422 }
423 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
424 }
425
Elliott Hughes376a7a02011-10-24 18:35:55 -0700426 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700427 LOG(ERROR) << "Must specify JDWP transport: " << options;
428 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700429 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700430 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
431 return false;
432 }
433
434 gJdwpConfigured = true;
435 return true;
436}
437
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700438void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700439 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700440 // No JDWP for you!
441 return;
442 }
443
Elliott Hughes475fc232011-10-25 15:00:35 -0700444 CHECK(gRegistry == NULL);
445 gRegistry = new ObjectRegistry;
446
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700447 // Init JDWP if the debugger is enabled. This may connect out to a
448 // debugger, passively listen for a debugger, or block waiting for a
449 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700450 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
451 if (gJdwpState == NULL) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800452 // We probably failed because some other process has the port already, which means that
453 // if we don't abort the user is likely to think they're talking to us when they're actually
454 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800455 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700456 }
457
458 // If a debugger has already attached, send the "welcome" message.
459 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700460 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700461 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes376a7a02011-10-24 18:35:55 -0700462 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800463 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700464 }
465 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700466}
467
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700468void Dbg::StopJdwp() {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700469 delete gJdwpState;
Elliott Hughes475fc232011-10-25 15:00:35 -0700470 delete gRegistry;
471 gRegistry = NULL;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700472}
473
Elliott Hughes767a1472011-10-26 18:49:02 -0700474void Dbg::GcDidFinish() {
475 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700476 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes81ff3182012-03-23 20:35:56 -0700477 LOG(DEBUG) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700478 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700479 }
480 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700481 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes81ff3182012-03-23 20:35:56 -0700482 LOG(DEBUG) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700483 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700484 }
485 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700486 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes767a1472011-10-26 18:49:02 -0700487 LOG(DEBUG) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700488 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700489 }
490}
491
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700492void Dbg::SetJdwpAllowed(bool allowed) {
493 gJdwpAllowed = allowed;
494}
495
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700496DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700497 return Thread::Current()->GetInvokeReq();
498}
499
500Thread* Dbg::GetDebugThread() {
501 return (gJdwpState != NULL) ? gJdwpState->GetDebugThread() : NULL;
502}
503
504void Dbg::ClearWaitForEventThread() {
505 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700506}
507
508void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700509 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800510 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700511 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800512 gDisposed = false;
513}
514
515void Dbg::Disposed() {
516 gDisposed = true;
517}
518
519bool Dbg::IsDisposed() {
520 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700521}
522
Elliott Hughesa2155262011-11-16 16:26:58 -0800523void Dbg::GoActive() {
524 // Enable all debugging features, including scans for breakpoints.
525 // This is a no-op if we're already active.
526 // Only called from the JDWP handler thread.
527 if (gDebuggerActive) {
528 return;
529 }
530
Elliott Hughesc0f09332012-03-26 13:27:06 -0700531 {
532 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
jeffhao09bfc6a2012-12-11 18:11:43 -0800533 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700534 CHECK_EQ(gBreakpoints.size(), 0U);
535 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800536
Ian Rogers62d6c772013-02-27 08:32:07 -0800537 Runtime* runtime = Runtime::Current();
538 runtime->GetThreadList()->SuspendAll();
539 Thread* self = Thread::Current();
540 ThreadState old_state = self->SetStateUnsafe(kRunnable);
541 CHECK_NE(old_state, kRunnable);
542 runtime->GetInstrumentation()->AddListener(&gDebugInstrumentationListener,
543 instrumentation::Instrumentation::kMethodEntered |
544 instrumentation::Instrumentation::kMethodExited |
Jeff Hao14dd5a82013-04-11 10:23:36 -0700545 instrumentation::Instrumentation::kDexPcMoved |
546 instrumentation::Instrumentation::kExceptionCaught);
Elliott Hughesa2155262011-11-16 16:26:58 -0800547 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800548 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
549 runtime->GetThreadList()->ResumeAll();
550
551 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700552}
553
554void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700555 CHECK(gDebuggerConnected);
556
Elliott Hughesc0f09332012-03-26 13:27:06 -0700557 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700558
Ian Rogers62d6c772013-02-27 08:32:07 -0800559 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
560 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
561 // and clear the object registry.
562 Runtime* runtime = Runtime::Current();
563 runtime->GetThreadList()->SuspendAll();
564 Thread* self = Thread::Current();
565 ThreadState old_state = self->SetStateUnsafe(kRunnable);
566 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
567 instrumentation::Instrumentation::kMethodEntered |
568 instrumentation::Instrumentation::kMethodExited |
Jeff Hao14dd5a82013-04-11 10:23:36 -0700569 instrumentation::Instrumentation::kDexPcMoved |
570 instrumentation::Instrumentation::kExceptionCaught);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700571 gDebuggerActive = false;
Elliott Hughes234ab152011-10-26 14:02:26 -0700572 gRegistry->Clear();
573 gDebuggerConnected = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800574 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
575 runtime->GetThreadList()->ResumeAll();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700576}
577
Elliott Hughesc0f09332012-03-26 13:27:06 -0700578bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700579 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700580}
581
Elliott Hughesc0f09332012-03-26 13:27:06 -0700582bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700583 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700584}
585
586int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800587 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700588}
589
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700590void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700591 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700592}
593
Elliott Hughes88d63092013-01-09 09:55:54 -0800594std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800595 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800596 if (o == NULL) {
597 return "NULL";
598 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800599 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes88d63092013-01-09 09:55:54 -0800600 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
Elliott Hughes436e3722012-02-17 20:01:47 -0800601 }
602 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700603 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800604 }
Elliott Hughesc308a5d2012-02-16 17:12:06 -0800605 return DescriptorToName(ClassHelper(o->AsClass()).GetDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700606}
607
Elliott Hughes88d63092013-01-09 09:55:54 -0800608JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800609 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800610 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800611 if (c == NULL) {
612 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800613 }
Elliott Hughes88d63092013-01-09 09:55:54 -0800614 class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800615 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800616}
617
Elliott Hughes88d63092013-01-09 09:55:54 -0800618JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800619 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800620 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800621 if (c == NULL) {
622 return status;
623 }
624 if (c->IsInterface()) {
625 // http://code.google.com/p/android/issues/detail?id=20856
Elliott Hughes88d63092013-01-09 09:55:54 -0800626 superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800627 } else {
Elliott Hughes88d63092013-01-09 09:55:54 -0800628 superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800629 }
630 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700631}
632
Elliott Hughes436e3722012-02-17 20:01:47 -0800633JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800634 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800635 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800636 return JDWP::ERR_INVALID_OBJECT;
637 }
638 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
639 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700640}
641
Elliott Hughes436e3722012-02-17 20:01:47 -0800642JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
643 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800644 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800645 if (c == NULL) {
646 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800647 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800648
649 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
650
651 // Set ACC_SUPER; dex files don't contain this flag, but all classes are supposed to have it set.
652 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
653 access_flags |= kAccSuper;
654
655 expandBufAdd4BE(pReply, access_flags);
656
657 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700658}
659
Elliott Hughesf327e072013-01-09 16:01:26 -0800660JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
661 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800662 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800663 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800664 return JDWP::ERR_INVALID_OBJECT;
665 }
666
667 // Ensure all threads are suspended while we read objects' lock words.
668 Thread* self = Thread::Current();
669 Locks::mutator_lock_->SharedUnlock(self);
670 Locks::mutator_lock_->ExclusiveLock(self);
671
672 MonitorInfo monitor_info(o);
673
674 Locks::mutator_lock_->ExclusiveUnlock(self);
675 Locks::mutator_lock_->SharedLock(self);
676
677 if (monitor_info.owner != NULL) {
678 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner->GetPeer()));
679 } else {
680 expandBufAddObjectId(reply, gRegistry->Add(NULL));
681 }
682 expandBufAdd4BE(reply, monitor_info.entry_count);
683 expandBufAdd4BE(reply, monitor_info.waiters.size());
684 for (size_t i = 0; i < monitor_info.waiters.size(); ++i) {
685 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters[i]->GetPeer()));
686 }
687 return JDWP::ERR_NONE;
688}
689
Elliott Hughes734b8c62013-01-11 15:32:45 -0800690JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
691 std::vector<JDWP::ObjectId>& monitors,
692 std::vector<uint32_t>& stack_depths)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800693 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
694 ScopedObjectAccessUnchecked soa(Thread::Current());
695 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
696 Thread* thread;
697 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
698 if (error != JDWP::ERR_NONE) {
699 return error;
700 }
701 if (!IsSuspendedForDebugger(soa, thread)) {
702 return JDWP::ERR_THREAD_NOT_SUSPENDED;
703 }
704
705 struct OwnedMonitorVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800706 OwnedMonitorVisitor(Thread* thread, Context* context)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800707 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -0800708 : StackVisitor(thread, context), current_stack_depth(0) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800709
710 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
711 // annotalysis.
712 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
713 if (!GetMethod()->IsRuntimeMethod()) {
714 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800715 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800716 }
717 return true;
718 }
719
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800720 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800721 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800722 visitor->monitors.push_back(owned_monitor);
723 visitor->stack_depths.push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800724 }
725
Elliott Hughes734b8c62013-01-11 15:32:45 -0800726 size_t current_stack_depth;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800727 std::vector<mirror::Object*> monitors;
Elliott Hughes734b8c62013-01-11 15:32:45 -0800728 std::vector<uint32_t> stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800729 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800730 UniquePtr<Context> context(Context::Create());
731 OwnedMonitorVisitor visitor(thread, context.get());
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800732 visitor.WalkStack();
733
734 for (size_t i = 0; i < visitor.monitors.size(); ++i) {
735 monitors.push_back(gRegistry->Add(visitor.monitors[i]));
Elliott Hughes734b8c62013-01-11 15:32:45 -0800736 stack_depths.push_back(visitor.stack_depths[i]);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800737 }
738
739 return JDWP::ERR_NONE;
740}
741
Elliott Hughesf9501702013-01-11 11:22:27 -0800742JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id, JDWP::ObjectId& contended_monitor)
743 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
744 ScopedObjectAccessUnchecked soa(Thread::Current());
745 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
746 Thread* thread;
747 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
748 if (error != JDWP::ERR_NONE) {
749 return error;
750 }
751 if (!IsSuspendedForDebugger(soa, thread)) {
752 return JDWP::ERR_THREAD_NOT_SUSPENDED;
753 }
754
755 contended_monitor = gRegistry->Add(Monitor::GetContendedMonitor(thread));
756
757 return JDWP::ERR_NONE;
758}
759
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800760JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
761 std::vector<uint64_t>& counts)
762 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800763 std::vector<mirror::Class*> classes;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800764 counts.clear();
765 for (size_t i = 0; i < class_ids.size(); ++i) {
766 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800767 mirror::Class* c = DecodeClass(class_ids[i], status);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800768 if (c == NULL) {
769 return status;
770 }
771 classes.push_back(c);
772 counts.push_back(0);
773 }
774
775 Runtime::Current()->GetHeap()->CountInstances(classes, false, &counts[0]);
776 return JDWP::ERR_NONE;
777}
778
Elliott Hughes3b78c942013-01-15 17:35:41 -0800779JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::ObjectId>& instances)
780 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
781 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800782 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800783 if (c == NULL) {
784 return status;
785 }
786
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800787 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800788 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
789 for (size_t i = 0; i < raw_instances.size(); ++i) {
790 instances.push_back(gRegistry->Add(raw_instances[i]));
791 }
792 return JDWP::ERR_NONE;
793}
794
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800795JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
796 std::vector<JDWP::ObjectId>& referring_objects)
797 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800798 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800799 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800800 return JDWP::ERR_INVALID_OBJECT;
801 }
802
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800803 std::vector<mirror::Object*> raw_instances;
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800804 Runtime::Current()->GetHeap()->GetReferringObjects(o, max_count, raw_instances);
805 for (size_t i = 0; i < raw_instances.size(); ++i) {
806 referring_objects.push_back(gRegistry->Add(raw_instances[i]));
807 }
808 return JDWP::ERR_NONE;
809}
810
Elliott Hughes64f574f2013-02-20 14:57:12 -0800811JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id)
812 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
813 gRegistry->DisableCollection(object_id);
814 return JDWP::ERR_NONE;
815}
816
817JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id)
818 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
819 gRegistry->EnableCollection(object_id);
820 return JDWP::ERR_NONE;
821}
822
823JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool& is_collected)
824 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
825 is_collected = gRegistry->IsCollected(object_id);
826 return JDWP::ERR_NONE;
827}
828
829void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
830 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
831 gRegistry->DisposeObject(object_id, reference_count);
832}
833
Elliott Hughes88d63092013-01-09 09:55:54 -0800834JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800835 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800836 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800837 if (c == NULL) {
838 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800839 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800840
841 expandBufAdd1(pReply, c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS);
Elliott Hughes88d63092013-01-09 09:55:54 -0800842 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800843 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700844}
845
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800846void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800847 // Get the complete list of reference classes (i.e. all classes except
848 // the primitive types).
849 // Returns a newly-allocated buffer full of RefTypeId values.
850 struct ClassListCreator {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800851 explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800852 }
853
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800854 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800855 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
856 }
857
Elliott Hughes64f574f2013-02-20 14:57:12 -0800858 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
859 // annotalysis.
860 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -0800861 if (!c->IsPrimitive()) {
Elliott Hughes64f574f2013-02-20 14:57:12 -0800862 classes.push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -0800863 }
864 return true;
865 }
866
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800867 std::vector<JDWP::RefTypeId>& classes;
Elliott Hughesa2155262011-11-16 16:26:58 -0800868 };
869
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800870 ClassListCreator clc(classes);
Elliott Hughesa2155262011-11-16 16:26:58 -0800871 Runtime::Current()->GetClassLinker()->VisitClasses(ClassListCreator::Visit, &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700872}
873
Elliott Hughes88d63092013-01-09 09:55:54 -0800874JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, uint32_t* pStatus, std::string* pDescriptor) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800875 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800876 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800877 if (c == NULL) {
878 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800879 }
880
Elliott Hughesa2155262011-11-16 16:26:58 -0800881 if (c->IsArrayClass()) {
882 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
883 *pTypeTag = JDWP::TT_ARRAY;
884 } else {
885 if (c->IsErroneous()) {
886 *pStatus = JDWP::CS_ERROR;
887 } else {
888 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
889 }
890 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
891 }
892
893 if (pDescriptor != NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800894 *pDescriptor = ClassHelper(c).GetDescriptor();
Elliott Hughesa2155262011-11-16 16:26:58 -0800895 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800896 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700897}
898
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800899void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800900 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800901 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
902 ids.clear();
903 for (size_t i = 0; i < classes.size(); ++i) {
904 ids.push_back(gRegistry->Add(classes[i]));
905 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700906}
907
Elliott Hughes64f574f2013-02-20 14:57:12 -0800908JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
909 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800910 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800911 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800912 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -0800913 }
Elliott Hughes2435a572012-02-17 16:07:41 -0800914
915 JDWP::JdwpTypeTag type_tag;
916 if (o->GetClass()->IsArrayClass()) {
917 type_tag = JDWP::TT_ARRAY;
918 } else if (o->GetClass()->IsInterface()) {
919 type_tag = JDWP::TT_INTERFACE;
920 } else {
921 type_tag = JDWP::TT_CLASS;
922 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800923 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -0800924
925 expandBufAdd1(pReply, type_tag);
926 expandBufAddRefTypeId(pReply, type_id);
927
928 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700929}
930
Elliott Hughes88d63092013-01-09 09:55:54 -0800931JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string& signature) {
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800932 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800933 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800934 if (c == NULL) {
935 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800936 }
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800937 signature = ClassHelper(c).GetDescriptor();
938 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700939}
940
Elliott Hughes88d63092013-01-09 09:55:54 -0800941JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string& result) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800942 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800943 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800944 if (c == NULL) {
945 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800946 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800947 result = ClassHelper(c).GetSourceFile();
948 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700949}
950
Elliott Hughes88d63092013-01-09 09:55:54 -0800951JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800952 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800953 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes546b9862012-06-20 16:06:13 -0700954 return JDWP::ERR_INVALID_OBJECT;
955 }
956 tag = TagFromObject(o);
957 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700958}
959
Elliott Hughesaed4be92011-12-02 16:16:23 -0800960size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -0800961 switch (tag) {
962 case JDWP::JT_VOID:
963 return 0;
964 case JDWP::JT_BYTE:
965 case JDWP::JT_BOOLEAN:
966 return 1;
967 case JDWP::JT_CHAR:
968 case JDWP::JT_SHORT:
969 return 2;
970 case JDWP::JT_FLOAT:
971 case JDWP::JT_INT:
972 return 4;
973 case JDWP::JT_ARRAY:
974 case JDWP::JT_OBJECT:
975 case JDWP::JT_STRING:
976 case JDWP::JT_THREAD:
977 case JDWP::JT_THREAD_GROUP:
978 case JDWP::JT_CLASS_LOADER:
979 case JDWP::JT_CLASS_OBJECT:
980 return sizeof(JDWP::ObjectId);
981 case JDWP::JT_DOUBLE:
982 case JDWP::JT_LONG:
983 return 8;
984 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800985 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -0800986 return -1;
987 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700988}
989
Elliott Hughes88d63092013-01-09 09:55:54 -0800990JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int& length) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800991 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800992 mirror::Array* a = DecodeArray(array_id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800993 if (a == NULL) {
994 return status;
Elliott Hughes24437992011-11-30 14:49:33 -0800995 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800996 length = a->GetLength();
997 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700998}
999
Elliott Hughes88d63092013-01-09 09:55:54 -08001000JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001001 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001002 mirror::Array* a = DecodeArray(array_id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001003 if (a == NULL) {
1004 return status;
1005 }
Elliott Hughes24437992011-11-30 14:49:33 -08001006
1007 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1008 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001009 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001010 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001011 std::string descriptor(ClassHelper(a->GetClass()).GetDescriptor());
Elliott Hughes24437992011-11-30 14:49:33 -08001012 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
1013
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001014 expandBufAdd1(pReply, tag);
1015 expandBufAdd4BE(pReply, count);
1016
Elliott Hughes24437992011-11-30 14:49:33 -08001017 if (IsPrimitiveTag(tag)) {
1018 size_t width = GetTagWidth(tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001019 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1020 if (width == 8) {
Ian Rogersa15e67d2012-02-28 13:51:55 -08001021 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t)));
Elliott Hughes24437992011-11-30 14:49:33 -08001022 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1023 } else if (width == 4) {
Ian Rogersa15e67d2012-02-28 13:51:55 -08001024 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t)));
Elliott Hughes24437992011-11-30 14:49:33 -08001025 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1026 } else if (width == 2) {
Ian Rogersa15e67d2012-02-28 13:51:55 -08001027 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t)));
Elliott Hughes24437992011-11-30 14:49:33 -08001028 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1029 } else {
Ian Rogersa15e67d2012-02-28 13:51:55 -08001030 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t)));
Elliott Hughes24437992011-11-30 14:49:33 -08001031 memcpy(dst, &src[offset * width], count * width);
1032 }
1033 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001034 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001035 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001036 mirror::Object* element = oa->Get(offset + i);
Elliott Hughes24437992011-11-30 14:49:33 -08001037 JDWP::JdwpTag specific_tag = (element != NULL) ? TagFromObject(element) : tag;
1038 expandBufAdd1(pReply, specific_tag);
1039 expandBufAddObjectId(pReply, gRegistry->Add(element));
1040 }
1041 }
1042
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001043 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001044}
1045
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001046template <typename T> void CopyArrayData(mirror::Array* a, JDWP::Request& src, int offset, int count) {
1047 DCHECK(a->GetClass()->IsPrimitiveArray());
1048
1049 T* dst = &(reinterpret_cast<T*>(a->GetRawData(sizeof(T)))[offset * sizeof(T)]);
1050 for (int i = 0; i < count; ++i) {
1051 *dst++ = src.ReadValue(sizeof(T));
1052 }
1053}
1054
Elliott Hughes88d63092013-01-09 09:55:54 -08001055JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001056 JDWP::Request& request)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001057 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001058 JDWP::JdwpError status;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001059 mirror::Array* dst = DecodeArray(array_id, status);
1060 if (dst == NULL) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001061 return status;
1062 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001063
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001064 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001065 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001066 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001067 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001068 std::string descriptor(ClassHelper(dst->GetClass()).GetDescriptor());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001069 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
1070
1071 if (IsPrimitiveTag(tag)) {
1072 size_t width = GetTagWidth(tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001073 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001074 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001075 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001076 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001077 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001078 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001079 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001080 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001081 }
1082 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001083 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001084 for (int i = 0; i < count; ++i) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001085 JDWP::ObjectId id = request.ReadObjectId();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001086 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001087 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001088 return JDWP::ERR_INVALID_OBJECT;
1089 }
1090 oa->Set(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001091 }
1092 }
1093
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001094 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001095}
1096
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001097JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001098 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001099}
1100
Elliott Hughes88d63092013-01-09 09:55:54 -08001101JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001102 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001103 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001104 if (c == NULL) {
1105 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001106 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001107 new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001108 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001109}
1110
Elliott Hughesbf13d362011-12-08 15:51:37 -08001111/*
1112 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1113 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001114JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001115 JDWP::ObjectId& new_array) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001116 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001117 mirror::Class* c = DecodeClass(array_class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001118 if (c == NULL) {
1119 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001120 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001121 new_array = gRegistry->Add(mirror::Array::Alloc(Thread::Current(), c, length));
Elliott Hughes436e3722012-02-17 20:01:47 -08001122 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001123}
1124
Elliott Hughes88d63092013-01-09 09:55:54 -08001125bool Dbg::MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001126 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001127 mirror::Class* c1 = DecodeClass(instance_class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001128 CHECK(c1 != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001129 mirror::Class* c2 = DecodeClass(class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001130 CHECK(c2 != NULL);
1131 return c1->IsAssignableFrom(c2);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001132}
1133
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001134static JDWP::FieldId ToFieldId(const mirror::Field* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001135 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001136#ifdef MOVING_GARBAGE_COLLECTOR
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001137 UNIMPLEMENTED(FATAL);
Elliott Hughes03181a82011-11-17 17:22:21 -08001138#else
1139 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
1140#endif
1141}
1142
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001143static JDWP::MethodId ToMethodId(const mirror::AbstractMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001144 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001145#ifdef MOVING_GARBAGE_COLLECTOR
1146 UNIMPLEMENTED(FATAL);
1147#else
1148 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
1149#endif
1150}
1151
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001152static mirror::Field* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001153 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesaed4be92011-12-02 16:16:23 -08001154#ifdef MOVING_GARBAGE_COLLECTOR
1155 UNIMPLEMENTED(FATAL);
1156#else
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001157 return reinterpret_cast<mirror::Field*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001158#endif
1159}
1160
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001161static mirror::AbstractMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001162 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001163#ifdef MOVING_GARBAGE_COLLECTOR
1164 UNIMPLEMENTED(FATAL);
1165#else
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001166 return reinterpret_cast<mirror::AbstractMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001167#endif
1168}
1169
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001170static void SetLocation(JDWP::JdwpLocation& location, mirror::AbstractMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001171 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001172 if (m == NULL) {
1173 memset(&location, 0, sizeof(location));
1174 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001175 mirror::Class* c = m->GetDeclaringClass();
Elliott Hughes74847412012-06-20 18:10:21 -07001176 location.type_tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1177 location.class_id = gRegistry->Add(c);
1178 location.method_id = ToMethodId(m);
Ian Rogers0399dde2012-06-06 17:09:28 -07001179 location.dex_pc = dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001180 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001181}
1182
Elliott Hughesa96836a2013-01-17 12:27:49 -08001183std::string Dbg::GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001184 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001185 mirror::AbstractMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001186 return MethodHelper(m).GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001187}
1188
Elliott Hughesa96836a2013-01-17 12:27:49 -08001189std::string Dbg::GetFieldName(JDWP::FieldId field_id)
1190 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001191 mirror::Field* f = FromFieldId(field_id);
Elliott Hughesa96836a2013-01-17 12:27:49 -08001192 return FieldHelper(f).GetName();
1193}
1194
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001195/*
1196 * Augment the access flags for synthetic methods and fields by setting
1197 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1198 * flags not specified by the Java programming language.
1199 */
1200static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1201 accessFlags &= kAccJavaFlagsMask;
1202 if ((accessFlags & kAccSynthetic) != 0) {
1203 accessFlags |= 0xf0000000;
1204 }
1205 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001206}
1207
Elliott Hughesdbb40792011-11-18 17:05:22 -08001208static const uint16_t kEclipseWorkaroundSlot = 1000;
1209
1210/*
1211 * Eclipse appears to expect that the "this" reference is in slot zero.
1212 * If it's not, the "variables" display will show two copies of "this",
1213 * possibly because it gets "this" from SF.ThisObject and then displays
1214 * all locals with nonzero slot numbers.
1215 *
1216 * So, we remap the item in slot 0 to 1000, and remap "this" to zero. On
1217 * SF.GetValues / SF.SetValues we map them back.
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001218 *
1219 * TODO: jdb uses the value to determine whether a variable is a local or an argument,
1220 * by checking whether it's less than the number of arguments. To make that work, we'd
1221 * have to "mangle" all the arguments to come first, not just the implicit argument 'this'.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001222 */
1223static uint16_t MangleSlot(uint16_t slot, const char* name) {
1224 uint16_t newSlot = slot;
1225 if (strcmp(name, "this") == 0) {
1226 newSlot = 0;
1227 } else if (slot == 0) {
1228 newSlot = kEclipseWorkaroundSlot;
1229 }
1230 return newSlot;
1231}
1232
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001233static uint16_t DemangleSlot(uint16_t slot, mirror::AbstractMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001234 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001235 if (slot == kEclipseWorkaroundSlot) {
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001236 return 0;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001237 } else if (slot == 0) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001238 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Elliott Hughescaf76542012-06-28 16:08:22 -07001239 CHECK(code_item != NULL) << PrettyMethod(m);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001240 return code_item->registers_size_ - code_item->ins_size_;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001241 }
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001242 return slot;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001243}
1244
Elliott Hughes88d63092013-01-09 09:55:54 -08001245JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001246 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001247 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001248 if (c == NULL) {
1249 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001250 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001251
1252 size_t instance_field_count = c->NumInstanceFields();
1253 size_t static_field_count = c->NumStaticFields();
1254
1255 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1256
1257 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001258 mirror::Field* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001259 FieldHelper fh(f);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001260 expandBufAddFieldId(pReply, ToFieldId(f));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001261 expandBufAddUtf8String(pReply, fh.GetName());
1262 expandBufAddUtf8String(pReply, fh.GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001263 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001264 static const char genericSignature[1] = "";
1265 expandBufAddUtf8String(pReply, genericSignature);
1266 }
1267 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1268 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001269 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001270}
1271
Elliott Hughes88d63092013-01-09 09:55:54 -08001272JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001273 JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001274 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001275 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001276 if (c == NULL) {
1277 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001278 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001279
1280 size_t direct_method_count = c->NumDirectMethods();
1281 size_t virtual_method_count = c->NumVirtualMethods();
1282
1283 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1284
1285 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001286 mirror::AbstractMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001287 MethodHelper mh(m);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001288 expandBufAddMethodId(pReply, ToMethodId(m));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001289 expandBufAddUtf8String(pReply, mh.GetName());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001290 expandBufAddUtf8String(pReply, mh.GetSignature());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001291 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001292 static const char genericSignature[1] = "";
1293 expandBufAddUtf8String(pReply, genericSignature);
1294 }
1295 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1296 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001297 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001298}
1299
Elliott Hughes88d63092013-01-09 09:55:54 -08001300JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001301 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001302 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001303 if (c == NULL) {
1304 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001305 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001306
1307 ClassHelper kh(c);
Ian Rogersd24e2642012-06-06 21:21:43 -07001308 size_t interface_count = kh.NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001309 expandBufAdd4BE(pReply, interface_count);
1310 for (size_t i = 0; i < interface_count; ++i) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001311 expandBufAddRefTypeId(pReply, gRegistry->AddRefType(kh.GetDirectInterface(i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001312 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001313 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001314}
1315
Elliott Hughes88d63092013-01-09 09:55:54 -08001316void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001317 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001318 struct DebugCallbackContext {
1319 int numItems;
1320 JDWP::ExpandBuf* pReply;
1321
Elliott Hughes2435a572012-02-17 16:07:41 -08001322 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001323 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1324 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001325 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001326 pContext->numItems++;
1327 return true;
1328 }
1329 };
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001330 mirror::AbstractMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001331 MethodHelper mh(m);
Elliott Hughes03181a82011-11-17 17:22:21 -08001332 uint64_t start, end;
1333 if (m->IsNative()) {
1334 start = -1;
1335 end = -1;
1336 } else {
1337 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001338 // Return the index of the last instruction
1339 end = mh.GetCodeItem()->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001340 }
1341
1342 expandBufAdd8BE(pReply, start);
1343 expandBufAdd8BE(pReply, end);
1344
1345 // Add numLines later
1346 size_t numLinesOffset = expandBufGetLength(pReply);
1347 expandBufAdd4BE(pReply, 0);
1348
1349 DebugCallbackContext context;
1350 context.numItems = 0;
1351 context.pReply = pReply;
1352
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001353 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
1354 DebugCallbackContext::Callback, NULL, &context);
Elliott Hughes03181a82011-11-17 17:22:21 -08001355
1356 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001357}
1358
Elliott Hughes88d63092013-01-09 09:55:54 -08001359void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001360 struct DebugCallbackContext {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001361 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001362 size_t variable_count;
1363 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001364
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001365 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 -08001366 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1367
Elliott Hughesad3da692012-02-24 16:51:35 -08001368 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 -08001369
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001370 slot = MangleSlot(slot, name);
1371
Elliott Hughesdbb40792011-11-18 17:05:22 -08001372 expandBufAdd8BE(pContext->pReply, startAddress);
1373 expandBufAddUtf8String(pContext->pReply, name);
1374 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001375 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001376 expandBufAddUtf8String(pContext->pReply, signature);
1377 }
1378 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1379 expandBufAdd4BE(pContext->pReply, slot);
1380
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001381 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001382 }
1383 };
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001384 mirror::AbstractMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001385 MethodHelper mh(m);
1386 const DexFile::CodeItem* code_item = mh.GetCodeItem();
Elliott Hughesdbb40792011-11-18 17:05:22 -08001387
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001388 // arg_count considers doubles and longs to take 2 units.
1389 // variable_count considers everything to take 1 unit.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001390 std::string shorty(mh.GetShorty());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001391 expandBufAdd4BE(pReply, mirror::AbstractMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001392
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001393 // We don't know the total number of variables yet, so leave a blank and update it later.
1394 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001395 expandBufAdd4BE(pReply, 0);
1396
1397 DebugCallbackContext context;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001398 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001399 context.variable_count = 0;
1400 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001401
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001402 mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL,
1403 DebugCallbackContext::Callback, &context);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001404
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001405 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001406}
1407
Elliott Hughes9777ba22013-01-17 09:04:19 -08001408JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
1409 std::vector<uint8_t>& bytecodes)
1410 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001411 mirror::AbstractMethod* m = FromMethodId(method_id);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001412 if (m == NULL) {
1413 return JDWP::ERR_INVALID_METHODID;
1414 }
1415 MethodHelper mh(m);
1416 const DexFile::CodeItem* code_item = mh.GetCodeItem();
1417 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1418 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1419 const uint8_t* end = begin + byte_count;
1420 for (const uint8_t* p = begin; p != end; ++p) {
1421 bytecodes.push_back(*p);
1422 }
1423 return JDWP::ERR_NONE;
1424}
1425
Elliott Hughes88d63092013-01-09 09:55:54 -08001426JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
1427 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001428}
1429
Elliott Hughes88d63092013-01-09 09:55:54 -08001430JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
1431 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001432}
1433
Elliott Hughes88d63092013-01-09 09:55:54 -08001434static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1435 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001436 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001437 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001438 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001439 mirror::Class* c = DecodeClass(ref_type_id, status);
Elliott Hughes88d63092013-01-09 09:55:54 -08001440 if (ref_type_id != 0 && c == NULL) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001441 return status;
1442 }
1443
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001444 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001445 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001446 return JDWP::ERR_INVALID_OBJECT;
1447 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001448 mirror::Field* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001449
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001450 mirror::Class* receiver_class = c;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001451 if (receiver_class == NULL && o != NULL) {
1452 receiver_class = o->GetClass();
1453 }
1454 // TODO: should we give up now if receiver_class is NULL?
1455 if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
1456 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001457 return JDWP::ERR_INVALID_FIELDID;
1458 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001459
Elliott Hughes0cf74332012-02-23 23:14:00 -08001460 // The RI only enforces the static/non-static mismatch in one direction.
1461 // TODO: should we change the tests and check both?
1462 if (is_static) {
1463 if (!f->IsStatic()) {
1464 return JDWP::ERR_INVALID_FIELDID;
1465 }
1466 } else {
1467 if (f->IsStatic()) {
1468 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001469 }
1470 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001471 if (f->IsStatic()) {
1472 o = f->GetDeclaringClass();
1473 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001474
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001475 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001476
1477 if (IsPrimitiveTag(tag)) {
1478 expandBufAdd1(pReply, tag);
1479 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1480 expandBufAdd1(pReply, f->Get32(o));
1481 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1482 expandBufAdd2BE(pReply, f->Get32(o));
1483 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1484 expandBufAdd4BE(pReply, f->Get32(o));
1485 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1486 expandBufAdd8BE(pReply, f->Get64(o));
1487 } else {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001488 LOG(FATAL) << "Unknown tag: " << tag;
Elliott Hughesaed4be92011-12-02 16:16:23 -08001489 }
1490 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001491 mirror::Object* value = f->GetObject(o);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001492 expandBufAdd1(pReply, TagFromObject(value));
1493 expandBufAddObjectId(pReply, gRegistry->Add(value));
1494 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001495 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001496}
1497
Elliott Hughes88d63092013-01-09 09:55:54 -08001498JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001499 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001500 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001501}
1502
Elliott Hughes88d63092013-01-09 09:55:54 -08001503JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) {
1504 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001505}
1506
Elliott Hughes88d63092013-01-09 09:55:54 -08001507static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001508 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001509 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001510 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001511 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001512 return JDWP::ERR_INVALID_OBJECT;
1513 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001514 mirror::Field* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001515
1516 // The RI only enforces the static/non-static mismatch in one direction.
1517 // TODO: should we change the tests and check both?
1518 if (is_static) {
1519 if (!f->IsStatic()) {
1520 return JDWP::ERR_INVALID_FIELDID;
1521 }
1522 } else {
1523 if (f->IsStatic()) {
1524 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001525 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001526 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001527 if (f->IsStatic()) {
1528 o = f->GetDeclaringClass();
1529 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001530
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001531 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001532
1533 if (IsPrimitiveTag(tag)) {
1534 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001535 CHECK_EQ(width, 8);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001536 f->Set64(o, value);
1537 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001538 CHECK_LE(width, 4);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001539 f->Set32(o, value);
1540 }
1541 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001542 mirror::Object* v = gRegistry->Get<mirror::Object*>(value);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001543 if (v == ObjectRegistry::kInvalidObject) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001544 return JDWP::ERR_INVALID_OBJECT;
1545 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001546 if (v != NULL) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001547 mirror::Class* field_type = FieldHelper(f).GetType();
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001548 if (!field_type->IsAssignableFrom(v->GetClass())) {
1549 return JDWP::ERR_INVALID_OBJECT;
1550 }
1551 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001552 f->SetObject(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001553 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001554
1555 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001556}
1557
Elliott Hughes88d63092013-01-09 09:55:54 -08001558JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001559 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001560 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001561}
1562
Elliott Hughes88d63092013-01-09 09:55:54 -08001563JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1564 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001565}
1566
Elliott Hughes88d63092013-01-09 09:55:54 -08001567std::string Dbg::StringToUtf8(JDWP::ObjectId string_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001568 mirror::String* s = gRegistry->Get<mirror::String*>(string_id);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001569 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001570}
1571
Elliott Hughes221229c2013-01-08 18:17:50 -08001572JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string& name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001573 ScopedObjectAccessUnchecked soa(Thread::Current());
1574 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001575 Thread* thread;
1576 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1577 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1578 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001579 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001580
1581 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001582 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
1583 mirror::Field* java_lang_Thread_name_field =
1584 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1585 mirror::String* s =
1586 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Elliott Hughes221229c2013-01-08 18:17:50 -08001587 if (s != NULL) {
1588 name = s->ToModifiedUtf8();
1589 }
1590 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001591}
1592
Elliott Hughes221229c2013-01-08 18:17:50 -08001593JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001594 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001595 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001596 if (thread_object == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001597 return JDWP::ERR_INVALID_OBJECT;
1598 }
1599
1600 // Okay, so it's an object, but is it actually a thread?
Ian Rogers50b35e22012-10-04 10:09:15 -07001601 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001602 Thread* thread;
1603 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1604 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1605 // Zombie threads are in the null group.
1606 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
1607 return JDWP::ERR_NONE;
1608 }
1609 if (error != JDWP::ERR_NONE) {
1610 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08001611 }
Elliott Hughes499c5132011-11-17 14:55:11 -08001612
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001613 mirror::Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/Thread;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001614 CHECK(c != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001615 mirror::Field* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001616 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001617 mirror::Object* group = f->GetObject(thread_object);
Elliott Hughes499c5132011-11-17 14:55:11 -08001618 CHECK(group != NULL);
Elliott Hughes2435a572012-02-17 16:07:41 -08001619 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1620
1621 expandBufAddObjectId(pReply, thread_group_id);
1622 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001623}
1624
Elliott Hughes88d63092013-01-09 09:55:54 -08001625std::string Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001626 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001627 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughes499c5132011-11-17 14:55:11 -08001628 CHECK(thread_group != NULL);
1629
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001630 mirror::Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/ThreadGroup;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001631 CHECK(c != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001632 mirror::Field* f = c->FindInstanceField("name", "Ljava/lang/String;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001633 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001634 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Elliott Hughes499c5132011-11-17 14:55:11 -08001635 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001636}
1637
Elliott Hughes88d63092013-01-09 09:55:54 -08001638JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001639 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughes4e235312011-12-02 11:34:15 -08001640 CHECK(thread_group != NULL);
1641
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001642 mirror::Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/ThreadGroup;");
Elliott Hughes4e235312011-12-02 11:34:15 -08001643 CHECK(c != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001644 mirror::Field* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
Elliott Hughes4e235312011-12-02 11:34:15 -08001645 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001646 mirror::Object* parent = f->GetObject(thread_group);
Elliott Hughes4e235312011-12-02 11:34:15 -08001647 return gRegistry->Add(parent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001648}
1649
1650JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001651 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001652 mirror::Field* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
1653 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001654 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001655}
1656
1657JDWP::ObjectId Dbg::GetMainThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001658 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001659 mirror::Field* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup);
1660 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001661 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001662}
1663
Elliott Hughes221229c2013-01-08 18:17:50 -08001664JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus, JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001665 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08001666
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001667 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
1668
Ian Rogers50b35e22012-10-04 10:09:15 -07001669 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001670 Thread* thread;
1671 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1672 if (error != JDWP::ERR_NONE) {
1673 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1674 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08001675 return JDWP::ERR_NONE;
1676 }
1677 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08001678 }
1679
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001680 if (IsSuspendedForDebugger(soa, thread)) {
1681 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08001682 }
1683
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001684 switch (thread->GetState()) {
1685 case kBlocked: *pThreadStatus = JDWP::TS_MONITOR; break;
1686 case kNative: *pThreadStatus = JDWP::TS_RUNNING; break;
1687 case kRunnable: *pThreadStatus = JDWP::TS_RUNNING; break;
1688 case kSleeping: *pThreadStatus = JDWP::TS_SLEEPING; break;
1689 case kStarting: *pThreadStatus = JDWP::TS_ZOMBIE; break;
1690 case kSuspended: *pThreadStatus = JDWP::TS_RUNNING; break;
1691 case kTerminated: *pThreadStatus = JDWP::TS_ZOMBIE; break;
1692 case kTimedWaiting: *pThreadStatus = JDWP::TS_WAIT; break;
1693 case kWaitingForDebuggerSend: *pThreadStatus = JDWP::TS_WAIT; break;
1694 case kWaitingForDebuggerSuspension: *pThreadStatus = JDWP::TS_WAIT; break;
1695 case kWaitingForDebuggerToAttach: *pThreadStatus = JDWP::TS_WAIT; break;
1696 case kWaitingForGcToComplete: *pThreadStatus = JDWP::TS_WAIT; break;
Ian Rogers1d54e732013-05-02 21:10:01 -07001697 case kWaitingForCheckPointsToRun: *pThreadStatus = JDWP::TS_WAIT; break;
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001698 case kWaitingForJniOnLoad: *pThreadStatus = JDWP::TS_WAIT; break;
1699 case kWaitingForSignalCatcherOutput: *pThreadStatus = JDWP::TS_WAIT; break;
1700 case kWaitingInMainDebuggerLoop: *pThreadStatus = JDWP::TS_WAIT; break;
1701 case kWaitingInMainSignalCatcherLoop: *pThreadStatus = JDWP::TS_WAIT; break;
1702 case kWaitingPerformingGc: *pThreadStatus = JDWP::TS_WAIT; break;
1703 case kWaiting: *pThreadStatus = JDWP::TS_WAIT; break;
1704 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
1705 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001706 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001707}
1708
Elliott Hughes221229c2013-01-08 18:17:50 -08001709JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001710 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07001711 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001712 Thread* thread;
1713 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1714 if (error != JDWP::ERR_NONE) {
1715 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08001716 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001717 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001718 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08001719 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001720}
1721
Elliott Hughesf9501702013-01-11 11:22:27 -08001722JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
1723 ScopedObjectAccess soa(Thread::Current());
1724 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1725 Thread* thread;
1726 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1727 if (error != JDWP::ERR_NONE) {
1728 return error;
1729 }
1730 thread->Interrupt();
1731 return JDWP::ERR_NONE;
1732}
1733
Elliott Hughescaf76542012-06-28 16:08:22 -07001734void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) {
Ian Rogers365c1022012-06-22 15:05:28 -07001735 class ThreadListVisitor {
1736 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001737 ThreadListVisitor(const ScopedObjectAccessUnchecked& soa, mirror::Object* desired_thread_group,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001738 std::vector<JDWP::ObjectId>& thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001739 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001740 : soa_(soa), desired_thread_group_(desired_thread_group), thread_ids_(thread_ids) {}
Ian Rogers365c1022012-06-22 15:05:28 -07001741
Elliott Hughesa2155262011-11-16 16:26:58 -08001742 static void Visit(Thread* t, void* arg) {
1743 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
1744 }
1745
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001746 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1747 // annotalysis.
1748 void Visit(Thread* t) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001749 if (t == Dbg::GetDebugThread()) {
1750 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
1751 // query all threads, so it's easier if we just don't tell them about this thread.
1752 return;
1753 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001754 mirror::Object* peer = t->GetPeer();
jeffhao0dfbb7e2012-11-28 15:26:03 -08001755 if (IsInDesiredThreadGroup(peer)) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001756 thread_ids_.push_back(gRegistry->Add(peer));
Elliott Hughesa2155262011-11-16 16:26:58 -08001757 }
1758 }
1759
Ian Rogers365c1022012-06-22 15:05:28 -07001760 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001761 bool IsInDesiredThreadGroup(mirror::Object* peer)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001762 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao0dfbb7e2012-11-28 15:26:03 -08001763 // peer might be NULL if the thread is still starting up.
1764 if (peer == NULL) {
1765 // We can't tell the debugger about this thread yet.
1766 // TODO: if we identified threads to the debugger by their Thread*
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001767 // rather than their peer's mirror::Object*, we could fix this.
jeffhao0dfbb7e2012-11-28 15:26:03 -08001768 // Doing so might help us report ZOMBIE threads too.
1769 return false;
1770 }
jeffhaoc1e04902012-12-13 12:41:10 -08001771 // Do we want threads from all thread groups?
1772 if (desired_thread_group_ == NULL) {
1773 return true;
1774 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001775 mirror::Object* group = soa_.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(peer);
jeffhao0dfbb7e2012-11-28 15:26:03 -08001776 return (group == desired_thread_group_);
1777 }
1778
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07001779 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001780 mirror::Object* const desired_thread_group_;
Elliott Hughescaf76542012-06-28 16:08:22 -07001781 std::vector<JDWP::ObjectId>& thread_ids_;
Elliott Hughesa2155262011-11-16 16:26:58 -08001782 };
1783
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001784 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001785 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001786 ThreadListVisitor tlv(soa, thread_group, thread_ids);
Ian Rogers50b35e22012-10-04 10:09:15 -07001787 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07001788 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
Elliott Hughescaf76542012-06-28 16:08:22 -07001789}
Elliott Hughesa2155262011-11-16 16:26:58 -08001790
Elliott Hughescaf76542012-06-28 16:08:22 -07001791void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001792 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001793 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughescaf76542012-06-28 16:08:22 -07001794
1795 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001796 mirror::Field* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
1797 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Elliott Hughescaf76542012-06-28 16:08:22 -07001798
1799 // Get the array and size out of the ArrayList<ThreadGroup>...
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001800 mirror::Field* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
1801 mirror::Field* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
1802 mirror::ObjectArray<mirror::Object>* groups_array =
1803 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
Elliott Hughescaf76542012-06-28 16:08:22 -07001804 const int32_t size = size_field->GetInt(groups_array_list);
1805
1806 // Copy the first 'size' elements out of the array into the result.
1807 for (int32_t i = 0; i < size; ++i) {
1808 child_thread_group_ids.push_back(gRegistry->Add(groups_array->Get(i)));
Elliott Hughesa2155262011-11-16 16:26:58 -08001809 }
1810}
1811
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001812static int GetStackDepth(Thread* thread)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001813 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07001814 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001815 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogers7a22fa62013-01-23 12:16:16 -08001816 : StackVisitor(thread, NULL), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07001817
Elliott Hughes64f574f2013-02-20 14:57:12 -08001818 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1819 // annotalysis.
1820 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07001821 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08001822 ++depth;
1823 }
Elliott Hughes530fa002012-03-12 11:44:49 -07001824 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001825 }
1826 size_t depth;
1827 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07001828
Ian Rogers7a22fa62013-01-23 12:16:16 -08001829 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07001830 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001831 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001832}
1833
Elliott Hughes221229c2013-01-08 18:17:50 -08001834JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001835 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08001836 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001837 Thread* thread;
1838 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1839 if (error != JDWP::ERR_NONE) {
1840 return error;
1841 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08001842 if (!IsSuspendedForDebugger(soa, thread)) {
1843 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1844 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001845 result = GetStackDepth(thread);
1846 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08001847}
1848
Ian Rogers306057f2012-11-26 12:45:53 -08001849JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
1850 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001851 class GetFrameVisitor : public StackVisitor {
1852 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08001853 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001854 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08001855 : StackVisitor(thread, NULL), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001856 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
1857 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08001858 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001859
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001860 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1861 // annotalysis.
1862 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07001863 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001864 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08001865 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001866 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07001867 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001868 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001869 if (depth_ >= start_frame_) {
1870 JDWP::FrameId frame_id(GetFrameId());
1871 JDWP::JdwpLocation location;
1872 SetLocation(location, GetMethod(), GetDexPc());
Elliott Hughes7baf96f2012-06-22 16:33:50 -07001873 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3lld ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001874 expandBufAdd8BE(buf_, frame_id);
1875 expandBufAddLocation(buf_, location);
1876 }
1877 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07001878 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08001879 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001880
1881 private:
1882 size_t depth_;
1883 const size_t start_frame_;
1884 const size_t frame_count_;
1885 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08001886 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001887
1888 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08001889 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001890 Thread* thread;
1891 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1892 if (error != JDWP::ERR_NONE) {
1893 return error;
1894 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08001895 if (!IsSuspendedForDebugger(soa, thread)) {
1896 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1897 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08001898 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07001899 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001900 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001901}
1902
1903JDWP::ObjectId Dbg::GetThreadSelfId() {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07001904 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08001905 return gRegistry->Add(soa.Self()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001906}
1907
Elliott Hughes475fc232011-10-25 15:00:35 -07001908void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001909 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001910}
1911
1912void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07001913 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001914}
1915
Elliott Hughes221229c2013-01-08 18:17:50 -08001916JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001917 ScopedLocalRef<jobject> peer(Thread::Current()->GetJniEnv(), NULL);
1918 {
1919 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001920 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
Elliott Hughes4e235312011-12-02 11:34:15 -08001921 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001922 if (peer.get() == NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001923 return JDWP::ERR_THREAD_NOT_ALIVE;
1924 }
1925 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08001926 bool timed_out;
1927 Thread* thread = Thread::SuspendForDebugger(peer.get(), request_suspension, &timed_out);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001928 if (thread != NULL) {
1929 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08001930 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001931 return JDWP::ERR_INTERNAL;
1932 } else {
1933 return JDWP::ERR_THREAD_NOT_ALIVE;
1934 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001935}
1936
Elliott Hughes221229c2013-01-08 18:17:50 -08001937void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001938 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001939 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
jeffhaoa77f0f62012-12-05 17:19:31 -08001940 Thread* thread;
1941 {
1942 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1943 thread = Thread::FromManagedThread(soa, peer);
1944 }
Elliott Hughes4e235312011-12-02 11:34:15 -08001945 if (thread == NULL) {
1946 LOG(WARNING) << "No such thread for resume: " << peer;
1947 return;
1948 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001949 bool needs_resume;
1950 {
Ian Rogers50b35e22012-10-04 10:09:15 -07001951 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001952 needs_resume = thread->GetSuspendCount() > 0;
1953 }
1954 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07001955 Runtime::Current()->GetThreadList()->Resume(thread, true);
1956 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001957}
1958
1959void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07001960 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001961}
1962
Ian Rogers0399dde2012-06-06 17:09:28 -07001963struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08001964 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001965 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08001966 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07001967
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001968 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1969 // annotalysis.
1970 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001971 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07001972 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07001973 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08001974 this_object = GetThisObject();
1975 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07001976 }
Elliott Hughes86b00102011-12-05 17:54:26 -08001977 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001978
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001979 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001980 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07001981};
1982
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001983JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
1984 JDWP::ObjectId* result) {
1985 ScopedObjectAccessUnchecked soa(Thread::Current());
1986 Thread* thread;
1987 {
Ian Rogers50b35e22012-10-04 10:09:15 -07001988 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001989 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1990 if (error != JDWP::ERR_NONE) {
1991 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001992 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001993 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001994 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1995 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001996 }
Elliott Hughescaf76542012-06-28 16:08:22 -07001997 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08001998 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07001999 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002000 *result = gRegistry->Add(visitor.this_object);
2001 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002002}
2003
Elliott Hughes88d63092013-01-09 09:55:54 -08002004void Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002005 uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002006 struct GetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002007 GetLocalVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id, int slot,
2008 JDWP::JdwpTag tag, uint8_t* buf, size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002009 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002010 : StackVisitor(thread, context), frame_id_(frame_id), slot_(slot), tag_(tag),
Ian Rogersca190662012-06-26 15:45:57 -07002011 buf_(buf), width_(width) {}
2012
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002013 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2014 // annotalysis.
2015 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002016 if (GetFrameId() != frame_id_) {
2017 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08002018 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002019 // TODO: check that the tag is compatible with the actual type of the slot!
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002020 mirror::AbstractMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002021 uint16_t reg = DemangleSlot(slot_, m);
Elliott Hughesdbb40792011-11-18 17:05:22 -08002022
Ian Rogers0399dde2012-06-06 17:09:28 -07002023 switch (tag_) {
2024 case JDWP::JT_BOOLEAN:
2025 {
2026 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002027 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002028 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2029 JDWP::Set1(buf_+1, intVal != 0);
2030 }
2031 break;
2032 case JDWP::JT_BYTE:
2033 {
2034 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002035 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002036 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2037 JDWP::Set1(buf_+1, intVal);
2038 }
2039 break;
2040 case JDWP::JT_SHORT:
2041 case JDWP::JT_CHAR:
2042 {
2043 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002044 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002045 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2046 JDWP::Set2BE(buf_+1, intVal);
2047 }
2048 break;
2049 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002050 {
2051 CHECK_EQ(width_, 4U);
2052 uint32_t intVal = GetVReg(m, reg, kIntVReg);
2053 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2054 JDWP::Set4BE(buf_+1, intVal);
2055 }
2056 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002057 case JDWP::JT_FLOAT:
2058 {
2059 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002060 uint32_t intVal = GetVReg(m, reg, kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002061 VLOG(jdwp) << "get int/float local " << reg << " = " << intVal;
2062 JDWP::Set4BE(buf_+1, intVal);
2063 }
2064 break;
2065 case JDWP::JT_ARRAY:
2066 {
2067 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002068 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002069 VLOG(jdwp) << "get array local " << reg << " = " << o;
2070 if (!Runtime::Current()->GetHeap()->IsHeapAddress(o)) {
2071 LOG(FATAL) << "Register " << reg << " expected to hold array: " << o;
2072 }
2073 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2074 }
2075 break;
2076 case JDWP::JT_CLASS_LOADER:
2077 case JDWP::JT_CLASS_OBJECT:
2078 case JDWP::JT_OBJECT:
2079 case JDWP::JT_STRING:
2080 case JDWP::JT_THREAD:
2081 case JDWP::JT_THREAD_GROUP:
2082 {
2083 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002084 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002085 VLOG(jdwp) << "get object local " << reg << " = " << o;
2086 if (!Runtime::Current()->GetHeap()->IsHeapAddress(o)) {
2087 LOG(FATAL) << "Register " << reg << " expected to hold object: " << o;
2088 }
2089 tag_ = TagFromObject(o);
2090 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2091 }
2092 break;
2093 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002094 {
2095 CHECK_EQ(width_, 8U);
2096 uint32_t lo = GetVReg(m, reg, kDoubleLoVReg);
2097 uint64_t hi = GetVReg(m, reg + 1, kDoubleHiVReg);
2098 uint64_t longVal = (hi << 32) | lo;
2099 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2100 JDWP::Set8BE(buf_+1, longVal);
2101 }
2102 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002103 case JDWP::JT_LONG:
2104 {
2105 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002106 uint32_t lo = GetVReg(m, reg, kLongLoVReg);
2107 uint64_t hi = GetVReg(m, reg + 1, kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002108 uint64_t longVal = (hi << 32) | lo;
2109 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2110 JDWP::Set8BE(buf_+1, longVal);
2111 }
2112 break;
2113 default:
2114 LOG(FATAL) << "Unknown tag " << tag_;
2115 break;
2116 }
2117
2118 // Prepend tag, which may have been updated.
2119 JDWP::Set1(buf_, tag_);
2120 return false;
2121 }
2122
2123 const JDWP::FrameId frame_id_;
2124 const int slot_;
2125 JDWP::JdwpTag tag_;
2126 uint8_t* const buf_;
2127 const size_t width_;
2128 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002129
2130 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002131 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002132 Thread* thread;
2133 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2134 if (error != JDWP::ERR_NONE) {
2135 return;
2136 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002137 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002138 GetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, buf, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002139 visitor.WalkStack();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002140}
2141
Elliott Hughes88d63092013-01-09 09:55:54 -08002142void Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag,
Ian Rogers0399dde2012-06-06 17:09:28 -07002143 uint64_t value, size_t width) {
2144 struct SetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002145 SetLocalVisitor(Thread* thread, Context* context,
Ian Rogers0399dde2012-06-06 17:09:28 -07002146 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
Ian Rogersca190662012-06-26 15:45:57 -07002147 size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002148 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002149 : StackVisitor(thread, context),
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002150 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width) {}
Ian Rogersca190662012-06-26 15:45:57 -07002151
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002152 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2153 // annotalysis.
2154 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002155 if (GetFrameId() != frame_id_) {
2156 return true; // Not our frame, carry on.
2157 }
2158 // TODO: check that the tag is compatible with the actual type of the slot!
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002159 mirror::AbstractMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002160 uint16_t reg = DemangleSlot(slot_, m);
2161
2162 switch (tag_) {
2163 case JDWP::JT_BOOLEAN:
2164 case JDWP::JT_BYTE:
2165 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002166 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002167 break;
2168 case JDWP::JT_SHORT:
2169 case JDWP::JT_CHAR:
2170 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002171 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002172 break;
2173 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002174 CHECK_EQ(width_, 4U);
2175 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
2176 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002177 case JDWP::JT_FLOAT:
2178 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002179 SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002180 break;
2181 case JDWP::JT_ARRAY:
2182 case JDWP::JT_OBJECT:
2183 case JDWP::JT_STRING:
2184 {
2185 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002186 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_));
Elliott Hughes64f574f2013-02-20 14:57:12 -08002187 if (o == ObjectRegistry::kInvalidObject) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002188 UNIMPLEMENTED(FATAL) << "return an error code when given an invalid object to store";
2189 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002190 SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), kReferenceVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002191 }
2192 break;
2193 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002194 CHECK_EQ(width_, 8U);
2195 SetVReg(m, reg, static_cast<uint32_t>(value_), kDoubleLoVReg);
2196 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kDoubleHiVReg);
2197 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002198 case JDWP::JT_LONG:
2199 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002200 SetVReg(m, reg, static_cast<uint32_t>(value_), kLongLoVReg);
2201 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002202 break;
2203 default:
2204 LOG(FATAL) << "Unknown tag " << tag_;
2205 break;
2206 }
2207 return false;
2208 }
2209
2210 const JDWP::FrameId frame_id_;
2211 const int slot_;
2212 const JDWP::JdwpTag tag_;
2213 const uint64_t value_;
2214 const size_t width_;
2215 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002216
2217 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002218 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002219 Thread* thread;
2220 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2221 if (error != JDWP::ERR_NONE) {
2222 return;
2223 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002224 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002225 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002226 visitor.WalkStack();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002227}
2228
Ian Rogers62d6c772013-02-27 08:32:07 -08002229void Dbg::PostLocationEvent(const mirror::AbstractMethod* m, int dex_pc,
2230 mirror::Object* this_object, int event_flags) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002231 mirror::Class* c = m->GetDeclaringClass();
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002232
2233 JDWP::JdwpLocation location;
Elliott Hughes74847412012-06-20 18:10:21 -07002234 location.type_tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
Elliott Hughes64f574f2013-02-20 14:57:12 -08002235 location.class_id = gRegistry->AddRefType(c);
Elliott Hughes74847412012-06-20 18:10:21 -07002236 location.method_id = ToMethodId(m);
Elliott Hughes972a47b2012-02-21 18:16:06 -08002237 location.dex_pc = m->IsNative() ? -1 : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002238
Elliott Hughes64f574f2013-02-20 14:57:12 -08002239 // If 'this_object' isn't already in the registry, we know that we're not looking for it,
2240 // so there's no point adding it to the registry and burning through ids.
2241 JDWP::ObjectId this_id = 0;
2242 if (gRegistry->Contains(this_object)) {
2243 this_id = gRegistry->Add(this_object);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002244 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08002245 gJdwpState->PostLocationEvent(&location, this_id, event_flags);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002246}
2247
Ian Rogers62d6c772013-02-27 08:32:07 -08002248void Dbg::PostException(Thread* thread, const ThrowLocation& throw_location,
2249 mirror::AbstractMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002250 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002251 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002252 return;
2253 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002254
Ian Rogers62d6c772013-02-27 08:32:07 -08002255 JDWP::JdwpLocation jdwp_throw_location;
2256 SetLocation(jdwp_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002257 JDWP::JdwpLocation catch_location;
Elliott Hughescaf76542012-06-28 16:08:22 -07002258 SetLocation(catch_location, catch_method, catch_dex_pc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002259
2260 // We need 'this' for InstanceOnly filters.
Ian Rogers62d6c772013-02-27 08:32:07 -08002261 JDWP::ObjectId this_id = gRegistry->Add(throw_location.GetThis());
Elliott Hughes64f574f2013-02-20 14:57:12 -08002262 JDWP::ObjectId exception_id = gRegistry->Add(exception_object);
2263 JDWP::RefTypeId exception_class_id = gRegistry->AddRefType(exception_object->GetClass());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002264
Ian Rogers62d6c772013-02-27 08:32:07 -08002265 gJdwpState->PostException(&jdwp_throw_location, exception_id, exception_class_id, &catch_location,
2266 this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002267}
2268
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002269void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002270 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002271 return;
2272 }
2273
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002274 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002275 // debuggers seem to like that. There might be some advantage to honesty,
2276 // since the class may not yet be verified.
2277 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
2278 JDWP::JdwpTypeTag tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
2279 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c), ClassHelper(c).GetDescriptor(), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002280}
2281
Ian Rogers62d6c772013-02-27 08:32:07 -08002282void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
2283 const mirror::AbstractMethod* m, uint32_t dex_pc) {
2284 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002285 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002286 }
2287
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002288 int event_flags = 0;
2289
Elliott Hughes86964332012-02-15 19:37:42 -08002290 if (IsBreakpoint(m, dex_pc)) {
2291 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002292 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002293
jeffhao09bfc6a2012-12-11 18:11:43 -08002294 {
2295 // If the debugger is single-stepping one of our threads, check to
2296 // see if we're that thread and we've reached a step point.
2297 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -08002298 if (gSingleStepControl.is_active && gSingleStepControl.thread == thread) {
jeffhao09bfc6a2012-12-11 18:11:43 -08002299 CHECK(!m->IsNative());
2300 if (gSingleStepControl.step_depth == JDWP::SD_INTO) {
2301 // Step into method calls. We break when the line number
2302 // or method pointer changes. If we're in SS_MIN mode, we
2303 // always stop.
2304 if (gSingleStepControl.method != m) {
2305 event_flags |= kSingleStep;
2306 VLOG(jdwp) << "SS new method";
2307 } else if (gSingleStepControl.step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002308 event_flags |= kSingleStep;
2309 VLOG(jdwp) << "SS new instruction";
Elliott Hughes2435a572012-02-17 16:07:41 -08002310 } else if (gSingleStepControl.dex_pcs.find(dex_pc) == gSingleStepControl.dex_pcs.end()) {
2311 event_flags |= kSingleStep;
2312 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002313 }
jeffhao09bfc6a2012-12-11 18:11:43 -08002314 } else if (gSingleStepControl.step_depth == JDWP::SD_OVER) {
2315 // Step over method calls. We break when the line number is
2316 // different and the frame depth is <= the original frame
2317 // depth. (We can't just compare on the method, because we
2318 // might get unrolled past it by an exception, and it's tricky
2319 // to identify recursion.)
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002320
Ian Rogers62d6c772013-02-27 08:32:07 -08002321 int stack_depth = GetStackDepth(thread);
Elliott Hughes86964332012-02-15 19:37:42 -08002322
jeffhao09bfc6a2012-12-11 18:11:43 -08002323 if (stack_depth < gSingleStepControl.stack_depth) {
2324 // popped up one or more frames, always trigger
2325 event_flags |= kSingleStep;
2326 VLOG(jdwp) << "SS method pop";
2327 } else if (stack_depth == gSingleStepControl.stack_depth) {
2328 // same depth, see if we moved
2329 if (gSingleStepControl.step_size == JDWP::SS_MIN) {
2330 event_flags |= kSingleStep;
2331 VLOG(jdwp) << "SS new instruction";
2332 } else if (gSingleStepControl.dex_pcs.find(dex_pc) == gSingleStepControl.dex_pcs.end()) {
2333 event_flags |= kSingleStep;
2334 VLOG(jdwp) << "SS new line";
2335 }
2336 }
2337 } else {
2338 CHECK_EQ(gSingleStepControl.step_depth, JDWP::SD_OUT);
2339 // Return from the current method. We break when the frame
2340 // depth pops up.
2341
2342 // This differs from the "method exit" break in that it stops
2343 // with the PC at the next instruction in the returned-to
2344 // function, rather than the end of the returning function.
2345
Ian Rogers62d6c772013-02-27 08:32:07 -08002346 int stack_depth = GetStackDepth(thread);
jeffhao09bfc6a2012-12-11 18:11:43 -08002347 if (stack_depth < gSingleStepControl.stack_depth) {
2348 event_flags |= kSingleStep;
2349 VLOG(jdwp) << "SS method pop";
2350 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002351 }
2352 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002353 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002354
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002355 // If there's something interesting going on, see if it matches one
2356 // of the debugger filters.
2357 if (event_flags != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002358 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002359 }
2360}
2361
Elliott Hughes86964332012-02-15 19:37:42 -08002362void Dbg::WatchLocation(const JDWP::JdwpLocation* location) {
jeffhao09bfc6a2012-12-11 18:11:43 -08002363 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002364 mirror::AbstractMethod* m = FromMethodId(location->method_id);
Elliott Hughes972a47b2012-02-21 18:16:06 -08002365 gBreakpoints.push_back(Breakpoint(m, location->dex_pc));
Elliott Hughes86964332012-02-15 19:37:42 -08002366 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " << gBreakpoints[gBreakpoints.size() - 1];
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002367}
2368
Elliott Hughes86964332012-02-15 19:37:42 -08002369void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location) {
jeffhao09bfc6a2012-12-11 18:11:43 -08002370 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002371 mirror::AbstractMethod* m = FromMethodId(location->method_id);
Elliott Hughes86964332012-02-15 19:37:42 -08002372 for (size_t i = 0; i < gBreakpoints.size(); ++i) {
Elliott Hughes972a47b2012-02-21 18:16:06 -08002373 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == location->dex_pc) {
Elliott Hughes86964332012-02-15 19:37:42 -08002374 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
2375 gBreakpoints.erase(gBreakpoints.begin() + i);
2376 return;
2377 }
2378 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002379}
2380
Jeff Hao449db332013-04-12 18:30:52 -07002381// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
2382// cause suspension if the thread is the current thread.
2383class ScopedThreadSuspension {
2384 public:
Ian Rogers33e95662013-05-20 20:29:14 -07002385 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
2386 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Jeff Hao449db332013-04-12 18:30:52 -07002387 thread_(NULL),
2388 error_(JDWP::ERR_NONE),
2389 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07002390 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07002391 ScopedObjectAccessUnchecked soa(self);
2392 {
2393 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2394 error_ = DecodeThread(soa, thread_id, thread_);
2395 }
2396 if (error_ == JDWP::ERR_NONE) {
2397 if (thread_ == soa.Self()) {
2398 self_suspend_ = true;
2399 } else {
2400 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
2401 jobject thread_peer = gRegistry->GetJObject(thread_id);
2402 bool timed_out;
2403 Thread* suspended_thread = Thread::SuspendForDebugger(thread_peer, true, &timed_out);
2404 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
2405 if (suspended_thread == NULL) {
2406 // Thread terminated from under us while suspending.
2407 error_ = JDWP::ERR_INVALID_THREAD;
2408 } else {
2409 CHECK_EQ(suspended_thread, thread_);
2410 other_suspend_ = true;
2411 }
2412 }
2413 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002414 }
Elliott Hughes86964332012-02-15 19:37:42 -08002415
Jeff Hao449db332013-04-12 18:30:52 -07002416 Thread* GetThread() const {
2417 return thread_;
2418 }
2419
2420 JDWP::JdwpError GetError() const {
2421 return error_;
2422 }
2423
2424 ~ScopedThreadSuspension() {
2425 if (other_suspend_) {
2426 Runtime::Current()->GetThreadList()->Resume(thread_, true);
2427 }
2428 }
2429
2430 private:
2431 Thread* thread_;
2432 JDWP::JdwpError error_;
2433 bool self_suspend_;
2434 bool other_suspend_;
2435};
2436
2437JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
2438 JDWP::JdwpStepDepth step_depth) {
2439 Thread* self = Thread::Current();
2440 ScopedThreadSuspension sts(self, thread_id);
2441 if (sts.GetError() != JDWP::ERR_NONE) {
2442 return sts.GetError();
2443 }
2444
2445 MutexLock mu2(self, *Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -08002446 // TODO: there's no theoretical reason why we couldn't support single-stepping
2447 // of multiple threads at once, but we never did so historically.
Jeff Hao449db332013-04-12 18:30:52 -07002448 if (gSingleStepControl.thread != NULL && sts.GetThread() != gSingleStepControl.thread) {
Elliott Hughes86964332012-02-15 19:37:42 -08002449 LOG(WARNING) << "single-step already active for " << *gSingleStepControl.thread
Jeff Hao449db332013-04-12 18:30:52 -07002450 << "; switching to " << *sts.GetThread();
Elliott Hughes86964332012-02-15 19:37:42 -08002451 }
2452
Elliott Hughes2435a572012-02-17 16:07:41 -08002453 //
2454 // Work out what Method* we're in, the current line number, and how deep the stack currently
2455 // is for step-out.
2456 //
2457
Ian Rogers0399dde2012-06-06 17:09:28 -07002458 struct SingleStepStackVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07002459 explicit SingleStepStackVisitor(Thread* thread)
jeffhao09bfc6a2012-12-11 18:11:43 -08002460 EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002461 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002462 : StackVisitor(thread, NULL) {
Elliott Hughes86964332012-02-15 19:37:42 -08002463 gSingleStepControl.method = NULL;
2464 gSingleStepControl.stack_depth = 0;
2465 }
Ian Rogersca190662012-06-26 15:45:57 -07002466
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002467 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2468 // annotalysis.
2469 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
jeffhao09bfc6a2012-12-11 18:11:43 -08002470 Locks::breakpoint_lock_->AssertHeld(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002471 const mirror::AbstractMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002472 if (!m->IsRuntimeMethod()) {
Elliott Hughes86964332012-02-15 19:37:42 -08002473 ++gSingleStepControl.stack_depth;
2474 if (gSingleStepControl.method == NULL) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002475 const mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Elliott Hughes2435a572012-02-17 16:07:41 -08002476 gSingleStepControl.method = m;
2477 gSingleStepControl.line_number = -1;
2478 if (dex_cache != NULL) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07002479 const DexFile& dex_file = *dex_cache->GetDexFile();
Ian Rogers0399dde2012-06-06 17:09:28 -07002480 gSingleStepControl.line_number = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08002481 }
Elliott Hughes86964332012-02-15 19:37:42 -08002482 }
2483 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002484 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08002485 }
2486 };
Jeff Hao449db332013-04-12 18:30:52 -07002487
2488 SingleStepStackVisitor visitor(sts.GetThread());
Ian Rogers0399dde2012-06-06 17:09:28 -07002489 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08002490
Elliott Hughes2435a572012-02-17 16:07:41 -08002491 //
2492 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
2493 //
2494
2495 struct DebugCallbackContext {
jeffhao09bfc6a2012-12-11 18:11:43 -08002496 DebugCallbackContext() EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002497 last_pc_valid = false;
2498 last_pc = 0;
Elliott Hughes2435a572012-02-17 16:07:41 -08002499 }
2500
jeffhao09bfc6a2012-12-11 18:11:43 -08002501 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2502 // annotalysis.
2503 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) NO_THREAD_SAFETY_ANALYSIS {
2504 Locks::breakpoint_lock_->AssertHeld(Thread::Current());
Elliott Hughes2435a572012-02-17 16:07:41 -08002505 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
2506 if (static_cast<int32_t>(line_number) == gSingleStepControl.line_number) {
2507 if (!context->last_pc_valid) {
2508 // Everything from this address until the next line change is ours.
2509 context->last_pc = address;
2510 context->last_pc_valid = true;
2511 }
2512 // Otherwise, if we're already in a valid range for this line,
2513 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002514 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08002515 // Add everything from the last entry up until here to the set
2516 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
2517 gSingleStepControl.dex_pcs.insert(dex_pc);
2518 }
2519 context->last_pc_valid = false;
2520 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002521 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08002522 }
2523
jeffhao09bfc6a2012-12-11 18:11:43 -08002524 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2525 // annotalysis.
2526 ~DebugCallbackContext() NO_THREAD_SAFETY_ANALYSIS {
2527 Locks::breakpoint_lock_->AssertHeld(Thread::Current());
Elliott Hughes2435a572012-02-17 16:07:41 -08002528 // If the line number was the last in the position table...
2529 if (last_pc_valid) {
2530 size_t end = MethodHelper(gSingleStepControl.method).GetCodeItem()->insns_size_in_code_units_;
2531 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
2532 gSingleStepControl.dex_pcs.insert(dex_pc);
2533 }
2534 }
2535 }
2536
2537 bool last_pc_valid;
2538 uint32_t last_pc;
2539 };
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08002540 gSingleStepControl.dex_pcs.clear();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002541 const mirror::AbstractMethod* m = gSingleStepControl.method;
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08002542 if (m->IsNative()) {
2543 gSingleStepControl.line_number = -1;
2544 } else {
2545 DebugCallbackContext context;
2546 MethodHelper mh(m);
2547 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
2548 DebugCallbackContext::Callback, NULL, &context);
2549 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002550
2551 //
2552 // Everything else...
2553 //
2554
Jeff Hao449db332013-04-12 18:30:52 -07002555 gSingleStepControl.thread = sts.GetThread();
Elliott Hughes86964332012-02-15 19:37:42 -08002556 gSingleStepControl.step_size = step_size;
2557 gSingleStepControl.step_depth = step_depth;
2558 gSingleStepControl.is_active = true;
2559
Elliott Hughes2435a572012-02-17 16:07:41 -08002560 if (VLOG_IS_ON(jdwp)) {
2561 VLOG(jdwp) << "Single-step thread: " << *gSingleStepControl.thread;
2562 VLOG(jdwp) << "Single-step step size: " << gSingleStepControl.step_size;
2563 VLOG(jdwp) << "Single-step step depth: " << gSingleStepControl.step_depth;
2564 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(gSingleStepControl.method);
2565 VLOG(jdwp) << "Single-step current line: " << gSingleStepControl.line_number;
2566 VLOG(jdwp) << "Single-step current stack depth: " << gSingleStepControl.stack_depth;
2567 VLOG(jdwp) << "Single-step dex_pc values:";
2568 for (std::set<uint32_t>::iterator it = gSingleStepControl.dex_pcs.begin() ; it != gSingleStepControl.dex_pcs.end(); ++it) {
Elliott Hughes229feb72012-02-23 13:33:29 -08002569 VLOG(jdwp) << StringPrintf(" %#x", *it);
Elliott Hughes2435a572012-02-17 16:07:41 -08002570 }
2571 }
2572
2573 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002574}
2575
Elliott Hughes221229c2013-01-08 18:17:50 -08002576void Dbg::UnconfigureStep(JDWP::ObjectId /*thread_id*/) {
jeffhao09bfc6a2012-12-11 18:11:43 -08002577 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07002578
Elliott Hughes86964332012-02-15 19:37:42 -08002579 gSingleStepControl.is_active = false;
2580 gSingleStepControl.thread = NULL;
Elliott Hughes2435a572012-02-17 16:07:41 -08002581 gSingleStepControl.dex_pcs.clear();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002582}
2583
Elliott Hughes45651fd2012-02-21 15:48:20 -08002584static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
2585 switch (tag) {
2586 default:
2587 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
2588
2589 // Primitives.
2590 case JDWP::JT_BYTE: return 'B';
2591 case JDWP::JT_CHAR: return 'C';
2592 case JDWP::JT_FLOAT: return 'F';
2593 case JDWP::JT_DOUBLE: return 'D';
2594 case JDWP::JT_INT: return 'I';
2595 case JDWP::JT_LONG: return 'J';
2596 case JDWP::JT_SHORT: return 'S';
2597 case JDWP::JT_VOID: return 'V';
2598 case JDWP::JT_BOOLEAN: return 'Z';
2599
2600 // Reference types.
2601 case JDWP::JT_ARRAY:
2602 case JDWP::JT_OBJECT:
2603 case JDWP::JT_STRING:
2604 case JDWP::JT_THREAD:
2605 case JDWP::JT_THREAD_GROUP:
2606 case JDWP::JT_CLASS_LOADER:
2607 case JDWP::JT_CLASS_OBJECT:
2608 return 'L';
2609 }
2610}
2611
Elliott Hughes88d63092013-01-09 09:55:54 -08002612JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
2613 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002614 uint32_t arg_count, uint64_t* arg_values,
2615 JDWP::JdwpTag* arg_types, uint32_t options,
2616 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
2617 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08002618 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2619
2620 Thread* targetThread = NULL;
2621 DebugInvokeReq* req = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002622 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002623 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002624 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07002625 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002626 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread);
2627 if (error != JDWP::ERR_NONE) {
2628 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
2629 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002630 }
2631 req = targetThread->GetInvokeReq();
2632 if (!req->ready) {
2633 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
2634 return JDWP::ERR_INVALID_THREAD;
2635 }
2636
2637 /*
2638 * We currently have a bug where we don't successfully resume the
2639 * target thread if the suspend count is too deep. We're expected to
2640 * require one "resume" for each "suspend", but when asked to execute
2641 * a method we have to resume fully and then re-suspend it back to the
2642 * same level. (The easiest way to cause this is to type "suspend"
2643 * multiple times in jdb.)
2644 *
2645 * It's unclear what this means when the event specifies "resume all"
2646 * and some threads are suspended more deeply than others. This is
2647 * a rare problem, so for now we just prevent it from hanging forever
2648 * by rejecting the method invocation request. Without this, we will
2649 * be stuck waiting on a suspended thread.
2650 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002651 int suspend_count;
2652 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002653 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002654 suspend_count = targetThread->GetSuspendCount();
2655 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08002656 if (suspend_count > 1) {
2657 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002658 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08002659 }
2660
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002661 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002662 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08002663 if (receiver == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002664 return JDWP::ERR_INVALID_OBJECT;
2665 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002666
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002667 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08002668 if (thread == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002669 return JDWP::ERR_INVALID_OBJECT;
2670 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002671 // TODO: check that 'thread' is actually a java.lang.Thread!
2672
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002673 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes45651fd2012-02-21 15:48:20 -08002674 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002675 return status;
2676 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002677
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002678 mirror::AbstractMethod* m = FromMethodId(method_id);
Elliott Hughes45651fd2012-02-21 15:48:20 -08002679 if (m->IsStatic() != (receiver == NULL)) {
2680 return JDWP::ERR_INVALID_METHODID;
2681 }
2682 if (m->IsStatic()) {
2683 if (m->GetDeclaringClass() != c) {
2684 return JDWP::ERR_INVALID_METHODID;
2685 }
2686 } else {
2687 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
2688 return JDWP::ERR_INVALID_METHODID;
2689 }
2690 }
2691
2692 // Check the argument list matches the method.
2693 MethodHelper mh(m);
2694 if (mh.GetShortyLength() - 1 != arg_count) {
2695 return JDWP::ERR_ILLEGAL_ARGUMENT;
2696 }
2697 const char* shorty = mh.GetShorty();
Elliott Hughes09201632013-04-15 15:50:07 -07002698 const DexFile::TypeList* types = mh.GetParameterTypeList();
Elliott Hughes45651fd2012-02-21 15:48:20 -08002699 for (size_t i = 0; i < arg_count; ++i) {
2700 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
2701 return JDWP::ERR_ILLEGAL_ARGUMENT;
2702 }
Elliott Hughes09201632013-04-15 15:50:07 -07002703
2704 if (shorty[i + 1] == 'L') {
2705 // Did we really get an argument of an appropriate reference type?
2706 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
2707 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i]);
2708 if (argument == ObjectRegistry::kInvalidObject) {
2709 return JDWP::ERR_INVALID_OBJECT;
2710 }
2711 if (!argument->InstanceOf(parameter_type)) {
2712 return JDWP::ERR_ILLEGAL_ARGUMENT;
2713 }
2714
2715 // Turn the on-the-wire ObjectId into a jobject.
2716 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
2717 v.l = gRegistry->GetJObject(arg_values[i]);
2718 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002719 }
2720
2721 req->receiver_ = receiver;
2722 req->thread_ = thread;
2723 req->class_ = c;
2724 req->method_ = m;
2725 req->arg_count_ = arg_count;
2726 req->arg_values_ = arg_values;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002727 req->options_ = options;
2728 req->invoke_needed_ = true;
2729 }
2730
2731 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
2732 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
2733 // call, and it's unwise to hold it during WaitForSuspend.
2734
2735 {
2736 /*
2737 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07002738 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08002739 * run out of memory. It's also a good idea to change it before locking
2740 * the invokeReq mutex, although that should never be held for long.
2741 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002742 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002743
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002744 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002745 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002746 MutexLock mu(self, req->lock_);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002747
2748 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002749 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002750 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002751 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002752 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002753 thread_list->Resume(targetThread, true);
2754 }
2755
2756 // Wait for the request to finish executing.
2757 while (req->invoke_needed_) {
Ian Rogersc604d732012-10-14 16:09:54 -07002758 req->cond_.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002759 }
2760 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002761 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002762
2763 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07002764 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002765 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002766 }
2767
2768 /*
2769 * Suspend the threads. We waited for the target thread to suspend
2770 * itself, so all we need to do is suspend the others.
2771 *
2772 * The suspendAllThreads() call will double-suspend the event thread,
2773 * so we want to resume the target thread once to keep the books straight.
2774 */
2775 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002776 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002777 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002778 thread_list->SuspendAllForDebugger();
2779 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002780 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002781 thread_list->Resume(targetThread, true);
2782 }
2783
2784 // Copy the result.
2785 *pResultTag = req->result_tag;
2786 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002787 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002788 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002789 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002790 }
2791 *pExceptionId = req->exception;
2792 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002793}
2794
2795void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002796 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002797
Elliott Hughes81ff3182012-03-23 20:35:56 -07002798 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08002799 // to preserve that across the method invocation.
Ian Rogers62d6c772013-02-27 08:32:07 -08002800 SirtRef<mirror::Object> old_throw_this_object(soa.Self(), NULL);
2801 SirtRef<mirror::AbstractMethod> old_throw_method(soa.Self(), NULL);
2802 SirtRef<mirror::Throwable> old_exception(soa.Self(), NULL);
2803 uint32_t old_throw_dex_pc;
2804 {
2805 ThrowLocation old_throw_location;
2806 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
2807 old_throw_this_object.reset(old_throw_location.GetThis());
2808 old_throw_method.reset(old_throw_location.GetMethod());
2809 old_exception.reset(old_exception_obj);
2810 old_throw_dex_pc = old_throw_location.GetDexPc();
2811 soa.Self()->ClearException();
2812 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08002813
2814 // Translate the method through the vtable, unless the debugger wants to suppress it.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002815 mirror::AbstractMethod* m = pReq->method_;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002816 if ((pReq->options_ & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver_ != NULL) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002817 mirror::AbstractMethod* actual_method = pReq->class_->FindVirtualMethodForVirtualOrInterface(pReq->method_);
Elliott Hughes45651fd2012-02-21 15:48:20 -08002818 if (actual_method != m) {
2819 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m) << " to " << PrettyMethod(actual_method);
2820 m = actual_method;
2821 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08002822 }
Elliott Hughescfa9cfa2013-04-16 16:52:01 -07002823 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m)
2824 << " receiver=" << pReq->receiver_
2825 << " arg_count=" << pReq->arg_count_;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002826 CHECK(m != NULL);
2827
2828 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
2829
Jeff Hao5d917302013-02-27 17:57:33 -08002830 MethodHelper mh(m);
2831 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
2832 arg_array.BuildArgArray(soa, pReq->receiver_, reinterpret_cast<jvalue*>(pReq->arg_values_));
Jeff Hao6474d192013-03-26 14:08:09 -07002833 InvokeWithArgArray(soa, m, &arg_array, &pReq->result_value, mh.GetShorty()[0]);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002834
Ian Rogers62d6c772013-02-27 08:32:07 -08002835 mirror::Throwable* exception = soa.Self()->GetException(NULL);
2836 soa.Self()->ClearException();
2837 pReq->exception = gRegistry->Add(exception);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002838 pReq->result_tag = BasicTagFromDescriptor(MethodHelper(m).GetShorty());
2839 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002840 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
2841 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002842 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002843 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
2844 /* if no exception thrown, examine object result more closely */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002845 JDWP::JdwpTag new_tag = TagFromObject(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002846 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002847 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002848 pReq->result_tag = new_tag;
2849 }
2850
2851 /*
2852 * Register the object. We don't actually need an ObjectId yet,
2853 * but we do need to be sure that the GC won't move or discard the
2854 * object when we switch out of RUNNING. The ObjectId conversion
2855 * will add the object to the "do not touch" list.
2856 *
2857 * We can't use the "tracked allocation" mechanism here because
2858 * the object is going to be handed off to a different thread.
2859 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002860 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002861 }
2862
2863 if (old_exception.get() != NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002864 ThrowLocation gc_safe_throw_location(old_throw_this_object.get(), old_throw_method.get(),
2865 old_throw_dex_pc);
2866 soa.Self()->SetException(gc_safe_throw_location, old_exception.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002867 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002868}
2869
Elliott Hughesd07986f2011-12-06 18:27:45 -08002870/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002871 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002872 * need to process each, accumulate the replies, and ship the whole thing
2873 * back.
2874 *
2875 * Returns "true" if we have a reply. The reply buffer is newly allocated,
2876 * and includes the chunk type/length, followed by the data.
2877 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002878 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002879 * chunk. If this becomes inconvenient we will need to adapt.
2880 */
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002881bool Dbg::DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002882 Thread* self = Thread::Current();
2883 JNIEnv* env = self->GetJniEnv();
2884
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002885 uint32_t type = request.ReadUnsigned32("type");
2886 uint32_t length = request.ReadUnsigned32("length");
2887
2888 // Create a byte[] corresponding to 'request'.
2889 size_t request_length = request.size();
2890 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002891 if (dataArray.get() == NULL) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002892 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002893 env->ExceptionClear();
2894 return false;
2895 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002896 env->SetByteArrayRegion(dataArray.get(), 0, request_length, reinterpret_cast<const jbyte*>(request.data()));
2897 request.Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002898
2899 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002900 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002901 if (length != request_length) {
2902 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%d)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002903 return false;
2904 }
2905
2906 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07002907 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
2908 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002909 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002910 if (env->ExceptionCheck()) {
2911 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
2912 env->ExceptionDescribe();
2913 env->ExceptionClear();
2914 return false;
2915 }
2916
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002917 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002918 return false;
2919 }
2920
2921 /*
2922 * Pull the pieces out of the chunk. We copy the results into a
2923 * newly-allocated buffer that the caller can free. We don't want to
2924 * continue using the Chunk object because nothing has a reference to it.
2925 *
2926 * We could avoid this by returning type/data/offset/length and having
2927 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07002928 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002929 * if we have responses for multiple chunks.
2930 *
2931 * So we're pretty much stuck with copying data around multiple times.
2932 */
Elliott Hugheseac76672012-05-24 21:56:51 -07002933 ScopedLocalRef<jbyteArray> replyData(env, reinterpret_cast<jbyteArray>(env->GetObjectField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_data)));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002934 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07002935 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07002936 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002937
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002938 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 -07002939 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002940 return false;
2941 }
2942
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002943 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002944 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
2945 if (reply == NULL) {
2946 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
2947 return false;
2948 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07002949 JDWP::Set4BE(reply + 0, type);
2950 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002951 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002952
2953 *pReplyBuf = reply;
2954 *pReplyLen = length + kChunkHdrLen;
2955
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002956 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002957 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002958}
2959
Elliott Hughesa2155262011-11-16 16:26:58 -08002960void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002961 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07002962
2963 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07002964 if (self->GetState() != kRunnable) {
2965 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
2966 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07002967 }
2968
2969 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07002970 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07002971 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
2972 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
2973 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07002974 if (env->ExceptionCheck()) {
2975 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
2976 env->ExceptionDescribe();
2977 env->ExceptionClear();
2978 }
2979}
2980
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002981void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08002982 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002983}
2984
2985void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08002986 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07002987 gDdmThreadNotification = false;
2988}
2989
2990/*
Elliott Hughes82188472011-11-07 18:11:48 -08002991 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07002992 *
2993 * Because we broadcast the full set of threads when the notifications are
2994 * first enabled, it's possible for "thread" to be actively executing.
2995 */
Elliott Hughes82188472011-11-07 18:11:48 -08002996void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07002997 if (!gDdmThreadNotification) {
2998 return;
2999 }
3000
Elliott Hughes82188472011-11-07 18:11:48 -08003001 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003002 uint8_t buf[4];
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003003 JDWP::Set4BE(&buf[0], t->GetThinLockId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003004 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003005 } else {
3006 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003007 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003008 SirtRef<mirror::String> name(soa.Self(), t->GetThreadName(soa));
Elliott Hughes82188472011-11-07 18:11:48 -08003009 size_t char_count = (name.get() != NULL) ? name->GetLength() : 0;
jeffhao725a9572012-11-13 18:20:12 -08003010 const jchar* chars = (name.get() != NULL) ? name->GetCharArray()->GetData() : NULL;
Elliott Hughes82188472011-11-07 18:11:48 -08003011
Elliott Hughes21f32d72011-11-09 17:44:13 -08003012 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003013 JDWP::Append4BE(bytes, t->GetThinLockId());
3014 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003015 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3016 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003017 }
3018}
3019
Elliott Hughes47fce012011-10-25 18:37:19 -07003020void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003021 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003022 gDdmThreadNotification = enable;
3023 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003024 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3025 // see a suspension in progress and block until that ends. They then post their own start
3026 // notification.
3027 SuspendVM();
3028 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003029 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003030 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003031 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003032 threads = Runtime::Current()->GetThreadList()->GetList();
3033 }
3034 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003035 ScopedObjectAccess soa(self);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003036 typedef std::list<Thread*>::const_iterator It; // TODO: C++0x auto
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003037 for (It it = threads.begin(), end = threads.end(); it != end; ++it) {
3038 Dbg::DdmSendThreadNotification(*it, CHUNK_TYPE("THCR"));
3039 }
3040 }
3041 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003042 }
3043}
3044
Elliott Hughesa2155262011-11-16 16:26:58 -08003045void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003046 if (IsDebuggerActive()) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07003047 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08003048 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08003049 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003050 }
Elliott Hughes82188472011-11-07 18:11:48 -08003051 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003052}
3053
3054void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003055 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003056}
3057
3058void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003059 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003060}
3061
Elliott Hughes82188472011-11-07 18:11:48 -08003062void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003063 CHECK(buf != NULL);
3064 iovec vec[1];
3065 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3066 vec[0].iov_len = byte_count;
3067 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003068}
3069
Elliott Hughes21f32d72011-11-09 17:44:13 -08003070void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3071 DdmSendChunk(type, bytes.size(), &bytes[0]);
3072}
3073
Brian Carlstromf5293522013-07-19 00:24:00 -07003074void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003075 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003076 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003077 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003078 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003079 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003080}
3081
Elliott Hughes767a1472011-10-26 18:49:02 -07003082int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3083 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003084 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003085 return true;
3086 }
3087
3088 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3089 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3090 return false;
3091 }
3092
3093 gDdmHpifWhen = when;
3094 return true;
3095}
3096
3097bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3098 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3099 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3100 return false;
3101 }
3102
3103 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3104 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3105 return false;
3106 }
3107
3108 if (native) {
3109 gDdmNhsgWhen = when;
3110 gDdmNhsgWhat = what;
3111 } else {
3112 gDdmHpsgWhen = when;
3113 gDdmHpsgWhat = what;
3114 }
3115 return true;
3116}
3117
Elliott Hughes7162ad92011-10-27 14:08:42 -07003118void Dbg::DdmSendHeapInfo(HpifWhen reason) {
3119 // If there's a one-shot 'when', reset it.
3120 if (reason == gDdmHpifWhen) {
3121 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
3122 gDdmHpifWhen = HPIF_WHEN_NEVER;
3123 }
3124 }
3125
3126 /*
3127 * Chunk HPIF (client --> server)
3128 *
3129 * Heap Info. General information about the heap,
3130 * suitable for a summary display.
3131 *
3132 * [u4]: number of heaps
3133 *
3134 * For each heap:
3135 * [u4]: heap ID
3136 * [u8]: timestamp in ms since Unix epoch
3137 * [u1]: capture reason (same as 'when' value from server)
3138 * [u4]: max heap size in bytes (-Xmx)
3139 * [u4]: current heap size in bytes
3140 * [u4]: current number of bytes allocated
3141 * [u4]: current number of objects allocated
3142 */
3143 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07003144 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08003145 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003146 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003147 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08003148 JDWP::Append8BE(bytes, MilliTime());
3149 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003150 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
3151 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003152 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
3153 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08003154 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
3155 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07003156}
3157
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003158enum HpsgSolidity {
3159 SOLIDITY_FREE = 0,
3160 SOLIDITY_HARD = 1,
3161 SOLIDITY_SOFT = 2,
3162 SOLIDITY_WEAK = 3,
3163 SOLIDITY_PHANTOM = 4,
3164 SOLIDITY_FINALIZABLE = 5,
3165 SOLIDITY_SWEEP = 6,
3166};
3167
3168enum HpsgKind {
3169 KIND_OBJECT = 0,
3170 KIND_CLASS_OBJECT = 1,
3171 KIND_ARRAY_1 = 2,
3172 KIND_ARRAY_2 = 3,
3173 KIND_ARRAY_4 = 4,
3174 KIND_ARRAY_8 = 5,
3175 KIND_UNKNOWN = 6,
3176 KIND_NATIVE = 7,
3177};
3178
3179#define HPSG_PARTIAL (1<<7)
3180#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
3181
Ian Rogers30fab402012-01-23 15:43:46 -08003182class HeapChunkContext {
3183 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003184 // Maximum chunk size. Obtain this from the formula:
3185 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
3186 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08003187 : buf_(16384 - 16),
3188 type_(0),
3189 merge_(merge) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003190 Reset();
3191 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08003192 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003193 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08003194 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003195 }
3196 }
3197
3198 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08003199 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003200 Flush();
3201 }
3202 }
3203
3204 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08003205 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003206 return;
3207 }
3208
3209 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003210 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
3211 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003212
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003213 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
3214 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003215 // [u4]: length of piece, in allocation units
3216 // 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 -08003217 pieceLenField_ = p_;
3218 JDWP::Write4BE(&p_, 0x55555555);
3219 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003220 }
3221
Ian Rogersb726dcb2012-09-05 08:57:23 -07003222 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd636b062013-01-18 17:51:18 -08003223 if (pieceLenField_ == NULL) {
3224 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
3225 CHECK(needHeader_);
3226 return;
3227 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003228 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08003229 CHECK_LE(&buf_[0], pieceLenField_);
3230 CHECK_LE(pieceLenField_, p_);
3231 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003232
Ian Rogers30fab402012-01-23 15:43:46 -08003233 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003234 Reset();
3235 }
3236
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003237 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003238 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3239 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003240 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08003241 }
3242
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003243 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08003244 enum { ALLOCATION_UNIT_SIZE = 8 };
3245
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003246 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08003247 p_ = &buf_[0];
Ian Rogers15bf2d32012-08-28 17:33:04 -07003248 startOfNextMemoryChunk_ = NULL;
Ian Rogers30fab402012-01-23 15:43:46 -08003249 totalAllocationUnits_ = 0;
3250 needHeader_ = true;
3251 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003252 }
3253
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003254 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003255 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3256 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003257 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
3258 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07003259 if (used_bytes == 0) {
3260 if (start == NULL) {
3261 // Reset for start of new heap.
3262 startOfNextMemoryChunk_ = NULL;
3263 Flush();
3264 }
3265 // Only process in use memory so that free region information
3266 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08003267 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08003268 }
3269
Ian Rogers15bf2d32012-08-28 17:33:04 -07003270 /* If we're looking at the native heap, we'll just return
3271 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
3272 */
3273 bool native = type_ == CHUNK_TYPE("NHSG");
3274
3275 if (startOfNextMemoryChunk_ != NULL) {
3276 // Transmit any pending free memory. Native free memory of
3277 // over kMaxFreeLen could be because of the use of mmaps, so
3278 // don't report. If not free memory then start a new segment.
3279 bool flush = true;
3280 if (start > startOfNextMemoryChunk_) {
3281 const size_t kMaxFreeLen = 2 * kPageSize;
3282 void* freeStart = startOfNextMemoryChunk_;
3283 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07003284 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07003285 if (!native || freeLen < kMaxFreeLen) {
3286 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
3287 flush = false;
3288 }
3289 }
3290 if (flush) {
3291 startOfNextMemoryChunk_ = NULL;
3292 Flush();
3293 }
3294 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003295 const mirror::Object* obj = reinterpret_cast<const mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08003296
3297 // Determine the type of this chunk.
3298 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
3299 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003300 uint8_t state = ExamineObject(obj, native);
3301 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
3302 // allocation then the first sizeof(size_t) may belong to it.
3303 const size_t dlMallocOverhead = sizeof(size_t);
3304 AppendChunk(state, start, used_bytes + dlMallocOverhead);
Brian Carlstrom2d888622013-07-18 17:02:00 -07003305 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + dlMallocOverhead;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003306 }
Elliott Hughesa2155262011-11-16 16:26:58 -08003307
Ian Rogers15bf2d32012-08-28 17:33:04 -07003308 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003309 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003310 // Make sure there's enough room left in the buffer.
3311 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
3312 // 17 bytes for any header.
3313 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
3314 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3315 if (bytesLeft < needed) {
3316 Flush();
3317 }
3318
3319 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3320 if (bytesLeft < needed) {
3321 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
3322 << needed << " bytes)";
3323 return;
3324 }
3325 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08003326 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003327 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
3328 totalAllocationUnits_ += length;
3329 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08003330 *p_++ = state | HPSG_PARTIAL;
3331 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07003332 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08003333 }
Ian Rogers30fab402012-01-23 15:43:46 -08003334 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003335 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003336 }
3337
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003338 uint8_t ExamineObject(const mirror::Object* o, bool is_native_heap)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003339 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003340 if (o == NULL) {
3341 return HPSG_STATE(SOLIDITY_FREE, 0);
3342 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003343
Elliott Hughesa2155262011-11-16 16:26:58 -08003344 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003345
Elliott Hughesa2155262011-11-16 16:26:58 -08003346 // If we're looking at the native heap, we'll just return
3347 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003348 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003349 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
3350 }
3351
Ian Rogers5bfa60f2012-09-02 21:17:56 -07003352 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003353 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003354 }
3355
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003356 mirror::Class* c = o->GetClass();
Elliott Hughesa2155262011-11-16 16:26:58 -08003357 if (c == NULL) {
3358 // The object was probably just created but hasn't been initialized yet.
3359 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3360 }
3361
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003362 if (!Runtime::Current()->GetHeap()->IsHeapAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003363 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08003364 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
3365 }
3366
3367 if (c->IsClassClass()) {
3368 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
3369 }
3370
3371 if (c->IsArrayClass()) {
3372 if (o->IsObjectArray()) {
3373 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3374 }
3375 switch (c->GetComponentSize()) {
3376 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
3377 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
3378 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3379 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
3380 }
3381 }
3382
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003383 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3384 }
3385
Ian Rogers30fab402012-01-23 15:43:46 -08003386 std::vector<uint8_t> buf_;
3387 uint8_t* p_;
3388 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003389 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08003390 size_t totalAllocationUnits_;
3391 uint32_t type_;
3392 bool merge_;
3393 bool needHeader_;
3394
Elliott Hughesa2155262011-11-16 16:26:58 -08003395 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
3396};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003397
3398void Dbg::DdmSendHeapSegments(bool native) {
3399 Dbg::HpsgWhen when;
3400 Dbg::HpsgWhat what;
3401 if (!native) {
3402 when = gDdmHpsgWhen;
3403 what = gDdmHpsgWhat;
3404 } else {
3405 when = gDdmNhsgWhen;
3406 what = gDdmNhsgWhat;
3407 }
3408 if (when == HPSG_WHEN_NEVER) {
3409 return;
3410 }
3411
3412 // Figure out what kind of chunks we'll be sending.
3413 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
3414
3415 // First, send a heap start chunk.
3416 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003417 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003418 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
3419
3420 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08003421 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
3422 if (native) {
Ian Rogers1d54e732013-05-02 21:10:01 -07003423 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003424 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07003425 gc::Heap* heap = Runtime::Current()->GetHeap();
3426 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -07003427 Thread* self = Thread::Current();
Ian Rogers62d6c772013-02-27 08:32:07 -08003428 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Ian Rogers1d54e732013-05-02 21:10:01 -07003429 typedef std::vector<gc::space::ContinuousSpace*>::const_iterator It;
3430 for (It cur = spaces.begin(), end = spaces.end(); cur != end; ++cur) {
3431 if ((*cur)->IsDlMallocSpace()) {
3432 (*cur)->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07003433 }
3434 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07003435 // Walk the large objects, these are not in the AllocSpace.
3436 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003437 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003438
3439 // Finally, send a heap end chunk.
3440 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07003441}
3442
Elliott Hughesb1a58792013-07-11 18:10:58 -07003443static size_t GetAllocTrackerMax() {
3444#ifdef HAVE_ANDROID_OS
3445 // Check whether there's a system property overriding the number of records.
3446 const char* propertyName = "dalvik.vm.allocTrackerMax";
3447 char allocRecordMaxString[PROPERTY_VALUE_MAX];
3448 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
3449 char* end;
3450 size_t value = strtoul(allocRecordMaxString, &end, 10);
3451 if (*end != '\0') {
3452 ALOGE("Ignoring %s '%s' --- invalid", propertyName, allocRecordMaxString);
3453 return kDefaultNumAllocRecords;
3454 }
3455 if (!IsPowerOfTwo(value)) {
3456 ALOGE("Ignoring %s '%s' --- not power of two", propertyName, allocRecordMaxString);
3457 return kDefaultNumAllocRecords;
3458 }
3459 return value;
3460 }
3461#endif
3462 return kDefaultNumAllocRecords;
3463}
3464
Elliott Hughes545a0642011-11-08 19:10:03 -08003465void Dbg::SetAllocTrackingEnabled(bool enabled) {
Ian Rogers50b35e22012-10-04 10:09:15 -07003466 MutexLock mu(Thread::Current(), gAllocTrackerLock);
Elliott Hughes545a0642011-11-08 19:10:03 -08003467 if (enabled) {
3468 if (recent_allocation_records_ == NULL) {
Elliott Hughesb1a58792013-07-11 18:10:58 -07003469 gAllocRecordMax = GetAllocTrackerMax();
3470 LOG(INFO) << "Enabling alloc tracker (" << gAllocRecordMax << " entries of "
3471 << kMaxAllocRecordStackDepth << " frames, taking "
3472 << PrettySize(sizeof(AllocRecord) * gAllocRecordMax) << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08003473 gAllocRecordHead = gAllocRecordCount = 0;
Elliott Hughesb1a58792013-07-11 18:10:58 -07003474 recent_allocation_records_ = new AllocRecord[gAllocRecordMax];
Elliott Hughes545a0642011-11-08 19:10:03 -08003475 CHECK(recent_allocation_records_ != NULL);
3476 }
3477 } else {
3478 delete[] recent_allocation_records_;
3479 recent_allocation_records_ = NULL;
3480 }
3481}
3482
Ian Rogers0399dde2012-06-06 17:09:28 -07003483struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08003484 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003485 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08003486 : StackVisitor(thread, NULL), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08003487
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003488 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3489 // annotalysis.
3490 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08003491 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07003492 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08003493 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003494 mirror::AbstractMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003495 if (!m->IsRuntimeMethod()) {
3496 record->stack[depth].method = m;
3497 record->stack[depth].dex_pc = GetDexPc();
Elliott Hughes530fa002012-03-12 11:44:49 -07003498 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08003499 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003500 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08003501 }
3502
3503 ~AllocRecordStackVisitor() {
3504 // Clear out any unused stack trace elements.
3505 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
3506 record->stack[depth].method = NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -07003507 record->stack[depth].dex_pc = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08003508 }
3509 }
3510
3511 AllocRecord* record;
3512 size_t depth;
3513};
3514
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003515void Dbg::RecordAllocation(mirror::Class* type, size_t byte_count) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003516 Thread* self = Thread::Current();
3517 CHECK(self != NULL);
3518
Ian Rogers50b35e22012-10-04 10:09:15 -07003519 MutexLock mu(self, gAllocTrackerLock);
Elliott Hughes545a0642011-11-08 19:10:03 -08003520 if (recent_allocation_records_ == NULL) {
3521 return;
3522 }
3523
3524 // Advance and clip.
Elliott Hughesb1a58792013-07-11 18:10:58 -07003525 if (++gAllocRecordHead == gAllocRecordMax) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003526 gAllocRecordHead = 0;
3527 }
3528
3529 // Fill in the basics.
3530 AllocRecord* record = &recent_allocation_records_[gAllocRecordHead];
3531 record->type = type;
3532 record->byte_count = byte_count;
3533 record->thin_lock_id = self->GetThinLockId();
3534
3535 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08003536 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07003537 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08003538
Elliott Hughesb1a58792013-07-11 18:10:58 -07003539 if (gAllocRecordCount < gAllocRecordMax) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003540 ++gAllocRecordCount;
3541 }
3542}
3543
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003544// Returns the index of the head element.
3545//
3546// We point at the most-recently-written record, so if gAllocRecordCount is 1
3547// we want to use the current element. Take "head+1" and subtract count
3548// from it.
3549//
3550// We need to handle underflow in our circular buffer, so we add
Elliott Hughesb1a58792013-07-11 18:10:58 -07003551// gAllocRecordMax and then mask it back down.
Elliott Hughesf8349362012-06-18 15:00:06 -07003552static inline int HeadIndex() EXCLUSIVE_LOCKS_REQUIRED(gAllocTrackerLock) {
Elliott Hughesb1a58792013-07-11 18:10:58 -07003553 return (gAllocRecordHead+1 + gAllocRecordMax - gAllocRecordCount) & (gAllocRecordMax-1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003554}
3555
3556void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003557 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07003558 MutexLock mu(soa.Self(), gAllocTrackerLock);
Elliott Hughes545a0642011-11-08 19:10:03 -08003559 if (recent_allocation_records_ == NULL) {
3560 LOG(INFO) << "Not recording tracked allocations";
3561 return;
3562 }
3563
3564 // "i" is the head of the list. We want to start at the end of the
3565 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003566 size_t i = HeadIndex();
Elliott Hughes545a0642011-11-08 19:10:03 -08003567 size_t count = gAllocRecordCount;
3568
3569 LOG(INFO) << "Tracked allocations, (head=" << gAllocRecordHead << " count=" << count << ")";
3570 while (count--) {
3571 AllocRecord* record = &recent_allocation_records_[i];
3572
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003573 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->thin_lock_id, record->byte_count)
Elliott Hughes545a0642011-11-08 19:10:03 -08003574 << PrettyClass(record->type);
3575
3576 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003577 const mirror::AbstractMethod* m = record->stack[stack_frame].method;
Elliott Hughes545a0642011-11-08 19:10:03 -08003578 if (m == NULL) {
3579 break;
3580 }
3581 LOG(INFO) << " " << PrettyMethod(m) << " line " << record->stack[stack_frame].LineNumber();
3582 }
3583
3584 // pause periodically to help logcat catch up
3585 if ((count % 5) == 0) {
3586 usleep(40000);
3587 }
3588
Elliott Hughesb1a58792013-07-11 18:10:58 -07003589 i = (i + 1) & (gAllocRecordMax-1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003590 }
3591}
3592
3593class StringTable {
3594 public:
3595 StringTable() {
3596 }
3597
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003598 void Add(const char* s) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003599 table_.insert(s);
3600 }
3601
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003602 size_t IndexOf(const char* s) const {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003603 typedef std::set<std::string>::const_iterator It; // TODO: C++0x auto
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003604 It it = table_.find(s);
3605 if (it == table_.end()) {
3606 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
3607 }
3608 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08003609 }
3610
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003611 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08003612 return table_.size();
3613 }
3614
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003615 void WriteTo(std::vector<uint8_t>& bytes) const {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003616 typedef std::set<std::string>::const_iterator It; // TODO: C++0x auto
Elliott Hughes545a0642011-11-08 19:10:03 -08003617 for (It it = table_.begin(); it != table_.end(); ++it) {
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003618 const char* s = (*it).c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003619 size_t s_len = CountModifiedUtf8Chars(s);
3620 UniquePtr<uint16_t> s_utf16(new uint16_t[s_len]);
3621 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
3622 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08003623 }
3624 }
3625
3626 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003627 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003628 DISALLOW_COPY_AND_ASSIGN(StringTable);
3629};
3630
3631/*
3632 * The data we send to DDMS contains everything we have recorded.
3633 *
3634 * Message header (all values big-endian):
3635 * (1b) message header len (to allow future expansion); includes itself
3636 * (1b) entry header len
3637 * (1b) stack frame len
3638 * (2b) number of entries
3639 * (4b) offset to string table from start of message
3640 * (2b) number of class name strings
3641 * (2b) number of method name strings
3642 * (2b) number of source file name strings
3643 * For each entry:
3644 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08003645 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08003646 * (2b) allocated object's class name index
3647 * (1b) stack depth
3648 * For each stack frame:
3649 * (2b) method's class name
3650 * (2b) method name
3651 * (2b) method source file
3652 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
3653 * (xb) class name strings
3654 * (xb) method name strings
3655 * (xb) source file strings
3656 *
3657 * As with other DDM traffic, strings are sent as a 4-byte length
3658 * followed by UTF-16 data.
3659 *
3660 * We send up 16-bit unsigned indexes into string tables. In theory there
Elliott Hughesb1a58792013-07-11 18:10:58 -07003661 * can be (kMaxAllocRecordStackDepth * gAllocRecordMax) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08003662 * each table, but in practice there should be far fewer.
3663 *
3664 * The chief reason for using a string table here is to keep the size of
3665 * the DDMS message to a minimum. This is partly to make the protocol
3666 * efficient, but also because we have to form the whole thing up all at
3667 * once in a memory buffer.
3668 *
3669 * We use separate string tables for class names, method names, and source
3670 * files to keep the indexes small. There will generally be no overlap
3671 * between the contents of these tables.
3672 */
3673jbyteArray Dbg::GetRecentAllocations() {
3674 if (false) {
3675 DumpRecentAllocations();
3676 }
3677
Ian Rogers50b35e22012-10-04 10:09:15 -07003678 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08003679 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003680 {
3681 MutexLock mu(self, gAllocTrackerLock);
3682 //
3683 // Part 1: generate string tables.
3684 //
3685 StringTable class_names;
3686 StringTable method_names;
3687 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08003688
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003689 int count = gAllocRecordCount;
3690 int idx = HeadIndex();
3691 while (count--) {
3692 AllocRecord* record = &recent_allocation_records_[idx];
Elliott Hughes545a0642011-11-08 19:10:03 -08003693
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003694 class_names.Add(ClassHelper(record->type).GetDescriptor());
Elliott Hughes545a0642011-11-08 19:10:03 -08003695
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003696 MethodHelper mh;
3697 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
3698 mirror::AbstractMethod* m = record->stack[i].method;
3699 if (m != NULL) {
3700 mh.ChangeMethod(m);
3701 class_names.Add(mh.GetDeclaringClassDescriptor());
3702 method_names.Add(mh.GetName());
3703 filenames.Add(mh.GetDeclaringClassSourceFile());
3704 }
3705 }
Elliott Hughes545a0642011-11-08 19:10:03 -08003706
Elliott Hughesb1a58792013-07-11 18:10:58 -07003707 idx = (idx + 1) & (gAllocRecordMax-1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003708 }
3709
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003710 LOG(INFO) << "allocation records: " << gAllocRecordCount;
3711
3712 //
3713 // Part 2: Generate the output and store it in the buffer.
3714 //
3715
3716 // (1b) message header len (to allow future expansion); includes itself
3717 // (1b) entry header len
3718 // (1b) stack frame len
3719 const int kMessageHeaderLen = 15;
3720 const int kEntryHeaderLen = 9;
3721 const int kStackFrameLen = 8;
3722 JDWP::Append1BE(bytes, kMessageHeaderLen);
3723 JDWP::Append1BE(bytes, kEntryHeaderLen);
3724 JDWP::Append1BE(bytes, kStackFrameLen);
3725
3726 // (2b) number of entries
3727 // (4b) offset to string table from start of message
3728 // (2b) number of class name strings
3729 // (2b) number of method name strings
3730 // (2b) number of source file name strings
3731 JDWP::Append2BE(bytes, gAllocRecordCount);
3732 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003733 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003734 JDWP::Append2BE(bytes, class_names.Size());
3735 JDWP::Append2BE(bytes, method_names.Size());
3736 JDWP::Append2BE(bytes, filenames.Size());
3737
3738 count = gAllocRecordCount;
3739 idx = HeadIndex();
3740 ClassHelper kh;
3741 while (count--) {
3742 // For each entry:
3743 // (4b) total allocation size
3744 // (2b) thread id
3745 // (2b) allocated object's class name index
3746 // (1b) stack depth
3747 AllocRecord* record = &recent_allocation_records_[idx];
3748 size_t stack_depth = record->GetDepth();
3749 kh.ChangeClass(record->type);
3750 size_t allocated_object_class_name_index = class_names.IndexOf(kh.GetDescriptor());
3751 JDWP::Append4BE(bytes, record->byte_count);
3752 JDWP::Append2BE(bytes, record->thin_lock_id);
3753 JDWP::Append2BE(bytes, allocated_object_class_name_index);
3754 JDWP::Append1BE(bytes, stack_depth);
3755
3756 MethodHelper mh;
3757 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
3758 // For each stack frame:
3759 // (2b) method's class name
3760 // (2b) method name
3761 // (2b) method source file
3762 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
3763 mh.ChangeMethod(record->stack[stack_frame].method);
3764 size_t class_name_index = class_names.IndexOf(mh.GetDeclaringClassDescriptor());
3765 size_t method_name_index = method_names.IndexOf(mh.GetName());
3766 size_t file_name_index = filenames.IndexOf(mh.GetDeclaringClassSourceFile());
3767 JDWP::Append2BE(bytes, class_name_index);
3768 JDWP::Append2BE(bytes, method_name_index);
3769 JDWP::Append2BE(bytes, file_name_index);
3770 JDWP::Append2BE(bytes, record->stack[stack_frame].LineNumber());
3771 }
3772
Elliott Hughesb1a58792013-07-11 18:10:58 -07003773 idx = (idx + 1) & (gAllocRecordMax-1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003774 }
3775
3776 // (xb) class name strings
3777 // (xb) method name strings
3778 // (xb) source file strings
3779 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
3780 class_names.WriteTo(bytes);
3781 method_names.WriteTo(bytes);
3782 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08003783 }
Ian Rogers50b35e22012-10-04 10:09:15 -07003784 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08003785 jbyteArray result = env->NewByteArray(bytes.size());
3786 if (result != NULL) {
3787 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
3788 }
3789 return result;
3790}
3791
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003792} // namespace art