blob: 7e2dfd2766a6b7c8983739481bb8d8ef651097a8 [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
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080066 AllocRecordStackTraceElement() : method(nullptr), dex_pc(0) {
67 }
68
Ian Rogersb726dcb2012-09-05 08:57:23 -070069 int32_t LineNumber() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -070070 return MethodHelper(method).GetLineNumFromDexPC(dex_pc);
Elliott Hughes545a0642011-11-08 19:10:03 -080071 }
72};
73
74struct AllocRecord {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080075 mirror::Class* type;
Elliott Hughes545a0642011-11-08 19:10:03 -080076 size_t byte_count;
77 uint16_t thin_lock_id;
Brian Carlstrom7934ac22013-07-26 10:54:15 -070078 AllocRecordStackTraceElement stack[kMaxAllocRecordStackDepth]; // Unused entries have NULL method.
Elliott Hughes545a0642011-11-08 19:10:03 -080079
80 size_t GetDepth() {
81 size_t depth = 0;
82 while (depth < kMaxAllocRecordStackDepth && stack[depth].method != NULL) {
83 ++depth;
84 }
85 return depth;
86 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080087
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080088 void UpdateObjectPointers(IsMarkedCallback* callback, void* arg)
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080089 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
90 if (type != nullptr) {
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080091 type = down_cast<mirror::Class*>(callback(type, arg));
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080092 }
93 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
94 mirror::ArtMethod*& m = stack[stack_frame].method;
95 if (m == nullptr) {
96 break;
97 }
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080098 m = down_cast<mirror::ArtMethod*>(callback(m, arg));
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080099 }
100 }
Elliott Hughes545a0642011-11-08 19:10:03 -0800101};
102
Elliott Hughes86964332012-02-15 19:37:42 -0800103struct Breakpoint {
Brian Carlstromea46f952013-07-30 01:26:50 -0700104 mirror::ArtMethod* method;
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800105 uint32_t dex_pc;
Brian Carlstromea46f952013-07-30 01:26:50 -0700106 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc) : method(method), dex_pc(dex_pc) {}
Elliott Hughes86964332012-02-15 19:37:42 -0800107};
108
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700109static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700110 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes229feb72012-02-23 13:33:29 -0800111 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.method).c_str(), rhs.dex_pc);
Elliott Hughes86964332012-02-15 19:37:42 -0800112 return os;
113}
114
Ian Rogers62d6c772013-02-27 08:32:07 -0800115class DebugInstrumentationListener : public instrumentation::InstrumentationListener {
116 public:
117 DebugInstrumentationListener() {}
118 virtual ~DebugInstrumentationListener() {}
119
120 virtual void MethodEntered(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800121 mirror::ArtMethod* method, uint32_t dex_pc)
Ian Rogers62d6c772013-02-27 08:32:07 -0800122 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
123 if (method->IsNative()) {
124 // TODO: post location events is a suspension point and native method entry stubs aren't.
125 return;
126 }
Jeff Hao579b0242013-11-18 13:16:49 -0800127 Dbg::PostLocationEvent(method, 0, this_object, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800128 }
129
130 virtual void MethodExited(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800131 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800132 uint32_t dex_pc, const JValue& return_value)
133 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800134 if (method->IsNative()) {
135 // TODO: post location events is a suspension point and native method entry stubs aren't.
136 return;
137 }
Jeff Hao579b0242013-11-18 13:16:49 -0800138 Dbg::PostLocationEvent(method, dex_pc, this_object, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800139 }
140
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100141 virtual void MethodUnwind(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800142 mirror::ArtMethod* method, uint32_t dex_pc)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100143 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800144 // We're not recorded to listen to this kind of event, so complain.
145 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100146 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800147 }
148
149 virtual void DexPcMoved(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800150 mirror::ArtMethod* method, uint32_t new_dex_pc)
Ian Rogers62d6c772013-02-27 08:32:07 -0800151 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
152 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc);
153 }
154
155 virtual void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -0700156 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -0800157 mirror::Throwable* exception_object)
158 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
159 Dbg::PostException(thread, throw_location, catch_method, catch_dex_pc, exception_object);
160 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800161} gDebugInstrumentationListener;
162
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700163// JDWP is allowed unless the Zygote forbids it.
164static bool gJdwpAllowed = true;
165
Elliott Hughesc0f09332012-03-26 13:27:06 -0700166// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700167static bool gJdwpConfigured = false;
168
Elliott Hughesc0f09332012-03-26 13:27:06 -0700169// Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.)
Elliott Hughes376a7a02011-10-24 18:35:55 -0700170static JDWP::JdwpOptions gJdwpOptions;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700171
172// Runtime JDWP state.
173static JDWP::JdwpState* gJdwpState = NULL;
174static bool gDebuggerConnected; // debugger or DDMS is connected.
175static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800176static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700177
Elliott Hughes47fce012011-10-25 18:37:19 -0700178static bool gDdmThreadNotification = false;
179
Elliott Hughes767a1472011-10-26 18:49:02 -0700180// DDMS GC-related settings.
181static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
182static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
183static Dbg::HpsgWhat gDdmHpsgWhat;
184static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
185static Dbg::HpsgWhat gDdmNhsgWhat;
186
Ian Rogers719d1a32014-03-06 12:13:39 -0800187static ObjectRegistry* gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700188
Elliott Hughes545a0642011-11-08 19:10:03 -0800189// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800190Mutex* Dbg::alloc_tracker_lock_ = nullptr;
191AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
192size_t Dbg::alloc_record_max_ = 0;
193size_t Dbg::alloc_record_head_ = 0;
194size_t Dbg::alloc_record_count_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -0800195
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100196// Deoptimization support.
197struct MethodInstrumentationRequest {
198 bool deoptimize;
199
200 // Method for selective deoptimization. NULL means full deoptimization.
201 mirror::ArtMethod* method;
202
203 MethodInstrumentationRequest(bool deoptimize, mirror::ArtMethod* method)
204 : deoptimize(deoptimize), method(method) {}
205};
206// TODO we need to visit associated methods as roots.
207static std::vector<MethodInstrumentationRequest> gDeoptimizationRequests GUARDED_BY(Locks::deoptimization_lock_);
208
209// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800210static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800211
Brian Carlstromea46f952013-07-30 01:26:50 -0700212static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800213 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700214 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao09bfc6a2012-12-11 18:11:43 -0800215 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100216 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800217 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == dex_pc) {
Elliott Hughes86964332012-02-15 19:37:42 -0800218 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
219 return true;
220 }
221 }
222 return false;
223}
224
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800225static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread) {
226 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
227 // A thread may be suspended for GC; in this code, we really want to know whether
228 // there's a debugger suspension active.
229 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
230}
231
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800232static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700233 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800234 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800235 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800236 status = JDWP::ERR_INVALID_OBJECT;
237 return NULL;
238 }
239 if (!o->IsArrayInstance()) {
240 status = JDWP::ERR_INVALID_ARRAY;
241 return NULL;
242 }
243 status = JDWP::ERR_NONE;
244 return o->AsArray();
245}
246
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800247static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700248 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800249 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800250 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800251 status = JDWP::ERR_INVALID_OBJECT;
252 return NULL;
253 }
254 if (!o->IsClass()) {
255 status = JDWP::ERR_INVALID_CLASS;
256 return NULL;
257 }
258 status = JDWP::ERR_NONE;
259 return o->AsClass();
260}
261
Elliott Hughes221229c2013-01-08 18:17:50 -0800262static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thread*& thread)
jeffhaoa77f0f62012-12-05 17:19:31 -0800263 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700264 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
265 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800266 mirror::Object* thread_peer = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800267 if (thread_peer == NULL || thread_peer == ObjectRegistry::kInvalidObject) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800268 // This isn't even an object.
269 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes436e3722012-02-17 20:01:47 -0800270 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800271
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800272 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800273 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
274 // This isn't a thread.
275 return JDWP::ERR_INVALID_THREAD;
276 }
277
278 thread = Thread::FromManagedThread(soa, thread_peer);
279 if (thread == NULL) {
280 // This is a java.lang.Thread without a Thread*. Must be a zombie.
281 return JDWP::ERR_THREAD_NOT_ALIVE;
282 }
283 return JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800284}
285
Elliott Hughes24437992011-11-30 14:49:33 -0800286static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
287 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
288 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
289 return static_cast<JDWP::JdwpTag>(descriptor[0]);
290}
291
Ian Rogers98379392014-02-24 16:53:16 -0800292static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700293 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes86b00102011-12-05 17:54:26 -0800294 CHECK(c != NULL);
Elliott Hughes24437992011-11-30 14:49:33 -0800295 if (c->IsArrayClass()) {
296 return JDWP::JT_ARRAY;
297 }
Elliott Hughes24437992011-11-30 14:49:33 -0800298 if (c->IsStringClass()) {
299 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800300 }
Ian Rogers98379392014-02-24 16:53:16 -0800301 if (c->IsClassClass()) {
302 return JDWP::JT_CLASS_OBJECT;
303 }
304 {
305 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
306 if (thread_class->IsAssignableFrom(c)) {
307 return JDWP::JT_THREAD;
308 }
309 }
310 {
311 mirror::Class* thread_group_class =
312 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
313 if (thread_group_class->IsAssignableFrom(c)) {
314 return JDWP::JT_THREAD_GROUP;
315 }
316 }
317 {
318 mirror::Class* class_loader_class =
319 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
320 if (class_loader_class->IsAssignableFrom(c)) {
321 return JDWP::JT_CLASS_LOADER;
322 }
323 }
324 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800325}
326
327/*
328 * Objects declared to hold Object might actually hold a more specific
329 * type. The debugger may take a special interest in these (e.g. it
330 * wants to display the contents of Strings), so we want to return an
331 * appropriate tag.
332 *
333 * Null objects are tagged JT_OBJECT.
334 */
Ian Rogers98379392014-02-24 16:53:16 -0800335static JDWP::JdwpTag TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700336 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers98379392014-02-24 16:53:16 -0800337 return (o == NULL) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800338}
339
340static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
341 switch (tag) {
342 case JDWP::JT_BOOLEAN:
343 case JDWP::JT_BYTE:
344 case JDWP::JT_CHAR:
345 case JDWP::JT_FLOAT:
346 case JDWP::JT_DOUBLE:
347 case JDWP::JT_INT:
348 case JDWP::JT_LONG:
349 case JDWP::JT_SHORT:
350 case JDWP::JT_VOID:
351 return true;
352 default:
353 return false;
354 }
355}
356
Elliott Hughes3bb81562011-10-21 18:52:59 -0700357/*
358 * Handle one of the JDWP name/value pairs.
359 *
360 * JDWP options are:
361 * help: if specified, show help message and bail
362 * transport: may be dt_socket or dt_shmem
363 * address: for dt_socket, "host:port", or just "port" when listening
364 * server: if "y", wait for debugger to attach; if "n", attach to debugger
365 * timeout: how long to wait for debugger to connect / listen
366 *
367 * Useful with server=n (these aren't supported yet):
368 * onthrow=<exception-name>: connect to debugger when exception thrown
369 * onuncaught=y|n: connect to debugger when uncaught exception thrown
370 * launch=<command-line>: launch the debugger itself
371 *
372 * The "transport" option is required, as is "address" if server=n.
373 */
374static bool ParseJdwpOption(const std::string& name, const std::string& value) {
375 if (name == "transport") {
376 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700377 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700378 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700379 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700380 } else {
381 LOG(ERROR) << "JDWP transport not supported: " << value;
382 return false;
383 }
384 } else if (name == "server") {
385 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700386 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700387 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700388 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700389 } else {
390 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
391 return false;
392 }
393 } else if (name == "suspend") {
394 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700395 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700396 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700397 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700398 } else {
399 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
400 return false;
401 }
402 } else if (name == "address") {
403 /* this is either <port> or <host>:<port> */
404 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700405 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700406 std::string::size_type colon = value.find(':');
407 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700408 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700409 port_string = value.substr(colon + 1);
410 } else {
411 port_string = value;
412 }
413 if (port_string.empty()) {
414 LOG(ERROR) << "JDWP address missing port: " << value;
415 return false;
416 }
417 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800418 uint64_t port = strtoul(port_string.c_str(), &end, 10);
419 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700420 LOG(ERROR) << "JDWP address has junk in port field: " << value;
421 return false;
422 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700423 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700424 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
425 /* valid but unsupported */
426 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
427 } else {
428 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
429 }
430
431 return true;
432}
433
434/*
435 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
436 * "transport=dt_socket,address=8000,server=y,suspend=n"
437 */
438bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800439 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700440
Elliott Hughes3bb81562011-10-21 18:52:59 -0700441 std::vector<std::string> pairs;
442 Split(options, ',', pairs);
443
444 for (size_t i = 0; i < pairs.size(); ++i) {
445 std::string::size_type equals = pairs[i].find('=');
446 if (equals == std::string::npos) {
447 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
448 return false;
449 }
450 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
451 }
452
Elliott Hughes376a7a02011-10-24 18:35:55 -0700453 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700454 LOG(ERROR) << "Must specify JDWP transport: " << options;
455 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700456 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700457 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
458 return false;
459 }
460
461 gJdwpConfigured = true;
462 return true;
463}
464
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700465void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700466 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700467 // No JDWP for you!
468 return;
469 }
470
Ian Rogers719d1a32014-03-06 12:13:39 -0800471 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700472 gRegistry = new ObjectRegistry;
473
Ian Rogers719d1a32014-03-06 12:13:39 -0800474 alloc_tracker_lock_ = new Mutex("AllocTracker lock");
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700475 // Init JDWP if the debugger is enabled. This may connect out to a
476 // debugger, passively listen for a debugger, or block waiting for a
477 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700478 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
479 if (gJdwpState == NULL) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800480 // We probably failed because some other process has the port already, which means that
481 // if we don't abort the user is likely to think they're talking to us when they're actually
482 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800483 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700484 }
485
486 // If a debugger has already attached, send the "welcome" message.
487 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700488 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700489 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes376a7a02011-10-24 18:35:55 -0700490 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800491 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700492 }
493 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700494}
495
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700496void Dbg::StopJdwp() {
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100497 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
498 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700499 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800500 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700501 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800502 gRegistry = nullptr;
503 delete alloc_tracker_lock_;
504 alloc_tracker_lock_ = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700505}
506
Elliott Hughes767a1472011-10-26 18:49:02 -0700507void Dbg::GcDidFinish() {
508 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700509 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes81ff3182012-03-23 20:35:56 -0700510 LOG(DEBUG) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700511 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700512 }
513 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700514 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes81ff3182012-03-23 20:35:56 -0700515 LOG(DEBUG) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700516 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700517 }
518 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700519 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes767a1472011-10-26 18:49:02 -0700520 LOG(DEBUG) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700521 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700522 }
523}
524
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700525void Dbg::SetJdwpAllowed(bool allowed) {
526 gJdwpAllowed = allowed;
527}
528
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700529DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700530 return Thread::Current()->GetInvokeReq();
531}
532
533Thread* Dbg::GetDebugThread() {
534 return (gJdwpState != NULL) ? gJdwpState->GetDebugThread() : NULL;
535}
536
537void Dbg::ClearWaitForEventThread() {
538 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700539}
540
541void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700542 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800543 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700544 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800545 gDisposed = false;
546}
547
548void Dbg::Disposed() {
549 gDisposed = true;
550}
551
552bool Dbg::IsDisposed() {
553 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700554}
555
Elliott Hughesa2155262011-11-16 16:26:58 -0800556void Dbg::GoActive() {
557 // Enable all debugging features, including scans for breakpoints.
558 // This is a no-op if we're already active.
559 // Only called from the JDWP handler thread.
560 if (gDebuggerActive) {
561 return;
562 }
563
Elliott Hughesc0f09332012-03-26 13:27:06 -0700564 {
565 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
jeffhao09bfc6a2012-12-11 18:11:43 -0800566 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700567 CHECK_EQ(gBreakpoints.size(), 0U);
568 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800569
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100570 {
571 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
572 CHECK_EQ(gDeoptimizationRequests.size(), 0U);
573 }
574
Ian Rogers62d6c772013-02-27 08:32:07 -0800575 Runtime* runtime = Runtime::Current();
576 runtime->GetThreadList()->SuspendAll();
577 Thread* self = Thread::Current();
578 ThreadState old_state = self->SetStateUnsafe(kRunnable);
579 CHECK_NE(old_state, kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100580 runtime->GetInstrumentation()->EnableDeoptimization();
Ian Rogers62d6c772013-02-27 08:32:07 -0800581 runtime->GetInstrumentation()->AddListener(&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 Hughesa2155262011-11-16 16:26:58 -0800586 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800587 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
588 runtime->GetThreadList()->ResumeAll();
589
590 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700591}
592
593void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700594 CHECK(gDebuggerConnected);
595
Elliott Hughesc0f09332012-03-26 13:27:06 -0700596 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700597
Ian Rogers62d6c772013-02-27 08:32:07 -0800598 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
599 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
600 // and clear the object registry.
601 Runtime* runtime = Runtime::Current();
602 runtime->GetThreadList()->SuspendAll();
603 Thread* self = Thread::Current();
604 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100605
606 // Debugger may not be active at this point.
607 if (gDebuggerActive) {
608 {
609 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
610 // This prevents us from having any pending deoptimization request when the debugger attaches
611 // to us again while no event has been requested yet.
612 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
613 gDeoptimizationRequests.clear();
614 }
615 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
616 instrumentation::Instrumentation::kMethodEntered |
617 instrumentation::Instrumentation::kMethodExited |
618 instrumentation::Instrumentation::kDexPcMoved |
619 instrumentation::Instrumentation::kExceptionCaught);
620 runtime->GetInstrumentation()->DisableDeoptimization();
621 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100622 }
Elliott Hughes234ab152011-10-26 14:02:26 -0700623 gRegistry->Clear();
624 gDebuggerConnected = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800625 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
626 runtime->GetThreadList()->ResumeAll();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700627}
628
Elliott Hughesc0f09332012-03-26 13:27:06 -0700629bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700630 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700631}
632
Elliott Hughesc0f09332012-03-26 13:27:06 -0700633bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700634 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700635}
636
637int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800638 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700639}
640
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700641void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700642 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700643}
644
Elliott Hughes88d63092013-01-09 09:55:54 -0800645std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800646 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800647 if (o == NULL) {
648 return "NULL";
649 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800650 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes88d63092013-01-09 09:55:54 -0800651 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
Elliott Hughes436e3722012-02-17 20:01:47 -0800652 }
653 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700654 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800655 }
Elliott Hughesc308a5d2012-02-16 17:12:06 -0800656 return DescriptorToName(ClassHelper(o->AsClass()).GetDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700657}
658
Elliott Hughes88d63092013-01-09 09:55:54 -0800659JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800660 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800661 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800662 if (c == NULL) {
663 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800664 }
Elliott Hughes88d63092013-01-09 09:55:54 -0800665 class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800666 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800667}
668
Elliott Hughes88d63092013-01-09 09:55:54 -0800669JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800670 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800671 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800672 if (c == NULL) {
673 return status;
674 }
675 if (c->IsInterface()) {
676 // http://code.google.com/p/android/issues/detail?id=20856
Elliott Hughes88d63092013-01-09 09:55:54 -0800677 superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800678 } else {
Elliott Hughes88d63092013-01-09 09:55:54 -0800679 superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800680 }
681 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700682}
683
Elliott Hughes436e3722012-02-17 20:01:47 -0800684JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800685 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800686 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800687 return JDWP::ERR_INVALID_OBJECT;
688 }
689 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
690 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700691}
692
Elliott Hughes436e3722012-02-17 20:01:47 -0800693JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
694 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800695 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800696 if (c == NULL) {
697 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800698 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800699
700 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
701
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700702 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
703 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800704 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700705 if ((access_flags & kAccInterface) == 0) {
706 access_flags |= kAccSuper;
707 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800708
709 expandBufAdd4BE(pReply, access_flags);
710
711 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700712}
713
Elliott Hughesf327e072013-01-09 16:01:26 -0800714JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
715 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800716 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800717 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800718 return JDWP::ERR_INVALID_OBJECT;
719 }
720
721 // Ensure all threads are suspended while we read objects' lock words.
722 Thread* self = Thread::Current();
723 Locks::mutator_lock_->SharedUnlock(self);
724 Locks::mutator_lock_->ExclusiveLock(self);
725
726 MonitorInfo monitor_info(o);
727
728 Locks::mutator_lock_->ExclusiveUnlock(self);
729 Locks::mutator_lock_->SharedLock(self);
730
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700731 if (monitor_info.owner_ != NULL) {
732 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800733 } else {
734 expandBufAddObjectId(reply, gRegistry->Add(NULL));
735 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700736 expandBufAdd4BE(reply, monitor_info.entry_count_);
737 expandBufAdd4BE(reply, monitor_info.waiters_.size());
738 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
739 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800740 }
741 return JDWP::ERR_NONE;
742}
743
Elliott Hughes734b8c62013-01-11 15:32:45 -0800744JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
745 std::vector<JDWP::ObjectId>& monitors,
746 std::vector<uint32_t>& stack_depths)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800747 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
748 ScopedObjectAccessUnchecked soa(Thread::Current());
749 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
750 Thread* thread;
751 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
752 if (error != JDWP::ERR_NONE) {
753 return error;
754 }
755 if (!IsSuspendedForDebugger(soa, thread)) {
756 return JDWP::ERR_THREAD_NOT_SUSPENDED;
757 }
758
759 struct OwnedMonitorVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800760 OwnedMonitorVisitor(Thread* thread, Context* context)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800761 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -0800762 : StackVisitor(thread, context), current_stack_depth(0) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800763
764 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
765 // annotalysis.
766 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
767 if (!GetMethod()->IsRuntimeMethod()) {
768 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800769 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800770 }
771 return true;
772 }
773
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800774 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800775 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800776 visitor->monitors.push_back(owned_monitor);
777 visitor->stack_depths.push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800778 }
779
Elliott Hughes734b8c62013-01-11 15:32:45 -0800780 size_t current_stack_depth;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800781 std::vector<mirror::Object*> monitors;
Elliott Hughes734b8c62013-01-11 15:32:45 -0800782 std::vector<uint32_t> stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800783 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800784 UniquePtr<Context> context(Context::Create());
785 OwnedMonitorVisitor visitor(thread, context.get());
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800786 visitor.WalkStack();
787
788 for (size_t i = 0; i < visitor.monitors.size(); ++i) {
789 monitors.push_back(gRegistry->Add(visitor.monitors[i]));
Elliott Hughes734b8c62013-01-11 15:32:45 -0800790 stack_depths.push_back(visitor.stack_depths[i]);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800791 }
792
793 return JDWP::ERR_NONE;
794}
795
Elliott Hughesf9501702013-01-11 11:22:27 -0800796JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id, JDWP::ObjectId& contended_monitor)
797 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
798 ScopedObjectAccessUnchecked soa(Thread::Current());
799 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
800 Thread* thread;
801 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
802 if (error != JDWP::ERR_NONE) {
803 return error;
804 }
805 if (!IsSuspendedForDebugger(soa, thread)) {
806 return JDWP::ERR_THREAD_NOT_SUSPENDED;
807 }
808
809 contended_monitor = gRegistry->Add(Monitor::GetContendedMonitor(thread));
810
811 return JDWP::ERR_NONE;
812}
813
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800814JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
815 std::vector<uint64_t>& counts)
816 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800817 gc::Heap* heap = Runtime::Current()->GetHeap();
818 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800819 std::vector<mirror::Class*> classes;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800820 counts.clear();
821 for (size_t i = 0; i < class_ids.size(); ++i) {
822 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800823 mirror::Class* c = DecodeClass(class_ids[i], status);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800824 if (c == NULL) {
825 return status;
826 }
827 classes.push_back(c);
828 counts.push_back(0);
829 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800830 heap->CountInstances(classes, false, &counts[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800831 return JDWP::ERR_NONE;
832}
833
Elliott Hughes3b78c942013-01-15 17:35:41 -0800834JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::ObjectId>& instances)
835 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800836 gc::Heap* heap = Runtime::Current()->GetHeap();
837 // We only want reachable instances, so do a GC.
838 heap->CollectGarbage(false);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800839 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800840 mirror::Class* c = DecodeClass(class_id, status);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800841 if (c == nullptr) {
Elliott Hughes3b78c942013-01-15 17:35:41 -0800842 return status;
843 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800844 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800845 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
846 for (size_t i = 0; i < raw_instances.size(); ++i) {
847 instances.push_back(gRegistry->Add(raw_instances[i]));
848 }
849 return JDWP::ERR_NONE;
850}
851
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800852JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
853 std::vector<JDWP::ObjectId>& referring_objects)
854 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800855 gc::Heap* heap = Runtime::Current()->GetHeap();
856 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800857 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800858 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800859 return JDWP::ERR_INVALID_OBJECT;
860 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800861 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800862 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800863 for (size_t i = 0; i < raw_instances.size(); ++i) {
864 referring_objects.push_back(gRegistry->Add(raw_instances[i]));
865 }
866 return JDWP::ERR_NONE;
867}
868
Elliott Hughes64f574f2013-02-20 14:57:12 -0800869JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id)
870 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100871 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
872 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
873 return JDWP::ERR_INVALID_OBJECT;
874 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800875 gRegistry->DisableCollection(object_id);
876 return JDWP::ERR_NONE;
877}
878
879JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id)
880 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100881 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
882 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
883 // also ignores these cases and never return an error. However it's not obvious why this command
884 // should behave differently from DisableCollection and IsCollected commands. So let's be more
885 // strict and return an error if this happens.
886 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
887 return JDWP::ERR_INVALID_OBJECT;
888 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800889 gRegistry->EnableCollection(object_id);
890 return JDWP::ERR_NONE;
891}
892
893JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool& is_collected)
894 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100895 if (object_id == 0) {
896 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +0100897 return JDWP::ERR_INVALID_OBJECT;
898 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100899 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
900 // the RI seems to ignore this and assume object has been collected.
901 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
902 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
903 is_collected = true;
904 } else {
905 is_collected = gRegistry->IsCollected(object_id);
906 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800907 return JDWP::ERR_NONE;
908}
909
910void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
911 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
912 gRegistry->DisposeObject(object_id, reference_count);
913}
914
Elliott Hughes88d63092013-01-09 09:55:54 -0800915JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800916 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800917 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800918 if (c == NULL) {
919 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800920 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800921
922 expandBufAdd1(pReply, c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS);
Elliott Hughes88d63092013-01-09 09:55:54 -0800923 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800924 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700925}
926
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800927void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800928 // Get the complete list of reference classes (i.e. all classes except
929 // the primitive types).
930 // Returns a newly-allocated buffer full of RefTypeId values.
931 struct ClassListCreator {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800932 explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800933 }
934
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800935 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800936 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
937 }
938
Elliott Hughes64f574f2013-02-20 14:57:12 -0800939 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
940 // annotalysis.
941 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -0800942 if (!c->IsPrimitive()) {
Elliott Hughes64f574f2013-02-20 14:57:12 -0800943 classes.push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -0800944 }
945 return true;
946 }
947
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800948 std::vector<JDWP::RefTypeId>& classes;
Elliott Hughesa2155262011-11-16 16:26:58 -0800949 };
950
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800951 ClassListCreator clc(classes);
Elliott Hughesa2155262011-11-16 16:26:58 -0800952 Runtime::Current()->GetClassLinker()->VisitClasses(ClassListCreator::Visit, &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700953}
954
Elliott Hughes88d63092013-01-09 09:55:54 -0800955JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, uint32_t* pStatus, std::string* pDescriptor) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800956 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800957 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800958 if (c == NULL) {
959 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800960 }
961
Elliott Hughesa2155262011-11-16 16:26:58 -0800962 if (c->IsArrayClass()) {
963 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
964 *pTypeTag = JDWP::TT_ARRAY;
965 } else {
966 if (c->IsErroneous()) {
967 *pStatus = JDWP::CS_ERROR;
968 } else {
969 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
970 }
971 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
972 }
973
974 if (pDescriptor != NULL) {
Ian Rogersdfb325e2013-10-30 01:00:44 -0700975 *pDescriptor = ClassHelper(c).GetDescriptor();
Elliott Hughesa2155262011-11-16 16:26:58 -0800976 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800977 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700978}
979
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800980void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800981 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800982 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
983 ids.clear();
984 for (size_t i = 0; i < classes.size(); ++i) {
985 ids.push_back(gRegistry->Add(classes[i]));
986 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700987}
988
Elliott Hughes64f574f2013-02-20 14:57:12 -0800989JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
990 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800991 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800992 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800993 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -0800994 }
Elliott Hughes2435a572012-02-17 16:07:41 -0800995
996 JDWP::JdwpTypeTag type_tag;
997 if (o->GetClass()->IsArrayClass()) {
998 type_tag = JDWP::TT_ARRAY;
999 } else if (o->GetClass()->IsInterface()) {
1000 type_tag = JDWP::TT_INTERFACE;
1001 } else {
1002 type_tag = JDWP::TT_CLASS;
1003 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001004 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001005
1006 expandBufAdd1(pReply, type_tag);
1007 expandBufAddRefTypeId(pReply, type_id);
1008
1009 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001010}
1011
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001012JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001013 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001014 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001015 if (c == NULL) {
1016 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001017 }
Ian Rogersdfb325e2013-10-30 01:00:44 -07001018 *signature = ClassHelper(c).GetDescriptor();
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001019 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001020}
1021
Elliott Hughes88d63092013-01-09 09:55:54 -08001022JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string& result) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001023 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001024 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001025 if (c == NULL) {
1026 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001027 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001028 result = ClassHelper(c).GetSourceFile();
1029 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001030}
1031
Elliott Hughes88d63092013-01-09 09:55:54 -08001032JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001033 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001034 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001035 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes546b9862012-06-20 16:06:13 -07001036 return JDWP::ERR_INVALID_OBJECT;
1037 }
Ian Rogers98379392014-02-24 16:53:16 -08001038 tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001039 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001040}
1041
Elliott Hughesaed4be92011-12-02 16:16:23 -08001042size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001043 switch (tag) {
1044 case JDWP::JT_VOID:
1045 return 0;
1046 case JDWP::JT_BYTE:
1047 case JDWP::JT_BOOLEAN:
1048 return 1;
1049 case JDWP::JT_CHAR:
1050 case JDWP::JT_SHORT:
1051 return 2;
1052 case JDWP::JT_FLOAT:
1053 case JDWP::JT_INT:
1054 return 4;
1055 case JDWP::JT_ARRAY:
1056 case JDWP::JT_OBJECT:
1057 case JDWP::JT_STRING:
1058 case JDWP::JT_THREAD:
1059 case JDWP::JT_THREAD_GROUP:
1060 case JDWP::JT_CLASS_LOADER:
1061 case JDWP::JT_CLASS_OBJECT:
1062 return sizeof(JDWP::ObjectId);
1063 case JDWP::JT_DOUBLE:
1064 case JDWP::JT_LONG:
1065 return 8;
1066 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001067 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001068 return -1;
1069 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001070}
1071
Elliott Hughes88d63092013-01-09 09:55:54 -08001072JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int& length) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001073 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001074 mirror::Array* a = DecodeArray(array_id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001075 if (a == NULL) {
1076 return status;
Elliott Hughes24437992011-11-30 14:49:33 -08001077 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001078 length = a->GetLength();
1079 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001080}
1081
Elliott Hughes88d63092013-01-09 09:55:54 -08001082JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001083 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001084 mirror::Array* a = DecodeArray(array_id, status);
Ian Rogers98379392014-02-24 16:53:16 -08001085 if (a == nullptr) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001086 return status;
1087 }
Elliott Hughes24437992011-11-30 14:49:33 -08001088
1089 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1090 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001091 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001092 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001093 std::string descriptor(ClassHelper(a->GetClass()).GetDescriptor());
Elliott Hughes24437992011-11-30 14:49:33 -08001094 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
1095
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001096 expandBufAdd1(pReply, tag);
1097 expandBufAdd4BE(pReply, count);
1098
Elliott Hughes24437992011-11-30 14:49:33 -08001099 if (IsPrimitiveTag(tag)) {
1100 size_t width = GetTagWidth(tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001101 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1102 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001103 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001104 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1105 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001106 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001107 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1108 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001109 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001110 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1111 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001112 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001113 memcpy(dst, &src[offset * width], count * width);
1114 }
1115 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001116 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001117 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001118 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001119 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001120 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
1121 : tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001122 expandBufAdd1(pReply, specific_tag);
1123 expandBufAddObjectId(pReply, gRegistry->Add(element));
1124 }
1125 }
1126
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001127 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001128}
1129
Ian Rogersef7d42f2014-01-06 12:55:46 -08001130template <typename T>
1131static void CopyArrayData(mirror::Array* a, JDWP::Request& src, int offset, int count)
1132 NO_THREAD_SAFETY_ANALYSIS {
1133 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001134 DCHECK(a->GetClass()->IsPrimitiveArray());
1135
Ian Rogersef7d42f2014-01-06 12:55:46 -08001136 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001137 for (int i = 0; i < count; ++i) {
1138 *dst++ = src.ReadValue(sizeof(T));
1139 }
1140}
1141
Elliott Hughes88d63092013-01-09 09:55:54 -08001142JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001143 JDWP::Request& request)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001144 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001145 JDWP::JdwpError status;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001146 mirror::Array* dst = DecodeArray(array_id, status);
1147 if (dst == NULL) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001148 return status;
1149 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001150
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001151 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001152 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001153 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001154 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001155 const char* descriptor = ClassHelper(dst->GetClass()).GetDescriptor();
1156 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor + 1);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001157
1158 if (IsPrimitiveTag(tag)) {
1159 size_t width = GetTagWidth(tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001160 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001161 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001162 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001163 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001164 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001165 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001166 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001167 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001168 }
1169 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001170 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001171 for (int i = 0; i < count; ++i) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001172 JDWP::ObjectId id = request.ReadObjectId();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001173 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001174 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001175 return JDWP::ERR_INVALID_OBJECT;
1176 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001177 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001178 }
1179 }
1180
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001181 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001182}
1183
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001184JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001185 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001186}
1187
Elliott Hughes88d63092013-01-09 09:55:54 -08001188JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001189 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001190 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001191 if (c == NULL) {
1192 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001193 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001194 new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001195 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001196}
1197
Elliott Hughesbf13d362011-12-08 15:51:37 -08001198/*
1199 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1200 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001201JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001202 JDWP::ObjectId& new_array) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001203 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001204 mirror::Class* c = DecodeClass(array_class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001205 if (c == NULL) {
1206 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001207 }
Ian Rogers6fac4472014-02-25 17:01:10 -08001208 new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
1209 c->GetComponentSize(),
1210 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001211 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001212}
1213
Elliott Hughes88d63092013-01-09 09:55:54 -08001214bool Dbg::MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001215 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001216 mirror::Class* c1 = DecodeClass(instance_class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001217 CHECK(c1 != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001218 mirror::Class* c2 = DecodeClass(class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001219 CHECK(c2 != NULL);
Sebastien Hertz123756a2013-11-27 15:49:42 +01001220 return c2->IsAssignableFrom(c1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001221}
1222
Brian Carlstromea46f952013-07-30 01:26:50 -07001223static JDWP::FieldId ToFieldId(const mirror::ArtField* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001224 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001225 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001226 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001227}
1228
Brian Carlstromea46f952013-07-30 01:26:50 -07001229static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001230 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001231 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001232 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001233}
1234
Brian Carlstromea46f952013-07-30 01:26:50 -07001235static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001236 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001237 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001238 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001239}
1240
Brian Carlstromea46f952013-07-30 01:26:50 -07001241static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001242 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001243 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001244 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001245}
1246
Brian Carlstromea46f952013-07-30 01:26:50 -07001247static void SetLocation(JDWP::JdwpLocation& location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001248 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001249 if (m == NULL) {
1250 memset(&location, 0, sizeof(location));
1251 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001252 mirror::Class* c = m->GetDeclaringClass();
Elliott Hughes74847412012-06-20 18:10:21 -07001253 location.type_tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1254 location.class_id = gRegistry->Add(c);
1255 location.method_id = ToMethodId(m);
Ian Rogers0399dde2012-06-06 17:09:28 -07001256 location.dex_pc = dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001257 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001258}
1259
Elliott Hughesa96836a2013-01-17 12:27:49 -08001260std::string Dbg::GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001261 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001262 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001263 return MethodHelper(m).GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001264}
1265
Elliott Hughesa96836a2013-01-17 12:27:49 -08001266std::string Dbg::GetFieldName(JDWP::FieldId field_id)
1267 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001268 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughesa96836a2013-01-17 12:27:49 -08001269 return FieldHelper(f).GetName();
1270}
1271
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001272/*
1273 * Augment the access flags for synthetic methods and fields by setting
1274 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1275 * flags not specified by the Java programming language.
1276 */
1277static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1278 accessFlags &= kAccJavaFlagsMask;
1279 if ((accessFlags & kAccSynthetic) != 0) {
1280 accessFlags |= 0xf0000000;
1281 }
1282 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001283}
1284
Elliott Hughesdbb40792011-11-18 17:05:22 -08001285/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001286 * Circularly shifts registers so that arguments come first. Debuggers
1287 * expect slots to begin with arguments, but dex code places them at
1288 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001289 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001290static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1291 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1292 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
1293 uint16_t ins_size = code_item->ins_size_;
1294 uint16_t locals_size = code_item->registers_size_ - ins_size;
1295 if (slot >= locals_size) {
1296 return slot - locals_size;
1297 } else {
1298 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001299 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001300}
1301
Jeff Haob7cefc72013-11-14 14:51:09 -08001302/*
1303 * Circularly shifts registers so that arguments come last. Reverts
1304 * slots to dex style argument placement.
1305 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001306static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001307 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Jeff Haob7cefc72013-11-14 14:51:09 -08001308 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
1309 uint16_t ins_size = code_item->ins_size_;
1310 uint16_t locals_size = code_item->registers_size_ - ins_size;
1311 if (slot < ins_size) {
1312 return slot + locals_size;
1313 } else {
1314 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001315 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001316}
1317
Elliott Hughes88d63092013-01-09 09:55:54 -08001318JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001319 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001320 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001321 if (c == NULL) {
1322 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001323 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001324
1325 size_t instance_field_count = c->NumInstanceFields();
1326 size_t static_field_count = c->NumStaticFields();
1327
1328 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1329
1330 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001331 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001332 FieldHelper fh(f);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001333 expandBufAddFieldId(pReply, ToFieldId(f));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001334 expandBufAddUtf8String(pReply, fh.GetName());
1335 expandBufAddUtf8String(pReply, fh.GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001336 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001337 static const char genericSignature[1] = "";
1338 expandBufAddUtf8String(pReply, genericSignature);
1339 }
1340 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1341 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001342 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001343}
1344
Elliott Hughes88d63092013-01-09 09:55:54 -08001345JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001346 JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001347 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001348 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001349 if (c == NULL) {
1350 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001351 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001352
1353 size_t direct_method_count = c->NumDirectMethods();
1354 size_t virtual_method_count = c->NumVirtualMethods();
1355
1356 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1357
1358 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001359 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001360 MethodHelper mh(m);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001361 expandBufAddMethodId(pReply, ToMethodId(m));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001362 expandBufAddUtf8String(pReply, mh.GetName());
Ian Rogersd91d6d62013-09-25 20:26:14 -07001363 expandBufAddUtf8String(pReply, mh.GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001364 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001365 static const char genericSignature[1] = "";
1366 expandBufAddUtf8String(pReply, genericSignature);
1367 }
1368 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1369 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001370 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001371}
1372
Elliott Hughes88d63092013-01-09 09:55:54 -08001373JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001374 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001375 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001376 if (c == NULL) {
1377 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001378 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001379
1380 ClassHelper kh(c);
Ian Rogersd24e2642012-06-06 21:21:43 -07001381 size_t interface_count = kh.NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001382 expandBufAdd4BE(pReply, interface_count);
1383 for (size_t i = 0; i < interface_count; ++i) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001384 expandBufAddRefTypeId(pReply, gRegistry->AddRefType(kh.GetDirectInterface(i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001385 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001386 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001387}
1388
Elliott Hughes88d63092013-01-09 09:55:54 -08001389void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001390 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001391 struct DebugCallbackContext {
1392 int numItems;
1393 JDWP::ExpandBuf* pReply;
1394
Elliott Hughes2435a572012-02-17 16:07:41 -08001395 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001396 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1397 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001398 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001399 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001400 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001401 }
1402 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001403 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001404 MethodHelper mh(m);
Elliott Hughes03181a82011-11-17 17:22:21 -08001405 uint64_t start, end;
1406 if (m->IsNative()) {
1407 start = -1;
1408 end = -1;
1409 } else {
1410 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001411 // Return the index of the last instruction
1412 end = mh.GetCodeItem()->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001413 }
1414
1415 expandBufAdd8BE(pReply, start);
1416 expandBufAdd8BE(pReply, end);
1417
1418 // Add numLines later
1419 size_t numLinesOffset = expandBufGetLength(pReply);
1420 expandBufAdd4BE(pReply, 0);
1421
1422 DebugCallbackContext context;
1423 context.numItems = 0;
1424 context.pReply = pReply;
1425
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001426 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
1427 DebugCallbackContext::Callback, NULL, &context);
Elliott Hughes03181a82011-11-17 17:22:21 -08001428
1429 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001430}
1431
Elliott Hughes88d63092013-01-09 09:55:54 -08001432void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001433 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001434 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001435 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001436 size_t variable_count;
1437 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001438
Jeff Haob7cefc72013-11-14 14:51:09 -08001439 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress, const char* name, const char* descriptor, const char* signature)
1440 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001441 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1442
Jeff Haob7cefc72013-11-14 14:51:09 -08001443 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 -08001444
Jeff Haob7cefc72013-11-14 14:51:09 -08001445 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001446
Elliott Hughesdbb40792011-11-18 17:05:22 -08001447 expandBufAdd8BE(pContext->pReply, startAddress);
1448 expandBufAddUtf8String(pContext->pReply, name);
1449 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001450 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001451 expandBufAddUtf8String(pContext->pReply, signature);
1452 }
1453 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1454 expandBufAdd4BE(pContext->pReply, slot);
1455
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001456 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001457 }
1458 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001459 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001460 MethodHelper mh(m);
1461 const DexFile::CodeItem* code_item = mh.GetCodeItem();
Elliott Hughesdbb40792011-11-18 17:05:22 -08001462
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001463 // arg_count considers doubles and longs to take 2 units.
1464 // variable_count considers everything to take 1 unit.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001465 std::string shorty(mh.GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001466 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001467
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001468 // We don't know the total number of variables yet, so leave a blank and update it later.
1469 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001470 expandBufAdd4BE(pReply, 0);
1471
1472 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001473 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001474 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001475 context.variable_count = 0;
1476 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001477
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001478 mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL,
1479 DebugCallbackContext::Callback, &context);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001480
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001481 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001482}
1483
Jeff Hao579b0242013-11-18 13:16:49 -08001484void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1485 JDWP::ExpandBuf* pReply) {
1486 mirror::ArtMethod* m = FromMethodId(method_id);
1487 JDWP::JdwpTag tag = BasicTagFromDescriptor(MethodHelper(m).GetShorty());
1488 OutputJValue(tag, return_value, pReply);
1489}
1490
Elliott Hughes9777ba22013-01-17 09:04:19 -08001491JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
1492 std::vector<uint8_t>& bytecodes)
1493 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001494 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001495 if (m == NULL) {
1496 return JDWP::ERR_INVALID_METHODID;
1497 }
1498 MethodHelper mh(m);
1499 const DexFile::CodeItem* code_item = mh.GetCodeItem();
1500 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1501 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1502 const uint8_t* end = begin + byte_count;
1503 for (const uint8_t* p = begin; p != end; ++p) {
1504 bytecodes.push_back(*p);
1505 }
1506 return JDWP::ERR_NONE;
1507}
1508
Elliott Hughes88d63092013-01-09 09:55:54 -08001509JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
1510 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001511}
1512
Elliott Hughes88d63092013-01-09 09:55:54 -08001513JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
1514 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001515}
1516
Elliott Hughes88d63092013-01-09 09:55:54 -08001517static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1518 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001519 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001520 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001521 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001522 mirror::Class* c = DecodeClass(ref_type_id, status);
Elliott Hughes88d63092013-01-09 09:55:54 -08001523 if (ref_type_id != 0 && c == NULL) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001524 return status;
1525 }
1526
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001527 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001528 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001529 return JDWP::ERR_INVALID_OBJECT;
1530 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001531 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001532
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001533 mirror::Class* receiver_class = c;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001534 if (receiver_class == NULL && o != NULL) {
1535 receiver_class = o->GetClass();
1536 }
1537 // TODO: should we give up now if receiver_class is NULL?
1538 if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
1539 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001540 return JDWP::ERR_INVALID_FIELDID;
1541 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001542
Elliott Hughes0cf74332012-02-23 23:14:00 -08001543 // The RI only enforces the static/non-static mismatch in one direction.
1544 // TODO: should we change the tests and check both?
1545 if (is_static) {
1546 if (!f->IsStatic()) {
1547 return JDWP::ERR_INVALID_FIELDID;
1548 }
1549 } else {
1550 if (f->IsStatic()) {
1551 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001552 }
1553 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001554 if (f->IsStatic()) {
1555 o = f->GetDeclaringClass();
1556 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001557
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001558 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001559 JValue field_value;
1560 if (tag == JDWP::JT_VOID) {
1561 LOG(FATAL) << "Unknown tag: " << tag;
1562 } else if (!IsPrimitiveTag(tag)) {
1563 field_value.SetL(f->GetObject(o));
1564 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1565 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001566 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001567 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001568 }
Jeff Hao579b0242013-11-18 13:16:49 -08001569 Dbg::OutputJValue(tag, &field_value, pReply);
1570
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001571 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001572}
1573
Elliott Hughes88d63092013-01-09 09:55:54 -08001574JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001575 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001576 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001577}
1578
Elliott Hughes88d63092013-01-09 09:55:54 -08001579JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) {
1580 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001581}
1582
Elliott Hughes88d63092013-01-09 09:55:54 -08001583static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001584 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001585 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001586 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001587 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001588 return JDWP::ERR_INVALID_OBJECT;
1589 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001590 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001591
1592 // The RI only enforces the static/non-static mismatch in one direction.
1593 // TODO: should we change the tests and check both?
1594 if (is_static) {
1595 if (!f->IsStatic()) {
1596 return JDWP::ERR_INVALID_FIELDID;
1597 }
1598 } else {
1599 if (f->IsStatic()) {
1600 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001601 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001602 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001603 if (f->IsStatic()) {
1604 o = f->GetDeclaringClass();
1605 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001606
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001607 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001608
1609 if (IsPrimitiveTag(tag)) {
1610 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001611 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001612 // Debugging can't use transactional mode (runtime only).
1613 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001614 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001615 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001616 // Debugging can't use transactional mode (runtime only).
1617 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001618 }
1619 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001620 mirror::Object* v = gRegistry->Get<mirror::Object*>(value);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001621 if (v == ObjectRegistry::kInvalidObject) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001622 return JDWP::ERR_INVALID_OBJECT;
1623 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001624 if (v != NULL) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001625 mirror::Class* field_type = FieldHelper(f).GetType();
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001626 if (!field_type->IsAssignableFrom(v->GetClass())) {
1627 return JDWP::ERR_INVALID_OBJECT;
1628 }
1629 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001630 // Debugging can't use transactional mode (runtime only).
1631 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001632 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001633
1634 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001635}
1636
Elliott Hughes88d63092013-01-09 09:55:54 -08001637JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001638 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001639 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001640}
1641
Elliott Hughes88d63092013-01-09 09:55:54 -08001642JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1643 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001644}
1645
Elliott Hughes88d63092013-01-09 09:55:54 -08001646std::string Dbg::StringToUtf8(JDWP::ObjectId string_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001647 mirror::String* s = gRegistry->Get<mirror::String*>(string_id);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001648 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001649}
1650
Jeff Hao579b0242013-11-18 13:16:49 -08001651void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1652 if (IsPrimitiveTag(tag)) {
1653 expandBufAdd1(pReply, tag);
1654 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1655 expandBufAdd1(pReply, return_value->GetI());
1656 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1657 expandBufAdd2BE(pReply, return_value->GetI());
1658 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1659 expandBufAdd4BE(pReply, return_value->GetI());
1660 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1661 expandBufAdd8BE(pReply, return_value->GetJ());
1662 } else {
1663 CHECK_EQ(tag, JDWP::JT_VOID);
1664 }
1665 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001666 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001667 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001668 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001669 expandBufAddObjectId(pReply, gRegistry->Add(value));
1670 }
1671}
1672
Elliott Hughes221229c2013-01-08 18:17:50 -08001673JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string& name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001674 ScopedObjectAccessUnchecked soa(Thread::Current());
1675 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001676 Thread* thread;
1677 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1678 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1679 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001680 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001681
1682 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001683 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Brian Carlstromea46f952013-07-30 01:26:50 -07001684 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001685 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1686 mirror::String* s =
1687 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Elliott Hughes221229c2013-01-08 18:17:50 -08001688 if (s != NULL) {
1689 name = s->ToModifiedUtf8();
1690 }
1691 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001692}
1693
Elliott Hughes221229c2013-01-08 18:17:50 -08001694JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001695 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001696 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001697 if (thread_object == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001698 return JDWP::ERR_INVALID_OBJECT;
1699 }
Ian Rogers98379392014-02-24 16:53:16 -08001700 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001701 // Okay, so it's an object, but is it actually a thread?
Ian Rogers50b35e22012-10-04 10:09:15 -07001702 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001703 Thread* thread;
1704 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1705 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1706 // Zombie threads are in the null group.
1707 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
1708 return JDWP::ERR_NONE;
1709 }
1710 if (error != JDWP::ERR_NONE) {
1711 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08001712 }
Ian Rogers98379392014-02-24 16:53:16 -08001713 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1714 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001715 mirror::ArtField* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001716 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001717 mirror::Object* group = f->GetObject(thread_object);
Elliott Hughes499c5132011-11-17 14:55:11 -08001718 CHECK(group != NULL);
Elliott Hughes2435a572012-02-17 16:07:41 -08001719 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
Ian Rogers98379392014-02-24 16:53:16 -08001720 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes2435a572012-02-17 16:07:41 -08001721
1722 expandBufAddObjectId(pReply, thread_group_id);
1723 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001724}
1725
Elliott Hughes88d63092013-01-09 09:55:54 -08001726std::string Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001727 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001728 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001729 CHECK(thread_group != nullptr);
1730 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupName");
1731 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1732 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001733 mirror::ArtField* f = c->FindInstanceField("name", "Ljava/lang/String;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001734 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001735 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Ian Rogers98379392014-02-24 16:53:16 -08001736 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes499c5132011-11-17 14:55:11 -08001737 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001738}
1739
Elliott Hughes88d63092013-01-09 09:55:54 -08001740JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id) {
Ian Rogers98379392014-02-24 16:53:16 -08001741 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001742 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001743 CHECK(thread_group != nullptr);
1744 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupParent");
1745 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1746 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001747 mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
Elliott Hughes4e235312011-12-02 11:34:15 -08001748 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001749 mirror::Object* parent = f->GetObject(thread_group);
Ian Rogers98379392014-02-24 16:53:16 -08001750 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes4e235312011-12-02 11:34:15 -08001751 return gRegistry->Add(parent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001752}
1753
1754JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001755 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001756 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001757 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001758 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001759}
1760
1761JDWP::ObjectId Dbg::GetMainThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001762 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001763 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001764 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001765 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001766}
1767
Jeff Hao920af3e2013-08-28 15:46:38 -07001768JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
1769 switch (state) {
1770 case kBlocked:
1771 return JDWP::TS_MONITOR;
1772 case kNative:
1773 case kRunnable:
1774 case kSuspended:
1775 return JDWP::TS_RUNNING;
1776 case kSleeping:
1777 return JDWP::TS_SLEEPING;
1778 case kStarting:
1779 case kTerminated:
1780 return JDWP::TS_ZOMBIE;
1781 case kTimedWaiting:
1782 case kWaitingForDebuggerSend:
1783 case kWaitingForDebuggerSuspension:
1784 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01001785 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07001786 case kWaitingForGcToComplete:
1787 case kWaitingForCheckPointsToRun:
1788 case kWaitingForJniOnLoad:
1789 case kWaitingForSignalCatcherOutput:
1790 case kWaitingInMainDebuggerLoop:
1791 case kWaitingInMainSignalCatcherLoop:
1792 case kWaitingPerformingGc:
1793 case kWaiting:
1794 return JDWP::TS_WAIT;
1795 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
1796 }
1797 LOG(FATAL) << "Unknown thread state: " << state;
1798 return JDWP::TS_ZOMBIE;
1799}
1800
Elliott Hughes221229c2013-01-08 18:17:50 -08001801JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus, JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001802 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08001803
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001804 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
1805
Ian Rogers50b35e22012-10-04 10:09:15 -07001806 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001807 Thread* thread;
1808 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1809 if (error != JDWP::ERR_NONE) {
1810 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1811 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08001812 return JDWP::ERR_NONE;
1813 }
1814 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08001815 }
1816
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001817 if (IsSuspendedForDebugger(soa, thread)) {
1818 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08001819 }
1820
Jeff Hao920af3e2013-08-28 15:46:38 -07001821 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08001822 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001823}
1824
Elliott Hughes221229c2013-01-08 18:17:50 -08001825JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001826 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07001827 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001828 Thread* thread;
1829 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1830 if (error != JDWP::ERR_NONE) {
1831 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08001832 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001833 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001834 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08001835 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001836}
1837
Elliott Hughesf9501702013-01-11 11:22:27 -08001838JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
1839 ScopedObjectAccess soa(Thread::Current());
1840 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1841 Thread* thread;
1842 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1843 if (error != JDWP::ERR_NONE) {
1844 return error;
1845 }
1846 thread->Interrupt();
1847 return JDWP::ERR_NONE;
1848}
1849
Elliott Hughescaf76542012-06-28 16:08:22 -07001850void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) {
Ian Rogers365c1022012-06-22 15:05:28 -07001851 class ThreadListVisitor {
1852 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001853 ThreadListVisitor(const ScopedObjectAccessUnchecked& soa, mirror::Object* desired_thread_group,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001854 std::vector<JDWP::ObjectId>& thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001855 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001856 : soa_(soa), desired_thread_group_(desired_thread_group), thread_ids_(thread_ids) {}
Ian Rogers365c1022012-06-22 15:05:28 -07001857
Elliott Hughesa2155262011-11-16 16:26:58 -08001858 static void Visit(Thread* t, void* arg) {
1859 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
1860 }
1861
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001862 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1863 // annotalysis.
1864 void Visit(Thread* t) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001865 if (t == Dbg::GetDebugThread()) {
1866 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
1867 // query all threads, so it's easier if we just don't tell them about this thread.
1868 return;
1869 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001870 mirror::Object* peer = t->GetPeer();
jeffhao0dfbb7e2012-11-28 15:26:03 -08001871 if (IsInDesiredThreadGroup(peer)) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001872 thread_ids_.push_back(gRegistry->Add(peer));
Elliott Hughesa2155262011-11-16 16:26:58 -08001873 }
1874 }
1875
Ian Rogers365c1022012-06-22 15:05:28 -07001876 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001877 bool IsInDesiredThreadGroup(mirror::Object* peer)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001878 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao0dfbb7e2012-11-28 15:26:03 -08001879 // peer might be NULL if the thread is still starting up.
1880 if (peer == NULL) {
1881 // We can't tell the debugger about this thread yet.
1882 // TODO: if we identified threads to the debugger by their Thread*
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001883 // rather than their peer's mirror::Object*, we could fix this.
jeffhao0dfbb7e2012-11-28 15:26:03 -08001884 // Doing so might help us report ZOMBIE threads too.
1885 return false;
1886 }
jeffhaoc1e04902012-12-13 12:41:10 -08001887 // Do we want threads from all thread groups?
1888 if (desired_thread_group_ == NULL) {
1889 return true;
1890 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001891 mirror::Object* group = soa_.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(peer);
jeffhao0dfbb7e2012-11-28 15:26:03 -08001892 return (group == desired_thread_group_);
1893 }
1894
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07001895 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001896 mirror::Object* const desired_thread_group_;
Elliott Hughescaf76542012-06-28 16:08:22 -07001897 std::vector<JDWP::ObjectId>& thread_ids_;
Elliott Hughesa2155262011-11-16 16:26:58 -08001898 };
1899
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001900 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001901 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001902 ThreadListVisitor tlv(soa, thread_group, thread_ids);
Ian Rogers50b35e22012-10-04 10:09:15 -07001903 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07001904 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
Elliott Hughescaf76542012-06-28 16:08:22 -07001905}
Elliott Hughesa2155262011-11-16 16:26:58 -08001906
Elliott Hughescaf76542012-06-28 16:08:22 -07001907void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001908 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001909 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughescaf76542012-06-28 16:08:22 -07001910
1911 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Brian Carlstromea46f952013-07-30 01:26:50 -07001912 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001913 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Elliott Hughescaf76542012-06-28 16:08:22 -07001914
1915 // Get the array and size out of the ArrayList<ThreadGroup>...
Brian Carlstromea46f952013-07-30 01:26:50 -07001916 mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
1917 mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001918 mirror::ObjectArray<mirror::Object>* groups_array =
1919 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
Elliott Hughescaf76542012-06-28 16:08:22 -07001920 const int32_t size = size_field->GetInt(groups_array_list);
1921
1922 // Copy the first 'size' elements out of the array into the result.
1923 for (int32_t i = 0; i < size; ++i) {
1924 child_thread_group_ids.push_back(gRegistry->Add(groups_array->Get(i)));
Elliott Hughesa2155262011-11-16 16:26:58 -08001925 }
1926}
1927
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001928static int GetStackDepth(Thread* thread)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001929 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07001930 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001931 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogers7a22fa62013-01-23 12:16:16 -08001932 : StackVisitor(thread, NULL), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07001933
Elliott Hughes64f574f2013-02-20 14:57:12 -08001934 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1935 // annotalysis.
1936 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07001937 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08001938 ++depth;
1939 }
Elliott Hughes530fa002012-03-12 11:44:49 -07001940 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001941 }
1942 size_t depth;
1943 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07001944
Ian Rogers7a22fa62013-01-23 12:16:16 -08001945 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07001946 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001947 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001948}
1949
Elliott Hughes221229c2013-01-08 18:17:50 -08001950JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001951 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08001952 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001953 Thread* thread;
1954 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1955 if (error != JDWP::ERR_NONE) {
1956 return error;
1957 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08001958 if (!IsSuspendedForDebugger(soa, thread)) {
1959 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1960 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001961 result = GetStackDepth(thread);
1962 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08001963}
1964
Ian Rogers306057f2012-11-26 12:45:53 -08001965JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
1966 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001967 class GetFrameVisitor : public StackVisitor {
1968 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08001969 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001970 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08001971 : StackVisitor(thread, NULL), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001972 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
1973 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08001974 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001975
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001976 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1977 // annotalysis.
1978 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07001979 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001980 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08001981 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001982 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07001983 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001984 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001985 if (depth_ >= start_frame_) {
1986 JDWP::FrameId frame_id(GetFrameId());
1987 JDWP::JdwpLocation location;
1988 SetLocation(location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08001989 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001990 expandBufAdd8BE(buf_, frame_id);
1991 expandBufAddLocation(buf_, location);
1992 }
1993 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07001994 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08001995 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001996
1997 private:
1998 size_t depth_;
1999 const size_t start_frame_;
2000 const size_t frame_count_;
2001 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002002 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002003
2004 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002005 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002006 Thread* thread;
2007 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2008 if (error != JDWP::ERR_NONE) {
2009 return error;
2010 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002011 if (!IsSuspendedForDebugger(soa, thread)) {
2012 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2013 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002014 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002015 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002016 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002017}
2018
2019JDWP::ObjectId Dbg::GetThreadSelfId() {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002020 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08002021 return gRegistry->Add(soa.Self()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002022}
2023
Elliott Hughes475fc232011-10-25 15:00:35 -07002024void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002025 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002026}
2027
2028void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07002029 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002030}
2031
Elliott Hughes221229c2013-01-08 18:17:50 -08002032JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002033 ScopedLocalRef<jobject> peer(Thread::Current()->GetJniEnv(), NULL);
2034 {
2035 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002036 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002037 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002038 if (peer.get() == NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002039 return JDWP::ERR_THREAD_NOT_ALIVE;
2040 }
2041 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002042 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002043 Thread* thread = ThreadList::SuspendThreadByPeer(peer.get(), request_suspension, true,
2044 &timed_out);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002045 if (thread != NULL) {
2046 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002047 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002048 return JDWP::ERR_INTERNAL;
2049 } else {
2050 return JDWP::ERR_THREAD_NOT_ALIVE;
2051 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002052}
2053
Elliott Hughes221229c2013-01-08 18:17:50 -08002054void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002055 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002056 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
jeffhaoa77f0f62012-12-05 17:19:31 -08002057 Thread* thread;
2058 {
2059 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2060 thread = Thread::FromManagedThread(soa, peer);
2061 }
Elliott Hughes4e235312011-12-02 11:34:15 -08002062 if (thread == NULL) {
2063 LOG(WARNING) << "No such thread for resume: " << peer;
2064 return;
2065 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002066 bool needs_resume;
2067 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002068 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002069 needs_resume = thread->GetSuspendCount() > 0;
2070 }
2071 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002072 Runtime::Current()->GetThreadList()->Resume(thread, true);
2073 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002074}
2075
2076void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002077 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002078}
2079
Ian Rogers0399dde2012-06-06 17:09:28 -07002080struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002081 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002082 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002083 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002084
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002085 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2086 // annotalysis.
2087 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002088 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002089 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002090 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002091 this_object = GetThisObject();
2092 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002093 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002094 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002095
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002096 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002097 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002098};
2099
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002100JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2101 JDWP::ObjectId* result) {
2102 ScopedObjectAccessUnchecked soa(Thread::Current());
2103 Thread* thread;
2104 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002105 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002106 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2107 if (error != JDWP::ERR_NONE) {
2108 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002109 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002110 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002111 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2112 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002113 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002114 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002115 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002116 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002117 *result = gRegistry->Add(visitor.this_object);
2118 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002119}
2120
Ian Rogers98379392014-02-24 16:53:16 -08002121void Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2122 JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002123 struct GetLocalVisitor : public StackVisitor {
Ian Rogers98379392014-02-24 16:53:16 -08002124 GetLocalVisitor(const ScopedObjectAccessUnchecked& soa, Thread* thread, Context* context,
2125 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002126 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers98379392014-02-24 16:53:16 -08002127 : StackVisitor(thread, context), soa_(soa), frame_id_(frame_id), slot_(slot), tag_(tag),
Ian Rogersca190662012-06-26 15:45:57 -07002128 buf_(buf), width_(width) {}
2129
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002130 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2131 // annotalysis.
2132 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002133 if (GetFrameId() != frame_id_) {
2134 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08002135 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002136 // TODO: check that the tag is compatible with the actual type of the slot!
Brian Carlstromea46f952013-07-30 01:26:50 -07002137 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002138 uint16_t reg = DemangleSlot(slot_, m);
Elliott Hughesdbb40792011-11-18 17:05:22 -08002139
Ian Rogers0399dde2012-06-06 17:09:28 -07002140 switch (tag_) {
2141 case JDWP::JT_BOOLEAN:
2142 {
2143 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002144 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002145 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2146 JDWP::Set1(buf_+1, intVal != 0);
2147 }
2148 break;
2149 case JDWP::JT_BYTE:
2150 {
2151 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002152 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002153 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2154 JDWP::Set1(buf_+1, intVal);
2155 }
2156 break;
2157 case JDWP::JT_SHORT:
2158 case JDWP::JT_CHAR:
2159 {
2160 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002161 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002162 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2163 JDWP::Set2BE(buf_+1, intVal);
2164 }
2165 break;
2166 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002167 {
2168 CHECK_EQ(width_, 4U);
2169 uint32_t intVal = GetVReg(m, reg, kIntVReg);
2170 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2171 JDWP::Set4BE(buf_+1, intVal);
2172 }
2173 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002174 case JDWP::JT_FLOAT:
2175 {
2176 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002177 uint32_t intVal = GetVReg(m, reg, kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002178 VLOG(jdwp) << "get int/float local " << reg << " = " << intVal;
2179 JDWP::Set4BE(buf_+1, intVal);
2180 }
2181 break;
2182 case JDWP::JT_ARRAY:
2183 {
2184 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002185 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002186 VLOG(jdwp) << "get array local " << reg << " = " << o;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002187 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002188 LOG(FATAL) << "Register " << reg << " expected to hold array: " << o;
2189 }
2190 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2191 }
2192 break;
2193 case JDWP::JT_CLASS_LOADER:
2194 case JDWP::JT_CLASS_OBJECT:
2195 case JDWP::JT_OBJECT:
2196 case JDWP::JT_STRING:
2197 case JDWP::JT_THREAD:
2198 case JDWP::JT_THREAD_GROUP:
2199 {
2200 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002201 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002202 VLOG(jdwp) << "get object local " << reg << " = " << o;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002203 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002204 LOG(FATAL) << "Register " << reg << " expected to hold object: " << o;
2205 }
Ian Rogers98379392014-02-24 16:53:16 -08002206 tag_ = TagFromObject(soa_, o);
Ian Rogers0399dde2012-06-06 17:09:28 -07002207 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2208 }
2209 break;
2210 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002211 {
2212 CHECK_EQ(width_, 8U);
2213 uint32_t lo = GetVReg(m, reg, kDoubleLoVReg);
2214 uint64_t hi = GetVReg(m, reg + 1, kDoubleHiVReg);
2215 uint64_t longVal = (hi << 32) | lo;
2216 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2217 JDWP::Set8BE(buf_+1, longVal);
2218 }
2219 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002220 case JDWP::JT_LONG:
2221 {
2222 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002223 uint32_t lo = GetVReg(m, reg, kLongLoVReg);
2224 uint64_t hi = GetVReg(m, reg + 1, kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002225 uint64_t longVal = (hi << 32) | lo;
2226 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2227 JDWP::Set8BE(buf_+1, longVal);
2228 }
2229 break;
2230 default:
2231 LOG(FATAL) << "Unknown tag " << tag_;
2232 break;
2233 }
2234
2235 // Prepend tag, which may have been updated.
2236 JDWP::Set1(buf_, tag_);
2237 return false;
2238 }
Ian Rogers98379392014-02-24 16:53:16 -08002239 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002240 const JDWP::FrameId frame_id_;
2241 const int slot_;
2242 JDWP::JdwpTag tag_;
2243 uint8_t* const buf_;
2244 const size_t width_;
2245 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002246
2247 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002248 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002249 Thread* thread;
2250 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2251 if (error != JDWP::ERR_NONE) {
2252 return;
2253 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002254 UniquePtr<Context> context(Context::Create());
Ian Rogers98379392014-02-24 16:53:16 -08002255 GetLocalVisitor visitor(soa, thread, context.get(), frame_id, slot, tag, buf, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002256 visitor.WalkStack();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002257}
2258
Elliott Hughes88d63092013-01-09 09:55:54 -08002259void Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag,
Ian Rogers0399dde2012-06-06 17:09:28 -07002260 uint64_t value, size_t width) {
2261 struct SetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002262 SetLocalVisitor(Thread* thread, Context* context,
Ian Rogers0399dde2012-06-06 17:09:28 -07002263 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
Ian Rogersca190662012-06-26 15:45:57 -07002264 size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002265 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002266 : StackVisitor(thread, context),
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002267 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width) {}
Ian Rogersca190662012-06-26 15:45:57 -07002268
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002269 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2270 // annotalysis.
2271 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002272 if (GetFrameId() != frame_id_) {
2273 return true; // Not our frame, carry on.
2274 }
2275 // TODO: check that the tag is compatible with the actual type of the slot!
Brian Carlstromea46f952013-07-30 01:26:50 -07002276 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002277 uint16_t reg = DemangleSlot(slot_, m);
2278
2279 switch (tag_) {
2280 case JDWP::JT_BOOLEAN:
2281 case JDWP::JT_BYTE:
2282 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002283 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002284 break;
2285 case JDWP::JT_SHORT:
2286 case JDWP::JT_CHAR:
2287 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002288 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002289 break;
2290 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002291 CHECK_EQ(width_, 4U);
2292 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
2293 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002294 case JDWP::JT_FLOAT:
2295 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002296 SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002297 break;
2298 case JDWP::JT_ARRAY:
2299 case JDWP::JT_OBJECT:
2300 case JDWP::JT_STRING:
2301 {
2302 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002303 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_));
Elliott Hughes64f574f2013-02-20 14:57:12 -08002304 if (o == ObjectRegistry::kInvalidObject) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002305 UNIMPLEMENTED(FATAL) << "return an error code when given an invalid object to store";
2306 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002307 SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), kReferenceVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002308 }
2309 break;
2310 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002311 CHECK_EQ(width_, 8U);
2312 SetVReg(m, reg, static_cast<uint32_t>(value_), kDoubleLoVReg);
2313 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kDoubleHiVReg);
2314 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002315 case JDWP::JT_LONG:
2316 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002317 SetVReg(m, reg, static_cast<uint32_t>(value_), kLongLoVReg);
2318 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002319 break;
2320 default:
2321 LOG(FATAL) << "Unknown tag " << tag_;
2322 break;
2323 }
2324 return false;
2325 }
2326
2327 const JDWP::FrameId frame_id_;
2328 const int slot_;
2329 const JDWP::JdwpTag tag_;
2330 const uint64_t value_;
2331 const size_t width_;
2332 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002333
2334 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002335 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002336 Thread* thread;
2337 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2338 if (error != JDWP::ERR_NONE) {
2339 return;
2340 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002341 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002342 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002343 visitor.WalkStack();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002344}
2345
Ian Rogersef7d42f2014-01-06 12:55:46 -08002346void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002347 int event_flags, const JValue* return_value) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002348 mirror::Class* c = m->GetDeclaringClass();
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002349
2350 JDWP::JdwpLocation location;
Elliott Hughes74847412012-06-20 18:10:21 -07002351 location.type_tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
Elliott Hughes64f574f2013-02-20 14:57:12 -08002352 location.class_id = gRegistry->AddRefType(c);
Elliott Hughes74847412012-06-20 18:10:21 -07002353 location.method_id = ToMethodId(m);
Elliott Hughes972a47b2012-02-21 18:16:06 -08002354 location.dex_pc = m->IsNative() ? -1 : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002355
Elliott Hughes64f574f2013-02-20 14:57:12 -08002356 // If 'this_object' isn't already in the registry, we know that we're not looking for it,
2357 // so there's no point adding it to the registry and burning through ids.
2358 JDWP::ObjectId this_id = 0;
2359 if (gRegistry->Contains(this_object)) {
2360 this_id = gRegistry->Add(this_object);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002361 }
Jeff Hao579b0242013-11-18 13:16:49 -08002362 gJdwpState->PostLocationEvent(&location, this_id, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002363}
2364
Ian Rogers62d6c772013-02-27 08:32:07 -08002365void Dbg::PostException(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002366 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002367 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002368 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002369 return;
2370 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002371
Ian Rogers62d6c772013-02-27 08:32:07 -08002372 JDWP::JdwpLocation jdwp_throw_location;
2373 SetLocation(jdwp_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002374 JDWP::JdwpLocation catch_location;
Elliott Hughescaf76542012-06-28 16:08:22 -07002375 SetLocation(catch_location, catch_method, catch_dex_pc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002376
2377 // We need 'this' for InstanceOnly filters.
Ian Rogers62d6c772013-02-27 08:32:07 -08002378 JDWP::ObjectId this_id = gRegistry->Add(throw_location.GetThis());
Elliott Hughes64f574f2013-02-20 14:57:12 -08002379 JDWP::ObjectId exception_id = gRegistry->Add(exception_object);
2380 JDWP::RefTypeId exception_class_id = gRegistry->AddRefType(exception_object->GetClass());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002381
Ian Rogers62d6c772013-02-27 08:32:07 -08002382 gJdwpState->PostException(&jdwp_throw_location, exception_id, exception_class_id, &catch_location,
2383 this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002384}
2385
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002386void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002387 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002388 return;
2389 }
2390
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002391 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002392 // debuggers seem to like that. There might be some advantage to honesty,
2393 // since the class may not yet be verified.
2394 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
2395 JDWP::JdwpTypeTag tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002396 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c),
Ian Rogersdfb325e2013-10-30 01:00:44 -07002397 ClassHelper(c).GetDescriptor(), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002398}
2399
Ian Rogers62d6c772013-02-27 08:32:07 -08002400void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -08002401 mirror::ArtMethod* m, uint32_t dex_pc) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002402 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002403 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002404 }
2405
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002406 int event_flags = 0;
2407
Elliott Hughes86964332012-02-15 19:37:42 -08002408 if (IsBreakpoint(m, dex_pc)) {
2409 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002410 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002411
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002412 // If the debugger is single-stepping one of our threads, check to
2413 // see if we're that thread and we've reached a step point.
2414 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2415 DCHECK(single_step_control != nullptr);
2416 if (single_step_control->is_active) {
2417 CHECK(!m->IsNative());
2418 if (single_step_control->step_depth == JDWP::SD_INTO) {
2419 // Step into method calls. We break when the line number
2420 // or method pointer changes. If we're in SS_MIN mode, we
2421 // always stop.
2422 if (single_step_control->method != m) {
2423 event_flags |= kSingleStep;
2424 VLOG(jdwp) << "SS new method";
2425 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2426 event_flags |= kSingleStep;
2427 VLOG(jdwp) << "SS new instruction";
2428 } else if (single_step_control->dex_pcs.find(dex_pc) == single_step_control->dex_pcs.end()) {
2429 event_flags |= kSingleStep;
2430 VLOG(jdwp) << "SS new line";
2431 }
2432 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2433 // Step over method calls. We break when the line number is
2434 // different and the frame depth is <= the original frame
2435 // depth. (We can't just compare on the method, because we
2436 // might get unrolled past it by an exception, and it's tricky
2437 // to identify recursion.)
2438
2439 int stack_depth = GetStackDepth(thread);
2440
2441 if (stack_depth < single_step_control->stack_depth) {
2442 // Popped up one or more frames, always trigger.
2443 event_flags |= kSingleStep;
2444 VLOG(jdwp) << "SS method pop";
2445 } else if (stack_depth == single_step_control->stack_depth) {
2446 // Same depth, see if we moved.
2447 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002448 event_flags |= kSingleStep;
2449 VLOG(jdwp) << "SS new instruction";
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002450 } else if (single_step_control->dex_pcs.find(dex_pc) == single_step_control->dex_pcs.end()) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002451 event_flags |= kSingleStep;
2452 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002453 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002454 }
2455 } else {
2456 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2457 // Return from the current method. We break when the frame
2458 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002459
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002460 // This differs from the "method exit" break in that it stops
2461 // with the PC at the next instruction in the returned-to
2462 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002463
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002464 int stack_depth = GetStackDepth(thread);
2465 if (stack_depth < single_step_control->stack_depth) {
2466 event_flags |= kSingleStep;
2467 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002468 }
2469 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002470 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002471
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002472 // If there's something interesting going on, see if it matches one
2473 // of the debugger filters.
2474 if (event_flags != 0) {
Jeff Hao579b0242013-11-18 13:16:49 -08002475 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, nullptr);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002476 }
2477}
2478
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002479static void ProcessDeoptimizationRequests()
2480 LOCKS_EXCLUDED(Locks::deoptimization_lock_)
2481 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_) {
2482 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
2483 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2484 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
2485 for (const MethodInstrumentationRequest& request : gDeoptimizationRequests) {
2486 mirror::ArtMethod* const method = request.method;
2487 if (method != nullptr) {
2488 // Selective deoptimization.
2489 if (request.deoptimize) {
2490 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(method);
2491 instrumentation->Deoptimize(method);
2492 } else {
2493 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(method);
2494 instrumentation->Undeoptimize(method);
2495 }
2496 } else {
2497 // Full deoptimization.
2498 if (request.deoptimize) {
2499 VLOG(jdwp) << "Deoptimize the world";
2500 instrumentation->DeoptimizeEverything();
2501 } else {
2502 VLOG(jdwp) << "Undeoptimize the world";
2503 instrumentation->UndeoptimizeEverything();
2504 }
2505 }
2506 }
2507 gDeoptimizationRequests.clear();
2508}
2509
2510// Process deoptimization requests after suspending all mutator threads.
2511void Dbg::ManageDeoptimization() {
2512 Thread* const self = Thread::Current();
2513 {
2514 // Avoid suspend/resume if there is no pending request.
2515 MutexLock mu(self, *Locks::deoptimization_lock_);
2516 if (gDeoptimizationRequests.empty()) {
2517 return;
2518 }
2519 }
2520 CHECK_EQ(self->GetState(), kRunnable);
2521 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
2522 // We need to suspend mutator threads first.
2523 Runtime* const runtime = Runtime::Current();
2524 runtime->GetThreadList()->SuspendAll();
2525 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
2526 ProcessDeoptimizationRequests();
2527 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
2528 runtime->GetThreadList()->ResumeAll();
2529 self->TransitionFromSuspendedToRunnable();
2530}
2531
2532// Enable full deoptimization.
2533void Dbg::EnableFullDeoptimization() {
2534 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2535 VLOG(jdwp) << "Request full deoptimization";
2536 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(true, nullptr));
2537}
2538
2539// Disable full deoptimization.
2540void Dbg::DisableFullDeoptimization() {
2541 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2542 VLOG(jdwp) << "Request full undeoptimization";
2543 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(false, nullptr));
2544}
2545
Elliott Hughes86964332012-02-15 19:37:42 -08002546void Dbg::WatchLocation(const JDWP::JdwpLocation* location) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002547 bool need_deoptimization = true;
Brian Carlstromea46f952013-07-30 01:26:50 -07002548 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002549 {
2550 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
2551
2552 // If there is no breakpoint on this method yet, we need to deoptimize it.
2553 for (const Breakpoint& breakpoint : gBreakpoints) {
2554 if (breakpoint.method == m) {
2555 // We already set a breakpoint on this method, hence we deoptimized it.
2556 DCHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2557 need_deoptimization = false;
2558 break;
2559 }
2560 }
2561
2562 gBreakpoints.push_back(Breakpoint(m, location->dex_pc));
2563 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " << gBreakpoints[gBreakpoints.size() - 1];
2564 }
2565
2566 if (need_deoptimization) {
2567 // Request its deoptimization. This will be done after updating the JDWP event list.
2568 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2569 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(true, m));
2570 VLOG(jdwp) << "Request deoptimization of " << PrettyMethod(m);
2571 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002572}
2573
Elliott Hughes86964332012-02-15 19:37:42 -08002574void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002575 bool can_undeoptimize = true;
Brian Carlstromea46f952013-07-30 01:26:50 -07002576 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002577 DCHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2578 {
2579 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
2580 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
2581 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == location->dex_pc) {
2582 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
2583 gBreakpoints.erase(gBreakpoints.begin() + i);
2584 break;
2585 }
Elliott Hughes86964332012-02-15 19:37:42 -08002586 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002587
2588 // If there is no breakpoint on this method, we can undeoptimize it.
2589 for (const Breakpoint& breakpoint : gBreakpoints) {
2590 if (breakpoint.method == m) {
2591 can_undeoptimize = false;
2592 break;
2593 }
2594 }
2595 }
2596
2597 if (can_undeoptimize) {
2598 // Request its undeoptimization. This will be done after updating the JDWP event list.
2599 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2600 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(false, m));
2601 VLOG(jdwp) << "Request undeoptimization of " << PrettyMethod(m);
Elliott Hughes86964332012-02-15 19:37:42 -08002602 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002603}
2604
Jeff Hao449db332013-04-12 18:30:52 -07002605// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
2606// cause suspension if the thread is the current thread.
2607class ScopedThreadSuspension {
2608 public:
Ian Rogers33e95662013-05-20 20:29:14 -07002609 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
2610 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Jeff Hao449db332013-04-12 18:30:52 -07002611 thread_(NULL),
2612 error_(JDWP::ERR_NONE),
2613 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07002614 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07002615 ScopedObjectAccessUnchecked soa(self);
2616 {
2617 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2618 error_ = DecodeThread(soa, thread_id, thread_);
2619 }
2620 if (error_ == JDWP::ERR_NONE) {
2621 if (thread_ == soa.Self()) {
2622 self_suspend_ = true;
2623 } else {
2624 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
2625 jobject thread_peer = gRegistry->GetJObject(thread_id);
2626 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002627 Thread* suspended_thread = ThreadList::SuspendThreadByPeer(thread_peer, true, true,
2628 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07002629 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
2630 if (suspended_thread == NULL) {
2631 // Thread terminated from under us while suspending.
2632 error_ = JDWP::ERR_INVALID_THREAD;
2633 } else {
2634 CHECK_EQ(suspended_thread, thread_);
2635 other_suspend_ = true;
2636 }
2637 }
2638 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002639 }
Elliott Hughes86964332012-02-15 19:37:42 -08002640
Jeff Hao449db332013-04-12 18:30:52 -07002641 Thread* GetThread() const {
2642 return thread_;
2643 }
2644
2645 JDWP::JdwpError GetError() const {
2646 return error_;
2647 }
2648
2649 ~ScopedThreadSuspension() {
2650 if (other_suspend_) {
2651 Runtime::Current()->GetThreadList()->Resume(thread_, true);
2652 }
2653 }
2654
2655 private:
2656 Thread* thread_;
2657 JDWP::JdwpError error_;
2658 bool self_suspend_;
2659 bool other_suspend_;
2660};
2661
2662JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
2663 JDWP::JdwpStepDepth step_depth) {
2664 Thread* self = Thread::Current();
2665 ScopedThreadSuspension sts(self, thread_id);
2666 if (sts.GetError() != JDWP::ERR_NONE) {
2667 return sts.GetError();
2668 }
2669
Elliott Hughes2435a572012-02-17 16:07:41 -08002670 //
2671 // Work out what Method* we're in, the current line number, and how deep the stack currently
2672 // is for step-out.
2673 //
2674
Ian Rogers0399dde2012-06-06 17:09:28 -07002675 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002676 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
2677 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002678 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002679 : StackVisitor(thread, NULL), single_step_control_(single_step_control),
2680 line_number_(line_number) {
2681 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
2682 single_step_control_->method = NULL;
2683 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08002684 }
Ian Rogersca190662012-06-26 15:45:57 -07002685
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002686 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2687 // annotalysis.
2688 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002689 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002690 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002691 ++single_step_control_->stack_depth;
2692 if (single_step_control_->method == NULL) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08002693 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002694 single_step_control_->method = m;
2695 *line_number_ = -1;
Elliott Hughes2435a572012-02-17 16:07:41 -08002696 if (dex_cache != NULL) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07002697 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002698 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08002699 }
Elliott Hughes86964332012-02-15 19:37:42 -08002700 }
2701 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002702 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08002703 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002704
2705 SingleStepControl* const single_step_control_;
2706 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08002707 };
Jeff Hao449db332013-04-12 18:30:52 -07002708
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002709 Thread* const thread = sts.GetThread();
2710 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
2711 DCHECK(single_step_control != nullptr);
2712 int32_t line_number = -1;
2713 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07002714 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08002715
Elliott Hughes2435a572012-02-17 16:07:41 -08002716 //
2717 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
2718 //
2719
2720 struct DebugCallbackContext {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002721 explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number)
2722 : single_step_control_(single_step_control), line_number_(line_number),
2723 last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002724 }
2725
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002726 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002727 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002728 if (static_cast<int32_t>(line_number) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002729 if (!context->last_pc_valid) {
2730 // Everything from this address until the next line change is ours.
2731 context->last_pc = address;
2732 context->last_pc_valid = true;
2733 }
2734 // Otherwise, if we're already in a valid range for this line,
2735 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002736 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08002737 // Add everything from the last entry up until here to the set
2738 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002739 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08002740 }
2741 context->last_pc_valid = false;
2742 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002743 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08002744 }
2745
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002746 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08002747 // If the line number was the last in the position table...
2748 if (last_pc_valid) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002749 size_t end = MethodHelper(single_step_control_->method).GetCodeItem()->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08002750 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002751 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08002752 }
2753 }
2754 }
2755
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002756 SingleStepControl* const single_step_control_;
2757 const int32_t line_number_;
Elliott Hughes2435a572012-02-17 16:07:41 -08002758 bool last_pc_valid;
2759 uint32_t last_pc;
2760 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002761 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08002762 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002763 if (!m->IsNative()) {
2764 DebugCallbackContext context(single_step_control, line_number);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08002765 MethodHelper mh(m);
2766 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
2767 DebugCallbackContext::Callback, NULL, &context);
2768 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002769
2770 //
2771 // Everything else...
2772 //
2773
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002774 single_step_control->step_size = step_size;
2775 single_step_control->step_depth = step_depth;
2776 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08002777
Elliott Hughes2435a572012-02-17 16:07:41 -08002778 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002779 VLOG(jdwp) << "Single-step thread: " << *thread;
2780 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
2781 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
2782 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
2783 VLOG(jdwp) << "Single-step current line: " << line_number;
2784 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08002785 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002786 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 -08002787 VLOG(jdwp) << StringPrintf(" %#x", *it);
Elliott Hughes2435a572012-02-17 16:07:41 -08002788 }
2789 }
2790
2791 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002792}
2793
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002794void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
2795 ScopedObjectAccessUnchecked soa(Thread::Current());
2796 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2797 Thread* thread;
2798 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01002799 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002800 SingleStepControl* single_step_control = thread->GetSingleStepControl();
2801 DCHECK(single_step_control != nullptr);
2802 single_step_control->is_active = false;
2803 single_step_control->dex_pcs.clear();
2804 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002805}
2806
Elliott Hughes45651fd2012-02-21 15:48:20 -08002807static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
2808 switch (tag) {
2809 default:
2810 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
2811
2812 // Primitives.
2813 case JDWP::JT_BYTE: return 'B';
2814 case JDWP::JT_CHAR: return 'C';
2815 case JDWP::JT_FLOAT: return 'F';
2816 case JDWP::JT_DOUBLE: return 'D';
2817 case JDWP::JT_INT: return 'I';
2818 case JDWP::JT_LONG: return 'J';
2819 case JDWP::JT_SHORT: return 'S';
2820 case JDWP::JT_VOID: return 'V';
2821 case JDWP::JT_BOOLEAN: return 'Z';
2822
2823 // Reference types.
2824 case JDWP::JT_ARRAY:
2825 case JDWP::JT_OBJECT:
2826 case JDWP::JT_STRING:
2827 case JDWP::JT_THREAD:
2828 case JDWP::JT_THREAD_GROUP:
2829 case JDWP::JT_CLASS_LOADER:
2830 case JDWP::JT_CLASS_OBJECT:
2831 return 'L';
2832 }
2833}
2834
Elliott Hughes88d63092013-01-09 09:55:54 -08002835JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
2836 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002837 uint32_t arg_count, uint64_t* arg_values,
2838 JDWP::JdwpTag* arg_types, uint32_t options,
2839 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
2840 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08002841 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2842
2843 Thread* targetThread = NULL;
2844 DebugInvokeReq* req = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002845 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002846 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002847 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07002848 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002849 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread);
2850 if (error != JDWP::ERR_NONE) {
2851 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
2852 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002853 }
2854 req = targetThread->GetInvokeReq();
2855 if (!req->ready) {
2856 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
2857 return JDWP::ERR_INVALID_THREAD;
2858 }
2859
2860 /*
2861 * We currently have a bug where we don't successfully resume the
2862 * target thread if the suspend count is too deep. We're expected to
2863 * require one "resume" for each "suspend", but when asked to execute
2864 * a method we have to resume fully and then re-suspend it back to the
2865 * same level. (The easiest way to cause this is to type "suspend"
2866 * multiple times in jdb.)
2867 *
2868 * It's unclear what this means when the event specifies "resume all"
2869 * and some threads are suspended more deeply than others. This is
2870 * a rare problem, so for now we just prevent it from hanging forever
2871 * by rejecting the method invocation request. Without this, we will
2872 * be stuck waiting on a suspended thread.
2873 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002874 int suspend_count;
2875 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002876 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002877 suspend_count = targetThread->GetSuspendCount();
2878 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08002879 if (suspend_count > 1) {
2880 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002881 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08002882 }
2883
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002884 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002885 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08002886 if (receiver == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002887 return JDWP::ERR_INVALID_OBJECT;
2888 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002889
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002890 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08002891 if (thread == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002892 return JDWP::ERR_INVALID_OBJECT;
2893 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002894 // TODO: check that 'thread' is actually a java.lang.Thread!
2895
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002896 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes45651fd2012-02-21 15:48:20 -08002897 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002898 return status;
2899 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002900
Brian Carlstromea46f952013-07-30 01:26:50 -07002901 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes45651fd2012-02-21 15:48:20 -08002902 if (m->IsStatic() != (receiver == NULL)) {
2903 return JDWP::ERR_INVALID_METHODID;
2904 }
2905 if (m->IsStatic()) {
2906 if (m->GetDeclaringClass() != c) {
2907 return JDWP::ERR_INVALID_METHODID;
2908 }
2909 } else {
2910 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
2911 return JDWP::ERR_INVALID_METHODID;
2912 }
2913 }
2914
2915 // Check the argument list matches the method.
2916 MethodHelper mh(m);
2917 if (mh.GetShortyLength() - 1 != arg_count) {
2918 return JDWP::ERR_ILLEGAL_ARGUMENT;
2919 }
2920 const char* shorty = mh.GetShorty();
Elliott Hughes09201632013-04-15 15:50:07 -07002921 const DexFile::TypeList* types = mh.GetParameterTypeList();
Elliott Hughes45651fd2012-02-21 15:48:20 -08002922 for (size_t i = 0; i < arg_count; ++i) {
2923 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
2924 return JDWP::ERR_ILLEGAL_ARGUMENT;
2925 }
Elliott Hughes09201632013-04-15 15:50:07 -07002926
2927 if (shorty[i + 1] == 'L') {
2928 // Did we really get an argument of an appropriate reference type?
2929 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
2930 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i]);
2931 if (argument == ObjectRegistry::kInvalidObject) {
2932 return JDWP::ERR_INVALID_OBJECT;
2933 }
Sebastien Hertz0630ab52013-11-28 18:53:35 +01002934 if (argument != NULL && !argument->InstanceOf(parameter_type)) {
Elliott Hughes09201632013-04-15 15:50:07 -07002935 return JDWP::ERR_ILLEGAL_ARGUMENT;
2936 }
2937
2938 // Turn the on-the-wire ObjectId into a jobject.
2939 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
2940 v.l = gRegistry->GetJObject(arg_values[i]);
2941 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002942 }
2943
Sebastien Hertzd38667a2013-11-25 15:43:54 +01002944 req->receiver = receiver;
2945 req->thread = thread;
2946 req->klass = c;
2947 req->method = m;
2948 req->arg_count = arg_count;
2949 req->arg_values = arg_values;
2950 req->options = options;
2951 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002952 }
2953
2954 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
2955 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
2956 // call, and it's unwise to hold it during WaitForSuspend.
2957
2958 {
2959 /*
2960 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07002961 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08002962 * run out of memory. It's also a good idea to change it before locking
2963 * the invokeReq mutex, although that should never be held for long.
2964 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002965 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002966
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002967 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002968 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01002969 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002970
2971 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002972 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002973 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002974 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002975 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002976 thread_list->Resume(targetThread, true);
2977 }
2978
2979 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01002980 while (req->invoke_needed) {
2981 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002982 }
2983 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002984 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08002985
2986 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07002987 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002988 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002989 }
2990
2991 /*
2992 * Suspend the threads. We waited for the target thread to suspend
2993 * itself, so all we need to do is suspend the others.
2994 *
2995 * The suspendAllThreads() call will double-suspend the event thread,
2996 * so we want to resume the target thread once to keep the books straight.
2997 */
2998 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002999 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003000 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003001 thread_list->SuspendAllForDebugger();
3002 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003003 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003004 thread_list->Resume(targetThread, true);
3005 }
3006
3007 // Copy the result.
3008 *pResultTag = req->result_tag;
3009 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003010 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003011 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003012 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003013 }
3014 *pExceptionId = req->exception;
3015 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003016}
3017
3018void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003019 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003020
Elliott Hughes81ff3182012-03-23 20:35:56 -07003021 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003022 // to preserve that across the method invocation.
Ian Rogers62d6c772013-02-27 08:32:07 -08003023 SirtRef<mirror::Object> old_throw_this_object(soa.Self(), NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -07003024 SirtRef<mirror::ArtMethod> old_throw_method(soa.Self(), NULL);
Ian Rogers62d6c772013-02-27 08:32:07 -08003025 SirtRef<mirror::Throwable> old_exception(soa.Self(), NULL);
3026 uint32_t old_throw_dex_pc;
3027 {
3028 ThrowLocation old_throw_location;
3029 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
3030 old_throw_this_object.reset(old_throw_location.GetThis());
3031 old_throw_method.reset(old_throw_location.GetMethod());
3032 old_exception.reset(old_exception_obj);
3033 old_throw_dex_pc = old_throw_location.GetDexPc();
3034 soa.Self()->ClearException();
3035 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003036
3037 // Translate the method through the vtable, unless the debugger wants to suppress it.
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003038 SirtRef<mirror::ArtMethod> m(soa.Self(), pReq->method);
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003039 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != NULL) {
3040 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(pReq->method);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003041 if (actual_method != m.get()) {
3042 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.get()) << " to " << PrettyMethod(actual_method);
3043 m.reset(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003044 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003045 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003046 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003047 << " receiver=" << pReq->receiver
3048 << " arg_count=" << pReq->arg_count;
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003049 CHECK(m.get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003050
3051 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3052
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003053 MethodHelper mh(m.get());
Jeff Hao5d917302013-02-27 17:57:33 -08003054 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003055 arg_array.BuildArgArray(soa, pReq->receiver, reinterpret_cast<jvalue*>(pReq->arg_values));
Ian Rogers0177e532014-02-11 16:30:46 -08003056 InvokeWithArgArray(soa, m.get(), &arg_array, &pReq->result_value, mh.GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003057
Ian Rogers62d6c772013-02-27 08:32:07 -08003058 mirror::Throwable* exception = soa.Self()->GetException(NULL);
3059 soa.Self()->ClearException();
3060 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003061 pReq->result_tag = BasicTagFromDescriptor(MethodHelper(m.get()).GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003062 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003063 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3064 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003065 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003066 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3067 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003068 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003069 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003070 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003071 pReq->result_tag = new_tag;
3072 }
3073
3074 /*
3075 * Register the object. We don't actually need an ObjectId yet,
3076 * but we do need to be sure that the GC won't move or discard the
3077 * object when we switch out of RUNNING. The ObjectId conversion
3078 * will add the object to the "do not touch" list.
3079 *
3080 * We can't use the "tracked allocation" mechanism here because
3081 * the object is going to be handed off to a different thread.
3082 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003083 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003084 }
3085
3086 if (old_exception.get() != NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003087 ThrowLocation gc_safe_throw_location(old_throw_this_object.get(), old_throw_method.get(),
3088 old_throw_dex_pc);
3089 soa.Self()->SetException(gc_safe_throw_location, old_exception.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003090 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003091}
3092
Elliott Hughesd07986f2011-12-06 18:27:45 -08003093/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003094 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003095 * need to process each, accumulate the replies, and ship the whole thing
3096 * back.
3097 *
3098 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3099 * and includes the chunk type/length, followed by the data.
3100 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003101 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003102 * chunk. If this becomes inconvenient we will need to adapt.
3103 */
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003104bool Dbg::DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003105 Thread* self = Thread::Current();
3106 JNIEnv* env = self->GetJniEnv();
3107
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003108 uint32_t type = request.ReadUnsigned32("type");
3109 uint32_t length = request.ReadUnsigned32("length");
3110
3111 // Create a byte[] corresponding to 'request'.
3112 size_t request_length = request.size();
3113 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003114 if (dataArray.get() == NULL) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003115 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003116 env->ExceptionClear();
3117 return false;
3118 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003119 env->SetByteArrayRegion(dataArray.get(), 0, request_length, reinterpret_cast<const jbyte*>(request.data()));
3120 request.Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003121
3122 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003123 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003124 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003125 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003126 return false;
3127 }
3128
3129 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003130 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3131 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003132 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003133 if (env->ExceptionCheck()) {
3134 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3135 env->ExceptionDescribe();
3136 env->ExceptionClear();
3137 return false;
3138 }
3139
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003140 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003141 return false;
3142 }
3143
3144 /*
3145 * Pull the pieces out of the chunk. We copy the results into a
3146 * newly-allocated buffer that the caller can free. We don't want to
3147 * continue using the Chunk object because nothing has a reference to it.
3148 *
3149 * We could avoid this by returning type/data/offset/length and having
3150 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003151 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003152 * if we have responses for multiple chunks.
3153 *
3154 * So we're pretty much stuck with copying data around multiple times.
3155 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003156 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 -08003157 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003158 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003159 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003160
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003161 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 -07003162 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003163 return false;
3164 }
3165
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003166 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003167 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
3168 if (reply == NULL) {
3169 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3170 return false;
3171 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003172 JDWP::Set4BE(reply + 0, type);
3173 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003174 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003175
3176 *pReplyBuf = reply;
3177 *pReplyLen = length + kChunkHdrLen;
3178
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003179 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003180 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003181}
3182
Elliott Hughesa2155262011-11-16 16:26:58 -08003183void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003184 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003185
3186 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003187 if (self->GetState() != kRunnable) {
3188 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3189 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003190 }
3191
3192 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003193 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003194 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3195 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3196 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003197 if (env->ExceptionCheck()) {
3198 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3199 env->ExceptionDescribe();
3200 env->ExceptionClear();
3201 }
3202}
3203
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003204void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003205 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003206}
3207
3208void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003209 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003210 gDdmThreadNotification = false;
3211}
3212
3213/*
Elliott Hughes82188472011-11-07 18:11:48 -08003214 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003215 *
3216 * Because we broadcast the full set of threads when the notifications are
3217 * first enabled, it's possible for "thread" to be actively executing.
3218 */
Elliott Hughes82188472011-11-07 18:11:48 -08003219void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003220 if (!gDdmThreadNotification) {
3221 return;
3222 }
3223
Elliott Hughes82188472011-11-07 18:11:48 -08003224 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003225 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003226 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003227 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003228 } else {
3229 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003230 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003231 SirtRef<mirror::String> name(soa.Self(), t->GetThreadName(soa));
Elliott Hughes82188472011-11-07 18:11:48 -08003232 size_t char_count = (name.get() != NULL) ? name->GetLength() : 0;
jeffhao725a9572012-11-13 18:20:12 -08003233 const jchar* chars = (name.get() != NULL) ? name->GetCharArray()->GetData() : NULL;
Elliott Hughes82188472011-11-07 18:11:48 -08003234
Elliott Hughes21f32d72011-11-09 17:44:13 -08003235 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003236 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003237 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003238 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3239 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003240 }
3241}
3242
Elliott Hughes47fce012011-10-25 18:37:19 -07003243void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003244 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003245 gDdmThreadNotification = enable;
3246 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003247 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3248 // see a suspension in progress and block until that ends. They then post their own start
3249 // notification.
3250 SuspendVM();
3251 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003252 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003253 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003254 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003255 threads = Runtime::Current()->GetThreadList()->GetList();
3256 }
3257 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003258 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003259 for (Thread* thread : threads) {
3260 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003261 }
3262 }
3263 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003264 }
3265}
3266
Elliott Hughesa2155262011-11-16 16:26:58 -08003267void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003268 if (IsDebuggerActive()) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07003269 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08003270 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08003271 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003272 }
Elliott Hughes82188472011-11-07 18:11:48 -08003273 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003274}
3275
3276void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003277 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003278}
3279
3280void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003281 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003282}
3283
Elliott Hughes82188472011-11-07 18:11:48 -08003284void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003285 CHECK(buf != NULL);
3286 iovec vec[1];
3287 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3288 vec[0].iov_len = byte_count;
3289 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003290}
3291
Elliott Hughes21f32d72011-11-09 17:44:13 -08003292void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3293 DdmSendChunk(type, bytes.size(), &bytes[0]);
3294}
3295
Brian Carlstromf5293522013-07-19 00:24:00 -07003296void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003297 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003298 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003299 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003300 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003301 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003302}
3303
Elliott Hughes767a1472011-10-26 18:49:02 -07003304int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3305 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003306 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003307 return true;
3308 }
3309
3310 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3311 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3312 return false;
3313 }
3314
3315 gDdmHpifWhen = when;
3316 return true;
3317}
3318
3319bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3320 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3321 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3322 return false;
3323 }
3324
3325 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3326 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3327 return false;
3328 }
3329
3330 if (native) {
3331 gDdmNhsgWhen = when;
3332 gDdmNhsgWhat = what;
3333 } else {
3334 gDdmHpsgWhen = when;
3335 gDdmHpsgWhat = what;
3336 }
3337 return true;
3338}
3339
Elliott Hughes7162ad92011-10-27 14:08:42 -07003340void Dbg::DdmSendHeapInfo(HpifWhen reason) {
3341 // If there's a one-shot 'when', reset it.
3342 if (reason == gDdmHpifWhen) {
3343 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
3344 gDdmHpifWhen = HPIF_WHEN_NEVER;
3345 }
3346 }
3347
3348 /*
3349 * Chunk HPIF (client --> server)
3350 *
3351 * Heap Info. General information about the heap,
3352 * suitable for a summary display.
3353 *
3354 * [u4]: number of heaps
3355 *
3356 * For each heap:
3357 * [u4]: heap ID
3358 * [u8]: timestamp in ms since Unix epoch
3359 * [u1]: capture reason (same as 'when' value from server)
3360 * [u4]: max heap size in bytes (-Xmx)
3361 * [u4]: current heap size in bytes
3362 * [u4]: current number of bytes allocated
3363 * [u4]: current number of objects allocated
3364 */
3365 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07003366 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08003367 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003368 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003369 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08003370 JDWP::Append8BE(bytes, MilliTime());
3371 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003372 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
3373 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003374 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
3375 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08003376 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
3377 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07003378}
3379
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003380enum HpsgSolidity {
3381 SOLIDITY_FREE = 0,
3382 SOLIDITY_HARD = 1,
3383 SOLIDITY_SOFT = 2,
3384 SOLIDITY_WEAK = 3,
3385 SOLIDITY_PHANTOM = 4,
3386 SOLIDITY_FINALIZABLE = 5,
3387 SOLIDITY_SWEEP = 6,
3388};
3389
3390enum HpsgKind {
3391 KIND_OBJECT = 0,
3392 KIND_CLASS_OBJECT = 1,
3393 KIND_ARRAY_1 = 2,
3394 KIND_ARRAY_2 = 3,
3395 KIND_ARRAY_4 = 4,
3396 KIND_ARRAY_8 = 5,
3397 KIND_UNKNOWN = 6,
3398 KIND_NATIVE = 7,
3399};
3400
3401#define HPSG_PARTIAL (1<<7)
3402#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
3403
Ian Rogers30fab402012-01-23 15:43:46 -08003404class HeapChunkContext {
3405 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003406 // Maximum chunk size. Obtain this from the formula:
3407 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
3408 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08003409 : buf_(16384 - 16),
3410 type_(0),
3411 merge_(merge) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003412 Reset();
3413 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08003414 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003415 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08003416 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003417 }
3418 }
3419
3420 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08003421 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003422 Flush();
3423 }
3424 }
3425
3426 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08003427 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003428 return;
3429 }
3430
3431 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003432 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
3433 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003434
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003435 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
3436 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003437 // [u4]: length of piece, in allocation units
3438 // 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 -08003439 pieceLenField_ = p_;
3440 JDWP::Write4BE(&p_, 0x55555555);
3441 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003442 }
3443
Ian Rogersb726dcb2012-09-05 08:57:23 -07003444 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd636b062013-01-18 17:51:18 -08003445 if (pieceLenField_ == NULL) {
3446 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
3447 CHECK(needHeader_);
3448 return;
3449 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003450 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08003451 CHECK_LE(&buf_[0], pieceLenField_);
3452 CHECK_LE(pieceLenField_, p_);
3453 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003454
Ian Rogers30fab402012-01-23 15:43:46 -08003455 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003456 Reset();
3457 }
3458
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003459 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003460 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3461 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003462 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08003463 }
3464
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003465 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08003466 enum { ALLOCATION_UNIT_SIZE = 8 };
3467
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003468 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08003469 p_ = &buf_[0];
Ian Rogers15bf2d32012-08-28 17:33:04 -07003470 startOfNextMemoryChunk_ = NULL;
Ian Rogers30fab402012-01-23 15:43:46 -08003471 totalAllocationUnits_ = 0;
3472 needHeader_ = true;
3473 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003474 }
3475
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003476 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003477 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3478 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003479 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
3480 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07003481 if (used_bytes == 0) {
3482 if (start == NULL) {
3483 // Reset for start of new heap.
3484 startOfNextMemoryChunk_ = NULL;
3485 Flush();
3486 }
3487 // Only process in use memory so that free region information
3488 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08003489 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08003490 }
3491
Ian Rogers15bf2d32012-08-28 17:33:04 -07003492 /* If we're looking at the native heap, we'll just return
3493 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
3494 */
3495 bool native = type_ == CHUNK_TYPE("NHSG");
3496
3497 if (startOfNextMemoryChunk_ != NULL) {
3498 // Transmit any pending free memory. Native free memory of
3499 // over kMaxFreeLen could be because of the use of mmaps, so
3500 // don't report. If not free memory then start a new segment.
3501 bool flush = true;
3502 if (start > startOfNextMemoryChunk_) {
3503 const size_t kMaxFreeLen = 2 * kPageSize;
3504 void* freeStart = startOfNextMemoryChunk_;
3505 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07003506 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07003507 if (!native || freeLen < kMaxFreeLen) {
3508 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
3509 flush = false;
3510 }
3511 }
3512 if (flush) {
3513 startOfNextMemoryChunk_ = NULL;
3514 Flush();
3515 }
3516 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08003517 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08003518
3519 // Determine the type of this chunk.
3520 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
3521 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003522 uint8_t state = ExamineObject(obj, native);
3523 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
3524 // allocation then the first sizeof(size_t) may belong to it.
3525 const size_t dlMallocOverhead = sizeof(size_t);
3526 AppendChunk(state, start, used_bytes + dlMallocOverhead);
Brian Carlstrom2d888622013-07-18 17:02:00 -07003527 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + dlMallocOverhead;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003528 }
Elliott Hughesa2155262011-11-16 16:26:58 -08003529
Ian Rogers15bf2d32012-08-28 17:33:04 -07003530 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003531 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003532 // Make sure there's enough room left in the buffer.
3533 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
3534 // 17 bytes for any header.
3535 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
3536 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3537 if (bytesLeft < needed) {
3538 Flush();
3539 }
3540
3541 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3542 if (bytesLeft < needed) {
3543 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
3544 << needed << " bytes)";
3545 return;
3546 }
3547 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08003548 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003549 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
3550 totalAllocationUnits_ += length;
3551 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08003552 *p_++ = state | HPSG_PARTIAL;
3553 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07003554 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08003555 }
Ian Rogers30fab402012-01-23 15:43:46 -08003556 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003557 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003558 }
3559
Ian Rogersef7d42f2014-01-06 12:55:46 -08003560 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
3561 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003562 if (o == NULL) {
3563 return HPSG_STATE(SOLIDITY_FREE, 0);
3564 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003565
Elliott Hughesa2155262011-11-16 16:26:58 -08003566 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003567
Elliott Hughesa2155262011-11-16 16:26:58 -08003568 // If we're looking at the native heap, we'll just return
3569 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003570 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003571 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
3572 }
3573
Ian Rogers5bfa60f2012-09-02 21:17:56 -07003574 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003575 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003576 }
3577
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003578 mirror::Class* c = o->GetClass();
Elliott Hughesa2155262011-11-16 16:26:58 -08003579 if (c == NULL) {
3580 // The object was probably just created but hasn't been initialized yet.
3581 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3582 }
3583
Mathieu Chartier590fee92013-09-13 13:46:47 -07003584 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003585 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08003586 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
3587 }
3588
3589 if (c->IsClassClass()) {
3590 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
3591 }
3592
3593 if (c->IsArrayClass()) {
3594 if (o->IsObjectArray()) {
3595 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3596 }
3597 switch (c->GetComponentSize()) {
3598 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
3599 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
3600 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3601 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
3602 }
3603 }
3604
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003605 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3606 }
3607
Ian Rogers30fab402012-01-23 15:43:46 -08003608 std::vector<uint8_t> buf_;
3609 uint8_t* p_;
3610 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003611 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08003612 size_t totalAllocationUnits_;
3613 uint32_t type_;
3614 bool merge_;
3615 bool needHeader_;
3616
Elliott Hughesa2155262011-11-16 16:26:58 -08003617 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
3618};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003619
3620void Dbg::DdmSendHeapSegments(bool native) {
3621 Dbg::HpsgWhen when;
3622 Dbg::HpsgWhat what;
3623 if (!native) {
3624 when = gDdmHpsgWhen;
3625 what = gDdmHpsgWhat;
3626 } else {
3627 when = gDdmNhsgWhen;
3628 what = gDdmNhsgWhat;
3629 }
3630 if (when == HPSG_WHEN_NEVER) {
3631 return;
3632 }
3633
3634 // Figure out what kind of chunks we'll be sending.
3635 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
3636
3637 // First, send a heap start chunk.
3638 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003639 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003640 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
3641
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003642 Thread* self = Thread::Current();
3643
3644 // To allow the Walk/InspectAll() below to exclusively-lock the
3645 // mutator lock, temporarily release the shared access to the
3646 // mutator lock here by transitioning to the suspended state.
3647 Locks::mutator_lock_->AssertSharedHeld(self);
3648 self->TransitionFromRunnableToSuspended(kSuspended);
3649
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003650 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08003651 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
3652 if (native) {
Ian Rogers1d54e732013-05-02 21:10:01 -07003653 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003654 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07003655 gc::Heap* heap = Runtime::Current()->GetHeap();
3656 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers62d6c772013-02-27 08:32:07 -08003657 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Ian Rogers1d54e732013-05-02 21:10:01 -07003658 typedef std::vector<gc::space::ContinuousSpace*>::const_iterator It;
3659 for (It cur = spaces.begin(), end = spaces.end(); cur != end; ++cur) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003660 if ((*cur)->IsMallocSpace()) {
3661 (*cur)->AsMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07003662 }
3663 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07003664 // Walk the large objects, these are not in the AllocSpace.
3665 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003666 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003667
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003668 // Shared-lock the mutator lock back.
3669 self->TransitionFromSuspendedToRunnable();
3670 Locks::mutator_lock_->AssertSharedHeld(self);
3671
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003672 // Finally, send a heap end chunk.
3673 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07003674}
3675
Elliott Hughesb1a58792013-07-11 18:10:58 -07003676static size_t GetAllocTrackerMax() {
3677#ifdef HAVE_ANDROID_OS
3678 // Check whether there's a system property overriding the number of records.
3679 const char* propertyName = "dalvik.vm.allocTrackerMax";
3680 char allocRecordMaxString[PROPERTY_VALUE_MAX];
3681 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
3682 char* end;
3683 size_t value = strtoul(allocRecordMaxString, &end, 10);
3684 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003685 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3686 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003687 return kDefaultNumAllocRecords;
3688 }
3689 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003690 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3691 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003692 return kDefaultNumAllocRecords;
3693 }
3694 return value;
3695 }
3696#endif
3697 return kDefaultNumAllocRecords;
3698}
3699
Elliott Hughes545a0642011-11-08 19:10:03 -08003700void Dbg::SetAllocTrackingEnabled(bool enabled) {
Ian Rogers719d1a32014-03-06 12:13:39 -08003701 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08003702 if (enabled) {
3703 if (recent_allocation_records_ == NULL) {
Ian Rogers719d1a32014-03-06 12:13:39 -08003704 alloc_record_max_ = GetAllocTrackerMax();
3705 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
Elliott Hughesb1a58792013-07-11 18:10:58 -07003706 << kMaxAllocRecordStackDepth << " frames, taking "
Ian Rogers719d1a32014-03-06 12:13:39 -08003707 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
3708 alloc_record_head_ = alloc_record_count_ = 0;
3709 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
Elliott Hughes545a0642011-11-08 19:10:03 -08003710 CHECK(recent_allocation_records_ != NULL);
3711 }
Ian Rogersfa824272013-11-05 16:12:57 -08003712 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08003713 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08003714 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08003715 delete[] recent_allocation_records_;
3716 recent_allocation_records_ = NULL;
3717 }
3718}
3719
Ian Rogers0399dde2012-06-06 17:09:28 -07003720struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08003721 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003722 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08003723 : StackVisitor(thread, NULL), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08003724
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003725 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3726 // annotalysis.
3727 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08003728 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07003729 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08003730 }
Brian Carlstromea46f952013-07-30 01:26:50 -07003731 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003732 if (!m->IsRuntimeMethod()) {
3733 record->stack[depth].method = m;
3734 record->stack[depth].dex_pc = GetDexPc();
Elliott Hughes530fa002012-03-12 11:44:49 -07003735 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08003736 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003737 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08003738 }
3739
3740 ~AllocRecordStackVisitor() {
3741 // Clear out any unused stack trace elements.
3742 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
3743 record->stack[depth].method = NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -07003744 record->stack[depth].dex_pc = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08003745 }
3746 }
3747
3748 AllocRecord* record;
3749 size_t depth;
3750};
3751
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003752void Dbg::RecordAllocation(mirror::Class* type, size_t byte_count) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003753 Thread* self = Thread::Current();
3754 CHECK(self != NULL);
3755
Ian Rogers719d1a32014-03-06 12:13:39 -08003756 MutexLock mu(self, *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08003757 if (recent_allocation_records_ == NULL) {
3758 return;
3759 }
3760
3761 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08003762 if (++alloc_record_head_ == alloc_record_max_) {
3763 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08003764 }
3765
3766 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08003767 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Elliott Hughes545a0642011-11-08 19:10:03 -08003768 record->type = type;
3769 record->byte_count = byte_count;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003770 record->thin_lock_id = self->GetThreadId();
Elliott Hughes545a0642011-11-08 19:10:03 -08003771
3772 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08003773 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07003774 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08003775
Ian Rogers719d1a32014-03-06 12:13:39 -08003776 if (alloc_record_count_ < alloc_record_max_) {
3777 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003778 }
3779}
3780
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003781// Returns the index of the head element.
3782//
3783// We point at the most-recently-written record, so if gAllocRecordCount is 1
3784// we want to use the current element. Take "head+1" and subtract count
3785// from it.
3786//
3787// We need to handle underflow in our circular buffer, so we add
Elliott Hughesb1a58792013-07-11 18:10:58 -07003788// gAllocRecordMax and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08003789size_t Dbg::HeadIndex() {
3790 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
3791 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003792}
3793
3794void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003795 ScopedObjectAccess soa(Thread::Current());
Ian Rogers719d1a32014-03-06 12:13:39 -08003796 MutexLock mu(soa.Self(), *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08003797 if (recent_allocation_records_ == NULL) {
3798 LOG(INFO) << "Not recording tracked allocations";
3799 return;
3800 }
3801
3802 // "i" is the head of the list. We want to start at the end of the
3803 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003804 size_t i = HeadIndex();
Ian Rogers719d1a32014-03-06 12:13:39 -08003805 size_t count = alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003806
Ian Rogers719d1a32014-03-06 12:13:39 -08003807 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08003808 while (count--) {
3809 AllocRecord* record = &recent_allocation_records_[i];
3810
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003811 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->thin_lock_id, record->byte_count)
Elliott Hughes545a0642011-11-08 19:10:03 -08003812 << PrettyClass(record->type);
3813
3814 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003815 mirror::ArtMethod* m = record->stack[stack_frame].method;
Elliott Hughes545a0642011-11-08 19:10:03 -08003816 if (m == NULL) {
3817 break;
3818 }
3819 LOG(INFO) << " " << PrettyMethod(m) << " line " << record->stack[stack_frame].LineNumber();
3820 }
3821
3822 // pause periodically to help logcat catch up
3823 if ((count % 5) == 0) {
3824 usleep(40000);
3825 }
3826
Ian Rogers719d1a32014-03-06 12:13:39 -08003827 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003828 }
3829}
3830
Mathieu Chartier83c8ee02014-01-28 14:50:23 -08003831void Dbg::UpdateObjectPointers(IsMarkedCallback* visitor, void* arg) {
Ian Rogers719d1a32014-03-06 12:13:39 -08003832 if (recent_allocation_records_ != nullptr) {
3833 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
3834 size_t i = HeadIndex();
3835 size_t count = alloc_record_count_;
3836 while (count--) {
3837 AllocRecord* record = &recent_allocation_records_[i];
3838 DCHECK(record != nullptr);
3839 record->UpdateObjectPointers(visitor, arg);
3840 i = (i + 1) & (alloc_record_max_ - 1);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08003841 }
3842 }
3843 if (gRegistry != nullptr) {
3844 gRegistry->UpdateObjectPointers(visitor, arg);
3845 }
3846}
3847
3848void Dbg::AllowNewObjectRegistryObjects() {
3849 if (gRegistry != nullptr) {
3850 gRegistry->AllowNewObjects();
3851 }
3852}
3853
3854void Dbg::DisallowNewObjectRegistryObjects() {
3855 if (gRegistry != nullptr) {
3856 gRegistry->DisallowNewObjects();
3857 }
3858}
3859
Elliott Hughes545a0642011-11-08 19:10:03 -08003860class StringTable {
3861 public:
3862 StringTable() {
3863 }
3864
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003865 void Add(const char* s) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003866 table_.insert(s);
3867 }
3868
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003869 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07003870 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003871 if (it == table_.end()) {
3872 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
3873 }
3874 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08003875 }
3876
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003877 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08003878 return table_.size();
3879 }
3880
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003881 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07003882 for (const std::string& str : table_) {
3883 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003884 size_t s_len = CountModifiedUtf8Chars(s);
3885 UniquePtr<uint16_t> s_utf16(new uint16_t[s_len]);
3886 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
3887 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08003888 }
3889 }
3890
3891 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003892 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003893 DISALLOW_COPY_AND_ASSIGN(StringTable);
3894};
3895
3896/*
3897 * The data we send to DDMS contains everything we have recorded.
3898 *
3899 * Message header (all values big-endian):
3900 * (1b) message header len (to allow future expansion); includes itself
3901 * (1b) entry header len
3902 * (1b) stack frame len
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 * For each entry:
3909 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08003910 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08003911 * (2b) allocated object's class name index
3912 * (1b) stack depth
3913 * For each stack frame:
3914 * (2b) method's class name
3915 * (2b) method name
3916 * (2b) method source file
3917 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
3918 * (xb) class name strings
3919 * (xb) method name strings
3920 * (xb) source file strings
3921 *
3922 * As with other DDM traffic, strings are sent as a 4-byte length
3923 * followed by UTF-16 data.
3924 *
3925 * We send up 16-bit unsigned indexes into string tables. In theory there
Elliott Hughesb1a58792013-07-11 18:10:58 -07003926 * can be (kMaxAllocRecordStackDepth * gAllocRecordMax) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08003927 * each table, but in practice there should be far fewer.
3928 *
3929 * The chief reason for using a string table here is to keep the size of
3930 * the DDMS message to a minimum. This is partly to make the protocol
3931 * efficient, but also because we have to form the whole thing up all at
3932 * once in a memory buffer.
3933 *
3934 * We use separate string tables for class names, method names, and source
3935 * files to keep the indexes small. There will generally be no overlap
3936 * between the contents of these tables.
3937 */
3938jbyteArray Dbg::GetRecentAllocations() {
3939 if (false) {
3940 DumpRecentAllocations();
3941 }
3942
Ian Rogers50b35e22012-10-04 10:09:15 -07003943 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08003944 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003945 {
Ian Rogers719d1a32014-03-06 12:13:39 -08003946 MutexLock mu(self, *alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003947 //
3948 // Part 1: generate string tables.
3949 //
3950 StringTable class_names;
3951 StringTable method_names;
3952 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08003953
Ian Rogers719d1a32014-03-06 12:13:39 -08003954 int count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003955 int idx = HeadIndex();
3956 while (count--) {
3957 AllocRecord* record = &recent_allocation_records_[idx];
Elliott Hughes545a0642011-11-08 19:10:03 -08003958
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003959 class_names.Add(ClassHelper(record->type).GetDescriptor());
Elliott Hughes545a0642011-11-08 19:10:03 -08003960
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003961 MethodHelper mh;
3962 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07003963 mirror::ArtMethod* m = record->stack[i].method;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003964 if (m != NULL) {
3965 mh.ChangeMethod(m);
3966 class_names.Add(mh.GetDeclaringClassDescriptor());
3967 method_names.Add(mh.GetName());
3968 filenames.Add(mh.GetDeclaringClassSourceFile());
3969 }
3970 }
Elliott Hughes545a0642011-11-08 19:10:03 -08003971
Ian Rogers719d1a32014-03-06 12:13:39 -08003972 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003973 }
3974
Ian Rogers719d1a32014-03-06 12:13:39 -08003975 LOG(INFO) << "allocation records: " << alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003976
3977 //
3978 // Part 2: Generate the output and store it in the buffer.
3979 //
3980
3981 // (1b) message header len (to allow future expansion); includes itself
3982 // (1b) entry header len
3983 // (1b) stack frame len
3984 const int kMessageHeaderLen = 15;
3985 const int kEntryHeaderLen = 9;
3986 const int kStackFrameLen = 8;
3987 JDWP::Append1BE(bytes, kMessageHeaderLen);
3988 JDWP::Append1BE(bytes, kEntryHeaderLen);
3989 JDWP::Append1BE(bytes, kStackFrameLen);
3990
3991 // (2b) number of entries
3992 // (4b) offset to string table from start of message
3993 // (2b) number of class name strings
3994 // (2b) number of method name strings
3995 // (2b) number of source file name strings
Ian Rogers719d1a32014-03-06 12:13:39 -08003996 JDWP::Append2BE(bytes, alloc_record_count_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003997 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003998 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003999 JDWP::Append2BE(bytes, class_names.Size());
4000 JDWP::Append2BE(bytes, method_names.Size());
4001 JDWP::Append2BE(bytes, filenames.Size());
4002
Ian Rogers719d1a32014-03-06 12:13:39 -08004003 count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004004 idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004005 while (count--) {
4006 // For each entry:
4007 // (4b) total allocation size
4008 // (2b) thread id
4009 // (2b) allocated object's class name index
4010 // (1b) stack depth
4011 AllocRecord* record = &recent_allocation_records_[idx];
4012 size_t stack_depth = record->GetDepth();
Mathieu Chartier590fee92013-09-13 13:46:47 -07004013 ClassHelper kh(record->type);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004014 size_t allocated_object_class_name_index = class_names.IndexOf(kh.GetDescriptor());
4015 JDWP::Append4BE(bytes, record->byte_count);
4016 JDWP::Append2BE(bytes, record->thin_lock_id);
4017 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4018 JDWP::Append1BE(bytes, stack_depth);
4019
4020 MethodHelper mh;
4021 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4022 // For each stack frame:
4023 // (2b) method's class name
4024 // (2b) method name
4025 // (2b) method source file
4026 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
4027 mh.ChangeMethod(record->stack[stack_frame].method);
4028 size_t class_name_index = class_names.IndexOf(mh.GetDeclaringClassDescriptor());
4029 size_t method_name_index = method_names.IndexOf(mh.GetName());
4030 size_t file_name_index = filenames.IndexOf(mh.GetDeclaringClassSourceFile());
4031 JDWP::Append2BE(bytes, class_name_index);
4032 JDWP::Append2BE(bytes, method_name_index);
4033 JDWP::Append2BE(bytes, file_name_index);
4034 JDWP::Append2BE(bytes, record->stack[stack_frame].LineNumber());
4035 }
4036
Ian Rogers719d1a32014-03-06 12:13:39 -08004037 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004038 }
4039
4040 // (xb) class name strings
4041 // (xb) method name strings
4042 // (xb) source file strings
4043 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4044 class_names.WriteTo(bytes);
4045 method_names.WriteTo(bytes);
4046 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004047 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004048 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004049 jbyteArray result = env->NewByteArray(bytes.size());
4050 if (result != NULL) {
4051 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4052 }
4053 return result;
4054}
4055
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004056} // namespace art