blob: 9194d7321d33578453fdabadbf32faafcf114b95 [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
Ian Rogers62d6c772013-02-27 08:32:07 -080098class DebugInstrumentationListener : public instrumentation::InstrumentationListener {
99 public:
100 DebugInstrumentationListener() {}
101 virtual ~DebugInstrumentationListener() {}
102
103 virtual void MethodEntered(Thread* thread, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700104 const mirror::ArtMethod* method, uint32_t dex_pc)
Ian Rogers62d6c772013-02-27 08:32:07 -0800105 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
106 if (method->IsNative()) {
107 // TODO: post location events is a suspension point and native method entry stubs aren't.
108 return;
109 }
Jeff Hao579b0242013-11-18 13:16:49 -0800110 Dbg::PostLocationEvent(method, 0, this_object, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800111 }
112
113 virtual void MethodExited(Thread* thread, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700114 const mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800115 uint32_t dex_pc, const JValue& return_value)
116 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800117 if (method->IsNative()) {
118 // TODO: post location events is a suspension point and native method entry stubs aren't.
119 return;
120 }
Jeff Hao579b0242013-11-18 13:16:49 -0800121 Dbg::PostLocationEvent(method, dex_pc, this_object, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800122 }
123
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100124 virtual void MethodUnwind(Thread* thread, mirror::Object* this_object,
125 const mirror::ArtMethod* method, uint32_t dex_pc)
126 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800127 // We're not recorded to listen to this kind of event, so complain.
128 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100129 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800130 }
131
132 virtual void DexPcMoved(Thread* thread, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -0700133 const mirror::ArtMethod* method, uint32_t new_dex_pc)
Ian Rogers62d6c772013-02-27 08:32:07 -0800134 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
135 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc);
136 }
137
138 virtual void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -0700139 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -0800140 mirror::Throwable* exception_object)
141 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
142 Dbg::PostException(thread, throw_location, catch_method, catch_dex_pc, exception_object);
143 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800144} gDebugInstrumentationListener;
145
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700146// JDWP is allowed unless the Zygote forbids it.
147static bool gJdwpAllowed = true;
148
Elliott Hughesc0f09332012-03-26 13:27:06 -0700149// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700150static bool gJdwpConfigured = false;
151
Elliott Hughesc0f09332012-03-26 13:27:06 -0700152// Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.)
Elliott Hughes376a7a02011-10-24 18:35:55 -0700153static JDWP::JdwpOptions gJdwpOptions;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700154
155// Runtime JDWP state.
156static JDWP::JdwpState* gJdwpState = NULL;
157static bool gDebuggerConnected; // debugger or DDMS is connected.
158static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800159static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700160
Elliott Hughes47fce012011-10-25 18:37:19 -0700161static bool gDdmThreadNotification = false;
162
Elliott Hughes767a1472011-10-26 18:49:02 -0700163// DDMS GC-related settings.
164static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
165static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
166static Dbg::HpsgWhat gDdmHpsgWhat;
167static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
168static Dbg::HpsgWhat gDdmNhsgWhat;
169
Elliott Hughes475fc232011-10-25 15:00:35 -0700170static ObjectRegistry* gRegistry = NULL;
171
Elliott Hughes545a0642011-11-08 19:10:03 -0800172// Recent allocation tracking.
Brian Carlstromdf629502013-07-17 22:39:56 -0700173static Mutex gAllocTrackerLock DEFAULT_MUTEX_ACQUIRED_AFTER("AllocTracker lock");
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700174AllocRecord* Dbg::recent_allocation_records_ PT_GUARDED_BY(gAllocTrackerLock) = NULL; // TODO: CircularBuffer<AllocRecord>
Elliott Hughesb1a58792013-07-11 18:10:58 -0700175static size_t gAllocRecordMax GUARDED_BY(gAllocTrackerLock) = 0;
Elliott Hughesf8349362012-06-18 15:00:06 -0700176static size_t gAllocRecordHead GUARDED_BY(gAllocTrackerLock) = 0;
177static size_t gAllocRecordCount GUARDED_BY(gAllocTrackerLock) = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -0800178
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100179// Deoptimization support.
180struct MethodInstrumentationRequest {
181 bool deoptimize;
182
183 // Method for selective deoptimization. NULL means full deoptimization.
184 mirror::ArtMethod* method;
185
186 MethodInstrumentationRequest(bool deoptimize, mirror::ArtMethod* method)
187 : deoptimize(deoptimize), method(method) {}
188};
189// TODO we need to visit associated methods as roots.
190static std::vector<MethodInstrumentationRequest> gDeoptimizationRequests GUARDED_BY(Locks::deoptimization_lock_);
191
192// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800193static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800194
Brian Carlstromea46f952013-07-30 01:26:50 -0700195static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800196 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700197 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao09bfc6a2012-12-11 18:11:43 -0800198 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100199 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800200 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == dex_pc) {
Elliott Hughes86964332012-02-15 19:37:42 -0800201 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
202 return true;
203 }
204 }
205 return false;
206}
207
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800208static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread) {
209 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
210 // A thread may be suspended for GC; in this code, we really want to know whether
211 // there's a debugger suspension active.
212 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
213}
214
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800215static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700216 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800217 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800218 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800219 status = JDWP::ERR_INVALID_OBJECT;
220 return NULL;
221 }
222 if (!o->IsArrayInstance()) {
223 status = JDWP::ERR_INVALID_ARRAY;
224 return NULL;
225 }
226 status = JDWP::ERR_NONE;
227 return o->AsArray();
228}
229
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800230static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700231 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800232 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800233 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800234 status = JDWP::ERR_INVALID_OBJECT;
235 return NULL;
236 }
237 if (!o->IsClass()) {
238 status = JDWP::ERR_INVALID_CLASS;
239 return NULL;
240 }
241 status = JDWP::ERR_NONE;
242 return o->AsClass();
243}
244
Elliott Hughes221229c2013-01-08 18:17:50 -0800245static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thread*& thread)
jeffhaoa77f0f62012-12-05 17:19:31 -0800246 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700247 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
248 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800249 mirror::Object* thread_peer = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800250 if (thread_peer == NULL || thread_peer == ObjectRegistry::kInvalidObject) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800251 // This isn't even an object.
252 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes436e3722012-02-17 20:01:47 -0800253 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800254
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800255 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800256 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
257 // This isn't a thread.
258 return JDWP::ERR_INVALID_THREAD;
259 }
260
261 thread = Thread::FromManagedThread(soa, thread_peer);
262 if (thread == NULL) {
263 // This is a java.lang.Thread without a Thread*. Must be a zombie.
264 return JDWP::ERR_THREAD_NOT_ALIVE;
265 }
266 return JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800267}
268
Elliott Hughes24437992011-11-30 14:49:33 -0800269static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
270 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
271 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
272 return static_cast<JDWP::JdwpTag>(descriptor[0]);
273}
274
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800275static JDWP::JdwpTag TagFromClass(mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700276 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes86b00102011-12-05 17:54:26 -0800277 CHECK(c != NULL);
Elliott Hughes24437992011-11-30 14:49:33 -0800278 if (c->IsArrayClass()) {
279 return JDWP::JT_ARRAY;
280 }
281
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800282 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Elliott Hughes24437992011-11-30 14:49:33 -0800283 if (c->IsStringClass()) {
284 return JDWP::JT_STRING;
285 } else if (c->IsClassClass()) {
286 return JDWP::JT_CLASS_OBJECT;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800287 } else if (class_linker->FindSystemClass("Ljava/lang/Thread;")->IsAssignableFrom(c)) {
Elliott Hughes24437992011-11-30 14:49:33 -0800288 return JDWP::JT_THREAD;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800289 } else if (class_linker->FindSystemClass("Ljava/lang/ThreadGroup;")->IsAssignableFrom(c)) {
Elliott Hughes24437992011-11-30 14:49:33 -0800290 return JDWP::JT_THREAD_GROUP;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800291 } else if (class_linker->FindSystemClass("Ljava/lang/ClassLoader;")->IsAssignableFrom(c)) {
Elliott Hughes24437992011-11-30 14:49:33 -0800292 return JDWP::JT_CLASS_LOADER;
Elliott Hughes24437992011-11-30 14:49:33 -0800293 } else {
294 return JDWP::JT_OBJECT;
295 }
296}
297
298/*
299 * Objects declared to hold Object might actually hold a more specific
300 * type. The debugger may take a special interest in these (e.g. it
301 * wants to display the contents of Strings), so we want to return an
302 * appropriate tag.
303 *
304 * Null objects are tagged JT_OBJECT.
305 */
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800306static JDWP::JdwpTag TagFromObject(const mirror::Object* o)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700307 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes24437992011-11-30 14:49:33 -0800308 return (o == NULL) ? JDWP::JT_OBJECT : TagFromClass(o->GetClass());
309}
310
311static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
312 switch (tag) {
313 case JDWP::JT_BOOLEAN:
314 case JDWP::JT_BYTE:
315 case JDWP::JT_CHAR:
316 case JDWP::JT_FLOAT:
317 case JDWP::JT_DOUBLE:
318 case JDWP::JT_INT:
319 case JDWP::JT_LONG:
320 case JDWP::JT_SHORT:
321 case JDWP::JT_VOID:
322 return true;
323 default:
324 return false;
325 }
326}
327
Elliott Hughes3bb81562011-10-21 18:52:59 -0700328/*
329 * Handle one of the JDWP name/value pairs.
330 *
331 * JDWP options are:
332 * help: if specified, show help message and bail
333 * transport: may be dt_socket or dt_shmem
334 * address: for dt_socket, "host:port", or just "port" when listening
335 * server: if "y", wait for debugger to attach; if "n", attach to debugger
336 * timeout: how long to wait for debugger to connect / listen
337 *
338 * Useful with server=n (these aren't supported yet):
339 * onthrow=<exception-name>: connect to debugger when exception thrown
340 * onuncaught=y|n: connect to debugger when uncaught exception thrown
341 * launch=<command-line>: launch the debugger itself
342 *
343 * The "transport" option is required, as is "address" if server=n.
344 */
345static bool ParseJdwpOption(const std::string& name, const std::string& value) {
346 if (name == "transport") {
347 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700348 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700349 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700350 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700351 } else {
352 LOG(ERROR) << "JDWP transport not supported: " << value;
353 return false;
354 }
355 } else if (name == "server") {
356 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700357 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700358 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700359 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700360 } else {
361 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
362 return false;
363 }
364 } else if (name == "suspend") {
365 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700366 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700367 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700368 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700369 } else {
370 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
371 return false;
372 }
373 } else if (name == "address") {
374 /* this is either <port> or <host>:<port> */
375 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700376 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700377 std::string::size_type colon = value.find(':');
378 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700379 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700380 port_string = value.substr(colon + 1);
381 } else {
382 port_string = value;
383 }
384 if (port_string.empty()) {
385 LOG(ERROR) << "JDWP address missing port: " << value;
386 return false;
387 }
388 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800389 uint64_t port = strtoul(port_string.c_str(), &end, 10);
390 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700391 LOG(ERROR) << "JDWP address has junk in port field: " << value;
392 return false;
393 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700394 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700395 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
396 /* valid but unsupported */
397 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
398 } else {
399 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
400 }
401
402 return true;
403}
404
405/*
406 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
407 * "transport=dt_socket,address=8000,server=y,suspend=n"
408 */
409bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800410 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700411
Elliott Hughes3bb81562011-10-21 18:52:59 -0700412 std::vector<std::string> pairs;
413 Split(options, ',', pairs);
414
415 for (size_t i = 0; i < pairs.size(); ++i) {
416 std::string::size_type equals = pairs[i].find('=');
417 if (equals == std::string::npos) {
418 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
419 return false;
420 }
421 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
422 }
423
Elliott Hughes376a7a02011-10-24 18:35:55 -0700424 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700425 LOG(ERROR) << "Must specify JDWP transport: " << options;
426 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700427 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700428 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
429 return false;
430 }
431
432 gJdwpConfigured = true;
433 return true;
434}
435
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700436void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700437 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700438 // No JDWP for you!
439 return;
440 }
441
Elliott Hughes475fc232011-10-25 15:00:35 -0700442 CHECK(gRegistry == NULL);
443 gRegistry = new ObjectRegistry;
444
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700445 // Init JDWP if the debugger is enabled. This may connect out to a
446 // debugger, passively listen for a debugger, or block waiting for a
447 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700448 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
449 if (gJdwpState == NULL) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800450 // We probably failed because some other process has the port already, which means that
451 // if we don't abort the user is likely to think they're talking to us when they're actually
452 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800453 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700454 }
455
456 // If a debugger has already attached, send the "welcome" message.
457 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700458 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700459 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes376a7a02011-10-24 18:35:55 -0700460 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800461 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700462 }
463 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700464}
465
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700466void Dbg::StopJdwp() {
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100467 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
468 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700469 delete gJdwpState;
Sebastien Hertz123756a2013-11-27 15:49:42 +0100470 gJdwpState = NULL;
Elliott Hughes475fc232011-10-25 15:00:35 -0700471 delete gRegistry;
472 gRegistry = NULL;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700473}
474
Elliott Hughes767a1472011-10-26 18:49:02 -0700475void Dbg::GcDidFinish() {
476 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700477 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes81ff3182012-03-23 20:35:56 -0700478 LOG(DEBUG) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700479 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700480 }
481 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700482 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes81ff3182012-03-23 20:35:56 -0700483 LOG(DEBUG) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700484 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700485 }
486 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700487 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes767a1472011-10-26 18:49:02 -0700488 LOG(DEBUG) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700489 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700490 }
491}
492
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700493void Dbg::SetJdwpAllowed(bool allowed) {
494 gJdwpAllowed = allowed;
495}
496
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700497DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700498 return Thread::Current()->GetInvokeReq();
499}
500
501Thread* Dbg::GetDebugThread() {
502 return (gJdwpState != NULL) ? gJdwpState->GetDebugThread() : NULL;
503}
504
505void Dbg::ClearWaitForEventThread() {
506 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700507}
508
509void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700510 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800511 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700512 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800513 gDisposed = false;
514}
515
516void Dbg::Disposed() {
517 gDisposed = true;
518}
519
520bool Dbg::IsDisposed() {
521 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700522}
523
Elliott Hughesa2155262011-11-16 16:26:58 -0800524void Dbg::GoActive() {
525 // Enable all debugging features, including scans for breakpoints.
526 // This is a no-op if we're already active.
527 // Only called from the JDWP handler thread.
528 if (gDebuggerActive) {
529 return;
530 }
531
Elliott Hughesc0f09332012-03-26 13:27:06 -0700532 {
533 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
jeffhao09bfc6a2012-12-11 18:11:43 -0800534 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700535 CHECK_EQ(gBreakpoints.size(), 0U);
536 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800537
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100538 {
539 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
540 CHECK_EQ(gDeoptimizationRequests.size(), 0U);
541 }
542
Ian Rogers62d6c772013-02-27 08:32:07 -0800543 Runtime* runtime = Runtime::Current();
544 runtime->GetThreadList()->SuspendAll();
545 Thread* self = Thread::Current();
546 ThreadState old_state = self->SetStateUnsafe(kRunnable);
547 CHECK_NE(old_state, kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100548 runtime->GetInstrumentation()->EnableDeoptimization();
Ian Rogers62d6c772013-02-27 08:32:07 -0800549 runtime->GetInstrumentation()->AddListener(&gDebugInstrumentationListener,
550 instrumentation::Instrumentation::kMethodEntered |
551 instrumentation::Instrumentation::kMethodExited |
Jeff Hao14dd5a82013-04-11 10:23:36 -0700552 instrumentation::Instrumentation::kDexPcMoved |
553 instrumentation::Instrumentation::kExceptionCaught);
Elliott Hughesa2155262011-11-16 16:26:58 -0800554 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800555 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
556 runtime->GetThreadList()->ResumeAll();
557
558 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700559}
560
561void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700562 CHECK(gDebuggerConnected);
563
Elliott Hughesc0f09332012-03-26 13:27:06 -0700564 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700565
Ian Rogers62d6c772013-02-27 08:32:07 -0800566 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
567 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
568 // and clear the object registry.
569 Runtime* runtime = Runtime::Current();
570 runtime->GetThreadList()->SuspendAll();
571 Thread* self = Thread::Current();
572 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100573 {
574 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
575 // This prevent us from having any pending deoptimization request when the debugger attaches to
576 // us again while no event has been requested yet.
577 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
578 gDeoptimizationRequests.clear();
579 }
580 runtime->GetInstrumentation()->DisableDeoptimization();
Ian Rogers62d6c772013-02-27 08:32:07 -0800581 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
582 instrumentation::Instrumentation::kMethodEntered |
583 instrumentation::Instrumentation::kMethodExited |
Jeff Hao14dd5a82013-04-11 10:23:36 -0700584 instrumentation::Instrumentation::kDexPcMoved |
585 instrumentation::Instrumentation::kExceptionCaught);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700586 gDebuggerActive = false;
Elliott Hughes234ab152011-10-26 14:02:26 -0700587 gRegistry->Clear();
588 gDebuggerConnected = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800589 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
590 runtime->GetThreadList()->ResumeAll();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700591}
592
Elliott Hughesc0f09332012-03-26 13:27:06 -0700593bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700594 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700595}
596
Elliott Hughesc0f09332012-03-26 13:27:06 -0700597bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700598 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700599}
600
601int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800602 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700603}
604
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700605void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700606 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700607}
608
Elliott Hughes88d63092013-01-09 09:55:54 -0800609std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800610 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800611 if (o == NULL) {
612 return "NULL";
613 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800614 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes88d63092013-01-09 09:55:54 -0800615 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
Elliott Hughes436e3722012-02-17 20:01:47 -0800616 }
617 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700618 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800619 }
Elliott Hughesc308a5d2012-02-16 17:12:06 -0800620 return DescriptorToName(ClassHelper(o->AsClass()).GetDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700621}
622
Elliott Hughes88d63092013-01-09 09:55:54 -0800623JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800624 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800625 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800626 if (c == NULL) {
627 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800628 }
Elliott Hughes88d63092013-01-09 09:55:54 -0800629 class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800630 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800631}
632
Elliott Hughes88d63092013-01-09 09:55:54 -0800633JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800634 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800635 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800636 if (c == NULL) {
637 return status;
638 }
639 if (c->IsInterface()) {
640 // http://code.google.com/p/android/issues/detail?id=20856
Elliott Hughes88d63092013-01-09 09:55:54 -0800641 superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800642 } else {
Elliott Hughes88d63092013-01-09 09:55:54 -0800643 superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800644 }
645 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700646}
647
Elliott Hughes436e3722012-02-17 20:01:47 -0800648JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800649 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800650 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800651 return JDWP::ERR_INVALID_OBJECT;
652 }
653 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
654 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700655}
656
Elliott Hughes436e3722012-02-17 20:01:47 -0800657JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
658 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800659 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800660 if (c == NULL) {
661 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800662 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800663
664 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
665
666 // Set ACC_SUPER; dex files don't contain this flag, but all classes are supposed to have it set.
667 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
668 access_flags |= kAccSuper;
669
670 expandBufAdd4BE(pReply, access_flags);
671
672 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700673}
674
Elliott Hughesf327e072013-01-09 16:01:26 -0800675JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
676 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800677 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800678 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800679 return JDWP::ERR_INVALID_OBJECT;
680 }
681
682 // Ensure all threads are suspended while we read objects' lock words.
683 Thread* self = Thread::Current();
684 Locks::mutator_lock_->SharedUnlock(self);
685 Locks::mutator_lock_->ExclusiveLock(self);
686
687 MonitorInfo monitor_info(o);
688
689 Locks::mutator_lock_->ExclusiveUnlock(self);
690 Locks::mutator_lock_->SharedLock(self);
691
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700692 if (monitor_info.owner_ != NULL) {
693 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800694 } else {
695 expandBufAddObjectId(reply, gRegistry->Add(NULL));
696 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700697 expandBufAdd4BE(reply, monitor_info.entry_count_);
698 expandBufAdd4BE(reply, monitor_info.waiters_.size());
699 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
700 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800701 }
702 return JDWP::ERR_NONE;
703}
704
Elliott Hughes734b8c62013-01-11 15:32:45 -0800705JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
706 std::vector<JDWP::ObjectId>& monitors,
707 std::vector<uint32_t>& stack_depths)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800708 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
709 ScopedObjectAccessUnchecked soa(Thread::Current());
710 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
711 Thread* thread;
712 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
713 if (error != JDWP::ERR_NONE) {
714 return error;
715 }
716 if (!IsSuspendedForDebugger(soa, thread)) {
717 return JDWP::ERR_THREAD_NOT_SUSPENDED;
718 }
719
720 struct OwnedMonitorVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800721 OwnedMonitorVisitor(Thread* thread, Context* context)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800722 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -0800723 : StackVisitor(thread, context), current_stack_depth(0) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800724
725 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
726 // annotalysis.
727 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
728 if (!GetMethod()->IsRuntimeMethod()) {
729 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800730 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800731 }
732 return true;
733 }
734
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800735 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800736 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800737 visitor->monitors.push_back(owned_monitor);
738 visitor->stack_depths.push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800739 }
740
Elliott Hughes734b8c62013-01-11 15:32:45 -0800741 size_t current_stack_depth;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800742 std::vector<mirror::Object*> monitors;
Elliott Hughes734b8c62013-01-11 15:32:45 -0800743 std::vector<uint32_t> stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800744 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800745 UniquePtr<Context> context(Context::Create());
746 OwnedMonitorVisitor visitor(thread, context.get());
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800747 visitor.WalkStack();
748
749 for (size_t i = 0; i < visitor.monitors.size(); ++i) {
750 monitors.push_back(gRegistry->Add(visitor.monitors[i]));
Elliott Hughes734b8c62013-01-11 15:32:45 -0800751 stack_depths.push_back(visitor.stack_depths[i]);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800752 }
753
754 return JDWP::ERR_NONE;
755}
756
Elliott Hughesf9501702013-01-11 11:22:27 -0800757JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id, JDWP::ObjectId& contended_monitor)
758 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
759 ScopedObjectAccessUnchecked soa(Thread::Current());
760 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
761 Thread* thread;
762 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
763 if (error != JDWP::ERR_NONE) {
764 return error;
765 }
766 if (!IsSuspendedForDebugger(soa, thread)) {
767 return JDWP::ERR_THREAD_NOT_SUSPENDED;
768 }
769
770 contended_monitor = gRegistry->Add(Monitor::GetContendedMonitor(thread));
771
772 return JDWP::ERR_NONE;
773}
774
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800775JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
776 std::vector<uint64_t>& counts)
777 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800778 std::vector<mirror::Class*> classes;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800779 counts.clear();
780 for (size_t i = 0; i < class_ids.size(); ++i) {
781 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800782 mirror::Class* c = DecodeClass(class_ids[i], status);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800783 if (c == NULL) {
784 return status;
785 }
786 classes.push_back(c);
787 counts.push_back(0);
788 }
789
790 Runtime::Current()->GetHeap()->CountInstances(classes, false, &counts[0]);
791 return JDWP::ERR_NONE;
792}
793
Elliott Hughes3b78c942013-01-15 17:35:41 -0800794JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::ObjectId>& instances)
795 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
796 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800797 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800798 if (c == NULL) {
799 return status;
800 }
801
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800802 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800803 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
804 for (size_t i = 0; i < raw_instances.size(); ++i) {
805 instances.push_back(gRegistry->Add(raw_instances[i]));
806 }
807 return JDWP::ERR_NONE;
808}
809
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800810JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
811 std::vector<JDWP::ObjectId>& referring_objects)
812 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800813 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800814 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800815 return JDWP::ERR_INVALID_OBJECT;
816 }
817
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800818 std::vector<mirror::Object*> raw_instances;
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800819 Runtime::Current()->GetHeap()->GetReferringObjects(o, max_count, raw_instances);
820 for (size_t i = 0; i < raw_instances.size(); ++i) {
821 referring_objects.push_back(gRegistry->Add(raw_instances[i]));
822 }
823 return JDWP::ERR_NONE;
824}
825
Elliott Hughes64f574f2013-02-20 14:57:12 -0800826JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id)
827 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100828 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
829 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
830 return JDWP::ERR_INVALID_OBJECT;
831 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800832 gRegistry->DisableCollection(object_id);
833 return JDWP::ERR_NONE;
834}
835
836JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id)
837 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100838 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
839 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
840 // also ignores these cases and never return an error. However it's not obvious why this command
841 // should behave differently from DisableCollection and IsCollected commands. So let's be more
842 // strict and return an error if this happens.
843 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
844 return JDWP::ERR_INVALID_OBJECT;
845 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800846 gRegistry->EnableCollection(object_id);
847 return JDWP::ERR_NONE;
848}
849
850JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool& is_collected)
851 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100852 if (object_id == 0) {
853 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +0100854 return JDWP::ERR_INVALID_OBJECT;
855 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100856 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
857 // the RI seems to ignore this and assume object has been collected.
858 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
859 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
860 is_collected = true;
861 } else {
862 is_collected = gRegistry->IsCollected(object_id);
863 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800864 return JDWP::ERR_NONE;
865}
866
867void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
868 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
869 gRegistry->DisposeObject(object_id, reference_count);
870}
871
Elliott Hughes88d63092013-01-09 09:55:54 -0800872JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800873 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800874 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800875 if (c == NULL) {
876 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800877 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800878
879 expandBufAdd1(pReply, c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS);
Elliott Hughes88d63092013-01-09 09:55:54 -0800880 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800881 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700882}
883
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800884void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800885 // Get the complete list of reference classes (i.e. all classes except
886 // the primitive types).
887 // Returns a newly-allocated buffer full of RefTypeId values.
888 struct ClassListCreator {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800889 explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800890 }
891
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800892 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800893 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
894 }
895
Elliott Hughes64f574f2013-02-20 14:57:12 -0800896 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
897 // annotalysis.
898 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -0800899 if (!c->IsPrimitive()) {
Elliott Hughes64f574f2013-02-20 14:57:12 -0800900 classes.push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -0800901 }
902 return true;
903 }
904
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800905 std::vector<JDWP::RefTypeId>& classes;
Elliott Hughesa2155262011-11-16 16:26:58 -0800906 };
907
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800908 ClassListCreator clc(classes);
Elliott Hughesa2155262011-11-16 16:26:58 -0800909 Runtime::Current()->GetClassLinker()->VisitClasses(ClassListCreator::Visit, &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700910}
911
Elliott Hughes88d63092013-01-09 09:55:54 -0800912JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, uint32_t* pStatus, std::string* pDescriptor) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800913 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800914 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800915 if (c == NULL) {
916 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800917 }
918
Elliott Hughesa2155262011-11-16 16:26:58 -0800919 if (c->IsArrayClass()) {
920 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
921 *pTypeTag = JDWP::TT_ARRAY;
922 } else {
923 if (c->IsErroneous()) {
924 *pStatus = JDWP::CS_ERROR;
925 } else {
926 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
927 }
928 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
929 }
930
931 if (pDescriptor != NULL) {
Ian Rogersdfb325e2013-10-30 01:00:44 -0700932 *pDescriptor = ClassHelper(c).GetDescriptor();
Elliott Hughesa2155262011-11-16 16:26:58 -0800933 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800934 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700935}
936
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800937void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800938 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800939 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
940 ids.clear();
941 for (size_t i = 0; i < classes.size(); ++i) {
942 ids.push_back(gRegistry->Add(classes[i]));
943 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700944}
945
Elliott Hughes64f574f2013-02-20 14:57:12 -0800946JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
947 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800948 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800949 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800950 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -0800951 }
Elliott Hughes2435a572012-02-17 16:07:41 -0800952
953 JDWP::JdwpTypeTag type_tag;
954 if (o->GetClass()->IsArrayClass()) {
955 type_tag = JDWP::TT_ARRAY;
956 } else if (o->GetClass()->IsInterface()) {
957 type_tag = JDWP::TT_INTERFACE;
958 } else {
959 type_tag = JDWP::TT_CLASS;
960 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800961 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -0800962
963 expandBufAdd1(pReply, type_tag);
964 expandBufAddRefTypeId(pReply, type_id);
965
966 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700967}
968
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700969JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800970 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800971 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800972 if (c == NULL) {
973 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800974 }
Ian Rogersdfb325e2013-10-30 01:00:44 -0700975 *signature = ClassHelper(c).GetDescriptor();
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800976 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700977}
978
Elliott Hughes88d63092013-01-09 09:55:54 -0800979JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string& result) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800980 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800981 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800982 if (c == NULL) {
983 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800984 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800985 result = ClassHelper(c).GetSourceFile();
986 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700987}
988
Elliott Hughes88d63092013-01-09 09:55:54 -0800989JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800990 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800991 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes546b9862012-06-20 16:06:13 -0700992 return JDWP::ERR_INVALID_OBJECT;
993 }
994 tag = TagFromObject(o);
995 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700996}
997
Elliott Hughesaed4be92011-12-02 16:16:23 -0800998size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -0800999 switch (tag) {
1000 case JDWP::JT_VOID:
1001 return 0;
1002 case JDWP::JT_BYTE:
1003 case JDWP::JT_BOOLEAN:
1004 return 1;
1005 case JDWP::JT_CHAR:
1006 case JDWP::JT_SHORT:
1007 return 2;
1008 case JDWP::JT_FLOAT:
1009 case JDWP::JT_INT:
1010 return 4;
1011 case JDWP::JT_ARRAY:
1012 case JDWP::JT_OBJECT:
1013 case JDWP::JT_STRING:
1014 case JDWP::JT_THREAD:
1015 case JDWP::JT_THREAD_GROUP:
1016 case JDWP::JT_CLASS_LOADER:
1017 case JDWP::JT_CLASS_OBJECT:
1018 return sizeof(JDWP::ObjectId);
1019 case JDWP::JT_DOUBLE:
1020 case JDWP::JT_LONG:
1021 return 8;
1022 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001023 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001024 return -1;
1025 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001026}
1027
Elliott Hughes88d63092013-01-09 09:55:54 -08001028JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int& length) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001029 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001030 mirror::Array* a = DecodeArray(array_id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001031 if (a == NULL) {
1032 return status;
Elliott Hughes24437992011-11-30 14:49:33 -08001033 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001034 length = a->GetLength();
1035 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001036}
1037
Elliott Hughes88d63092013-01-09 09:55:54 -08001038JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001039 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001040 mirror::Array* a = DecodeArray(array_id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001041 if (a == NULL) {
1042 return status;
1043 }
Elliott Hughes24437992011-11-30 14:49:33 -08001044
1045 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1046 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001047 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001048 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001049 std::string descriptor(ClassHelper(a->GetClass()).GetDescriptor());
Elliott Hughes24437992011-11-30 14:49:33 -08001050 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
1051
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001052 expandBufAdd1(pReply, tag);
1053 expandBufAdd4BE(pReply, count);
1054
Elliott Hughes24437992011-11-30 14:49:33 -08001055 if (IsPrimitiveTag(tag)) {
1056 size_t width = GetTagWidth(tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001057 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1058 if (width == 8) {
Ian Rogersa15e67d2012-02-28 13:51:55 -08001059 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t)));
Elliott Hughes24437992011-11-30 14:49:33 -08001060 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1061 } else if (width == 4) {
Ian Rogersa15e67d2012-02-28 13:51:55 -08001062 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t)));
Elliott Hughes24437992011-11-30 14:49:33 -08001063 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1064 } else if (width == 2) {
Ian Rogersa15e67d2012-02-28 13:51:55 -08001065 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t)));
Elliott Hughes24437992011-11-30 14:49:33 -08001066 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1067 } else {
Ian Rogersa15e67d2012-02-28 13:51:55 -08001068 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t)));
Elliott Hughes24437992011-11-30 14:49:33 -08001069 memcpy(dst, &src[offset * width], count * width);
1070 }
1071 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001072 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001073 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001074 mirror::Object* element = oa->Get(offset + i);
Elliott Hughes24437992011-11-30 14:49:33 -08001075 JDWP::JdwpTag specific_tag = (element != NULL) ? TagFromObject(element) : tag;
1076 expandBufAdd1(pReply, specific_tag);
1077 expandBufAddObjectId(pReply, gRegistry->Add(element));
1078 }
1079 }
1080
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001081 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001082}
1083
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001084template <typename T> void CopyArrayData(mirror::Array* a, JDWP::Request& src, int offset, int count) {
1085 DCHECK(a->GetClass()->IsPrimitiveArray());
1086
1087 T* dst = &(reinterpret_cast<T*>(a->GetRawData(sizeof(T)))[offset * sizeof(T)]);
1088 for (int i = 0; i < count; ++i) {
1089 *dst++ = src.ReadValue(sizeof(T));
1090 }
1091}
1092
Elliott Hughes88d63092013-01-09 09:55:54 -08001093JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001094 JDWP::Request& request)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001095 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001096 JDWP::JdwpError status;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001097 mirror::Array* dst = DecodeArray(array_id, status);
1098 if (dst == NULL) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001099 return status;
1100 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001101
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001102 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001103 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001104 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001105 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001106 const char* descriptor = ClassHelper(dst->GetClass()).GetDescriptor();
1107 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor + 1);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001108
1109 if (IsPrimitiveTag(tag)) {
1110 size_t width = GetTagWidth(tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001111 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001112 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001113 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001114 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001115 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001116 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001117 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001118 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001119 }
1120 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001121 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001122 for (int i = 0; i < count; ++i) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001123 JDWP::ObjectId id = request.ReadObjectId();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001124 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001125 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001126 return JDWP::ERR_INVALID_OBJECT;
1127 }
1128 oa->Set(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001129 }
1130 }
1131
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001132 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001133}
1134
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001135JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001136 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001137}
1138
Elliott Hughes88d63092013-01-09 09:55:54 -08001139JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001140 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001141 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001142 if (c == NULL) {
1143 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001144 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001145 new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001146 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001147}
1148
Elliott Hughesbf13d362011-12-08 15:51:37 -08001149/*
1150 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1151 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001152JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001153 JDWP::ObjectId& new_array) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001154 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001155 mirror::Class* c = DecodeClass(array_class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001156 if (c == NULL) {
1157 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001158 }
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001159 new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length));
Elliott Hughes436e3722012-02-17 20:01:47 -08001160 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001161}
1162
Elliott Hughes88d63092013-01-09 09:55:54 -08001163bool Dbg::MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001164 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001165 mirror::Class* c1 = DecodeClass(instance_class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001166 CHECK(c1 != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001167 mirror::Class* c2 = DecodeClass(class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001168 CHECK(c2 != NULL);
Sebastien Hertz123756a2013-11-27 15:49:42 +01001169 return c2->IsAssignableFrom(c1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001170}
1171
Brian Carlstromea46f952013-07-30 01:26:50 -07001172static JDWP::FieldId ToFieldId(const mirror::ArtField* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001173 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001174 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001175 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001176}
1177
Brian Carlstromea46f952013-07-30 01:26:50 -07001178static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001179 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001180 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001181 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001182}
1183
Brian Carlstromea46f952013-07-30 01:26:50 -07001184static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001185 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001186 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001187 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001188}
1189
Brian Carlstromea46f952013-07-30 01:26:50 -07001190static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001191 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001192 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001193 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001194}
1195
Brian Carlstromea46f952013-07-30 01:26:50 -07001196static void SetLocation(JDWP::JdwpLocation& location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001197 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001198 if (m == NULL) {
1199 memset(&location, 0, sizeof(location));
1200 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001201 mirror::Class* c = m->GetDeclaringClass();
Elliott Hughes74847412012-06-20 18:10:21 -07001202 location.type_tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1203 location.class_id = gRegistry->Add(c);
1204 location.method_id = ToMethodId(m);
Ian Rogers0399dde2012-06-06 17:09:28 -07001205 location.dex_pc = dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001206 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001207}
1208
Elliott Hughesa96836a2013-01-17 12:27:49 -08001209std::string Dbg::GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001210 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001211 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001212 return MethodHelper(m).GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001213}
1214
Elliott Hughesa96836a2013-01-17 12:27:49 -08001215std::string Dbg::GetFieldName(JDWP::FieldId field_id)
1216 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001217 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughesa96836a2013-01-17 12:27:49 -08001218 return FieldHelper(f).GetName();
1219}
1220
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001221/*
1222 * Augment the access flags for synthetic methods and fields by setting
1223 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1224 * flags not specified by the Java programming language.
1225 */
1226static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1227 accessFlags &= kAccJavaFlagsMask;
1228 if ((accessFlags & kAccSynthetic) != 0) {
1229 accessFlags |= 0xf0000000;
1230 }
1231 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001232}
1233
Elliott Hughesdbb40792011-11-18 17:05:22 -08001234/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001235 * Circularly shifts registers so that arguments come first. Debuggers
1236 * expect slots to begin with arguments, but dex code places them at
1237 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001238 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001239static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1240 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1241 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
1242 uint16_t ins_size = code_item->ins_size_;
1243 uint16_t locals_size = code_item->registers_size_ - ins_size;
1244 if (slot >= locals_size) {
1245 return slot - locals_size;
1246 } else {
1247 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001248 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001249}
1250
Jeff Haob7cefc72013-11-14 14:51:09 -08001251/*
1252 * Circularly shifts registers so that arguments come last. Reverts
1253 * slots to dex style argument placement.
1254 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001255static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001256 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Jeff Haob7cefc72013-11-14 14:51:09 -08001257 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
1258 uint16_t ins_size = code_item->ins_size_;
1259 uint16_t locals_size = code_item->registers_size_ - ins_size;
1260 if (slot < ins_size) {
1261 return slot + locals_size;
1262 } else {
1263 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001264 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001265}
1266
Elliott Hughes88d63092013-01-09 09:55:54 -08001267JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001268 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001269 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001270 if (c == NULL) {
1271 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001272 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001273
1274 size_t instance_field_count = c->NumInstanceFields();
1275 size_t static_field_count = c->NumStaticFields();
1276
1277 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1278
1279 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001280 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001281 FieldHelper fh(f);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001282 expandBufAddFieldId(pReply, ToFieldId(f));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001283 expandBufAddUtf8String(pReply, fh.GetName());
1284 expandBufAddUtf8String(pReply, fh.GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001285 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001286 static const char genericSignature[1] = "";
1287 expandBufAddUtf8String(pReply, genericSignature);
1288 }
1289 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1290 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001291 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001292}
1293
Elliott Hughes88d63092013-01-09 09:55:54 -08001294JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001295 JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001296 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001297 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001298 if (c == NULL) {
1299 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001300 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001301
1302 size_t direct_method_count = c->NumDirectMethods();
1303 size_t virtual_method_count = c->NumVirtualMethods();
1304
1305 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1306
1307 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001308 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001309 MethodHelper mh(m);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001310 expandBufAddMethodId(pReply, ToMethodId(m));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001311 expandBufAddUtf8String(pReply, mh.GetName());
Ian Rogersd91d6d62013-09-25 20:26:14 -07001312 expandBufAddUtf8String(pReply, mh.GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001313 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001314 static const char genericSignature[1] = "";
1315 expandBufAddUtf8String(pReply, genericSignature);
1316 }
1317 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1318 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001319 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001320}
1321
Elliott Hughes88d63092013-01-09 09:55:54 -08001322JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001323 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001324 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001325 if (c == NULL) {
1326 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001327 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001328
1329 ClassHelper kh(c);
Ian Rogersd24e2642012-06-06 21:21:43 -07001330 size_t interface_count = kh.NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001331 expandBufAdd4BE(pReply, interface_count);
1332 for (size_t i = 0; i < interface_count; ++i) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001333 expandBufAddRefTypeId(pReply, gRegistry->AddRefType(kh.GetDirectInterface(i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001334 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001335 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001336}
1337
Elliott Hughes88d63092013-01-09 09:55:54 -08001338void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001339 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001340 struct DebugCallbackContext {
1341 int numItems;
1342 JDWP::ExpandBuf* pReply;
1343
Elliott Hughes2435a572012-02-17 16:07:41 -08001344 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001345 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1346 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001347 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001348 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001349 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001350 }
1351 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001352 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001353 MethodHelper mh(m);
Elliott Hughes03181a82011-11-17 17:22:21 -08001354 uint64_t start, end;
1355 if (m->IsNative()) {
1356 start = -1;
1357 end = -1;
1358 } else {
1359 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001360 // Return the index of the last instruction
1361 end = mh.GetCodeItem()->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001362 }
1363
1364 expandBufAdd8BE(pReply, start);
1365 expandBufAdd8BE(pReply, end);
1366
1367 // Add numLines later
1368 size_t numLinesOffset = expandBufGetLength(pReply);
1369 expandBufAdd4BE(pReply, 0);
1370
1371 DebugCallbackContext context;
1372 context.numItems = 0;
1373 context.pReply = pReply;
1374
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001375 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
1376 DebugCallbackContext::Callback, NULL, &context);
Elliott Hughes03181a82011-11-17 17:22:21 -08001377
1378 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001379}
1380
Elliott Hughes88d63092013-01-09 09:55:54 -08001381void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001382 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001383 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001384 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001385 size_t variable_count;
1386 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001387
Jeff Haob7cefc72013-11-14 14:51:09 -08001388 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress, const char* name, const char* descriptor, const char* signature)
1389 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001390 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1391
Jeff Haob7cefc72013-11-14 14:51:09 -08001392 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, pContext->method));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001393
Jeff Haob7cefc72013-11-14 14:51:09 -08001394 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001395
Elliott Hughesdbb40792011-11-18 17:05:22 -08001396 expandBufAdd8BE(pContext->pReply, startAddress);
1397 expandBufAddUtf8String(pContext->pReply, name);
1398 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001399 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001400 expandBufAddUtf8String(pContext->pReply, signature);
1401 }
1402 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1403 expandBufAdd4BE(pContext->pReply, slot);
1404
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001405 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001406 }
1407 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001408 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001409 MethodHelper mh(m);
1410 const DexFile::CodeItem* code_item = mh.GetCodeItem();
Elliott Hughesdbb40792011-11-18 17:05:22 -08001411
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001412 // arg_count considers doubles and longs to take 2 units.
1413 // variable_count considers everything to take 1 unit.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001414 std::string shorty(mh.GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001415 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001416
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001417 // We don't know the total number of variables yet, so leave a blank and update it later.
1418 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001419 expandBufAdd4BE(pReply, 0);
1420
1421 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001422 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001423 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001424 context.variable_count = 0;
1425 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001426
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001427 mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL,
1428 DebugCallbackContext::Callback, &context);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001429
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001430 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001431}
1432
Jeff Hao579b0242013-11-18 13:16:49 -08001433void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1434 JDWP::ExpandBuf* pReply) {
1435 mirror::ArtMethod* m = FromMethodId(method_id);
1436 JDWP::JdwpTag tag = BasicTagFromDescriptor(MethodHelper(m).GetShorty());
1437 OutputJValue(tag, return_value, pReply);
1438}
1439
Elliott Hughes9777ba22013-01-17 09:04:19 -08001440JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
1441 std::vector<uint8_t>& bytecodes)
1442 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001443 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001444 if (m == NULL) {
1445 return JDWP::ERR_INVALID_METHODID;
1446 }
1447 MethodHelper mh(m);
1448 const DexFile::CodeItem* code_item = mh.GetCodeItem();
1449 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1450 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1451 const uint8_t* end = begin + byte_count;
1452 for (const uint8_t* p = begin; p != end; ++p) {
1453 bytecodes.push_back(*p);
1454 }
1455 return JDWP::ERR_NONE;
1456}
1457
Elliott Hughes88d63092013-01-09 09:55:54 -08001458JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
1459 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001460}
1461
Elliott Hughes88d63092013-01-09 09:55:54 -08001462JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
1463 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001464}
1465
Elliott Hughes88d63092013-01-09 09:55:54 -08001466static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1467 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001468 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001469 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001470 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001471 mirror::Class* c = DecodeClass(ref_type_id, status);
Elliott Hughes88d63092013-01-09 09:55:54 -08001472 if (ref_type_id != 0 && c == NULL) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001473 return status;
1474 }
1475
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001476 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001477 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001478 return JDWP::ERR_INVALID_OBJECT;
1479 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001480 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001481
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001482 mirror::Class* receiver_class = c;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001483 if (receiver_class == NULL && o != NULL) {
1484 receiver_class = o->GetClass();
1485 }
1486 // TODO: should we give up now if receiver_class is NULL?
1487 if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
1488 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001489 return JDWP::ERR_INVALID_FIELDID;
1490 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001491
Elliott Hughes0cf74332012-02-23 23:14:00 -08001492 // The RI only enforces the static/non-static mismatch in one direction.
1493 // TODO: should we change the tests and check both?
1494 if (is_static) {
1495 if (!f->IsStatic()) {
1496 return JDWP::ERR_INVALID_FIELDID;
1497 }
1498 } else {
1499 if (f->IsStatic()) {
1500 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001501 }
1502 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001503 if (f->IsStatic()) {
1504 o = f->GetDeclaringClass();
1505 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001506
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001507 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001508 JValue field_value;
1509 if (tag == JDWP::JT_VOID) {
1510 LOG(FATAL) << "Unknown tag: " << tag;
1511 } else if (!IsPrimitiveTag(tag)) {
1512 field_value.SetL(f->GetObject(o));
1513 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1514 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001515 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001516 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001517 }
Jeff Hao579b0242013-11-18 13:16:49 -08001518 Dbg::OutputJValue(tag, &field_value, pReply);
1519
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001520 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001521}
1522
Elliott Hughes88d63092013-01-09 09:55:54 -08001523JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001524 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001525 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001526}
1527
Elliott Hughes88d63092013-01-09 09:55:54 -08001528JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) {
1529 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001530}
1531
Elliott Hughes88d63092013-01-09 09:55:54 -08001532static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001533 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001534 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001535 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001536 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001537 return JDWP::ERR_INVALID_OBJECT;
1538 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001539 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001540
1541 // The RI only enforces the static/non-static mismatch in one direction.
1542 // TODO: should we change the tests and check both?
1543 if (is_static) {
1544 if (!f->IsStatic()) {
1545 return JDWP::ERR_INVALID_FIELDID;
1546 }
1547 } else {
1548 if (f->IsStatic()) {
1549 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001550 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001551 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001552 if (f->IsStatic()) {
1553 o = f->GetDeclaringClass();
1554 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001555
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001556 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001557
1558 if (IsPrimitiveTag(tag)) {
1559 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001560 CHECK_EQ(width, 8);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001561 f->Set64(o, value);
1562 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001563 CHECK_LE(width, 4);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001564 f->Set32(o, value);
1565 }
1566 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001567 mirror::Object* v = gRegistry->Get<mirror::Object*>(value);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001568 if (v == ObjectRegistry::kInvalidObject) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001569 return JDWP::ERR_INVALID_OBJECT;
1570 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001571 if (v != NULL) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001572 mirror::Class* field_type = FieldHelper(f).GetType();
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001573 if (!field_type->IsAssignableFrom(v->GetClass())) {
1574 return JDWP::ERR_INVALID_OBJECT;
1575 }
1576 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001577 f->SetObject(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001578 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001579
1580 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001581}
1582
Elliott Hughes88d63092013-01-09 09:55:54 -08001583JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001584 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001585 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001586}
1587
Elliott Hughes88d63092013-01-09 09:55:54 -08001588JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1589 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001590}
1591
Elliott Hughes88d63092013-01-09 09:55:54 -08001592std::string Dbg::StringToUtf8(JDWP::ObjectId string_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001593 mirror::String* s = gRegistry->Get<mirror::String*>(string_id);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001594 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001595}
1596
Jeff Hao579b0242013-11-18 13:16:49 -08001597void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1598 if (IsPrimitiveTag(tag)) {
1599 expandBufAdd1(pReply, tag);
1600 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1601 expandBufAdd1(pReply, return_value->GetI());
1602 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1603 expandBufAdd2BE(pReply, return_value->GetI());
1604 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1605 expandBufAdd4BE(pReply, return_value->GetI());
1606 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1607 expandBufAdd8BE(pReply, return_value->GetJ());
1608 } else {
1609 CHECK_EQ(tag, JDWP::JT_VOID);
1610 }
1611 } else {
1612 mirror::Object* value = return_value->GetL();
1613 expandBufAdd1(pReply, TagFromObject(value));
1614 expandBufAddObjectId(pReply, gRegistry->Add(value));
1615 }
1616}
1617
Elliott Hughes221229c2013-01-08 18:17:50 -08001618JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string& name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001619 ScopedObjectAccessUnchecked soa(Thread::Current());
1620 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001621 Thread* thread;
1622 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1623 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1624 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001625 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001626
1627 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001628 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Brian Carlstromea46f952013-07-30 01:26:50 -07001629 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001630 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1631 mirror::String* s =
1632 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Elliott Hughes221229c2013-01-08 18:17:50 -08001633 if (s != NULL) {
1634 name = s->ToModifiedUtf8();
1635 }
1636 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001637}
1638
Elliott Hughes221229c2013-01-08 18:17:50 -08001639JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001640 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001641 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001642 if (thread_object == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001643 return JDWP::ERR_INVALID_OBJECT;
1644 }
1645
1646 // Okay, so it's an object, but is it actually a thread?
Ian Rogers50b35e22012-10-04 10:09:15 -07001647 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001648 Thread* thread;
1649 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1650 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1651 // Zombie threads are in the null group.
1652 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
1653 return JDWP::ERR_NONE;
1654 }
1655 if (error != JDWP::ERR_NONE) {
1656 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08001657 }
Elliott Hughes499c5132011-11-17 14:55:11 -08001658
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001659 mirror::Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/Thread;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001660 CHECK(c != NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -07001661 mirror::ArtField* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001662 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001663 mirror::Object* group = f->GetObject(thread_object);
Elliott Hughes499c5132011-11-17 14:55:11 -08001664 CHECK(group != NULL);
Elliott Hughes2435a572012-02-17 16:07:41 -08001665 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1666
1667 expandBufAddObjectId(pReply, thread_group_id);
1668 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001669}
1670
Elliott Hughes88d63092013-01-09 09:55:54 -08001671std::string Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001672 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001673 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughes499c5132011-11-17 14:55:11 -08001674 CHECK(thread_group != NULL);
1675
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001676 mirror::Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/ThreadGroup;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001677 CHECK(c != NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -07001678 mirror::ArtField* f = c->FindInstanceField("name", "Ljava/lang/String;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001679 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001680 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Elliott Hughes499c5132011-11-17 14:55:11 -08001681 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001682}
1683
Elliott Hughes88d63092013-01-09 09:55:54 -08001684JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001685 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughes4e235312011-12-02 11:34:15 -08001686 CHECK(thread_group != NULL);
1687
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001688 mirror::Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/ThreadGroup;");
Elliott Hughes4e235312011-12-02 11:34:15 -08001689 CHECK(c != NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -07001690 mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
Elliott Hughes4e235312011-12-02 11:34:15 -08001691 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001692 mirror::Object* parent = f->GetObject(thread_group);
Elliott Hughes4e235312011-12-02 11:34:15 -08001693 return gRegistry->Add(parent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001694}
1695
1696JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001697 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001698 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001699 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001700 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001701}
1702
1703JDWP::ObjectId Dbg::GetMainThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001704 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001705 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001706 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001707 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001708}
1709
Jeff Hao920af3e2013-08-28 15:46:38 -07001710JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
1711 switch (state) {
1712 case kBlocked:
1713 return JDWP::TS_MONITOR;
1714 case kNative:
1715 case kRunnable:
1716 case kSuspended:
1717 return JDWP::TS_RUNNING;
1718 case kSleeping:
1719 return JDWP::TS_SLEEPING;
1720 case kStarting:
1721 case kTerminated:
1722 return JDWP::TS_ZOMBIE;
1723 case kTimedWaiting:
1724 case kWaitingForDebuggerSend:
1725 case kWaitingForDebuggerSuspension:
1726 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01001727 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07001728 case kWaitingForGcToComplete:
1729 case kWaitingForCheckPointsToRun:
1730 case kWaitingForJniOnLoad:
1731 case kWaitingForSignalCatcherOutput:
1732 case kWaitingInMainDebuggerLoop:
1733 case kWaitingInMainSignalCatcherLoop:
1734 case kWaitingPerformingGc:
1735 case kWaiting:
1736 return JDWP::TS_WAIT;
1737 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
1738 }
1739 LOG(FATAL) << "Unknown thread state: " << state;
1740 return JDWP::TS_ZOMBIE;
1741}
1742
Elliott Hughes221229c2013-01-08 18:17:50 -08001743JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus, JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001744 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08001745
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001746 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
1747
Ian Rogers50b35e22012-10-04 10:09:15 -07001748 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001749 Thread* thread;
1750 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1751 if (error != JDWP::ERR_NONE) {
1752 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1753 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08001754 return JDWP::ERR_NONE;
1755 }
1756 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08001757 }
1758
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001759 if (IsSuspendedForDebugger(soa, thread)) {
1760 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08001761 }
1762
Jeff Hao920af3e2013-08-28 15:46:38 -07001763 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08001764 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001765}
1766
Elliott Hughes221229c2013-01-08 18:17:50 -08001767JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001768 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07001769 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001770 Thread* thread;
1771 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1772 if (error != JDWP::ERR_NONE) {
1773 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08001774 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001775 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001776 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08001777 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001778}
1779
Elliott Hughesf9501702013-01-11 11:22:27 -08001780JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
1781 ScopedObjectAccess soa(Thread::Current());
1782 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1783 Thread* thread;
1784 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1785 if (error != JDWP::ERR_NONE) {
1786 return error;
1787 }
1788 thread->Interrupt();
1789 return JDWP::ERR_NONE;
1790}
1791
Elliott Hughescaf76542012-06-28 16:08:22 -07001792void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) {
Ian Rogers365c1022012-06-22 15:05:28 -07001793 class ThreadListVisitor {
1794 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001795 ThreadListVisitor(const ScopedObjectAccessUnchecked& soa, mirror::Object* desired_thread_group,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001796 std::vector<JDWP::ObjectId>& thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001797 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001798 : soa_(soa), desired_thread_group_(desired_thread_group), thread_ids_(thread_ids) {}
Ian Rogers365c1022012-06-22 15:05:28 -07001799
Elliott Hughesa2155262011-11-16 16:26:58 -08001800 static void Visit(Thread* t, void* arg) {
1801 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
1802 }
1803
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001804 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1805 // annotalysis.
1806 void Visit(Thread* t) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001807 if (t == Dbg::GetDebugThread()) {
1808 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
1809 // query all threads, so it's easier if we just don't tell them about this thread.
1810 return;
1811 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001812 mirror::Object* peer = t->GetPeer();
jeffhao0dfbb7e2012-11-28 15:26:03 -08001813 if (IsInDesiredThreadGroup(peer)) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001814 thread_ids_.push_back(gRegistry->Add(peer));
Elliott Hughesa2155262011-11-16 16:26:58 -08001815 }
1816 }
1817
Ian Rogers365c1022012-06-22 15:05:28 -07001818 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001819 bool IsInDesiredThreadGroup(mirror::Object* peer)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001820 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao0dfbb7e2012-11-28 15:26:03 -08001821 // peer might be NULL if the thread is still starting up.
1822 if (peer == NULL) {
1823 // We can't tell the debugger about this thread yet.
1824 // TODO: if we identified threads to the debugger by their Thread*
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001825 // rather than their peer's mirror::Object*, we could fix this.
jeffhao0dfbb7e2012-11-28 15:26:03 -08001826 // Doing so might help us report ZOMBIE threads too.
1827 return false;
1828 }
jeffhaoc1e04902012-12-13 12:41:10 -08001829 // Do we want threads from all thread groups?
1830 if (desired_thread_group_ == NULL) {
1831 return true;
1832 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001833 mirror::Object* group = soa_.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(peer);
jeffhao0dfbb7e2012-11-28 15:26:03 -08001834 return (group == desired_thread_group_);
1835 }
1836
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07001837 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001838 mirror::Object* const desired_thread_group_;
Elliott Hughescaf76542012-06-28 16:08:22 -07001839 std::vector<JDWP::ObjectId>& thread_ids_;
Elliott Hughesa2155262011-11-16 16:26:58 -08001840 };
1841
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001842 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001843 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001844 ThreadListVisitor tlv(soa, thread_group, thread_ids);
Ian Rogers50b35e22012-10-04 10:09:15 -07001845 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07001846 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
Elliott Hughescaf76542012-06-28 16:08:22 -07001847}
Elliott Hughesa2155262011-11-16 16:26:58 -08001848
Elliott Hughescaf76542012-06-28 16:08:22 -07001849void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001850 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001851 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughescaf76542012-06-28 16:08:22 -07001852
1853 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Brian Carlstromea46f952013-07-30 01:26:50 -07001854 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001855 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Elliott Hughescaf76542012-06-28 16:08:22 -07001856
1857 // Get the array and size out of the ArrayList<ThreadGroup>...
Brian Carlstromea46f952013-07-30 01:26:50 -07001858 mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
1859 mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001860 mirror::ObjectArray<mirror::Object>* groups_array =
1861 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
Elliott Hughescaf76542012-06-28 16:08:22 -07001862 const int32_t size = size_field->GetInt(groups_array_list);
1863
1864 // Copy the first 'size' elements out of the array into the result.
1865 for (int32_t i = 0; i < size; ++i) {
1866 child_thread_group_ids.push_back(gRegistry->Add(groups_array->Get(i)));
Elliott Hughesa2155262011-11-16 16:26:58 -08001867 }
1868}
1869
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001870static int GetStackDepth(Thread* thread)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001871 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07001872 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001873 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogers7a22fa62013-01-23 12:16:16 -08001874 : StackVisitor(thread, NULL), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07001875
Elliott Hughes64f574f2013-02-20 14:57:12 -08001876 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1877 // annotalysis.
1878 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07001879 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08001880 ++depth;
1881 }
Elliott Hughes530fa002012-03-12 11:44:49 -07001882 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001883 }
1884 size_t depth;
1885 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07001886
Ian Rogers7a22fa62013-01-23 12:16:16 -08001887 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07001888 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001889 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001890}
1891
Elliott Hughes221229c2013-01-08 18:17:50 -08001892JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001893 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08001894 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001895 Thread* thread;
1896 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1897 if (error != JDWP::ERR_NONE) {
1898 return error;
1899 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08001900 if (!IsSuspendedForDebugger(soa, thread)) {
1901 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1902 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001903 result = GetStackDepth(thread);
1904 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08001905}
1906
Ian Rogers306057f2012-11-26 12:45:53 -08001907JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
1908 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001909 class GetFrameVisitor : public StackVisitor {
1910 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08001911 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001912 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08001913 : StackVisitor(thread, NULL), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001914 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
1915 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08001916 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001917
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001918 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1919 // annotalysis.
1920 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07001921 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001922 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08001923 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001924 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07001925 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001926 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001927 if (depth_ >= start_frame_) {
1928 JDWP::FrameId frame_id(GetFrameId());
1929 JDWP::JdwpLocation location;
1930 SetLocation(location, GetMethod(), GetDexPc());
Elliott Hughes7baf96f2012-06-22 16:33:50 -07001931 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3lld ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001932 expandBufAdd8BE(buf_, frame_id);
1933 expandBufAddLocation(buf_, location);
1934 }
1935 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07001936 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08001937 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001938
1939 private:
1940 size_t depth_;
1941 const size_t start_frame_;
1942 const size_t frame_count_;
1943 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08001944 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001945
1946 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08001947 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001948 Thread* thread;
1949 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1950 if (error != JDWP::ERR_NONE) {
1951 return error;
1952 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08001953 if (!IsSuspendedForDebugger(soa, thread)) {
1954 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1955 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08001956 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07001957 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001958 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001959}
1960
1961JDWP::ObjectId Dbg::GetThreadSelfId() {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07001962 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08001963 return gRegistry->Add(soa.Self()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001964}
1965
Elliott Hughes475fc232011-10-25 15:00:35 -07001966void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001967 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001968}
1969
1970void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07001971 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001972}
1973
Elliott Hughes221229c2013-01-08 18:17:50 -08001974JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001975 ScopedLocalRef<jobject> peer(Thread::Current()->GetJniEnv(), NULL);
1976 {
1977 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001978 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
Elliott Hughes4e235312011-12-02 11:34:15 -08001979 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001980 if (peer.get() == NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001981 return JDWP::ERR_THREAD_NOT_ALIVE;
1982 }
1983 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08001984 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07001985 Thread* thread = ThreadList::SuspendThreadByPeer(peer.get(), request_suspension, true,
1986 &timed_out);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001987 if (thread != NULL) {
1988 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08001989 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001990 return JDWP::ERR_INTERNAL;
1991 } else {
1992 return JDWP::ERR_THREAD_NOT_ALIVE;
1993 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001994}
1995
Elliott Hughes221229c2013-01-08 18:17:50 -08001996void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001997 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001998 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
jeffhaoa77f0f62012-12-05 17:19:31 -08001999 Thread* thread;
2000 {
2001 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2002 thread = Thread::FromManagedThread(soa, peer);
2003 }
Elliott Hughes4e235312011-12-02 11:34:15 -08002004 if (thread == NULL) {
2005 LOG(WARNING) << "No such thread for resume: " << peer;
2006 return;
2007 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002008 bool needs_resume;
2009 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002010 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002011 needs_resume = thread->GetSuspendCount() > 0;
2012 }
2013 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002014 Runtime::Current()->GetThreadList()->Resume(thread, true);
2015 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002016}
2017
2018void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002019 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002020}
2021
Ian Rogers0399dde2012-06-06 17:09:28 -07002022struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002023 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002024 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002025 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002026
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002027 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2028 // annotalysis.
2029 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002030 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002031 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002032 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002033 this_object = GetThisObject();
2034 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002035 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002036 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002037
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002038 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002039 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002040};
2041
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002042JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2043 JDWP::ObjectId* result) {
2044 ScopedObjectAccessUnchecked soa(Thread::Current());
2045 Thread* thread;
2046 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002047 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002048 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2049 if (error != JDWP::ERR_NONE) {
2050 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002051 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002052 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002053 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2054 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002055 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002056 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002057 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002058 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002059 *result = gRegistry->Add(visitor.this_object);
2060 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002061}
2062
Elliott Hughes88d63092013-01-09 09:55:54 -08002063void Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002064 uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002065 struct GetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002066 GetLocalVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id, int slot,
2067 JDWP::JdwpTag tag, uint8_t* buf, size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002068 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002069 : StackVisitor(thread, context), frame_id_(frame_id), slot_(slot), tag_(tag),
Ian Rogersca190662012-06-26 15:45:57 -07002070 buf_(buf), width_(width) {}
2071
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002072 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2073 // annotalysis.
2074 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002075 if (GetFrameId() != frame_id_) {
2076 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08002077 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002078 // TODO: check that the tag is compatible with the actual type of the slot!
Brian Carlstromea46f952013-07-30 01:26:50 -07002079 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002080 uint16_t reg = DemangleSlot(slot_, m);
Elliott Hughesdbb40792011-11-18 17:05:22 -08002081
Ian Rogers0399dde2012-06-06 17:09:28 -07002082 switch (tag_) {
2083 case JDWP::JT_BOOLEAN:
2084 {
2085 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002086 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002087 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2088 JDWP::Set1(buf_+1, intVal != 0);
2089 }
2090 break;
2091 case JDWP::JT_BYTE:
2092 {
2093 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002094 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002095 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2096 JDWP::Set1(buf_+1, intVal);
2097 }
2098 break;
2099 case JDWP::JT_SHORT:
2100 case JDWP::JT_CHAR:
2101 {
2102 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002103 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002104 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2105 JDWP::Set2BE(buf_+1, intVal);
2106 }
2107 break;
2108 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002109 {
2110 CHECK_EQ(width_, 4U);
2111 uint32_t intVal = GetVReg(m, reg, kIntVReg);
2112 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2113 JDWP::Set4BE(buf_+1, intVal);
2114 }
2115 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002116 case JDWP::JT_FLOAT:
2117 {
2118 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002119 uint32_t intVal = GetVReg(m, reg, kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002120 VLOG(jdwp) << "get int/float local " << reg << " = " << intVal;
2121 JDWP::Set4BE(buf_+1, intVal);
2122 }
2123 break;
2124 case JDWP::JT_ARRAY:
2125 {
2126 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002127 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002128 VLOG(jdwp) << "get array local " << reg << " = " << o;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002129 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002130 LOG(FATAL) << "Register " << reg << " expected to hold array: " << o;
2131 }
2132 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2133 }
2134 break;
2135 case JDWP::JT_CLASS_LOADER:
2136 case JDWP::JT_CLASS_OBJECT:
2137 case JDWP::JT_OBJECT:
2138 case JDWP::JT_STRING:
2139 case JDWP::JT_THREAD:
2140 case JDWP::JT_THREAD_GROUP:
2141 {
2142 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002143 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002144 VLOG(jdwp) << "get object local " << reg << " = " << o;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002145 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002146 LOG(FATAL) << "Register " << reg << " expected to hold object: " << o;
2147 }
2148 tag_ = TagFromObject(o);
2149 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2150 }
2151 break;
2152 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002153 {
2154 CHECK_EQ(width_, 8U);
2155 uint32_t lo = GetVReg(m, reg, kDoubleLoVReg);
2156 uint64_t hi = GetVReg(m, reg + 1, kDoubleHiVReg);
2157 uint64_t longVal = (hi << 32) | lo;
2158 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2159 JDWP::Set8BE(buf_+1, longVal);
2160 }
2161 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002162 case JDWP::JT_LONG:
2163 {
2164 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002165 uint32_t lo = GetVReg(m, reg, kLongLoVReg);
2166 uint64_t hi = GetVReg(m, reg + 1, kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002167 uint64_t longVal = (hi << 32) | lo;
2168 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2169 JDWP::Set8BE(buf_+1, longVal);
2170 }
2171 break;
2172 default:
2173 LOG(FATAL) << "Unknown tag " << tag_;
2174 break;
2175 }
2176
2177 // Prepend tag, which may have been updated.
2178 JDWP::Set1(buf_, tag_);
2179 return false;
2180 }
2181
2182 const JDWP::FrameId frame_id_;
2183 const int slot_;
2184 JDWP::JdwpTag tag_;
2185 uint8_t* const buf_;
2186 const size_t width_;
2187 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002188
2189 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002190 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002191 Thread* thread;
2192 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2193 if (error != JDWP::ERR_NONE) {
2194 return;
2195 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002196 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002197 GetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, buf, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002198 visitor.WalkStack();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002199}
2200
Elliott Hughes88d63092013-01-09 09:55:54 -08002201void Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag,
Ian Rogers0399dde2012-06-06 17:09:28 -07002202 uint64_t value, size_t width) {
2203 struct SetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002204 SetLocalVisitor(Thread* thread, Context* context,
Ian Rogers0399dde2012-06-06 17:09:28 -07002205 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
Ian Rogersca190662012-06-26 15:45:57 -07002206 size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002207 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002208 : StackVisitor(thread, context),
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002209 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width) {}
Ian Rogersca190662012-06-26 15:45:57 -07002210
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002211 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2212 // annotalysis.
2213 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002214 if (GetFrameId() != frame_id_) {
2215 return true; // Not our frame, carry on.
2216 }
2217 // TODO: check that the tag is compatible with the actual type of the slot!
Brian Carlstromea46f952013-07-30 01:26:50 -07002218 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002219 uint16_t reg = DemangleSlot(slot_, m);
2220
2221 switch (tag_) {
2222 case JDWP::JT_BOOLEAN:
2223 case JDWP::JT_BYTE:
2224 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002225 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002226 break;
2227 case JDWP::JT_SHORT:
2228 case JDWP::JT_CHAR:
2229 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002230 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002231 break;
2232 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002233 CHECK_EQ(width_, 4U);
2234 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
2235 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002236 case JDWP::JT_FLOAT:
2237 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002238 SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002239 break;
2240 case JDWP::JT_ARRAY:
2241 case JDWP::JT_OBJECT:
2242 case JDWP::JT_STRING:
2243 {
2244 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002245 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_));
Elliott Hughes64f574f2013-02-20 14:57:12 -08002246 if (o == ObjectRegistry::kInvalidObject) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002247 UNIMPLEMENTED(FATAL) << "return an error code when given an invalid object to store";
2248 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002249 SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), kReferenceVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002250 }
2251 break;
2252 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002253 CHECK_EQ(width_, 8U);
2254 SetVReg(m, reg, static_cast<uint32_t>(value_), kDoubleLoVReg);
2255 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kDoubleHiVReg);
2256 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002257 case JDWP::JT_LONG:
2258 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002259 SetVReg(m, reg, static_cast<uint32_t>(value_), kLongLoVReg);
2260 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002261 break;
2262 default:
2263 LOG(FATAL) << "Unknown tag " << tag_;
2264 break;
2265 }
2266 return false;
2267 }
2268
2269 const JDWP::FrameId frame_id_;
2270 const int slot_;
2271 const JDWP::JdwpTag tag_;
2272 const uint64_t value_;
2273 const size_t width_;
2274 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002275
2276 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002277 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002278 Thread* thread;
2279 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2280 if (error != JDWP::ERR_NONE) {
2281 return;
2282 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002283 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002284 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002285 visitor.WalkStack();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002286}
2287
Jeff Hao579b0242013-11-18 13:16:49 -08002288void Dbg::PostLocationEvent(const mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
2289 int event_flags, const JValue* return_value) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002290 mirror::Class* c = m->GetDeclaringClass();
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002291
2292 JDWP::JdwpLocation location;
Elliott Hughes74847412012-06-20 18:10:21 -07002293 location.type_tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
Elliott Hughes64f574f2013-02-20 14:57:12 -08002294 location.class_id = gRegistry->AddRefType(c);
Elliott Hughes74847412012-06-20 18:10:21 -07002295 location.method_id = ToMethodId(m);
Elliott Hughes972a47b2012-02-21 18:16:06 -08002296 location.dex_pc = m->IsNative() ? -1 : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002297
Elliott Hughes64f574f2013-02-20 14:57:12 -08002298 // If 'this_object' isn't already in the registry, we know that we're not looking for it,
2299 // so there's no point adding it to the registry and burning through ids.
2300 JDWP::ObjectId this_id = 0;
2301 if (gRegistry->Contains(this_object)) {
2302 this_id = gRegistry->Add(this_object);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002303 }
Jeff Hao579b0242013-11-18 13:16:49 -08002304 gJdwpState->PostLocationEvent(&location, this_id, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002305}
2306
Ian Rogers62d6c772013-02-27 08:32:07 -08002307void Dbg::PostException(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002308 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002309 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002310 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002311 return;
2312 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002313
Ian Rogers62d6c772013-02-27 08:32:07 -08002314 JDWP::JdwpLocation jdwp_throw_location;
2315 SetLocation(jdwp_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002316 JDWP::JdwpLocation catch_location;
Elliott Hughescaf76542012-06-28 16:08:22 -07002317 SetLocation(catch_location, catch_method, catch_dex_pc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002318
2319 // We need 'this' for InstanceOnly filters.
Ian Rogers62d6c772013-02-27 08:32:07 -08002320 JDWP::ObjectId this_id = gRegistry->Add(throw_location.GetThis());
Elliott Hughes64f574f2013-02-20 14:57:12 -08002321 JDWP::ObjectId exception_id = gRegistry->Add(exception_object);
2322 JDWP::RefTypeId exception_class_id = gRegistry->AddRefType(exception_object->GetClass());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002323
Ian Rogers62d6c772013-02-27 08:32:07 -08002324 gJdwpState->PostException(&jdwp_throw_location, exception_id, exception_class_id, &catch_location,
2325 this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002326}
2327
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002328void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002329 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002330 return;
2331 }
2332
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002333 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002334 // debuggers seem to like that. There might be some advantage to honesty,
2335 // since the class may not yet be verified.
2336 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
2337 JDWP::JdwpTypeTag tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002338 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c),
Ian Rogersdfb325e2013-10-30 01:00:44 -07002339 ClassHelper(c).GetDescriptor(), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002340}
2341
Ian Rogers62d6c772013-02-27 08:32:07 -08002342void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Brian Carlstromea46f952013-07-30 01:26:50 -07002343 const mirror::ArtMethod* m, uint32_t dex_pc) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002344 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002345 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002346 }
2347
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002348 int event_flags = 0;
2349
Elliott Hughes86964332012-02-15 19:37:42 -08002350 if (IsBreakpoint(m, dex_pc)) {
2351 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002352 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002353
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002354 // If the debugger is single-stepping one of our threads, check to
2355 // see if we're that thread and we've reached a step point.
2356 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2357 DCHECK(single_step_control != nullptr);
2358 if (single_step_control->is_active) {
2359 CHECK(!m->IsNative());
2360 if (single_step_control->step_depth == JDWP::SD_INTO) {
2361 // Step into method calls. We break when the line number
2362 // or method pointer changes. If we're in SS_MIN mode, we
2363 // always stop.
2364 if (single_step_control->method != m) {
2365 event_flags |= kSingleStep;
2366 VLOG(jdwp) << "SS new method";
2367 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2368 event_flags |= kSingleStep;
2369 VLOG(jdwp) << "SS new instruction";
2370 } else if (single_step_control->dex_pcs.find(dex_pc) == single_step_control->dex_pcs.end()) {
2371 event_flags |= kSingleStep;
2372 VLOG(jdwp) << "SS new line";
2373 }
2374 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2375 // Step over method calls. We break when the line number is
2376 // different and the frame depth is <= the original frame
2377 // depth. (We can't just compare on the method, because we
2378 // might get unrolled past it by an exception, and it's tricky
2379 // to identify recursion.)
2380
2381 int stack_depth = GetStackDepth(thread);
2382
2383 if (stack_depth < single_step_control->stack_depth) {
2384 // Popped up one or more frames, always trigger.
2385 event_flags |= kSingleStep;
2386 VLOG(jdwp) << "SS method pop";
2387 } else if (stack_depth == single_step_control->stack_depth) {
2388 // Same depth, see if we moved.
2389 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002390 event_flags |= kSingleStep;
2391 VLOG(jdwp) << "SS new instruction";
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002392 } else if (single_step_control->dex_pcs.find(dex_pc) == single_step_control->dex_pcs.end()) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002393 event_flags |= kSingleStep;
2394 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002395 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002396 }
2397 } else {
2398 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2399 // Return from the current method. We break when the frame
2400 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002401
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002402 // This differs from the "method exit" break in that it stops
2403 // with the PC at the next instruction in the returned-to
2404 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002405
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002406 int stack_depth = GetStackDepth(thread);
2407 if (stack_depth < single_step_control->stack_depth) {
2408 event_flags |= kSingleStep;
2409 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002410 }
2411 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002412 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002413
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002414 // If there's something interesting going on, see if it matches one
2415 // of the debugger filters.
2416 if (event_flags != 0) {
Jeff Hao579b0242013-11-18 13:16:49 -08002417 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, nullptr);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002418 }
2419}
2420
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002421static void ProcessDeoptimizationRequests()
2422 LOCKS_EXCLUDED(Locks::deoptimization_lock_)
2423 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_) {
2424 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
2425 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2426 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
2427 for (const MethodInstrumentationRequest& request : gDeoptimizationRequests) {
2428 mirror::ArtMethod* const method = request.method;
2429 if (method != nullptr) {
2430 // Selective deoptimization.
2431 if (request.deoptimize) {
2432 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(method);
2433 instrumentation->Deoptimize(method);
2434 } else {
2435 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(method);
2436 instrumentation->Undeoptimize(method);
2437 }
2438 } else {
2439 // Full deoptimization.
2440 if (request.deoptimize) {
2441 VLOG(jdwp) << "Deoptimize the world";
2442 instrumentation->DeoptimizeEverything();
2443 } else {
2444 VLOG(jdwp) << "Undeoptimize the world";
2445 instrumentation->UndeoptimizeEverything();
2446 }
2447 }
2448 }
2449 gDeoptimizationRequests.clear();
2450}
2451
2452// Process deoptimization requests after suspending all mutator threads.
2453void Dbg::ManageDeoptimization() {
2454 Thread* const self = Thread::Current();
2455 {
2456 // Avoid suspend/resume if there is no pending request.
2457 MutexLock mu(self, *Locks::deoptimization_lock_);
2458 if (gDeoptimizationRequests.empty()) {
2459 return;
2460 }
2461 }
2462 CHECK_EQ(self->GetState(), kRunnable);
2463 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
2464 // We need to suspend mutator threads first.
2465 Runtime* const runtime = Runtime::Current();
2466 runtime->GetThreadList()->SuspendAll();
2467 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
2468 ProcessDeoptimizationRequests();
2469 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
2470 runtime->GetThreadList()->ResumeAll();
2471 self->TransitionFromSuspendedToRunnable();
2472}
2473
2474// Enable full deoptimization.
2475void Dbg::EnableFullDeoptimization() {
2476 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2477 VLOG(jdwp) << "Request full deoptimization";
2478 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(true, nullptr));
2479}
2480
2481// Disable full deoptimization.
2482void Dbg::DisableFullDeoptimization() {
2483 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2484 VLOG(jdwp) << "Request full undeoptimization";
2485 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(false, nullptr));
2486}
2487
Elliott Hughes86964332012-02-15 19:37:42 -08002488void Dbg::WatchLocation(const JDWP::JdwpLocation* location) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002489 bool need_deoptimization = true;
Brian Carlstromea46f952013-07-30 01:26:50 -07002490 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002491 {
2492 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
2493
2494 // If there is no breakpoint on this method yet, we need to deoptimize it.
2495 for (const Breakpoint& breakpoint : gBreakpoints) {
2496 if (breakpoint.method == m) {
2497 // We already set a breakpoint on this method, hence we deoptimized it.
2498 DCHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2499 need_deoptimization = false;
2500 break;
2501 }
2502 }
2503
2504 gBreakpoints.push_back(Breakpoint(m, location->dex_pc));
2505 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " << gBreakpoints[gBreakpoints.size() - 1];
2506 }
2507
2508 if (need_deoptimization) {
2509 // Request its deoptimization. This will be done after updating the JDWP event list.
2510 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2511 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(true, m));
2512 VLOG(jdwp) << "Request deoptimization of " << PrettyMethod(m);
2513 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002514}
2515
Elliott Hughes86964332012-02-15 19:37:42 -08002516void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002517 bool can_undeoptimize = true;
Brian Carlstromea46f952013-07-30 01:26:50 -07002518 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002519 DCHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2520 {
2521 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
2522 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
2523 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == location->dex_pc) {
2524 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
2525 gBreakpoints.erase(gBreakpoints.begin() + i);
2526 break;
2527 }
Elliott Hughes86964332012-02-15 19:37:42 -08002528 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002529
2530 // If there is no breakpoint on this method, we can undeoptimize it.
2531 for (const Breakpoint& breakpoint : gBreakpoints) {
2532 if (breakpoint.method == m) {
2533 can_undeoptimize = false;
2534 break;
2535 }
2536 }
2537 }
2538
2539 if (can_undeoptimize) {
2540 // Request its undeoptimization. This will be done after updating the JDWP event list.
2541 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2542 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(false, m));
2543 VLOG(jdwp) << "Request undeoptimization of " << PrettyMethod(m);
Elliott Hughes86964332012-02-15 19:37:42 -08002544 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002545}
2546
Jeff Hao449db332013-04-12 18:30:52 -07002547// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
2548// cause suspension if the thread is the current thread.
2549class ScopedThreadSuspension {
2550 public:
Ian Rogers33e95662013-05-20 20:29:14 -07002551 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
2552 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Jeff Hao449db332013-04-12 18:30:52 -07002553 thread_(NULL),
2554 error_(JDWP::ERR_NONE),
2555 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07002556 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07002557 ScopedObjectAccessUnchecked soa(self);
2558 {
2559 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2560 error_ = DecodeThread(soa, thread_id, thread_);
2561 }
2562 if (error_ == JDWP::ERR_NONE) {
2563 if (thread_ == soa.Self()) {
2564 self_suspend_ = true;
2565 } else {
2566 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
2567 jobject thread_peer = gRegistry->GetJObject(thread_id);
2568 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002569 Thread* suspended_thread = ThreadList::SuspendThreadByPeer(thread_peer, true, true,
2570 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07002571 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
2572 if (suspended_thread == NULL) {
2573 // Thread terminated from under us while suspending.
2574 error_ = JDWP::ERR_INVALID_THREAD;
2575 } else {
2576 CHECK_EQ(suspended_thread, thread_);
2577 other_suspend_ = true;
2578 }
2579 }
2580 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002581 }
Elliott Hughes86964332012-02-15 19:37:42 -08002582
Jeff Hao449db332013-04-12 18:30:52 -07002583 Thread* GetThread() const {
2584 return thread_;
2585 }
2586
2587 JDWP::JdwpError GetError() const {
2588 return error_;
2589 }
2590
2591 ~ScopedThreadSuspension() {
2592 if (other_suspend_) {
2593 Runtime::Current()->GetThreadList()->Resume(thread_, true);
2594 }
2595 }
2596
2597 private:
2598 Thread* thread_;
2599 JDWP::JdwpError error_;
2600 bool self_suspend_;
2601 bool other_suspend_;
2602};
2603
2604JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
2605 JDWP::JdwpStepDepth step_depth) {
2606 Thread* self = Thread::Current();
2607 ScopedThreadSuspension sts(self, thread_id);
2608 if (sts.GetError() != JDWP::ERR_NONE) {
2609 return sts.GetError();
2610 }
2611
Elliott Hughes2435a572012-02-17 16:07:41 -08002612 //
2613 // Work out what Method* we're in, the current line number, and how deep the stack currently
2614 // is for step-out.
2615 //
2616
Ian Rogers0399dde2012-06-06 17:09:28 -07002617 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002618 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
2619 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002620 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002621 : StackVisitor(thread, NULL), single_step_control_(single_step_control),
2622 line_number_(line_number) {
2623 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
2624 single_step_control_->method = NULL;
2625 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08002626 }
Ian Rogersca190662012-06-26 15:45:57 -07002627
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002628 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2629 // annotalysis.
2630 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002631 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002632 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002633 ++single_step_control_->stack_depth;
2634 if (single_step_control_->method == NULL) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002635 const mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002636 single_step_control_->method = m;
2637 *line_number_ = -1;
Elliott Hughes2435a572012-02-17 16:07:41 -08002638 if (dex_cache != NULL) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07002639 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002640 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08002641 }
Elliott Hughes86964332012-02-15 19:37:42 -08002642 }
2643 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002644 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08002645 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002646
2647 SingleStepControl* const single_step_control_;
2648 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08002649 };
Jeff Hao449db332013-04-12 18:30:52 -07002650
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002651 Thread* const thread = sts.GetThread();
2652 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
2653 DCHECK(single_step_control != nullptr);
2654 int32_t line_number = -1;
2655 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07002656 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08002657
Elliott Hughes2435a572012-02-17 16:07:41 -08002658 //
2659 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
2660 //
2661
2662 struct DebugCallbackContext {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002663 explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number)
2664 : single_step_control_(single_step_control), line_number_(line_number),
2665 last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002666 }
2667
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002668 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002669 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002670 if (static_cast<int32_t>(line_number) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002671 if (!context->last_pc_valid) {
2672 // Everything from this address until the next line change is ours.
2673 context->last_pc = address;
2674 context->last_pc_valid = true;
2675 }
2676 // Otherwise, if we're already in a valid range for this line,
2677 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002678 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08002679 // Add everything from the last entry up until here to the set
2680 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002681 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08002682 }
2683 context->last_pc_valid = false;
2684 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002685 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08002686 }
2687
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002688 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08002689 // If the line number was the last in the position table...
2690 if (last_pc_valid) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002691 size_t end = MethodHelper(single_step_control_->method).GetCodeItem()->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08002692 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002693 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08002694 }
2695 }
2696 }
2697
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002698 SingleStepControl* const single_step_control_;
2699 const int32_t line_number_;
Elliott Hughes2435a572012-02-17 16:07:41 -08002700 bool last_pc_valid;
2701 uint32_t last_pc;
2702 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002703 single_step_control->dex_pcs.clear();
2704 const mirror::ArtMethod* m = single_step_control->method;
2705 if (!m->IsNative()) {
2706 DebugCallbackContext context(single_step_control, line_number);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08002707 MethodHelper mh(m);
2708 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
2709 DebugCallbackContext::Callback, NULL, &context);
2710 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002711
2712 //
2713 // Everything else...
2714 //
2715
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002716 single_step_control->step_size = step_size;
2717 single_step_control->step_depth = step_depth;
2718 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08002719
Elliott Hughes2435a572012-02-17 16:07:41 -08002720 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002721 VLOG(jdwp) << "Single-step thread: " << *thread;
2722 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
2723 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
2724 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
2725 VLOG(jdwp) << "Single-step current line: " << line_number;
2726 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08002727 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002728 for (std::set<uint32_t>::iterator it = single_step_control->dex_pcs.begin(); it != single_step_control->dex_pcs.end(); ++it) {
Elliott Hughes229feb72012-02-23 13:33:29 -08002729 VLOG(jdwp) << StringPrintf(" %#x", *it);
Elliott Hughes2435a572012-02-17 16:07:41 -08002730 }
2731 }
2732
2733 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002734}
2735
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002736void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
2737 ScopedObjectAccessUnchecked soa(Thread::Current());
2738 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2739 Thread* thread;
2740 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01002741 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002742 SingleStepControl* single_step_control = thread->GetSingleStepControl();
2743 DCHECK(single_step_control != nullptr);
2744 single_step_control->is_active = false;
2745 single_step_control->dex_pcs.clear();
2746 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002747}
2748
Elliott Hughes45651fd2012-02-21 15:48:20 -08002749static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
2750 switch (tag) {
2751 default:
2752 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
2753
2754 // Primitives.
2755 case JDWP::JT_BYTE: return 'B';
2756 case JDWP::JT_CHAR: return 'C';
2757 case JDWP::JT_FLOAT: return 'F';
2758 case JDWP::JT_DOUBLE: return 'D';
2759 case JDWP::JT_INT: return 'I';
2760 case JDWP::JT_LONG: return 'J';
2761 case JDWP::JT_SHORT: return 'S';
2762 case JDWP::JT_VOID: return 'V';
2763 case JDWP::JT_BOOLEAN: return 'Z';
2764
2765 // Reference types.
2766 case JDWP::JT_ARRAY:
2767 case JDWP::JT_OBJECT:
2768 case JDWP::JT_STRING:
2769 case JDWP::JT_THREAD:
2770 case JDWP::JT_THREAD_GROUP:
2771 case JDWP::JT_CLASS_LOADER:
2772 case JDWP::JT_CLASS_OBJECT:
2773 return 'L';
2774 }
2775}
2776
Elliott Hughes88d63092013-01-09 09:55:54 -08002777JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
2778 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002779 uint32_t arg_count, uint64_t* arg_values,
2780 JDWP::JdwpTag* arg_types, uint32_t options,
2781 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
2782 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08002783 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2784
2785 Thread* targetThread = NULL;
2786 DebugInvokeReq* req = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002787 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002788 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002789 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07002790 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002791 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread);
2792 if (error != JDWP::ERR_NONE) {
2793 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
2794 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002795 }
2796 req = targetThread->GetInvokeReq();
2797 if (!req->ready) {
2798 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
2799 return JDWP::ERR_INVALID_THREAD;
2800 }
2801
2802 /*
2803 * We currently have a bug where we don't successfully resume the
2804 * target thread if the suspend count is too deep. We're expected to
2805 * require one "resume" for each "suspend", but when asked to execute
2806 * a method we have to resume fully and then re-suspend it back to the
2807 * same level. (The easiest way to cause this is to type "suspend"
2808 * multiple times in jdb.)
2809 *
2810 * It's unclear what this means when the event specifies "resume all"
2811 * and some threads are suspended more deeply than others. This is
2812 * a rare problem, so for now we just prevent it from hanging forever
2813 * by rejecting the method invocation request. Without this, we will
2814 * be stuck waiting on a suspended thread.
2815 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002816 int suspend_count;
2817 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002818 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002819 suspend_count = targetThread->GetSuspendCount();
2820 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08002821 if (suspend_count > 1) {
2822 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002823 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08002824 }
2825
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002826 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002827 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08002828 if (receiver == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002829 return JDWP::ERR_INVALID_OBJECT;
2830 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002831
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002832 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08002833 if (thread == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002834 return JDWP::ERR_INVALID_OBJECT;
2835 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002836 // TODO: check that 'thread' is actually a java.lang.Thread!
2837
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002838 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes45651fd2012-02-21 15:48:20 -08002839 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002840 return status;
2841 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002842
Brian Carlstromea46f952013-07-30 01:26:50 -07002843 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes45651fd2012-02-21 15:48:20 -08002844 if (m->IsStatic() != (receiver == NULL)) {
2845 return JDWP::ERR_INVALID_METHODID;
2846 }
2847 if (m->IsStatic()) {
2848 if (m->GetDeclaringClass() != c) {
2849 return JDWP::ERR_INVALID_METHODID;
2850 }
2851 } else {
2852 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
2853 return JDWP::ERR_INVALID_METHODID;
2854 }
2855 }
2856
2857 // Check the argument list matches the method.
2858 MethodHelper mh(m);
2859 if (mh.GetShortyLength() - 1 != arg_count) {
2860 return JDWP::ERR_ILLEGAL_ARGUMENT;
2861 }
2862 const char* shorty = mh.GetShorty();
Elliott Hughes09201632013-04-15 15:50:07 -07002863 const DexFile::TypeList* types = mh.GetParameterTypeList();
Elliott Hughes45651fd2012-02-21 15:48:20 -08002864 for (size_t i = 0; i < arg_count; ++i) {
2865 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
2866 return JDWP::ERR_ILLEGAL_ARGUMENT;
2867 }
Elliott Hughes09201632013-04-15 15:50:07 -07002868
2869 if (shorty[i + 1] == 'L') {
2870 // Did we really get an argument of an appropriate reference type?
2871 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
2872 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i]);
2873 if (argument == ObjectRegistry::kInvalidObject) {
2874 return JDWP::ERR_INVALID_OBJECT;
2875 }
Sebastien Hertz0630ab52013-11-28 18:53:35 +01002876 if (argument != NULL && !argument->InstanceOf(parameter_type)) {
Elliott Hughes09201632013-04-15 15:50:07 -07002877 return JDWP::ERR_ILLEGAL_ARGUMENT;
2878 }
2879
2880 // Turn the on-the-wire ObjectId into a jobject.
2881 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
2882 v.l = gRegistry->GetJObject(arg_values[i]);
2883 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002884 }
2885
Sebastien Hertzd38667a2013-11-25 15:43:54 +01002886 req->receiver = receiver;
2887 req->thread = thread;
2888 req->klass = c;
2889 req->method = m;
2890 req->arg_count = arg_count;
2891 req->arg_values = arg_values;
2892 req->options = options;
2893 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002894 }
2895
2896 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
2897 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
2898 // call, and it's unwise to hold it during WaitForSuspend.
2899
2900 {
2901 /*
2902 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07002903 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08002904 * run out of memory. It's also a good idea to change it before locking
2905 * the invokeReq mutex, although that should never be held for long.
2906 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002907 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002908
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002909 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002910 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01002911 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002912
2913 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002914 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002915 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002916 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002917 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002918 thread_list->Resume(targetThread, true);
2919 }
2920
2921 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01002922 while (req->invoke_needed) {
2923 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002924 }
2925 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002926 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002927
2928 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07002929 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002930 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002931 }
2932
2933 /*
2934 * Suspend the threads. We waited for the target thread to suspend
2935 * itself, so all we need to do is suspend the others.
2936 *
2937 * The suspendAllThreads() call will double-suspend the event thread,
2938 * so we want to resume the target thread once to keep the books straight.
2939 */
2940 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002941 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002942 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002943 thread_list->SuspendAllForDebugger();
2944 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002945 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002946 thread_list->Resume(targetThread, true);
2947 }
2948
2949 // Copy the result.
2950 *pResultTag = req->result_tag;
2951 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002952 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002953 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07002954 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002955 }
2956 *pExceptionId = req->exception;
2957 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002958}
2959
2960void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002961 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002962
Elliott Hughes81ff3182012-03-23 20:35:56 -07002963 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08002964 // to preserve that across the method invocation.
Ian Rogers62d6c772013-02-27 08:32:07 -08002965 SirtRef<mirror::Object> old_throw_this_object(soa.Self(), NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -07002966 SirtRef<mirror::ArtMethod> old_throw_method(soa.Self(), NULL);
Ian Rogers62d6c772013-02-27 08:32:07 -08002967 SirtRef<mirror::Throwable> old_exception(soa.Self(), NULL);
2968 uint32_t old_throw_dex_pc;
2969 {
2970 ThrowLocation old_throw_location;
2971 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
2972 old_throw_this_object.reset(old_throw_location.GetThis());
2973 old_throw_method.reset(old_throw_location.GetMethod());
2974 old_exception.reset(old_exception_obj);
2975 old_throw_dex_pc = old_throw_location.GetDexPc();
2976 soa.Self()->ClearException();
2977 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08002978
2979 // Translate the method through the vtable, unless the debugger wants to suppress it.
Mathieu Chartierc528dba2013-11-26 12:00:11 -08002980 SirtRef<mirror::ArtMethod> m(soa.Self(), pReq->method);
Sebastien Hertzd38667a2013-11-25 15:43:54 +01002981 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != NULL) {
2982 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(pReq->method);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08002983 if (actual_method != m.get()) {
2984 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.get()) << " to " << PrettyMethod(actual_method);
2985 m.reset(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08002986 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08002987 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -08002988 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01002989 << " receiver=" << pReq->receiver
2990 << " arg_count=" << pReq->arg_count;
Mathieu Chartierc528dba2013-11-26 12:00:11 -08002991 CHECK(m.get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002992
2993 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
2994
Mathieu Chartierc528dba2013-11-26 12:00:11 -08002995 MethodHelper mh(m.get());
Jeff Hao5d917302013-02-27 17:57:33 -08002996 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
Sebastien Hertzd38667a2013-11-25 15:43:54 +01002997 arg_array.BuildArgArray(soa, pReq->receiver, reinterpret_cast<jvalue*>(pReq->arg_values));
Mathieu Chartierc528dba2013-11-26 12:00:11 -08002998 InvokeWithArgArray(soa, m.get(), &arg_array, &pReq->result_value, mh.GetShorty()[0]);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002999
Ian Rogers62d6c772013-02-27 08:32:07 -08003000 mirror::Throwable* exception = soa.Self()->GetException(NULL);
3001 soa.Self()->ClearException();
3002 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003003 pReq->result_tag = BasicTagFromDescriptor(MethodHelper(m.get()).GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003004 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003005 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3006 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003007 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003008 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3009 /* if no exception thrown, examine object result more closely */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003010 JDWP::JdwpTag new_tag = TagFromObject(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003011 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003012 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003013 pReq->result_tag = new_tag;
3014 }
3015
3016 /*
3017 * Register the object. We don't actually need an ObjectId yet,
3018 * but we do need to be sure that the GC won't move or discard the
3019 * object when we switch out of RUNNING. The ObjectId conversion
3020 * will add the object to the "do not touch" list.
3021 *
3022 * We can't use the "tracked allocation" mechanism here because
3023 * the object is going to be handed off to a different thread.
3024 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003025 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003026 }
3027
3028 if (old_exception.get() != NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003029 ThrowLocation gc_safe_throw_location(old_throw_this_object.get(), old_throw_method.get(),
3030 old_throw_dex_pc);
3031 soa.Self()->SetException(gc_safe_throw_location, old_exception.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003032 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003033}
3034
Elliott Hughesd07986f2011-12-06 18:27:45 -08003035/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003036 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003037 * need to process each, accumulate the replies, and ship the whole thing
3038 * back.
3039 *
3040 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3041 * and includes the chunk type/length, followed by the data.
3042 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003043 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003044 * chunk. If this becomes inconvenient we will need to adapt.
3045 */
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003046bool Dbg::DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003047 Thread* self = Thread::Current();
3048 JNIEnv* env = self->GetJniEnv();
3049
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003050 uint32_t type = request.ReadUnsigned32("type");
3051 uint32_t length = request.ReadUnsigned32("length");
3052
3053 // Create a byte[] corresponding to 'request'.
3054 size_t request_length = request.size();
3055 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003056 if (dataArray.get() == NULL) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003057 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003058 env->ExceptionClear();
3059 return false;
3060 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003061 env->SetByteArrayRegion(dataArray.get(), 0, request_length, reinterpret_cast<const jbyte*>(request.data()));
3062 request.Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003063
3064 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003065 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003066 if (length != request_length) {
3067 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%d)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003068 return false;
3069 }
3070
3071 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003072 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3073 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003074 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003075 if (env->ExceptionCheck()) {
3076 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3077 env->ExceptionDescribe();
3078 env->ExceptionClear();
3079 return false;
3080 }
3081
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003082 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003083 return false;
3084 }
3085
3086 /*
3087 * Pull the pieces out of the chunk. We copy the results into a
3088 * newly-allocated buffer that the caller can free. We don't want to
3089 * continue using the Chunk object because nothing has a reference to it.
3090 *
3091 * We could avoid this by returning type/data/offset/length and having
3092 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003093 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003094 * if we have responses for multiple chunks.
3095 *
3096 * So we're pretty much stuck with copying data around multiple times.
3097 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003098 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 -08003099 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003100 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003101 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003102
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003103 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 -07003104 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003105 return false;
3106 }
3107
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003108 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003109 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
3110 if (reply == NULL) {
3111 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3112 return false;
3113 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003114 JDWP::Set4BE(reply + 0, type);
3115 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003116 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003117
3118 *pReplyBuf = reply;
3119 *pReplyLen = length + kChunkHdrLen;
3120
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003121 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003122 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003123}
3124
Elliott Hughesa2155262011-11-16 16:26:58 -08003125void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003126 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003127
3128 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003129 if (self->GetState() != kRunnable) {
3130 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3131 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003132 }
3133
3134 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003135 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003136 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3137 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3138 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003139 if (env->ExceptionCheck()) {
3140 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3141 env->ExceptionDescribe();
3142 env->ExceptionClear();
3143 }
3144}
3145
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003146void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003147 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003148}
3149
3150void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003151 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003152 gDdmThreadNotification = false;
3153}
3154
3155/*
Elliott Hughes82188472011-11-07 18:11:48 -08003156 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003157 *
3158 * Because we broadcast the full set of threads when the notifications are
3159 * first enabled, it's possible for "thread" to be actively executing.
3160 */
Elliott Hughes82188472011-11-07 18:11:48 -08003161void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003162 if (!gDdmThreadNotification) {
3163 return;
3164 }
3165
Elliott Hughes82188472011-11-07 18:11:48 -08003166 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003167 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003168 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003169 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003170 } else {
3171 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003172 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003173 SirtRef<mirror::String> name(soa.Self(), t->GetThreadName(soa));
Elliott Hughes82188472011-11-07 18:11:48 -08003174 size_t char_count = (name.get() != NULL) ? name->GetLength() : 0;
jeffhao725a9572012-11-13 18:20:12 -08003175 const jchar* chars = (name.get() != NULL) ? name->GetCharArray()->GetData() : NULL;
Elliott Hughes82188472011-11-07 18:11:48 -08003176
Elliott Hughes21f32d72011-11-09 17:44:13 -08003177 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003178 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003179 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003180 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3181 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003182 }
3183}
3184
Elliott Hughes47fce012011-10-25 18:37:19 -07003185void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003186 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003187 gDdmThreadNotification = enable;
3188 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003189 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3190 // see a suspension in progress and block until that ends. They then post their own start
3191 // notification.
3192 SuspendVM();
3193 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003194 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003195 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003196 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003197 threads = Runtime::Current()->GetThreadList()->GetList();
3198 }
3199 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003200 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003201 for (Thread* thread : threads) {
3202 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003203 }
3204 }
3205 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003206 }
3207}
3208
Elliott Hughesa2155262011-11-16 16:26:58 -08003209void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003210 if (IsDebuggerActive()) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07003211 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08003212 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08003213 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003214 }
Elliott Hughes82188472011-11-07 18:11:48 -08003215 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003216}
3217
3218void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003219 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003220}
3221
3222void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003223 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003224}
3225
Elliott Hughes82188472011-11-07 18:11:48 -08003226void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003227 CHECK(buf != NULL);
3228 iovec vec[1];
3229 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3230 vec[0].iov_len = byte_count;
3231 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003232}
3233
Elliott Hughes21f32d72011-11-09 17:44:13 -08003234void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3235 DdmSendChunk(type, bytes.size(), &bytes[0]);
3236}
3237
Brian Carlstromf5293522013-07-19 00:24:00 -07003238void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003239 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003240 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003241 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003242 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003243 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003244}
3245
Elliott Hughes767a1472011-10-26 18:49:02 -07003246int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3247 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003248 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003249 return true;
3250 }
3251
3252 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3253 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3254 return false;
3255 }
3256
3257 gDdmHpifWhen = when;
3258 return true;
3259}
3260
3261bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3262 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3263 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3264 return false;
3265 }
3266
3267 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3268 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3269 return false;
3270 }
3271
3272 if (native) {
3273 gDdmNhsgWhen = when;
3274 gDdmNhsgWhat = what;
3275 } else {
3276 gDdmHpsgWhen = when;
3277 gDdmHpsgWhat = what;
3278 }
3279 return true;
3280}
3281
Elliott Hughes7162ad92011-10-27 14:08:42 -07003282void Dbg::DdmSendHeapInfo(HpifWhen reason) {
3283 // If there's a one-shot 'when', reset it.
3284 if (reason == gDdmHpifWhen) {
3285 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
3286 gDdmHpifWhen = HPIF_WHEN_NEVER;
3287 }
3288 }
3289
3290 /*
3291 * Chunk HPIF (client --> server)
3292 *
3293 * Heap Info. General information about the heap,
3294 * suitable for a summary display.
3295 *
3296 * [u4]: number of heaps
3297 *
3298 * For each heap:
3299 * [u4]: heap ID
3300 * [u8]: timestamp in ms since Unix epoch
3301 * [u1]: capture reason (same as 'when' value from server)
3302 * [u4]: max heap size in bytes (-Xmx)
3303 * [u4]: current heap size in bytes
3304 * [u4]: current number of bytes allocated
3305 * [u4]: current number of objects allocated
3306 */
3307 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07003308 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08003309 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003310 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003311 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08003312 JDWP::Append8BE(bytes, MilliTime());
3313 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003314 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
3315 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003316 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
3317 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08003318 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
3319 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07003320}
3321
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003322enum HpsgSolidity {
3323 SOLIDITY_FREE = 0,
3324 SOLIDITY_HARD = 1,
3325 SOLIDITY_SOFT = 2,
3326 SOLIDITY_WEAK = 3,
3327 SOLIDITY_PHANTOM = 4,
3328 SOLIDITY_FINALIZABLE = 5,
3329 SOLIDITY_SWEEP = 6,
3330};
3331
3332enum HpsgKind {
3333 KIND_OBJECT = 0,
3334 KIND_CLASS_OBJECT = 1,
3335 KIND_ARRAY_1 = 2,
3336 KIND_ARRAY_2 = 3,
3337 KIND_ARRAY_4 = 4,
3338 KIND_ARRAY_8 = 5,
3339 KIND_UNKNOWN = 6,
3340 KIND_NATIVE = 7,
3341};
3342
3343#define HPSG_PARTIAL (1<<7)
3344#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
3345
Ian Rogers30fab402012-01-23 15:43:46 -08003346class HeapChunkContext {
3347 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003348 // Maximum chunk size. Obtain this from the formula:
3349 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
3350 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08003351 : buf_(16384 - 16),
3352 type_(0),
3353 merge_(merge) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003354 Reset();
3355 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08003356 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003357 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08003358 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003359 }
3360 }
3361
3362 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08003363 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003364 Flush();
3365 }
3366 }
3367
3368 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08003369 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003370 return;
3371 }
3372
3373 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003374 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
3375 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003376
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003377 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
3378 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003379 // [u4]: length of piece, in allocation units
3380 // 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 -08003381 pieceLenField_ = p_;
3382 JDWP::Write4BE(&p_, 0x55555555);
3383 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003384 }
3385
Ian Rogersb726dcb2012-09-05 08:57:23 -07003386 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd636b062013-01-18 17:51:18 -08003387 if (pieceLenField_ == NULL) {
3388 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
3389 CHECK(needHeader_);
3390 return;
3391 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003392 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08003393 CHECK_LE(&buf_[0], pieceLenField_);
3394 CHECK_LE(pieceLenField_, p_);
3395 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003396
Ian Rogers30fab402012-01-23 15:43:46 -08003397 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003398 Reset();
3399 }
3400
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003401 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003402 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3403 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003404 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08003405 }
3406
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003407 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08003408 enum { ALLOCATION_UNIT_SIZE = 8 };
3409
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003410 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08003411 p_ = &buf_[0];
Ian Rogers15bf2d32012-08-28 17:33:04 -07003412 startOfNextMemoryChunk_ = NULL;
Ian Rogers30fab402012-01-23 15:43:46 -08003413 totalAllocationUnits_ = 0;
3414 needHeader_ = true;
3415 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003416 }
3417
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003418 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003419 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3420 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003421 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
3422 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07003423 if (used_bytes == 0) {
3424 if (start == NULL) {
3425 // Reset for start of new heap.
3426 startOfNextMemoryChunk_ = NULL;
3427 Flush();
3428 }
3429 // Only process in use memory so that free region information
3430 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08003431 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08003432 }
3433
Ian Rogers15bf2d32012-08-28 17:33:04 -07003434 /* If we're looking at the native heap, we'll just return
3435 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
3436 */
3437 bool native = type_ == CHUNK_TYPE("NHSG");
3438
3439 if (startOfNextMemoryChunk_ != NULL) {
3440 // Transmit any pending free memory. Native free memory of
3441 // over kMaxFreeLen could be because of the use of mmaps, so
3442 // don't report. If not free memory then start a new segment.
3443 bool flush = true;
3444 if (start > startOfNextMemoryChunk_) {
3445 const size_t kMaxFreeLen = 2 * kPageSize;
3446 void* freeStart = startOfNextMemoryChunk_;
3447 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07003448 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07003449 if (!native || freeLen < kMaxFreeLen) {
3450 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
3451 flush = false;
3452 }
3453 }
3454 if (flush) {
3455 startOfNextMemoryChunk_ = NULL;
3456 Flush();
3457 }
3458 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003459 const mirror::Object* obj = reinterpret_cast<const mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08003460
3461 // Determine the type of this chunk.
3462 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
3463 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003464 uint8_t state = ExamineObject(obj, native);
3465 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
3466 // allocation then the first sizeof(size_t) may belong to it.
3467 const size_t dlMallocOverhead = sizeof(size_t);
3468 AppendChunk(state, start, used_bytes + dlMallocOverhead);
Brian Carlstrom2d888622013-07-18 17:02:00 -07003469 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + dlMallocOverhead;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003470 }
Elliott Hughesa2155262011-11-16 16:26:58 -08003471
Ian Rogers15bf2d32012-08-28 17:33:04 -07003472 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003473 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003474 // Make sure there's enough room left in the buffer.
3475 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
3476 // 17 bytes for any header.
3477 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
3478 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3479 if (bytesLeft < needed) {
3480 Flush();
3481 }
3482
3483 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3484 if (bytesLeft < needed) {
3485 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
3486 << needed << " bytes)";
3487 return;
3488 }
3489 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08003490 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003491 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
3492 totalAllocationUnits_ += length;
3493 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08003494 *p_++ = state | HPSG_PARTIAL;
3495 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07003496 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08003497 }
Ian Rogers30fab402012-01-23 15:43:46 -08003498 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003499 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003500 }
3501
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003502 uint8_t ExamineObject(const mirror::Object* o, bool is_native_heap)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003503 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003504 if (o == NULL) {
3505 return HPSG_STATE(SOLIDITY_FREE, 0);
3506 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003507
Elliott Hughesa2155262011-11-16 16:26:58 -08003508 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003509
Elliott Hughesa2155262011-11-16 16:26:58 -08003510 // If we're looking at the native heap, we'll just return
3511 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003512 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003513 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
3514 }
3515
Ian Rogers5bfa60f2012-09-02 21:17:56 -07003516 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003517 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003518 }
3519
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003520 mirror::Class* c = o->GetClass();
Elliott Hughesa2155262011-11-16 16:26:58 -08003521 if (c == NULL) {
3522 // The object was probably just created but hasn't been initialized yet.
3523 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3524 }
3525
Mathieu Chartier590fee92013-09-13 13:46:47 -07003526 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003527 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08003528 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
3529 }
3530
3531 if (c->IsClassClass()) {
3532 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
3533 }
3534
3535 if (c->IsArrayClass()) {
3536 if (o->IsObjectArray()) {
3537 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3538 }
3539 switch (c->GetComponentSize()) {
3540 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
3541 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
3542 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3543 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
3544 }
3545 }
3546
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003547 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3548 }
3549
Ian Rogers30fab402012-01-23 15:43:46 -08003550 std::vector<uint8_t> buf_;
3551 uint8_t* p_;
3552 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003553 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08003554 size_t totalAllocationUnits_;
3555 uint32_t type_;
3556 bool merge_;
3557 bool needHeader_;
3558
Elliott Hughesa2155262011-11-16 16:26:58 -08003559 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
3560};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003561
3562void Dbg::DdmSendHeapSegments(bool native) {
3563 Dbg::HpsgWhen when;
3564 Dbg::HpsgWhat what;
3565 if (!native) {
3566 when = gDdmHpsgWhen;
3567 what = gDdmHpsgWhat;
3568 } else {
3569 when = gDdmNhsgWhen;
3570 what = gDdmNhsgWhat;
3571 }
3572 if (when == HPSG_WHEN_NEVER) {
3573 return;
3574 }
3575
3576 // Figure out what kind of chunks we'll be sending.
3577 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
3578
3579 // First, send a heap start chunk.
3580 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003581 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003582 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
3583
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003584 Thread* self = Thread::Current();
3585
3586 // To allow the Walk/InspectAll() below to exclusively-lock the
3587 // mutator lock, temporarily release the shared access to the
3588 // mutator lock here by transitioning to the suspended state.
3589 Locks::mutator_lock_->AssertSharedHeld(self);
3590 self->TransitionFromRunnableToSuspended(kSuspended);
3591
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003592 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08003593 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
3594 if (native) {
Ian Rogers1d54e732013-05-02 21:10:01 -07003595 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003596 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07003597 gc::Heap* heap = Runtime::Current()->GetHeap();
3598 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers62d6c772013-02-27 08:32:07 -08003599 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Ian Rogers1d54e732013-05-02 21:10:01 -07003600 typedef std::vector<gc::space::ContinuousSpace*>::const_iterator It;
3601 for (It cur = spaces.begin(), end = spaces.end(); cur != end; ++cur) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003602 if ((*cur)->IsMallocSpace()) {
3603 (*cur)->AsMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07003604 }
3605 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07003606 // Walk the large objects, these are not in the AllocSpace.
3607 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003608 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003609
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003610 // Shared-lock the mutator lock back.
3611 self->TransitionFromSuspendedToRunnable();
3612 Locks::mutator_lock_->AssertSharedHeld(self);
3613
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003614 // Finally, send a heap end chunk.
3615 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07003616}
3617
Elliott Hughesb1a58792013-07-11 18:10:58 -07003618static size_t GetAllocTrackerMax() {
3619#ifdef HAVE_ANDROID_OS
3620 // Check whether there's a system property overriding the number of records.
3621 const char* propertyName = "dalvik.vm.allocTrackerMax";
3622 char allocRecordMaxString[PROPERTY_VALUE_MAX];
3623 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
3624 char* end;
3625 size_t value = strtoul(allocRecordMaxString, &end, 10);
3626 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003627 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3628 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003629 return kDefaultNumAllocRecords;
3630 }
3631 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003632 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3633 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003634 return kDefaultNumAllocRecords;
3635 }
3636 return value;
3637 }
3638#endif
3639 return kDefaultNumAllocRecords;
3640}
3641
Elliott Hughes545a0642011-11-08 19:10:03 -08003642void Dbg::SetAllocTrackingEnabled(bool enabled) {
Ian Rogers50b35e22012-10-04 10:09:15 -07003643 MutexLock mu(Thread::Current(), gAllocTrackerLock);
Elliott Hughes545a0642011-11-08 19:10:03 -08003644 if (enabled) {
3645 if (recent_allocation_records_ == NULL) {
Elliott Hughesb1a58792013-07-11 18:10:58 -07003646 gAllocRecordMax = GetAllocTrackerMax();
3647 LOG(INFO) << "Enabling alloc tracker (" << gAllocRecordMax << " entries of "
3648 << kMaxAllocRecordStackDepth << " frames, taking "
3649 << PrettySize(sizeof(AllocRecord) * gAllocRecordMax) << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08003650 gAllocRecordHead = gAllocRecordCount = 0;
Elliott Hughesb1a58792013-07-11 18:10:58 -07003651 recent_allocation_records_ = new AllocRecord[gAllocRecordMax];
Elliott Hughes545a0642011-11-08 19:10:03 -08003652 CHECK(recent_allocation_records_ != NULL);
3653 }
Ian Rogersfa824272013-11-05 16:12:57 -08003654 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08003655 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08003656 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08003657 delete[] recent_allocation_records_;
3658 recent_allocation_records_ = NULL;
3659 }
3660}
3661
Ian Rogers0399dde2012-06-06 17:09:28 -07003662struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08003663 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003664 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08003665 : StackVisitor(thread, NULL), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08003666
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003667 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3668 // annotalysis.
3669 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08003670 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07003671 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08003672 }
Brian Carlstromea46f952013-07-30 01:26:50 -07003673 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003674 if (!m->IsRuntimeMethod()) {
3675 record->stack[depth].method = m;
3676 record->stack[depth].dex_pc = GetDexPc();
Elliott Hughes530fa002012-03-12 11:44:49 -07003677 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08003678 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003679 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08003680 }
3681
3682 ~AllocRecordStackVisitor() {
3683 // Clear out any unused stack trace elements.
3684 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
3685 record->stack[depth].method = NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -07003686 record->stack[depth].dex_pc = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08003687 }
3688 }
3689
3690 AllocRecord* record;
3691 size_t depth;
3692};
3693
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003694void Dbg::RecordAllocation(mirror::Class* type, size_t byte_count) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003695 Thread* self = Thread::Current();
3696 CHECK(self != NULL);
3697
Ian Rogers50b35e22012-10-04 10:09:15 -07003698 MutexLock mu(self, gAllocTrackerLock);
Elliott Hughes545a0642011-11-08 19:10:03 -08003699 if (recent_allocation_records_ == NULL) {
3700 return;
3701 }
3702
3703 // Advance and clip.
Elliott Hughesb1a58792013-07-11 18:10:58 -07003704 if (++gAllocRecordHead == gAllocRecordMax) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003705 gAllocRecordHead = 0;
3706 }
3707
3708 // Fill in the basics.
3709 AllocRecord* record = &recent_allocation_records_[gAllocRecordHead];
3710 record->type = type;
3711 record->byte_count = byte_count;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003712 record->thin_lock_id = self->GetThreadId();
Elliott Hughes545a0642011-11-08 19:10:03 -08003713
3714 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08003715 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07003716 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08003717
Elliott Hughesb1a58792013-07-11 18:10:58 -07003718 if (gAllocRecordCount < gAllocRecordMax) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003719 ++gAllocRecordCount;
3720 }
3721}
3722
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003723// Returns the index of the head element.
3724//
3725// We point at the most-recently-written record, so if gAllocRecordCount is 1
3726// we want to use the current element. Take "head+1" and subtract count
3727// from it.
3728//
3729// We need to handle underflow in our circular buffer, so we add
Elliott Hughesb1a58792013-07-11 18:10:58 -07003730// gAllocRecordMax and then mask it back down.
Elliott Hughesf8349362012-06-18 15:00:06 -07003731static inline int HeadIndex() EXCLUSIVE_LOCKS_REQUIRED(gAllocTrackerLock) {
Elliott Hughesb1a58792013-07-11 18:10:58 -07003732 return (gAllocRecordHead+1 + gAllocRecordMax - gAllocRecordCount) & (gAllocRecordMax-1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003733}
3734
3735void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003736 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07003737 MutexLock mu(soa.Self(), gAllocTrackerLock);
Elliott Hughes545a0642011-11-08 19:10:03 -08003738 if (recent_allocation_records_ == NULL) {
3739 LOG(INFO) << "Not recording tracked allocations";
3740 return;
3741 }
3742
3743 // "i" is the head of the list. We want to start at the end of the
3744 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003745 size_t i = HeadIndex();
Elliott Hughes545a0642011-11-08 19:10:03 -08003746 size_t count = gAllocRecordCount;
3747
3748 LOG(INFO) << "Tracked allocations, (head=" << gAllocRecordHead << " count=" << count << ")";
3749 while (count--) {
3750 AllocRecord* record = &recent_allocation_records_[i];
3751
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003752 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->thin_lock_id, record->byte_count)
Elliott Hughes545a0642011-11-08 19:10:03 -08003753 << PrettyClass(record->type);
3754
3755 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Brian Carlstromea46f952013-07-30 01:26:50 -07003756 const mirror::ArtMethod* m = record->stack[stack_frame].method;
Elliott Hughes545a0642011-11-08 19:10:03 -08003757 if (m == NULL) {
3758 break;
3759 }
3760 LOG(INFO) << " " << PrettyMethod(m) << " line " << record->stack[stack_frame].LineNumber();
3761 }
3762
3763 // pause periodically to help logcat catch up
3764 if ((count % 5) == 0) {
3765 usleep(40000);
3766 }
3767
Elliott Hughesb1a58792013-07-11 18:10:58 -07003768 i = (i + 1) & (gAllocRecordMax-1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003769 }
3770}
3771
3772class StringTable {
3773 public:
3774 StringTable() {
3775 }
3776
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003777 void Add(const char* s) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003778 table_.insert(s);
3779 }
3780
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003781 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07003782 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003783 if (it == table_.end()) {
3784 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
3785 }
3786 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08003787 }
3788
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003789 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08003790 return table_.size();
3791 }
3792
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003793 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07003794 for (const std::string& str : table_) {
3795 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003796 size_t s_len = CountModifiedUtf8Chars(s);
3797 UniquePtr<uint16_t> s_utf16(new uint16_t[s_len]);
3798 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
3799 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08003800 }
3801 }
3802
3803 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003804 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003805 DISALLOW_COPY_AND_ASSIGN(StringTable);
3806};
3807
3808/*
3809 * The data we send to DDMS contains everything we have recorded.
3810 *
3811 * Message header (all values big-endian):
3812 * (1b) message header len (to allow future expansion); includes itself
3813 * (1b) entry header len
3814 * (1b) stack frame len
3815 * (2b) number of entries
3816 * (4b) offset to string table from start of message
3817 * (2b) number of class name strings
3818 * (2b) number of method name strings
3819 * (2b) number of source file name strings
3820 * For each entry:
3821 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08003822 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08003823 * (2b) allocated object's class name index
3824 * (1b) stack depth
3825 * For each stack frame:
3826 * (2b) method's class name
3827 * (2b) method name
3828 * (2b) method source file
3829 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
3830 * (xb) class name strings
3831 * (xb) method name strings
3832 * (xb) source file strings
3833 *
3834 * As with other DDM traffic, strings are sent as a 4-byte length
3835 * followed by UTF-16 data.
3836 *
3837 * We send up 16-bit unsigned indexes into string tables. In theory there
Elliott Hughesb1a58792013-07-11 18:10:58 -07003838 * can be (kMaxAllocRecordStackDepth * gAllocRecordMax) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08003839 * each table, but in practice there should be far fewer.
3840 *
3841 * The chief reason for using a string table here is to keep the size of
3842 * the DDMS message to a minimum. This is partly to make the protocol
3843 * efficient, but also because we have to form the whole thing up all at
3844 * once in a memory buffer.
3845 *
3846 * We use separate string tables for class names, method names, and source
3847 * files to keep the indexes small. There will generally be no overlap
3848 * between the contents of these tables.
3849 */
3850jbyteArray Dbg::GetRecentAllocations() {
3851 if (false) {
3852 DumpRecentAllocations();
3853 }
3854
Ian Rogers50b35e22012-10-04 10:09:15 -07003855 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08003856 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003857 {
3858 MutexLock mu(self, gAllocTrackerLock);
3859 //
3860 // Part 1: generate string tables.
3861 //
3862 StringTable class_names;
3863 StringTable method_names;
3864 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08003865
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003866 int count = gAllocRecordCount;
3867 int idx = HeadIndex();
3868 while (count--) {
3869 AllocRecord* record = &recent_allocation_records_[idx];
Elliott Hughes545a0642011-11-08 19:10:03 -08003870
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003871 class_names.Add(ClassHelper(record->type).GetDescriptor());
Elliott Hughes545a0642011-11-08 19:10:03 -08003872
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003873 MethodHelper mh;
3874 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07003875 mirror::ArtMethod* m = record->stack[i].method;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003876 if (m != NULL) {
3877 mh.ChangeMethod(m);
3878 class_names.Add(mh.GetDeclaringClassDescriptor());
3879 method_names.Add(mh.GetName());
3880 filenames.Add(mh.GetDeclaringClassSourceFile());
3881 }
3882 }
Elliott Hughes545a0642011-11-08 19:10:03 -08003883
Elliott Hughesb1a58792013-07-11 18:10:58 -07003884 idx = (idx + 1) & (gAllocRecordMax-1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003885 }
3886
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003887 LOG(INFO) << "allocation records: " << gAllocRecordCount;
3888
3889 //
3890 // Part 2: Generate the output and store it in the buffer.
3891 //
3892
3893 // (1b) message header len (to allow future expansion); includes itself
3894 // (1b) entry header len
3895 // (1b) stack frame len
3896 const int kMessageHeaderLen = 15;
3897 const int kEntryHeaderLen = 9;
3898 const int kStackFrameLen = 8;
3899 JDWP::Append1BE(bytes, kMessageHeaderLen);
3900 JDWP::Append1BE(bytes, kEntryHeaderLen);
3901 JDWP::Append1BE(bytes, kStackFrameLen);
3902
3903 // (2b) number of entries
3904 // (4b) offset to string table from start of message
3905 // (2b) number of class name strings
3906 // (2b) number of method name strings
3907 // (2b) number of source file name strings
3908 JDWP::Append2BE(bytes, gAllocRecordCount);
3909 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003910 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003911 JDWP::Append2BE(bytes, class_names.Size());
3912 JDWP::Append2BE(bytes, method_names.Size());
3913 JDWP::Append2BE(bytes, filenames.Size());
3914
3915 count = gAllocRecordCount;
3916 idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003917 while (count--) {
3918 // For each entry:
3919 // (4b) total allocation size
3920 // (2b) thread id
3921 // (2b) allocated object's class name index
3922 // (1b) stack depth
3923 AllocRecord* record = &recent_allocation_records_[idx];
3924 size_t stack_depth = record->GetDepth();
Mathieu Chartier590fee92013-09-13 13:46:47 -07003925 ClassHelper kh(record->type);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003926 size_t allocated_object_class_name_index = class_names.IndexOf(kh.GetDescriptor());
3927 JDWP::Append4BE(bytes, record->byte_count);
3928 JDWP::Append2BE(bytes, record->thin_lock_id);
3929 JDWP::Append2BE(bytes, allocated_object_class_name_index);
3930 JDWP::Append1BE(bytes, stack_depth);
3931
3932 MethodHelper mh;
3933 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
3934 // For each stack frame:
3935 // (2b) method's class name
3936 // (2b) method name
3937 // (2b) method source file
3938 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
3939 mh.ChangeMethod(record->stack[stack_frame].method);
3940 size_t class_name_index = class_names.IndexOf(mh.GetDeclaringClassDescriptor());
3941 size_t method_name_index = method_names.IndexOf(mh.GetName());
3942 size_t file_name_index = filenames.IndexOf(mh.GetDeclaringClassSourceFile());
3943 JDWP::Append2BE(bytes, class_name_index);
3944 JDWP::Append2BE(bytes, method_name_index);
3945 JDWP::Append2BE(bytes, file_name_index);
3946 JDWP::Append2BE(bytes, record->stack[stack_frame].LineNumber());
3947 }
3948
Elliott Hughesb1a58792013-07-11 18:10:58 -07003949 idx = (idx + 1) & (gAllocRecordMax-1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003950 }
3951
3952 // (xb) class name strings
3953 // (xb) method name strings
3954 // (xb) source file strings
3955 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
3956 class_names.WriteTo(bytes);
3957 method_names.WriteTo(bytes);
3958 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08003959 }
Ian Rogers50b35e22012-10-04 10:09:15 -07003960 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08003961 jbyteArray result = env->NewByteArray(bytes.size());
3962 if (result != NULL) {
3963 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
3964 }
3965 return result;
3966}
3967
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003968} // namespace art