blob: 73f83a2f12e4e5c2b9a260ba0c77f298023a2f04 [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"
Brian Carlstromea46f952013-07-30 01:26:50 -070033#include "mirror/art_field-inl.h"
34#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035#include "mirror/class.h"
36#include "mirror/class-inl.h"
37#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038#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 {
Brian Carlstromea46f952013-07-30 01:26:50 -070063 mirror::ArtMethod* 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 {
Brian Carlstromea46f952013-07-30 01:26:50 -070087 mirror::ArtMethod* method;
Elliott Hughesa656a0f2012-02-21 18:03:44 -080088 uint32_t dex_pc;
Brian Carlstromea46f952013-07-30 01:26:50 -070089 Breakpoint(mirror::ArtMethod* 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
Brian Carlstromea46f952013-07-30 01:26:50 -0700106 const mirror::ArtMethod* 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,
Brian Carlstromea46f952013-07-30 01:26:50 -0700118 const mirror::ArtMethod* method, uint32_t dex_pc)
Ian Rogers62d6c772013-02-27 08:32:07 -0800119 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,
Brian Carlstromea46f952013-07-30 01:26:50 -0700128 const mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800129 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
Brian Carlstromea46f952013-07-30 01:26:50 -0700139 virtual void MethodUnwind(Thread* thread, const mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800140 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,
Brian Carlstromea46f952013-07-30 01:26:50 -0700147 const mirror::ArtMethod* method, uint32_t new_dex_pc)
Ian Rogers62d6c772013-02-27 08:32:07 -0800148 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,
Brian Carlstromea46f952013-07-30 01:26:50 -0700153 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -0800154 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
Brian Carlstromea46f952013-07-30 01:26:50 -0700197static bool IsBreakpoint(const mirror::ArtMethod* 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
Brian Carlstromea46f952013-07-30 01:26:50 -07001134static JDWP::FieldId ToFieldId(const mirror::ArtField* 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
Brian Carlstromea46f952013-07-30 01:26:50 -07001143static JDWP::MethodId ToMethodId(const mirror::ArtMethod* 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
Brian Carlstromea46f952013-07-30 01:26:50 -07001152static mirror::ArtField* 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
Brian Carlstromea46f952013-07-30 01:26:50 -07001157 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001158#endif
1159}
1160
Brian Carlstromea46f952013-07-30 01:26:50 -07001161static mirror::ArtMethod* 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
Brian Carlstromea46f952013-07-30 01:26:50 -07001166 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001167#endif
1168}
1169
Brian Carlstromea46f952013-07-30 01:26:50 -07001170static void SetLocation(JDWP::JdwpLocation& location, mirror::ArtMethod* 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_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001185 mirror::ArtMethod* 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_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001191 mirror::ArtField* 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
Brian Carlstromea46f952013-07-30 01:26:50 -07001233static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* 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) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001258 mirror::ArtField* 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) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001286 mirror::ArtMethod* 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++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001327 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001328 }
1329 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001330 mirror::ArtMethod* 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 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001384 mirror::ArtMethod* 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());
Brian Carlstromea46f952013-07-30 01:26:50 -07001391 expandBufAdd4BE(pReply, mirror::ArtMethod::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_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001411 mirror::ArtMethod* 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 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001448 mirror::ArtField* 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 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001514 mirror::ArtField* 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);
Brian Carlstromea46f952013-07-30 01:26:50 -07001583 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001584 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);
Brian Carlstromea46f952013-07-30 01:26:50 -07001615 mirror::ArtField* 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);
Brian Carlstromea46f952013-07-30 01:26:50 -07001632 mirror::ArtField* 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);
Brian Carlstromea46f952013-07-30 01:26:50 -07001644 mirror::ArtField* 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());
Brian Carlstromea46f952013-07-30 01:26:50 -07001652 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001653 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());
Brian Carlstromea46f952013-07-30 01:26:50 -07001659 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001660 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
Jeff Hao920af3e2013-08-28 15:46:38 -07001664JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
1665 switch (state) {
1666 case kBlocked:
1667 return JDWP::TS_MONITOR;
1668 case kNative:
1669 case kRunnable:
1670 case kSuspended:
1671 return JDWP::TS_RUNNING;
1672 case kSleeping:
1673 return JDWP::TS_SLEEPING;
1674 case kStarting:
1675 case kTerminated:
1676 return JDWP::TS_ZOMBIE;
1677 case kTimedWaiting:
1678 case kWaitingForDebuggerSend:
1679 case kWaitingForDebuggerSuspension:
1680 case kWaitingForDebuggerToAttach:
1681 case kWaitingForGcToComplete:
1682 case kWaitingForCheckPointsToRun:
1683 case kWaitingForJniOnLoad:
1684 case kWaitingForSignalCatcherOutput:
1685 case kWaitingInMainDebuggerLoop:
1686 case kWaitingInMainSignalCatcherLoop:
1687 case kWaitingPerformingGc:
1688 case kWaiting:
1689 return JDWP::TS_WAIT;
1690 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
1691 }
1692 LOG(FATAL) << "Unknown thread state: " << state;
1693 return JDWP::TS_ZOMBIE;
1694}
1695
Elliott Hughes221229c2013-01-08 18:17:50 -08001696JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus, JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001697 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08001698
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001699 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
1700
Ian Rogers50b35e22012-10-04 10:09:15 -07001701 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001702 Thread* thread;
1703 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1704 if (error != JDWP::ERR_NONE) {
1705 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1706 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08001707 return JDWP::ERR_NONE;
1708 }
1709 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08001710 }
1711
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001712 if (IsSuspendedForDebugger(soa, thread)) {
1713 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08001714 }
1715
Jeff Hao920af3e2013-08-28 15:46:38 -07001716 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08001717 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001718}
1719
Elliott Hughes221229c2013-01-08 18:17:50 -08001720JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001721 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07001722 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001723 Thread* thread;
1724 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1725 if (error != JDWP::ERR_NONE) {
1726 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08001727 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001728 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001729 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08001730 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001731}
1732
Elliott Hughesf9501702013-01-11 11:22:27 -08001733JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
1734 ScopedObjectAccess soa(Thread::Current());
1735 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1736 Thread* thread;
1737 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1738 if (error != JDWP::ERR_NONE) {
1739 return error;
1740 }
1741 thread->Interrupt();
1742 return JDWP::ERR_NONE;
1743}
1744
Elliott Hughescaf76542012-06-28 16:08:22 -07001745void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) {
Ian Rogers365c1022012-06-22 15:05:28 -07001746 class ThreadListVisitor {
1747 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001748 ThreadListVisitor(const ScopedObjectAccessUnchecked& soa, mirror::Object* desired_thread_group,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001749 std::vector<JDWP::ObjectId>& thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001750 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001751 : soa_(soa), desired_thread_group_(desired_thread_group), thread_ids_(thread_ids) {}
Ian Rogers365c1022012-06-22 15:05:28 -07001752
Elliott Hughesa2155262011-11-16 16:26:58 -08001753 static void Visit(Thread* t, void* arg) {
1754 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
1755 }
1756
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001757 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1758 // annotalysis.
1759 void Visit(Thread* t) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001760 if (t == Dbg::GetDebugThread()) {
1761 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
1762 // query all threads, so it's easier if we just don't tell them about this thread.
1763 return;
1764 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001765 mirror::Object* peer = t->GetPeer();
jeffhao0dfbb7e2012-11-28 15:26:03 -08001766 if (IsInDesiredThreadGroup(peer)) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001767 thread_ids_.push_back(gRegistry->Add(peer));
Elliott Hughesa2155262011-11-16 16:26:58 -08001768 }
1769 }
1770
Ian Rogers365c1022012-06-22 15:05:28 -07001771 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001772 bool IsInDesiredThreadGroup(mirror::Object* peer)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001773 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao0dfbb7e2012-11-28 15:26:03 -08001774 // peer might be NULL if the thread is still starting up.
1775 if (peer == NULL) {
1776 // We can't tell the debugger about this thread yet.
1777 // TODO: if we identified threads to the debugger by their Thread*
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001778 // rather than their peer's mirror::Object*, we could fix this.
jeffhao0dfbb7e2012-11-28 15:26:03 -08001779 // Doing so might help us report ZOMBIE threads too.
1780 return false;
1781 }
jeffhaoc1e04902012-12-13 12:41:10 -08001782 // Do we want threads from all thread groups?
1783 if (desired_thread_group_ == NULL) {
1784 return true;
1785 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001786 mirror::Object* group = soa_.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(peer);
jeffhao0dfbb7e2012-11-28 15:26:03 -08001787 return (group == desired_thread_group_);
1788 }
1789
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07001790 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001791 mirror::Object* const desired_thread_group_;
Elliott Hughescaf76542012-06-28 16:08:22 -07001792 std::vector<JDWP::ObjectId>& thread_ids_;
Elliott Hughesa2155262011-11-16 16:26:58 -08001793 };
1794
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001795 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001796 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001797 ThreadListVisitor tlv(soa, thread_group, thread_ids);
Ian Rogers50b35e22012-10-04 10:09:15 -07001798 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07001799 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
Elliott Hughescaf76542012-06-28 16:08:22 -07001800}
Elliott Hughesa2155262011-11-16 16:26:58 -08001801
Elliott Hughescaf76542012-06-28 16:08:22 -07001802void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001803 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001804 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughescaf76542012-06-28 16:08:22 -07001805
1806 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Brian Carlstromea46f952013-07-30 01:26:50 -07001807 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001808 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Elliott Hughescaf76542012-06-28 16:08:22 -07001809
1810 // Get the array and size out of the ArrayList<ThreadGroup>...
Brian Carlstromea46f952013-07-30 01:26:50 -07001811 mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
1812 mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001813 mirror::ObjectArray<mirror::Object>* groups_array =
1814 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
Elliott Hughescaf76542012-06-28 16:08:22 -07001815 const int32_t size = size_field->GetInt(groups_array_list);
1816
1817 // Copy the first 'size' elements out of the array into the result.
1818 for (int32_t i = 0; i < size; ++i) {
1819 child_thread_group_ids.push_back(gRegistry->Add(groups_array->Get(i)));
Elliott Hughesa2155262011-11-16 16:26:58 -08001820 }
1821}
1822
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001823static int GetStackDepth(Thread* thread)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001824 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07001825 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001826 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogers7a22fa62013-01-23 12:16:16 -08001827 : StackVisitor(thread, NULL), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07001828
Elliott Hughes64f574f2013-02-20 14:57:12 -08001829 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1830 // annotalysis.
1831 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07001832 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08001833 ++depth;
1834 }
Elliott Hughes530fa002012-03-12 11:44:49 -07001835 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001836 }
1837 size_t depth;
1838 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07001839
Ian Rogers7a22fa62013-01-23 12:16:16 -08001840 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07001841 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001842 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001843}
1844
Elliott Hughes221229c2013-01-08 18:17:50 -08001845JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001846 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08001847 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001848 Thread* thread;
1849 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1850 if (error != JDWP::ERR_NONE) {
1851 return error;
1852 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08001853 if (!IsSuspendedForDebugger(soa, thread)) {
1854 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1855 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001856 result = GetStackDepth(thread);
1857 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08001858}
1859
Ian Rogers306057f2012-11-26 12:45:53 -08001860JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
1861 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001862 class GetFrameVisitor : public StackVisitor {
1863 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08001864 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001865 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08001866 : StackVisitor(thread, NULL), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001867 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
1868 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08001869 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001870
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001871 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1872 // annotalysis.
1873 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07001874 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001875 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08001876 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001877 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07001878 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001879 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001880 if (depth_ >= start_frame_) {
1881 JDWP::FrameId frame_id(GetFrameId());
1882 JDWP::JdwpLocation location;
1883 SetLocation(location, GetMethod(), GetDexPc());
Elliott Hughes7baf96f2012-06-22 16:33:50 -07001884 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3lld ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001885 expandBufAdd8BE(buf_, frame_id);
1886 expandBufAddLocation(buf_, location);
1887 }
1888 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07001889 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08001890 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001891
1892 private:
1893 size_t depth_;
1894 const size_t start_frame_;
1895 const size_t frame_count_;
1896 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08001897 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001898
1899 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08001900 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001901 Thread* thread;
1902 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1903 if (error != JDWP::ERR_NONE) {
1904 return error;
1905 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08001906 if (!IsSuspendedForDebugger(soa, thread)) {
1907 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1908 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08001909 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07001910 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001911 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001912}
1913
1914JDWP::ObjectId Dbg::GetThreadSelfId() {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07001915 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08001916 return gRegistry->Add(soa.Self()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001917}
1918
Elliott Hughes475fc232011-10-25 15:00:35 -07001919void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001920 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001921}
1922
1923void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07001924 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001925}
1926
Elliott Hughes221229c2013-01-08 18:17:50 -08001927JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001928 ScopedLocalRef<jobject> peer(Thread::Current()->GetJniEnv(), NULL);
1929 {
1930 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001931 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
Elliott Hughes4e235312011-12-02 11:34:15 -08001932 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001933 if (peer.get() == NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001934 return JDWP::ERR_THREAD_NOT_ALIVE;
1935 }
1936 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08001937 bool timed_out;
1938 Thread* thread = Thread::SuspendForDebugger(peer.get(), request_suspension, &timed_out);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001939 if (thread != NULL) {
1940 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08001941 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001942 return JDWP::ERR_INTERNAL;
1943 } else {
1944 return JDWP::ERR_THREAD_NOT_ALIVE;
1945 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001946}
1947
Elliott Hughes221229c2013-01-08 18:17:50 -08001948void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001949 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001950 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
jeffhaoa77f0f62012-12-05 17:19:31 -08001951 Thread* thread;
1952 {
1953 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1954 thread = Thread::FromManagedThread(soa, peer);
1955 }
Elliott Hughes4e235312011-12-02 11:34:15 -08001956 if (thread == NULL) {
1957 LOG(WARNING) << "No such thread for resume: " << peer;
1958 return;
1959 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001960 bool needs_resume;
1961 {
Ian Rogers50b35e22012-10-04 10:09:15 -07001962 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001963 needs_resume = thread->GetSuspendCount() > 0;
1964 }
1965 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07001966 Runtime::Current()->GetThreadList()->Resume(thread, true);
1967 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001968}
1969
1970void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07001971 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001972}
1973
Ian Rogers0399dde2012-06-06 17:09:28 -07001974struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08001975 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001976 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08001977 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07001978
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001979 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1980 // annotalysis.
1981 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001982 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07001983 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07001984 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08001985 this_object = GetThisObject();
1986 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07001987 }
Elliott Hughes86b00102011-12-05 17:54:26 -08001988 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001989
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001990 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001991 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07001992};
1993
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001994JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
1995 JDWP::ObjectId* result) {
1996 ScopedObjectAccessUnchecked soa(Thread::Current());
1997 Thread* thread;
1998 {
Ian Rogers50b35e22012-10-04 10:09:15 -07001999 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002000 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2001 if (error != JDWP::ERR_NONE) {
2002 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002003 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002004 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002005 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2006 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002007 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002008 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002009 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002010 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002011 *result = gRegistry->Add(visitor.this_object);
2012 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002013}
2014
Elliott Hughes88d63092013-01-09 09:55:54 -08002015void Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002016 uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002017 struct GetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002018 GetLocalVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id, int slot,
2019 JDWP::JdwpTag tag, uint8_t* buf, size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002020 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002021 : StackVisitor(thread, context), frame_id_(frame_id), slot_(slot), tag_(tag),
Ian Rogersca190662012-06-26 15:45:57 -07002022 buf_(buf), width_(width) {}
2023
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002024 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2025 // annotalysis.
2026 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002027 if (GetFrameId() != frame_id_) {
2028 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08002029 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002030 // TODO: check that the tag is compatible with the actual type of the slot!
Brian Carlstromea46f952013-07-30 01:26:50 -07002031 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002032 uint16_t reg = DemangleSlot(slot_, m);
Elliott Hughesdbb40792011-11-18 17:05:22 -08002033
Ian Rogers0399dde2012-06-06 17:09:28 -07002034 switch (tag_) {
2035 case JDWP::JT_BOOLEAN:
2036 {
2037 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002038 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002039 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2040 JDWP::Set1(buf_+1, intVal != 0);
2041 }
2042 break;
2043 case JDWP::JT_BYTE:
2044 {
2045 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002046 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002047 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2048 JDWP::Set1(buf_+1, intVal);
2049 }
2050 break;
2051 case JDWP::JT_SHORT:
2052 case JDWP::JT_CHAR:
2053 {
2054 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002055 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002056 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2057 JDWP::Set2BE(buf_+1, intVal);
2058 }
2059 break;
2060 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002061 {
2062 CHECK_EQ(width_, 4U);
2063 uint32_t intVal = GetVReg(m, reg, kIntVReg);
2064 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2065 JDWP::Set4BE(buf_+1, intVal);
2066 }
2067 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002068 case JDWP::JT_FLOAT:
2069 {
2070 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002071 uint32_t intVal = GetVReg(m, reg, kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002072 VLOG(jdwp) << "get int/float local " << reg << " = " << intVal;
2073 JDWP::Set4BE(buf_+1, intVal);
2074 }
2075 break;
2076 case JDWP::JT_ARRAY:
2077 {
2078 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002079 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002080 VLOG(jdwp) << "get array local " << reg << " = " << o;
2081 if (!Runtime::Current()->GetHeap()->IsHeapAddress(o)) {
2082 LOG(FATAL) << "Register " << reg << " expected to hold array: " << o;
2083 }
2084 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2085 }
2086 break;
2087 case JDWP::JT_CLASS_LOADER:
2088 case JDWP::JT_CLASS_OBJECT:
2089 case JDWP::JT_OBJECT:
2090 case JDWP::JT_STRING:
2091 case JDWP::JT_THREAD:
2092 case JDWP::JT_THREAD_GROUP:
2093 {
2094 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002095 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002096 VLOG(jdwp) << "get object local " << reg << " = " << o;
2097 if (!Runtime::Current()->GetHeap()->IsHeapAddress(o)) {
2098 LOG(FATAL) << "Register " << reg << " expected to hold object: " << o;
2099 }
2100 tag_ = TagFromObject(o);
2101 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2102 }
2103 break;
2104 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002105 {
2106 CHECK_EQ(width_, 8U);
2107 uint32_t lo = GetVReg(m, reg, kDoubleLoVReg);
2108 uint64_t hi = GetVReg(m, reg + 1, kDoubleHiVReg);
2109 uint64_t longVal = (hi << 32) | lo;
2110 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2111 JDWP::Set8BE(buf_+1, longVal);
2112 }
2113 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002114 case JDWP::JT_LONG:
2115 {
2116 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002117 uint32_t lo = GetVReg(m, reg, kLongLoVReg);
2118 uint64_t hi = GetVReg(m, reg + 1, kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002119 uint64_t longVal = (hi << 32) | lo;
2120 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2121 JDWP::Set8BE(buf_+1, longVal);
2122 }
2123 break;
2124 default:
2125 LOG(FATAL) << "Unknown tag " << tag_;
2126 break;
2127 }
2128
2129 // Prepend tag, which may have been updated.
2130 JDWP::Set1(buf_, tag_);
2131 return false;
2132 }
2133
2134 const JDWP::FrameId frame_id_;
2135 const int slot_;
2136 JDWP::JdwpTag tag_;
2137 uint8_t* const buf_;
2138 const size_t width_;
2139 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002140
2141 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002142 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002143 Thread* thread;
2144 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2145 if (error != JDWP::ERR_NONE) {
2146 return;
2147 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002148 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002149 GetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, buf, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002150 visitor.WalkStack();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002151}
2152
Elliott Hughes88d63092013-01-09 09:55:54 -08002153void Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag,
Ian Rogers0399dde2012-06-06 17:09:28 -07002154 uint64_t value, size_t width) {
2155 struct SetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002156 SetLocalVisitor(Thread* thread, Context* context,
Ian Rogers0399dde2012-06-06 17:09:28 -07002157 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
Ian Rogersca190662012-06-26 15:45:57 -07002158 size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002159 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002160 : StackVisitor(thread, context),
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002161 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width) {}
Ian Rogersca190662012-06-26 15:45:57 -07002162
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002163 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2164 // annotalysis.
2165 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002166 if (GetFrameId() != frame_id_) {
2167 return true; // Not our frame, carry on.
2168 }
2169 // TODO: check that the tag is compatible with the actual type of the slot!
Brian Carlstromea46f952013-07-30 01:26:50 -07002170 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002171 uint16_t reg = DemangleSlot(slot_, m);
2172
2173 switch (tag_) {
2174 case JDWP::JT_BOOLEAN:
2175 case JDWP::JT_BYTE:
2176 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002177 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002178 break;
2179 case JDWP::JT_SHORT:
2180 case JDWP::JT_CHAR:
2181 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002182 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002183 break;
2184 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002185 CHECK_EQ(width_, 4U);
2186 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
2187 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002188 case JDWP::JT_FLOAT:
2189 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002190 SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002191 break;
2192 case JDWP::JT_ARRAY:
2193 case JDWP::JT_OBJECT:
2194 case JDWP::JT_STRING:
2195 {
2196 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002197 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_));
Elliott Hughes64f574f2013-02-20 14:57:12 -08002198 if (o == ObjectRegistry::kInvalidObject) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002199 UNIMPLEMENTED(FATAL) << "return an error code when given an invalid object to store";
2200 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002201 SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), kReferenceVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002202 }
2203 break;
2204 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002205 CHECK_EQ(width_, 8U);
2206 SetVReg(m, reg, static_cast<uint32_t>(value_), kDoubleLoVReg);
2207 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kDoubleHiVReg);
2208 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002209 case JDWP::JT_LONG:
2210 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002211 SetVReg(m, reg, static_cast<uint32_t>(value_), kLongLoVReg);
2212 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002213 break;
2214 default:
2215 LOG(FATAL) << "Unknown tag " << tag_;
2216 break;
2217 }
2218 return false;
2219 }
2220
2221 const JDWP::FrameId frame_id_;
2222 const int slot_;
2223 const JDWP::JdwpTag tag_;
2224 const uint64_t value_;
2225 const size_t width_;
2226 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002227
2228 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002229 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002230 Thread* thread;
2231 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2232 if (error != JDWP::ERR_NONE) {
2233 return;
2234 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002235 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002236 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002237 visitor.WalkStack();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002238}
2239
Brian Carlstromea46f952013-07-30 01:26:50 -07002240void Dbg::PostLocationEvent(const mirror::ArtMethod* m, int dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -08002241 mirror::Object* this_object, int event_flags) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002242 mirror::Class* c = m->GetDeclaringClass();
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002243
2244 JDWP::JdwpLocation location;
Elliott Hughes74847412012-06-20 18:10:21 -07002245 location.type_tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
Elliott Hughes64f574f2013-02-20 14:57:12 -08002246 location.class_id = gRegistry->AddRefType(c);
Elliott Hughes74847412012-06-20 18:10:21 -07002247 location.method_id = ToMethodId(m);
Elliott Hughes972a47b2012-02-21 18:16:06 -08002248 location.dex_pc = m->IsNative() ? -1 : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002249
Elliott Hughes64f574f2013-02-20 14:57:12 -08002250 // If 'this_object' isn't already in the registry, we know that we're not looking for it,
2251 // so there's no point adding it to the registry and burning through ids.
2252 JDWP::ObjectId this_id = 0;
2253 if (gRegistry->Contains(this_object)) {
2254 this_id = gRegistry->Add(this_object);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002255 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08002256 gJdwpState->PostLocationEvent(&location, this_id, event_flags);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002257}
2258
Ian Rogers62d6c772013-02-27 08:32:07 -08002259void Dbg::PostException(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002260 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002261 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002262 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002263 return;
2264 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002265
Ian Rogers62d6c772013-02-27 08:32:07 -08002266 JDWP::JdwpLocation jdwp_throw_location;
2267 SetLocation(jdwp_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002268 JDWP::JdwpLocation catch_location;
Elliott Hughescaf76542012-06-28 16:08:22 -07002269 SetLocation(catch_location, catch_method, catch_dex_pc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002270
2271 // We need 'this' for InstanceOnly filters.
Ian Rogers62d6c772013-02-27 08:32:07 -08002272 JDWP::ObjectId this_id = gRegistry->Add(throw_location.GetThis());
Elliott Hughes64f574f2013-02-20 14:57:12 -08002273 JDWP::ObjectId exception_id = gRegistry->Add(exception_object);
2274 JDWP::RefTypeId exception_class_id = gRegistry->AddRefType(exception_object->GetClass());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002275
Ian Rogers62d6c772013-02-27 08:32:07 -08002276 gJdwpState->PostException(&jdwp_throw_location, exception_id, exception_class_id, &catch_location,
2277 this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002278}
2279
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002280void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002281 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002282 return;
2283 }
2284
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002285 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002286 // debuggers seem to like that. There might be some advantage to honesty,
2287 // since the class may not yet be verified.
2288 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
2289 JDWP::JdwpTypeTag tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
2290 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c), ClassHelper(c).GetDescriptor(), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002291}
2292
Ian Rogers62d6c772013-02-27 08:32:07 -08002293void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -07002294 const mirror::ArtMethod* m, uint32_t dex_pc) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002295 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002296 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002297 }
2298
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002299 int event_flags = 0;
2300
Elliott Hughes86964332012-02-15 19:37:42 -08002301 if (IsBreakpoint(m, dex_pc)) {
2302 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002303 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002304
jeffhao09bfc6a2012-12-11 18:11:43 -08002305 {
2306 // If the debugger is single-stepping one of our threads, check to
2307 // see if we're that thread and we've reached a step point.
2308 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -08002309 if (gSingleStepControl.is_active && gSingleStepControl.thread == thread) {
jeffhao09bfc6a2012-12-11 18:11:43 -08002310 CHECK(!m->IsNative());
2311 if (gSingleStepControl.step_depth == JDWP::SD_INTO) {
2312 // Step into method calls. We break when the line number
2313 // or method pointer changes. If we're in SS_MIN mode, we
2314 // always stop.
2315 if (gSingleStepControl.method != m) {
2316 event_flags |= kSingleStep;
2317 VLOG(jdwp) << "SS new method";
2318 } else if (gSingleStepControl.step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002319 event_flags |= kSingleStep;
2320 VLOG(jdwp) << "SS new instruction";
Elliott Hughes2435a572012-02-17 16:07:41 -08002321 } else if (gSingleStepControl.dex_pcs.find(dex_pc) == gSingleStepControl.dex_pcs.end()) {
2322 event_flags |= kSingleStep;
2323 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002324 }
jeffhao09bfc6a2012-12-11 18:11:43 -08002325 } else if (gSingleStepControl.step_depth == JDWP::SD_OVER) {
2326 // Step over method calls. We break when the line number is
2327 // different and the frame depth is <= the original frame
2328 // depth. (We can't just compare on the method, because we
2329 // might get unrolled past it by an exception, and it's tricky
2330 // to identify recursion.)
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002331
Ian Rogers62d6c772013-02-27 08:32:07 -08002332 int stack_depth = GetStackDepth(thread);
Elliott Hughes86964332012-02-15 19:37:42 -08002333
jeffhao09bfc6a2012-12-11 18:11:43 -08002334 if (stack_depth < gSingleStepControl.stack_depth) {
2335 // popped up one or more frames, always trigger
2336 event_flags |= kSingleStep;
2337 VLOG(jdwp) << "SS method pop";
2338 } else if (stack_depth == gSingleStepControl.stack_depth) {
2339 // same depth, see if we moved
2340 if (gSingleStepControl.step_size == JDWP::SS_MIN) {
2341 event_flags |= kSingleStep;
2342 VLOG(jdwp) << "SS new instruction";
2343 } else if (gSingleStepControl.dex_pcs.find(dex_pc) == gSingleStepControl.dex_pcs.end()) {
2344 event_flags |= kSingleStep;
2345 VLOG(jdwp) << "SS new line";
2346 }
2347 }
2348 } else {
2349 CHECK_EQ(gSingleStepControl.step_depth, JDWP::SD_OUT);
2350 // Return from the current method. We break when the frame
2351 // depth pops up.
2352
2353 // This differs from the "method exit" break in that it stops
2354 // with the PC at the next instruction in the returned-to
2355 // function, rather than the end of the returning function.
2356
Ian Rogers62d6c772013-02-27 08:32:07 -08002357 int stack_depth = GetStackDepth(thread);
jeffhao09bfc6a2012-12-11 18:11:43 -08002358 if (stack_depth < gSingleStepControl.stack_depth) {
2359 event_flags |= kSingleStep;
2360 VLOG(jdwp) << "SS method pop";
2361 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002362 }
2363 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002364 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002365
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002366 // If there's something interesting going on, see if it matches one
2367 // of the debugger filters.
2368 if (event_flags != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002369 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002370 }
2371}
2372
Elliott Hughes86964332012-02-15 19:37:42 -08002373void Dbg::WatchLocation(const JDWP::JdwpLocation* location) {
jeffhao09bfc6a2012-12-11 18:11:43 -08002374 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Brian Carlstromea46f952013-07-30 01:26:50 -07002375 mirror::ArtMethod* m = FromMethodId(location->method_id);
Elliott Hughes972a47b2012-02-21 18:16:06 -08002376 gBreakpoints.push_back(Breakpoint(m, location->dex_pc));
Elliott Hughes86964332012-02-15 19:37:42 -08002377 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " << gBreakpoints[gBreakpoints.size() - 1];
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002378}
2379
Elliott Hughes86964332012-02-15 19:37:42 -08002380void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location) {
jeffhao09bfc6a2012-12-11 18:11:43 -08002381 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Brian Carlstromea46f952013-07-30 01:26:50 -07002382 mirror::ArtMethod* m = FromMethodId(location->method_id);
Elliott Hughes86964332012-02-15 19:37:42 -08002383 for (size_t i = 0; i < gBreakpoints.size(); ++i) {
Elliott Hughes972a47b2012-02-21 18:16:06 -08002384 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == location->dex_pc) {
Elliott Hughes86964332012-02-15 19:37:42 -08002385 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
2386 gBreakpoints.erase(gBreakpoints.begin() + i);
2387 return;
2388 }
2389 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002390}
2391
Jeff Hao449db332013-04-12 18:30:52 -07002392// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
2393// cause suspension if the thread is the current thread.
2394class ScopedThreadSuspension {
2395 public:
Ian Rogers33e95662013-05-20 20:29:14 -07002396 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
2397 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Jeff Hao449db332013-04-12 18:30:52 -07002398 thread_(NULL),
2399 error_(JDWP::ERR_NONE),
2400 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07002401 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07002402 ScopedObjectAccessUnchecked soa(self);
2403 {
2404 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2405 error_ = DecodeThread(soa, thread_id, thread_);
2406 }
2407 if (error_ == JDWP::ERR_NONE) {
2408 if (thread_ == soa.Self()) {
2409 self_suspend_ = true;
2410 } else {
2411 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
2412 jobject thread_peer = gRegistry->GetJObject(thread_id);
2413 bool timed_out;
2414 Thread* suspended_thread = Thread::SuspendForDebugger(thread_peer, true, &timed_out);
2415 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
2416 if (suspended_thread == NULL) {
2417 // Thread terminated from under us while suspending.
2418 error_ = JDWP::ERR_INVALID_THREAD;
2419 } else {
2420 CHECK_EQ(suspended_thread, thread_);
2421 other_suspend_ = true;
2422 }
2423 }
2424 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002425 }
Elliott Hughes86964332012-02-15 19:37:42 -08002426
Jeff Hao449db332013-04-12 18:30:52 -07002427 Thread* GetThread() const {
2428 return thread_;
2429 }
2430
2431 JDWP::JdwpError GetError() const {
2432 return error_;
2433 }
2434
2435 ~ScopedThreadSuspension() {
2436 if (other_suspend_) {
2437 Runtime::Current()->GetThreadList()->Resume(thread_, true);
2438 }
2439 }
2440
2441 private:
2442 Thread* thread_;
2443 JDWP::JdwpError error_;
2444 bool self_suspend_;
2445 bool other_suspend_;
2446};
2447
2448JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
2449 JDWP::JdwpStepDepth step_depth) {
2450 Thread* self = Thread::Current();
2451 ScopedThreadSuspension sts(self, thread_id);
2452 if (sts.GetError() != JDWP::ERR_NONE) {
2453 return sts.GetError();
2454 }
2455
2456 MutexLock mu2(self, *Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -08002457 // TODO: there's no theoretical reason why we couldn't support single-stepping
2458 // of multiple threads at once, but we never did so historically.
Jeff Hao449db332013-04-12 18:30:52 -07002459 if (gSingleStepControl.thread != NULL && sts.GetThread() != gSingleStepControl.thread) {
Elliott Hughes86964332012-02-15 19:37:42 -08002460 LOG(WARNING) << "single-step already active for " << *gSingleStepControl.thread
Jeff Hao449db332013-04-12 18:30:52 -07002461 << "; switching to " << *sts.GetThread();
Elliott Hughes86964332012-02-15 19:37:42 -08002462 }
2463
Elliott Hughes2435a572012-02-17 16:07:41 -08002464 //
2465 // Work out what Method* we're in, the current line number, and how deep the stack currently
2466 // is for step-out.
2467 //
2468
Ian Rogers0399dde2012-06-06 17:09:28 -07002469 struct SingleStepStackVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07002470 explicit SingleStepStackVisitor(Thread* thread)
jeffhao09bfc6a2012-12-11 18:11:43 -08002471 EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002472 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002473 : StackVisitor(thread, NULL) {
Elliott Hughes86964332012-02-15 19:37:42 -08002474 gSingleStepControl.method = NULL;
2475 gSingleStepControl.stack_depth = 0;
2476 }
Ian Rogersca190662012-06-26 15:45:57 -07002477
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002478 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2479 // annotalysis.
2480 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
jeffhao09bfc6a2012-12-11 18:11:43 -08002481 Locks::breakpoint_lock_->AssertHeld(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07002482 const mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002483 if (!m->IsRuntimeMethod()) {
Elliott Hughes86964332012-02-15 19:37:42 -08002484 ++gSingleStepControl.stack_depth;
2485 if (gSingleStepControl.method == NULL) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002486 const mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Elliott Hughes2435a572012-02-17 16:07:41 -08002487 gSingleStepControl.method = m;
2488 gSingleStepControl.line_number = -1;
2489 if (dex_cache != NULL) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07002490 const DexFile& dex_file = *dex_cache->GetDexFile();
Ian Rogers0399dde2012-06-06 17:09:28 -07002491 gSingleStepControl.line_number = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08002492 }
Elliott Hughes86964332012-02-15 19:37:42 -08002493 }
2494 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002495 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08002496 }
2497 };
Jeff Hao449db332013-04-12 18:30:52 -07002498
2499 SingleStepStackVisitor visitor(sts.GetThread());
Ian Rogers0399dde2012-06-06 17:09:28 -07002500 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08002501
Elliott Hughes2435a572012-02-17 16:07:41 -08002502 //
2503 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
2504 //
2505
2506 struct DebugCallbackContext {
jeffhao09bfc6a2012-12-11 18:11:43 -08002507 DebugCallbackContext() EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002508 last_pc_valid = false;
2509 last_pc = 0;
Elliott Hughes2435a572012-02-17 16:07:41 -08002510 }
2511
jeffhao09bfc6a2012-12-11 18:11:43 -08002512 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2513 // annotalysis.
2514 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) NO_THREAD_SAFETY_ANALYSIS {
2515 Locks::breakpoint_lock_->AssertHeld(Thread::Current());
Elliott Hughes2435a572012-02-17 16:07:41 -08002516 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
2517 if (static_cast<int32_t>(line_number) == gSingleStepControl.line_number) {
2518 if (!context->last_pc_valid) {
2519 // Everything from this address until the next line change is ours.
2520 context->last_pc = address;
2521 context->last_pc_valid = true;
2522 }
2523 // Otherwise, if we're already in a valid range for this line,
2524 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002525 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08002526 // Add everything from the last entry up until here to the set
2527 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
2528 gSingleStepControl.dex_pcs.insert(dex_pc);
2529 }
2530 context->last_pc_valid = false;
2531 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002532 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08002533 }
2534
jeffhao09bfc6a2012-12-11 18:11:43 -08002535 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2536 // annotalysis.
2537 ~DebugCallbackContext() NO_THREAD_SAFETY_ANALYSIS {
2538 Locks::breakpoint_lock_->AssertHeld(Thread::Current());
Elliott Hughes2435a572012-02-17 16:07:41 -08002539 // If the line number was the last in the position table...
2540 if (last_pc_valid) {
2541 size_t end = MethodHelper(gSingleStepControl.method).GetCodeItem()->insns_size_in_code_units_;
2542 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
2543 gSingleStepControl.dex_pcs.insert(dex_pc);
2544 }
2545 }
2546 }
2547
2548 bool last_pc_valid;
2549 uint32_t last_pc;
2550 };
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08002551 gSingleStepControl.dex_pcs.clear();
Brian Carlstromea46f952013-07-30 01:26:50 -07002552 const mirror::ArtMethod* m = gSingleStepControl.method;
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08002553 if (m->IsNative()) {
2554 gSingleStepControl.line_number = -1;
2555 } else {
2556 DebugCallbackContext context;
2557 MethodHelper mh(m);
2558 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
2559 DebugCallbackContext::Callback, NULL, &context);
2560 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002561
2562 //
2563 // Everything else...
2564 //
2565
Jeff Hao449db332013-04-12 18:30:52 -07002566 gSingleStepControl.thread = sts.GetThread();
Elliott Hughes86964332012-02-15 19:37:42 -08002567 gSingleStepControl.step_size = step_size;
2568 gSingleStepControl.step_depth = step_depth;
2569 gSingleStepControl.is_active = true;
2570
Elliott Hughes2435a572012-02-17 16:07:41 -08002571 if (VLOG_IS_ON(jdwp)) {
2572 VLOG(jdwp) << "Single-step thread: " << *gSingleStepControl.thread;
2573 VLOG(jdwp) << "Single-step step size: " << gSingleStepControl.step_size;
2574 VLOG(jdwp) << "Single-step step depth: " << gSingleStepControl.step_depth;
2575 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(gSingleStepControl.method);
2576 VLOG(jdwp) << "Single-step current line: " << gSingleStepControl.line_number;
2577 VLOG(jdwp) << "Single-step current stack depth: " << gSingleStepControl.stack_depth;
2578 VLOG(jdwp) << "Single-step dex_pc values:";
2579 for (std::set<uint32_t>::iterator it = gSingleStepControl.dex_pcs.begin() ; it != gSingleStepControl.dex_pcs.end(); ++it) {
Elliott Hughes229feb72012-02-23 13:33:29 -08002580 VLOG(jdwp) << StringPrintf(" %#x", *it);
Elliott Hughes2435a572012-02-17 16:07:41 -08002581 }
2582 }
2583
2584 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002585}
2586
Elliott Hughes221229c2013-01-08 18:17:50 -08002587void Dbg::UnconfigureStep(JDWP::ObjectId /*thread_id*/) {
jeffhao09bfc6a2012-12-11 18:11:43 -08002588 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07002589
Elliott Hughes86964332012-02-15 19:37:42 -08002590 gSingleStepControl.is_active = false;
2591 gSingleStepControl.thread = NULL;
Elliott Hughes2435a572012-02-17 16:07:41 -08002592 gSingleStepControl.dex_pcs.clear();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002593}
2594
Elliott Hughes45651fd2012-02-21 15:48:20 -08002595static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
2596 switch (tag) {
2597 default:
2598 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
2599
2600 // Primitives.
2601 case JDWP::JT_BYTE: return 'B';
2602 case JDWP::JT_CHAR: return 'C';
2603 case JDWP::JT_FLOAT: return 'F';
2604 case JDWP::JT_DOUBLE: return 'D';
2605 case JDWP::JT_INT: return 'I';
2606 case JDWP::JT_LONG: return 'J';
2607 case JDWP::JT_SHORT: return 'S';
2608 case JDWP::JT_VOID: return 'V';
2609 case JDWP::JT_BOOLEAN: return 'Z';
2610
2611 // Reference types.
2612 case JDWP::JT_ARRAY:
2613 case JDWP::JT_OBJECT:
2614 case JDWP::JT_STRING:
2615 case JDWP::JT_THREAD:
2616 case JDWP::JT_THREAD_GROUP:
2617 case JDWP::JT_CLASS_LOADER:
2618 case JDWP::JT_CLASS_OBJECT:
2619 return 'L';
2620 }
2621}
2622
Elliott Hughes88d63092013-01-09 09:55:54 -08002623JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
2624 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002625 uint32_t arg_count, uint64_t* arg_values,
2626 JDWP::JdwpTag* arg_types, uint32_t options,
2627 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
2628 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08002629 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2630
2631 Thread* targetThread = NULL;
2632 DebugInvokeReq* req = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002633 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002634 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002635 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07002636 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002637 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread);
2638 if (error != JDWP::ERR_NONE) {
2639 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
2640 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002641 }
2642 req = targetThread->GetInvokeReq();
2643 if (!req->ready) {
2644 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
2645 return JDWP::ERR_INVALID_THREAD;
2646 }
2647
2648 /*
2649 * We currently have a bug where we don't successfully resume the
2650 * target thread if the suspend count is too deep. We're expected to
2651 * require one "resume" for each "suspend", but when asked to execute
2652 * a method we have to resume fully and then re-suspend it back to the
2653 * same level. (The easiest way to cause this is to type "suspend"
2654 * multiple times in jdb.)
2655 *
2656 * It's unclear what this means when the event specifies "resume all"
2657 * and some threads are suspended more deeply than others. This is
2658 * a rare problem, so for now we just prevent it from hanging forever
2659 * by rejecting the method invocation request. Without this, we will
2660 * be stuck waiting on a suspended thread.
2661 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002662 int suspend_count;
2663 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002664 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002665 suspend_count = targetThread->GetSuspendCount();
2666 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08002667 if (suspend_count > 1) {
2668 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002669 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08002670 }
2671
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002672 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002673 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08002674 if (receiver == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002675 return JDWP::ERR_INVALID_OBJECT;
2676 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002677
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002678 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08002679 if (thread == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002680 return JDWP::ERR_INVALID_OBJECT;
2681 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002682 // TODO: check that 'thread' is actually a java.lang.Thread!
2683
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002684 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes45651fd2012-02-21 15:48:20 -08002685 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002686 return status;
2687 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002688
Brian Carlstromea46f952013-07-30 01:26:50 -07002689 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes45651fd2012-02-21 15:48:20 -08002690 if (m->IsStatic() != (receiver == NULL)) {
2691 return JDWP::ERR_INVALID_METHODID;
2692 }
2693 if (m->IsStatic()) {
2694 if (m->GetDeclaringClass() != c) {
2695 return JDWP::ERR_INVALID_METHODID;
2696 }
2697 } else {
2698 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
2699 return JDWP::ERR_INVALID_METHODID;
2700 }
2701 }
2702
2703 // Check the argument list matches the method.
2704 MethodHelper mh(m);
2705 if (mh.GetShortyLength() - 1 != arg_count) {
2706 return JDWP::ERR_ILLEGAL_ARGUMENT;
2707 }
2708 const char* shorty = mh.GetShorty();
Elliott Hughes09201632013-04-15 15:50:07 -07002709 const DexFile::TypeList* types = mh.GetParameterTypeList();
Elliott Hughes45651fd2012-02-21 15:48:20 -08002710 for (size_t i = 0; i < arg_count; ++i) {
2711 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
2712 return JDWP::ERR_ILLEGAL_ARGUMENT;
2713 }
Elliott Hughes09201632013-04-15 15:50:07 -07002714
2715 if (shorty[i + 1] == 'L') {
2716 // Did we really get an argument of an appropriate reference type?
2717 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
2718 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i]);
2719 if (argument == ObjectRegistry::kInvalidObject) {
2720 return JDWP::ERR_INVALID_OBJECT;
2721 }
2722 if (!argument->InstanceOf(parameter_type)) {
2723 return JDWP::ERR_ILLEGAL_ARGUMENT;
2724 }
2725
2726 // Turn the on-the-wire ObjectId into a jobject.
2727 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
2728 v.l = gRegistry->GetJObject(arg_values[i]);
2729 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002730 }
2731
2732 req->receiver_ = receiver;
2733 req->thread_ = thread;
2734 req->class_ = c;
2735 req->method_ = m;
2736 req->arg_count_ = arg_count;
2737 req->arg_values_ = arg_values;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002738 req->options_ = options;
2739 req->invoke_needed_ = true;
2740 }
2741
2742 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
2743 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
2744 // call, and it's unwise to hold it during WaitForSuspend.
2745
2746 {
2747 /*
2748 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07002749 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08002750 * run out of memory. It's also a good idea to change it before locking
2751 * the invokeReq mutex, although that should never be held for long.
2752 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002753 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002754
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002755 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002756 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002757 MutexLock mu(self, req->lock_);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002758
2759 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002760 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002761 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002762 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002763 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002764 thread_list->Resume(targetThread, true);
2765 }
2766
2767 // Wait for the request to finish executing.
2768 while (req->invoke_needed_) {
Ian Rogersc604d732012-10-14 16:09:54 -07002769 req->cond_.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002770 }
2771 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002772 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002773
2774 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07002775 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002776 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002777 }
2778
2779 /*
2780 * Suspend the threads. We waited for the target thread to suspend
2781 * itself, so all we need to do is suspend the others.
2782 *
2783 * The suspendAllThreads() call will double-suspend the event thread,
2784 * so we want to resume the target thread once to keep the books straight.
2785 */
2786 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002787 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002788 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002789 thread_list->SuspendAllForDebugger();
2790 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002791 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002792 thread_list->Resume(targetThread, true);
2793 }
2794
2795 // Copy the result.
2796 *pResultTag = req->result_tag;
2797 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002798 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002799 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002800 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002801 }
2802 *pExceptionId = req->exception;
2803 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002804}
2805
2806void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002807 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002808
Elliott Hughes81ff3182012-03-23 20:35:56 -07002809 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08002810 // to preserve that across the method invocation.
Ian Rogers62d6c772013-02-27 08:32:07 -08002811 SirtRef<mirror::Object> old_throw_this_object(soa.Self(), NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -07002812 SirtRef<mirror::ArtMethod> old_throw_method(soa.Self(), NULL);
Ian Rogers62d6c772013-02-27 08:32:07 -08002813 SirtRef<mirror::Throwable> old_exception(soa.Self(), NULL);
2814 uint32_t old_throw_dex_pc;
2815 {
2816 ThrowLocation old_throw_location;
2817 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
2818 old_throw_this_object.reset(old_throw_location.GetThis());
2819 old_throw_method.reset(old_throw_location.GetMethod());
2820 old_exception.reset(old_exception_obj);
2821 old_throw_dex_pc = old_throw_location.GetDexPc();
2822 soa.Self()->ClearException();
2823 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08002824
2825 // Translate the method through the vtable, unless the debugger wants to suppress it.
Brian Carlstromea46f952013-07-30 01:26:50 -07002826 mirror::ArtMethod* m = pReq->method_;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002827 if ((pReq->options_ & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver_ != NULL) {
Brian Carlstromea46f952013-07-30 01:26:50 -07002828 mirror::ArtMethod* actual_method = pReq->class_->FindVirtualMethodForVirtualOrInterface(pReq->method_);
Elliott Hughes45651fd2012-02-21 15:48:20 -08002829 if (actual_method != m) {
2830 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m) << " to " << PrettyMethod(actual_method);
2831 m = actual_method;
2832 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08002833 }
Elliott Hughescfa9cfa2013-04-16 16:52:01 -07002834 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m)
2835 << " receiver=" << pReq->receiver_
2836 << " arg_count=" << pReq->arg_count_;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002837 CHECK(m != NULL);
2838
2839 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
2840
Jeff Hao5d917302013-02-27 17:57:33 -08002841 MethodHelper mh(m);
2842 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
2843 arg_array.BuildArgArray(soa, pReq->receiver_, reinterpret_cast<jvalue*>(pReq->arg_values_));
Jeff Hao6474d192013-03-26 14:08:09 -07002844 InvokeWithArgArray(soa, m, &arg_array, &pReq->result_value, mh.GetShorty()[0]);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002845
Ian Rogers62d6c772013-02-27 08:32:07 -08002846 mirror::Throwable* exception = soa.Self()->GetException(NULL);
2847 soa.Self()->ClearException();
2848 pReq->exception = gRegistry->Add(exception);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002849 pReq->result_tag = BasicTagFromDescriptor(MethodHelper(m).GetShorty());
2850 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002851 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
2852 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002853 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002854 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
2855 /* if no exception thrown, examine object result more closely */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002856 JDWP::JdwpTag new_tag = TagFromObject(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002857 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002858 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002859 pReq->result_tag = new_tag;
2860 }
2861
2862 /*
2863 * Register the object. We don't actually need an ObjectId yet,
2864 * but we do need to be sure that the GC won't move or discard the
2865 * object when we switch out of RUNNING. The ObjectId conversion
2866 * will add the object to the "do not touch" list.
2867 *
2868 * We can't use the "tracked allocation" mechanism here because
2869 * the object is going to be handed off to a different thread.
2870 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002871 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002872 }
2873
2874 if (old_exception.get() != NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002875 ThrowLocation gc_safe_throw_location(old_throw_this_object.get(), old_throw_method.get(),
2876 old_throw_dex_pc);
2877 soa.Self()->SetException(gc_safe_throw_location, old_exception.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002878 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002879}
2880
Elliott Hughesd07986f2011-12-06 18:27:45 -08002881/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002882 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002883 * need to process each, accumulate the replies, and ship the whole thing
2884 * back.
2885 *
2886 * Returns "true" if we have a reply. The reply buffer is newly allocated,
2887 * and includes the chunk type/length, followed by the data.
2888 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002889 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002890 * chunk. If this becomes inconvenient we will need to adapt.
2891 */
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002892bool Dbg::DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002893 Thread* self = Thread::Current();
2894 JNIEnv* env = self->GetJniEnv();
2895
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002896 uint32_t type = request.ReadUnsigned32("type");
2897 uint32_t length = request.ReadUnsigned32("length");
2898
2899 // Create a byte[] corresponding to 'request'.
2900 size_t request_length = request.size();
2901 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002902 if (dataArray.get() == NULL) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002903 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002904 env->ExceptionClear();
2905 return false;
2906 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002907 env->SetByteArrayRegion(dataArray.get(), 0, request_length, reinterpret_cast<const jbyte*>(request.data()));
2908 request.Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002909
2910 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002911 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002912 if (length != request_length) {
2913 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%d)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002914 return false;
2915 }
2916
2917 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07002918 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
2919 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002920 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002921 if (env->ExceptionCheck()) {
2922 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
2923 env->ExceptionDescribe();
2924 env->ExceptionClear();
2925 return false;
2926 }
2927
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002928 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002929 return false;
2930 }
2931
2932 /*
2933 * Pull the pieces out of the chunk. We copy the results into a
2934 * newly-allocated buffer that the caller can free. We don't want to
2935 * continue using the Chunk object because nothing has a reference to it.
2936 *
2937 * We could avoid this by returning type/data/offset/length and having
2938 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07002939 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002940 * if we have responses for multiple chunks.
2941 *
2942 * So we're pretty much stuck with copying data around multiple times.
2943 */
Elliott Hugheseac76672012-05-24 21:56:51 -07002944 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 -08002945 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07002946 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07002947 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002948
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002949 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 -07002950 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002951 return false;
2952 }
2953
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002954 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002955 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
2956 if (reply == NULL) {
2957 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
2958 return false;
2959 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07002960 JDWP::Set4BE(reply + 0, type);
2961 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07002962 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002963
2964 *pReplyBuf = reply;
2965 *pReplyLen = length + kChunkHdrLen;
2966
Elliott Hughes4b9702c2013-02-20 18:13:24 -08002967 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07002968 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002969}
2970
Elliott Hughesa2155262011-11-16 16:26:58 -08002971void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002972 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07002973
2974 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07002975 if (self->GetState() != kRunnable) {
2976 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
2977 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07002978 }
2979
2980 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07002981 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07002982 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
2983 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
2984 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07002985 if (env->ExceptionCheck()) {
2986 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
2987 env->ExceptionDescribe();
2988 env->ExceptionClear();
2989 }
2990}
2991
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002992void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08002993 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002994}
2995
2996void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08002997 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07002998 gDdmThreadNotification = false;
2999}
3000
3001/*
Elliott Hughes82188472011-11-07 18:11:48 -08003002 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003003 *
3004 * Because we broadcast the full set of threads when the notifications are
3005 * first enabled, it's possible for "thread" to be actively executing.
3006 */
Elliott Hughes82188472011-11-07 18:11:48 -08003007void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003008 if (!gDdmThreadNotification) {
3009 return;
3010 }
3011
Elliott Hughes82188472011-11-07 18:11:48 -08003012 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003013 uint8_t buf[4];
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003014 JDWP::Set4BE(&buf[0], t->GetThinLockId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003015 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003016 } else {
3017 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003018 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003019 SirtRef<mirror::String> name(soa.Self(), t->GetThreadName(soa));
Elliott Hughes82188472011-11-07 18:11:48 -08003020 size_t char_count = (name.get() != NULL) ? name->GetLength() : 0;
jeffhao725a9572012-11-13 18:20:12 -08003021 const jchar* chars = (name.get() != NULL) ? name->GetCharArray()->GetData() : NULL;
Elliott Hughes82188472011-11-07 18:11:48 -08003022
Elliott Hughes21f32d72011-11-09 17:44:13 -08003023 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003024 JDWP::Append4BE(bytes, t->GetThinLockId());
3025 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003026 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3027 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003028 }
3029}
3030
Elliott Hughes47fce012011-10-25 18:37:19 -07003031void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003032 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003033 gDdmThreadNotification = enable;
3034 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003035 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3036 // see a suspension in progress and block until that ends. They then post their own start
3037 // notification.
3038 SuspendVM();
3039 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003040 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003041 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003042 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003043 threads = Runtime::Current()->GetThreadList()->GetList();
3044 }
3045 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003046 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003047 for (Thread* thread : threads) {
3048 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003049 }
3050 }
3051 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003052 }
3053}
3054
Elliott Hughesa2155262011-11-16 16:26:58 -08003055void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003056 if (IsDebuggerActive()) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07003057 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08003058 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08003059 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003060 }
Elliott Hughes82188472011-11-07 18:11:48 -08003061 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003062}
3063
3064void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003065 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003066}
3067
3068void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003069 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003070}
3071
Elliott Hughes82188472011-11-07 18:11:48 -08003072void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003073 CHECK(buf != NULL);
3074 iovec vec[1];
3075 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3076 vec[0].iov_len = byte_count;
3077 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003078}
3079
Elliott Hughes21f32d72011-11-09 17:44:13 -08003080void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3081 DdmSendChunk(type, bytes.size(), &bytes[0]);
3082}
3083
Brian Carlstromf5293522013-07-19 00:24:00 -07003084void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003085 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003086 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003087 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003088 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003089 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003090}
3091
Elliott Hughes767a1472011-10-26 18:49:02 -07003092int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3093 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003094 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003095 return true;
3096 }
3097
3098 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3099 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3100 return false;
3101 }
3102
3103 gDdmHpifWhen = when;
3104 return true;
3105}
3106
3107bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3108 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3109 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3110 return false;
3111 }
3112
3113 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3114 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3115 return false;
3116 }
3117
3118 if (native) {
3119 gDdmNhsgWhen = when;
3120 gDdmNhsgWhat = what;
3121 } else {
3122 gDdmHpsgWhen = when;
3123 gDdmHpsgWhat = what;
3124 }
3125 return true;
3126}
3127
Elliott Hughes7162ad92011-10-27 14:08:42 -07003128void Dbg::DdmSendHeapInfo(HpifWhen reason) {
3129 // If there's a one-shot 'when', reset it.
3130 if (reason == gDdmHpifWhen) {
3131 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
3132 gDdmHpifWhen = HPIF_WHEN_NEVER;
3133 }
3134 }
3135
3136 /*
3137 * Chunk HPIF (client --> server)
3138 *
3139 * Heap Info. General information about the heap,
3140 * suitable for a summary display.
3141 *
3142 * [u4]: number of heaps
3143 *
3144 * For each heap:
3145 * [u4]: heap ID
3146 * [u8]: timestamp in ms since Unix epoch
3147 * [u1]: capture reason (same as 'when' value from server)
3148 * [u4]: max heap size in bytes (-Xmx)
3149 * [u4]: current heap size in bytes
3150 * [u4]: current number of bytes allocated
3151 * [u4]: current number of objects allocated
3152 */
3153 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07003154 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08003155 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003156 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003157 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08003158 JDWP::Append8BE(bytes, MilliTime());
3159 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003160 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
3161 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003162 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
3163 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08003164 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
3165 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07003166}
3167
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003168enum HpsgSolidity {
3169 SOLIDITY_FREE = 0,
3170 SOLIDITY_HARD = 1,
3171 SOLIDITY_SOFT = 2,
3172 SOLIDITY_WEAK = 3,
3173 SOLIDITY_PHANTOM = 4,
3174 SOLIDITY_FINALIZABLE = 5,
3175 SOLIDITY_SWEEP = 6,
3176};
3177
3178enum HpsgKind {
3179 KIND_OBJECT = 0,
3180 KIND_CLASS_OBJECT = 1,
3181 KIND_ARRAY_1 = 2,
3182 KIND_ARRAY_2 = 3,
3183 KIND_ARRAY_4 = 4,
3184 KIND_ARRAY_8 = 5,
3185 KIND_UNKNOWN = 6,
3186 KIND_NATIVE = 7,
3187};
3188
3189#define HPSG_PARTIAL (1<<7)
3190#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
3191
Ian Rogers30fab402012-01-23 15:43:46 -08003192class HeapChunkContext {
3193 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003194 // Maximum chunk size. Obtain this from the formula:
3195 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
3196 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08003197 : buf_(16384 - 16),
3198 type_(0),
3199 merge_(merge) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003200 Reset();
3201 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08003202 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003203 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08003204 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003205 }
3206 }
3207
3208 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08003209 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003210 Flush();
3211 }
3212 }
3213
3214 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08003215 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003216 return;
3217 }
3218
3219 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003220 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
3221 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003222
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003223 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
3224 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003225 // [u4]: length of piece, in allocation units
3226 // 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 -08003227 pieceLenField_ = p_;
3228 JDWP::Write4BE(&p_, 0x55555555);
3229 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003230 }
3231
Ian Rogersb726dcb2012-09-05 08:57:23 -07003232 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd636b062013-01-18 17:51:18 -08003233 if (pieceLenField_ == NULL) {
3234 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
3235 CHECK(needHeader_);
3236 return;
3237 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003238 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08003239 CHECK_LE(&buf_[0], pieceLenField_);
3240 CHECK_LE(pieceLenField_, p_);
3241 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003242
Ian Rogers30fab402012-01-23 15:43:46 -08003243 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003244 Reset();
3245 }
3246
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003247 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003248 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3249 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003250 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08003251 }
3252
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003253 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08003254 enum { ALLOCATION_UNIT_SIZE = 8 };
3255
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003256 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08003257 p_ = &buf_[0];
Ian Rogers15bf2d32012-08-28 17:33:04 -07003258 startOfNextMemoryChunk_ = NULL;
Ian Rogers30fab402012-01-23 15:43:46 -08003259 totalAllocationUnits_ = 0;
3260 needHeader_ = true;
3261 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003262 }
3263
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003264 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003265 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3266 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003267 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
3268 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07003269 if (used_bytes == 0) {
3270 if (start == NULL) {
3271 // Reset for start of new heap.
3272 startOfNextMemoryChunk_ = NULL;
3273 Flush();
3274 }
3275 // Only process in use memory so that free region information
3276 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08003277 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08003278 }
3279
Ian Rogers15bf2d32012-08-28 17:33:04 -07003280 /* If we're looking at the native heap, we'll just return
3281 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
3282 */
3283 bool native = type_ == CHUNK_TYPE("NHSG");
3284
3285 if (startOfNextMemoryChunk_ != NULL) {
3286 // Transmit any pending free memory. Native free memory of
3287 // over kMaxFreeLen could be because of the use of mmaps, so
3288 // don't report. If not free memory then start a new segment.
3289 bool flush = true;
3290 if (start > startOfNextMemoryChunk_) {
3291 const size_t kMaxFreeLen = 2 * kPageSize;
3292 void* freeStart = startOfNextMemoryChunk_;
3293 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07003294 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07003295 if (!native || freeLen < kMaxFreeLen) {
3296 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
3297 flush = false;
3298 }
3299 }
3300 if (flush) {
3301 startOfNextMemoryChunk_ = NULL;
3302 Flush();
3303 }
3304 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003305 const mirror::Object* obj = reinterpret_cast<const mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08003306
3307 // Determine the type of this chunk.
3308 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
3309 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003310 uint8_t state = ExamineObject(obj, native);
3311 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
3312 // allocation then the first sizeof(size_t) may belong to it.
3313 const size_t dlMallocOverhead = sizeof(size_t);
3314 AppendChunk(state, start, used_bytes + dlMallocOverhead);
Brian Carlstrom2d888622013-07-18 17:02:00 -07003315 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + dlMallocOverhead;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003316 }
Elliott Hughesa2155262011-11-16 16:26:58 -08003317
Ian Rogers15bf2d32012-08-28 17:33:04 -07003318 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003319 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003320 // Make sure there's enough room left in the buffer.
3321 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
3322 // 17 bytes for any header.
3323 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
3324 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3325 if (bytesLeft < needed) {
3326 Flush();
3327 }
3328
3329 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3330 if (bytesLeft < needed) {
3331 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
3332 << needed << " bytes)";
3333 return;
3334 }
3335 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08003336 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003337 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
3338 totalAllocationUnits_ += length;
3339 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08003340 *p_++ = state | HPSG_PARTIAL;
3341 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07003342 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08003343 }
Ian Rogers30fab402012-01-23 15:43:46 -08003344 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003345 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003346 }
3347
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003348 uint8_t ExamineObject(const mirror::Object* o, bool is_native_heap)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003349 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003350 if (o == NULL) {
3351 return HPSG_STATE(SOLIDITY_FREE, 0);
3352 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003353
Elliott Hughesa2155262011-11-16 16:26:58 -08003354 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003355
Elliott Hughesa2155262011-11-16 16:26:58 -08003356 // If we're looking at the native heap, we'll just return
3357 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003358 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003359 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
3360 }
3361
Ian Rogers5bfa60f2012-09-02 21:17:56 -07003362 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003363 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003364 }
3365
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003366 mirror::Class* c = o->GetClass();
Elliott Hughesa2155262011-11-16 16:26:58 -08003367 if (c == NULL) {
3368 // The object was probably just created but hasn't been initialized yet.
3369 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3370 }
3371
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003372 if (!Runtime::Current()->GetHeap()->IsHeapAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003373 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08003374 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
3375 }
3376
3377 if (c->IsClassClass()) {
3378 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
3379 }
3380
3381 if (c->IsArrayClass()) {
3382 if (o->IsObjectArray()) {
3383 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3384 }
3385 switch (c->GetComponentSize()) {
3386 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
3387 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
3388 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3389 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
3390 }
3391 }
3392
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003393 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3394 }
3395
Ian Rogers30fab402012-01-23 15:43:46 -08003396 std::vector<uint8_t> buf_;
3397 uint8_t* p_;
3398 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003399 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08003400 size_t totalAllocationUnits_;
3401 uint32_t type_;
3402 bool merge_;
3403 bool needHeader_;
3404
Elliott Hughesa2155262011-11-16 16:26:58 -08003405 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
3406};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003407
3408void Dbg::DdmSendHeapSegments(bool native) {
3409 Dbg::HpsgWhen when;
3410 Dbg::HpsgWhat what;
3411 if (!native) {
3412 when = gDdmHpsgWhen;
3413 what = gDdmHpsgWhat;
3414 } else {
3415 when = gDdmNhsgWhen;
3416 what = gDdmNhsgWhat;
3417 }
3418 if (when == HPSG_WHEN_NEVER) {
3419 return;
3420 }
3421
3422 // Figure out what kind of chunks we'll be sending.
3423 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
3424
3425 // First, send a heap start chunk.
3426 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003427 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003428 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
3429
3430 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08003431 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
3432 if (native) {
Ian Rogers1d54e732013-05-02 21:10:01 -07003433 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003434 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07003435 gc::Heap* heap = Runtime::Current()->GetHeap();
3436 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers50b35e22012-10-04 10:09:15 -07003437 Thread* self = Thread::Current();
Ian Rogers62d6c772013-02-27 08:32:07 -08003438 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Ian Rogers1d54e732013-05-02 21:10:01 -07003439 typedef std::vector<gc::space::ContinuousSpace*>::const_iterator It;
3440 for (It cur = spaces.begin(), end = spaces.end(); cur != end; ++cur) {
3441 if ((*cur)->IsDlMallocSpace()) {
3442 (*cur)->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07003443 }
3444 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07003445 // Walk the large objects, these are not in the AllocSpace.
3446 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003447 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003448
3449 // Finally, send a heap end chunk.
3450 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07003451}
3452
Elliott Hughesb1a58792013-07-11 18:10:58 -07003453static size_t GetAllocTrackerMax() {
3454#ifdef HAVE_ANDROID_OS
3455 // Check whether there's a system property overriding the number of records.
3456 const char* propertyName = "dalvik.vm.allocTrackerMax";
3457 char allocRecordMaxString[PROPERTY_VALUE_MAX];
3458 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
3459 char* end;
3460 size_t value = strtoul(allocRecordMaxString, &end, 10);
3461 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003462 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3463 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003464 return kDefaultNumAllocRecords;
3465 }
3466 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003467 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3468 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003469 return kDefaultNumAllocRecords;
3470 }
3471 return value;
3472 }
3473#endif
3474 return kDefaultNumAllocRecords;
3475}
3476
Elliott Hughes545a0642011-11-08 19:10:03 -08003477void Dbg::SetAllocTrackingEnabled(bool enabled) {
Ian Rogers50b35e22012-10-04 10:09:15 -07003478 MutexLock mu(Thread::Current(), gAllocTrackerLock);
Elliott Hughes545a0642011-11-08 19:10:03 -08003479 if (enabled) {
3480 if (recent_allocation_records_ == NULL) {
Elliott Hughesb1a58792013-07-11 18:10:58 -07003481 gAllocRecordMax = GetAllocTrackerMax();
3482 LOG(INFO) << "Enabling alloc tracker (" << gAllocRecordMax << " entries of "
3483 << kMaxAllocRecordStackDepth << " frames, taking "
3484 << PrettySize(sizeof(AllocRecord) * gAllocRecordMax) << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08003485 gAllocRecordHead = gAllocRecordCount = 0;
Elliott Hughesb1a58792013-07-11 18:10:58 -07003486 recent_allocation_records_ = new AllocRecord[gAllocRecordMax];
Elliott Hughes545a0642011-11-08 19:10:03 -08003487 CHECK(recent_allocation_records_ != NULL);
3488 }
3489 } else {
3490 delete[] recent_allocation_records_;
3491 recent_allocation_records_ = NULL;
3492 }
3493}
3494
Ian Rogers0399dde2012-06-06 17:09:28 -07003495struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08003496 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003497 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08003498 : StackVisitor(thread, NULL), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08003499
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003500 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3501 // annotalysis.
3502 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08003503 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07003504 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08003505 }
Brian Carlstromea46f952013-07-30 01:26:50 -07003506 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003507 if (!m->IsRuntimeMethod()) {
3508 record->stack[depth].method = m;
3509 record->stack[depth].dex_pc = GetDexPc();
Elliott Hughes530fa002012-03-12 11:44:49 -07003510 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08003511 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003512 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08003513 }
3514
3515 ~AllocRecordStackVisitor() {
3516 // Clear out any unused stack trace elements.
3517 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
3518 record->stack[depth].method = NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -07003519 record->stack[depth].dex_pc = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08003520 }
3521 }
3522
3523 AllocRecord* record;
3524 size_t depth;
3525};
3526
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003527void Dbg::RecordAllocation(mirror::Class* type, size_t byte_count) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003528 Thread* self = Thread::Current();
3529 CHECK(self != NULL);
3530
Ian Rogers50b35e22012-10-04 10:09:15 -07003531 MutexLock mu(self, gAllocTrackerLock);
Elliott Hughes545a0642011-11-08 19:10:03 -08003532 if (recent_allocation_records_ == NULL) {
3533 return;
3534 }
3535
3536 // Advance and clip.
Elliott Hughesb1a58792013-07-11 18:10:58 -07003537 if (++gAllocRecordHead == gAllocRecordMax) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003538 gAllocRecordHead = 0;
3539 }
3540
3541 // Fill in the basics.
3542 AllocRecord* record = &recent_allocation_records_[gAllocRecordHead];
3543 record->type = type;
3544 record->byte_count = byte_count;
3545 record->thin_lock_id = self->GetThinLockId();
3546
3547 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08003548 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07003549 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08003550
Elliott Hughesb1a58792013-07-11 18:10:58 -07003551 if (gAllocRecordCount < gAllocRecordMax) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003552 ++gAllocRecordCount;
3553 }
3554}
3555
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003556// Returns the index of the head element.
3557//
3558// We point at the most-recently-written record, so if gAllocRecordCount is 1
3559// we want to use the current element. Take "head+1" and subtract count
3560// from it.
3561//
3562// We need to handle underflow in our circular buffer, so we add
Elliott Hughesb1a58792013-07-11 18:10:58 -07003563// gAllocRecordMax and then mask it back down.
Elliott Hughesf8349362012-06-18 15:00:06 -07003564static inline int HeadIndex() EXCLUSIVE_LOCKS_REQUIRED(gAllocTrackerLock) {
Elliott Hughesb1a58792013-07-11 18:10:58 -07003565 return (gAllocRecordHead+1 + gAllocRecordMax - gAllocRecordCount) & (gAllocRecordMax-1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003566}
3567
3568void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003569 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07003570 MutexLock mu(soa.Self(), gAllocTrackerLock);
Elliott Hughes545a0642011-11-08 19:10:03 -08003571 if (recent_allocation_records_ == NULL) {
3572 LOG(INFO) << "Not recording tracked allocations";
3573 return;
3574 }
3575
3576 // "i" is the head of the list. We want to start at the end of the
3577 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003578 size_t i = HeadIndex();
Elliott Hughes545a0642011-11-08 19:10:03 -08003579 size_t count = gAllocRecordCount;
3580
3581 LOG(INFO) << "Tracked allocations, (head=" << gAllocRecordHead << " count=" << count << ")";
3582 while (count--) {
3583 AllocRecord* record = &recent_allocation_records_[i];
3584
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003585 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->thin_lock_id, record->byte_count)
Elliott Hughes545a0642011-11-08 19:10:03 -08003586 << PrettyClass(record->type);
3587
3588 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Brian Carlstromea46f952013-07-30 01:26:50 -07003589 const mirror::ArtMethod* m = record->stack[stack_frame].method;
Elliott Hughes545a0642011-11-08 19:10:03 -08003590 if (m == NULL) {
3591 break;
3592 }
3593 LOG(INFO) << " " << PrettyMethod(m) << " line " << record->stack[stack_frame].LineNumber();
3594 }
3595
3596 // pause periodically to help logcat catch up
3597 if ((count % 5) == 0) {
3598 usleep(40000);
3599 }
3600
Elliott Hughesb1a58792013-07-11 18:10:58 -07003601 i = (i + 1) & (gAllocRecordMax-1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003602 }
3603}
3604
3605class StringTable {
3606 public:
3607 StringTable() {
3608 }
3609
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003610 void Add(const char* s) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003611 table_.insert(s);
3612 }
3613
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003614 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07003615 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003616 if (it == table_.end()) {
3617 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
3618 }
3619 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08003620 }
3621
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003622 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08003623 return table_.size();
3624 }
3625
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003626 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07003627 for (const std::string& str : table_) {
3628 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003629 size_t s_len = CountModifiedUtf8Chars(s);
3630 UniquePtr<uint16_t> s_utf16(new uint16_t[s_len]);
3631 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
3632 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08003633 }
3634 }
3635
3636 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003637 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003638 DISALLOW_COPY_AND_ASSIGN(StringTable);
3639};
3640
3641/*
3642 * The data we send to DDMS contains everything we have recorded.
3643 *
3644 * Message header (all values big-endian):
3645 * (1b) message header len (to allow future expansion); includes itself
3646 * (1b) entry header len
3647 * (1b) stack frame len
3648 * (2b) number of entries
3649 * (4b) offset to string table from start of message
3650 * (2b) number of class name strings
3651 * (2b) number of method name strings
3652 * (2b) number of source file name strings
3653 * For each entry:
3654 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08003655 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08003656 * (2b) allocated object's class name index
3657 * (1b) stack depth
3658 * For each stack frame:
3659 * (2b) method's class name
3660 * (2b) method name
3661 * (2b) method source file
3662 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
3663 * (xb) class name strings
3664 * (xb) method name strings
3665 * (xb) source file strings
3666 *
3667 * As with other DDM traffic, strings are sent as a 4-byte length
3668 * followed by UTF-16 data.
3669 *
3670 * We send up 16-bit unsigned indexes into string tables. In theory there
Elliott Hughesb1a58792013-07-11 18:10:58 -07003671 * can be (kMaxAllocRecordStackDepth * gAllocRecordMax) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08003672 * each table, but in practice there should be far fewer.
3673 *
3674 * The chief reason for using a string table here is to keep the size of
3675 * the DDMS message to a minimum. This is partly to make the protocol
3676 * efficient, but also because we have to form the whole thing up all at
3677 * once in a memory buffer.
3678 *
3679 * We use separate string tables for class names, method names, and source
3680 * files to keep the indexes small. There will generally be no overlap
3681 * between the contents of these tables.
3682 */
3683jbyteArray Dbg::GetRecentAllocations() {
3684 if (false) {
3685 DumpRecentAllocations();
3686 }
3687
Ian Rogers50b35e22012-10-04 10:09:15 -07003688 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08003689 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003690 {
3691 MutexLock mu(self, gAllocTrackerLock);
3692 //
3693 // Part 1: generate string tables.
3694 //
3695 StringTable class_names;
3696 StringTable method_names;
3697 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08003698
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003699 int count = gAllocRecordCount;
3700 int idx = HeadIndex();
3701 while (count--) {
3702 AllocRecord* record = &recent_allocation_records_[idx];
Elliott Hughes545a0642011-11-08 19:10:03 -08003703
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003704 class_names.Add(ClassHelper(record->type).GetDescriptor());
Elliott Hughes545a0642011-11-08 19:10:03 -08003705
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003706 MethodHelper mh;
3707 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07003708 mirror::ArtMethod* m = record->stack[i].method;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003709 if (m != NULL) {
3710 mh.ChangeMethod(m);
3711 class_names.Add(mh.GetDeclaringClassDescriptor());
3712 method_names.Add(mh.GetName());
3713 filenames.Add(mh.GetDeclaringClassSourceFile());
3714 }
3715 }
Elliott Hughes545a0642011-11-08 19:10:03 -08003716
Elliott Hughesb1a58792013-07-11 18:10:58 -07003717 idx = (idx + 1) & (gAllocRecordMax-1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003718 }
3719
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003720 LOG(INFO) << "allocation records: " << gAllocRecordCount;
3721
3722 //
3723 // Part 2: Generate the output and store it in the buffer.
3724 //
3725
3726 // (1b) message header len (to allow future expansion); includes itself
3727 // (1b) entry header len
3728 // (1b) stack frame len
3729 const int kMessageHeaderLen = 15;
3730 const int kEntryHeaderLen = 9;
3731 const int kStackFrameLen = 8;
3732 JDWP::Append1BE(bytes, kMessageHeaderLen);
3733 JDWP::Append1BE(bytes, kEntryHeaderLen);
3734 JDWP::Append1BE(bytes, kStackFrameLen);
3735
3736 // (2b) number of entries
3737 // (4b) offset to string table from start of message
3738 // (2b) number of class name strings
3739 // (2b) number of method name strings
3740 // (2b) number of source file name strings
3741 JDWP::Append2BE(bytes, gAllocRecordCount);
3742 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003743 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003744 JDWP::Append2BE(bytes, class_names.Size());
3745 JDWP::Append2BE(bytes, method_names.Size());
3746 JDWP::Append2BE(bytes, filenames.Size());
3747
3748 count = gAllocRecordCount;
3749 idx = HeadIndex();
3750 ClassHelper kh;
3751 while (count--) {
3752 // For each entry:
3753 // (4b) total allocation size
3754 // (2b) thread id
3755 // (2b) allocated object's class name index
3756 // (1b) stack depth
3757 AllocRecord* record = &recent_allocation_records_[idx];
3758 size_t stack_depth = record->GetDepth();
3759 kh.ChangeClass(record->type);
3760 size_t allocated_object_class_name_index = class_names.IndexOf(kh.GetDescriptor());
3761 JDWP::Append4BE(bytes, record->byte_count);
3762 JDWP::Append2BE(bytes, record->thin_lock_id);
3763 JDWP::Append2BE(bytes, allocated_object_class_name_index);
3764 JDWP::Append1BE(bytes, stack_depth);
3765
3766 MethodHelper mh;
3767 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
3768 // For each stack frame:
3769 // (2b) method's class name
3770 // (2b) method name
3771 // (2b) method source file
3772 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
3773 mh.ChangeMethod(record->stack[stack_frame].method);
3774 size_t class_name_index = class_names.IndexOf(mh.GetDeclaringClassDescriptor());
3775 size_t method_name_index = method_names.IndexOf(mh.GetName());
3776 size_t file_name_index = filenames.IndexOf(mh.GetDeclaringClassSourceFile());
3777 JDWP::Append2BE(bytes, class_name_index);
3778 JDWP::Append2BE(bytes, method_name_index);
3779 JDWP::Append2BE(bytes, file_name_index);
3780 JDWP::Append2BE(bytes, record->stack[stack_frame].LineNumber());
3781 }
3782
Elliott Hughesb1a58792013-07-11 18:10:58 -07003783 idx = (idx + 1) & (gAllocRecordMax-1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003784 }
3785
3786 // (xb) class name strings
3787 // (xb) method name strings
3788 // (xb) source file strings
3789 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
3790 class_names.WriteTo(bytes);
3791 method_names.WriteTo(bytes);
3792 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08003793 }
Ian Rogers50b35e22012-10-04 10:09:15 -07003794 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08003795 jbyteArray result = env->NewByteArray(bytes.size());
3796 if (result != NULL) {
3797 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
3798 }
3799 return result;
3800}
3801
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003802} // namespace art