blob: 2c671aa4e2080651b1ca2bb001e314673d9b8224 [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();
724 Locks::mutator_lock_->SharedUnlock(self);
725 Locks::mutator_lock_->ExclusiveLock(self);
726
727 MonitorInfo monitor_info(o);
728
729 Locks::mutator_lock_->ExclusiveUnlock(self);
730 Locks::mutator_lock_->SharedLock(self);
731
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700732 if (monitor_info.owner_ != NULL) {
733 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800734 } else {
735 expandBufAddObjectId(reply, gRegistry->Add(NULL));
736 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700737 expandBufAdd4BE(reply, monitor_info.entry_count_);
738 expandBufAdd4BE(reply, monitor_info.waiters_.size());
739 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
740 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800741 }
742 return JDWP::ERR_NONE;
743}
744
Elliott Hughes734b8c62013-01-11 15:32:45 -0800745JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
746 std::vector<JDWP::ObjectId>& monitors,
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100747 std::vector<uint32_t>& stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800748 ScopedObjectAccessUnchecked soa(Thread::Current());
749 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
750 Thread* thread;
751 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
752 if (error != JDWP::ERR_NONE) {
753 return error;
754 }
755 if (!IsSuspendedForDebugger(soa, thread)) {
756 return JDWP::ERR_THREAD_NOT_SUSPENDED;
757 }
758
759 struct OwnedMonitorVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800760 OwnedMonitorVisitor(Thread* thread, Context* context)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800761 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -0800762 : StackVisitor(thread, context), current_stack_depth(0) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800763
764 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
765 // annotalysis.
766 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
767 if (!GetMethod()->IsRuntimeMethod()) {
768 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800769 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800770 }
771 return true;
772 }
773
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800774 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800775 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800776 visitor->monitors.push_back(owned_monitor);
777 visitor->stack_depths.push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800778 }
779
Elliott Hughes734b8c62013-01-11 15:32:45 -0800780 size_t current_stack_depth;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800781 std::vector<mirror::Object*> monitors;
Elliott Hughes734b8c62013-01-11 15:32:45 -0800782 std::vector<uint32_t> stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800783 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800784 UniquePtr<Context> context(Context::Create());
785 OwnedMonitorVisitor visitor(thread, context.get());
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800786 visitor.WalkStack();
787
788 for (size_t i = 0; i < visitor.monitors.size(); ++i) {
789 monitors.push_back(gRegistry->Add(visitor.monitors[i]));
Elliott Hughes734b8c62013-01-11 15:32:45 -0800790 stack_depths.push_back(visitor.stack_depths[i]);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800791 }
792
793 return JDWP::ERR_NONE;
794}
795
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100796JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
797 JDWP::ObjectId& contended_monitor) {
Elliott Hughesf9501702013-01-11 11:22:27 -0800798 ScopedObjectAccessUnchecked soa(Thread::Current());
799 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
800 Thread* thread;
801 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
802 if (error != JDWP::ERR_NONE) {
803 return error;
804 }
805 if (!IsSuspendedForDebugger(soa, thread)) {
806 return JDWP::ERR_THREAD_NOT_SUSPENDED;
807 }
808
809 contended_monitor = gRegistry->Add(Monitor::GetContendedMonitor(thread));
810
811 return JDWP::ERR_NONE;
812}
813
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800814JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
815 std::vector<uint64_t>& counts)
816 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800817 gc::Heap* heap = Runtime::Current()->GetHeap();
818 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800819 std::vector<mirror::Class*> classes;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800820 counts.clear();
821 for (size_t i = 0; i < class_ids.size(); ++i) {
822 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800823 mirror::Class* c = DecodeClass(class_ids[i], status);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800824 if (c == NULL) {
825 return status;
826 }
827 classes.push_back(c);
828 counts.push_back(0);
829 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800830 heap->CountInstances(classes, false, &counts[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800831 return JDWP::ERR_NONE;
832}
833
Elliott Hughes3b78c942013-01-15 17:35:41 -0800834JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::ObjectId>& instances)
835 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800836 gc::Heap* heap = Runtime::Current()->GetHeap();
837 // We only want reachable instances, so do a GC.
838 heap->CollectGarbage(false);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800839 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800840 mirror::Class* c = DecodeClass(class_id, status);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800841 if (c == nullptr) {
Elliott Hughes3b78c942013-01-15 17:35:41 -0800842 return status;
843 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800844 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800845 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
846 for (size_t i = 0; i < raw_instances.size(); ++i) {
847 instances.push_back(gRegistry->Add(raw_instances[i]));
848 }
849 return JDWP::ERR_NONE;
850}
851
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800852JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
853 std::vector<JDWP::ObjectId>& referring_objects)
854 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800855 gc::Heap* heap = Runtime::Current()->GetHeap();
856 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800857 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800858 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800859 return JDWP::ERR_INVALID_OBJECT;
860 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800861 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800862 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800863 for (size_t i = 0; i < raw_instances.size(); ++i) {
864 referring_objects.push_back(gRegistry->Add(raw_instances[i]));
865 }
866 return JDWP::ERR_NONE;
867}
868
Elliott Hughes64f574f2013-02-20 14:57:12 -0800869JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id)
870 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100871 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
872 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
873 return JDWP::ERR_INVALID_OBJECT;
874 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800875 gRegistry->DisableCollection(object_id);
876 return JDWP::ERR_NONE;
877}
878
879JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id)
880 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100881 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
882 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
883 // also ignores these cases and never return an error. However it's not obvious why this command
884 // should behave differently from DisableCollection and IsCollected commands. So let's be more
885 // strict and return an error if this happens.
886 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
887 return JDWP::ERR_INVALID_OBJECT;
888 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800889 gRegistry->EnableCollection(object_id);
890 return JDWP::ERR_NONE;
891}
892
893JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool& is_collected)
894 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100895 if (object_id == 0) {
896 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +0100897 return JDWP::ERR_INVALID_OBJECT;
898 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100899 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
900 // the RI seems to ignore this and assume object has been collected.
901 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
902 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
903 is_collected = true;
904 } else {
905 is_collected = gRegistry->IsCollected(object_id);
906 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800907 return JDWP::ERR_NONE;
908}
909
910void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
911 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
912 gRegistry->DisposeObject(object_id, reference_count);
913}
914
Elliott Hughes88d63092013-01-09 09:55:54 -0800915JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800916 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800917 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800918 if (c == NULL) {
919 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800920 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800921
922 expandBufAdd1(pReply, c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS);
Elliott Hughes88d63092013-01-09 09:55:54 -0800923 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800924 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700925}
926
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800927void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800928 // Get the complete list of reference classes (i.e. all classes except
929 // the primitive types).
930 // Returns a newly-allocated buffer full of RefTypeId values.
931 struct ClassListCreator {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800932 explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800933 }
934
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800935 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800936 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
937 }
938
Elliott Hughes64f574f2013-02-20 14:57:12 -0800939 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
940 // annotalysis.
941 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -0800942 if (!c->IsPrimitive()) {
Elliott Hughes64f574f2013-02-20 14:57:12 -0800943 classes.push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -0800944 }
945 return true;
946 }
947
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800948 std::vector<JDWP::RefTypeId>& classes;
Elliott Hughesa2155262011-11-16 16:26:58 -0800949 };
950
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800951 ClassListCreator clc(classes);
Elliott Hughesa2155262011-11-16 16:26:58 -0800952 Runtime::Current()->GetClassLinker()->VisitClasses(ClassListCreator::Visit, &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700953}
954
Elliott Hughes88d63092013-01-09 09:55:54 -0800955JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, uint32_t* pStatus, std::string* pDescriptor) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800956 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800957 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800958 if (c == NULL) {
959 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800960 }
961
Elliott Hughesa2155262011-11-16 16:26:58 -0800962 if (c->IsArrayClass()) {
963 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
964 *pTypeTag = JDWP::TT_ARRAY;
965 } else {
966 if (c->IsErroneous()) {
967 *pStatus = JDWP::CS_ERROR;
968 } else {
969 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
970 }
971 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
972 }
973
974 if (pDescriptor != NULL) {
Ian Rogersdfb325e2013-10-30 01:00:44 -0700975 *pDescriptor = ClassHelper(c).GetDescriptor();
Elliott Hughesa2155262011-11-16 16:26:58 -0800976 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800977 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700978}
979
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800980void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800981 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800982 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
983 ids.clear();
984 for (size_t i = 0; i < classes.size(); ++i) {
985 ids.push_back(gRegistry->Add(classes[i]));
986 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700987}
988
Elliott Hughes64f574f2013-02-20 14:57:12 -0800989JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
990 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800991 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800992 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800993 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -0800994 }
Elliott Hughes2435a572012-02-17 16:07:41 -0800995
996 JDWP::JdwpTypeTag type_tag;
997 if (o->GetClass()->IsArrayClass()) {
998 type_tag = JDWP::TT_ARRAY;
999 } else if (o->GetClass()->IsInterface()) {
1000 type_tag = JDWP::TT_INTERFACE;
1001 } else {
1002 type_tag = JDWP::TT_CLASS;
1003 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001004 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001005
1006 expandBufAdd1(pReply, type_tag);
1007 expandBufAddRefTypeId(pReply, type_id);
1008
1009 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001010}
1011
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001012JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001013 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001014 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001015 if (c == NULL) {
1016 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001017 }
Ian Rogersdfb325e2013-10-30 01:00:44 -07001018 *signature = ClassHelper(c).GetDescriptor();
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001019 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001020}
1021
Elliott Hughes88d63092013-01-09 09:55:54 -08001022JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string& result) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001023 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001024 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001025 if (c == NULL) {
1026 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001027 }
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001028 if (c->IsProxyClass()) {
1029 return JDWP::ERR_ABSENT_INFORMATION;
1030 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001031 result = ClassHelper(c).GetSourceFile();
1032 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001033}
1034
Elliott Hughes88d63092013-01-09 09:55:54 -08001035JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001036 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001037 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001038 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes546b9862012-06-20 16:06:13 -07001039 return JDWP::ERR_INVALID_OBJECT;
1040 }
Ian Rogers98379392014-02-24 16:53:16 -08001041 tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001042 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001043}
1044
Elliott Hughesaed4be92011-12-02 16:16:23 -08001045size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001046 switch (tag) {
1047 case JDWP::JT_VOID:
1048 return 0;
1049 case JDWP::JT_BYTE:
1050 case JDWP::JT_BOOLEAN:
1051 return 1;
1052 case JDWP::JT_CHAR:
1053 case JDWP::JT_SHORT:
1054 return 2;
1055 case JDWP::JT_FLOAT:
1056 case JDWP::JT_INT:
1057 return 4;
1058 case JDWP::JT_ARRAY:
1059 case JDWP::JT_OBJECT:
1060 case JDWP::JT_STRING:
1061 case JDWP::JT_THREAD:
1062 case JDWP::JT_THREAD_GROUP:
1063 case JDWP::JT_CLASS_LOADER:
1064 case JDWP::JT_CLASS_OBJECT:
1065 return sizeof(JDWP::ObjectId);
1066 case JDWP::JT_DOUBLE:
1067 case JDWP::JT_LONG:
1068 return 8;
1069 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001070 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001071 return -1;
1072 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001073}
1074
Elliott Hughes88d63092013-01-09 09:55:54 -08001075JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int& length) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001076 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001077 mirror::Array* a = DecodeArray(array_id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001078 if (a == NULL) {
1079 return status;
Elliott Hughes24437992011-11-30 14:49:33 -08001080 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001081 length = a->GetLength();
1082 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001083}
1084
Elliott Hughes88d63092013-01-09 09:55:54 -08001085JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001086 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001087 mirror::Array* a = DecodeArray(array_id, status);
Ian Rogers98379392014-02-24 16:53:16 -08001088 if (a == nullptr) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001089 return status;
1090 }
Elliott Hughes24437992011-11-30 14:49:33 -08001091
1092 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1093 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001094 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001095 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001096 std::string descriptor(ClassHelper(a->GetClass()).GetDescriptor());
Elliott Hughes24437992011-11-30 14:49:33 -08001097 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
1098
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001099 expandBufAdd1(pReply, tag);
1100 expandBufAdd4BE(pReply, count);
1101
Elliott Hughes24437992011-11-30 14:49:33 -08001102 if (IsPrimitiveTag(tag)) {
1103 size_t width = GetTagWidth(tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001104 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1105 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001106 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001107 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1108 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001109 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001110 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1111 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001112 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001113 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1114 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001115 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001116 memcpy(dst, &src[offset * width], count * width);
1117 }
1118 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001119 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001120 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001121 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001122 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001123 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
1124 : tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001125 expandBufAdd1(pReply, specific_tag);
1126 expandBufAddObjectId(pReply, gRegistry->Add(element));
1127 }
1128 }
1129
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001130 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001131}
1132
Ian Rogersef7d42f2014-01-06 12:55:46 -08001133template <typename T>
1134static void CopyArrayData(mirror::Array* a, JDWP::Request& src, int offset, int count)
1135 NO_THREAD_SAFETY_ANALYSIS {
1136 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001137 DCHECK(a->GetClass()->IsPrimitiveArray());
1138
Ian Rogersef7d42f2014-01-06 12:55:46 -08001139 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001140 for (int i = 0; i < count; ++i) {
1141 *dst++ = src.ReadValue(sizeof(T));
1142 }
1143}
1144
Elliott Hughes88d63092013-01-09 09:55:54 -08001145JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001146 JDWP::Request& request)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001147 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001148 JDWP::JdwpError status;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001149 mirror::Array* dst = DecodeArray(array_id, status);
1150 if (dst == NULL) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001151 return status;
1152 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001153
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001154 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001155 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001156 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001157 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001158 const char* descriptor = ClassHelper(dst->GetClass()).GetDescriptor();
1159 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor + 1);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001160
1161 if (IsPrimitiveTag(tag)) {
1162 size_t width = GetTagWidth(tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001163 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001164 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001165 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001166 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001167 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001168 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001169 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001170 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001171 }
1172 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001173 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001174 for (int i = 0; i < count; ++i) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001175 JDWP::ObjectId id = request.ReadObjectId();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001176 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001177 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001178 return JDWP::ERR_INVALID_OBJECT;
1179 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001180 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001181 }
1182 }
1183
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001184 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001185}
1186
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001187JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001188 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001189}
1190
Elliott Hughes88d63092013-01-09 09:55:54 -08001191JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001192 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001193 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001194 if (c == NULL) {
1195 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001196 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001197 new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001198 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001199}
1200
Elliott Hughesbf13d362011-12-08 15:51:37 -08001201/*
1202 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1203 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001204JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001205 JDWP::ObjectId& new_array) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001206 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001207 mirror::Class* c = DecodeClass(array_class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001208 if (c == NULL) {
1209 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001210 }
Ian Rogers6fac4472014-02-25 17:01:10 -08001211 new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
1212 c->GetComponentSize(),
1213 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001214 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001215}
1216
Elliott Hughes88d63092013-01-09 09:55:54 -08001217bool Dbg::MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001218 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001219 mirror::Class* c1 = DecodeClass(instance_class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001220 CHECK(c1 != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001221 mirror::Class* c2 = DecodeClass(class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001222 CHECK(c2 != NULL);
Sebastien Hertz123756a2013-11-27 15:49:42 +01001223 return c2->IsAssignableFrom(c1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001224}
1225
Brian Carlstromea46f952013-07-30 01:26:50 -07001226static JDWP::FieldId ToFieldId(const mirror::ArtField* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001227 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001228 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001229 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001230}
1231
Brian Carlstromea46f952013-07-30 01:26:50 -07001232static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001233 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001234 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001235 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001236}
1237
Brian Carlstromea46f952013-07-30 01:26:50 -07001238static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001239 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001240 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001241 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001242}
1243
Brian Carlstromea46f952013-07-30 01:26:50 -07001244static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001245 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001246 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001247 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001248}
1249
Brian Carlstromea46f952013-07-30 01:26:50 -07001250static void SetLocation(JDWP::JdwpLocation& location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001251 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001252 if (m == NULL) {
1253 memset(&location, 0, sizeof(location));
1254 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001255 mirror::Class* c = m->GetDeclaringClass();
Elliott Hughes74847412012-06-20 18:10:21 -07001256 location.type_tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001257 location.class_id = gRegistry->AddRefType(c);
Elliott Hughes74847412012-06-20 18:10:21 -07001258 location.method_id = ToMethodId(m);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001259 location.dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001260 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001261}
1262
Elliott Hughesa96836a2013-01-17 12:27:49 -08001263std::string Dbg::GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001264 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001265 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001266 return MethodHelper(m).GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001267}
1268
Elliott Hughesa96836a2013-01-17 12:27:49 -08001269std::string Dbg::GetFieldName(JDWP::FieldId field_id)
1270 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001271 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughesa96836a2013-01-17 12:27:49 -08001272 return FieldHelper(f).GetName();
1273}
1274
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001275/*
1276 * Augment the access flags for synthetic methods and fields by setting
1277 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1278 * flags not specified by the Java programming language.
1279 */
1280static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1281 accessFlags &= kAccJavaFlagsMask;
1282 if ((accessFlags & kAccSynthetic) != 0) {
1283 accessFlags |= 0xf0000000;
1284 }
1285 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001286}
1287
Elliott Hughesdbb40792011-11-18 17:05:22 -08001288/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001289 * Circularly shifts registers so that arguments come first. Debuggers
1290 * expect slots to begin with arguments, but dex code places them at
1291 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001292 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001293static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1294 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1295 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001296 if (code_item == nullptr) {
1297 // We should not get here for a method without code (native, proxy or abstract). Log it and
1298 // return the slot as is since all registers are arguments.
1299 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1300 return slot;
1301 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001302 uint16_t ins_size = code_item->ins_size_;
1303 uint16_t locals_size = code_item->registers_size_ - ins_size;
1304 if (slot >= locals_size) {
1305 return slot - locals_size;
1306 } else {
1307 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001308 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001309}
1310
Jeff Haob7cefc72013-11-14 14:51:09 -08001311/*
1312 * Circularly shifts registers so that arguments come last. Reverts
1313 * slots to dex style argument placement.
1314 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001315static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001316 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Jeff Haob7cefc72013-11-14 14:51:09 -08001317 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001318 if (code_item == nullptr) {
1319 // We should not get here for a method without code (native, proxy or abstract). Log it and
1320 // return the slot as is since all registers are arguments.
1321 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1322 return slot;
1323 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001324 uint16_t ins_size = code_item->ins_size_;
1325 uint16_t locals_size = code_item->registers_size_ - ins_size;
1326 if (slot < ins_size) {
1327 return slot + locals_size;
1328 } else {
1329 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001330 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001331}
1332
Elliott Hughes88d63092013-01-09 09:55:54 -08001333JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001334 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001335 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001336 if (c == NULL) {
1337 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001338 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001339
1340 size_t instance_field_count = c->NumInstanceFields();
1341 size_t static_field_count = c->NumStaticFields();
1342
1343 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1344
1345 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001346 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001347 FieldHelper fh(f);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001348 expandBufAddFieldId(pReply, ToFieldId(f));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001349 expandBufAddUtf8String(pReply, fh.GetName());
1350 expandBufAddUtf8String(pReply, fh.GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001351 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001352 static const char genericSignature[1] = "";
1353 expandBufAddUtf8String(pReply, genericSignature);
1354 }
1355 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1356 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001357 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001358}
1359
Elliott Hughes88d63092013-01-09 09:55:54 -08001360JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001361 JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001362 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001363 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001364 if (c == NULL) {
1365 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001366 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001367
1368 size_t direct_method_count = c->NumDirectMethods();
1369 size_t virtual_method_count = c->NumVirtualMethods();
1370
1371 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1372
1373 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001374 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001375 MethodHelper mh(m);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001376 expandBufAddMethodId(pReply, ToMethodId(m));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001377 expandBufAddUtf8String(pReply, mh.GetName());
Ian Rogersd91d6d62013-09-25 20:26:14 -07001378 expandBufAddUtf8String(pReply, mh.GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001379 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001380 static const char genericSignature[1] = "";
1381 expandBufAddUtf8String(pReply, genericSignature);
1382 }
1383 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1384 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001385 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001386}
1387
Elliott Hughes88d63092013-01-09 09:55:54 -08001388JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001389 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001390 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001391 if (c == NULL) {
1392 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001393 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001394
1395 ClassHelper kh(c);
Ian Rogersd24e2642012-06-06 21:21:43 -07001396 size_t interface_count = kh.NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001397 expandBufAdd4BE(pReply, interface_count);
1398 for (size_t i = 0; i < interface_count; ++i) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001399 expandBufAddRefTypeId(pReply, gRegistry->AddRefType(kh.GetDirectInterface(i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001400 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001401 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001402}
1403
Elliott Hughes88d63092013-01-09 09:55:54 -08001404void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001405 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001406 struct DebugCallbackContext {
1407 int numItems;
1408 JDWP::ExpandBuf* pReply;
1409
Elliott Hughes2435a572012-02-17 16:07:41 -08001410 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001411 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1412 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001413 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001414 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001415 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001416 }
1417 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001418 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001419 MethodHelper mh(m);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001420 const DexFile::CodeItem* code_item = mh.GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001421 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001422 if (code_item == nullptr) {
1423 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001424 start = -1;
1425 end = -1;
1426 } else {
1427 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001428 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001429 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001430 }
1431
1432 expandBufAdd8BE(pReply, start);
1433 expandBufAdd8BE(pReply, end);
1434
1435 // Add numLines later
1436 size_t numLinesOffset = expandBufGetLength(pReply);
1437 expandBufAdd4BE(pReply, 0);
1438
1439 DebugCallbackContext context;
1440 context.numItems = 0;
1441 context.pReply = pReply;
1442
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001443 if (code_item != nullptr) {
1444 mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
1445 DebugCallbackContext::Callback, NULL, &context);
1446 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001447
1448 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001449}
1450
Elliott Hughes88d63092013-01-09 09:55:54 -08001451void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001452 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001453 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001454 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001455 size_t variable_count;
1456 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001457
Jeff Haob7cefc72013-11-14 14:51:09 -08001458 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress, const char* name, const char* descriptor, const char* signature)
1459 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001460 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1461
Jeff Haob7cefc72013-11-14 14:51:09 -08001462 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 -08001463
Jeff Haob7cefc72013-11-14 14:51:09 -08001464 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001465
Elliott Hughesdbb40792011-11-18 17:05:22 -08001466 expandBufAdd8BE(pContext->pReply, startAddress);
1467 expandBufAddUtf8String(pContext->pReply, name);
1468 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001469 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001470 expandBufAddUtf8String(pContext->pReply, signature);
1471 }
1472 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1473 expandBufAdd4BE(pContext->pReply, slot);
1474
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001475 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001476 }
1477 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001478 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001479 MethodHelper mh(m);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001480
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001481 // arg_count considers doubles and longs to take 2 units.
1482 // variable_count considers everything to take 1 unit.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001483 std::string shorty(mh.GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001484 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001485
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001486 // We don't know the total number of variables yet, so leave a blank and update it later.
1487 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001488 expandBufAdd4BE(pReply, 0);
1489
1490 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001491 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001492 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001493 context.variable_count = 0;
1494 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001495
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001496 const DexFile::CodeItem* code_item = mh.GetCodeItem();
1497 if (code_item != nullptr) {
1498 mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL,
1499 DebugCallbackContext::Callback, &context);
1500 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001501
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001502 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001503}
1504
Jeff Hao579b0242013-11-18 13:16:49 -08001505void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1506 JDWP::ExpandBuf* pReply) {
1507 mirror::ArtMethod* m = FromMethodId(method_id);
1508 JDWP::JdwpTag tag = BasicTagFromDescriptor(MethodHelper(m).GetShorty());
1509 OutputJValue(tag, return_value, pReply);
1510}
1511
Elliott Hughes9777ba22013-01-17 09:04:19 -08001512JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
1513 std::vector<uint8_t>& bytecodes)
1514 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001515 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001516 if (m == NULL) {
1517 return JDWP::ERR_INVALID_METHODID;
1518 }
1519 MethodHelper mh(m);
1520 const DexFile::CodeItem* code_item = mh.GetCodeItem();
1521 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1522 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1523 const uint8_t* end = begin + byte_count;
1524 for (const uint8_t* p = begin; p != end; ++p) {
1525 bytecodes.push_back(*p);
1526 }
1527 return JDWP::ERR_NONE;
1528}
1529
Elliott Hughes88d63092013-01-09 09:55:54 -08001530JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
1531 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001532}
1533
Elliott Hughes88d63092013-01-09 09:55:54 -08001534JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
1535 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001536}
1537
Elliott Hughes88d63092013-01-09 09:55:54 -08001538static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1539 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001540 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001541 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001542 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001543 mirror::Class* c = DecodeClass(ref_type_id, status);
Elliott Hughes88d63092013-01-09 09:55:54 -08001544 if (ref_type_id != 0 && c == NULL) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001545 return status;
1546 }
1547
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001548 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001549 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001550 return JDWP::ERR_INVALID_OBJECT;
1551 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001552 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001553
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001554 mirror::Class* receiver_class = c;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001555 if (receiver_class == NULL && o != NULL) {
1556 receiver_class = o->GetClass();
1557 }
1558 // TODO: should we give up now if receiver_class is NULL?
1559 if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
1560 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001561 return JDWP::ERR_INVALID_FIELDID;
1562 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001563
Elliott Hughes0cf74332012-02-23 23:14:00 -08001564 // The RI only enforces the static/non-static mismatch in one direction.
1565 // TODO: should we change the tests and check both?
1566 if (is_static) {
1567 if (!f->IsStatic()) {
1568 return JDWP::ERR_INVALID_FIELDID;
1569 }
1570 } else {
1571 if (f->IsStatic()) {
1572 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001573 }
1574 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001575 if (f->IsStatic()) {
1576 o = f->GetDeclaringClass();
1577 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001578
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001579 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001580 JValue field_value;
1581 if (tag == JDWP::JT_VOID) {
1582 LOG(FATAL) << "Unknown tag: " << tag;
1583 } else if (!IsPrimitiveTag(tag)) {
1584 field_value.SetL(f->GetObject(o));
1585 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1586 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001587 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001588 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001589 }
Jeff Hao579b0242013-11-18 13:16:49 -08001590 Dbg::OutputJValue(tag, &field_value, pReply);
1591
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001592 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001593}
1594
Elliott Hughes88d63092013-01-09 09:55:54 -08001595JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001596 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001597 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001598}
1599
Elliott Hughes88d63092013-01-09 09:55:54 -08001600JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) {
1601 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001602}
1603
Elliott Hughes88d63092013-01-09 09:55:54 -08001604static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001605 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001606 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001607 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001608 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001609 return JDWP::ERR_INVALID_OBJECT;
1610 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001611 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001612
1613 // The RI only enforces the static/non-static mismatch in one direction.
1614 // TODO: should we change the tests and check both?
1615 if (is_static) {
1616 if (!f->IsStatic()) {
1617 return JDWP::ERR_INVALID_FIELDID;
1618 }
1619 } else {
1620 if (f->IsStatic()) {
1621 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001622 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001623 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001624 if (f->IsStatic()) {
1625 o = f->GetDeclaringClass();
1626 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001627
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001628 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001629
1630 if (IsPrimitiveTag(tag)) {
1631 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001632 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001633 // Debugging can't use transactional mode (runtime only).
1634 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001635 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001636 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001637 // Debugging can't use transactional mode (runtime only).
1638 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001639 }
1640 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001641 mirror::Object* v = gRegistry->Get<mirror::Object*>(value);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001642 if (v == ObjectRegistry::kInvalidObject) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001643 return JDWP::ERR_INVALID_OBJECT;
1644 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001645 if (v != NULL) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001646 mirror::Class* field_type = FieldHelper(f).GetType();
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001647 if (!field_type->IsAssignableFrom(v->GetClass())) {
1648 return JDWP::ERR_INVALID_OBJECT;
1649 }
1650 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001651 // Debugging can't use transactional mode (runtime only).
1652 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001653 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001654
1655 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001656}
1657
Elliott Hughes88d63092013-01-09 09:55:54 -08001658JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001659 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001660 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001661}
1662
Elliott Hughes88d63092013-01-09 09:55:54 -08001663JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1664 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001665}
1666
Elliott Hughes88d63092013-01-09 09:55:54 -08001667std::string Dbg::StringToUtf8(JDWP::ObjectId string_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001668 mirror::String* s = gRegistry->Get<mirror::String*>(string_id);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001669 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001670}
1671
Jeff Hao579b0242013-11-18 13:16:49 -08001672void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1673 if (IsPrimitiveTag(tag)) {
1674 expandBufAdd1(pReply, tag);
1675 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1676 expandBufAdd1(pReply, return_value->GetI());
1677 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1678 expandBufAdd2BE(pReply, return_value->GetI());
1679 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1680 expandBufAdd4BE(pReply, return_value->GetI());
1681 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1682 expandBufAdd8BE(pReply, return_value->GetJ());
1683 } else {
1684 CHECK_EQ(tag, JDWP::JT_VOID);
1685 }
1686 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001687 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001688 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001689 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001690 expandBufAddObjectId(pReply, gRegistry->Add(value));
1691 }
1692}
1693
Elliott Hughes221229c2013-01-08 18:17:50 -08001694JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string& name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001695 ScopedObjectAccessUnchecked soa(Thread::Current());
1696 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001697 Thread* thread;
1698 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1699 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1700 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001701 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001702
1703 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001704 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Brian Carlstromea46f952013-07-30 01:26:50 -07001705 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001706 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1707 mirror::String* s =
1708 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Elliott Hughes221229c2013-01-08 18:17:50 -08001709 if (s != NULL) {
1710 name = s->ToModifiedUtf8();
1711 }
1712 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001713}
1714
Elliott Hughes221229c2013-01-08 18:17:50 -08001715JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001716 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001717 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001718 if (thread_object == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001719 return JDWP::ERR_INVALID_OBJECT;
1720 }
Ian Rogers98379392014-02-24 16:53:16 -08001721 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001722 // Okay, so it's an object, but is it actually a thread?
Ian Rogers50b35e22012-10-04 10:09:15 -07001723 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001724 Thread* thread;
1725 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1726 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1727 // Zombie threads are in the null group.
1728 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001729 error = JDWP::ERR_NONE;
1730 } else if (error == JDWP::ERR_NONE) {
1731 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1732 CHECK(c != nullptr);
1733 mirror::ArtField* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
1734 CHECK(f != NULL);
1735 mirror::Object* group = f->GetObject(thread_object);
1736 CHECK(group != NULL);
1737 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1738 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001739 }
Ian Rogers98379392014-02-24 16:53:16 -08001740 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001741 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001742}
1743
Elliott Hughes88d63092013-01-09 09:55:54 -08001744std::string Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001745 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001746 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001747 CHECK(thread_group != nullptr);
1748 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupName");
1749 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1750 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001751 mirror::ArtField* f = c->FindInstanceField("name", "Ljava/lang/String;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001752 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001753 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Ian Rogers98379392014-02-24 16:53:16 -08001754 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes499c5132011-11-17 14:55:11 -08001755 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001756}
1757
Elliott Hughes88d63092013-01-09 09:55:54 -08001758JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id) {
Ian Rogers98379392014-02-24 16:53:16 -08001759 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001760 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001761 CHECK(thread_group != nullptr);
1762 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupParent");
1763 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1764 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001765 mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
Elliott Hughes4e235312011-12-02 11:34:15 -08001766 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001767 mirror::Object* parent = f->GetObject(thread_group);
Ian Rogers98379392014-02-24 16:53:16 -08001768 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes4e235312011-12-02 11:34:15 -08001769 return gRegistry->Add(parent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001770}
1771
1772JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001773 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001774 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001775 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001776 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001777}
1778
1779JDWP::ObjectId Dbg::GetMainThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001780 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001781 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001782 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001783 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001784}
1785
Jeff Hao920af3e2013-08-28 15:46:38 -07001786JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
1787 switch (state) {
1788 case kBlocked:
1789 return JDWP::TS_MONITOR;
1790 case kNative:
1791 case kRunnable:
1792 case kSuspended:
1793 return JDWP::TS_RUNNING;
1794 case kSleeping:
1795 return JDWP::TS_SLEEPING;
1796 case kStarting:
1797 case kTerminated:
1798 return JDWP::TS_ZOMBIE;
1799 case kTimedWaiting:
1800 case kWaitingForDebuggerSend:
1801 case kWaitingForDebuggerSuspension:
1802 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01001803 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07001804 case kWaitingForGcToComplete:
1805 case kWaitingForCheckPointsToRun:
1806 case kWaitingForJniOnLoad:
1807 case kWaitingForSignalCatcherOutput:
1808 case kWaitingInMainDebuggerLoop:
1809 case kWaitingInMainSignalCatcherLoop:
1810 case kWaitingPerformingGc:
1811 case kWaiting:
1812 return JDWP::TS_WAIT;
1813 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
1814 }
1815 LOG(FATAL) << "Unknown thread state: " << state;
1816 return JDWP::TS_ZOMBIE;
1817}
1818
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001819JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
1820 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001821 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08001822
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001823 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
1824
Ian Rogers50b35e22012-10-04 10:09:15 -07001825 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001826 Thread* thread;
1827 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1828 if (error != JDWP::ERR_NONE) {
1829 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1830 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08001831 return JDWP::ERR_NONE;
1832 }
1833 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08001834 }
1835
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001836 if (IsSuspendedForDebugger(soa, thread)) {
1837 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08001838 }
1839
Jeff Hao920af3e2013-08-28 15:46:38 -07001840 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08001841 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001842}
1843
Elliott Hughes221229c2013-01-08 18:17:50 -08001844JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001845 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07001846 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001847 Thread* thread;
1848 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1849 if (error != JDWP::ERR_NONE) {
1850 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08001851 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001852 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001853 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08001854 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001855}
1856
Elliott Hughesf9501702013-01-11 11:22:27 -08001857JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
1858 ScopedObjectAccess soa(Thread::Current());
1859 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1860 Thread* thread;
1861 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1862 if (error != JDWP::ERR_NONE) {
1863 return error;
1864 }
1865 thread->Interrupt();
1866 return JDWP::ERR_NONE;
1867}
1868
Elliott Hughescaf76542012-06-28 16:08:22 -07001869void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) {
Ian Rogers365c1022012-06-22 15:05:28 -07001870 class ThreadListVisitor {
1871 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001872 ThreadListVisitor(const ScopedObjectAccessUnchecked& soa, mirror::Object* desired_thread_group,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001873 std::vector<JDWP::ObjectId>& thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001874 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001875 : soa_(soa), desired_thread_group_(desired_thread_group), thread_ids_(thread_ids) {}
Ian Rogers365c1022012-06-22 15:05:28 -07001876
Elliott Hughesa2155262011-11-16 16:26:58 -08001877 static void Visit(Thread* t, void* arg) {
1878 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
1879 }
1880
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001881 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1882 // annotalysis.
1883 void Visit(Thread* t) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001884 if (t == Dbg::GetDebugThread()) {
1885 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
1886 // query all threads, so it's easier if we just don't tell them about this thread.
1887 return;
1888 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001889 mirror::Object* peer = t->GetPeer();
jeffhao0dfbb7e2012-11-28 15:26:03 -08001890 if (IsInDesiredThreadGroup(peer)) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001891 thread_ids_.push_back(gRegistry->Add(peer));
Elliott Hughesa2155262011-11-16 16:26:58 -08001892 }
1893 }
1894
Ian Rogers365c1022012-06-22 15:05:28 -07001895 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001896 bool IsInDesiredThreadGroup(mirror::Object* peer)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001897 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao0dfbb7e2012-11-28 15:26:03 -08001898 // peer might be NULL if the thread is still starting up.
1899 if (peer == NULL) {
1900 // We can't tell the debugger about this thread yet.
1901 // TODO: if we identified threads to the debugger by their Thread*
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001902 // rather than their peer's mirror::Object*, we could fix this.
jeffhao0dfbb7e2012-11-28 15:26:03 -08001903 // Doing so might help us report ZOMBIE threads too.
1904 return false;
1905 }
jeffhaoc1e04902012-12-13 12:41:10 -08001906 // Do we want threads from all thread groups?
1907 if (desired_thread_group_ == NULL) {
1908 return true;
1909 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001910 mirror::Object* group = soa_.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(peer);
jeffhao0dfbb7e2012-11-28 15:26:03 -08001911 return (group == desired_thread_group_);
1912 }
1913
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07001914 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001915 mirror::Object* const desired_thread_group_;
Elliott Hughescaf76542012-06-28 16:08:22 -07001916 std::vector<JDWP::ObjectId>& thread_ids_;
Elliott Hughesa2155262011-11-16 16:26:58 -08001917 };
1918
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001919 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001920 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001921 ThreadListVisitor tlv(soa, thread_group, thread_ids);
Ian Rogers50b35e22012-10-04 10:09:15 -07001922 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07001923 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
Elliott Hughescaf76542012-06-28 16:08:22 -07001924}
Elliott Hughesa2155262011-11-16 16:26:58 -08001925
Elliott Hughescaf76542012-06-28 16:08:22 -07001926void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001927 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001928 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughescaf76542012-06-28 16:08:22 -07001929
1930 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Brian Carlstromea46f952013-07-30 01:26:50 -07001931 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001932 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Elliott Hughescaf76542012-06-28 16:08:22 -07001933
1934 // Get the array and size out of the ArrayList<ThreadGroup>...
Brian Carlstromea46f952013-07-30 01:26:50 -07001935 mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
1936 mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001937 mirror::ObjectArray<mirror::Object>* groups_array =
1938 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
Elliott Hughescaf76542012-06-28 16:08:22 -07001939 const int32_t size = size_field->GetInt(groups_array_list);
1940
1941 // Copy the first 'size' elements out of the array into the result.
1942 for (int32_t i = 0; i < size; ++i) {
1943 child_thread_group_ids.push_back(gRegistry->Add(groups_array->Get(i)));
Elliott Hughesa2155262011-11-16 16:26:58 -08001944 }
1945}
1946
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001947static int GetStackDepth(Thread* thread)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001948 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07001949 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07001950 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogers7a22fa62013-01-23 12:16:16 -08001951 : StackVisitor(thread, NULL), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07001952
Elliott Hughes64f574f2013-02-20 14:57:12 -08001953 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1954 // annotalysis.
1955 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07001956 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08001957 ++depth;
1958 }
Elliott Hughes530fa002012-03-12 11:44:49 -07001959 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001960 }
1961 size_t depth;
1962 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07001963
Ian Rogers7a22fa62013-01-23 12:16:16 -08001964 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07001965 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001966 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001967}
1968
Elliott Hughes221229c2013-01-08 18:17:50 -08001969JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001970 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08001971 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001972 Thread* thread;
1973 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1974 if (error != JDWP::ERR_NONE) {
1975 return error;
1976 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08001977 if (!IsSuspendedForDebugger(soa, thread)) {
1978 return JDWP::ERR_THREAD_NOT_SUSPENDED;
1979 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001980 result = GetStackDepth(thread);
1981 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08001982}
1983
Ian Rogers306057f2012-11-26 12:45:53 -08001984JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
1985 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001986 class GetFrameVisitor : public StackVisitor {
1987 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08001988 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001989 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08001990 : StackVisitor(thread, NULL), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001991 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
1992 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08001993 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001994
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001995 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1996 // annotalysis.
1997 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07001998 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001999 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002000 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002001 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002002 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002003 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002004 if (depth_ >= start_frame_) {
2005 JDWP::FrameId frame_id(GetFrameId());
2006 JDWP::JdwpLocation location;
2007 SetLocation(location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002008 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002009 expandBufAdd8BE(buf_, frame_id);
2010 expandBufAddLocation(buf_, location);
2011 }
2012 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002013 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002014 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002015
2016 private:
2017 size_t depth_;
2018 const size_t start_frame_;
2019 const size_t frame_count_;
2020 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002021 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002022
2023 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002024 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002025 Thread* thread;
2026 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2027 if (error != JDWP::ERR_NONE) {
2028 return error;
2029 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002030 if (!IsSuspendedForDebugger(soa, thread)) {
2031 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2032 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002033 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002034 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002035 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002036}
2037
2038JDWP::ObjectId Dbg::GetThreadSelfId() {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002039 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08002040 return gRegistry->Add(soa.Self()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002041}
2042
Elliott Hughes475fc232011-10-25 15:00:35 -07002043void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002044 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002045}
2046
2047void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07002048 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002049}
2050
Elliott Hughes221229c2013-01-08 18:17:50 -08002051JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002052 ScopedLocalRef<jobject> peer(Thread::Current()->GetJniEnv(), NULL);
2053 {
2054 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002055 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002056 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002057 if (peer.get() == NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002058 return JDWP::ERR_THREAD_NOT_ALIVE;
2059 }
2060 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002061 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002062 Thread* thread = ThreadList::SuspendThreadByPeer(peer.get(), request_suspension, true,
2063 &timed_out);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002064 if (thread != NULL) {
2065 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002066 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002067 return JDWP::ERR_INTERNAL;
2068 } else {
2069 return JDWP::ERR_THREAD_NOT_ALIVE;
2070 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002071}
2072
Elliott Hughes221229c2013-01-08 18:17:50 -08002073void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002074 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002075 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
jeffhaoa77f0f62012-12-05 17:19:31 -08002076 Thread* thread;
2077 {
2078 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2079 thread = Thread::FromManagedThread(soa, peer);
2080 }
Elliott Hughes4e235312011-12-02 11:34:15 -08002081 if (thread == NULL) {
2082 LOG(WARNING) << "No such thread for resume: " << peer;
2083 return;
2084 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002085 bool needs_resume;
2086 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002087 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002088 needs_resume = thread->GetSuspendCount() > 0;
2089 }
2090 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002091 Runtime::Current()->GetThreadList()->Resume(thread, true);
2092 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002093}
2094
2095void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002096 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002097}
2098
Ian Rogers0399dde2012-06-06 17:09:28 -07002099struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002100 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002101 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002102 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002103
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002104 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2105 // annotalysis.
2106 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002107 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002108 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002109 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002110 this_object = GetThisObject();
2111 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002112 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002113 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002114
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002115 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002116 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002117};
2118
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002119JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2120 JDWP::ObjectId* result) {
2121 ScopedObjectAccessUnchecked soa(Thread::Current());
2122 Thread* thread;
2123 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002124 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002125 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2126 if (error != JDWP::ERR_NONE) {
2127 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002128 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002129 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002130 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2131 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002132 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002133 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002134 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002135 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002136 *result = gRegistry->Add(visitor.this_object);
2137 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002138}
2139
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002140JDWP::JdwpError Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2141 JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002142 struct GetLocalVisitor : public StackVisitor {
Ian Rogers98379392014-02-24 16:53:16 -08002143 GetLocalVisitor(const ScopedObjectAccessUnchecked& soa, Thread* thread, Context* context,
2144 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002145 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers98379392014-02-24 16:53:16 -08002146 : StackVisitor(thread, context), soa_(soa), frame_id_(frame_id), slot_(slot), tag_(tag),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002147 buf_(buf), width_(width), error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002148
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002149 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2150 // annotalysis.
2151 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002152 if (GetFrameId() != frame_id_) {
2153 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08002154 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002155 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002156 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002157 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002158 if (m->IsNative()) {
2159 // We can't read local value from native method.
2160 error_ = JDWP::ERR_OPAQUE_FRAME;
2161 return false;
2162 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002163 uint16_t reg = DemangleSlot(slot_, m);
Elliott Hughesdbb40792011-11-18 17:05:22 -08002164
Ian Rogers0399dde2012-06-06 17:09:28 -07002165 switch (tag_) {
2166 case JDWP::JT_BOOLEAN:
2167 {
2168 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002169 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002170 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2171 JDWP::Set1(buf_+1, intVal != 0);
2172 }
2173 break;
2174 case JDWP::JT_BYTE:
2175 {
2176 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002177 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002178 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2179 JDWP::Set1(buf_+1, intVal);
2180 }
2181 break;
2182 case JDWP::JT_SHORT:
2183 case JDWP::JT_CHAR:
2184 {
2185 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002186 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002187 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2188 JDWP::Set2BE(buf_+1, intVal);
2189 }
2190 break;
2191 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002192 {
2193 CHECK_EQ(width_, 4U);
2194 uint32_t intVal = GetVReg(m, reg, kIntVReg);
2195 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2196 JDWP::Set4BE(buf_+1, intVal);
2197 }
2198 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002199 case JDWP::JT_FLOAT:
2200 {
2201 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002202 uint32_t intVal = GetVReg(m, reg, kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002203 VLOG(jdwp) << "get int/float local " << reg << " = " << intVal;
2204 JDWP::Set4BE(buf_+1, intVal);
2205 }
2206 break;
2207 case JDWP::JT_ARRAY:
2208 {
2209 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002210 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002211 VLOG(jdwp) << "get array local " << reg << " = " << o;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002212 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002213 LOG(FATAL) << "Register " << reg << " expected to hold array: " << o;
2214 }
2215 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2216 }
2217 break;
2218 case JDWP::JT_CLASS_LOADER:
2219 case JDWP::JT_CLASS_OBJECT:
2220 case JDWP::JT_OBJECT:
2221 case JDWP::JT_STRING:
2222 case JDWP::JT_THREAD:
2223 case JDWP::JT_THREAD_GROUP:
2224 {
2225 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002226 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002227 VLOG(jdwp) << "get object local " << reg << " = " << o;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002228 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002229 LOG(FATAL) << "Register " << reg << " expected to hold object: " << o;
2230 }
Ian Rogers98379392014-02-24 16:53:16 -08002231 tag_ = TagFromObject(soa_, o);
Ian Rogers0399dde2012-06-06 17:09:28 -07002232 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2233 }
2234 break;
2235 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002236 {
2237 CHECK_EQ(width_, 8U);
2238 uint32_t lo = GetVReg(m, reg, kDoubleLoVReg);
2239 uint64_t hi = GetVReg(m, reg + 1, kDoubleHiVReg);
2240 uint64_t longVal = (hi << 32) | lo;
2241 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2242 JDWP::Set8BE(buf_+1, longVal);
2243 }
2244 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002245 case JDWP::JT_LONG:
2246 {
2247 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002248 uint32_t lo = GetVReg(m, reg, kLongLoVReg);
2249 uint64_t hi = GetVReg(m, reg + 1, kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002250 uint64_t longVal = (hi << 32) | lo;
2251 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2252 JDWP::Set8BE(buf_+1, longVal);
2253 }
2254 break;
2255 default:
2256 LOG(FATAL) << "Unknown tag " << tag_;
2257 break;
2258 }
2259
2260 // Prepend tag, which may have been updated.
2261 JDWP::Set1(buf_, tag_);
2262 return false;
2263 }
Ian Rogers98379392014-02-24 16:53:16 -08002264 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002265 const JDWP::FrameId frame_id_;
2266 const int slot_;
2267 JDWP::JdwpTag tag_;
2268 uint8_t* const buf_;
2269 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002270 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002271 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002272
2273 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002274 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002275 Thread* thread;
2276 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2277 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002278 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002279 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002280 // TODO check thread is suspended by the debugger ?
Ian Rogers0399dde2012-06-06 17:09:28 -07002281 UniquePtr<Context> context(Context::Create());
Ian Rogers98379392014-02-24 16:53:16 -08002282 GetLocalVisitor visitor(soa, thread, context.get(), frame_id, slot, tag, buf, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002283 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002284 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002285}
2286
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002287JDWP::JdwpError Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2288 JDWP::JdwpTag tag, uint64_t value, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002289 struct SetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002290 SetLocalVisitor(Thread* thread, Context* context,
Ian Rogers0399dde2012-06-06 17:09:28 -07002291 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
Ian Rogersca190662012-06-26 15:45:57 -07002292 size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002293 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002294 : StackVisitor(thread, context),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002295 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width),
2296 error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002297
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002298 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2299 // annotalysis.
2300 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002301 if (GetFrameId() != frame_id_) {
2302 return true; // Not our frame, carry on.
2303 }
2304 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002305 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002306 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002307 if (m->IsNative()) {
2308 // We can't read local value from native method.
2309 error_ = JDWP::ERR_OPAQUE_FRAME;
2310 return false;
2311 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002312 uint16_t reg = DemangleSlot(slot_, m);
2313
2314 switch (tag_) {
2315 case JDWP::JT_BOOLEAN:
2316 case JDWP::JT_BYTE:
2317 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002318 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002319 break;
2320 case JDWP::JT_SHORT:
2321 case JDWP::JT_CHAR:
2322 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002323 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002324 break;
2325 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002326 CHECK_EQ(width_, 4U);
2327 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
2328 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002329 case JDWP::JT_FLOAT:
2330 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002331 SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002332 break;
2333 case JDWP::JT_ARRAY:
2334 case JDWP::JT_OBJECT:
2335 case JDWP::JT_STRING:
2336 {
2337 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002338 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_));
Elliott Hughes64f574f2013-02-20 14:57:12 -08002339 if (o == ObjectRegistry::kInvalidObject) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002340 UNIMPLEMENTED(FATAL) << "return an error code when given an invalid object to store";
2341 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002342 SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), kReferenceVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002343 }
2344 break;
2345 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002346 CHECK_EQ(width_, 8U);
2347 SetVReg(m, reg, static_cast<uint32_t>(value_), kDoubleLoVReg);
2348 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kDoubleHiVReg);
2349 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002350 case JDWP::JT_LONG:
2351 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002352 SetVReg(m, reg, static_cast<uint32_t>(value_), kLongLoVReg);
2353 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002354 break;
2355 default:
2356 LOG(FATAL) << "Unknown tag " << tag_;
2357 break;
2358 }
2359 return false;
2360 }
2361
2362 const JDWP::FrameId frame_id_;
2363 const int slot_;
2364 const JDWP::JdwpTag tag_;
2365 const uint64_t value_;
2366 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002367 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002368 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002369
2370 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002371 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002372 Thread* thread;
2373 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2374 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002375 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002376 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002377 // TODO check thread is suspended by the debugger ?
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002378 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002379 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002380 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002381 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002382}
2383
Ian Rogersef7d42f2014-01-06 12:55:46 -08002384void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002385 int event_flags, const JValue* return_value) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002386 JDWP::JdwpLocation location;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002387 SetLocation(location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002388
Elliott Hughes64f574f2013-02-20 14:57:12 -08002389 // If 'this_object' isn't already in the registry, we know that we're not looking for it,
2390 // so there's no point adding it to the registry and burning through ids.
2391 JDWP::ObjectId this_id = 0;
2392 if (gRegistry->Contains(this_object)) {
2393 this_id = gRegistry->Add(this_object);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002394 }
Jeff Hao579b0242013-11-18 13:16:49 -08002395 gJdwpState->PostLocationEvent(&location, this_id, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002396}
2397
Ian Rogers62d6c772013-02-27 08:32:07 -08002398void Dbg::PostException(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002399 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002400 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002401 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002402 return;
2403 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002404
Ian Rogers62d6c772013-02-27 08:32:07 -08002405 JDWP::JdwpLocation jdwp_throw_location;
2406 SetLocation(jdwp_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002407 JDWP::JdwpLocation catch_location;
Elliott Hughescaf76542012-06-28 16:08:22 -07002408 SetLocation(catch_location, catch_method, catch_dex_pc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002409
2410 // We need 'this' for InstanceOnly filters.
Ian Rogers62d6c772013-02-27 08:32:07 -08002411 JDWP::ObjectId this_id = gRegistry->Add(throw_location.GetThis());
Elliott Hughes64f574f2013-02-20 14:57:12 -08002412 JDWP::ObjectId exception_id = gRegistry->Add(exception_object);
2413 JDWP::RefTypeId exception_class_id = gRegistry->AddRefType(exception_object->GetClass());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002414
Ian Rogers62d6c772013-02-27 08:32:07 -08002415 gJdwpState->PostException(&jdwp_throw_location, exception_id, exception_class_id, &catch_location,
2416 this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002417}
2418
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002419void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002420 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002421 return;
2422 }
2423
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002424 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002425 // debuggers seem to like that. There might be some advantage to honesty,
2426 // since the class may not yet be verified.
2427 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
2428 JDWP::JdwpTypeTag tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002429 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c),
Ian Rogersdfb325e2013-10-30 01:00:44 -07002430 ClassHelper(c).GetDescriptor(), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002431}
2432
Ian Rogers62d6c772013-02-27 08:32:07 -08002433void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -08002434 mirror::ArtMethod* m, uint32_t dex_pc) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002435 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002436 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002437 }
2438
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002439 int event_flags = 0;
2440
Elliott Hughes86964332012-02-15 19:37:42 -08002441 if (IsBreakpoint(m, dex_pc)) {
2442 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002443 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002444
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002445 // If the debugger is single-stepping one of our threads, check to
2446 // see if we're that thread and we've reached a step point.
2447 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2448 DCHECK(single_step_control != nullptr);
2449 if (single_step_control->is_active) {
2450 CHECK(!m->IsNative());
2451 if (single_step_control->step_depth == JDWP::SD_INTO) {
2452 // Step into method calls. We break when the line number
2453 // or method pointer changes. If we're in SS_MIN mode, we
2454 // always stop.
2455 if (single_step_control->method != m) {
2456 event_flags |= kSingleStep;
2457 VLOG(jdwp) << "SS new method";
2458 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2459 event_flags |= kSingleStep;
2460 VLOG(jdwp) << "SS new instruction";
2461 } else if (single_step_control->dex_pcs.find(dex_pc) == single_step_control->dex_pcs.end()) {
2462 event_flags |= kSingleStep;
2463 VLOG(jdwp) << "SS new line";
2464 }
2465 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2466 // Step over method calls. We break when the line number is
2467 // different and the frame depth is <= the original frame
2468 // depth. (We can't just compare on the method, because we
2469 // might get unrolled past it by an exception, and it's tricky
2470 // to identify recursion.)
2471
2472 int stack_depth = GetStackDepth(thread);
2473
2474 if (stack_depth < single_step_control->stack_depth) {
2475 // Popped up one or more frames, always trigger.
2476 event_flags |= kSingleStep;
2477 VLOG(jdwp) << "SS method pop";
2478 } else if (stack_depth == single_step_control->stack_depth) {
2479 // Same depth, see if we moved.
2480 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002481 event_flags |= kSingleStep;
2482 VLOG(jdwp) << "SS new instruction";
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002483 } else if (single_step_control->dex_pcs.find(dex_pc) == single_step_control->dex_pcs.end()) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002484 event_flags |= kSingleStep;
2485 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002486 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002487 }
2488 } else {
2489 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2490 // Return from the current method. We break when the frame
2491 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002492
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002493 // This differs from the "method exit" break in that it stops
2494 // with the PC at the next instruction in the returned-to
2495 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002496
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002497 int stack_depth = GetStackDepth(thread);
2498 if (stack_depth < single_step_control->stack_depth) {
2499 event_flags |= kSingleStep;
2500 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002501 }
2502 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002503 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002504
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002505 // If there's something interesting going on, see if it matches one
2506 // of the debugger filters.
2507 if (event_flags != 0) {
Jeff Hao579b0242013-11-18 13:16:49 -08002508 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, nullptr);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002509 }
2510}
2511
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002512static void ProcessDeoptimizationRequests()
2513 LOCKS_EXCLUDED(Locks::deoptimization_lock_)
2514 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_) {
2515 Locks::mutator_lock_->AssertExclusiveHeld(Thread::Current());
2516 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2517 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
2518 for (const MethodInstrumentationRequest& request : gDeoptimizationRequests) {
2519 mirror::ArtMethod* const method = request.method;
2520 if (method != nullptr) {
2521 // Selective deoptimization.
2522 if (request.deoptimize) {
2523 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(method);
2524 instrumentation->Deoptimize(method);
2525 } else {
2526 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(method);
2527 instrumentation->Undeoptimize(method);
2528 }
2529 } else {
2530 // Full deoptimization.
2531 if (request.deoptimize) {
2532 VLOG(jdwp) << "Deoptimize the world";
2533 instrumentation->DeoptimizeEverything();
2534 } else {
2535 VLOG(jdwp) << "Undeoptimize the world";
2536 instrumentation->UndeoptimizeEverything();
2537 }
2538 }
2539 }
2540 gDeoptimizationRequests.clear();
2541}
2542
2543// Process deoptimization requests after suspending all mutator threads.
2544void Dbg::ManageDeoptimization() {
2545 Thread* const self = Thread::Current();
2546 {
2547 // Avoid suspend/resume if there is no pending request.
2548 MutexLock mu(self, *Locks::deoptimization_lock_);
2549 if (gDeoptimizationRequests.empty()) {
2550 return;
2551 }
2552 }
2553 CHECK_EQ(self->GetState(), kRunnable);
2554 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
2555 // We need to suspend mutator threads first.
2556 Runtime* const runtime = Runtime::Current();
2557 runtime->GetThreadList()->SuspendAll();
2558 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
2559 ProcessDeoptimizationRequests();
2560 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
2561 runtime->GetThreadList()->ResumeAll();
2562 self->TransitionFromSuspendedToRunnable();
2563}
2564
2565// Enable full deoptimization.
2566void Dbg::EnableFullDeoptimization() {
2567 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2568 VLOG(jdwp) << "Request full deoptimization";
2569 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(true, nullptr));
2570}
2571
2572// Disable full deoptimization.
2573void Dbg::DisableFullDeoptimization() {
2574 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2575 VLOG(jdwp) << "Request full undeoptimization";
2576 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(false, nullptr));
2577}
2578
Elliott Hughes86964332012-02-15 19:37:42 -08002579void Dbg::WatchLocation(const JDWP::JdwpLocation* location) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002580 bool need_deoptimization = true;
Brian Carlstromea46f952013-07-30 01:26:50 -07002581 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002582 {
2583 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
2584
2585 // If there is no breakpoint on this method yet, we need to deoptimize it.
2586 for (const Breakpoint& breakpoint : gBreakpoints) {
2587 if (breakpoint.method == m) {
2588 // We already set a breakpoint on this method, hence we deoptimized it.
2589 DCHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2590 need_deoptimization = false;
2591 break;
2592 }
2593 }
2594
2595 gBreakpoints.push_back(Breakpoint(m, location->dex_pc));
2596 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " << gBreakpoints[gBreakpoints.size() - 1];
2597 }
2598
2599 if (need_deoptimization) {
2600 // Request its deoptimization. This will be done after updating the JDWP event list.
2601 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2602 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(true, m));
2603 VLOG(jdwp) << "Request deoptimization of " << PrettyMethod(m);
2604 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002605}
2606
Elliott Hughes86964332012-02-15 19:37:42 -08002607void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002608 bool can_undeoptimize = true;
Brian Carlstromea46f952013-07-30 01:26:50 -07002609 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002610 DCHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2611 {
2612 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
2613 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
2614 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == location->dex_pc) {
2615 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
2616 gBreakpoints.erase(gBreakpoints.begin() + i);
2617 break;
2618 }
Elliott Hughes86964332012-02-15 19:37:42 -08002619 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002620
2621 // If there is no breakpoint on this method, we can undeoptimize it.
2622 for (const Breakpoint& breakpoint : gBreakpoints) {
2623 if (breakpoint.method == m) {
2624 can_undeoptimize = false;
2625 break;
2626 }
2627 }
2628 }
2629
2630 if (can_undeoptimize) {
2631 // Request its undeoptimization. This will be done after updating the JDWP event list.
2632 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
2633 gDeoptimizationRequests.push_back(MethodInstrumentationRequest(false, m));
2634 VLOG(jdwp) << "Request undeoptimization of " << PrettyMethod(m);
Elliott Hughes86964332012-02-15 19:37:42 -08002635 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002636}
2637
Jeff Hao449db332013-04-12 18:30:52 -07002638// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
2639// cause suspension if the thread is the current thread.
2640class ScopedThreadSuspension {
2641 public:
Ian Rogers33e95662013-05-20 20:29:14 -07002642 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002643 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07002644 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Jeff Hao449db332013-04-12 18:30:52 -07002645 thread_(NULL),
2646 error_(JDWP::ERR_NONE),
2647 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07002648 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07002649 ScopedObjectAccessUnchecked soa(self);
2650 {
2651 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2652 error_ = DecodeThread(soa, thread_id, thread_);
2653 }
2654 if (error_ == JDWP::ERR_NONE) {
2655 if (thread_ == soa.Self()) {
2656 self_suspend_ = true;
2657 } else {
2658 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
2659 jobject thread_peer = gRegistry->GetJObject(thread_id);
2660 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002661 Thread* suspended_thread = ThreadList::SuspendThreadByPeer(thread_peer, true, true,
2662 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07002663 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
2664 if (suspended_thread == NULL) {
2665 // Thread terminated from under us while suspending.
2666 error_ = JDWP::ERR_INVALID_THREAD;
2667 } else {
2668 CHECK_EQ(suspended_thread, thread_);
2669 other_suspend_ = true;
2670 }
2671 }
2672 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002673 }
Elliott Hughes86964332012-02-15 19:37:42 -08002674
Jeff Hao449db332013-04-12 18:30:52 -07002675 Thread* GetThread() const {
2676 return thread_;
2677 }
2678
2679 JDWP::JdwpError GetError() const {
2680 return error_;
2681 }
2682
2683 ~ScopedThreadSuspension() {
2684 if (other_suspend_) {
2685 Runtime::Current()->GetThreadList()->Resume(thread_, true);
2686 }
2687 }
2688
2689 private:
2690 Thread* thread_;
2691 JDWP::JdwpError error_;
2692 bool self_suspend_;
2693 bool other_suspend_;
2694};
2695
2696JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
2697 JDWP::JdwpStepDepth step_depth) {
2698 Thread* self = Thread::Current();
2699 ScopedThreadSuspension sts(self, thread_id);
2700 if (sts.GetError() != JDWP::ERR_NONE) {
2701 return sts.GetError();
2702 }
2703
Elliott Hughes2435a572012-02-17 16:07:41 -08002704 //
2705 // Work out what Method* we're in, the current line number, and how deep the stack currently
2706 // is for step-out.
2707 //
2708
Ian Rogers0399dde2012-06-06 17:09:28 -07002709 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002710 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
2711 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002712 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002713 : StackVisitor(thread, NULL), single_step_control_(single_step_control),
2714 line_number_(line_number) {
2715 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
2716 single_step_control_->method = NULL;
2717 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08002718 }
Ian Rogersca190662012-06-26 15:45:57 -07002719
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002720 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2721 // annotalysis.
2722 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002723 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002724 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002725 ++single_step_control_->stack_depth;
2726 if (single_step_control_->method == NULL) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08002727 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002728 single_step_control_->method = m;
2729 *line_number_ = -1;
Elliott Hughes2435a572012-02-17 16:07:41 -08002730 if (dex_cache != NULL) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07002731 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002732 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08002733 }
Elliott Hughes86964332012-02-15 19:37:42 -08002734 }
2735 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002736 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08002737 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002738
2739 SingleStepControl* const single_step_control_;
2740 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08002741 };
Jeff Hao449db332013-04-12 18:30:52 -07002742
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002743 Thread* const thread = sts.GetThread();
2744 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
2745 DCHECK(single_step_control != nullptr);
2746 int32_t line_number = -1;
2747 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07002748 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08002749
Elliott Hughes2435a572012-02-17 16:07:41 -08002750 //
2751 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
2752 //
2753
2754 struct DebugCallbackContext {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002755 explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number)
2756 : single_step_control_(single_step_control), line_number_(line_number),
2757 last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002758 }
2759
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002760 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002761 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002762 if (static_cast<int32_t>(line_number) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002763 if (!context->last_pc_valid) {
2764 // Everything from this address until the next line change is ours.
2765 context->last_pc = address;
2766 context->last_pc_valid = true;
2767 }
2768 // Otherwise, if we're already in a valid range for this line,
2769 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002770 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08002771 // Add everything from the last entry up until here to the set
2772 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002773 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08002774 }
2775 context->last_pc_valid = false;
2776 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002777 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08002778 }
2779
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002780 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08002781 // If the line number was the last in the position table...
2782 if (last_pc_valid) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002783 size_t end = MethodHelper(single_step_control_->method).GetCodeItem()->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08002784 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002785 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08002786 }
2787 }
2788 }
2789
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002790 SingleStepControl* const single_step_control_;
2791 const int32_t line_number_;
Elliott Hughes2435a572012-02-17 16:07:41 -08002792 bool last_pc_valid;
2793 uint32_t last_pc;
2794 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002795 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08002796 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002797 if (!m->IsNative()) {
2798 DebugCallbackContext context(single_step_control, line_number);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08002799 MethodHelper mh(m);
2800 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
2801 DebugCallbackContext::Callback, NULL, &context);
2802 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002803
2804 //
2805 // Everything else...
2806 //
2807
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002808 single_step_control->step_size = step_size;
2809 single_step_control->step_depth = step_depth;
2810 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08002811
Elliott Hughes2435a572012-02-17 16:07:41 -08002812 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002813 VLOG(jdwp) << "Single-step thread: " << *thread;
2814 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
2815 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
2816 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
2817 VLOG(jdwp) << "Single-step current line: " << line_number;
2818 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08002819 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002820 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 -08002821 VLOG(jdwp) << StringPrintf(" %#x", *it);
Elliott Hughes2435a572012-02-17 16:07:41 -08002822 }
2823 }
2824
2825 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002826}
2827
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002828void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
2829 ScopedObjectAccessUnchecked soa(Thread::Current());
2830 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2831 Thread* thread;
2832 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01002833 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002834 SingleStepControl* single_step_control = thread->GetSingleStepControl();
2835 DCHECK(single_step_control != nullptr);
2836 single_step_control->is_active = false;
2837 single_step_control->dex_pcs.clear();
2838 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002839}
2840
Elliott Hughes45651fd2012-02-21 15:48:20 -08002841static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
2842 switch (tag) {
2843 default:
2844 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
2845
2846 // Primitives.
2847 case JDWP::JT_BYTE: return 'B';
2848 case JDWP::JT_CHAR: return 'C';
2849 case JDWP::JT_FLOAT: return 'F';
2850 case JDWP::JT_DOUBLE: return 'D';
2851 case JDWP::JT_INT: return 'I';
2852 case JDWP::JT_LONG: return 'J';
2853 case JDWP::JT_SHORT: return 'S';
2854 case JDWP::JT_VOID: return 'V';
2855 case JDWP::JT_BOOLEAN: return 'Z';
2856
2857 // Reference types.
2858 case JDWP::JT_ARRAY:
2859 case JDWP::JT_OBJECT:
2860 case JDWP::JT_STRING:
2861 case JDWP::JT_THREAD:
2862 case JDWP::JT_THREAD_GROUP:
2863 case JDWP::JT_CLASS_LOADER:
2864 case JDWP::JT_CLASS_OBJECT:
2865 return 'L';
2866 }
2867}
2868
Elliott Hughes88d63092013-01-09 09:55:54 -08002869JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
2870 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002871 uint32_t arg_count, uint64_t* arg_values,
2872 JDWP::JdwpTag* arg_types, uint32_t options,
2873 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
2874 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08002875 ThreadList* thread_list = Runtime::Current()->GetThreadList();
2876
2877 Thread* targetThread = NULL;
2878 DebugInvokeReq* req = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002879 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08002880 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002881 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07002882 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002883 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread);
2884 if (error != JDWP::ERR_NONE) {
2885 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
2886 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002887 }
2888 req = targetThread->GetInvokeReq();
2889 if (!req->ready) {
2890 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
2891 return JDWP::ERR_INVALID_THREAD;
2892 }
2893
2894 /*
2895 * We currently have a bug where we don't successfully resume the
2896 * target thread if the suspend count is too deep. We're expected to
2897 * require one "resume" for each "suspend", but when asked to execute
2898 * a method we have to resume fully and then re-suspend it back to the
2899 * same level. (The easiest way to cause this is to type "suspend"
2900 * multiple times in jdb.)
2901 *
2902 * It's unclear what this means when the event specifies "resume all"
2903 * and some threads are suspended more deeply than others. This is
2904 * a rare problem, so for now we just prevent it from hanging forever
2905 * by rejecting the method invocation request. Without this, we will
2906 * be stuck waiting on a suspended thread.
2907 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002908 int suspend_count;
2909 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002910 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002911 suspend_count = targetThread->GetSuspendCount();
2912 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08002913 if (suspend_count > 1) {
2914 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002915 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08002916 }
2917
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002918 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002919 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08002920 if (receiver == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002921 return JDWP::ERR_INVALID_OBJECT;
2922 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002923
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002924 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08002925 if (thread == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002926 return JDWP::ERR_INVALID_OBJECT;
2927 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002928 // TODO: check that 'thread' is actually a java.lang.Thread!
2929
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002930 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes45651fd2012-02-21 15:48:20 -08002931 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08002932 return status;
2933 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002934
Brian Carlstromea46f952013-07-30 01:26:50 -07002935 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes45651fd2012-02-21 15:48:20 -08002936 if (m->IsStatic() != (receiver == NULL)) {
2937 return JDWP::ERR_INVALID_METHODID;
2938 }
2939 if (m->IsStatic()) {
2940 if (m->GetDeclaringClass() != c) {
2941 return JDWP::ERR_INVALID_METHODID;
2942 }
2943 } else {
2944 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
2945 return JDWP::ERR_INVALID_METHODID;
2946 }
2947 }
2948
2949 // Check the argument list matches the method.
2950 MethodHelper mh(m);
2951 if (mh.GetShortyLength() - 1 != arg_count) {
2952 return JDWP::ERR_ILLEGAL_ARGUMENT;
2953 }
2954 const char* shorty = mh.GetShorty();
Elliott Hughes09201632013-04-15 15:50:07 -07002955 const DexFile::TypeList* types = mh.GetParameterTypeList();
Elliott Hughes45651fd2012-02-21 15:48:20 -08002956 for (size_t i = 0; i < arg_count; ++i) {
2957 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
2958 return JDWP::ERR_ILLEGAL_ARGUMENT;
2959 }
Elliott Hughes09201632013-04-15 15:50:07 -07002960
2961 if (shorty[i + 1] == 'L') {
2962 // Did we really get an argument of an appropriate reference type?
2963 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
2964 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i]);
2965 if (argument == ObjectRegistry::kInvalidObject) {
2966 return JDWP::ERR_INVALID_OBJECT;
2967 }
Sebastien Hertz0630ab52013-11-28 18:53:35 +01002968 if (argument != NULL && !argument->InstanceOf(parameter_type)) {
Elliott Hughes09201632013-04-15 15:50:07 -07002969 return JDWP::ERR_ILLEGAL_ARGUMENT;
2970 }
2971
2972 // Turn the on-the-wire ObjectId into a jobject.
2973 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
2974 v.l = gRegistry->GetJObject(arg_values[i]);
2975 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08002976 }
2977
Sebastien Hertzd38667a2013-11-25 15:43:54 +01002978 req->receiver = receiver;
2979 req->thread = thread;
2980 req->klass = c;
2981 req->method = m;
2982 req->arg_count = arg_count;
2983 req->arg_values = arg_values;
2984 req->options = options;
2985 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08002986 }
2987
2988 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
2989 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
2990 // call, and it's unwise to hold it during WaitForSuspend.
2991
2992 {
2993 /*
2994 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07002995 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08002996 * run out of memory. It's also a good idea to change it before locking
2997 * the invokeReq mutex, although that should never be held for long.
2998 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002999 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003000
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003001 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003002 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003003 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003004
3005 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003006 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003007 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003008 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003009 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003010 thread_list->Resume(targetThread, true);
3011 }
3012
3013 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003014 while (req->invoke_needed) {
3015 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003016 }
3017 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003018 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003019
3020 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003021 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003022 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003023 }
3024
3025 /*
3026 * Suspend the threads. We waited for the target thread to suspend
3027 * itself, so all we need to do is suspend the others.
3028 *
3029 * The suspendAllThreads() call will double-suspend the event thread,
3030 * so we want to resume the target thread once to keep the books straight.
3031 */
3032 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003033 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003034 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003035 thread_list->SuspendAllForDebugger();
3036 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003037 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003038 thread_list->Resume(targetThread, true);
3039 }
3040
3041 // Copy the result.
3042 *pResultTag = req->result_tag;
3043 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003044 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003045 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003046 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003047 }
3048 *pExceptionId = req->exception;
3049 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003050}
3051
3052void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003053 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003054
Elliott Hughes81ff3182012-03-23 20:35:56 -07003055 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003056 // to preserve that across the method invocation.
Ian Rogers62d6c772013-02-27 08:32:07 -08003057 SirtRef<mirror::Object> old_throw_this_object(soa.Self(), NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -07003058 SirtRef<mirror::ArtMethod> old_throw_method(soa.Self(), NULL);
Ian Rogers62d6c772013-02-27 08:32:07 -08003059 SirtRef<mirror::Throwable> old_exception(soa.Self(), NULL);
3060 uint32_t old_throw_dex_pc;
3061 {
3062 ThrowLocation old_throw_location;
3063 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
3064 old_throw_this_object.reset(old_throw_location.GetThis());
3065 old_throw_method.reset(old_throw_location.GetMethod());
3066 old_exception.reset(old_exception_obj);
3067 old_throw_dex_pc = old_throw_location.GetDexPc();
3068 soa.Self()->ClearException();
3069 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003070
3071 // Translate the method through the vtable, unless the debugger wants to suppress it.
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003072 SirtRef<mirror::ArtMethod> m(soa.Self(), pReq->method);
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003073 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != NULL) {
3074 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(pReq->method);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003075 if (actual_method != m.get()) {
3076 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.get()) << " to " << PrettyMethod(actual_method);
3077 m.reset(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003078 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003079 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003080 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003081 << " receiver=" << pReq->receiver
3082 << " arg_count=" << pReq->arg_count;
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003083 CHECK(m.get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003084
3085 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3086
Ian Rogers53b8b092014-03-13 23:45:53 -07003087 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(pReq->method),
3088 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003089
Ian Rogers62d6c772013-02-27 08:32:07 -08003090 mirror::Throwable* exception = soa.Self()->GetException(NULL);
3091 soa.Self()->ClearException();
3092 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003093 pReq->result_tag = BasicTagFromDescriptor(MethodHelper(m.get()).GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003094 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003095 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3096 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003097 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003098 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3099 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003100 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003101 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003102 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003103 pReq->result_tag = new_tag;
3104 }
3105
3106 /*
3107 * Register the object. We don't actually need an ObjectId yet,
3108 * but we do need to be sure that the GC won't move or discard the
3109 * object when we switch out of RUNNING. The ObjectId conversion
3110 * will add the object to the "do not touch" list.
3111 *
3112 * We can't use the "tracked allocation" mechanism here because
3113 * the object is going to be handed off to a different thread.
3114 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003115 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003116 }
3117
3118 if (old_exception.get() != NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003119 ThrowLocation gc_safe_throw_location(old_throw_this_object.get(), old_throw_method.get(),
3120 old_throw_dex_pc);
3121 soa.Self()->SetException(gc_safe_throw_location, old_exception.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003122 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003123}
3124
Elliott Hughesd07986f2011-12-06 18:27:45 -08003125/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003126 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003127 * need to process each, accumulate the replies, and ship the whole thing
3128 * back.
3129 *
3130 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3131 * and includes the chunk type/length, followed by the data.
3132 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003133 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003134 * chunk. If this becomes inconvenient we will need to adapt.
3135 */
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003136bool Dbg::DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003137 Thread* self = Thread::Current();
3138 JNIEnv* env = self->GetJniEnv();
3139
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003140 uint32_t type = request.ReadUnsigned32("type");
3141 uint32_t length = request.ReadUnsigned32("length");
3142
3143 // Create a byte[] corresponding to 'request'.
3144 size_t request_length = request.size();
3145 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003146 if (dataArray.get() == NULL) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003147 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003148 env->ExceptionClear();
3149 return false;
3150 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003151 env->SetByteArrayRegion(dataArray.get(), 0, request_length, reinterpret_cast<const jbyte*>(request.data()));
3152 request.Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003153
3154 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003155 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003156 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003157 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003158 return false;
3159 }
3160
3161 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003162 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3163 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003164 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003165 if (env->ExceptionCheck()) {
3166 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3167 env->ExceptionDescribe();
3168 env->ExceptionClear();
3169 return false;
3170 }
3171
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003172 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003173 return false;
3174 }
3175
3176 /*
3177 * Pull the pieces out of the chunk. We copy the results into a
3178 * newly-allocated buffer that the caller can free. We don't want to
3179 * continue using the Chunk object because nothing has a reference to it.
3180 *
3181 * We could avoid this by returning type/data/offset/length and having
3182 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003183 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003184 * if we have responses for multiple chunks.
3185 *
3186 * So we're pretty much stuck with copying data around multiple times.
3187 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003188 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 -08003189 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003190 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003191 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003192
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003193 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 -07003194 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003195 return false;
3196 }
3197
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003198 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003199 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
3200 if (reply == NULL) {
3201 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3202 return false;
3203 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003204 JDWP::Set4BE(reply + 0, type);
3205 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003206 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003207
3208 *pReplyBuf = reply;
3209 *pReplyLen = length + kChunkHdrLen;
3210
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003211 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003212 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003213}
3214
Elliott Hughesa2155262011-11-16 16:26:58 -08003215void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003216 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003217
3218 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003219 if (self->GetState() != kRunnable) {
3220 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3221 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003222 }
3223
3224 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003225 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003226 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3227 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3228 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003229 if (env->ExceptionCheck()) {
3230 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3231 env->ExceptionDescribe();
3232 env->ExceptionClear();
3233 }
3234}
3235
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003236void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003237 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003238}
3239
3240void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003241 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003242 gDdmThreadNotification = false;
3243}
3244
3245/*
Elliott Hughes82188472011-11-07 18:11:48 -08003246 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003247 *
3248 * Because we broadcast the full set of threads when the notifications are
3249 * first enabled, it's possible for "thread" to be actively executing.
3250 */
Elliott Hughes82188472011-11-07 18:11:48 -08003251void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003252 if (!gDdmThreadNotification) {
3253 return;
3254 }
3255
Elliott Hughes82188472011-11-07 18:11:48 -08003256 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003257 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003258 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003259 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003260 } else {
3261 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003262 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003263 SirtRef<mirror::String> name(soa.Self(), t->GetThreadName(soa));
Elliott Hughes82188472011-11-07 18:11:48 -08003264 size_t char_count = (name.get() != NULL) ? name->GetLength() : 0;
jeffhao725a9572012-11-13 18:20:12 -08003265 const jchar* chars = (name.get() != NULL) ? name->GetCharArray()->GetData() : NULL;
Elliott Hughes82188472011-11-07 18:11:48 -08003266
Elliott Hughes21f32d72011-11-09 17:44:13 -08003267 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003268 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003269 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003270 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3271 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003272 }
3273}
3274
Elliott Hughes47fce012011-10-25 18:37:19 -07003275void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003276 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003277 gDdmThreadNotification = enable;
3278 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003279 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3280 // see a suspension in progress and block until that ends. They then post their own start
3281 // notification.
3282 SuspendVM();
3283 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003284 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003285 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003286 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003287 threads = Runtime::Current()->GetThreadList()->GetList();
3288 }
3289 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003290 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003291 for (Thread* thread : threads) {
3292 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003293 }
3294 }
3295 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003296 }
3297}
3298
Elliott Hughesa2155262011-11-16 16:26:58 -08003299void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003300 if (IsDebuggerActive()) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07003301 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08003302 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08003303 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003304 }
Elliott Hughes82188472011-11-07 18:11:48 -08003305 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003306}
3307
3308void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003309 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003310}
3311
3312void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003313 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003314}
3315
Elliott Hughes82188472011-11-07 18:11:48 -08003316void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003317 CHECK(buf != NULL);
3318 iovec vec[1];
3319 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3320 vec[0].iov_len = byte_count;
3321 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003322}
3323
Elliott Hughes21f32d72011-11-09 17:44:13 -08003324void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3325 DdmSendChunk(type, bytes.size(), &bytes[0]);
3326}
3327
Brian Carlstromf5293522013-07-19 00:24:00 -07003328void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003329 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003330 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003331 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003332 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003333 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003334}
3335
Elliott Hughes767a1472011-10-26 18:49:02 -07003336int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3337 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003338 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003339 return true;
3340 }
3341
3342 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3343 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3344 return false;
3345 }
3346
3347 gDdmHpifWhen = when;
3348 return true;
3349}
3350
3351bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3352 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3353 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3354 return false;
3355 }
3356
3357 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3358 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3359 return false;
3360 }
3361
3362 if (native) {
3363 gDdmNhsgWhen = when;
3364 gDdmNhsgWhat = what;
3365 } else {
3366 gDdmHpsgWhen = when;
3367 gDdmHpsgWhat = what;
3368 }
3369 return true;
3370}
3371
Elliott Hughes7162ad92011-10-27 14:08:42 -07003372void Dbg::DdmSendHeapInfo(HpifWhen reason) {
3373 // If there's a one-shot 'when', reset it.
3374 if (reason == gDdmHpifWhen) {
3375 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
3376 gDdmHpifWhen = HPIF_WHEN_NEVER;
3377 }
3378 }
3379
3380 /*
3381 * Chunk HPIF (client --> server)
3382 *
3383 * Heap Info. General information about the heap,
3384 * suitable for a summary display.
3385 *
3386 * [u4]: number of heaps
3387 *
3388 * For each heap:
3389 * [u4]: heap ID
3390 * [u8]: timestamp in ms since Unix epoch
3391 * [u1]: capture reason (same as 'when' value from server)
3392 * [u4]: max heap size in bytes (-Xmx)
3393 * [u4]: current heap size in bytes
3394 * [u4]: current number of bytes allocated
3395 * [u4]: current number of objects allocated
3396 */
3397 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07003398 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08003399 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003400 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003401 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08003402 JDWP::Append8BE(bytes, MilliTime());
3403 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003404 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
3405 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003406 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
3407 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08003408 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
3409 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07003410}
3411
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003412enum HpsgSolidity {
3413 SOLIDITY_FREE = 0,
3414 SOLIDITY_HARD = 1,
3415 SOLIDITY_SOFT = 2,
3416 SOLIDITY_WEAK = 3,
3417 SOLIDITY_PHANTOM = 4,
3418 SOLIDITY_FINALIZABLE = 5,
3419 SOLIDITY_SWEEP = 6,
3420};
3421
3422enum HpsgKind {
3423 KIND_OBJECT = 0,
3424 KIND_CLASS_OBJECT = 1,
3425 KIND_ARRAY_1 = 2,
3426 KIND_ARRAY_2 = 3,
3427 KIND_ARRAY_4 = 4,
3428 KIND_ARRAY_8 = 5,
3429 KIND_UNKNOWN = 6,
3430 KIND_NATIVE = 7,
3431};
3432
3433#define HPSG_PARTIAL (1<<7)
3434#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
3435
Ian Rogers30fab402012-01-23 15:43:46 -08003436class HeapChunkContext {
3437 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003438 // Maximum chunk size. Obtain this from the formula:
3439 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
3440 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08003441 : buf_(16384 - 16),
3442 type_(0),
3443 merge_(merge) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003444 Reset();
3445 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08003446 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003447 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08003448 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003449 }
3450 }
3451
3452 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08003453 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003454 Flush();
3455 }
3456 }
3457
3458 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08003459 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003460 return;
3461 }
3462
3463 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003464 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
3465 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003466
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003467 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
3468 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003469 // [u4]: length of piece, in allocation units
3470 // 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 -08003471 pieceLenField_ = p_;
3472 JDWP::Write4BE(&p_, 0x55555555);
3473 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003474 }
3475
Ian Rogersb726dcb2012-09-05 08:57:23 -07003476 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd636b062013-01-18 17:51:18 -08003477 if (pieceLenField_ == NULL) {
3478 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
3479 CHECK(needHeader_);
3480 return;
3481 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003482 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08003483 CHECK_LE(&buf_[0], pieceLenField_);
3484 CHECK_LE(pieceLenField_, p_);
3485 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003486
Ian Rogers30fab402012-01-23 15:43:46 -08003487 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003488 Reset();
3489 }
3490
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003491 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003492 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3493 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003494 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08003495 }
3496
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003497 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08003498 enum { ALLOCATION_UNIT_SIZE = 8 };
3499
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003500 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08003501 p_ = &buf_[0];
Ian Rogers15bf2d32012-08-28 17:33:04 -07003502 startOfNextMemoryChunk_ = NULL;
Ian Rogers30fab402012-01-23 15:43:46 -08003503 totalAllocationUnits_ = 0;
3504 needHeader_ = true;
3505 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003506 }
3507
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003508 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003509 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3510 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003511 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
3512 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07003513 if (used_bytes == 0) {
3514 if (start == NULL) {
3515 // Reset for start of new heap.
3516 startOfNextMemoryChunk_ = NULL;
3517 Flush();
3518 }
3519 // Only process in use memory so that free region information
3520 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08003521 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08003522 }
3523
Ian Rogers15bf2d32012-08-28 17:33:04 -07003524 /* If we're looking at the native heap, we'll just return
3525 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
3526 */
3527 bool native = type_ == CHUNK_TYPE("NHSG");
3528
3529 if (startOfNextMemoryChunk_ != NULL) {
3530 // Transmit any pending free memory. Native free memory of
3531 // over kMaxFreeLen could be because of the use of mmaps, so
3532 // don't report. If not free memory then start a new segment.
3533 bool flush = true;
3534 if (start > startOfNextMemoryChunk_) {
3535 const size_t kMaxFreeLen = 2 * kPageSize;
3536 void* freeStart = startOfNextMemoryChunk_;
3537 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07003538 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07003539 if (!native || freeLen < kMaxFreeLen) {
3540 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
3541 flush = false;
3542 }
3543 }
3544 if (flush) {
3545 startOfNextMemoryChunk_ = NULL;
3546 Flush();
3547 }
3548 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08003549 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08003550
3551 // Determine the type of this chunk.
3552 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
3553 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003554 uint8_t state = ExamineObject(obj, native);
3555 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
3556 // allocation then the first sizeof(size_t) may belong to it.
3557 const size_t dlMallocOverhead = sizeof(size_t);
3558 AppendChunk(state, start, used_bytes + dlMallocOverhead);
Brian Carlstrom2d888622013-07-18 17:02:00 -07003559 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + dlMallocOverhead;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003560 }
Elliott Hughesa2155262011-11-16 16:26:58 -08003561
Ian Rogers15bf2d32012-08-28 17:33:04 -07003562 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003563 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003564 // Make sure there's enough room left in the buffer.
3565 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
3566 // 17 bytes for any header.
3567 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
3568 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3569 if (bytesLeft < needed) {
3570 Flush();
3571 }
3572
3573 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3574 if (bytesLeft < needed) {
3575 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
3576 << needed << " bytes)";
3577 return;
3578 }
3579 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08003580 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003581 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
3582 totalAllocationUnits_ += length;
3583 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08003584 *p_++ = state | HPSG_PARTIAL;
3585 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07003586 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08003587 }
Ian Rogers30fab402012-01-23 15:43:46 -08003588 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003589 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003590 }
3591
Ian Rogersef7d42f2014-01-06 12:55:46 -08003592 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
3593 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003594 if (o == NULL) {
3595 return HPSG_STATE(SOLIDITY_FREE, 0);
3596 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003597
Elliott Hughesa2155262011-11-16 16:26:58 -08003598 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003599
Elliott Hughesa2155262011-11-16 16:26:58 -08003600 // If we're looking at the native heap, we'll just return
3601 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003602 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003603 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
3604 }
3605
Ian Rogers5bfa60f2012-09-02 21:17:56 -07003606 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003607 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003608 }
3609
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003610 mirror::Class* c = o->GetClass();
Elliott Hughesa2155262011-11-16 16:26:58 -08003611 if (c == NULL) {
3612 // The object was probably just created but hasn't been initialized yet.
3613 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3614 }
3615
Mathieu Chartier590fee92013-09-13 13:46:47 -07003616 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003617 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08003618 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
3619 }
3620
3621 if (c->IsClassClass()) {
3622 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
3623 }
3624
3625 if (c->IsArrayClass()) {
3626 if (o->IsObjectArray()) {
3627 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3628 }
3629 switch (c->GetComponentSize()) {
3630 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
3631 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
3632 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3633 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
3634 }
3635 }
3636
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003637 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3638 }
3639
Ian Rogers30fab402012-01-23 15:43:46 -08003640 std::vector<uint8_t> buf_;
3641 uint8_t* p_;
3642 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003643 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08003644 size_t totalAllocationUnits_;
3645 uint32_t type_;
3646 bool merge_;
3647 bool needHeader_;
3648
Elliott Hughesa2155262011-11-16 16:26:58 -08003649 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
3650};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003651
3652void Dbg::DdmSendHeapSegments(bool native) {
3653 Dbg::HpsgWhen when;
3654 Dbg::HpsgWhat what;
3655 if (!native) {
3656 when = gDdmHpsgWhen;
3657 what = gDdmHpsgWhat;
3658 } else {
3659 when = gDdmNhsgWhen;
3660 what = gDdmNhsgWhat;
3661 }
3662 if (when == HPSG_WHEN_NEVER) {
3663 return;
3664 }
3665
3666 // Figure out what kind of chunks we'll be sending.
3667 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
3668
3669 // First, send a heap start chunk.
3670 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003671 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003672 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
3673
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003674 Thread* self = Thread::Current();
3675
3676 // To allow the Walk/InspectAll() below to exclusively-lock the
3677 // mutator lock, temporarily release the shared access to the
3678 // mutator lock here by transitioning to the suspended state.
3679 Locks::mutator_lock_->AssertSharedHeld(self);
3680 self->TransitionFromRunnableToSuspended(kSuspended);
3681
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003682 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08003683 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
3684 if (native) {
Ian Rogers1d54e732013-05-02 21:10:01 -07003685 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003686 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07003687 gc::Heap* heap = Runtime::Current()->GetHeap();
3688 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers62d6c772013-02-27 08:32:07 -08003689 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Ian Rogers1d54e732013-05-02 21:10:01 -07003690 typedef std::vector<gc::space::ContinuousSpace*>::const_iterator It;
3691 for (It cur = spaces.begin(), end = spaces.end(); cur != end; ++cur) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003692 if ((*cur)->IsMallocSpace()) {
3693 (*cur)->AsMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07003694 }
3695 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07003696 // Walk the large objects, these are not in the AllocSpace.
3697 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003698 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003699
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003700 // Shared-lock the mutator lock back.
3701 self->TransitionFromSuspendedToRunnable();
3702 Locks::mutator_lock_->AssertSharedHeld(self);
3703
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003704 // Finally, send a heap end chunk.
3705 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07003706}
3707
Elliott Hughesb1a58792013-07-11 18:10:58 -07003708static size_t GetAllocTrackerMax() {
3709#ifdef HAVE_ANDROID_OS
3710 // Check whether there's a system property overriding the number of records.
3711 const char* propertyName = "dalvik.vm.allocTrackerMax";
3712 char allocRecordMaxString[PROPERTY_VALUE_MAX];
3713 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
3714 char* end;
3715 size_t value = strtoul(allocRecordMaxString, &end, 10);
3716 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003717 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3718 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003719 return kDefaultNumAllocRecords;
3720 }
3721 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003722 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3723 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003724 return kDefaultNumAllocRecords;
3725 }
3726 return value;
3727 }
3728#endif
3729 return kDefaultNumAllocRecords;
3730}
3731
Elliott Hughes545a0642011-11-08 19:10:03 -08003732void Dbg::SetAllocTrackingEnabled(bool enabled) {
Ian Rogers719d1a32014-03-06 12:13:39 -08003733 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08003734 if (enabled) {
3735 if (recent_allocation_records_ == NULL) {
Ian Rogers719d1a32014-03-06 12:13:39 -08003736 alloc_record_max_ = GetAllocTrackerMax();
3737 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
Elliott Hughesb1a58792013-07-11 18:10:58 -07003738 << kMaxAllocRecordStackDepth << " frames, taking "
Ian Rogers719d1a32014-03-06 12:13:39 -08003739 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
3740 alloc_record_head_ = alloc_record_count_ = 0;
3741 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
Elliott Hughes545a0642011-11-08 19:10:03 -08003742 CHECK(recent_allocation_records_ != NULL);
3743 }
Ian Rogersfa824272013-11-05 16:12:57 -08003744 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08003745 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08003746 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08003747 delete[] recent_allocation_records_;
3748 recent_allocation_records_ = NULL;
3749 }
3750}
3751
Ian Rogers0399dde2012-06-06 17:09:28 -07003752struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08003753 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003754 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08003755 : StackVisitor(thread, NULL), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08003756
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003757 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3758 // annotalysis.
3759 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08003760 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07003761 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08003762 }
Brian Carlstromea46f952013-07-30 01:26:50 -07003763 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003764 if (!m->IsRuntimeMethod()) {
3765 record->stack[depth].method = m;
3766 record->stack[depth].dex_pc = GetDexPc();
Elliott Hughes530fa002012-03-12 11:44:49 -07003767 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08003768 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003769 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08003770 }
3771
3772 ~AllocRecordStackVisitor() {
3773 // Clear out any unused stack trace elements.
3774 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
3775 record->stack[depth].method = NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -07003776 record->stack[depth].dex_pc = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08003777 }
3778 }
3779
3780 AllocRecord* record;
3781 size_t depth;
3782};
3783
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003784void Dbg::RecordAllocation(mirror::Class* type, size_t byte_count) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003785 Thread* self = Thread::Current();
3786 CHECK(self != NULL);
3787
Ian Rogers719d1a32014-03-06 12:13:39 -08003788 MutexLock mu(self, *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08003789 if (recent_allocation_records_ == NULL) {
3790 return;
3791 }
3792
3793 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08003794 if (++alloc_record_head_ == alloc_record_max_) {
3795 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08003796 }
3797
3798 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08003799 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Elliott Hughes545a0642011-11-08 19:10:03 -08003800 record->type = type;
3801 record->byte_count = byte_count;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003802 record->thin_lock_id = self->GetThreadId();
Elliott Hughes545a0642011-11-08 19:10:03 -08003803
3804 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08003805 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07003806 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08003807
Ian Rogers719d1a32014-03-06 12:13:39 -08003808 if (alloc_record_count_ < alloc_record_max_) {
3809 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003810 }
3811}
3812
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003813// Returns the index of the head element.
3814//
3815// We point at the most-recently-written record, so if gAllocRecordCount is 1
3816// we want to use the current element. Take "head+1" and subtract count
3817// from it.
3818//
3819// We need to handle underflow in our circular buffer, so we add
Elliott Hughesb1a58792013-07-11 18:10:58 -07003820// gAllocRecordMax and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08003821size_t Dbg::HeadIndex() {
3822 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
3823 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003824}
3825
3826void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003827 ScopedObjectAccess soa(Thread::Current());
Ian Rogers719d1a32014-03-06 12:13:39 -08003828 MutexLock mu(soa.Self(), *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08003829 if (recent_allocation_records_ == NULL) {
3830 LOG(INFO) << "Not recording tracked allocations";
3831 return;
3832 }
3833
3834 // "i" is the head of the list. We want to start at the end of the
3835 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003836 size_t i = HeadIndex();
Ian Rogers719d1a32014-03-06 12:13:39 -08003837 size_t count = alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003838
Ian Rogers719d1a32014-03-06 12:13:39 -08003839 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08003840 while (count--) {
3841 AllocRecord* record = &recent_allocation_records_[i];
3842
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003843 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->thin_lock_id, record->byte_count)
Elliott Hughes545a0642011-11-08 19:10:03 -08003844 << PrettyClass(record->type);
3845
3846 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003847 mirror::ArtMethod* m = record->stack[stack_frame].method;
Elliott Hughes545a0642011-11-08 19:10:03 -08003848 if (m == NULL) {
3849 break;
3850 }
3851 LOG(INFO) << " " << PrettyMethod(m) << " line " << record->stack[stack_frame].LineNumber();
3852 }
3853
3854 // pause periodically to help logcat catch up
3855 if ((count % 5) == 0) {
3856 usleep(40000);
3857 }
3858
Ian Rogers719d1a32014-03-06 12:13:39 -08003859 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003860 }
3861}
3862
Mathieu Chartier83c8ee02014-01-28 14:50:23 -08003863void Dbg::UpdateObjectPointers(IsMarkedCallback* visitor, void* arg) {
Ian Rogers719d1a32014-03-06 12:13:39 -08003864 if (recent_allocation_records_ != nullptr) {
3865 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
3866 size_t i = HeadIndex();
3867 size_t count = alloc_record_count_;
3868 while (count--) {
3869 AllocRecord* record = &recent_allocation_records_[i];
3870 DCHECK(record != nullptr);
3871 record->UpdateObjectPointers(visitor, arg);
3872 i = (i + 1) & (alloc_record_max_ - 1);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08003873 }
3874 }
3875 if (gRegistry != nullptr) {
3876 gRegistry->UpdateObjectPointers(visitor, arg);
3877 }
3878}
3879
3880void Dbg::AllowNewObjectRegistryObjects() {
3881 if (gRegistry != nullptr) {
3882 gRegistry->AllowNewObjects();
3883 }
3884}
3885
3886void Dbg::DisallowNewObjectRegistryObjects() {
3887 if (gRegistry != nullptr) {
3888 gRegistry->DisallowNewObjects();
3889 }
3890}
3891
Elliott Hughes545a0642011-11-08 19:10:03 -08003892class StringTable {
3893 public:
3894 StringTable() {
3895 }
3896
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003897 void Add(const char* s) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003898 table_.insert(s);
3899 }
3900
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003901 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07003902 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003903 if (it == table_.end()) {
3904 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
3905 }
3906 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08003907 }
3908
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003909 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08003910 return table_.size();
3911 }
3912
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003913 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07003914 for (const std::string& str : table_) {
3915 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003916 size_t s_len = CountModifiedUtf8Chars(s);
3917 UniquePtr<uint16_t> s_utf16(new uint16_t[s_len]);
3918 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
3919 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08003920 }
3921 }
3922
3923 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003924 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003925 DISALLOW_COPY_AND_ASSIGN(StringTable);
3926};
3927
3928/*
3929 * The data we send to DDMS contains everything we have recorded.
3930 *
3931 * Message header (all values big-endian):
3932 * (1b) message header len (to allow future expansion); includes itself
3933 * (1b) entry header len
3934 * (1b) stack frame len
3935 * (2b) number of entries
3936 * (4b) offset to string table from start of message
3937 * (2b) number of class name strings
3938 * (2b) number of method name strings
3939 * (2b) number of source file name strings
3940 * For each entry:
3941 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08003942 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08003943 * (2b) allocated object's class name index
3944 * (1b) stack depth
3945 * For each stack frame:
3946 * (2b) method's class name
3947 * (2b) method name
3948 * (2b) method source file
3949 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
3950 * (xb) class name strings
3951 * (xb) method name strings
3952 * (xb) source file strings
3953 *
3954 * As with other DDM traffic, strings are sent as a 4-byte length
3955 * followed by UTF-16 data.
3956 *
3957 * We send up 16-bit unsigned indexes into string tables. In theory there
Elliott Hughesb1a58792013-07-11 18:10:58 -07003958 * can be (kMaxAllocRecordStackDepth * gAllocRecordMax) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08003959 * each table, but in practice there should be far fewer.
3960 *
3961 * The chief reason for using a string table here is to keep the size of
3962 * the DDMS message to a minimum. This is partly to make the protocol
3963 * efficient, but also because we have to form the whole thing up all at
3964 * once in a memory buffer.
3965 *
3966 * We use separate string tables for class names, method names, and source
3967 * files to keep the indexes small. There will generally be no overlap
3968 * between the contents of these tables.
3969 */
3970jbyteArray Dbg::GetRecentAllocations() {
3971 if (false) {
3972 DumpRecentAllocations();
3973 }
3974
Ian Rogers50b35e22012-10-04 10:09:15 -07003975 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08003976 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003977 {
Ian Rogers719d1a32014-03-06 12:13:39 -08003978 MutexLock mu(self, *alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003979 //
3980 // Part 1: generate string tables.
3981 //
3982 StringTable class_names;
3983 StringTable method_names;
3984 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08003985
Ian Rogers719d1a32014-03-06 12:13:39 -08003986 int count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003987 int idx = HeadIndex();
3988 while (count--) {
3989 AllocRecord* record = &recent_allocation_records_[idx];
Elliott Hughes545a0642011-11-08 19:10:03 -08003990
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003991 class_names.Add(ClassHelper(record->type).GetDescriptor());
Elliott Hughes545a0642011-11-08 19:10:03 -08003992
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003993 MethodHelper mh;
3994 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07003995 mirror::ArtMethod* m = record->stack[i].method;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07003996 if (m != NULL) {
3997 mh.ChangeMethod(m);
3998 class_names.Add(mh.GetDeclaringClassDescriptor());
3999 method_names.Add(mh.GetName());
4000 filenames.Add(mh.GetDeclaringClassSourceFile());
4001 }
4002 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004003
Ian Rogers719d1a32014-03-06 12:13:39 -08004004 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004005 }
4006
Ian Rogers719d1a32014-03-06 12:13:39 -08004007 LOG(INFO) << "allocation records: " << alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004008
4009 //
4010 // Part 2: Generate the output and store it in the buffer.
4011 //
4012
4013 // (1b) message header len (to allow future expansion); includes itself
4014 // (1b) entry header len
4015 // (1b) stack frame len
4016 const int kMessageHeaderLen = 15;
4017 const int kEntryHeaderLen = 9;
4018 const int kStackFrameLen = 8;
4019 JDWP::Append1BE(bytes, kMessageHeaderLen);
4020 JDWP::Append1BE(bytes, kEntryHeaderLen);
4021 JDWP::Append1BE(bytes, kStackFrameLen);
4022
4023 // (2b) number of entries
4024 // (4b) offset to string table from start of message
4025 // (2b) number of class name strings
4026 // (2b) number of method name strings
4027 // (2b) number of source file name strings
Ian Rogers719d1a32014-03-06 12:13:39 -08004028 JDWP::Append2BE(bytes, alloc_record_count_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004029 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004030 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004031 JDWP::Append2BE(bytes, class_names.Size());
4032 JDWP::Append2BE(bytes, method_names.Size());
4033 JDWP::Append2BE(bytes, filenames.Size());
4034
Ian Rogers719d1a32014-03-06 12:13:39 -08004035 count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004036 idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004037 while (count--) {
4038 // For each entry:
4039 // (4b) total allocation size
4040 // (2b) thread id
4041 // (2b) allocated object's class name index
4042 // (1b) stack depth
4043 AllocRecord* record = &recent_allocation_records_[idx];
4044 size_t stack_depth = record->GetDepth();
Mathieu Chartier590fee92013-09-13 13:46:47 -07004045 ClassHelper kh(record->type);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004046 size_t allocated_object_class_name_index = class_names.IndexOf(kh.GetDescriptor());
4047 JDWP::Append4BE(bytes, record->byte_count);
4048 JDWP::Append2BE(bytes, record->thin_lock_id);
4049 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4050 JDWP::Append1BE(bytes, stack_depth);
4051
4052 MethodHelper mh;
4053 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4054 // For each stack frame:
4055 // (2b) method's class name
4056 // (2b) method name
4057 // (2b) method source file
4058 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
4059 mh.ChangeMethod(record->stack[stack_frame].method);
4060 size_t class_name_index = class_names.IndexOf(mh.GetDeclaringClassDescriptor());
4061 size_t method_name_index = method_names.IndexOf(mh.GetName());
4062 size_t file_name_index = filenames.IndexOf(mh.GetDeclaringClassSourceFile());
4063 JDWP::Append2BE(bytes, class_name_index);
4064 JDWP::Append2BE(bytes, method_name_index);
4065 JDWP::Append2BE(bytes, file_name_index);
4066 JDWP::Append2BE(bytes, record->stack[stack_frame].LineNumber());
4067 }
4068
Ian Rogers719d1a32014-03-06 12:13:39 -08004069 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004070 }
4071
4072 // (xb) class name strings
4073 // (xb) method name strings
4074 // (xb) source file strings
4075 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4076 class_names.WriteTo(bytes);
4077 method_names.WriteTo(bytes);
4078 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004079 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004080 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004081 jbyteArray result = env->NewByteArray(bytes.size());
4082 if (result != NULL) {
4083 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4084 }
4085 return result;
4086}
4087
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004088} // namespace art