blob: 43e8bb965c0cd3ffe6fa19f57c92c9b9c2e5aa88 [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"
Elliott Hughes64f574f2013-02-20 14:57:12 -080031#include "jdwp/object_registry.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070032#include "mirror/art_field-inl.h"
33#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034#include "mirror/class.h"
35#include "mirror/class-inl.h"
36#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "mirror/object-inl.h"
38#include "mirror/object_array-inl.h"
39#include "mirror/throwable.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080040#include "object_utils.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070041#include "reflection.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
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100225static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
226 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800227 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
228 // A thread may be suspended for GC; in this code, we really want to know whether
229 // there's a debugger suspension active.
230 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
231}
232
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800233static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700234 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800235 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800236 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800237 status = JDWP::ERR_INVALID_OBJECT;
238 return NULL;
239 }
240 if (!o->IsArrayInstance()) {
241 status = JDWP::ERR_INVALID_ARRAY;
242 return NULL;
243 }
244 status = JDWP::ERR_NONE;
245 return o->AsArray();
246}
247
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800248static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700249 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800250 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800251 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800252 status = JDWP::ERR_INVALID_OBJECT;
253 return NULL;
254 }
255 if (!o->IsClass()) {
256 status = JDWP::ERR_INVALID_CLASS;
257 return NULL;
258 }
259 status = JDWP::ERR_NONE;
260 return o->AsClass();
261}
262
Elliott Hughes221229c2013-01-08 18:17:50 -0800263static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thread*& thread)
jeffhaoa77f0f62012-12-05 17:19:31 -0800264 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700265 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
266 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800267 mirror::Object* thread_peer = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800268 if (thread_peer == NULL || thread_peer == ObjectRegistry::kInvalidObject) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800269 // This isn't even an object.
270 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes436e3722012-02-17 20:01:47 -0800271 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800272
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800273 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800274 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
275 // This isn't a thread.
276 return JDWP::ERR_INVALID_THREAD;
277 }
278
279 thread = Thread::FromManagedThread(soa, thread_peer);
280 if (thread == NULL) {
281 // This is a java.lang.Thread without a Thread*. Must be a zombie.
282 return JDWP::ERR_THREAD_NOT_ALIVE;
283 }
284 return JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800285}
286
Elliott Hughes24437992011-11-30 14:49:33 -0800287static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
288 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
289 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
290 return static_cast<JDWP::JdwpTag>(descriptor[0]);
291}
292
Ian Rogers98379392014-02-24 16:53:16 -0800293static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700294 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes86b00102011-12-05 17:54:26 -0800295 CHECK(c != NULL);
Elliott Hughes24437992011-11-30 14:49:33 -0800296 if (c->IsArrayClass()) {
297 return JDWP::JT_ARRAY;
298 }
Elliott Hughes24437992011-11-30 14:49:33 -0800299 if (c->IsStringClass()) {
300 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800301 }
Ian Rogers98379392014-02-24 16:53:16 -0800302 if (c->IsClassClass()) {
303 return JDWP::JT_CLASS_OBJECT;
304 }
305 {
306 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
307 if (thread_class->IsAssignableFrom(c)) {
308 return JDWP::JT_THREAD;
309 }
310 }
311 {
312 mirror::Class* thread_group_class =
313 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
314 if (thread_group_class->IsAssignableFrom(c)) {
315 return JDWP::JT_THREAD_GROUP;
316 }
317 }
318 {
319 mirror::Class* class_loader_class =
320 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
321 if (class_loader_class->IsAssignableFrom(c)) {
322 return JDWP::JT_CLASS_LOADER;
323 }
324 }
325 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800326}
327
328/*
329 * Objects declared to hold Object might actually hold a more specific
330 * type. The debugger may take a special interest in these (e.g. it
331 * wants to display the contents of Strings), so we want to return an
332 * appropriate tag.
333 *
334 * Null objects are tagged JT_OBJECT.
335 */
Ian Rogers98379392014-02-24 16:53:16 -0800336static JDWP::JdwpTag TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700337 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers98379392014-02-24 16:53:16 -0800338 return (o == NULL) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800339}
340
341static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
342 switch (tag) {
343 case JDWP::JT_BOOLEAN:
344 case JDWP::JT_BYTE:
345 case JDWP::JT_CHAR:
346 case JDWP::JT_FLOAT:
347 case JDWP::JT_DOUBLE:
348 case JDWP::JT_INT:
349 case JDWP::JT_LONG:
350 case JDWP::JT_SHORT:
351 case JDWP::JT_VOID:
352 return true;
353 default:
354 return false;
355 }
356}
357
Elliott Hughes3bb81562011-10-21 18:52:59 -0700358/*
359 * Handle one of the JDWP name/value pairs.
360 *
361 * JDWP options are:
362 * help: if specified, show help message and bail
363 * transport: may be dt_socket or dt_shmem
364 * address: for dt_socket, "host:port", or just "port" when listening
365 * server: if "y", wait for debugger to attach; if "n", attach to debugger
366 * timeout: how long to wait for debugger to connect / listen
367 *
368 * Useful with server=n (these aren't supported yet):
369 * onthrow=<exception-name>: connect to debugger when exception thrown
370 * onuncaught=y|n: connect to debugger when uncaught exception thrown
371 * launch=<command-line>: launch the debugger itself
372 *
373 * The "transport" option is required, as is "address" if server=n.
374 */
375static bool ParseJdwpOption(const std::string& name, const std::string& value) {
376 if (name == "transport") {
377 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700378 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700379 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700380 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700381 } else {
382 LOG(ERROR) << "JDWP transport not supported: " << value;
383 return false;
384 }
385 } else if (name == "server") {
386 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700387 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700388 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700389 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700390 } else {
391 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
392 return false;
393 }
394 } else if (name == "suspend") {
395 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700396 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700397 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700398 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700399 } else {
400 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
401 return false;
402 }
403 } else if (name == "address") {
404 /* this is either <port> or <host>:<port> */
405 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700406 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700407 std::string::size_type colon = value.find(':');
408 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700409 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700410 port_string = value.substr(colon + 1);
411 } else {
412 port_string = value;
413 }
414 if (port_string.empty()) {
415 LOG(ERROR) << "JDWP address missing port: " << value;
416 return false;
417 }
418 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800419 uint64_t port = strtoul(port_string.c_str(), &end, 10);
420 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700421 LOG(ERROR) << "JDWP address has junk in port field: " << value;
422 return false;
423 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700424 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700425 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
426 /* valid but unsupported */
427 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
428 } else {
429 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
430 }
431
432 return true;
433}
434
435/*
436 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
437 * "transport=dt_socket,address=8000,server=y,suspend=n"
438 */
439bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800440 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700441
Elliott Hughes3bb81562011-10-21 18:52:59 -0700442 std::vector<std::string> pairs;
443 Split(options, ',', pairs);
444
445 for (size_t i = 0; i < pairs.size(); ++i) {
446 std::string::size_type equals = pairs[i].find('=');
447 if (equals == std::string::npos) {
448 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
449 return false;
450 }
451 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
452 }
453
Elliott Hughes376a7a02011-10-24 18:35:55 -0700454 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700455 LOG(ERROR) << "Must specify JDWP transport: " << options;
456 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700457 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700458 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
459 return false;
460 }
461
462 gJdwpConfigured = true;
463 return true;
464}
465
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700466void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700467 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700468 // No JDWP for you!
469 return;
470 }
471
Ian Rogers719d1a32014-03-06 12:13:39 -0800472 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700473 gRegistry = new ObjectRegistry;
474
Ian Rogers719d1a32014-03-06 12:13:39 -0800475 alloc_tracker_lock_ = new Mutex("AllocTracker lock");
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700476 // Init JDWP if the debugger is enabled. This may connect out to a
477 // debugger, passively listen for a debugger, or block waiting for a
478 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700479 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
480 if (gJdwpState == NULL) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800481 // We probably failed because some other process has the port already, which means that
482 // if we don't abort the user is likely to think they're talking to us when they're actually
483 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800484 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700485 }
486
487 // If a debugger has already attached, send the "welcome" message.
488 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700489 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700490 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes376a7a02011-10-24 18:35:55 -0700491 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800492 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700493 }
494 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700495}
496
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700497void Dbg::StopJdwp() {
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100498 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
499 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700500 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800501 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700502 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800503 gRegistry = nullptr;
504 delete alloc_tracker_lock_;
505 alloc_tracker_lock_ = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700506}
507
Elliott Hughes767a1472011-10-26 18:49:02 -0700508void Dbg::GcDidFinish() {
509 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700510 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes81ff3182012-03-23 20:35:56 -0700511 LOG(DEBUG) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700512 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700513 }
514 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700515 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes81ff3182012-03-23 20:35:56 -0700516 LOG(DEBUG) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700517 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700518 }
519 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700520 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes767a1472011-10-26 18:49:02 -0700521 LOG(DEBUG) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700522 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700523 }
524}
525
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700526void Dbg::SetJdwpAllowed(bool allowed) {
527 gJdwpAllowed = allowed;
528}
529
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700530DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700531 return Thread::Current()->GetInvokeReq();
532}
533
534Thread* Dbg::GetDebugThread() {
535 return (gJdwpState != NULL) ? gJdwpState->GetDebugThread() : NULL;
536}
537
538void Dbg::ClearWaitForEventThread() {
539 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700540}
541
542void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700543 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800544 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700545 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800546 gDisposed = false;
547}
548
549void Dbg::Disposed() {
550 gDisposed = true;
551}
552
553bool Dbg::IsDisposed() {
554 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700555}
556
Elliott Hughesa2155262011-11-16 16:26:58 -0800557void Dbg::GoActive() {
558 // Enable all debugging features, including scans for breakpoints.
559 // This is a no-op if we're already active.
560 // Only called from the JDWP handler thread.
561 if (gDebuggerActive) {
562 return;
563 }
564
Elliott Hughesc0f09332012-03-26 13:27:06 -0700565 {
566 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
jeffhao09bfc6a2012-12-11 18:11:43 -0800567 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700568 CHECK_EQ(gBreakpoints.size(), 0U);
569 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800570
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100571 {
572 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
573 CHECK_EQ(gDeoptimizationRequests.size(), 0U);
574 }
575
Ian Rogers62d6c772013-02-27 08:32:07 -0800576 Runtime* runtime = Runtime::Current();
577 runtime->GetThreadList()->SuspendAll();
578 Thread* self = Thread::Current();
579 ThreadState old_state = self->SetStateUnsafe(kRunnable);
580 CHECK_NE(old_state, kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100581 runtime->GetInstrumentation()->EnableDeoptimization();
Ian Rogers62d6c772013-02-27 08:32:07 -0800582 runtime->GetInstrumentation()->AddListener(&gDebugInstrumentationListener,
583 instrumentation::Instrumentation::kMethodEntered |
584 instrumentation::Instrumentation::kMethodExited |
Jeff Hao14dd5a82013-04-11 10:23:36 -0700585 instrumentation::Instrumentation::kDexPcMoved |
586 instrumentation::Instrumentation::kExceptionCaught);
Elliott Hughesa2155262011-11-16 16:26:58 -0800587 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800588 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
589 runtime->GetThreadList()->ResumeAll();
590
591 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700592}
593
594void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700595 CHECK(gDebuggerConnected);
596
Elliott Hughesc0f09332012-03-26 13:27:06 -0700597 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700598
Ian Rogers62d6c772013-02-27 08:32:07 -0800599 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
600 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
601 // and clear the object registry.
602 Runtime* runtime = Runtime::Current();
603 runtime->GetThreadList()->SuspendAll();
604 Thread* self = Thread::Current();
605 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100606
607 // Debugger may not be active at this point.
608 if (gDebuggerActive) {
609 {
610 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
611 // This prevents us from having any pending deoptimization request when the debugger attaches
612 // to us again while no event has been requested yet.
613 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
614 gDeoptimizationRequests.clear();
615 }
616 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
617 instrumentation::Instrumentation::kMethodEntered |
618 instrumentation::Instrumentation::kMethodExited |
619 instrumentation::Instrumentation::kDexPcMoved |
620 instrumentation::Instrumentation::kExceptionCaught);
621 runtime->GetInstrumentation()->DisableDeoptimization();
622 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100623 }
Elliott Hughes234ab152011-10-26 14:02:26 -0700624 gRegistry->Clear();
625 gDebuggerConnected = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800626 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
627 runtime->GetThreadList()->ResumeAll();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700628}
629
Elliott Hughesc0f09332012-03-26 13:27:06 -0700630bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700631 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700632}
633
Elliott Hughesc0f09332012-03-26 13:27:06 -0700634bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700635 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700636}
637
638int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800639 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700640}
641
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700642void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700643 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700644}
645
Elliott Hughes88d63092013-01-09 09:55:54 -0800646std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800647 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800648 if (o == NULL) {
649 return "NULL";
650 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800651 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes88d63092013-01-09 09:55:54 -0800652 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
Elliott Hughes436e3722012-02-17 20:01:47 -0800653 }
654 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700655 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800656 }
Elliott Hughesc308a5d2012-02-16 17:12:06 -0800657 return DescriptorToName(ClassHelper(o->AsClass()).GetDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700658}
659
Elliott Hughes88d63092013-01-09 09:55:54 -0800660JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800661 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800662 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800663 if (c == NULL) {
664 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800665 }
Elliott Hughes88d63092013-01-09 09:55:54 -0800666 class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800667 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800668}
669
Elliott Hughes88d63092013-01-09 09:55:54 -0800670JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800671 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800672 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800673 if (c == NULL) {
674 return status;
675 }
676 if (c->IsInterface()) {
677 // http://code.google.com/p/android/issues/detail?id=20856
Elliott Hughes88d63092013-01-09 09:55:54 -0800678 superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800679 } else {
Elliott Hughes88d63092013-01-09 09:55:54 -0800680 superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800681 }
682 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700683}
684
Elliott Hughes436e3722012-02-17 20:01:47 -0800685JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800686 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800687 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800688 return JDWP::ERR_INVALID_OBJECT;
689 }
690 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
691 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700692}
693
Elliott Hughes436e3722012-02-17 20:01:47 -0800694JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
695 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800696 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800697 if (c == NULL) {
698 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800699 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800700
701 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
702
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700703 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
704 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800705 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700706 if ((access_flags & kAccInterface) == 0) {
707 access_flags |= kAccSuper;
708 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800709
710 expandBufAdd4BE(pReply, access_flags);
711
712 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700713}
714
Elliott Hughesf327e072013-01-09 16:01:26 -0800715JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
716 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800717 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800718 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800719 return JDWP::ERR_INVALID_OBJECT;
720 }
721
722 // Ensure all threads are suspended while we read objects' lock words.
723 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100724 CHECK_EQ(self->GetState(), kRunnable);
725 self->TransitionFromRunnableToSuspended(kSuspended);
726 Runtime::Current()->GetThreadList()->SuspendAll();
Elliott Hughesf327e072013-01-09 16:01:26 -0800727
728 MonitorInfo monitor_info(o);
729
Sebastien Hertz54263242014-03-19 18:16:50 +0100730 Runtime::Current()->GetThreadList()->ResumeAll();
731 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800732
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700733 if (monitor_info.owner_ != NULL) {
734 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800735 } else {
736 expandBufAddObjectId(reply, gRegistry->Add(NULL));
737 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700738 expandBufAdd4BE(reply, monitor_info.entry_count_);
739 expandBufAdd4BE(reply, monitor_info.waiters_.size());
740 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
741 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800742 }
743 return JDWP::ERR_NONE;
744}
745
Elliott Hughes734b8c62013-01-11 15:32:45 -0800746JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
747 std::vector<JDWP::ObjectId>& monitors,
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100748 std::vector<uint32_t>& stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800749 ScopedObjectAccessUnchecked soa(Thread::Current());
750 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
751 Thread* thread;
752 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
753 if (error != JDWP::ERR_NONE) {
754 return error;
755 }
756 if (!IsSuspendedForDebugger(soa, thread)) {
757 return JDWP::ERR_THREAD_NOT_SUSPENDED;
758 }
759
760 struct OwnedMonitorVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800761 OwnedMonitorVisitor(Thread* thread, Context* context)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800762 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -0800763 : StackVisitor(thread, context), current_stack_depth(0) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800764
765 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
766 // annotalysis.
767 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
768 if (!GetMethod()->IsRuntimeMethod()) {
769 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800770 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800771 }
772 return true;
773 }
774
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800775 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800776 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800777 visitor->monitors.push_back(owned_monitor);
778 visitor->stack_depths.push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800779 }
780
Elliott Hughes734b8c62013-01-11 15:32:45 -0800781 size_t current_stack_depth;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800782 std::vector<mirror::Object*> monitors;
Elliott Hughes734b8c62013-01-11 15:32:45 -0800783 std::vector<uint32_t> stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800784 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800785 UniquePtr<Context> context(Context::Create());
786 OwnedMonitorVisitor visitor(thread, context.get());
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800787 visitor.WalkStack();
788
789 for (size_t i = 0; i < visitor.monitors.size(); ++i) {
790 monitors.push_back(gRegistry->Add(visitor.monitors[i]));
Elliott Hughes734b8c62013-01-11 15:32:45 -0800791 stack_depths.push_back(visitor.stack_depths[i]);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800792 }
793
794 return JDWP::ERR_NONE;
795}
796
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100797JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
798 JDWP::ObjectId& contended_monitor) {
Elliott Hughesf9501702013-01-11 11:22:27 -0800799 ScopedObjectAccessUnchecked soa(Thread::Current());
800 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
801 Thread* thread;
802 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
803 if (error != JDWP::ERR_NONE) {
804 return error;
805 }
806 if (!IsSuspendedForDebugger(soa, thread)) {
807 return JDWP::ERR_THREAD_NOT_SUSPENDED;
808 }
809
810 contended_monitor = gRegistry->Add(Monitor::GetContendedMonitor(thread));
811
812 return JDWP::ERR_NONE;
813}
814
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800815JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
816 std::vector<uint64_t>& counts)
817 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800818 gc::Heap* heap = Runtime::Current()->GetHeap();
819 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800820 std::vector<mirror::Class*> classes;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800821 counts.clear();
822 for (size_t i = 0; i < class_ids.size(); ++i) {
823 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800824 mirror::Class* c = DecodeClass(class_ids[i], status);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800825 if (c == NULL) {
826 return status;
827 }
828 classes.push_back(c);
829 counts.push_back(0);
830 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800831 heap->CountInstances(classes, false, &counts[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800832 return JDWP::ERR_NONE;
833}
834
Elliott Hughes3b78c942013-01-15 17:35:41 -0800835JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::ObjectId>& instances)
836 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800837 gc::Heap* heap = Runtime::Current()->GetHeap();
838 // We only want reachable instances, so do a GC.
839 heap->CollectGarbage(false);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800840 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800841 mirror::Class* c = DecodeClass(class_id, status);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800842 if (c == nullptr) {
Elliott Hughes3b78c942013-01-15 17:35:41 -0800843 return status;
844 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800845 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800846 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
847 for (size_t i = 0; i < raw_instances.size(); ++i) {
848 instances.push_back(gRegistry->Add(raw_instances[i]));
849 }
850 return JDWP::ERR_NONE;
851}
852
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800853JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
854 std::vector<JDWP::ObjectId>& referring_objects)
855 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800856 gc::Heap* heap = Runtime::Current()->GetHeap();
857 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800858 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800859 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800860 return JDWP::ERR_INVALID_OBJECT;
861 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800862 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800863 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800864 for (size_t i = 0; i < raw_instances.size(); ++i) {
865 referring_objects.push_back(gRegistry->Add(raw_instances[i]));
866 }
867 return JDWP::ERR_NONE;
868}
869
Elliott Hughes64f574f2013-02-20 14:57:12 -0800870JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id)
871 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100872 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
873 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
874 return JDWP::ERR_INVALID_OBJECT;
875 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800876 gRegistry->DisableCollection(object_id);
877 return JDWP::ERR_NONE;
878}
879
880JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id)
881 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100882 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
883 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
884 // also ignores these cases and never return an error. However it's not obvious why this command
885 // should behave differently from DisableCollection and IsCollected commands. So let's be more
886 // strict and return an error if this happens.
887 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
888 return JDWP::ERR_INVALID_OBJECT;
889 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800890 gRegistry->EnableCollection(object_id);
891 return JDWP::ERR_NONE;
892}
893
894JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool& is_collected)
895 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100896 if (object_id == 0) {
897 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +0100898 return JDWP::ERR_INVALID_OBJECT;
899 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100900 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
901 // the RI seems to ignore this and assume object has been collected.
902 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
903 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
904 is_collected = true;
905 } else {
906 is_collected = gRegistry->IsCollected(object_id);
907 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800908 return JDWP::ERR_NONE;
909}
910
911void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
912 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
913 gRegistry->DisposeObject(object_id, reference_count);
914}
915
Elliott Hughes88d63092013-01-09 09:55:54 -0800916JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800917 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800918 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800919 if (c == NULL) {
920 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800921 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800922
923 expandBufAdd1(pReply, c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS);
Elliott Hughes88d63092013-01-09 09:55:54 -0800924 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800925 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700926}
927
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800928void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800929 // Get the complete list of reference classes (i.e. all classes except
930 // the primitive types).
931 // Returns a newly-allocated buffer full of RefTypeId values.
932 struct ClassListCreator {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800933 explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800934 }
935
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800936 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800937 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
938 }
939
Elliott Hughes64f574f2013-02-20 14:57:12 -0800940 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
941 // annotalysis.
942 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -0800943 if (!c->IsPrimitive()) {
Elliott Hughes64f574f2013-02-20 14:57:12 -0800944 classes.push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -0800945 }
946 return true;
947 }
948
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800949 std::vector<JDWP::RefTypeId>& classes;
Elliott Hughesa2155262011-11-16 16:26:58 -0800950 };
951
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800952 ClassListCreator clc(classes);
Elliott Hughesa2155262011-11-16 16:26:58 -0800953 Runtime::Current()->GetClassLinker()->VisitClasses(ClassListCreator::Visit, &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700954}
955
Elliott Hughes88d63092013-01-09 09:55:54 -0800956JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, uint32_t* pStatus, std::string* pDescriptor) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800957 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800958 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800959 if (c == NULL) {
960 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800961 }
962
Elliott Hughesa2155262011-11-16 16:26:58 -0800963 if (c->IsArrayClass()) {
964 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
965 *pTypeTag = JDWP::TT_ARRAY;
966 } else {
967 if (c->IsErroneous()) {
968 *pStatus = JDWP::CS_ERROR;
969 } else {
970 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
971 }
972 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
973 }
974
975 if (pDescriptor != NULL) {
Ian Rogersdfb325e2013-10-30 01:00:44 -0700976 *pDescriptor = ClassHelper(c).GetDescriptor();
Elliott Hughesa2155262011-11-16 16:26:58 -0800977 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800978 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700979}
980
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800981void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800982 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800983 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
984 ids.clear();
985 for (size_t i = 0; i < classes.size(); ++i) {
986 ids.push_back(gRegistry->Add(classes[i]));
987 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700988}
989
Elliott Hughes64f574f2013-02-20 14:57:12 -0800990JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
991 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800992 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800993 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800994 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -0800995 }
Elliott Hughes2435a572012-02-17 16:07:41 -0800996
997 JDWP::JdwpTypeTag type_tag;
998 if (o->GetClass()->IsArrayClass()) {
999 type_tag = JDWP::TT_ARRAY;
1000 } else if (o->GetClass()->IsInterface()) {
1001 type_tag = JDWP::TT_INTERFACE;
1002 } else {
1003 type_tag = JDWP::TT_CLASS;
1004 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001005 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001006
1007 expandBufAdd1(pReply, type_tag);
1008 expandBufAddRefTypeId(pReply, type_id);
1009
1010 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001011}
1012
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001013JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001014 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001015 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001016 if (c == NULL) {
1017 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001018 }
Ian Rogersdfb325e2013-10-30 01:00:44 -07001019 *signature = ClassHelper(c).GetDescriptor();
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001020 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001021}
1022
Elliott Hughes88d63092013-01-09 09:55:54 -08001023JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string& result) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001024 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001025 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001026 if (c == NULL) {
1027 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001028 }
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001029 if (c->IsProxyClass()) {
1030 return JDWP::ERR_ABSENT_INFORMATION;
1031 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001032 result = ClassHelper(c).GetSourceFile();
1033 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001034}
1035
Elliott Hughes88d63092013-01-09 09:55:54 -08001036JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001037 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001038 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001039 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes546b9862012-06-20 16:06:13 -07001040 return JDWP::ERR_INVALID_OBJECT;
1041 }
Ian Rogers98379392014-02-24 16:53:16 -08001042 tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001043 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001044}
1045
Elliott Hughesaed4be92011-12-02 16:16:23 -08001046size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001047 switch (tag) {
1048 case JDWP::JT_VOID:
1049 return 0;
1050 case JDWP::JT_BYTE:
1051 case JDWP::JT_BOOLEAN:
1052 return 1;
1053 case JDWP::JT_CHAR:
1054 case JDWP::JT_SHORT:
1055 return 2;
1056 case JDWP::JT_FLOAT:
1057 case JDWP::JT_INT:
1058 return 4;
1059 case JDWP::JT_ARRAY:
1060 case JDWP::JT_OBJECT:
1061 case JDWP::JT_STRING:
1062 case JDWP::JT_THREAD:
1063 case JDWP::JT_THREAD_GROUP:
1064 case JDWP::JT_CLASS_LOADER:
1065 case JDWP::JT_CLASS_OBJECT:
1066 return sizeof(JDWP::ObjectId);
1067 case JDWP::JT_DOUBLE:
1068 case JDWP::JT_LONG:
1069 return 8;
1070 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001071 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001072 return -1;
1073 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001074}
1075
Elliott Hughes88d63092013-01-09 09:55:54 -08001076JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int& length) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001077 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001078 mirror::Array* a = DecodeArray(array_id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001079 if (a == NULL) {
1080 return status;
Elliott Hughes24437992011-11-30 14:49:33 -08001081 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001082 length = a->GetLength();
1083 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001084}
1085
Elliott Hughes88d63092013-01-09 09:55:54 -08001086JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001087 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001088 mirror::Array* a = DecodeArray(array_id, status);
Ian Rogers98379392014-02-24 16:53:16 -08001089 if (a == nullptr) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001090 return status;
1091 }
Elliott Hughes24437992011-11-30 14:49:33 -08001092
1093 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1094 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001095 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001096 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001097 std::string descriptor(ClassHelper(a->GetClass()).GetDescriptor());
Elliott Hughes24437992011-11-30 14:49:33 -08001098 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
1099
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001100 expandBufAdd1(pReply, tag);
1101 expandBufAdd4BE(pReply, count);
1102
Elliott Hughes24437992011-11-30 14:49:33 -08001103 if (IsPrimitiveTag(tag)) {
1104 size_t width = GetTagWidth(tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001105 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1106 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001107 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001108 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1109 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001110 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001111 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1112 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001113 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001114 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1115 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001116 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001117 memcpy(dst, &src[offset * width], count * width);
1118 }
1119 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001120 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001121 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001122 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001123 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001124 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
1125 : tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001126 expandBufAdd1(pReply, specific_tag);
1127 expandBufAddObjectId(pReply, gRegistry->Add(element));
1128 }
1129 }
1130
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001131 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001132}
1133
Ian Rogersef7d42f2014-01-06 12:55:46 -08001134template <typename T>
1135static void CopyArrayData(mirror::Array* a, JDWP::Request& src, int offset, int count)
1136 NO_THREAD_SAFETY_ANALYSIS {
1137 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001138 DCHECK(a->GetClass()->IsPrimitiveArray());
1139
Ian Rogersef7d42f2014-01-06 12:55:46 -08001140 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001141 for (int i = 0; i < count; ++i) {
1142 *dst++ = src.ReadValue(sizeof(T));
1143 }
1144}
1145
Elliott Hughes88d63092013-01-09 09:55:54 -08001146JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001147 JDWP::Request& request)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001148 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001149 JDWP::JdwpError status;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001150 mirror::Array* dst = DecodeArray(array_id, status);
1151 if (dst == NULL) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001152 return status;
1153 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001154
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001155 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001156 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001157 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001158 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001159 const char* descriptor = ClassHelper(dst->GetClass()).GetDescriptor();
1160 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor + 1);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001161
1162 if (IsPrimitiveTag(tag)) {
1163 size_t width = GetTagWidth(tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001164 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001165 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001166 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001167 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001168 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001169 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001170 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001171 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001172 }
1173 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001174 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001175 for (int i = 0; i < count; ++i) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001176 JDWP::ObjectId id = request.ReadObjectId();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001177 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001178 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001179 return JDWP::ERR_INVALID_OBJECT;
1180 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001181 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001182 }
1183 }
1184
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001185 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001186}
1187
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001188JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001189 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001190}
1191
Elliott Hughes88d63092013-01-09 09:55:54 -08001192JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001193 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001194 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001195 if (c == NULL) {
1196 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001197 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001198 new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001199 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001200}
1201
Elliott Hughesbf13d362011-12-08 15:51:37 -08001202/*
1203 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1204 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001205JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001206 JDWP::ObjectId& new_array) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001207 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001208 mirror::Class* c = DecodeClass(array_class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001209 if (c == NULL) {
1210 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001211 }
Ian Rogers6fac4472014-02-25 17:01:10 -08001212 new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
1213 c->GetComponentSize(),
1214 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001215 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001216}
1217
Elliott Hughes88d63092013-01-09 09:55:54 -08001218bool Dbg::MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001219 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001220 mirror::Class* c1 = DecodeClass(instance_class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001221 CHECK(c1 != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001222 mirror::Class* c2 = DecodeClass(class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001223 CHECK(c2 != NULL);
Sebastien Hertz123756a2013-11-27 15:49:42 +01001224 return c2->IsAssignableFrom(c1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001225}
1226
Brian Carlstromea46f952013-07-30 01:26:50 -07001227static JDWP::FieldId ToFieldId(const mirror::ArtField* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001228 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001229 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001230 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001231}
1232
Brian Carlstromea46f952013-07-30 01:26:50 -07001233static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001234 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001235 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001236 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001237}
1238
Brian Carlstromea46f952013-07-30 01:26:50 -07001239static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001240 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001241 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001242 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001243}
1244
Brian Carlstromea46f952013-07-30 01:26:50 -07001245static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001246 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001247 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001248 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001249}
1250
Brian Carlstromea46f952013-07-30 01:26:50 -07001251static void SetLocation(JDWP::JdwpLocation& location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001252 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001253 if (m == NULL) {
1254 memset(&location, 0, sizeof(location));
1255 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001256 mirror::Class* c = m->GetDeclaringClass();
Elliott Hughes74847412012-06-20 18:10:21 -07001257 location.type_tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001258 location.class_id = gRegistry->AddRefType(c);
Elliott Hughes74847412012-06-20 18:10:21 -07001259 location.method_id = ToMethodId(m);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001260 location.dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001261 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001262}
1263
Elliott Hughesa96836a2013-01-17 12:27:49 -08001264std::string Dbg::GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001265 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001266 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001267 return MethodHelper(m).GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001268}
1269
Elliott Hughesa96836a2013-01-17 12:27:49 -08001270std::string Dbg::GetFieldName(JDWP::FieldId field_id)
1271 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001272 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughesa96836a2013-01-17 12:27:49 -08001273 return FieldHelper(f).GetName();
1274}
1275
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001276/*
1277 * Augment the access flags for synthetic methods and fields by setting
1278 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1279 * flags not specified by the Java programming language.
1280 */
1281static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1282 accessFlags &= kAccJavaFlagsMask;
1283 if ((accessFlags & kAccSynthetic) != 0) {
1284 accessFlags |= 0xf0000000;
1285 }
1286 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001287}
1288
Elliott Hughesdbb40792011-11-18 17:05:22 -08001289/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001290 * Circularly shifts registers so that arguments come first. Debuggers
1291 * expect slots to begin with arguments, but dex code places them at
1292 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001293 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001294static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1295 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1296 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001297 if (code_item == nullptr) {
1298 // We should not get here for a method without code (native, proxy or abstract). Log it and
1299 // return the slot as is since all registers are arguments.
1300 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1301 return slot;
1302 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001303 uint16_t ins_size = code_item->ins_size_;
1304 uint16_t locals_size = code_item->registers_size_ - ins_size;
1305 if (slot >= locals_size) {
1306 return slot - locals_size;
1307 } else {
1308 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001309 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001310}
1311
Jeff Haob7cefc72013-11-14 14:51:09 -08001312/*
1313 * Circularly shifts registers so that arguments come last. Reverts
1314 * slots to dex style argument placement.
1315 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001316static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001317 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Jeff Haob7cefc72013-11-14 14:51:09 -08001318 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001319 if (code_item == nullptr) {
1320 // We should not get here for a method without code (native, proxy or abstract). Log it and
1321 // return the slot as is since all registers are arguments.
1322 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1323 return slot;
1324 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001325 uint16_t ins_size = code_item->ins_size_;
1326 uint16_t locals_size = code_item->registers_size_ - ins_size;
1327 if (slot < ins_size) {
1328 return slot + locals_size;
1329 } else {
1330 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001331 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001332}
1333
Elliott Hughes88d63092013-01-09 09:55:54 -08001334JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001335 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001336 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001337 if (c == NULL) {
1338 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001339 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001340
1341 size_t instance_field_count = c->NumInstanceFields();
1342 size_t static_field_count = c->NumStaticFields();
1343
1344 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1345
1346 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001347 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001348 FieldHelper fh(f);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001349 expandBufAddFieldId(pReply, ToFieldId(f));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001350 expandBufAddUtf8String(pReply, fh.GetName());
1351 expandBufAddUtf8String(pReply, fh.GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001352 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001353 static const char genericSignature[1] = "";
1354 expandBufAddUtf8String(pReply, genericSignature);
1355 }
1356 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1357 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001358 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001359}
1360
Elliott Hughes88d63092013-01-09 09:55:54 -08001361JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001362 JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001363 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001364 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001365 if (c == NULL) {
1366 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001367 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001368
1369 size_t direct_method_count = c->NumDirectMethods();
1370 size_t virtual_method_count = c->NumVirtualMethods();
1371
1372 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1373
1374 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001375 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001376 MethodHelper mh(m);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001377 expandBufAddMethodId(pReply, ToMethodId(m));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001378 expandBufAddUtf8String(pReply, mh.GetName());
Ian Rogersd91d6d62013-09-25 20:26:14 -07001379 expandBufAddUtf8String(pReply, mh.GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001380 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001381 static const char genericSignature[1] = "";
1382 expandBufAddUtf8String(pReply, genericSignature);
1383 }
1384 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1385 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001386 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001387}
1388
Elliott Hughes88d63092013-01-09 09:55:54 -08001389JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001390 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001391 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001392 if (c == NULL) {
1393 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001394 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001395
1396 ClassHelper kh(c);
Ian Rogersd24e2642012-06-06 21:21:43 -07001397 size_t interface_count = kh.NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001398 expandBufAdd4BE(pReply, interface_count);
1399 for (size_t i = 0; i < interface_count; ++i) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001400 expandBufAddRefTypeId(pReply, gRegistry->AddRefType(kh.GetDirectInterface(i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001401 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001402 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001403}
1404
Elliott Hughes88d63092013-01-09 09:55:54 -08001405void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001406 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001407 struct DebugCallbackContext {
1408 int numItems;
1409 JDWP::ExpandBuf* pReply;
1410
Elliott Hughes2435a572012-02-17 16:07:41 -08001411 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001412 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1413 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001414 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001415 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001416 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001417 }
1418 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001419 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001420 MethodHelper mh(m);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001421 const DexFile::CodeItem* code_item = mh.GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001422 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001423 if (code_item == nullptr) {
1424 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001425 start = -1;
1426 end = -1;
1427 } else {
1428 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001429 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001430 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001431 }
1432
1433 expandBufAdd8BE(pReply, start);
1434 expandBufAdd8BE(pReply, end);
1435
1436 // Add numLines later
1437 size_t numLinesOffset = expandBufGetLength(pReply);
1438 expandBufAdd4BE(pReply, 0);
1439
1440 DebugCallbackContext context;
1441 context.numItems = 0;
1442 context.pReply = pReply;
1443
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001444 if (code_item != nullptr) {
1445 mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
1446 DebugCallbackContext::Callback, NULL, &context);
1447 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001448
1449 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001450}
1451
Elliott Hughes88d63092013-01-09 09:55:54 -08001452void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001453 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001454 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001455 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001456 size_t variable_count;
1457 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001458
Jeff Haob7cefc72013-11-14 14:51:09 -08001459 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress, const char* name, const char* descriptor, const char* signature)
1460 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001461 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1462
Jeff Haob7cefc72013-11-14 14:51:09 -08001463 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 -08001464
Jeff Haob7cefc72013-11-14 14:51:09 -08001465 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001466
Elliott Hughesdbb40792011-11-18 17:05:22 -08001467 expandBufAdd8BE(pContext->pReply, startAddress);
1468 expandBufAddUtf8String(pContext->pReply, name);
1469 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001470 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001471 expandBufAddUtf8String(pContext->pReply, signature);
1472 }
1473 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1474 expandBufAdd4BE(pContext->pReply, slot);
1475
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001476 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001477 }
1478 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001479 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001480 MethodHelper mh(m);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001481
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001482 // arg_count considers doubles and longs to take 2 units.
1483 // variable_count considers everything to take 1 unit.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001484 std::string shorty(mh.GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001485 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001486
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001487 // We don't know the total number of variables yet, so leave a blank and update it later.
1488 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001489 expandBufAdd4BE(pReply, 0);
1490
1491 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001492 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001493 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001494 context.variable_count = 0;
1495 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001496
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001497 const DexFile::CodeItem* code_item = mh.GetCodeItem();
1498 if (code_item != nullptr) {
1499 mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL,
1500 DebugCallbackContext::Callback, &context);
1501 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001502
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001503 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001504}
1505
Jeff Hao579b0242013-11-18 13:16:49 -08001506void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1507 JDWP::ExpandBuf* pReply) {
1508 mirror::ArtMethod* m = FromMethodId(method_id);
1509 JDWP::JdwpTag tag = BasicTagFromDescriptor(MethodHelper(m).GetShorty());
1510 OutputJValue(tag, return_value, pReply);
1511}
1512
Elliott Hughes9777ba22013-01-17 09:04:19 -08001513JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
1514 std::vector<uint8_t>& bytecodes)
1515 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001516 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001517 if (m == NULL) {
1518 return JDWP::ERR_INVALID_METHODID;
1519 }
1520 MethodHelper mh(m);
1521 const DexFile::CodeItem* code_item = mh.GetCodeItem();
1522 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1523 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1524 const uint8_t* end = begin + byte_count;
1525 for (const uint8_t* p = begin; p != end; ++p) {
1526 bytecodes.push_back(*p);
1527 }
1528 return JDWP::ERR_NONE;
1529}
1530
Elliott Hughes88d63092013-01-09 09:55:54 -08001531JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
1532 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001533}
1534
Elliott Hughes88d63092013-01-09 09:55:54 -08001535JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
1536 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001537}
1538
Elliott Hughes88d63092013-01-09 09:55:54 -08001539static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1540 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001541 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001542 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001543 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001544 mirror::Class* c = DecodeClass(ref_type_id, status);
Elliott Hughes88d63092013-01-09 09:55:54 -08001545 if (ref_type_id != 0 && c == NULL) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001546 return status;
1547 }
1548
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001549 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001550 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001551 return JDWP::ERR_INVALID_OBJECT;
1552 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001553 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001554
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001555 mirror::Class* receiver_class = c;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001556 if (receiver_class == NULL && o != NULL) {
1557 receiver_class = o->GetClass();
1558 }
1559 // TODO: should we give up now if receiver_class is NULL?
1560 if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
1561 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001562 return JDWP::ERR_INVALID_FIELDID;
1563 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001564
Elliott Hughes0cf74332012-02-23 23:14:00 -08001565 // The RI only enforces the static/non-static mismatch in one direction.
1566 // TODO: should we change the tests and check both?
1567 if (is_static) {
1568 if (!f->IsStatic()) {
1569 return JDWP::ERR_INVALID_FIELDID;
1570 }
1571 } else {
1572 if (f->IsStatic()) {
1573 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001574 }
1575 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001576 if (f->IsStatic()) {
1577 o = f->GetDeclaringClass();
1578 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001579
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001580 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001581 JValue field_value;
1582 if (tag == JDWP::JT_VOID) {
1583 LOG(FATAL) << "Unknown tag: " << tag;
1584 } else if (!IsPrimitiveTag(tag)) {
1585 field_value.SetL(f->GetObject(o));
1586 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1587 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001588 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001589 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001590 }
Jeff Hao579b0242013-11-18 13:16:49 -08001591 Dbg::OutputJValue(tag, &field_value, pReply);
1592
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001593 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001594}
1595
Elliott Hughes88d63092013-01-09 09:55:54 -08001596JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001597 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001598 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001599}
1600
Elliott Hughes88d63092013-01-09 09:55:54 -08001601JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) {
1602 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001603}
1604
Elliott Hughes88d63092013-01-09 09:55:54 -08001605static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001606 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001607 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001608 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001609 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001610 return JDWP::ERR_INVALID_OBJECT;
1611 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001612 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001613
1614 // The RI only enforces the static/non-static mismatch in one direction.
1615 // TODO: should we change the tests and check both?
1616 if (is_static) {
1617 if (!f->IsStatic()) {
1618 return JDWP::ERR_INVALID_FIELDID;
1619 }
1620 } else {
1621 if (f->IsStatic()) {
1622 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001623 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001624 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001625 if (f->IsStatic()) {
1626 o = f->GetDeclaringClass();
1627 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001628
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001629 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001630
1631 if (IsPrimitiveTag(tag)) {
1632 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001633 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001634 // Debugging can't use transactional mode (runtime only).
1635 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001636 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001637 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001638 // Debugging can't use transactional mode (runtime only).
1639 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001640 }
1641 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001642 mirror::Object* v = gRegistry->Get<mirror::Object*>(value);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001643 if (v == ObjectRegistry::kInvalidObject) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001644 return JDWP::ERR_INVALID_OBJECT;
1645 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001646 if (v != NULL) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001647 mirror::Class* field_type = FieldHelper(f).GetType();
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001648 if (!field_type->IsAssignableFrom(v->GetClass())) {
1649 return JDWP::ERR_INVALID_OBJECT;
1650 }
1651 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001652 // Debugging can't use transactional mode (runtime only).
1653 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001654 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001655
1656 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001657}
1658
Elliott Hughes88d63092013-01-09 09:55:54 -08001659JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001660 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001661 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001662}
1663
Elliott Hughes88d63092013-01-09 09:55:54 -08001664JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1665 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001666}
1667
Elliott Hughes88d63092013-01-09 09:55:54 -08001668std::string Dbg::StringToUtf8(JDWP::ObjectId string_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001669 mirror::String* s = gRegistry->Get<mirror::String*>(string_id);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001670 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001671}
1672
Jeff Hao579b0242013-11-18 13:16:49 -08001673void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1674 if (IsPrimitiveTag(tag)) {
1675 expandBufAdd1(pReply, tag);
1676 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1677 expandBufAdd1(pReply, return_value->GetI());
1678 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1679 expandBufAdd2BE(pReply, return_value->GetI());
1680 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1681 expandBufAdd4BE(pReply, return_value->GetI());
1682 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1683 expandBufAdd8BE(pReply, return_value->GetJ());
1684 } else {
1685 CHECK_EQ(tag, JDWP::JT_VOID);
1686 }
1687 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001688 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001689 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001690 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001691 expandBufAddObjectId(pReply, gRegistry->Add(value));
1692 }
1693}
1694
Elliott Hughes221229c2013-01-08 18:17:50 -08001695JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string& name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001696 ScopedObjectAccessUnchecked soa(Thread::Current());
1697 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001698 Thread* thread;
1699 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1700 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1701 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001702 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001703
1704 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001705 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Brian Carlstromea46f952013-07-30 01:26:50 -07001706 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001707 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1708 mirror::String* s =
1709 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Elliott Hughes221229c2013-01-08 18:17:50 -08001710 if (s != NULL) {
1711 name = s->ToModifiedUtf8();
1712 }
1713 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001714}
1715
Elliott Hughes221229c2013-01-08 18:17:50 -08001716JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001717 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001718 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001719 if (thread_object == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001720 return JDWP::ERR_INVALID_OBJECT;
1721 }
Ian Rogers98379392014-02-24 16:53:16 -08001722 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001723 // Okay, so it's an object, but is it actually a thread?
Ian Rogers50b35e22012-10-04 10:09:15 -07001724 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001725 Thread* thread;
1726 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1727 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1728 // Zombie threads are in the null group.
1729 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001730 error = JDWP::ERR_NONE;
1731 } else if (error == JDWP::ERR_NONE) {
1732 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1733 CHECK(c != nullptr);
1734 mirror::ArtField* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
1735 CHECK(f != NULL);
1736 mirror::Object* group = f->GetObject(thread_object);
1737 CHECK(group != NULL);
1738 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1739 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001740 }
Ian Rogers98379392014-02-24 16:53:16 -08001741 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001742 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001743}
1744
Elliott Hughes88d63092013-01-09 09:55:54 -08001745std::string Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001746 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001747 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001748 CHECK(thread_group != nullptr);
1749 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupName");
1750 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1751 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001752 mirror::ArtField* f = c->FindInstanceField("name", "Ljava/lang/String;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001753 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001754 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Ian Rogers98379392014-02-24 16:53:16 -08001755 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes499c5132011-11-17 14:55:11 -08001756 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001757}
1758
Elliott Hughes88d63092013-01-09 09:55:54 -08001759JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id) {
Ian Rogers98379392014-02-24 16:53:16 -08001760 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001761 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001762 CHECK(thread_group != nullptr);
1763 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupParent");
1764 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1765 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001766 mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
Elliott Hughes4e235312011-12-02 11:34:15 -08001767 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001768 mirror::Object* parent = f->GetObject(thread_group);
Ian Rogers98379392014-02-24 16:53:16 -08001769 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes4e235312011-12-02 11:34:15 -08001770 return gRegistry->Add(parent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001771}
1772
1773JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001774 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001775 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001776 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001777 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001778}
1779
1780JDWP::ObjectId Dbg::GetMainThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001781 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001782 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001783 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001784 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001785}
1786
Jeff Hao920af3e2013-08-28 15:46:38 -07001787JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
1788 switch (state) {
1789 case kBlocked:
1790 return JDWP::TS_MONITOR;
1791 case kNative:
1792 case kRunnable:
1793 case kSuspended:
1794 return JDWP::TS_RUNNING;
1795 case kSleeping:
1796 return JDWP::TS_SLEEPING;
1797 case kStarting:
1798 case kTerminated:
1799 return JDWP::TS_ZOMBIE;
1800 case kTimedWaiting:
1801 case kWaitingForDebuggerSend:
1802 case kWaitingForDebuggerSuspension:
1803 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01001804 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07001805 case kWaitingForGcToComplete:
1806 case kWaitingForCheckPointsToRun:
1807 case kWaitingForJniOnLoad:
1808 case kWaitingForSignalCatcherOutput:
1809 case kWaitingInMainDebuggerLoop:
1810 case kWaitingInMainSignalCatcherLoop:
1811 case kWaitingPerformingGc:
1812 case kWaiting:
1813 return JDWP::TS_WAIT;
1814 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
1815 }
1816 LOG(FATAL) << "Unknown thread state: " << state;
1817 return JDWP::TS_ZOMBIE;
1818}
1819
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001820JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
1821 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001822 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08001823
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001824 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
1825
Ian Rogers50b35e22012-10-04 10:09:15 -07001826 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001827 Thread* thread;
1828 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1829 if (error != JDWP::ERR_NONE) {
1830 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1831 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08001832 return JDWP::ERR_NONE;
1833 }
1834 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08001835 }
1836
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001837 if (IsSuspendedForDebugger(soa, thread)) {
1838 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08001839 }
1840
Jeff Hao920af3e2013-08-28 15:46:38 -07001841 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08001842 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001843}
1844
Elliott Hughes221229c2013-01-08 18:17:50 -08001845JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001846 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07001847 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001848 Thread* thread;
1849 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1850 if (error != JDWP::ERR_NONE) {
1851 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08001852 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001853 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001854 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08001855 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001856}
1857
Elliott Hughesf9501702013-01-11 11:22:27 -08001858JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
1859 ScopedObjectAccess soa(Thread::Current());
1860 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1861 Thread* thread;
1862 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1863 if (error != JDWP::ERR_NONE) {
1864 return error;
1865 }
1866 thread->Interrupt();
1867 return JDWP::ERR_NONE;
1868}
1869
Elliott Hughescaf76542012-06-28 16:08:22 -07001870void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) {
Ian Rogers365c1022012-06-22 15:05:28 -07001871 class ThreadListVisitor {
1872 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001873 ThreadListVisitor(const ScopedObjectAccessUnchecked& soa, mirror::Object* desired_thread_group,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001874 std::vector<JDWP::ObjectId>& thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001875 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001876 : soa_(soa), desired_thread_group_(desired_thread_group), thread_ids_(thread_ids) {}
Ian Rogers365c1022012-06-22 15:05:28 -07001877
Elliott Hughesa2155262011-11-16 16:26:58 -08001878 static void Visit(Thread* t, void* arg) {
1879 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
1880 }
1881
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001882 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1883 // annotalysis.
1884 void Visit(Thread* t) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001885 if (t == Dbg::GetDebugThread()) {
1886 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
1887 // query all threads, so it's easier if we just don't tell them about this thread.
1888 return;
1889 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001890 mirror::Object* peer = t->GetPeer();
jeffhao0dfbb7e2012-11-28 15:26:03 -08001891 if (IsInDesiredThreadGroup(peer)) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001892 thread_ids_.push_back(gRegistry->Add(peer));
Elliott Hughesa2155262011-11-16 16:26:58 -08001893 }
1894 }
1895
Ian Rogers365c1022012-06-22 15:05:28 -07001896 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001897 bool IsInDesiredThreadGroup(mirror::Object* peer)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001898 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao0dfbb7e2012-11-28 15:26:03 -08001899 // peer might be NULL if the thread is still starting up.
1900 if (peer == NULL) {
1901 // We can't tell the debugger about this thread yet.
1902 // TODO: if we identified threads to the debugger by their Thread*
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001903 // rather than their peer's mirror::Object*, we could fix this.
jeffhao0dfbb7e2012-11-28 15:26:03 -08001904 // Doing so might help us report ZOMBIE threads too.
1905 return false;
1906 }
jeffhaoc1e04902012-12-13 12:41:10 -08001907 // Do we want threads from all thread groups?
1908 if (desired_thread_group_ == NULL) {
1909 return true;
1910 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001911 mirror::Object* group = soa_.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(peer);
jeffhao0dfbb7e2012-11-28 15:26:03 -08001912 return (group == desired_thread_group_);
1913 }
1914
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07001915 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001916 mirror::Object* const desired_thread_group_;
Elliott Hughescaf76542012-06-28 16:08:22 -07001917 std::vector<JDWP::ObjectId>& thread_ids_;
Elliott Hughesa2155262011-11-16 16:26:58 -08001918 };
1919
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001920 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001921 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001922 ThreadListVisitor tlv(soa, thread_group, thread_ids);
Ian Rogers50b35e22012-10-04 10:09:15 -07001923 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07001924 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
Elliott Hughescaf76542012-06-28 16:08:22 -07001925}
Elliott Hughesa2155262011-11-16 16:26:58 -08001926
Elliott Hughescaf76542012-06-28 16:08:22 -07001927void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001928 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001929 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughescaf76542012-06-28 16:08:22 -07001930
1931 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Brian Carlstromea46f952013-07-30 01:26:50 -07001932 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001933 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Elliott Hughescaf76542012-06-28 16:08:22 -07001934
1935 // Get the array and size out of the ArrayList<ThreadGroup>...
Brian Carlstromea46f952013-07-30 01:26:50 -07001936 mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
1937 mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001938 mirror::ObjectArray<mirror::Object>* groups_array =
1939 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
Elliott Hughescaf76542012-06-28 16:08:22 -07001940 const int32_t size = size_field->GetInt(groups_array_list);
1941
1942 // Copy the first 'size' elements out of the array into the result.
1943 for (int32_t i = 0; i < size; ++i) {
1944 child_thread_group_ids.push_back(gRegistry->Add(groups_array->Get(i)));
Elliott Hughesa2155262011-11-16 16:26:58 -08001945 }
1946}
1947
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001948static int GetStackDepth(Thread* thread)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001949 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07001950 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001951 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogers7a22fa62013-01-23 12:16:16 -08001952 : StackVisitor(thread, NULL), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07001953
Elliott Hughes64f574f2013-02-20 14:57:12 -08001954 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1955 // annotalysis.
1956 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07001957 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08001958 ++depth;
1959 }
Elliott Hughes530fa002012-03-12 11:44:49 -07001960 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001961 }
1962 size_t depth;
1963 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07001964
Ian Rogers7a22fa62013-01-23 12:16:16 -08001965 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07001966 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001967 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001968}
1969
Elliott Hughes221229c2013-01-08 18:17:50 -08001970JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001971 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08001972 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001973 Thread* thread;
1974 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1975 if (error != JDWP::ERR_NONE) {
1976 return error;
1977 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08001978 if (!IsSuspendedForDebugger(soa, thread)) {
1979 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1980 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001981 result = GetStackDepth(thread);
1982 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08001983}
1984
Ian Rogers306057f2012-11-26 12:45:53 -08001985JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
1986 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001987 class GetFrameVisitor : public StackVisitor {
1988 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08001989 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001990 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08001991 : StackVisitor(thread, NULL), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001992 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
1993 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08001994 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001995
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001996 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1997 // annotalysis.
1998 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07001999 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002000 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002001 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002002 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002003 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002004 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002005 if (depth_ >= start_frame_) {
2006 JDWP::FrameId frame_id(GetFrameId());
2007 JDWP::JdwpLocation location;
2008 SetLocation(location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002009 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002010 expandBufAdd8BE(buf_, frame_id);
2011 expandBufAddLocation(buf_, location);
2012 }
2013 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002014 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002015 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002016
2017 private:
2018 size_t depth_;
2019 const size_t start_frame_;
2020 const size_t frame_count_;
2021 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002022 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002023
2024 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002025 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002026 Thread* thread;
2027 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2028 if (error != JDWP::ERR_NONE) {
2029 return error;
2030 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002031 if (!IsSuspendedForDebugger(soa, thread)) {
2032 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2033 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002034 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002035 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002036 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002037}
2038
2039JDWP::ObjectId Dbg::GetThreadSelfId() {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002040 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08002041 return gRegistry->Add(soa.Self()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002042}
2043
Elliott Hughes475fc232011-10-25 15:00:35 -07002044void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002045 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002046}
2047
2048void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07002049 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002050}
2051
Elliott Hughes221229c2013-01-08 18:17:50 -08002052JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002053 ScopedLocalRef<jobject> peer(Thread::Current()->GetJniEnv(), NULL);
2054 {
2055 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002056 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002057 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002058 if (peer.get() == NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002059 return JDWP::ERR_THREAD_NOT_ALIVE;
2060 }
2061 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002062 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002063 Thread* thread = ThreadList::SuspendThreadByPeer(peer.get(), request_suspension, true,
2064 &timed_out);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002065 if (thread != NULL) {
2066 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002067 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002068 return JDWP::ERR_INTERNAL;
2069 } else {
2070 return JDWP::ERR_THREAD_NOT_ALIVE;
2071 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002072}
2073
Elliott Hughes221229c2013-01-08 18:17:50 -08002074void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002075 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002076 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
jeffhaoa77f0f62012-12-05 17:19:31 -08002077 Thread* thread;
2078 {
2079 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2080 thread = Thread::FromManagedThread(soa, peer);
2081 }
Elliott Hughes4e235312011-12-02 11:34:15 -08002082 if (thread == NULL) {
2083 LOG(WARNING) << "No such thread for resume: " << peer;
2084 return;
2085 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002086 bool needs_resume;
2087 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002088 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002089 needs_resume = thread->GetSuspendCount() > 0;
2090 }
2091 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002092 Runtime::Current()->GetThreadList()->Resume(thread, true);
2093 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002094}
2095
2096void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002097 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002098}
2099
Ian Rogers0399dde2012-06-06 17:09:28 -07002100struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002101 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002102 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002103 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002104
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002105 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2106 // annotalysis.
2107 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002108 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002109 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002110 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002111 this_object = GetThisObject();
2112 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002113 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002114 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002115
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002116 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002117 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002118};
2119
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002120JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2121 JDWP::ObjectId* result) {
2122 ScopedObjectAccessUnchecked soa(Thread::Current());
2123 Thread* thread;
2124 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002125 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002126 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2127 if (error != JDWP::ERR_NONE) {
2128 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002129 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002130 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002131 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2132 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002133 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002134 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002135 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002136 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002137 *result = gRegistry->Add(visitor.this_object);
2138 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002139}
2140
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002141JDWP::JdwpError Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2142 JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002143 struct GetLocalVisitor : public StackVisitor {
Ian Rogers98379392014-02-24 16:53:16 -08002144 GetLocalVisitor(const ScopedObjectAccessUnchecked& soa, Thread* thread, Context* context,
2145 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002146 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers98379392014-02-24 16:53:16 -08002147 : StackVisitor(thread, context), soa_(soa), frame_id_(frame_id), slot_(slot), tag_(tag),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002148 buf_(buf), width_(width), error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002149
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002150 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2151 // annotalysis.
2152 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002153 if (GetFrameId() != frame_id_) {
2154 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08002155 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002156 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002157 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002158 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002159 if (m->IsNative()) {
2160 // We can't read local value from native method.
2161 error_ = JDWP::ERR_OPAQUE_FRAME;
2162 return false;
2163 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002164 uint16_t reg = DemangleSlot(slot_, m);
Elliott Hughesdbb40792011-11-18 17:05:22 -08002165
Ian Rogers0399dde2012-06-06 17:09:28 -07002166 switch (tag_) {
2167 case JDWP::JT_BOOLEAN:
2168 {
2169 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002170 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002171 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2172 JDWP::Set1(buf_+1, intVal != 0);
2173 }
2174 break;
2175 case JDWP::JT_BYTE:
2176 {
2177 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002178 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002179 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2180 JDWP::Set1(buf_+1, intVal);
2181 }
2182 break;
2183 case JDWP::JT_SHORT:
2184 case JDWP::JT_CHAR:
2185 {
2186 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002187 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002188 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2189 JDWP::Set2BE(buf_+1, intVal);
2190 }
2191 break;
2192 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002193 {
2194 CHECK_EQ(width_, 4U);
2195 uint32_t intVal = GetVReg(m, reg, kIntVReg);
2196 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2197 JDWP::Set4BE(buf_+1, intVal);
2198 }
2199 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002200 case JDWP::JT_FLOAT:
2201 {
2202 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002203 uint32_t intVal = GetVReg(m, reg, kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002204 VLOG(jdwp) << "get int/float local " << reg << " = " << intVal;
2205 JDWP::Set4BE(buf_+1, intVal);
2206 }
2207 break;
2208 case JDWP::JT_ARRAY:
2209 {
2210 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002211 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002212 VLOG(jdwp) << "get array local " << reg << " = " << o;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002213 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002214 LOG(FATAL) << "Register " << reg << " expected to hold array: " << o;
2215 }
2216 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2217 }
2218 break;
2219 case JDWP::JT_CLASS_LOADER:
2220 case JDWP::JT_CLASS_OBJECT:
2221 case JDWP::JT_OBJECT:
2222 case JDWP::JT_STRING:
2223 case JDWP::JT_THREAD:
2224 case JDWP::JT_THREAD_GROUP:
2225 {
2226 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002227 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002228 VLOG(jdwp) << "get object local " << reg << " = " << o;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002229 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002230 LOG(FATAL) << "Register " << reg << " expected to hold object: " << o;
2231 }
Ian Rogers98379392014-02-24 16:53:16 -08002232 tag_ = TagFromObject(soa_, o);
Ian Rogers0399dde2012-06-06 17:09:28 -07002233 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2234 }
2235 break;
2236 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002237 {
2238 CHECK_EQ(width_, 8U);
2239 uint32_t lo = GetVReg(m, reg, kDoubleLoVReg);
2240 uint64_t hi = GetVReg(m, reg + 1, kDoubleHiVReg);
2241 uint64_t longVal = (hi << 32) | lo;
2242 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2243 JDWP::Set8BE(buf_+1, longVal);
2244 }
2245 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002246 case JDWP::JT_LONG:
2247 {
2248 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002249 uint32_t lo = GetVReg(m, reg, kLongLoVReg);
2250 uint64_t hi = GetVReg(m, reg + 1, kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002251 uint64_t longVal = (hi << 32) | lo;
2252 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2253 JDWP::Set8BE(buf_+1, longVal);
2254 }
2255 break;
2256 default:
2257 LOG(FATAL) << "Unknown tag " << tag_;
2258 break;
2259 }
2260
2261 // Prepend tag, which may have been updated.
2262 JDWP::Set1(buf_, tag_);
2263 return false;
2264 }
Ian Rogers98379392014-02-24 16:53:16 -08002265 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002266 const JDWP::FrameId frame_id_;
2267 const int slot_;
2268 JDWP::JdwpTag tag_;
2269 uint8_t* const buf_;
2270 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002271 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002272 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002273
2274 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002275 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002276 Thread* thread;
2277 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2278 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002279 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002280 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002281 // TODO check thread is suspended by the debugger ?
Ian Rogers0399dde2012-06-06 17:09:28 -07002282 UniquePtr<Context> context(Context::Create());
Ian Rogers98379392014-02-24 16:53:16 -08002283 GetLocalVisitor visitor(soa, thread, context.get(), frame_id, slot, tag, buf, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002284 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002285 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002286}
2287
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002288JDWP::JdwpError Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2289 JDWP::JdwpTag tag, uint64_t value, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002290 struct SetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002291 SetLocalVisitor(Thread* thread, Context* context,
Ian Rogers0399dde2012-06-06 17:09:28 -07002292 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
Ian Rogersca190662012-06-26 15:45:57 -07002293 size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002294 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002295 : StackVisitor(thread, context),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002296 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width),
2297 error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002298
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002299 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2300 // annotalysis.
2301 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002302 if (GetFrameId() != frame_id_) {
2303 return true; // Not our frame, carry on.
2304 }
2305 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002306 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002307 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002308 if (m->IsNative()) {
2309 // We can't read local value from native method.
2310 error_ = JDWP::ERR_OPAQUE_FRAME;
2311 return false;
2312 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002313 uint16_t reg = DemangleSlot(slot_, m);
2314
2315 switch (tag_) {
2316 case JDWP::JT_BOOLEAN:
2317 case JDWP::JT_BYTE:
2318 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002319 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002320 break;
2321 case JDWP::JT_SHORT:
2322 case JDWP::JT_CHAR:
2323 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002324 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002325 break;
2326 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002327 CHECK_EQ(width_, 4U);
2328 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
2329 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002330 case JDWP::JT_FLOAT:
2331 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002332 SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002333 break;
2334 case JDWP::JT_ARRAY:
2335 case JDWP::JT_OBJECT:
2336 case JDWP::JT_STRING:
2337 {
2338 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002339 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_));
Elliott Hughes64f574f2013-02-20 14:57:12 -08002340 if (o == ObjectRegistry::kInvalidObject) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002341 UNIMPLEMENTED(FATAL) << "return an error code when given an invalid object to store";
2342 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002343 SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), kReferenceVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002344 }
2345 break;
2346 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002347 CHECK_EQ(width_, 8U);
2348 SetVReg(m, reg, static_cast<uint32_t>(value_), kDoubleLoVReg);
2349 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kDoubleHiVReg);
2350 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002351 case JDWP::JT_LONG:
2352 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002353 SetVReg(m, reg, static_cast<uint32_t>(value_), kLongLoVReg);
2354 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002355 break;
2356 default:
2357 LOG(FATAL) << "Unknown tag " << tag_;
2358 break;
2359 }
2360 return false;
2361 }
2362
2363 const JDWP::FrameId frame_id_;
2364 const int slot_;
2365 const JDWP::JdwpTag tag_;
2366 const uint64_t value_;
2367 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002368 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002369 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002370
2371 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002372 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002373 Thread* thread;
2374 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2375 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002376 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002377 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002378 // TODO check thread is suspended by the debugger ?
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002379 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002380 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002381 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002382 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002383}
2384
Ian Rogersef7d42f2014-01-06 12:55:46 -08002385void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002386 int event_flags, const JValue* return_value) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002387 JDWP::JdwpLocation location;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002388 SetLocation(location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002389
Elliott Hughes64f574f2013-02-20 14:57:12 -08002390 // If 'this_object' isn't already in the registry, we know that we're not looking for it,
2391 // so there's no point adding it to the registry and burning through ids.
2392 JDWP::ObjectId this_id = 0;
2393 if (gRegistry->Contains(this_object)) {
2394 this_id = gRegistry->Add(this_object);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002395 }
Jeff Hao579b0242013-11-18 13:16:49 -08002396 gJdwpState->PostLocationEvent(&location, this_id, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002397}
2398
Ian Rogers62d6c772013-02-27 08:32:07 -08002399void Dbg::PostException(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002400 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002401 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002402 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002403 return;
2404 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002405
Ian Rogers62d6c772013-02-27 08:32:07 -08002406 JDWP::JdwpLocation jdwp_throw_location;
2407 SetLocation(jdwp_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002408 JDWP::JdwpLocation catch_location;
Elliott Hughescaf76542012-06-28 16:08:22 -07002409 SetLocation(catch_location, catch_method, catch_dex_pc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002410
2411 // We need 'this' for InstanceOnly filters.
Ian Rogers62d6c772013-02-27 08:32:07 -08002412 JDWP::ObjectId this_id = gRegistry->Add(throw_location.GetThis());
Elliott Hughes64f574f2013-02-20 14:57:12 -08002413 JDWP::ObjectId exception_id = gRegistry->Add(exception_object);
2414 JDWP::RefTypeId exception_class_id = gRegistry->AddRefType(exception_object->GetClass());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002415
Ian Rogers62d6c772013-02-27 08:32:07 -08002416 gJdwpState->PostException(&jdwp_throw_location, exception_id, exception_class_id, &catch_location,
2417 this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002418}
2419
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002420void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002421 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002422 return;
2423 }
2424
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002425 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002426 // debuggers seem to like that. There might be some advantage to honesty,
2427 // since the class may not yet be verified.
2428 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
2429 JDWP::JdwpTypeTag tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002430 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c),
Ian Rogersdfb325e2013-10-30 01:00:44 -07002431 ClassHelper(c).GetDescriptor(), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002432}
2433
Ian Rogers62d6c772013-02-27 08:32:07 -08002434void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -08002435 mirror::ArtMethod* m, uint32_t dex_pc) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002436 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002437 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002438 }
2439
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002440 int event_flags = 0;
2441
Elliott Hughes86964332012-02-15 19:37:42 -08002442 if (IsBreakpoint(m, dex_pc)) {
2443 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002444 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002445
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002446 // If the debugger is single-stepping one of our threads, check to
2447 // see if we're that thread and we've reached a step point.
2448 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2449 DCHECK(single_step_control != nullptr);
2450 if (single_step_control->is_active) {
2451 CHECK(!m->IsNative());
2452 if (single_step_control->step_depth == JDWP::SD_INTO) {
2453 // Step into method calls. We break when the line number
2454 // or method pointer changes. If we're in SS_MIN mode, we
2455 // always stop.
2456 if (single_step_control->method != m) {
2457 event_flags |= kSingleStep;
2458 VLOG(jdwp) << "SS new method";
2459 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2460 event_flags |= kSingleStep;
2461 VLOG(jdwp) << "SS new instruction";
2462 } else if (single_step_control->dex_pcs.find(dex_pc) == single_step_control->dex_pcs.end()) {
2463 event_flags |= kSingleStep;
2464 VLOG(jdwp) << "SS new line";
2465 }
2466 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2467 // Step over method calls. We break when the line number is
2468 // different and the frame depth is <= the original frame
2469 // depth. (We can't just compare on the method, because we
2470 // might get unrolled past it by an exception, and it's tricky
2471 // to identify recursion.)
2472
2473 int stack_depth = GetStackDepth(thread);
2474
2475 if (stack_depth < single_step_control->stack_depth) {
2476 // Popped up one or more frames, always trigger.
2477 event_flags |= kSingleStep;
2478 VLOG(jdwp) << "SS method pop";
2479 } else if (stack_depth == single_step_control->stack_depth) {
2480 // Same depth, see if we moved.
2481 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002482 event_flags |= kSingleStep;
2483 VLOG(jdwp) << "SS new instruction";
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002484 } else if (single_step_control->dex_pcs.find(dex_pc) == single_step_control->dex_pcs.end()) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002485 event_flags |= kSingleStep;
2486 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002487 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002488 }
2489 } else {
2490 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2491 // Return from the current method. We break when the frame
2492 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002493
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002494 // This differs from the "method exit" break in that it stops
2495 // with the PC at the next instruction in the returned-to
2496 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002497
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002498 int stack_depth = GetStackDepth(thread);
2499 if (stack_depth < single_step_control->stack_depth) {
2500 event_flags |= kSingleStep;
2501 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002502 }
2503 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002504 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002505
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002506 // If there's something interesting going on, see if it matches one
2507 // of the debugger filters.
2508 if (event_flags != 0) {
Jeff Hao579b0242013-11-18 13:16:49 -08002509 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, nullptr);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002510 }
2511}
2512
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002513static void ProcessDeoptimizationRequests()
2514 LOCKS_EXCLUDED(Locks::deoptimization_lock_)
2515 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_) {
2516 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
2517 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2518 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
2519 for (const MethodInstrumentationRequest& request : gDeoptimizationRequests) {
2520 mirror::ArtMethod* const method = request.method;
2521 if (method != nullptr) {
2522 // Selective deoptimization.
2523 if (request.deoptimize) {
2524 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(method);
2525 instrumentation->Deoptimize(method);
2526 } else {
2527 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(method);
2528 instrumentation->Undeoptimize(method);
2529 }
2530 } else {
2531 // Full deoptimization.
2532 if (request.deoptimize) {
2533 VLOG(jdwp) << "Deoptimize the world";
2534 instrumentation->DeoptimizeEverything();
2535 } else {
2536 VLOG(jdwp) << "Undeoptimize the world";
2537 instrumentation->UndeoptimizeEverything();
2538 }
2539 }
2540 }
2541 gDeoptimizationRequests.clear();
2542}
2543
2544// Process deoptimization requests after suspending all mutator threads.
2545void Dbg::ManageDeoptimization() {
2546 Thread* const self = Thread::Current();
2547 {
2548 // Avoid suspend/resume if there is no pending request.
2549 MutexLock mu(self, *Locks::deoptimization_lock_);
2550 if (gDeoptimizationRequests.empty()) {
2551 return;
2552 }
2553 }
2554 CHECK_EQ(self->GetState(), kRunnable);
2555 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
2556 // We need to suspend mutator threads first.
2557 Runtime* const runtime = Runtime::Current();
2558 runtime->GetThreadList()->SuspendAll();
2559 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
2560 ProcessDeoptimizationRequests();
2561 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
2562 runtime->GetThreadList()->ResumeAll();
2563 self->TransitionFromSuspendedToRunnable();
2564}
2565
2566// Enable full deoptimization.
2567void Dbg::EnableFullDeoptimization() {
2568 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2569 VLOG(jdwp) << "Request full deoptimization";
2570 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(true, nullptr));
2571}
2572
2573// Disable full deoptimization.
2574void Dbg::DisableFullDeoptimization() {
2575 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2576 VLOG(jdwp) << "Request full undeoptimization";
2577 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(false, nullptr));
2578}
2579
Elliott Hughes86964332012-02-15 19:37:42 -08002580void Dbg::WatchLocation(const JDWP::JdwpLocation* location) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002581 bool need_deoptimization = true;
Brian Carlstromea46f952013-07-30 01:26:50 -07002582 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002583 {
2584 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
2585
2586 // If there is no breakpoint on this method yet, we need to deoptimize it.
2587 for (const Breakpoint& breakpoint : gBreakpoints) {
2588 if (breakpoint.method == m) {
2589 // We already set a breakpoint on this method, hence we deoptimized it.
2590 DCHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2591 need_deoptimization = false;
2592 break;
2593 }
2594 }
2595
2596 gBreakpoints.push_back(Breakpoint(m, location->dex_pc));
2597 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " << gBreakpoints[gBreakpoints.size() - 1];
2598 }
2599
2600 if (need_deoptimization) {
2601 // Request its deoptimization. This will be done after updating the JDWP event list.
2602 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2603 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(true, m));
2604 VLOG(jdwp) << "Request deoptimization of " << PrettyMethod(m);
2605 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002606}
2607
Elliott Hughes86964332012-02-15 19:37:42 -08002608void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002609 bool can_undeoptimize = true;
Brian Carlstromea46f952013-07-30 01:26:50 -07002610 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002611 DCHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2612 {
2613 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
2614 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
2615 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == location->dex_pc) {
2616 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
2617 gBreakpoints.erase(gBreakpoints.begin() + i);
2618 break;
2619 }
Elliott Hughes86964332012-02-15 19:37:42 -08002620 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002621
2622 // If there is no breakpoint on this method, we can undeoptimize it.
2623 for (const Breakpoint& breakpoint : gBreakpoints) {
2624 if (breakpoint.method == m) {
2625 can_undeoptimize = false;
2626 break;
2627 }
2628 }
2629 }
2630
2631 if (can_undeoptimize) {
2632 // Request its undeoptimization. This will be done after updating the JDWP event list.
2633 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2634 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(false, m));
2635 VLOG(jdwp) << "Request undeoptimization of " << PrettyMethod(m);
Elliott Hughes86964332012-02-15 19:37:42 -08002636 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002637}
2638
Jeff Hao449db332013-04-12 18:30:52 -07002639// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
2640// cause suspension if the thread is the current thread.
2641class ScopedThreadSuspension {
2642 public:
Ian Rogers33e95662013-05-20 20:29:14 -07002643 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002644 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07002645 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Jeff Hao449db332013-04-12 18:30:52 -07002646 thread_(NULL),
2647 error_(JDWP::ERR_NONE),
2648 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07002649 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07002650 ScopedObjectAccessUnchecked soa(self);
2651 {
2652 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2653 error_ = DecodeThread(soa, thread_id, thread_);
2654 }
2655 if (error_ == JDWP::ERR_NONE) {
2656 if (thread_ == soa.Self()) {
2657 self_suspend_ = true;
2658 } else {
2659 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
2660 jobject thread_peer = gRegistry->GetJObject(thread_id);
2661 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002662 Thread* suspended_thread = ThreadList::SuspendThreadByPeer(thread_peer, true, true,
2663 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07002664 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
2665 if (suspended_thread == NULL) {
2666 // Thread terminated from under us while suspending.
2667 error_ = JDWP::ERR_INVALID_THREAD;
2668 } else {
2669 CHECK_EQ(suspended_thread, thread_);
2670 other_suspend_ = true;
2671 }
2672 }
2673 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002674 }
Elliott Hughes86964332012-02-15 19:37:42 -08002675
Jeff Hao449db332013-04-12 18:30:52 -07002676 Thread* GetThread() const {
2677 return thread_;
2678 }
2679
2680 JDWP::JdwpError GetError() const {
2681 return error_;
2682 }
2683
2684 ~ScopedThreadSuspension() {
2685 if (other_suspend_) {
2686 Runtime::Current()->GetThreadList()->Resume(thread_, true);
2687 }
2688 }
2689
2690 private:
2691 Thread* thread_;
2692 JDWP::JdwpError error_;
2693 bool self_suspend_;
2694 bool other_suspend_;
2695};
2696
2697JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
2698 JDWP::JdwpStepDepth step_depth) {
2699 Thread* self = Thread::Current();
2700 ScopedThreadSuspension sts(self, thread_id);
2701 if (sts.GetError() != JDWP::ERR_NONE) {
2702 return sts.GetError();
2703 }
2704
Elliott Hughes2435a572012-02-17 16:07:41 -08002705 //
2706 // Work out what Method* we're in, the current line number, and how deep the stack currently
2707 // is for step-out.
2708 //
2709
Ian Rogers0399dde2012-06-06 17:09:28 -07002710 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002711 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
2712 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002713 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002714 : StackVisitor(thread, NULL), single_step_control_(single_step_control),
2715 line_number_(line_number) {
2716 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
2717 single_step_control_->method = NULL;
2718 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08002719 }
Ian Rogersca190662012-06-26 15:45:57 -07002720
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002721 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2722 // annotalysis.
2723 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002724 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002725 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002726 ++single_step_control_->stack_depth;
2727 if (single_step_control_->method == NULL) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08002728 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002729 single_step_control_->method = m;
2730 *line_number_ = -1;
Elliott Hughes2435a572012-02-17 16:07:41 -08002731 if (dex_cache != NULL) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07002732 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002733 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08002734 }
Elliott Hughes86964332012-02-15 19:37:42 -08002735 }
2736 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002737 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08002738 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002739
2740 SingleStepControl* const single_step_control_;
2741 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08002742 };
Jeff Hao449db332013-04-12 18:30:52 -07002743
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002744 Thread* const thread = sts.GetThread();
2745 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
2746 DCHECK(single_step_control != nullptr);
2747 int32_t line_number = -1;
2748 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07002749 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08002750
Elliott Hughes2435a572012-02-17 16:07:41 -08002751 //
2752 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
2753 //
2754
2755 struct DebugCallbackContext {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002756 explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number)
2757 : single_step_control_(single_step_control), line_number_(line_number),
2758 last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002759 }
2760
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002761 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002762 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002763 if (static_cast<int32_t>(line_number) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002764 if (!context->last_pc_valid) {
2765 // Everything from this address until the next line change is ours.
2766 context->last_pc = address;
2767 context->last_pc_valid = true;
2768 }
2769 // Otherwise, if we're already in a valid range for this line,
2770 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002771 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08002772 // Add everything from the last entry up until here to the set
2773 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002774 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08002775 }
2776 context->last_pc_valid = false;
2777 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002778 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08002779 }
2780
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002781 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08002782 // If the line number was the last in the position table...
2783 if (last_pc_valid) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002784 size_t end = MethodHelper(single_step_control_->method).GetCodeItem()->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08002785 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002786 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08002787 }
2788 }
2789 }
2790
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002791 SingleStepControl* const single_step_control_;
2792 const int32_t line_number_;
Elliott Hughes2435a572012-02-17 16:07:41 -08002793 bool last_pc_valid;
2794 uint32_t last_pc;
2795 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002796 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08002797 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002798 if (!m->IsNative()) {
2799 DebugCallbackContext context(single_step_control, line_number);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08002800 MethodHelper mh(m);
2801 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
2802 DebugCallbackContext::Callback, NULL, &context);
2803 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002804
2805 //
2806 // Everything else...
2807 //
2808
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002809 single_step_control->step_size = step_size;
2810 single_step_control->step_depth = step_depth;
2811 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08002812
Elliott Hughes2435a572012-02-17 16:07:41 -08002813 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002814 VLOG(jdwp) << "Single-step thread: " << *thread;
2815 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
2816 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
2817 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
2818 VLOG(jdwp) << "Single-step current line: " << line_number;
2819 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08002820 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002821 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 -08002822 VLOG(jdwp) << StringPrintf(" %#x", *it);
Elliott Hughes2435a572012-02-17 16:07:41 -08002823 }
2824 }
2825
2826 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002827}
2828
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002829void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
2830 ScopedObjectAccessUnchecked soa(Thread::Current());
2831 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2832 Thread* thread;
2833 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01002834 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002835 SingleStepControl* single_step_control = thread->GetSingleStepControl();
2836 DCHECK(single_step_control != nullptr);
2837 single_step_control->is_active = false;
2838 single_step_control->dex_pcs.clear();
2839 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002840}
2841
Elliott Hughes45651fd2012-02-21 15:48:20 -08002842static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
2843 switch (tag) {
2844 default:
2845 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
2846
2847 // Primitives.
2848 case JDWP::JT_BYTE: return 'B';
2849 case JDWP::JT_CHAR: return 'C';
2850 case JDWP::JT_FLOAT: return 'F';
2851 case JDWP::JT_DOUBLE: return 'D';
2852 case JDWP::JT_INT: return 'I';
2853 case JDWP::JT_LONG: return 'J';
2854 case JDWP::JT_SHORT: return 'S';
2855 case JDWP::JT_VOID: return 'V';
2856 case JDWP::JT_BOOLEAN: return 'Z';
2857
2858 // Reference types.
2859 case JDWP::JT_ARRAY:
2860 case JDWP::JT_OBJECT:
2861 case JDWP::JT_STRING:
2862 case JDWP::JT_THREAD:
2863 case JDWP::JT_THREAD_GROUP:
2864 case JDWP::JT_CLASS_LOADER:
2865 case JDWP::JT_CLASS_OBJECT:
2866 return 'L';
2867 }
2868}
2869
Elliott Hughes88d63092013-01-09 09:55:54 -08002870JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
2871 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002872 uint32_t arg_count, uint64_t* arg_values,
2873 JDWP::JdwpTag* arg_types, uint32_t options,
2874 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
2875 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08002876 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2877
2878 Thread* targetThread = NULL;
2879 DebugInvokeReq* req = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002880 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002881 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002882 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07002883 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002884 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread);
2885 if (error != JDWP::ERR_NONE) {
2886 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
2887 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002888 }
2889 req = targetThread->GetInvokeReq();
2890 if (!req->ready) {
2891 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
2892 return JDWP::ERR_INVALID_THREAD;
2893 }
2894
2895 /*
2896 * We currently have a bug where we don't successfully resume the
2897 * target thread if the suspend count is too deep. We're expected to
2898 * require one "resume" for each "suspend", but when asked to execute
2899 * a method we have to resume fully and then re-suspend it back to the
2900 * same level. (The easiest way to cause this is to type "suspend"
2901 * multiple times in jdb.)
2902 *
2903 * It's unclear what this means when the event specifies "resume all"
2904 * and some threads are suspended more deeply than others. This is
2905 * a rare problem, so for now we just prevent it from hanging forever
2906 * by rejecting the method invocation request. Without this, we will
2907 * be stuck waiting on a suspended thread.
2908 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002909 int suspend_count;
2910 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002911 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002912 suspend_count = targetThread->GetSuspendCount();
2913 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08002914 if (suspend_count > 1) {
2915 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002916 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08002917 }
2918
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002919 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002920 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08002921 if (receiver == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002922 return JDWP::ERR_INVALID_OBJECT;
2923 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002924
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002925 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08002926 if (thread == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002927 return JDWP::ERR_INVALID_OBJECT;
2928 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002929 // TODO: check that 'thread' is actually a java.lang.Thread!
2930
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002931 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes45651fd2012-02-21 15:48:20 -08002932 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002933 return status;
2934 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002935
Brian Carlstromea46f952013-07-30 01:26:50 -07002936 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes45651fd2012-02-21 15:48:20 -08002937 if (m->IsStatic() != (receiver == NULL)) {
2938 return JDWP::ERR_INVALID_METHODID;
2939 }
2940 if (m->IsStatic()) {
2941 if (m->GetDeclaringClass() != c) {
2942 return JDWP::ERR_INVALID_METHODID;
2943 }
2944 } else {
2945 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
2946 return JDWP::ERR_INVALID_METHODID;
2947 }
2948 }
2949
2950 // Check the argument list matches the method.
2951 MethodHelper mh(m);
2952 if (mh.GetShortyLength() - 1 != arg_count) {
2953 return JDWP::ERR_ILLEGAL_ARGUMENT;
2954 }
2955 const char* shorty = mh.GetShorty();
Elliott Hughes09201632013-04-15 15:50:07 -07002956 const DexFile::TypeList* types = mh.GetParameterTypeList();
Elliott Hughes45651fd2012-02-21 15:48:20 -08002957 for (size_t i = 0; i < arg_count; ++i) {
2958 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
2959 return JDWP::ERR_ILLEGAL_ARGUMENT;
2960 }
Elliott Hughes09201632013-04-15 15:50:07 -07002961
2962 if (shorty[i + 1] == 'L') {
2963 // Did we really get an argument of an appropriate reference type?
2964 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
2965 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i]);
2966 if (argument == ObjectRegistry::kInvalidObject) {
2967 return JDWP::ERR_INVALID_OBJECT;
2968 }
Sebastien Hertz0630ab52013-11-28 18:53:35 +01002969 if (argument != NULL && !argument->InstanceOf(parameter_type)) {
Elliott Hughes09201632013-04-15 15:50:07 -07002970 return JDWP::ERR_ILLEGAL_ARGUMENT;
2971 }
2972
2973 // Turn the on-the-wire ObjectId into a jobject.
2974 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
2975 v.l = gRegistry->GetJObject(arg_values[i]);
2976 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002977 }
2978
Sebastien Hertzd38667a2013-11-25 15:43:54 +01002979 req->receiver = receiver;
2980 req->thread = thread;
2981 req->klass = c;
2982 req->method = m;
2983 req->arg_count = arg_count;
2984 req->arg_values = arg_values;
2985 req->options = options;
2986 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002987 }
2988
2989 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
2990 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
2991 // call, and it's unwise to hold it during WaitForSuspend.
2992
2993 {
2994 /*
2995 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07002996 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08002997 * run out of memory. It's also a good idea to change it before locking
2998 * the invokeReq mutex, although that should never be held for long.
2999 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003000 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003001
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003002 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003003 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003004 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003005
3006 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003007 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003008 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003009 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003010 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003011 thread_list->Resume(targetThread, true);
3012 }
3013
3014 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003015 while (req->invoke_needed) {
3016 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003017 }
3018 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003019 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003020
3021 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003022 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003023 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003024 }
3025
3026 /*
3027 * Suspend the threads. We waited for the target thread to suspend
3028 * itself, so all we need to do is suspend the others.
3029 *
3030 * The suspendAllThreads() call will double-suspend the event thread,
3031 * so we want to resume the target thread once to keep the books straight.
3032 */
3033 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003034 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003035 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003036 thread_list->SuspendAllForDebugger();
3037 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003038 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003039 thread_list->Resume(targetThread, true);
3040 }
3041
3042 // Copy the result.
3043 *pResultTag = req->result_tag;
3044 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003045 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003046 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003047 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003048 }
3049 *pExceptionId = req->exception;
3050 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003051}
3052
3053void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003054 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003055
Elliott Hughes81ff3182012-03-23 20:35:56 -07003056 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003057 // to preserve that across the method invocation.
Ian Rogers62d6c772013-02-27 08:32:07 -08003058 SirtRef<mirror::Object> old_throw_this_object(soa.Self(), NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -07003059 SirtRef<mirror::ArtMethod> old_throw_method(soa.Self(), NULL);
Ian Rogers62d6c772013-02-27 08:32:07 -08003060 SirtRef<mirror::Throwable> old_exception(soa.Self(), NULL);
3061 uint32_t old_throw_dex_pc;
3062 {
3063 ThrowLocation old_throw_location;
3064 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
3065 old_throw_this_object.reset(old_throw_location.GetThis());
3066 old_throw_method.reset(old_throw_location.GetMethod());
3067 old_exception.reset(old_exception_obj);
3068 old_throw_dex_pc = old_throw_location.GetDexPc();
3069 soa.Self()->ClearException();
3070 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003071
3072 // Translate the method through the vtable, unless the debugger wants to suppress it.
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003073 SirtRef<mirror::ArtMethod> m(soa.Self(), pReq->method);
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003074 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != NULL) {
Sebastien Hertz83a47d82014-03-20 09:57:40 +01003075 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.get());
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003076 if (actual_method != m.get()) {
3077 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.get()) << " to " << PrettyMethod(actual_method);
3078 m.reset(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003079 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003080 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003081 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003082 << " receiver=" << pReq->receiver
3083 << " arg_count=" << pReq->arg_count;
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003084 CHECK(m.get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003085
3086 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3087
Sebastien Hertz83a47d82014-03-20 09:57:40 +01003088 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003089 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003090
Ian Rogers62d6c772013-02-27 08:32:07 -08003091 mirror::Throwable* exception = soa.Self()->GetException(NULL);
3092 soa.Self()->ClearException();
3093 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003094 pReq->result_tag = BasicTagFromDescriptor(MethodHelper(m.get()).GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003095 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003096 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3097 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003098 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003099 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3100 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003101 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003102 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003103 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003104 pReq->result_tag = new_tag;
3105 }
3106
3107 /*
3108 * Register the object. We don't actually need an ObjectId yet,
3109 * but we do need to be sure that the GC won't move or discard the
3110 * object when we switch out of RUNNING. The ObjectId conversion
3111 * will add the object to the "do not touch" list.
3112 *
3113 * We can't use the "tracked allocation" mechanism here because
3114 * the object is going to be handed off to a different thread.
3115 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003116 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003117 }
3118
3119 if (old_exception.get() != NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003120 ThrowLocation gc_safe_throw_location(old_throw_this_object.get(), old_throw_method.get(),
3121 old_throw_dex_pc);
3122 soa.Self()->SetException(gc_safe_throw_location, old_exception.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003123 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003124}
3125
Elliott Hughesd07986f2011-12-06 18:27:45 -08003126/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003127 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003128 * need to process each, accumulate the replies, and ship the whole thing
3129 * back.
3130 *
3131 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3132 * and includes the chunk type/length, followed by the data.
3133 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003134 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003135 * chunk. If this becomes inconvenient we will need to adapt.
3136 */
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003137bool Dbg::DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003138 Thread* self = Thread::Current();
3139 JNIEnv* env = self->GetJniEnv();
3140
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003141 uint32_t type = request.ReadUnsigned32("type");
3142 uint32_t length = request.ReadUnsigned32("length");
3143
3144 // Create a byte[] corresponding to 'request'.
3145 size_t request_length = request.size();
3146 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003147 if (dataArray.get() == NULL) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003148 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003149 env->ExceptionClear();
3150 return false;
3151 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003152 env->SetByteArrayRegion(dataArray.get(), 0, request_length, reinterpret_cast<const jbyte*>(request.data()));
3153 request.Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003154
3155 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003156 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003157 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003158 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003159 return false;
3160 }
3161
3162 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003163 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3164 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003165 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003166 if (env->ExceptionCheck()) {
3167 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3168 env->ExceptionDescribe();
3169 env->ExceptionClear();
3170 return false;
3171 }
3172
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003173 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003174 return false;
3175 }
3176
3177 /*
3178 * Pull the pieces out of the chunk. We copy the results into a
3179 * newly-allocated buffer that the caller can free. We don't want to
3180 * continue using the Chunk object because nothing has a reference to it.
3181 *
3182 * We could avoid this by returning type/data/offset/length and having
3183 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003184 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003185 * if we have responses for multiple chunks.
3186 *
3187 * So we're pretty much stuck with copying data around multiple times.
3188 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003189 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 -08003190 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003191 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003192 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003193
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003194 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 -07003195 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003196 return false;
3197 }
3198
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003199 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003200 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
3201 if (reply == NULL) {
3202 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3203 return false;
3204 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003205 JDWP::Set4BE(reply + 0, type);
3206 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003207 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003208
3209 *pReplyBuf = reply;
3210 *pReplyLen = length + kChunkHdrLen;
3211
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003212 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003213 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003214}
3215
Elliott Hughesa2155262011-11-16 16:26:58 -08003216void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003217 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003218
3219 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003220 if (self->GetState() != kRunnable) {
3221 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3222 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003223 }
3224
3225 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003226 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003227 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3228 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3229 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003230 if (env->ExceptionCheck()) {
3231 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3232 env->ExceptionDescribe();
3233 env->ExceptionClear();
3234 }
3235}
3236
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003237void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003238 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003239}
3240
3241void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003242 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003243 gDdmThreadNotification = false;
3244}
3245
3246/*
Elliott Hughes82188472011-11-07 18:11:48 -08003247 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003248 *
3249 * Because we broadcast the full set of threads when the notifications are
3250 * first enabled, it's possible for "thread" to be actively executing.
3251 */
Elliott Hughes82188472011-11-07 18:11:48 -08003252void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003253 if (!gDdmThreadNotification) {
3254 return;
3255 }
3256
Elliott Hughes82188472011-11-07 18:11:48 -08003257 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003258 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003259 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003260 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003261 } else {
3262 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003263 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003264 SirtRef<mirror::String> name(soa.Self(), t->GetThreadName(soa));
Elliott Hughes82188472011-11-07 18:11:48 -08003265 size_t char_count = (name.get() != NULL) ? name->GetLength() : 0;
jeffhao725a9572012-11-13 18:20:12 -08003266 const jchar* chars = (name.get() != NULL) ? name->GetCharArray()->GetData() : NULL;
Elliott Hughes82188472011-11-07 18:11:48 -08003267
Elliott Hughes21f32d72011-11-09 17:44:13 -08003268 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003269 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003270 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003271 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3272 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003273 }
3274}
3275
Elliott Hughes47fce012011-10-25 18:37:19 -07003276void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003277 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003278 gDdmThreadNotification = enable;
3279 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003280 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3281 // see a suspension in progress and block until that ends. They then post their own start
3282 // notification.
3283 SuspendVM();
3284 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003285 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003286 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003287 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003288 threads = Runtime::Current()->GetThreadList()->GetList();
3289 }
3290 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003291 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003292 for (Thread* thread : threads) {
3293 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003294 }
3295 }
3296 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003297 }
3298}
3299
Elliott Hughesa2155262011-11-16 16:26:58 -08003300void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003301 if (IsDebuggerActive()) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07003302 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08003303 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08003304 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003305 }
Elliott Hughes82188472011-11-07 18:11:48 -08003306 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003307}
3308
3309void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003310 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003311}
3312
3313void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003314 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003315}
3316
Elliott Hughes82188472011-11-07 18:11:48 -08003317void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003318 CHECK(buf != NULL);
3319 iovec vec[1];
3320 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3321 vec[0].iov_len = byte_count;
3322 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003323}
3324
Elliott Hughes21f32d72011-11-09 17:44:13 -08003325void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3326 DdmSendChunk(type, bytes.size(), &bytes[0]);
3327}
3328
Brian Carlstromf5293522013-07-19 00:24:00 -07003329void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003330 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003331 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003332 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003333 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003334 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003335}
3336
Elliott Hughes767a1472011-10-26 18:49:02 -07003337int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3338 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003339 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003340 return true;
3341 }
3342
3343 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3344 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3345 return false;
3346 }
3347
3348 gDdmHpifWhen = when;
3349 return true;
3350}
3351
3352bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3353 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3354 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3355 return false;
3356 }
3357
3358 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3359 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3360 return false;
3361 }
3362
3363 if (native) {
3364 gDdmNhsgWhen = when;
3365 gDdmNhsgWhat = what;
3366 } else {
3367 gDdmHpsgWhen = when;
3368 gDdmHpsgWhat = what;
3369 }
3370 return true;
3371}
3372
Elliott Hughes7162ad92011-10-27 14:08:42 -07003373void Dbg::DdmSendHeapInfo(HpifWhen reason) {
3374 // If there's a one-shot 'when', reset it.
3375 if (reason == gDdmHpifWhen) {
3376 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
3377 gDdmHpifWhen = HPIF_WHEN_NEVER;
3378 }
3379 }
3380
3381 /*
3382 * Chunk HPIF (client --> server)
3383 *
3384 * Heap Info. General information about the heap,
3385 * suitable for a summary display.
3386 *
3387 * [u4]: number of heaps
3388 *
3389 * For each heap:
3390 * [u4]: heap ID
3391 * [u8]: timestamp in ms since Unix epoch
3392 * [u1]: capture reason (same as 'when' value from server)
3393 * [u4]: max heap size in bytes (-Xmx)
3394 * [u4]: current heap size in bytes
3395 * [u4]: current number of bytes allocated
3396 * [u4]: current number of objects allocated
3397 */
3398 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07003399 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08003400 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003401 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003402 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08003403 JDWP::Append8BE(bytes, MilliTime());
3404 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003405 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
3406 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003407 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
3408 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08003409 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
3410 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07003411}
3412
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003413enum HpsgSolidity {
3414 SOLIDITY_FREE = 0,
3415 SOLIDITY_HARD = 1,
3416 SOLIDITY_SOFT = 2,
3417 SOLIDITY_WEAK = 3,
3418 SOLIDITY_PHANTOM = 4,
3419 SOLIDITY_FINALIZABLE = 5,
3420 SOLIDITY_SWEEP = 6,
3421};
3422
3423enum HpsgKind {
3424 KIND_OBJECT = 0,
3425 KIND_CLASS_OBJECT = 1,
3426 KIND_ARRAY_1 = 2,
3427 KIND_ARRAY_2 = 3,
3428 KIND_ARRAY_4 = 4,
3429 KIND_ARRAY_8 = 5,
3430 KIND_UNKNOWN = 6,
3431 KIND_NATIVE = 7,
3432};
3433
3434#define HPSG_PARTIAL (1<<7)
3435#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
3436
Ian Rogers30fab402012-01-23 15:43:46 -08003437class HeapChunkContext {
3438 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003439 // Maximum chunk size. Obtain this from the formula:
3440 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
3441 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08003442 : buf_(16384 - 16),
3443 type_(0),
3444 merge_(merge) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003445 Reset();
3446 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08003447 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003448 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08003449 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003450 }
3451 }
3452
3453 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08003454 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003455 Flush();
3456 }
3457 }
3458
3459 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08003460 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003461 return;
3462 }
3463
3464 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003465 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
3466 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003467
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003468 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
3469 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003470 // [u4]: length of piece, in allocation units
3471 // 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 -08003472 pieceLenField_ = p_;
3473 JDWP::Write4BE(&p_, 0x55555555);
3474 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003475 }
3476
Ian Rogersb726dcb2012-09-05 08:57:23 -07003477 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd636b062013-01-18 17:51:18 -08003478 if (pieceLenField_ == NULL) {
3479 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
3480 CHECK(needHeader_);
3481 return;
3482 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003483 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08003484 CHECK_LE(&buf_[0], pieceLenField_);
3485 CHECK_LE(pieceLenField_, p_);
3486 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003487
Ian Rogers30fab402012-01-23 15:43:46 -08003488 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003489 Reset();
3490 }
3491
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003492 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003493 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3494 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003495 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08003496 }
3497
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003498 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08003499 enum { ALLOCATION_UNIT_SIZE = 8 };
3500
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003501 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08003502 p_ = &buf_[0];
Ian Rogers15bf2d32012-08-28 17:33:04 -07003503 startOfNextMemoryChunk_ = NULL;
Ian Rogers30fab402012-01-23 15:43:46 -08003504 totalAllocationUnits_ = 0;
3505 needHeader_ = true;
3506 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003507 }
3508
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003509 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003510 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3511 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003512 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
3513 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07003514 if (used_bytes == 0) {
3515 if (start == NULL) {
3516 // Reset for start of new heap.
3517 startOfNextMemoryChunk_ = NULL;
3518 Flush();
3519 }
3520 // Only process in use memory so that free region information
3521 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08003522 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08003523 }
3524
Ian Rogers15bf2d32012-08-28 17:33:04 -07003525 /* If we're looking at the native heap, we'll just return
3526 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
3527 */
3528 bool native = type_ == CHUNK_TYPE("NHSG");
3529
3530 if (startOfNextMemoryChunk_ != NULL) {
3531 // Transmit any pending free memory. Native free memory of
3532 // over kMaxFreeLen could be because of the use of mmaps, so
3533 // don't report. If not free memory then start a new segment.
3534 bool flush = true;
3535 if (start > startOfNextMemoryChunk_) {
3536 const size_t kMaxFreeLen = 2 * kPageSize;
3537 void* freeStart = startOfNextMemoryChunk_;
3538 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07003539 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07003540 if (!native || freeLen < kMaxFreeLen) {
3541 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
3542 flush = false;
3543 }
3544 }
3545 if (flush) {
3546 startOfNextMemoryChunk_ = NULL;
3547 Flush();
3548 }
3549 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08003550 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08003551
3552 // Determine the type of this chunk.
3553 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
3554 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003555 uint8_t state = ExamineObject(obj, native);
3556 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
3557 // allocation then the first sizeof(size_t) may belong to it.
3558 const size_t dlMallocOverhead = sizeof(size_t);
3559 AppendChunk(state, start, used_bytes + dlMallocOverhead);
Brian Carlstrom2d888622013-07-18 17:02:00 -07003560 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + dlMallocOverhead;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003561 }
Elliott Hughesa2155262011-11-16 16:26:58 -08003562
Ian Rogers15bf2d32012-08-28 17:33:04 -07003563 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003564 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003565 // Make sure there's enough room left in the buffer.
3566 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
3567 // 17 bytes for any header.
3568 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
3569 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3570 if (bytesLeft < needed) {
3571 Flush();
3572 }
3573
3574 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3575 if (bytesLeft < needed) {
3576 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
3577 << needed << " bytes)";
3578 return;
3579 }
3580 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08003581 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003582 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
3583 totalAllocationUnits_ += length;
3584 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08003585 *p_++ = state | HPSG_PARTIAL;
3586 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07003587 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08003588 }
Ian Rogers30fab402012-01-23 15:43:46 -08003589 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003590 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003591 }
3592
Ian Rogersef7d42f2014-01-06 12:55:46 -08003593 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
3594 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003595 if (o == NULL) {
3596 return HPSG_STATE(SOLIDITY_FREE, 0);
3597 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003598
Elliott Hughesa2155262011-11-16 16:26:58 -08003599 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003600
Elliott Hughesa2155262011-11-16 16:26:58 -08003601 // If we're looking at the native heap, we'll just return
3602 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003603 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003604 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
3605 }
3606
Ian Rogers5bfa60f2012-09-02 21:17:56 -07003607 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003608 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003609 }
3610
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003611 mirror::Class* c = o->GetClass();
Elliott Hughesa2155262011-11-16 16:26:58 -08003612 if (c == NULL) {
3613 // The object was probably just created but hasn't been initialized yet.
3614 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3615 }
3616
Mathieu Chartier590fee92013-09-13 13:46:47 -07003617 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003618 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08003619 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
3620 }
3621
3622 if (c->IsClassClass()) {
3623 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
3624 }
3625
3626 if (c->IsArrayClass()) {
3627 if (o->IsObjectArray()) {
3628 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3629 }
3630 switch (c->GetComponentSize()) {
3631 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
3632 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
3633 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3634 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
3635 }
3636 }
3637
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003638 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3639 }
3640
Ian Rogers30fab402012-01-23 15:43:46 -08003641 std::vector<uint8_t> buf_;
3642 uint8_t* p_;
3643 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003644 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08003645 size_t totalAllocationUnits_;
3646 uint32_t type_;
3647 bool merge_;
3648 bool needHeader_;
3649
Elliott Hughesa2155262011-11-16 16:26:58 -08003650 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
3651};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003652
3653void Dbg::DdmSendHeapSegments(bool native) {
3654 Dbg::HpsgWhen when;
3655 Dbg::HpsgWhat what;
3656 if (!native) {
3657 when = gDdmHpsgWhen;
3658 what = gDdmHpsgWhat;
3659 } else {
3660 when = gDdmNhsgWhen;
3661 what = gDdmNhsgWhat;
3662 }
3663 if (when == HPSG_WHEN_NEVER) {
3664 return;
3665 }
3666
3667 // Figure out what kind of chunks we'll be sending.
3668 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
3669
3670 // First, send a heap start chunk.
3671 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003672 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003673 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
3674
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003675 Thread* self = Thread::Current();
3676
3677 // To allow the Walk/InspectAll() below to exclusively-lock the
3678 // mutator lock, temporarily release the shared access to the
3679 // mutator lock here by transitioning to the suspended state.
3680 Locks::mutator_lock_->AssertSharedHeld(self);
3681 self->TransitionFromRunnableToSuspended(kSuspended);
3682
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003683 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08003684 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
3685 if (native) {
Ian Rogers1d54e732013-05-02 21:10:01 -07003686 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003687 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07003688 gc::Heap* heap = Runtime::Current()->GetHeap();
3689 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers62d6c772013-02-27 08:32:07 -08003690 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Ian Rogers1d54e732013-05-02 21:10:01 -07003691 typedef std::vector<gc::space::ContinuousSpace*>::const_iterator It;
3692 for (It cur = spaces.begin(), end = spaces.end(); cur != end; ++cur) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003693 if ((*cur)->IsMallocSpace()) {
3694 (*cur)->AsMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07003695 }
3696 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07003697 // Walk the large objects, these are not in the AllocSpace.
3698 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003699 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003700
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003701 // Shared-lock the mutator lock back.
3702 self->TransitionFromSuspendedToRunnable();
3703 Locks::mutator_lock_->AssertSharedHeld(self);
3704
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003705 // Finally, send a heap end chunk.
3706 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07003707}
3708
Elliott Hughesb1a58792013-07-11 18:10:58 -07003709static size_t GetAllocTrackerMax() {
3710#ifdef HAVE_ANDROID_OS
3711 // Check whether there's a system property overriding the number of records.
3712 const char* propertyName = "dalvik.vm.allocTrackerMax";
3713 char allocRecordMaxString[PROPERTY_VALUE_MAX];
3714 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
3715 char* end;
3716 size_t value = strtoul(allocRecordMaxString, &end, 10);
3717 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003718 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3719 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003720 return kDefaultNumAllocRecords;
3721 }
3722 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003723 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3724 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003725 return kDefaultNumAllocRecords;
3726 }
3727 return value;
3728 }
3729#endif
3730 return kDefaultNumAllocRecords;
3731}
3732
Elliott Hughes545a0642011-11-08 19:10:03 -08003733void Dbg::SetAllocTrackingEnabled(bool enabled) {
Ian Rogers719d1a32014-03-06 12:13:39 -08003734 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08003735 if (enabled) {
3736 if (recent_allocation_records_ == NULL) {
Ian Rogers719d1a32014-03-06 12:13:39 -08003737 alloc_record_max_ = GetAllocTrackerMax();
3738 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
Elliott Hughesb1a58792013-07-11 18:10:58 -07003739 << kMaxAllocRecordStackDepth << " frames, taking "
Ian Rogers719d1a32014-03-06 12:13:39 -08003740 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
3741 alloc_record_head_ = alloc_record_count_ = 0;
3742 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
Elliott Hughes545a0642011-11-08 19:10:03 -08003743 CHECK(recent_allocation_records_ != NULL);
3744 }
Ian Rogersfa824272013-11-05 16:12:57 -08003745 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08003746 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08003747 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08003748 delete[] recent_allocation_records_;
3749 recent_allocation_records_ = NULL;
3750 }
3751}
3752
Ian Rogers0399dde2012-06-06 17:09:28 -07003753struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08003754 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003755 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08003756 : StackVisitor(thread, NULL), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08003757
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003758 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3759 // annotalysis.
3760 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08003761 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07003762 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08003763 }
Brian Carlstromea46f952013-07-30 01:26:50 -07003764 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003765 if (!m->IsRuntimeMethod()) {
3766 record->stack[depth].method = m;
3767 record->stack[depth].dex_pc = GetDexPc();
Elliott Hughes530fa002012-03-12 11:44:49 -07003768 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08003769 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003770 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08003771 }
3772
3773 ~AllocRecordStackVisitor() {
3774 // Clear out any unused stack trace elements.
3775 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
3776 record->stack[depth].method = NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -07003777 record->stack[depth].dex_pc = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08003778 }
3779 }
3780
3781 AllocRecord* record;
3782 size_t depth;
3783};
3784
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003785void Dbg::RecordAllocation(mirror::Class* type, size_t byte_count) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003786 Thread* self = Thread::Current();
3787 CHECK(self != NULL);
3788
Ian Rogers719d1a32014-03-06 12:13:39 -08003789 MutexLock mu(self, *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08003790 if (recent_allocation_records_ == NULL) {
3791 return;
3792 }
3793
3794 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08003795 if (++alloc_record_head_ == alloc_record_max_) {
3796 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08003797 }
3798
3799 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08003800 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Elliott Hughes545a0642011-11-08 19:10:03 -08003801 record->type = type;
3802 record->byte_count = byte_count;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003803 record->thin_lock_id = self->GetThreadId();
Elliott Hughes545a0642011-11-08 19:10:03 -08003804
3805 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08003806 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07003807 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08003808
Ian Rogers719d1a32014-03-06 12:13:39 -08003809 if (alloc_record_count_ < alloc_record_max_) {
3810 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003811 }
3812}
3813
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003814// Returns the index of the head element.
3815//
3816// We point at the most-recently-written record, so if gAllocRecordCount is 1
3817// we want to use the current element. Take "head+1" and subtract count
3818// from it.
3819//
3820// We need to handle underflow in our circular buffer, so we add
Elliott Hughesb1a58792013-07-11 18:10:58 -07003821// gAllocRecordMax and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08003822size_t Dbg::HeadIndex() {
3823 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
3824 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003825}
3826
3827void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003828 ScopedObjectAccess soa(Thread::Current());
Ian Rogers719d1a32014-03-06 12:13:39 -08003829 MutexLock mu(soa.Self(), *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08003830 if (recent_allocation_records_ == NULL) {
3831 LOG(INFO) << "Not recording tracked allocations";
3832 return;
3833 }
3834
3835 // "i" is the head of the list. We want to start at the end of the
3836 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003837 size_t i = HeadIndex();
Ian Rogers719d1a32014-03-06 12:13:39 -08003838 size_t count = alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003839
Ian Rogers719d1a32014-03-06 12:13:39 -08003840 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08003841 while (count--) {
3842 AllocRecord* record = &recent_allocation_records_[i];
3843
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003844 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->thin_lock_id, record->byte_count)
Elliott Hughes545a0642011-11-08 19:10:03 -08003845 << PrettyClass(record->type);
3846
3847 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003848 mirror::ArtMethod* m = record->stack[stack_frame].method;
Elliott Hughes545a0642011-11-08 19:10:03 -08003849 if (m == NULL) {
3850 break;
3851 }
3852 LOG(INFO) << " " << PrettyMethod(m) << " line " << record->stack[stack_frame].LineNumber();
3853 }
3854
3855 // pause periodically to help logcat catch up
3856 if ((count % 5) == 0) {
3857 usleep(40000);
3858 }
3859
Ian Rogers719d1a32014-03-06 12:13:39 -08003860 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003861 }
3862}
3863
Mathieu Chartier83c8ee02014-01-28 14:50:23 -08003864void Dbg::UpdateObjectPointers(IsMarkedCallback* visitor, void* arg) {
Ian Rogers719d1a32014-03-06 12:13:39 -08003865 if (recent_allocation_records_ != nullptr) {
3866 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
3867 size_t i = HeadIndex();
3868 size_t count = alloc_record_count_;
3869 while (count--) {
3870 AllocRecord* record = &recent_allocation_records_[i];
3871 DCHECK(record != nullptr);
3872 record->UpdateObjectPointers(visitor, arg);
3873 i = (i + 1) & (alloc_record_max_ - 1);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08003874 }
3875 }
3876 if (gRegistry != nullptr) {
3877 gRegistry->UpdateObjectPointers(visitor, arg);
3878 }
3879}
3880
3881void Dbg::AllowNewObjectRegistryObjects() {
3882 if (gRegistry != nullptr) {
3883 gRegistry->AllowNewObjects();
3884 }
3885}
3886
3887void Dbg::DisallowNewObjectRegistryObjects() {
3888 if (gRegistry != nullptr) {
3889 gRegistry->DisallowNewObjects();
3890 }
3891}
3892
Elliott Hughes545a0642011-11-08 19:10:03 -08003893class StringTable {
3894 public:
3895 StringTable() {
3896 }
3897
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003898 void Add(const char* s) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003899 table_.insert(s);
3900 }
3901
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003902 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07003903 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003904 if (it == table_.end()) {
3905 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
3906 }
3907 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08003908 }
3909
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003910 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08003911 return table_.size();
3912 }
3913
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003914 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07003915 for (const std::string& str : table_) {
3916 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003917 size_t s_len = CountModifiedUtf8Chars(s);
3918 UniquePtr<uint16_t> s_utf16(new uint16_t[s_len]);
3919 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
3920 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08003921 }
3922 }
3923
3924 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003925 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003926 DISALLOW_COPY_AND_ASSIGN(StringTable);
3927};
3928
3929/*
3930 * The data we send to DDMS contains everything we have recorded.
3931 *
3932 * Message header (all values big-endian):
3933 * (1b) message header len (to allow future expansion); includes itself
3934 * (1b) entry header len
3935 * (1b) stack frame len
3936 * (2b) number of entries
3937 * (4b) offset to string table from start of message
3938 * (2b) number of class name strings
3939 * (2b) number of method name strings
3940 * (2b) number of source file name strings
3941 * For each entry:
3942 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08003943 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08003944 * (2b) allocated object's class name index
3945 * (1b) stack depth
3946 * For each stack frame:
3947 * (2b) method's class name
3948 * (2b) method name
3949 * (2b) method source file
3950 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
3951 * (xb) class name strings
3952 * (xb) method name strings
3953 * (xb) source file strings
3954 *
3955 * As with other DDM traffic, strings are sent as a 4-byte length
3956 * followed by UTF-16 data.
3957 *
3958 * We send up 16-bit unsigned indexes into string tables. In theory there
Elliott Hughesb1a58792013-07-11 18:10:58 -07003959 * can be (kMaxAllocRecordStackDepth * gAllocRecordMax) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08003960 * each table, but in practice there should be far fewer.
3961 *
3962 * The chief reason for using a string table here is to keep the size of
3963 * the DDMS message to a minimum. This is partly to make the protocol
3964 * efficient, but also because we have to form the whole thing up all at
3965 * once in a memory buffer.
3966 *
3967 * We use separate string tables for class names, method names, and source
3968 * files to keep the indexes small. There will generally be no overlap
3969 * between the contents of these tables.
3970 */
3971jbyteArray Dbg::GetRecentAllocations() {
3972 if (false) {
3973 DumpRecentAllocations();
3974 }
3975
Ian Rogers50b35e22012-10-04 10:09:15 -07003976 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08003977 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003978 {
Ian Rogers719d1a32014-03-06 12:13:39 -08003979 MutexLock mu(self, *alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003980 //
3981 // Part 1: generate string tables.
3982 //
3983 StringTable class_names;
3984 StringTable method_names;
3985 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08003986
Ian Rogers719d1a32014-03-06 12:13:39 -08003987 int count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003988 int idx = HeadIndex();
3989 while (count--) {
3990 AllocRecord* record = &recent_allocation_records_[idx];
Elliott Hughes545a0642011-11-08 19:10:03 -08003991
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003992 class_names.Add(ClassHelper(record->type).GetDescriptor());
Elliott Hughes545a0642011-11-08 19:10:03 -08003993
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003994 MethodHelper mh;
3995 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07003996 mirror::ArtMethod* m = record->stack[i].method;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003997 if (m != NULL) {
3998 mh.ChangeMethod(m);
3999 class_names.Add(mh.GetDeclaringClassDescriptor());
4000 method_names.Add(mh.GetName());
4001 filenames.Add(mh.GetDeclaringClassSourceFile());
4002 }
4003 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004004
Ian Rogers719d1a32014-03-06 12:13:39 -08004005 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004006 }
4007
Ian Rogers719d1a32014-03-06 12:13:39 -08004008 LOG(INFO) << "allocation records: " << alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004009
4010 //
4011 // Part 2: Generate the output and store it in the buffer.
4012 //
4013
4014 // (1b) message header len (to allow future expansion); includes itself
4015 // (1b) entry header len
4016 // (1b) stack frame len
4017 const int kMessageHeaderLen = 15;
4018 const int kEntryHeaderLen = 9;
4019 const int kStackFrameLen = 8;
4020 JDWP::Append1BE(bytes, kMessageHeaderLen);
4021 JDWP::Append1BE(bytes, kEntryHeaderLen);
4022 JDWP::Append1BE(bytes, kStackFrameLen);
4023
4024 // (2b) number of entries
4025 // (4b) offset to string table from start of message
4026 // (2b) number of class name strings
4027 // (2b) number of method name strings
4028 // (2b) number of source file name strings
Ian Rogers719d1a32014-03-06 12:13:39 -08004029 JDWP::Append2BE(bytes, alloc_record_count_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004030 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004031 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004032 JDWP::Append2BE(bytes, class_names.Size());
4033 JDWP::Append2BE(bytes, method_names.Size());
4034 JDWP::Append2BE(bytes, filenames.Size());
4035
Ian Rogers719d1a32014-03-06 12:13:39 -08004036 count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004037 idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004038 while (count--) {
4039 // For each entry:
4040 // (4b) total allocation size
4041 // (2b) thread id
4042 // (2b) allocated object's class name index
4043 // (1b) stack depth
4044 AllocRecord* record = &recent_allocation_records_[idx];
4045 size_t stack_depth = record->GetDepth();
Mathieu Chartier590fee92013-09-13 13:46:47 -07004046 ClassHelper kh(record->type);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004047 size_t allocated_object_class_name_index = class_names.IndexOf(kh.GetDescriptor());
4048 JDWP::Append4BE(bytes, record->byte_count);
4049 JDWP::Append2BE(bytes, record->thin_lock_id);
4050 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4051 JDWP::Append1BE(bytes, stack_depth);
4052
4053 MethodHelper mh;
4054 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4055 // For each stack frame:
4056 // (2b) method's class name
4057 // (2b) method name
4058 // (2b) method source file
4059 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
4060 mh.ChangeMethod(record->stack[stack_frame].method);
4061 size_t class_name_index = class_names.IndexOf(mh.GetDeclaringClassDescriptor());
4062 size_t method_name_index = method_names.IndexOf(mh.GetName());
4063 size_t file_name_index = filenames.IndexOf(mh.GetDeclaringClassSourceFile());
4064 JDWP::Append2BE(bytes, class_name_index);
4065 JDWP::Append2BE(bytes, method_name_index);
4066 JDWP::Append2BE(bytes, file_name_index);
4067 JDWP::Append2BE(bytes, record->stack[stack_frame].LineNumber());
4068 }
4069
Ian Rogers719d1a32014-03-06 12:13:39 -08004070 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004071 }
4072
4073 // (xb) class name strings
4074 // (xb) method name strings
4075 // (xb) source file strings
4076 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4077 class_names.WriteTo(bytes);
4078 method_names.WriteTo(bytes);
4079 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004080 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004081 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004082 jbyteArray result = env->NewByteArray(bytes.size());
4083 if (result != NULL) {
4084 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4085 }
4086 return result;
4087}
4088
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004089} // namespace art