blob: 2872a02e16a3a56f9180cbf7c6f45ea614d7e438 [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"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010041#include "quick/inline_method_analyser.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070042#include "reflection.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070043#include "safe_map.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080044#include "scoped_thread_state_change.h"
Elliott Hughes6a5bd492011-10-28 14:33:57 -070045#include "ScopedLocalRef.h"
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -070046#include "ScopedPrimitiveArray.h"
Ian Rogers1f539342012-10-03 21:09:42 -070047#include "sirt_ref.h"
Elliott Hughes47fce012011-10-25 18:37:19 -070048#include "stack_indirect_reference_table.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070049#include "thread_list.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080050#include "throw_location.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051#include "utf.h"
Sebastien Hertza76a6d42014-03-20 16:40:17 +010052#include "verifier/method_verifier-inl.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070053#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070054
Brian Carlstrom3d92d522013-07-12 09:03:08 -070055#ifdef HAVE_ANDROID_OS
56#include "cutils/properties.h"
57#endif
58
Elliott Hughes872d4ec2011-10-21 17:07:15 -070059namespace art {
60
Brian Carlstrom7934ac22013-07-26 10:54:15 -070061static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
62static const size_t kDefaultNumAllocRecords = 64*1024; // Must be a power of 2.
Elliott Hughes475fc232011-10-25 15:00:35 -070063
Elliott Hughes545a0642011-11-08 19:10:03 -080064struct AllocRecordStackTraceElement {
Brian Carlstromea46f952013-07-30 01:26:50 -070065 mirror::ArtMethod* method;
Ian Rogers0399dde2012-06-06 17:09:28 -070066 uint32_t dex_pc;
Elliott Hughes545a0642011-11-08 19:10:03 -080067
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080068 AllocRecordStackTraceElement() : method(nullptr), dex_pc(0) {
69 }
70
Ian Rogersb726dcb2012-09-05 08:57:23 -070071 int32_t LineNumber() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -070072 return MethodHelper(method).GetLineNumFromDexPC(dex_pc);
Elliott Hughes545a0642011-11-08 19:10:03 -080073 }
74};
75
76struct AllocRecord {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080077 mirror::Class* type;
Elliott Hughes545a0642011-11-08 19:10:03 -080078 size_t byte_count;
79 uint16_t thin_lock_id;
Brian Carlstrom7934ac22013-07-26 10:54:15 -070080 AllocRecordStackTraceElement stack[kMaxAllocRecordStackDepth]; // Unused entries have NULL method.
Elliott Hughes545a0642011-11-08 19:10:03 -080081
82 size_t GetDepth() {
83 size_t depth = 0;
84 while (depth < kMaxAllocRecordStackDepth && stack[depth].method != NULL) {
85 ++depth;
86 }
87 return depth;
88 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080089
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080090 void UpdateObjectPointers(IsMarkedCallback* callback, void* arg)
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080091 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
92 if (type != nullptr) {
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080093 type = down_cast<mirror::Class*>(callback(type, arg));
Mathieu Chartier412c7fc2014-02-07 12:18:39 -080094 }
95 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
96 mirror::ArtMethod*& m = stack[stack_frame].method;
97 if (m == nullptr) {
98 break;
99 }
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800100 m = down_cast<mirror::ArtMethod*>(callback(m, arg));
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800101 }
102 }
Elliott Hughes545a0642011-11-08 19:10:03 -0800103};
104
Elliott Hughes86964332012-02-15 19:37:42 -0800105struct Breakpoint {
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100106 // The location of this breakpoint.
Brian Carlstromea46f952013-07-30 01:26:50 -0700107 mirror::ArtMethod* method;
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800108 uint32_t dex_pc;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100109
110 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
111 bool need_full_deoptimization;
112
113 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc, bool need_full_deoptimization)
114 : method(method), dex_pc(dex_pc), need_full_deoptimization(need_full_deoptimization) {}
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700115
116 void VisitRoots(RootCallback* callback, void* arg) {
117 if (method != nullptr) {
118 callback(reinterpret_cast<mirror::Object**>(&method), arg, 0, kRootDebugger);
119 }
120 }
Elliott Hughes86964332012-02-15 19:37:42 -0800121};
122
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700123static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700124 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes229feb72012-02-23 13:33:29 -0800125 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.method).c_str(), rhs.dex_pc);
Elliott Hughes86964332012-02-15 19:37:42 -0800126 return os;
127}
128
Ian Rogers62d6c772013-02-27 08:32:07 -0800129class DebugInstrumentationListener : public instrumentation::InstrumentationListener {
130 public:
131 DebugInstrumentationListener() {}
132 virtual ~DebugInstrumentationListener() {}
133
134 virtual void MethodEntered(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800135 mirror::ArtMethod* method, uint32_t dex_pc)
Ian Rogers62d6c772013-02-27 08:32:07 -0800136 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
137 if (method->IsNative()) {
138 // TODO: post location events is a suspension point and native method entry stubs aren't.
139 return;
140 }
Jeff Hao579b0242013-11-18 13:16:49 -0800141 Dbg::PostLocationEvent(method, 0, this_object, Dbg::kMethodEntry, nullptr);
Ian Rogers62d6c772013-02-27 08:32:07 -0800142 }
143
144 virtual void MethodExited(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800145 mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800146 uint32_t dex_pc, const JValue& return_value)
147 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800148 if (method->IsNative()) {
149 // TODO: post location events is a suspension point and native method entry stubs aren't.
150 return;
151 }
Jeff Hao579b0242013-11-18 13:16:49 -0800152 Dbg::PostLocationEvent(method, dex_pc, this_object, Dbg::kMethodExit, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800153 }
154
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100155 virtual void MethodUnwind(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800156 mirror::ArtMethod* method, uint32_t dex_pc)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100157 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800158 // We're not recorded to listen to this kind of event, so complain.
159 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100160 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800161 }
162
163 virtual void DexPcMoved(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800164 mirror::ArtMethod* method, uint32_t new_dex_pc)
Ian Rogers62d6c772013-02-27 08:32:07 -0800165 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
166 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc);
167 }
168
169 virtual void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -0700170 mirror::ArtMethod* catch_method, uint32_t catch_dex_pc,
Ian Rogers62d6c772013-02-27 08:32:07 -0800171 mirror::Throwable* exception_object)
172 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
173 Dbg::PostException(thread, throw_location, catch_method, catch_dex_pc, exception_object);
174 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800175} gDebugInstrumentationListener;
176
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700177// JDWP is allowed unless the Zygote forbids it.
178static bool gJdwpAllowed = true;
179
Elliott Hughesc0f09332012-03-26 13:27:06 -0700180// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700181static bool gJdwpConfigured = false;
182
Elliott Hughesc0f09332012-03-26 13:27:06 -0700183// Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.)
Elliott Hughes376a7a02011-10-24 18:35:55 -0700184static JDWP::JdwpOptions gJdwpOptions;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700185
186// Runtime JDWP state.
187static JDWP::JdwpState* gJdwpState = NULL;
188static bool gDebuggerConnected; // debugger or DDMS is connected.
189static bool gDebuggerActive; // debugger is making requests.
Elliott Hughes86964332012-02-15 19:37:42 -0800190static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700191
Elliott Hughes47fce012011-10-25 18:37:19 -0700192static bool gDdmThreadNotification = false;
193
Elliott Hughes767a1472011-10-26 18:49:02 -0700194// DDMS GC-related settings.
195static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
196static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
197static Dbg::HpsgWhat gDdmHpsgWhat;
198static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
199static Dbg::HpsgWhat gDdmNhsgWhat;
200
Ian Rogers719d1a32014-03-06 12:13:39 -0800201static ObjectRegistry* gRegistry = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700202
Elliott Hughes545a0642011-11-08 19:10:03 -0800203// Recent allocation tracking.
Ian Rogers719d1a32014-03-06 12:13:39 -0800204Mutex* Dbg::alloc_tracker_lock_ = nullptr;
205AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
206size_t Dbg::alloc_record_max_ = 0;
207size_t Dbg::alloc_record_head_ = 0;
208size_t Dbg::alloc_record_count_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -0800209
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100210// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100211Mutex* Dbg::deoptimization_lock_ = nullptr;
212std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
213size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100214
215// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800216static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800217
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700218void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
219 RootType root_type) {
220 if (receiver != nullptr) {
221 callback(&receiver, arg, tid, root_type);
222 }
223 if (thread != nullptr) {
224 callback(&thread, arg, tid, root_type);
225 }
226 if (klass != nullptr) {
227 callback(reinterpret_cast<mirror::Object**>(&klass), arg, tid, root_type);
228 }
229 if (method != nullptr) {
230 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
231 }
232}
233
234void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, uint32_t tid,
235 RootType root_type) {
236 if (method != nullptr) {
237 callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type);
238 }
239}
240
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100241void DeoptimizationRequest::VisitRoots(RootCallback* callback, void* arg) {
242 if (method != nullptr) {
243 callback(reinterpret_cast<mirror::Object**>(&method), arg, 0, kRootDebugger);
244 }
245}
246
Brian Carlstromea46f952013-07-30 01:26:50 -0700247static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc)
jeffhao09bfc6a2012-12-11 18:11:43 -0800248 LOCKS_EXCLUDED(Locks::breakpoint_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700249 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao09bfc6a2012-12-11 18:11:43 -0800250 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100251 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Elliott Hughesa656a0f2012-02-21 18:03:44 -0800252 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == dex_pc) {
Elliott Hughes86964332012-02-15 19:37:42 -0800253 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
254 return true;
255 }
256 }
257 return false;
258}
259
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100260static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
261 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800262 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
263 // A thread may be suspended for GC; in this code, we really want to know whether
264 // there's a debugger suspension active.
265 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
266}
267
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800268static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700269 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800270 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800271 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800272 status = JDWP::ERR_INVALID_OBJECT;
273 return NULL;
274 }
275 if (!o->IsArrayInstance()) {
276 status = JDWP::ERR_INVALID_ARRAY;
277 return NULL;
278 }
279 status = JDWP::ERR_NONE;
280 return o->AsArray();
281}
282
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800283static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700284 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800285 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800286 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800287 status = JDWP::ERR_INVALID_OBJECT;
288 return NULL;
289 }
290 if (!o->IsClass()) {
291 status = JDWP::ERR_INVALID_CLASS;
292 return NULL;
293 }
294 status = JDWP::ERR_NONE;
295 return o->AsClass();
296}
297
Elliott Hughes221229c2013-01-08 18:17:50 -0800298static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thread*& thread)
jeffhaoa77f0f62012-12-05 17:19:31 -0800299 EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700300 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_)
301 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800302 mirror::Object* thread_peer = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800303 if (thread_peer == NULL || thread_peer == ObjectRegistry::kInvalidObject) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800304 // This isn't even an object.
305 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes436e3722012-02-17 20:01:47 -0800306 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800307
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800308 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800309 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
310 // This isn't a thread.
311 return JDWP::ERR_INVALID_THREAD;
312 }
313
314 thread = Thread::FromManagedThread(soa, thread_peer);
315 if (thread == NULL) {
316 // This is a java.lang.Thread without a Thread*. Must be a zombie.
317 return JDWP::ERR_THREAD_NOT_ALIVE;
318 }
319 return JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800320}
321
Elliott Hughes24437992011-11-30 14:49:33 -0800322static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
323 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
324 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
325 return static_cast<JDWP::JdwpTag>(descriptor[0]);
326}
327
Ian Rogers98379392014-02-24 16:53:16 -0800328static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700329 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes86b00102011-12-05 17:54:26 -0800330 CHECK(c != NULL);
Elliott Hughes24437992011-11-30 14:49:33 -0800331 if (c->IsArrayClass()) {
332 return JDWP::JT_ARRAY;
333 }
Elliott Hughes24437992011-11-30 14:49:33 -0800334 if (c->IsStringClass()) {
335 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800336 }
Ian Rogers98379392014-02-24 16:53:16 -0800337 if (c->IsClassClass()) {
338 return JDWP::JT_CLASS_OBJECT;
339 }
340 {
341 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
342 if (thread_class->IsAssignableFrom(c)) {
343 return JDWP::JT_THREAD;
344 }
345 }
346 {
347 mirror::Class* thread_group_class =
348 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
349 if (thread_group_class->IsAssignableFrom(c)) {
350 return JDWP::JT_THREAD_GROUP;
351 }
352 }
353 {
354 mirror::Class* class_loader_class =
355 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
356 if (class_loader_class->IsAssignableFrom(c)) {
357 return JDWP::JT_CLASS_LOADER;
358 }
359 }
360 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800361}
362
363/*
364 * Objects declared to hold Object might actually hold a more specific
365 * type. The debugger may take a special interest in these (e.g. it
366 * wants to display the contents of Strings), so we want to return an
367 * appropriate tag.
368 *
369 * Null objects are tagged JT_OBJECT.
370 */
Ian Rogers98379392014-02-24 16:53:16 -0800371static JDWP::JdwpTag TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700372 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers98379392014-02-24 16:53:16 -0800373 return (o == NULL) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800374}
375
376static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
377 switch (tag) {
378 case JDWP::JT_BOOLEAN:
379 case JDWP::JT_BYTE:
380 case JDWP::JT_CHAR:
381 case JDWP::JT_FLOAT:
382 case JDWP::JT_DOUBLE:
383 case JDWP::JT_INT:
384 case JDWP::JT_LONG:
385 case JDWP::JT_SHORT:
386 case JDWP::JT_VOID:
387 return true;
388 default:
389 return false;
390 }
391}
392
Elliott Hughes3bb81562011-10-21 18:52:59 -0700393/*
394 * Handle one of the JDWP name/value pairs.
395 *
396 * JDWP options are:
397 * help: if specified, show help message and bail
398 * transport: may be dt_socket or dt_shmem
399 * address: for dt_socket, "host:port", or just "port" when listening
400 * server: if "y", wait for debugger to attach; if "n", attach to debugger
401 * timeout: how long to wait for debugger to connect / listen
402 *
403 * Useful with server=n (these aren't supported yet):
404 * onthrow=<exception-name>: connect to debugger when exception thrown
405 * onuncaught=y|n: connect to debugger when uncaught exception thrown
406 * launch=<command-line>: launch the debugger itself
407 *
408 * The "transport" option is required, as is "address" if server=n.
409 */
410static bool ParseJdwpOption(const std::string& name, const std::string& value) {
411 if (name == "transport") {
412 if (value == "dt_socket") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700413 gJdwpOptions.transport = JDWP::kJdwpTransportSocket;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700414 } else if (value == "dt_android_adb") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700415 gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700416 } else {
417 LOG(ERROR) << "JDWP transport not supported: " << value;
418 return false;
419 }
420 } else if (name == "server") {
421 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700422 gJdwpOptions.server = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700423 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700424 gJdwpOptions.server = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700425 } else {
426 LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'";
427 return false;
428 }
429 } else if (name == "suspend") {
430 if (value == "n") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700431 gJdwpOptions.suspend = false;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700432 } else if (value == "y") {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700433 gJdwpOptions.suspend = true;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700434 } else {
435 LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'";
436 return false;
437 }
438 } else if (name == "address") {
439 /* this is either <port> or <host>:<port> */
440 std::string port_string;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700441 gJdwpOptions.host.clear();
Elliott Hughes3bb81562011-10-21 18:52:59 -0700442 std::string::size_type colon = value.find(':');
443 if (colon != std::string::npos) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700444 gJdwpOptions.host = value.substr(0, colon);
Elliott Hughes3bb81562011-10-21 18:52:59 -0700445 port_string = value.substr(colon + 1);
446 } else {
447 port_string = value;
448 }
449 if (port_string.empty()) {
450 LOG(ERROR) << "JDWP address missing port: " << value;
451 return false;
452 }
453 char* end;
Elliott Hughesba8eee12012-01-24 20:25:24 -0800454 uint64_t port = strtoul(port_string.c_str(), &end, 10);
455 if (*end != '\0' || port > 0xffff) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700456 LOG(ERROR) << "JDWP address has junk in port field: " << value;
457 return false;
458 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700459 gJdwpOptions.port = port;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700460 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") {
461 /* valid but unsupported */
462 LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'";
463 } else {
464 LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'";
465 }
466
467 return true;
468}
469
470/*
471 * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
472 * "transport=dt_socket,address=8000,server=y,suspend=n"
473 */
474bool Dbg::ParseJdwpOptions(const std::string& options) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800475 VLOG(jdwp) << "ParseJdwpOptions: " << options;
Elliott Hughes47fce012011-10-25 18:37:19 -0700476
Elliott Hughes3bb81562011-10-21 18:52:59 -0700477 std::vector<std::string> pairs;
478 Split(options, ',', pairs);
479
480 for (size_t i = 0; i < pairs.size(); ++i) {
481 std::string::size_type equals = pairs[i].find('=');
482 if (equals == std::string::npos) {
483 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
484 return false;
485 }
486 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
487 }
488
Elliott Hughes376a7a02011-10-24 18:35:55 -0700489 if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700490 LOG(ERROR) << "Must specify JDWP transport: " << options;
491 }
Elliott Hughes376a7a02011-10-24 18:35:55 -0700492 if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700493 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
494 return false;
495 }
496
497 gJdwpConfigured = true;
498 return true;
499}
500
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700501void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700502 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700503 // No JDWP for you!
504 return;
505 }
506
Ian Rogers719d1a32014-03-06 12:13:39 -0800507 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700508 gRegistry = new ObjectRegistry;
509
Ian Rogers719d1a32014-03-06 12:13:39 -0800510 alloc_tracker_lock_ = new Mutex("AllocTracker lock");
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100511 deoptimization_lock_ = new Mutex("deoptimization lock", kDeoptimizationLock);
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700512 // Init JDWP if the debugger is enabled. This may connect out to a
513 // debugger, passively listen for a debugger, or block waiting for a
514 // debugger.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700515 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
516 if (gJdwpState == NULL) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800517 // We probably failed because some other process has the port already, which means that
518 // if we don't abort the user is likely to think they're talking to us when they're actually
519 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800520 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700521 }
522
523 // If a debugger has already attached, send the "welcome" message.
524 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700525 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700526 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes376a7a02011-10-24 18:35:55 -0700527 if (!gJdwpState->PostVMStart()) {
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800528 LOG(WARNING) << "Failed to post 'start' message to debugger";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700529 }
530 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700531}
532
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700533void Dbg::VisitRoots(RootCallback* callback, void* arg) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100534 {
535 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
536 for (Breakpoint& bp : gBreakpoints) {
537 bp.VisitRoots(callback, arg);
538 }
539 }
540 if (deoptimization_lock_ != nullptr) { // only true if the debugger is started.
541 MutexLock mu(Thread::Current(), *deoptimization_lock_);
542 for (DeoptimizationRequest& req : deoptimization_requests_) {
543 req.VisitRoots(callback, arg);
544 }
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700545 }
546}
547
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700548void Dbg::StopJdwp() {
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100549 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
550 Disposed();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700551 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800552 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700553 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800554 gRegistry = nullptr;
555 delete alloc_tracker_lock_;
556 alloc_tracker_lock_ = nullptr;
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100557 delete deoptimization_lock_;
558 deoptimization_lock_ = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700559}
560
Elliott Hughes767a1472011-10-26 18:49:02 -0700561void Dbg::GcDidFinish() {
562 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700563 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes81ff3182012-03-23 20:35:56 -0700564 LOG(DEBUG) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700565 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700566 }
567 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700568 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes81ff3182012-03-23 20:35:56 -0700569 LOG(DEBUG) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700570 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700571 }
572 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700573 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes767a1472011-10-26 18:49:02 -0700574 LOG(DEBUG) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700575 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700576 }
577}
578
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700579void Dbg::SetJdwpAllowed(bool allowed) {
580 gJdwpAllowed = allowed;
581}
582
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700583DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700584 return Thread::Current()->GetInvokeReq();
585}
586
587Thread* Dbg::GetDebugThread() {
588 return (gJdwpState != NULL) ? gJdwpState->GetDebugThread() : NULL;
589}
590
591void Dbg::ClearWaitForEventThread() {
592 gJdwpState->ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700593}
594
595void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700596 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800597 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700598 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800599 gDisposed = false;
600}
601
602void Dbg::Disposed() {
603 gDisposed = true;
604}
605
606bool Dbg::IsDisposed() {
607 return gDisposed;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700608}
609
Elliott Hughesa2155262011-11-16 16:26:58 -0800610void Dbg::GoActive() {
611 // Enable all debugging features, including scans for breakpoints.
612 // This is a no-op if we're already active.
613 // Only called from the JDWP handler thread.
614 if (gDebuggerActive) {
615 return;
616 }
617
Elliott Hughesc0f09332012-03-26 13:27:06 -0700618 {
619 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
jeffhao09bfc6a2012-12-11 18:11:43 -0800620 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700621 CHECK_EQ(gBreakpoints.size(), 0U);
622 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800623
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100624 {
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100625 MutexLock mu(Thread::Current(), *deoptimization_lock_);
626 CHECK_EQ(deoptimization_requests_.size(), 0U);
627 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100628 }
629
Ian Rogers62d6c772013-02-27 08:32:07 -0800630 Runtime* runtime = Runtime::Current();
631 runtime->GetThreadList()->SuspendAll();
632 Thread* self = Thread::Current();
633 ThreadState old_state = self->SetStateUnsafe(kRunnable);
634 CHECK_NE(old_state, kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100635 runtime->GetInstrumentation()->EnableDeoptimization();
Ian Rogers62d6c772013-02-27 08:32:07 -0800636 runtime->GetInstrumentation()->AddListener(&gDebugInstrumentationListener,
637 instrumentation::Instrumentation::kMethodEntered |
638 instrumentation::Instrumentation::kMethodExited |
Jeff Hao14dd5a82013-04-11 10:23:36 -0700639 instrumentation::Instrumentation::kDexPcMoved |
640 instrumentation::Instrumentation::kExceptionCaught);
Elliott Hughesa2155262011-11-16 16:26:58 -0800641 gDebuggerActive = true;
Ian Rogers62d6c772013-02-27 08:32:07 -0800642 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
643 runtime->GetThreadList()->ResumeAll();
644
645 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700646}
647
648void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700649 CHECK(gDebuggerConnected);
650
Elliott Hughesc0f09332012-03-26 13:27:06 -0700651 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700652
Ian Rogers62d6c772013-02-27 08:32:07 -0800653 // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread
654 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
655 // and clear the object registry.
656 Runtime* runtime = Runtime::Current();
657 runtime->GetThreadList()->SuspendAll();
658 Thread* self = Thread::Current();
659 ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100660
661 // Debugger may not be active at this point.
662 if (gDebuggerActive) {
663 {
664 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
665 // This prevents us from having any pending deoptimization request when the debugger attaches
666 // to us again while no event has been requested yet.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100667 MutexLock mu(Thread::Current(), *deoptimization_lock_);
668 deoptimization_requests_.clear();
669 full_deoptimization_event_count_ = 0U;
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100670 }
671 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
672 instrumentation::Instrumentation::kMethodEntered |
673 instrumentation::Instrumentation::kMethodExited |
674 instrumentation::Instrumentation::kDexPcMoved |
675 instrumentation::Instrumentation::kExceptionCaught);
676 runtime->GetInstrumentation()->DisableDeoptimization();
677 gDebuggerActive = false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100678 }
Elliott Hughes234ab152011-10-26 14:02:26 -0700679 gRegistry->Clear();
680 gDebuggerConnected = false;
Ian Rogers62d6c772013-02-27 08:32:07 -0800681 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
682 runtime->GetThreadList()->ResumeAll();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700683}
684
Elliott Hughesc0f09332012-03-26 13:27:06 -0700685bool Dbg::IsDebuggerActive() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700686 return gDebuggerActive;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700687}
688
Elliott Hughesc0f09332012-03-26 13:27:06 -0700689bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700690 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700691}
692
693int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800694 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700695}
696
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700697void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700698 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700699}
700
Elliott Hughes88d63092013-01-09 09:55:54 -0800701std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800702 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800703 if (o == NULL) {
704 return "NULL";
705 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800706 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes88d63092013-01-09 09:55:54 -0800707 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
Elliott Hughes436e3722012-02-17 20:01:47 -0800708 }
709 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700710 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800711 }
Elliott Hughesc308a5d2012-02-16 17:12:06 -0800712 return DescriptorToName(ClassHelper(o->AsClass()).GetDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700713}
714
Elliott Hughes88d63092013-01-09 09:55:54 -0800715JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800716 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800717 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800718 if (c == NULL) {
719 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800720 }
Elliott Hughes88d63092013-01-09 09:55:54 -0800721 class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800722 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800723}
724
Elliott Hughes88d63092013-01-09 09:55:54 -0800725JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800726 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800727 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800728 if (c == NULL) {
729 return status;
730 }
731 if (c->IsInterface()) {
732 // http://code.google.com/p/android/issues/detail?id=20856
Elliott Hughes88d63092013-01-09 09:55:54 -0800733 superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800734 } else {
Elliott Hughes88d63092013-01-09 09:55:54 -0800735 superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800736 }
737 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700738}
739
Elliott Hughes436e3722012-02-17 20:01:47 -0800740JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800741 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800742 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800743 return JDWP::ERR_INVALID_OBJECT;
744 }
745 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
746 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700747}
748
Elliott Hughes436e3722012-02-17 20:01:47 -0800749JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
750 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800751 mirror::Class* c = DecodeClass(id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800752 if (c == NULL) {
753 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800754 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800755
756 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
757
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700758 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
759 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800760 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700761 if ((access_flags & kAccInterface) == 0) {
762 access_flags |= kAccSuper;
763 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800764
765 expandBufAdd4BE(pReply, access_flags);
766
767 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700768}
769
Elliott Hughesf327e072013-01-09 16:01:26 -0800770JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
771 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800772 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800773 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800774 return JDWP::ERR_INVALID_OBJECT;
775 }
776
777 // Ensure all threads are suspended while we read objects' lock words.
778 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100779 CHECK_EQ(self->GetState(), kRunnable);
780 self->TransitionFromRunnableToSuspended(kSuspended);
781 Runtime::Current()->GetThreadList()->SuspendAll();
Elliott Hughesf327e072013-01-09 16:01:26 -0800782
783 MonitorInfo monitor_info(o);
784
Sebastien Hertz54263242014-03-19 18:16:50 +0100785 Runtime::Current()->GetThreadList()->ResumeAll();
786 self->TransitionFromSuspendedToRunnable();
Elliott Hughesf327e072013-01-09 16:01:26 -0800787
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700788 if (monitor_info.owner_ != NULL) {
789 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800790 } else {
791 expandBufAddObjectId(reply, gRegistry->Add(NULL));
792 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700793 expandBufAdd4BE(reply, monitor_info.entry_count_);
794 expandBufAdd4BE(reply, monitor_info.waiters_.size());
795 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
796 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800797 }
798 return JDWP::ERR_NONE;
799}
800
Elliott Hughes734b8c62013-01-11 15:32:45 -0800801JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
802 std::vector<JDWP::ObjectId>& monitors,
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100803 std::vector<uint32_t>& stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800804 ScopedObjectAccessUnchecked soa(Thread::Current());
805 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
806 Thread* thread;
807 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
808 if (error != JDWP::ERR_NONE) {
809 return error;
810 }
811 if (!IsSuspendedForDebugger(soa, thread)) {
812 return JDWP::ERR_THREAD_NOT_SUSPENDED;
813 }
814
815 struct OwnedMonitorVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800816 OwnedMonitorVisitor(Thread* thread, Context* context)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800817 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -0800818 : StackVisitor(thread, context), current_stack_depth(0) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800819
820 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
821 // annotalysis.
822 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
823 if (!GetMethod()->IsRuntimeMethod()) {
824 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800825 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800826 }
827 return true;
828 }
829
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800830 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800831 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800832 visitor->monitors.push_back(owned_monitor);
833 visitor->stack_depths.push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800834 }
835
Elliott Hughes734b8c62013-01-11 15:32:45 -0800836 size_t current_stack_depth;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800837 std::vector<mirror::Object*> monitors;
Elliott Hughes734b8c62013-01-11 15:32:45 -0800838 std::vector<uint32_t> stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800839 };
Ian Rogers7a22fa62013-01-23 12:16:16 -0800840 UniquePtr<Context> context(Context::Create());
841 OwnedMonitorVisitor visitor(thread, context.get());
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800842 visitor.WalkStack();
843
844 for (size_t i = 0; i < visitor.monitors.size(); ++i) {
845 monitors.push_back(gRegistry->Add(visitor.monitors[i]));
Elliott Hughes734b8c62013-01-11 15:32:45 -0800846 stack_depths.push_back(visitor.stack_depths[i]);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800847 }
848
849 return JDWP::ERR_NONE;
850}
851
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100852JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
853 JDWP::ObjectId& contended_monitor) {
Elliott Hughesf9501702013-01-11 11:22:27 -0800854 ScopedObjectAccessUnchecked soa(Thread::Current());
855 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
856 Thread* thread;
857 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
858 if (error != JDWP::ERR_NONE) {
859 return error;
860 }
861 if (!IsSuspendedForDebugger(soa, thread)) {
862 return JDWP::ERR_THREAD_NOT_SUSPENDED;
863 }
864
865 contended_monitor = gRegistry->Add(Monitor::GetContendedMonitor(thread));
866
867 return JDWP::ERR_NONE;
868}
869
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800870JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
871 std::vector<uint64_t>& counts)
872 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800873 gc::Heap* heap = Runtime::Current()->GetHeap();
874 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800875 std::vector<mirror::Class*> classes;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800876 counts.clear();
877 for (size_t i = 0; i < class_ids.size(); ++i) {
878 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800879 mirror::Class* c = DecodeClass(class_ids[i], status);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800880 if (c == NULL) {
881 return status;
882 }
883 classes.push_back(c);
884 counts.push_back(0);
885 }
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800886 heap->CountInstances(classes, false, &counts[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800887 return JDWP::ERR_NONE;
888}
889
Elliott Hughes3b78c942013-01-15 17:35:41 -0800890JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::ObjectId>& instances)
891 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800892 gc::Heap* heap = Runtime::Current()->GetHeap();
893 // We only want reachable instances, so do a GC.
894 heap->CollectGarbage(false);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800895 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800896 mirror::Class* c = DecodeClass(class_id, status);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800897 if (c == nullptr) {
Elliott Hughes3b78c942013-01-15 17:35:41 -0800898 return status;
899 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800900 std::vector<mirror::Object*> raw_instances;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800901 Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances);
902 for (size_t i = 0; i < raw_instances.size(); ++i) {
903 instances.push_back(gRegistry->Add(raw_instances[i]));
904 }
905 return JDWP::ERR_NONE;
906}
907
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800908JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
909 std::vector<JDWP::ObjectId>& referring_objects)
910 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800911 gc::Heap* heap = Runtime::Current()->GetHeap();
912 heap->CollectGarbage(false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800913 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800914 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800915 return JDWP::ERR_INVALID_OBJECT;
916 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800917 std::vector<mirror::Object*> raw_instances;
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800918 heap->GetReferringObjects(o, max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800919 for (size_t i = 0; i < raw_instances.size(); ++i) {
920 referring_objects.push_back(gRegistry->Add(raw_instances[i]));
921 }
922 return JDWP::ERR_NONE;
923}
924
Elliott Hughes64f574f2013-02-20 14:57:12 -0800925JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id)
926 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100927 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
928 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
929 return JDWP::ERR_INVALID_OBJECT;
930 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800931 gRegistry->DisableCollection(object_id);
932 return JDWP::ERR_NONE;
933}
934
935JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id)
936 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertze96060a2013-12-11 12:06:28 +0100937 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
938 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
939 // also ignores these cases and never return an error. However it's not obvious why this command
940 // should behave differently from DisableCollection and IsCollected commands. So let's be more
941 // strict and return an error if this happens.
942 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
943 return JDWP::ERR_INVALID_OBJECT;
944 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800945 gRegistry->EnableCollection(object_id);
946 return JDWP::ERR_NONE;
947}
948
949JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool& is_collected)
950 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100951 if (object_id == 0) {
952 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +0100953 return JDWP::ERR_INVALID_OBJECT;
954 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +0100955 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
956 // the RI seems to ignore this and assume object has been collected.
957 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
958 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
959 is_collected = true;
960 } else {
961 is_collected = gRegistry->IsCollected(object_id);
962 }
Elliott Hughes64f574f2013-02-20 14:57:12 -0800963 return JDWP::ERR_NONE;
964}
965
966void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count)
967 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
968 gRegistry->DisposeObject(object_id, reference_count);
969}
970
Sebastien Hertz4d8fd492014-03-28 16:29:41 +0100971static JDWP::JdwpTypeTag GetTypeTag(mirror::Class* klass)
972 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
973 DCHECK(klass != nullptr);
974 if (klass->IsArrayClass()) {
975 return JDWP::TT_ARRAY;
976 } else if (klass->IsInterface()) {
977 return JDWP::TT_INTERFACE;
978 } else {
979 return JDWP::TT_CLASS;
980 }
981}
982
Elliott Hughes88d63092013-01-09 09:55:54 -0800983JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800984 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800985 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -0800986 if (c == NULL) {
987 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800988 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800989
Sebastien Hertz4d8fd492014-03-28 16:29:41 +0100990 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
991 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -0800992 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800993 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700994}
995
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800996void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800997 // Get the complete list of reference classes (i.e. all classes except
998 // the primitive types).
999 // Returns a newly-allocated buffer full of RefTypeId values.
1000 struct ClassListCreator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001001 explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001002 }
1003
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001004 static bool Visit(mirror::Class* c, void* arg) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001005 return reinterpret_cast<ClassListCreator*>(arg)->Visit(c);
1006 }
1007
Elliott Hughes64f574f2013-02-20 14:57:12 -08001008 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1009 // annotalysis.
1010 bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001011 if (!c->IsPrimitive()) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001012 classes.push_back(gRegistry->AddRefType(c));
Elliott Hughesa2155262011-11-16 16:26:58 -08001013 }
1014 return true;
1015 }
1016
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001017 std::vector<JDWP::RefTypeId>& classes;
Elliott Hughesa2155262011-11-16 16:26:58 -08001018 };
1019
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001020 ClassListCreator clc(classes);
Elliott Hughesa2155262011-11-16 16:26:58 -08001021 Runtime::Current()->GetClassLinker()->VisitClasses(ClassListCreator::Visit, &clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001022}
1023
Elliott Hughes88d63092013-01-09 09:55:54 -08001024JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, uint32_t* pStatus, std::string* pDescriptor) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001025 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001026 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001027 if (c == NULL) {
1028 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001029 }
1030
Elliott Hughesa2155262011-11-16 16:26:58 -08001031 if (c->IsArrayClass()) {
1032 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1033 *pTypeTag = JDWP::TT_ARRAY;
1034 } else {
1035 if (c->IsErroneous()) {
1036 *pStatus = JDWP::CS_ERROR;
1037 } else {
1038 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1039 }
1040 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1041 }
1042
1043 if (pDescriptor != NULL) {
Ian Rogersdfb325e2013-10-30 01:00:44 -07001044 *pDescriptor = ClassHelper(c).GetDescriptor();
Elliott Hughesa2155262011-11-16 16:26:58 -08001045 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001046 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001047}
1048
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001049void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001050 std::vector<mirror::Class*> classes;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001051 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
1052 ids.clear();
1053 for (size_t i = 0; i < classes.size(); ++i) {
1054 ids.push_back(gRegistry->Add(classes[i]));
1055 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001056}
1057
Elliott Hughes64f574f2013-02-20 14:57:12 -08001058JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
1059 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001060 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001061 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001062 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001063 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001064
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001065 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001066 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001067
1068 expandBufAdd1(pReply, type_tag);
1069 expandBufAddRefTypeId(pReply, type_id);
1070
1071 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001072}
1073
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001074JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001075 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001076 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001077 if (c == NULL) {
1078 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001079 }
Ian Rogersdfb325e2013-10-30 01:00:44 -07001080 *signature = ClassHelper(c).GetDescriptor();
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001081 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001082}
1083
Elliott Hughes88d63092013-01-09 09:55:54 -08001084JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string& result) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001085 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001086 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001087 if (c == NULL) {
1088 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001089 }
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001090 if (c->IsProxyClass()) {
1091 return JDWP::ERR_ABSENT_INFORMATION;
1092 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001093 result = ClassHelper(c).GetSourceFile();
1094 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001095}
1096
Elliott Hughes88d63092013-01-09 09:55:54 -08001097JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001098 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001099 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001100 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes546b9862012-06-20 16:06:13 -07001101 return JDWP::ERR_INVALID_OBJECT;
1102 }
Ian Rogers98379392014-02-24 16:53:16 -08001103 tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001104 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001105}
1106
Elliott Hughesaed4be92011-12-02 16:16:23 -08001107size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001108 switch (tag) {
1109 case JDWP::JT_VOID:
1110 return 0;
1111 case JDWP::JT_BYTE:
1112 case JDWP::JT_BOOLEAN:
1113 return 1;
1114 case JDWP::JT_CHAR:
1115 case JDWP::JT_SHORT:
1116 return 2;
1117 case JDWP::JT_FLOAT:
1118 case JDWP::JT_INT:
1119 return 4;
1120 case JDWP::JT_ARRAY:
1121 case JDWP::JT_OBJECT:
1122 case JDWP::JT_STRING:
1123 case JDWP::JT_THREAD:
1124 case JDWP::JT_THREAD_GROUP:
1125 case JDWP::JT_CLASS_LOADER:
1126 case JDWP::JT_CLASS_OBJECT:
1127 return sizeof(JDWP::ObjectId);
1128 case JDWP::JT_DOUBLE:
1129 case JDWP::JT_LONG:
1130 return 8;
1131 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001132 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001133 return -1;
1134 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001135}
1136
Elliott Hughes88d63092013-01-09 09:55:54 -08001137JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int& length) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001138 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001139 mirror::Array* a = DecodeArray(array_id, status);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001140 if (a == NULL) {
1141 return status;
Elliott Hughes24437992011-11-30 14:49:33 -08001142 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001143 length = a->GetLength();
1144 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001145}
1146
Elliott Hughes88d63092013-01-09 09:55:54 -08001147JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001148 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001149 mirror::Array* a = DecodeArray(array_id, status);
Ian Rogers98379392014-02-24 16:53:16 -08001150 if (a == nullptr) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001151 return status;
1152 }
Elliott Hughes24437992011-11-30 14:49:33 -08001153
1154 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1155 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 Hughes24437992011-11-30 14:49:33 -08001157 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001158 std::string descriptor(ClassHelper(a->GetClass()).GetDescriptor());
Elliott Hughes24437992011-11-30 14:49:33 -08001159 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1);
1160
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001161 expandBufAdd1(pReply, tag);
1162 expandBufAdd4BE(pReply, count);
1163
Elliott Hughes24437992011-11-30 14:49:33 -08001164 if (IsPrimitiveTag(tag)) {
1165 size_t width = GetTagWidth(tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001166 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1167 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001168 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001169 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1170 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001171 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001172 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1173 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001174 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001175 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1176 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001177 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001178 memcpy(dst, &src[offset * width], count * width);
1179 }
1180 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001181 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001182 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001183 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001184 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001185 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
1186 : tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001187 expandBufAdd1(pReply, specific_tag);
1188 expandBufAddObjectId(pReply, gRegistry->Add(element));
1189 }
1190 }
1191
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001192 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001193}
1194
Ian Rogersef7d42f2014-01-06 12:55:46 -08001195template <typename T>
1196static void CopyArrayData(mirror::Array* a, JDWP::Request& src, int offset, int count)
1197 NO_THREAD_SAFETY_ANALYSIS {
1198 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001199 DCHECK(a->GetClass()->IsPrimitiveArray());
1200
Ian Rogersef7d42f2014-01-06 12:55:46 -08001201 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001202 for (int i = 0; i < count; ++i) {
1203 *dst++ = src.ReadValue(sizeof(T));
1204 }
1205}
1206
Elliott Hughes88d63092013-01-09 09:55:54 -08001207JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001208 JDWP::Request& request)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001209 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001210 JDWP::JdwpError status;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001211 mirror::Array* dst = DecodeArray(array_id, status);
1212 if (dst == NULL) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001213 return status;
1214 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001215
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001216 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001217 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001218 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001219 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001220 const char* descriptor = ClassHelper(dst->GetClass()).GetDescriptor();
1221 JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor + 1);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001222
1223 if (IsPrimitiveTag(tag)) {
1224 size_t width = GetTagWidth(tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001225 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001226 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001227 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001228 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001229 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001230 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001231 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001232 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001233 }
1234 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001235 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001236 for (int i = 0; i < count; ++i) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001237 JDWP::ObjectId id = request.ReadObjectId();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001238 mirror::Object* o = gRegistry->Get<mirror::Object*>(id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001239 if (o == ObjectRegistry::kInvalidObject) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001240 return JDWP::ERR_INVALID_OBJECT;
1241 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001242 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001243 }
1244 }
1245
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001246 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001247}
1248
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001249JDWP::ObjectId Dbg::CreateString(const std::string& str) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001250 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001251}
1252
Elliott Hughes88d63092013-01-09 09:55:54 -08001253JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001254 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001255 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001256 if (c == NULL) {
1257 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001258 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001259 new_object = gRegistry->Add(c->AllocObject(Thread::Current()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001260 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001261}
1262
Elliott Hughesbf13d362011-12-08 15:51:37 -08001263/*
1264 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1265 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001266JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001267 JDWP::ObjectId& new_array) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001268 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001269 mirror::Class* c = DecodeClass(array_class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001270 if (c == NULL) {
1271 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001272 }
Ian Rogers6fac4472014-02-25 17:01:10 -08001273 new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length,
1274 c->GetComponentSize(),
1275 Runtime::Current()->GetHeap()->GetCurrentAllocator()));
Elliott Hughes436e3722012-02-17 20:01:47 -08001276 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001277}
1278
Elliott Hughes88d63092013-01-09 09:55:54 -08001279bool Dbg::MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001280 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001281 mirror::Class* c1 = DecodeClass(instance_class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001282 CHECK(c1 != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001283 mirror::Class* c2 = DecodeClass(class_id, status);
Elliott Hughesa656a0f2012-02-21 18:03:44 -08001284 CHECK(c2 != NULL);
Sebastien Hertz123756a2013-11-27 15:49:42 +01001285 return c2->IsAssignableFrom(c1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001286}
1287
Brian Carlstromea46f952013-07-30 01:26:50 -07001288static JDWP::FieldId ToFieldId(const mirror::ArtField* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001289 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001290 CHECK(!kMovingFields);
Elliott Hughes03181a82011-11-17 17:22:21 -08001291 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001292}
1293
Brian Carlstromea46f952013-07-30 01:26:50 -07001294static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001295 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001296 CHECK(!kMovingMethods);
Elliott Hughes03181a82011-11-17 17:22:21 -08001297 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m));
Elliott Hughes03181a82011-11-17 17:22:21 -08001298}
1299
Brian Carlstromea46f952013-07-30 01:26:50 -07001300static mirror::ArtField* FromFieldId(JDWP::FieldId fid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001301 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001302 CHECK(!kMovingFields);
Brian Carlstromea46f952013-07-30 01:26:50 -07001303 return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001304}
1305
Brian Carlstromea46f952013-07-30 01:26:50 -07001306static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001307 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001308 CHECK(!kMovingMethods);
Brian Carlstromea46f952013-07-30 01:26:50 -07001309 return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001310}
1311
Brian Carlstromea46f952013-07-30 01:26:50 -07001312static void SetLocation(JDWP::JdwpLocation& location, mirror::ArtMethod* m, uint32_t dex_pc)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001313 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001314 if (m == NULL) {
1315 memset(&location, 0, sizeof(location));
1316 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001317 mirror::Class* c = m->GetDeclaringClass();
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001318 location.type_tag = GetTypeTag(c);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001319 location.class_id = gRegistry->AddRefType(c);
Elliott Hughes74847412012-06-20 18:10:21 -07001320 location.method_id = ToMethodId(m);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001321 location.dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001322 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001323}
1324
Elliott Hughesa96836a2013-01-17 12:27:49 -08001325std::string Dbg::GetMethodName(JDWP::MethodId method_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001326 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001327 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001328 return MethodHelper(m).GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001329}
1330
Elliott Hughesa96836a2013-01-17 12:27:49 -08001331std::string Dbg::GetFieldName(JDWP::FieldId field_id)
1332 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001333 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughesa96836a2013-01-17 12:27:49 -08001334 return FieldHelper(f).GetName();
1335}
1336
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001337/*
1338 * Augment the access flags for synthetic methods and fields by setting
1339 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1340 * flags not specified by the Java programming language.
1341 */
1342static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1343 accessFlags &= kAccJavaFlagsMask;
1344 if ((accessFlags & kAccSynthetic) != 0) {
1345 accessFlags |= 0xf0000000;
1346 }
1347 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001348}
1349
Elliott Hughesdbb40792011-11-18 17:05:22 -08001350/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001351 * Circularly shifts registers so that arguments come first. Debuggers
1352 * expect slots to begin with arguments, but dex code places them at
1353 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001354 */
Jeff Haob7cefc72013-11-14 14:51:09 -08001355static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m)
1356 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1357 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001358 if (code_item == nullptr) {
1359 // We should not get here for a method without code (native, proxy or abstract). Log it and
1360 // return the slot as is since all registers are arguments.
1361 LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m);
1362 return slot;
1363 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001364 uint16_t ins_size = code_item->ins_size_;
1365 uint16_t locals_size = code_item->registers_size_ - ins_size;
1366 if (slot >= locals_size) {
1367 return slot - locals_size;
1368 } else {
1369 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001370 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001371}
1372
Jeff Haob7cefc72013-11-14 14:51:09 -08001373/*
1374 * Circularly shifts registers so that arguments come last. Reverts
1375 * slots to dex style argument placement.
1376 */
Brian Carlstromea46f952013-07-30 01:26:50 -07001377static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001378 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Jeff Haob7cefc72013-11-14 14:51:09 -08001379 const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001380 if (code_item == nullptr) {
1381 // We should not get here for a method without code (native, proxy or abstract). Log it and
1382 // return the slot as is since all registers are arguments.
1383 LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m);
1384 return slot;
1385 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001386 uint16_t ins_size = code_item->ins_size_;
1387 uint16_t locals_size = code_item->registers_size_ - ins_size;
1388 if (slot < ins_size) {
1389 return slot + locals_size;
1390 } else {
1391 return slot - ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001392 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001393}
1394
Elliott Hughes88d63092013-01-09 09:55:54 -08001395JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001396 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001397 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001398 if (c == NULL) {
1399 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001400 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001401
1402 size_t instance_field_count = c->NumInstanceFields();
1403 size_t static_field_count = c->NumStaticFields();
1404
1405 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1406
1407 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001408 mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001409 FieldHelper fh(f);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001410 expandBufAddFieldId(pReply, ToFieldId(f));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001411 expandBufAddUtf8String(pReply, fh.GetName());
1412 expandBufAddUtf8String(pReply, fh.GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001413 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001414 static const char genericSignature[1] = "";
1415 expandBufAddUtf8String(pReply, genericSignature);
1416 }
1417 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1418 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001419 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001420}
1421
Elliott Hughes88d63092013-01-09 09:55:54 -08001422JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001423 JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001424 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001425 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001426 if (c == NULL) {
1427 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001428 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001429
1430 size_t direct_method_count = c->NumDirectMethods();
1431 size_t virtual_method_count = c->NumVirtualMethods();
1432
1433 expandBufAdd4BE(pReply, direct_method_count + virtual_method_count);
1434
1435 for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001436 mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001437 MethodHelper mh(m);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001438 expandBufAddMethodId(pReply, ToMethodId(m));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001439 expandBufAddUtf8String(pReply, mh.GetName());
Ian Rogersd91d6d62013-09-25 20:26:14 -07001440 expandBufAddUtf8String(pReply, mh.GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001441 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001442 static const char genericSignature[1] = "";
1443 expandBufAddUtf8String(pReply, genericSignature);
1444 }
1445 expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags()));
1446 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001447 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001448}
1449
Elliott Hughes88d63092013-01-09 09:55:54 -08001450JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Elliott Hughes436e3722012-02-17 20:01:47 -08001451 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001452 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes436e3722012-02-17 20:01:47 -08001453 if (c == NULL) {
1454 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001455 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001456
1457 ClassHelper kh(c);
Ian Rogersd24e2642012-06-06 21:21:43 -07001458 size_t interface_count = kh.NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001459 expandBufAdd4BE(pReply, interface_count);
1460 for (size_t i = 0; i < interface_count; ++i) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001461 expandBufAddRefTypeId(pReply, gRegistry->AddRefType(kh.GetDirectInterface(i)));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001462 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001463 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001464}
1465
Elliott Hughes88d63092013-01-09 09:55:54 -08001466void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001467 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001468 struct DebugCallbackContext {
1469 int numItems;
1470 JDWP::ExpandBuf* pReply;
1471
Elliott Hughes2435a572012-02-17 16:07:41 -08001472 static bool Callback(void* context, uint32_t address, uint32_t line_number) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001473 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1474 expandBufAdd8BE(pContext->pReply, address);
Elliott Hughes2435a572012-02-17 16:07:41 -08001475 expandBufAdd4BE(pContext->pReply, line_number);
Elliott Hughes03181a82011-11-17 17:22:21 -08001476 pContext->numItems++;
Sebastien Hertzf2910ee2013-10-19 16:39:24 +02001477 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08001478 }
1479 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001480 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001481 MethodHelper mh(m);
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001482 const DexFile::CodeItem* code_item = mh.GetCodeItem();
Elliott Hughes03181a82011-11-17 17:22:21 -08001483 uint64_t start, end;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001484 if (code_item == nullptr) {
1485 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001486 start = -1;
1487 end = -1;
1488 } else {
1489 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001490 // Return the index of the last instruction
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001491 end = code_item->insns_size_in_code_units_ - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001492 }
1493
1494 expandBufAdd8BE(pReply, start);
1495 expandBufAdd8BE(pReply, end);
1496
1497 // Add numLines later
1498 size_t numLinesOffset = expandBufGetLength(pReply);
1499 expandBufAdd4BE(pReply, 0);
1500
1501 DebugCallbackContext context;
1502 context.numItems = 0;
1503 context.pReply = pReply;
1504
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001505 if (code_item != nullptr) {
1506 mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(),
1507 DebugCallbackContext::Callback, NULL, &context);
1508 }
Elliott Hughes03181a82011-11-17 17:22:21 -08001509
1510 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001511}
1512
Elliott Hughes88d63092013-01-09 09:55:54 -08001513void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, JDWP::ExpandBuf* pReply) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001514 struct DebugCallbackContext {
Jeff Haob7cefc72013-11-14 14:51:09 -08001515 mirror::ArtMethod* method;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001516 JDWP::ExpandBuf* pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001517 size_t variable_count;
1518 bool with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001519
Jeff Haob7cefc72013-11-14 14:51:09 -08001520 static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress, const char* name, const char* descriptor, const char* signature)
1521 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001522 DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context);
1523
Jeff Haob7cefc72013-11-14 14:51:09 -08001524 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 -08001525
Jeff Haob7cefc72013-11-14 14:51:09 -08001526 slot = MangleSlot(slot, pContext->method);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001527
Elliott Hughesdbb40792011-11-18 17:05:22 -08001528 expandBufAdd8BE(pContext->pReply, startAddress);
1529 expandBufAddUtf8String(pContext->pReply, name);
1530 expandBufAddUtf8String(pContext->pReply, descriptor);
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001531 if (pContext->with_generic) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001532 expandBufAddUtf8String(pContext->pReply, signature);
1533 }
1534 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1535 expandBufAdd4BE(pContext->pReply, slot);
1536
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001537 ++pContext->variable_count;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001538 }
1539 };
Brian Carlstromea46f952013-07-30 01:26:50 -07001540 mirror::ArtMethod* m = FromMethodId(method_id);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001541 MethodHelper mh(m);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001542
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001543 // arg_count considers doubles and longs to take 2 units.
1544 // variable_count considers everything to take 1 unit.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001545 std::string shorty(mh.GetShorty());
Brian Carlstromea46f952013-07-30 01:26:50 -07001546 expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001547
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001548 // We don't know the total number of variables yet, so leave a blank and update it later.
1549 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001550 expandBufAdd4BE(pReply, 0);
1551
1552 DebugCallbackContext context;
Jeff Haob7cefc72013-11-14 14:51:09 -08001553 context.method = m;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001554 context.pReply = pReply;
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001555 context.variable_count = 0;
1556 context.with_generic = with_generic;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001557
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001558 const DexFile::CodeItem* code_item = mh.GetCodeItem();
1559 if (code_item != nullptr) {
1560 mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL,
1561 DebugCallbackContext::Callback, &context);
1562 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001563
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001564 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001565}
1566
Jeff Hao579b0242013-11-18 13:16:49 -08001567void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1568 JDWP::ExpandBuf* pReply) {
1569 mirror::ArtMethod* m = FromMethodId(method_id);
1570 JDWP::JdwpTag tag = BasicTagFromDescriptor(MethodHelper(m).GetShorty());
1571 OutputJValue(tag, return_value, pReply);
1572}
1573
Elliott Hughes9777ba22013-01-17 09:04:19 -08001574JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
1575 std::vector<uint8_t>& bytecodes)
1576 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001577 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001578 if (m == NULL) {
1579 return JDWP::ERR_INVALID_METHODID;
1580 }
1581 MethodHelper mh(m);
1582 const DexFile::CodeItem* code_item = mh.GetCodeItem();
1583 size_t byte_count = code_item->insns_size_in_code_units_ * 2;
1584 const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_);
1585 const uint8_t* end = begin + byte_count;
1586 for (const uint8_t* p = begin; p != end; ++p) {
1587 bytecodes.push_back(*p);
1588 }
1589 return JDWP::ERR_NONE;
1590}
1591
Elliott Hughes88d63092013-01-09 09:55:54 -08001592JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
1593 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001594}
1595
Elliott Hughes88d63092013-01-09 09:55:54 -08001596JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
1597 return BasicTagFromDescriptor(FieldHelper(FromFieldId(field_id)).GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001598}
1599
Elliott Hughes88d63092013-01-09 09:55:54 -08001600static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1601 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001602 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001603 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001604 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001605 mirror::Class* c = DecodeClass(ref_type_id, status);
Elliott Hughes88d63092013-01-09 09:55:54 -08001606 if (ref_type_id != 0 && c == NULL) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001607 return status;
1608 }
1609
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001610 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001611 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001612 return JDWP::ERR_INVALID_OBJECT;
1613 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001614 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001615
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001616 mirror::Class* receiver_class = c;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001617 if (receiver_class == NULL && o != NULL) {
1618 receiver_class = o->GetClass();
1619 }
1620 // TODO: should we give up now if receiver_class is NULL?
1621 if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
1622 LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001623 return JDWP::ERR_INVALID_FIELDID;
1624 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001625
Elliott Hughes0cf74332012-02-23 23:14:00 -08001626 // The RI only enforces the static/non-static mismatch in one direction.
1627 // TODO: should we change the tests and check both?
1628 if (is_static) {
1629 if (!f->IsStatic()) {
1630 return JDWP::ERR_INVALID_FIELDID;
1631 }
1632 } else {
1633 if (f->IsStatic()) {
1634 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001635 }
1636 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001637 if (f->IsStatic()) {
1638 o = f->GetDeclaringClass();
1639 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001640
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001641 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001642 JValue field_value;
1643 if (tag == JDWP::JT_VOID) {
1644 LOG(FATAL) << "Unknown tag: " << tag;
1645 } else if (!IsPrimitiveTag(tag)) {
1646 field_value.SetL(f->GetObject(o));
1647 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1648 field_value.SetJ(f->Get64(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001649 } else {
Jeff Hao579b0242013-11-18 13:16:49 -08001650 field_value.SetI(f->Get32(o));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001651 }
Jeff Hao579b0242013-11-18 13:16:49 -08001652 Dbg::OutputJValue(tag, &field_value, pReply);
1653
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001654 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001655}
1656
Elliott Hughes88d63092013-01-09 09:55:54 -08001657JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001658 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001659 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001660}
1661
Elliott Hughes88d63092013-01-09 09:55:54 -08001662JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) {
1663 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001664}
1665
Elliott Hughes88d63092013-01-09 09:55:54 -08001666static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001667 uint64_t value, int width, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001668 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001669 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001670 if ((!is_static && o == NULL) || o == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001671 return JDWP::ERR_INVALID_OBJECT;
1672 }
Brian Carlstromea46f952013-07-30 01:26:50 -07001673 mirror::ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001674
1675 // The RI only enforces the static/non-static mismatch in one direction.
1676 // TODO: should we change the tests and check both?
1677 if (is_static) {
1678 if (!f->IsStatic()) {
1679 return JDWP::ERR_INVALID_FIELDID;
1680 }
1681 } else {
1682 if (f->IsStatic()) {
1683 LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001684 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001685 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001686 if (f->IsStatic()) {
1687 o = f->GetDeclaringClass();
1688 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001689
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001690 JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor());
Elliott Hughesaed4be92011-12-02 16:16:23 -08001691
1692 if (IsPrimitiveTag(tag)) {
1693 if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001694 CHECK_EQ(width, 8);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001695 // Debugging can't use transactional mode (runtime only).
1696 f->Set64<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001697 } else {
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001698 CHECK_LE(width, 4);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001699 // Debugging can't use transactional mode (runtime only).
1700 f->Set32<false>(o, value);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001701 }
1702 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001703 mirror::Object* v = gRegistry->Get<mirror::Object*>(value);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001704 if (v == ObjectRegistry::kInvalidObject) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001705 return JDWP::ERR_INVALID_OBJECT;
1706 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001707 if (v != NULL) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001708 mirror::Class* field_type = FieldHelper(f).GetType();
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001709 if (!field_type->IsAssignableFrom(v->GetClass())) {
1710 return JDWP::ERR_INVALID_OBJECT;
1711 }
1712 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001713 // Debugging can't use transactional mode (runtime only).
1714 f->SetObject<false>(o, v);
Elliott Hughesaed4be92011-12-02 16:16:23 -08001715 }
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001716
1717 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001718}
1719
Elliott Hughes88d63092013-01-09 09:55:54 -08001720JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001721 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001722 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001723}
1724
Elliott Hughes88d63092013-01-09 09:55:54 -08001725JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
1726 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001727}
1728
Elliott Hughes88d63092013-01-09 09:55:54 -08001729std::string Dbg::StringToUtf8(JDWP::ObjectId string_id) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001730 mirror::String* s = gRegistry->Get<mirror::String*>(string_id);
Elliott Hughes68fdbd02011-11-29 19:22:47 -08001731 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001732}
1733
Jeff Hao579b0242013-11-18 13:16:49 -08001734void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
1735 if (IsPrimitiveTag(tag)) {
1736 expandBufAdd1(pReply, tag);
1737 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
1738 expandBufAdd1(pReply, return_value->GetI());
1739 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
1740 expandBufAdd2BE(pReply, return_value->GetI());
1741 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
1742 expandBufAdd4BE(pReply, return_value->GetI());
1743 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
1744 expandBufAdd8BE(pReply, return_value->GetJ());
1745 } else {
1746 CHECK_EQ(tag, JDWP::JT_VOID);
1747 }
1748 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001749 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08001750 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08001751 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08001752 expandBufAddObjectId(pReply, gRegistry->Add(value));
1753 }
1754}
1755
Elliott Hughes221229c2013-01-08 18:17:50 -08001756JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string& name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08001757 ScopedObjectAccessUnchecked soa(Thread::Current());
1758 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001759 Thread* thread;
1760 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1761 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1762 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001763 }
Elliott Hughes221229c2013-01-08 18:17:50 -08001764
1765 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001766 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Brian Carlstromea46f952013-07-30 01:26:50 -07001767 mirror::ArtField* java_lang_Thread_name_field =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001768 soa.DecodeField(WellKnownClasses::java_lang_Thread_name);
1769 mirror::String* s =
1770 reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object));
Elliott Hughes221229c2013-01-08 18:17:50 -08001771 if (s != NULL) {
1772 name = s->ToModifiedUtf8();
1773 }
1774 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001775}
1776
Elliott Hughes221229c2013-01-08 18:17:50 -08001777JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001778 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001779 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08001780 if (thread_object == ObjectRegistry::kInvalidObject) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001781 return JDWP::ERR_INVALID_OBJECT;
1782 }
Ian Rogers98379392014-02-24 16:53:16 -08001783 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08001784 // Okay, so it's an object, but is it actually a thread?
Ian Rogers50b35e22012-10-04 10:09:15 -07001785 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001786 Thread* thread;
1787 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1788 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1789 // Zombie threads are in the null group.
1790 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001791 error = JDWP::ERR_NONE;
1792 } else if (error == JDWP::ERR_NONE) {
1793 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
1794 CHECK(c != nullptr);
1795 mirror::ArtField* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;");
1796 CHECK(f != NULL);
1797 mirror::Object* group = f->GetObject(thread_object);
1798 CHECK(group != NULL);
1799 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
1800 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08001801 }
Ian Rogers98379392014-02-24 16:53:16 -08001802 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001803 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001804}
1805
Elliott Hughes88d63092013-01-09 09:55:54 -08001806std::string Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001807 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001808 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001809 CHECK(thread_group != nullptr);
1810 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupName");
1811 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1812 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001813 mirror::ArtField* f = c->FindInstanceField("name", "Ljava/lang/String;");
Elliott Hughes499c5132011-11-17 14:55:11 -08001814 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001815 mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group));
Ian Rogers98379392014-02-24 16:53:16 -08001816 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes499c5132011-11-17 14:55:11 -08001817 return s->ToModifiedUtf8();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001818}
1819
Elliott Hughes88d63092013-01-09 09:55:54 -08001820JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id) {
Ian Rogers98379392014-02-24 16:53:16 -08001821 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001822 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers98379392014-02-24 16:53:16 -08001823 CHECK(thread_group != nullptr);
1824 const char* old_cause = soa.Self()->StartAssertNoThreadSuspension("Debugger: GetThreadGroupParent");
1825 mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup);
1826 CHECK(c != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07001827 mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
Elliott Hughes4e235312011-12-02 11:34:15 -08001828 CHECK(f != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001829 mirror::Object* parent = f->GetObject(thread_group);
Ian Rogers98379392014-02-24 16:53:16 -08001830 soa.Self()->EndAssertNoThreadSuspension(old_cause);
Elliott Hughes4e235312011-12-02 11:34:15 -08001831 return gRegistry->Add(parent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001832}
1833
1834JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001835 ScopedObjectAccessUnchecked soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001836 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001837 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001838 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001839}
1840
1841JDWP::ObjectId Dbg::GetMainThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001842 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromea46f952013-07-30 01:26:50 -07001843 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001844 mirror::Object* group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07001845 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001846}
1847
Jeff Hao920af3e2013-08-28 15:46:38 -07001848JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
1849 switch (state) {
1850 case kBlocked:
1851 return JDWP::TS_MONITOR;
1852 case kNative:
1853 case kRunnable:
1854 case kSuspended:
1855 return JDWP::TS_RUNNING;
1856 case kSleeping:
1857 return JDWP::TS_SLEEPING;
1858 case kStarting:
1859 case kTerminated:
1860 return JDWP::TS_ZOMBIE;
1861 case kTimedWaiting:
1862 case kWaitingForDebuggerSend:
1863 case kWaitingForDebuggerSuspension:
1864 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01001865 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07001866 case kWaitingForGcToComplete:
1867 case kWaitingForCheckPointsToRun:
1868 case kWaitingForJniOnLoad:
1869 case kWaitingForSignalCatcherOutput:
1870 case kWaitingInMainDebuggerLoop:
1871 case kWaitingInMainSignalCatcherLoop:
1872 case kWaitingPerformingGc:
1873 case kWaiting:
1874 return JDWP::TS_WAIT;
1875 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
1876 }
1877 LOG(FATAL) << "Unknown thread state: " << state;
1878 return JDWP::TS_ZOMBIE;
1879}
1880
Sebastien Hertz52d131d2014-03-13 16:17:40 +01001881JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
1882 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001883 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08001884
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001885 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
1886
Ian Rogers50b35e22012-10-04 10:09:15 -07001887 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001888 Thread* thread;
1889 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1890 if (error != JDWP::ERR_NONE) {
1891 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
1892 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08001893 return JDWP::ERR_NONE;
1894 }
1895 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08001896 }
1897
Elliott Hughes9e0c1752013-01-09 14:02:58 -08001898 if (IsSuspendedForDebugger(soa, thread)) {
1899 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08001900 }
1901
Jeff Hao920af3e2013-08-28 15:46:38 -07001902 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08001903 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001904}
1905
Elliott Hughes221229c2013-01-08 18:17:50 -08001906JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001907 ScopedObjectAccess soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -07001908 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08001909 Thread* thread;
1910 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1911 if (error != JDWP::ERR_NONE) {
1912 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08001913 }
Ian Rogers50b35e22012-10-04 10:09:15 -07001914 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001915 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08001916 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001917}
1918
Elliott Hughesf9501702013-01-11 11:22:27 -08001919JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
1920 ScopedObjectAccess soa(Thread::Current());
1921 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
1922 Thread* thread;
1923 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1924 if (error != JDWP::ERR_NONE) {
1925 return error;
1926 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07001927 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08001928 return JDWP::ERR_NONE;
1929}
1930
Elliott Hughescaf76542012-06-28 16:08:22 -07001931void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) {
Ian Rogers365c1022012-06-22 15:05:28 -07001932 class ThreadListVisitor {
1933 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001934 ThreadListVisitor(const ScopedObjectAccessUnchecked& soa, mirror::Object* desired_thread_group,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001935 std::vector<JDWP::ObjectId>& thread_ids)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001936 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001937 : soa_(soa), desired_thread_group_(desired_thread_group), thread_ids_(thread_ids) {}
Ian Rogers365c1022012-06-22 15:05:28 -07001938
Elliott Hughesa2155262011-11-16 16:26:58 -08001939 static void Visit(Thread* t, void* arg) {
1940 reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t);
1941 }
1942
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001943 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
1944 // annotalysis.
1945 void Visit(Thread* t) NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughesa2155262011-11-16 16:26:58 -08001946 if (t == Dbg::GetDebugThread()) {
1947 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
1948 // query all threads, so it's easier if we just don't tell them about this thread.
1949 return;
1950 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001951 mirror::Object* peer = t->GetPeer();
jeffhao0dfbb7e2012-11-28 15:26:03 -08001952 if (IsInDesiredThreadGroup(peer)) {
Ian Rogers120f1c72012-09-28 17:17:10 -07001953 thread_ids_.push_back(gRegistry->Add(peer));
Elliott Hughesa2155262011-11-16 16:26:58 -08001954 }
1955 }
1956
Ian Rogers365c1022012-06-22 15:05:28 -07001957 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001958 bool IsInDesiredThreadGroup(mirror::Object* peer)
jeffhao0dfbb7e2012-11-28 15:26:03 -08001959 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhao0dfbb7e2012-11-28 15:26:03 -08001960 // peer might be NULL if the thread is still starting up.
1961 if (peer == NULL) {
1962 // We can't tell the debugger about this thread yet.
1963 // TODO: if we identified threads to the debugger by their Thread*
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001964 // rather than their peer's mirror::Object*, we could fix this.
jeffhao0dfbb7e2012-11-28 15:26:03 -08001965 // Doing so might help us report ZOMBIE threads too.
1966 return false;
1967 }
jeffhaoc1e04902012-12-13 12:41:10 -08001968 // Do we want threads from all thread groups?
1969 if (desired_thread_group_ == NULL) {
1970 return true;
1971 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001972 mirror::Object* group = soa_.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(peer);
jeffhao0dfbb7e2012-11-28 15:26:03 -08001973 return (group == desired_thread_group_);
1974 }
1975
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07001976 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001977 mirror::Object* const desired_thread_group_;
Elliott Hughescaf76542012-06-28 16:08:22 -07001978 std::vector<JDWP::ObjectId>& thread_ids_;
Elliott Hughesa2155262011-11-16 16:26:58 -08001979 };
1980
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001981 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001982 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001983 ThreadListVisitor tlv(soa, thread_group, thread_ids);
Ian Rogers50b35e22012-10-04 10:09:15 -07001984 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -07001985 Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv);
Elliott Hughescaf76542012-06-28 16:08:22 -07001986}
Elliott Hughesa2155262011-11-16 16:26:58 -08001987
Elliott Hughescaf76542012-06-28 16:08:22 -07001988void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001989 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001990 mirror::Object* thread_group = gRegistry->Get<mirror::Object*>(thread_group_id);
Elliott Hughescaf76542012-06-28 16:08:22 -07001991
1992 // Get the ArrayList<ThreadGroup> "groups" out of this thread group...
Brian Carlstromea46f952013-07-30 01:26:50 -07001993 mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001994 mirror::Object* groups_array_list = groups_field->GetObject(thread_group);
Elliott Hughescaf76542012-06-28 16:08:22 -07001995
1996 // Get the array and size out of the ArrayList<ThreadGroup>...
Brian Carlstromea46f952013-07-30 01:26:50 -07001997 mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;");
1998 mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I");
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001999 mirror::ObjectArray<mirror::Object>* groups_array =
2000 array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>();
Elliott Hughescaf76542012-06-28 16:08:22 -07002001 const int32_t size = size_field->GetInt(groups_array_list);
2002
2003 // Copy the first 'size' elements out of the array into the result.
2004 for (int32_t i = 0; i < size; ++i) {
2005 child_thread_group_ids.push_back(gRegistry->Add(groups_array->Get(i)));
Elliott Hughesa2155262011-11-16 16:26:58 -08002006 }
2007}
2008
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002009static int GetStackDepth(Thread* thread)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002010 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002011 struct CountStackDepthVisitor : public StackVisitor {
Brian Carlstrom93ba8932013-07-17 21:31:49 -07002012 explicit CountStackDepthVisitor(Thread* thread)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002013 : StackVisitor(thread, NULL), depth(0) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002014
Elliott Hughes64f574f2013-02-20 14:57:12 -08002015 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2016 // annotalysis.
2017 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002018 if (!GetMethod()->IsRuntimeMethod()) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -08002019 ++depth;
2020 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002021 return true;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002022 }
2023 size_t depth;
2024 };
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002025
Ian Rogers7a22fa62013-01-23 12:16:16 -08002026 CountStackDepthVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07002027 visitor.WalkStack();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002028 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002029}
2030
Elliott Hughes221229c2013-01-08 18:17:50 -08002031JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002032 ScopedObjectAccess soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002033 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002034 Thread* thread;
2035 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2036 if (error != JDWP::ERR_NONE) {
2037 return error;
2038 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002039 if (!IsSuspendedForDebugger(soa, thread)) {
2040 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2041 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002042 result = GetStackDepth(thread);
2043 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002044}
2045
Ian Rogers306057f2012-11-26 12:45:53 -08002046JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2047 size_t frame_count, JDWP::ExpandBuf* buf) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002048 class GetFrameVisitor : public StackVisitor {
2049 public:
Ian Rogers7a22fa62013-01-23 12:16:16 -08002050 GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002051 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002052 : StackVisitor(thread, NULL), depth_(0),
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002053 start_frame_(start_frame), frame_count_(frame_count), buf_(buf) {
2054 expandBufAdd4BE(buf_, frame_count_);
Elliott Hughes03181a82011-11-17 17:22:21 -08002055 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002056
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002057 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2058 // annotalysis.
2059 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002060 if (GetMethod()->IsRuntimeMethod()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002061 return true; // The debugger can't do anything useful with a frame that has no Method*.
Elliott Hughes03181a82011-11-17 17:22:21 -08002062 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002063 if (depth_ >= start_frame_ + frame_count_) {
Elliott Hughes530fa002012-03-12 11:44:49 -07002064 return false;
Elliott Hughes03181a82011-11-17 17:22:21 -08002065 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002066 if (depth_ >= start_frame_) {
2067 JDWP::FrameId frame_id(GetFrameId());
2068 JDWP::JdwpLocation location;
2069 SetLocation(location, GetMethod(), GetDexPc());
Ian Rogersef7d42f2014-01-06 12:55:46 -08002070 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002071 expandBufAdd8BE(buf_, frame_id);
2072 expandBufAddLocation(buf_, location);
2073 }
2074 ++depth_;
Elliott Hughes530fa002012-03-12 11:44:49 -07002075 return true;
Elliott Hughes03181a82011-11-17 17:22:21 -08002076 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002077
2078 private:
2079 size_t depth_;
2080 const size_t start_frame_;
2081 const size_t frame_count_;
2082 JDWP::ExpandBuf* buf_;
Elliott Hughes03181a82011-11-17 17:22:21 -08002083 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002084
2085 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002086 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002087 Thread* thread;
2088 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2089 if (error != JDWP::ERR_NONE) {
2090 return error;
2091 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002092 if (!IsSuspendedForDebugger(soa, thread)) {
2093 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2094 }
Ian Rogers7a22fa62013-01-23 12:16:16 -08002095 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
Ian Rogers0399dde2012-06-06 17:09:28 -07002096 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002097 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002098}
2099
2100JDWP::ObjectId Dbg::GetThreadSelfId() {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002101 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08002102 return gRegistry->Add(soa.Self()->GetPeer());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002103}
2104
Elliott Hughes475fc232011-10-25 15:00:35 -07002105void Dbg::SuspendVM() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002106 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002107}
2108
2109void Dbg::ResumeVM() {
Elliott Hughesc61a2672012-06-21 14:52:29 -07002110 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002111}
2112
Elliott Hughes221229c2013-01-08 18:17:50 -08002113JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002114 ScopedLocalRef<jobject> peer(Thread::Current()->GetJniEnv(), NULL);
2115 {
2116 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002117 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002118 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002119 if (peer.get() == NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002120 return JDWP::ERR_THREAD_NOT_ALIVE;
2121 }
2122 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002123 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002124 Thread* thread = ThreadList::SuspendThreadByPeer(peer.get(), request_suspension, true,
2125 &timed_out);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002126 if (thread != NULL) {
2127 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002128 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002129 return JDWP::ERR_INTERNAL;
2130 } else {
2131 return JDWP::ERR_THREAD_NOT_ALIVE;
2132 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002133}
2134
Elliott Hughes221229c2013-01-08 18:17:50 -08002135void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002136 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002137 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
jeffhaoa77f0f62012-12-05 17:19:31 -08002138 Thread* thread;
2139 {
2140 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2141 thread = Thread::FromManagedThread(soa, peer);
2142 }
Elliott Hughes4e235312011-12-02 11:34:15 -08002143 if (thread == NULL) {
2144 LOG(WARNING) << "No such thread for resume: " << peer;
2145 return;
2146 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002147 bool needs_resume;
2148 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002149 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002150 needs_resume = thread->GetSuspendCount() > 0;
2151 }
2152 if (needs_resume) {
Elliott Hughes546b9862012-06-20 16:06:13 -07002153 Runtime::Current()->GetThreadList()->Resume(thread, true);
2154 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002155}
2156
2157void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002158 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002159}
2160
Ian Rogers0399dde2012-06-06 17:09:28 -07002161struct GetThisVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002162 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002163 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002164 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
Ian Rogers0399dde2012-06-06 17:09:28 -07002165
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002166 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2167 // annotalysis.
2168 virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002169 if (frame_id != GetFrameId()) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002170 return true; // continue
Ian Rogers0399dde2012-06-06 17:09:28 -07002171 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08002172 this_object = GetThisObject();
2173 return false;
Ian Rogers0399dde2012-06-06 17:09:28 -07002174 }
Elliott Hughes86b00102011-12-05 17:54:26 -08002175 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002176
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002177 mirror::Object* this_object;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002178 JDWP::FrameId frame_id;
Ian Rogers0399dde2012-06-06 17:09:28 -07002179};
2180
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002181JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2182 JDWP::ObjectId* result) {
2183 ScopedObjectAccessUnchecked soa(Thread::Current());
2184 Thread* thread;
2185 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002186 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002187 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2188 if (error != JDWP::ERR_NONE) {
2189 return error;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002190 }
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002191 if (!IsSuspendedForDebugger(soa, thread)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002192 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2193 }
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002194 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002195 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002196 GetThisVisitor visitor(thread, context.get(), frame_id);
Ian Rogers0399dde2012-06-06 17:09:28 -07002197 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002198 *result = gRegistry->Add(visitor.this_object);
2199 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002200}
2201
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002202JDWP::JdwpError Dbg::GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2203 JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002204 struct GetLocalVisitor : public StackVisitor {
Ian Rogers98379392014-02-24 16:53:16 -08002205 GetLocalVisitor(const ScopedObjectAccessUnchecked& soa, Thread* thread, Context* context,
2206 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002207 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers98379392014-02-24 16:53:16 -08002208 : StackVisitor(thread, context), soa_(soa), frame_id_(frame_id), slot_(slot), tag_(tag),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002209 buf_(buf), width_(width), error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002210
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002211 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2212 // annotalysis.
2213 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002214 if (GetFrameId() != frame_id_) {
2215 return true; // Not our frame, carry on.
Elliott Hughesdbb40792011-11-18 17:05:22 -08002216 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002217 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002218 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002219 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002220 if (m->IsNative()) {
2221 // We can't read local value from native method.
2222 error_ = JDWP::ERR_OPAQUE_FRAME;
2223 return false;
2224 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002225 uint16_t reg = DemangleSlot(slot_, m);
Elliott Hughesdbb40792011-11-18 17:05:22 -08002226
Ian Rogers0399dde2012-06-06 17:09:28 -07002227 switch (tag_) {
2228 case JDWP::JT_BOOLEAN:
2229 {
2230 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002231 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002232 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal;
2233 JDWP::Set1(buf_+1, intVal != 0);
2234 }
2235 break;
2236 case JDWP::JT_BYTE:
2237 {
2238 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002239 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002240 VLOG(jdwp) << "get byte local " << reg << " = " << intVal;
2241 JDWP::Set1(buf_+1, intVal);
2242 }
2243 break;
2244 case JDWP::JT_SHORT:
2245 case JDWP::JT_CHAR:
2246 {
2247 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002248 uint32_t intVal = GetVReg(m, reg, kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002249 VLOG(jdwp) << "get short/char local " << reg << " = " << intVal;
2250 JDWP::Set2BE(buf_+1, intVal);
2251 }
2252 break;
2253 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002254 {
2255 CHECK_EQ(width_, 4U);
2256 uint32_t intVal = GetVReg(m, reg, kIntVReg);
2257 VLOG(jdwp) << "get int local " << reg << " = " << intVal;
2258 JDWP::Set4BE(buf_+1, intVal);
2259 }
2260 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002261 case JDWP::JT_FLOAT:
2262 {
2263 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002264 uint32_t intVal = GetVReg(m, reg, kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002265 VLOG(jdwp) << "get int/float local " << reg << " = " << intVal;
2266 JDWP::Set4BE(buf_+1, intVal);
2267 }
2268 break;
2269 case JDWP::JT_ARRAY:
2270 {
2271 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002272 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002273 VLOG(jdwp) << "get array local " << reg << " = " << o;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002274 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002275 LOG(FATAL) << "Register " << reg << " expected to hold array: " << o;
2276 }
2277 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2278 }
2279 break;
2280 case JDWP::JT_CLASS_LOADER:
2281 case JDWP::JT_CLASS_OBJECT:
2282 case JDWP::JT_OBJECT:
2283 case JDWP::JT_STRING:
2284 case JDWP::JT_THREAD:
2285 case JDWP::JT_THREAD_GROUP:
2286 {
2287 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002288 mirror::Object* o = reinterpret_cast<mirror::Object*>(GetVReg(m, reg, kReferenceVReg));
Ian Rogers0399dde2012-06-06 17:09:28 -07002289 VLOG(jdwp) << "get object local " << reg << " = " << o;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002290 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002291 LOG(FATAL) << "Register " << reg << " expected to hold object: " << o;
2292 }
Ian Rogers98379392014-02-24 16:53:16 -08002293 tag_ = TagFromObject(soa_, o);
Ian Rogers0399dde2012-06-06 17:09:28 -07002294 JDWP::SetObjectId(buf_+1, gRegistry->Add(o));
2295 }
2296 break;
2297 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002298 {
2299 CHECK_EQ(width_, 8U);
2300 uint32_t lo = GetVReg(m, reg, kDoubleLoVReg);
2301 uint64_t hi = GetVReg(m, reg + 1, kDoubleHiVReg);
2302 uint64_t longVal = (hi << 32) | lo;
2303 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2304 JDWP::Set8BE(buf_+1, longVal);
2305 }
2306 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002307 case JDWP::JT_LONG:
2308 {
2309 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002310 uint32_t lo = GetVReg(m, reg, kLongLoVReg);
2311 uint64_t hi = GetVReg(m, reg + 1, kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002312 uint64_t longVal = (hi << 32) | lo;
2313 VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal;
2314 JDWP::Set8BE(buf_+1, longVal);
2315 }
2316 break;
2317 default:
2318 LOG(FATAL) << "Unknown tag " << tag_;
2319 break;
2320 }
2321
2322 // Prepend tag, which may have been updated.
2323 JDWP::Set1(buf_, tag_);
2324 return false;
2325 }
Ian Rogers98379392014-02-24 16:53:16 -08002326 const ScopedObjectAccessUnchecked& soa_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002327 const JDWP::FrameId frame_id_;
2328 const int slot_;
2329 JDWP::JdwpTag tag_;
2330 uint8_t* const buf_;
2331 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002332 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002333 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002334
2335 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002336 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002337 Thread* thread;
2338 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2339 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002340 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002341 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002342 // TODO check thread is suspended by the debugger ?
Ian Rogers0399dde2012-06-06 17:09:28 -07002343 UniquePtr<Context> context(Context::Create());
Ian Rogers98379392014-02-24 16:53:16 -08002344 GetLocalVisitor visitor(soa, thread, context.get(), frame_id, slot, tag, buf, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002345 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002346 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002347}
2348
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002349JDWP::JdwpError Dbg::SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot,
2350 JDWP::JdwpTag tag, uint64_t value, size_t width) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002351 struct SetLocalVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08002352 SetLocalVisitor(Thread* thread, Context* context,
Ian Rogers0399dde2012-06-06 17:09:28 -07002353 JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value,
Ian Rogersca190662012-06-26 15:45:57 -07002354 size_t width)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002355 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08002356 : StackVisitor(thread, context),
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002357 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width),
2358 error_(JDWP::ERR_NONE) {}
Ian Rogersca190662012-06-26 15:45:57 -07002359
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002360 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2361 // annotalysis.
2362 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Ian Rogers0399dde2012-06-06 17:09:28 -07002363 if (GetFrameId() != frame_id_) {
2364 return true; // Not our frame, carry on.
2365 }
2366 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002367 // TODO: check slot is valid for this method or return INVALID_SLOT error.
Brian Carlstromea46f952013-07-30 01:26:50 -07002368 mirror::ArtMethod* m = GetMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002369 if (m->IsNative()) {
2370 // We can't read local value from native method.
2371 error_ = JDWP::ERR_OPAQUE_FRAME;
2372 return false;
2373 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002374 uint16_t reg = DemangleSlot(slot_, m);
2375
2376 switch (tag_) {
2377 case JDWP::JT_BOOLEAN:
2378 case JDWP::JT_BYTE:
2379 CHECK_EQ(width_, 1U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002380 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002381 break;
2382 case JDWP::JT_SHORT:
2383 case JDWP::JT_CHAR:
2384 CHECK_EQ(width_, 2U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002385 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002386 break;
2387 case JDWP::JT_INT:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002388 CHECK_EQ(width_, 4U);
2389 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
2390 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002391 case JDWP::JT_FLOAT:
2392 CHECK_EQ(width_, 4U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002393 SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002394 break;
2395 case JDWP::JT_ARRAY:
2396 case JDWP::JT_OBJECT:
2397 case JDWP::JT_STRING:
2398 {
2399 CHECK_EQ(width_, sizeof(JDWP::ObjectId));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002400 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_));
Elliott Hughes64f574f2013-02-20 14:57:12 -08002401 if (o == ObjectRegistry::kInvalidObject) {
Ian Rogers0399dde2012-06-06 17:09:28 -07002402 UNIMPLEMENTED(FATAL) << "return an error code when given an invalid object to store";
2403 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002404 SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), kReferenceVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002405 }
2406 break;
2407 case JDWP::JT_DOUBLE:
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002408 CHECK_EQ(width_, 8U);
2409 SetVReg(m, reg, static_cast<uint32_t>(value_), kDoubleLoVReg);
2410 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kDoubleHiVReg);
2411 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002412 case JDWP::JT_LONG:
2413 CHECK_EQ(width_, 8U);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002414 SetVReg(m, reg, static_cast<uint32_t>(value_), kLongLoVReg);
2415 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kLongHiVReg);
Ian Rogers0399dde2012-06-06 17:09:28 -07002416 break;
2417 default:
2418 LOG(FATAL) << "Unknown tag " << tag_;
2419 break;
2420 }
2421 return false;
2422 }
2423
2424 const JDWP::FrameId frame_id_;
2425 const int slot_;
2426 const JDWP::JdwpTag tag_;
2427 const uint64_t value_;
2428 const size_t width_;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002429 JDWP::JdwpError error_;
Ian Rogers0399dde2012-06-06 17:09:28 -07002430 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002431
2432 ScopedObjectAccessUnchecked soa(Thread::Current());
jeffhaoa77f0f62012-12-05 17:19:31 -08002433 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08002434 Thread* thread;
2435 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2436 if (error != JDWP::ERR_NONE) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002437 return error;
Elliott Hughes221229c2013-01-08 18:17:50 -08002438 }
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002439 // TODO check thread is suspended by the debugger ?
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002440 UniquePtr<Context> context(Context::Create());
Ian Rogers7a22fa62013-01-23 12:16:16 -08002441 SetLocalVisitor visitor(thread, context.get(), frame_id, slot, tag, value, width);
Ian Rogers0399dde2012-06-06 17:09:28 -07002442 visitor.WalkStack();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002443 return visitor.error_;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002444}
2445
Ian Rogersef7d42f2014-01-06 12:55:46 -08002446void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002447 int event_flags, const JValue* return_value) {
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002448 JDWP::JdwpLocation location;
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01002449 SetLocation(location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002450
Elliott Hughes64f574f2013-02-20 14:57:12 -08002451 // If 'this_object' isn't already in the registry, we know that we're not looking for it,
2452 // so there's no point adding it to the registry and burning through ids.
2453 JDWP::ObjectId this_id = 0;
2454 if (gRegistry->Contains(this_object)) {
2455 this_id = gRegistry->Add(this_object);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002456 }
Jeff Hao579b0242013-11-18 13:16:49 -08002457 gJdwpState->PostLocationEvent(&location, this_id, event_flags, return_value);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002458}
2459
Ian Rogers62d6c772013-02-27 08:32:07 -08002460void Dbg::PostException(Thread* thread, const ThrowLocation& throw_location,
Brian Carlstromea46f952013-07-30 01:26:50 -07002461 mirror::ArtMethod* catch_method,
Elliott Hughes64f574f2013-02-20 14:57:12 -08002462 uint32_t catch_dex_pc, mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002463 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002464 return;
2465 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002466
Ian Rogers62d6c772013-02-27 08:32:07 -08002467 JDWP::JdwpLocation jdwp_throw_location;
2468 SetLocation(jdwp_throw_location, throw_location.GetMethod(), throw_location.GetDexPc());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002469 JDWP::JdwpLocation catch_location;
Elliott Hughescaf76542012-06-28 16:08:22 -07002470 SetLocation(catch_location, catch_method, catch_dex_pc);
Elliott Hughesd07986f2011-12-06 18:27:45 -08002471
2472 // We need 'this' for InstanceOnly filters.
Ian Rogers62d6c772013-02-27 08:32:07 -08002473 JDWP::ObjectId this_id = gRegistry->Add(throw_location.GetThis());
Elliott Hughes64f574f2013-02-20 14:57:12 -08002474 JDWP::ObjectId exception_id = gRegistry->Add(exception_object);
2475 JDWP::RefTypeId exception_class_id = gRegistry->AddRefType(exception_object->GetClass());
Elliott Hughesd07986f2011-12-06 18:27:45 -08002476
Ian Rogers62d6c772013-02-27 08:32:07 -08002477 gJdwpState->PostException(&jdwp_throw_location, exception_id, exception_class_id, &catch_location,
2478 this_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002479}
2480
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002481void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002482 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002483 return;
2484 }
2485
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08002486 // OLD-TODO - we currently always send both "verified" and "prepared" since
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002487 // debuggers seem to like that. There might be some advantage to honesty,
2488 // since the class may not yet be verified.
2489 int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01002490 JDWP::JdwpTypeTag tag = GetTypeTag(c);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002491 gJdwpState->PostClassPrepare(tag, gRegistry->Add(c),
Ian Rogersdfb325e2013-10-30 01:00:44 -07002492 ClassHelper(c).GetDescriptor(), state);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002493}
2494
Ian Rogers62d6c772013-02-27 08:32:07 -08002495void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -08002496 mirror::ArtMethod* m, uint32_t dex_pc) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002497 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002498 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002499 }
2500
Elliott Hughes2aa2e392012-02-17 17:15:43 -08002501 int event_flags = 0;
2502
Elliott Hughes86964332012-02-15 19:37:42 -08002503 if (IsBreakpoint(m, dex_pc)) {
2504 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002505 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002506
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002507 // If the debugger is single-stepping one of our threads, check to
2508 // see if we're that thread and we've reached a step point.
2509 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
2510 DCHECK(single_step_control != nullptr);
2511 if (single_step_control->is_active) {
2512 CHECK(!m->IsNative());
2513 if (single_step_control->step_depth == JDWP::SD_INTO) {
2514 // Step into method calls. We break when the line number
2515 // or method pointer changes. If we're in SS_MIN mode, we
2516 // always stop.
2517 if (single_step_control->method != m) {
2518 event_flags |= kSingleStep;
2519 VLOG(jdwp) << "SS new method";
2520 } else if (single_step_control->step_size == JDWP::SS_MIN) {
2521 event_flags |= kSingleStep;
2522 VLOG(jdwp) << "SS new instruction";
2523 } else if (single_step_control->dex_pcs.find(dex_pc) == single_step_control->dex_pcs.end()) {
2524 event_flags |= kSingleStep;
2525 VLOG(jdwp) << "SS new line";
2526 }
2527 } else if (single_step_control->step_depth == JDWP::SD_OVER) {
2528 // Step over method calls. We break when the line number is
2529 // different and the frame depth is <= the original frame
2530 // depth. (We can't just compare on the method, because we
2531 // might get unrolled past it by an exception, and it's tricky
2532 // to identify recursion.)
2533
2534 int stack_depth = GetStackDepth(thread);
2535
2536 if (stack_depth < single_step_control->stack_depth) {
2537 // Popped up one or more frames, always trigger.
2538 event_flags |= kSingleStep;
2539 VLOG(jdwp) << "SS method pop";
2540 } else if (stack_depth == single_step_control->stack_depth) {
2541 // Same depth, see if we moved.
2542 if (single_step_control->step_size == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08002543 event_flags |= kSingleStep;
2544 VLOG(jdwp) << "SS new instruction";
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002545 } else if (single_step_control->dex_pcs.find(dex_pc) == single_step_control->dex_pcs.end()) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002546 event_flags |= kSingleStep;
2547 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002548 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002549 }
2550 } else {
2551 CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT);
2552 // Return from the current method. We break when the frame
2553 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002554
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002555 // This differs from the "method exit" break in that it stops
2556 // with the PC at the next instruction in the returned-to
2557 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08002558
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002559 int stack_depth = GetStackDepth(thread);
2560 if (stack_depth < single_step_control->stack_depth) {
2561 event_flags |= kSingleStep;
2562 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002563 }
2564 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002565 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002566
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002567 // If there's something interesting going on, see if it matches one
2568 // of the debugger filters.
2569 if (event_flags != 0) {
Jeff Hao579b0242013-11-18 13:16:49 -08002570 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, nullptr);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002571 }
2572}
2573
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002574// Process request while all mutator threads are suspended.
2575void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002576 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002577 switch (request.kind) {
2578 case DeoptimizationRequest::kNothing:
2579 LOG(WARNING) << "Ignoring empty deoptimization request.";
2580 break;
2581 case DeoptimizationRequest::kFullDeoptimization:
2582 VLOG(jdwp) << "Deoptimize the world";
2583 instrumentation->DeoptimizeEverything();
2584 break;
2585 case DeoptimizationRequest::kFullUndeoptimization:
2586 VLOG(jdwp) << "Undeoptimize the world";
2587 instrumentation->UndeoptimizeEverything();
2588 break;
2589 case DeoptimizationRequest::kSelectiveDeoptimization:
2590 VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.method);
2591 instrumentation->Deoptimize(request.method);
2592 break;
2593 case DeoptimizationRequest::kSelectiveUndeoptimization:
2594 VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.method);
2595 instrumentation->Undeoptimize(request.method);
2596 break;
2597 default:
2598 LOG(FATAL) << "Unsupported deoptimization request kind " << request.kind;
2599 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002600 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002601}
2602
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002603void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
2604 if (req.kind == DeoptimizationRequest::kNothing) {
2605 // Nothing to do.
2606 return;
2607 }
2608 MutexLock mu(Thread::Current(), *deoptimization_lock_);
2609 switch (req.kind) {
2610 case DeoptimizationRequest::kFullDeoptimization: {
2611 DCHECK(req.method == nullptr);
2612 if (full_deoptimization_event_count_ == 0) {
2613 VLOG(jdwp) << "Request full deoptimization";
2614 deoptimization_requests_.push_back(req);
2615 }
2616 ++full_deoptimization_event_count_;
2617 break;
2618 }
2619 case DeoptimizationRequest::kFullUndeoptimization: {
2620 DCHECK(req.method == nullptr);
2621 DCHECK_GT(full_deoptimization_event_count_, 0U);
2622 --full_deoptimization_event_count_;
2623 if (full_deoptimization_event_count_ == 0) {
2624 VLOG(jdwp) << "Request full undeoptimization";
2625 deoptimization_requests_.push_back(req);
2626 }
2627 break;
2628 }
2629 case DeoptimizationRequest::kSelectiveDeoptimization: {
2630 DCHECK(req.method != nullptr);
2631 VLOG(jdwp) << "Request deoptimization of " << PrettyMethod(req.method);
2632 deoptimization_requests_.push_back(req);
2633 break;
2634 }
2635 case DeoptimizationRequest::kSelectiveUndeoptimization: {
2636 DCHECK(req.method != nullptr);
2637 VLOG(jdwp) << "Request undeoptimization of " << PrettyMethod(req.method);
2638 deoptimization_requests_.push_back(req);
2639 break;
2640 }
2641 default: {
2642 LOG(FATAL) << "Unknown deoptimization request kind " << req.kind;
2643 break;
2644 }
2645 }
2646}
2647
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002648void Dbg::ManageDeoptimization() {
2649 Thread* const self = Thread::Current();
2650 {
2651 // Avoid suspend/resume if there is no pending request.
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002652 MutexLock mu(self, *deoptimization_lock_);
2653 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002654 return;
2655 }
2656 }
2657 CHECK_EQ(self->GetState(), kRunnable);
2658 self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization);
2659 // We need to suspend mutator threads first.
2660 Runtime* const runtime = Runtime::Current();
2661 runtime->GetThreadList()->SuspendAll();
2662 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01002663 {
2664 MutexLock mu(self, *deoptimization_lock_);
2665 for (const DeoptimizationRequest& request : deoptimization_requests_) {
2666 ProcessDeoptimizationRequest(request);
2667 }
2668 deoptimization_requests_.clear();
2669 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002670 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
2671 runtime->GetThreadList()->ResumeAll();
2672 self->TransitionFromSuspendedToRunnable();
2673}
2674
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002675static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m)
2676 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2677 MethodHelper mh(m);
2678 const DexFile::CodeItem* code_item = mh.GetCodeItem();
2679 if (code_item == nullptr) {
2680 // TODO We should not be asked to watch location in a native or abstract method so the code item
2681 // should never be null. We could just check we never encounter this case.
2682 return false;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002683 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002684 SirtRef<mirror::DexCache> dex_cache(self, mh.GetDexCache());
2685 SirtRef<mirror::ClassLoader> class_loader(self, mh.GetClassLoader());
2686 verifier::MethodVerifier verifier(&mh.GetDexFile(), &dex_cache, &class_loader,
2687 &mh.GetClassDef(), code_item, m->GetDexMethodIndex(), m,
2688 m->GetAccessFlags(), false, true);
2689 // Note: we don't need to verify the method.
2690 return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr);
2691}
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002692
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002693static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
2694 EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_) {
2695 for (const Breakpoint& breakpoint : gBreakpoints) {
2696 if (breakpoint.method == m) {
2697 return &breakpoint;
2698 }
2699 }
2700 return nullptr;
2701}
2702
2703// Sanity checks all existing breakpoints on the same method.
2704static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m, bool need_full_deoptimization)
2705 EXCLUSIVE_LOCKS_REQUIRED(Locks::breakpoint_lock_) {
2706 if (kIsDebugBuild) {
2707 for (const Breakpoint& breakpoint : gBreakpoints) {
2708 CHECK_EQ(need_full_deoptimization, breakpoint.need_full_deoptimization);
2709 }
2710 if (need_full_deoptimization) {
2711 // We should have deoptimized everything but not "selectively" deoptimized this method.
2712 CHECK(Runtime::Current()->GetInstrumentation()->AreAllMethodsDeoptimized());
2713 CHECK(!Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2714 } else {
2715 // We should have "selectively" deoptimized this method.
2716 // Note: while we have not deoptimized everything for this method, we may have done it for
2717 // another event.
2718 CHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2719 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002720 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002721}
2722
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002723// Installs a breakpoint at the specified location. Also indicates through the deoptimization
2724// request if we need to deoptimize.
2725void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
2726 Thread* const self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07002727 mirror::ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002728 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002729
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002730 MutexLock mu(self, *Locks::breakpoint_lock_);
2731 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
2732 bool need_full_deoptimization;
2733 if (existing_breakpoint == nullptr) {
2734 // There is no breakpoint on this method yet: we need to deoptimize. If this method may be
2735 // inlined, we deoptimize everything; otherwise we deoptimize only this method.
2736 need_full_deoptimization = IsMethodPossiblyInlined(self, m);
2737 if (need_full_deoptimization) {
2738 req->kind = DeoptimizationRequest::kFullDeoptimization;
2739 req->method = nullptr;
2740 } else {
2741 req->kind = DeoptimizationRequest::kSelectiveDeoptimization;
2742 req->method = m;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002743 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002744 } else {
2745 // There is at least one breakpoint for this method: we don't need to deoptimize.
2746 req->kind = DeoptimizationRequest::kNothing;
2747 req->method = nullptr;
2748
2749 need_full_deoptimization = existing_breakpoint->need_full_deoptimization;
2750 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002751 }
2752
Sebastien Hertza76a6d42014-03-20 16:40:17 +01002753 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, need_full_deoptimization));
2754 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
2755 << gBreakpoints[gBreakpoints.size() - 1];
2756}
2757
2758// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
2759// request if we need to undeoptimize.
2760void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
2761 mirror::ArtMethod* m = FromMethodId(location->method_id);
2762 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
2763
2764 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
2765 bool need_full_deoptimization = false;
2766 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
2767 if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == location->dex_pc) {
2768 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
2769 need_full_deoptimization = gBreakpoints[i].need_full_deoptimization;
2770 DCHECK_NE(need_full_deoptimization, Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
2771 gBreakpoints.erase(gBreakpoints.begin() + i);
2772 break;
2773 }
2774 }
2775 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
2776 if (existing_breakpoint == nullptr) {
2777 // There is no more breakpoint on this method: we need to undeoptimize.
2778 if (need_full_deoptimization) {
2779 // This method required full deoptimization: we need to undeoptimize everything.
2780 req->kind = DeoptimizationRequest::kFullUndeoptimization;
2781 req->method = nullptr;
2782 } else {
2783 // This method required selective deoptimization: we need to undeoptimize only that method.
2784 req->kind = DeoptimizationRequest::kSelectiveUndeoptimization;
2785 req->method = m;
2786 }
2787 } else {
2788 // There is at least one breakpoint for this method: we don't need to undeoptimize.
2789 req->kind = DeoptimizationRequest::kNothing;
2790 req->method = nullptr;
2791 SanityCheckExistingBreakpoints(m, need_full_deoptimization);
Elliott Hughes86964332012-02-15 19:37:42 -08002792 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002793}
2794
Jeff Hao449db332013-04-12 18:30:52 -07002795// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
2796// cause suspension if the thread is the current thread.
2797class ScopedThreadSuspension {
2798 public:
Ian Rogers33e95662013-05-20 20:29:14 -07002799 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002800 LOCKS_EXCLUDED(Locks::thread_list_lock_)
Ian Rogers33e95662013-05-20 20:29:14 -07002801 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
Jeff Hao449db332013-04-12 18:30:52 -07002802 thread_(NULL),
2803 error_(JDWP::ERR_NONE),
2804 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07002805 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07002806 ScopedObjectAccessUnchecked soa(self);
2807 {
2808 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2809 error_ = DecodeThread(soa, thread_id, thread_);
2810 }
2811 if (error_ == JDWP::ERR_NONE) {
2812 if (thread_ == soa.Self()) {
2813 self_suspend_ = true;
2814 } else {
2815 soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
2816 jobject thread_peer = gRegistry->GetJObject(thread_id);
2817 bool timed_out;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002818 Thread* suspended_thread = ThreadList::SuspendThreadByPeer(thread_peer, true, true,
2819 &timed_out);
Jeff Hao449db332013-04-12 18:30:52 -07002820 CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension);
2821 if (suspended_thread == NULL) {
2822 // Thread terminated from under us while suspending.
2823 error_ = JDWP::ERR_INVALID_THREAD;
2824 } else {
2825 CHECK_EQ(suspended_thread, thread_);
2826 other_suspend_ = true;
2827 }
2828 }
2829 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002830 }
Elliott Hughes86964332012-02-15 19:37:42 -08002831
Jeff Hao449db332013-04-12 18:30:52 -07002832 Thread* GetThread() const {
2833 return thread_;
2834 }
2835
2836 JDWP::JdwpError GetError() const {
2837 return error_;
2838 }
2839
2840 ~ScopedThreadSuspension() {
2841 if (other_suspend_) {
2842 Runtime::Current()->GetThreadList()->Resume(thread_, true);
2843 }
2844 }
2845
2846 private:
2847 Thread* thread_;
2848 JDWP::JdwpError error_;
2849 bool self_suspend_;
2850 bool other_suspend_;
2851};
2852
2853JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
2854 JDWP::JdwpStepDepth step_depth) {
2855 Thread* self = Thread::Current();
2856 ScopedThreadSuspension sts(self, thread_id);
2857 if (sts.GetError() != JDWP::ERR_NONE) {
2858 return sts.GetError();
2859 }
2860
Elliott Hughes2435a572012-02-17 16:07:41 -08002861 //
2862 // Work out what Method* we're in, the current line number, and how deep the stack currently
2863 // is for step-out.
2864 //
2865
Ian Rogers0399dde2012-06-06 17:09:28 -07002866 struct SingleStepStackVisitor : public StackVisitor {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002867 explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control,
2868 int32_t* line_number)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002869 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002870 : StackVisitor(thread, NULL), single_step_control_(single_step_control),
2871 line_number_(line_number) {
2872 DCHECK_EQ(single_step_control_, thread->GetSingleStepControl());
2873 single_step_control_->method = NULL;
2874 single_step_control_->stack_depth = 0;
Elliott Hughes86964332012-02-15 19:37:42 -08002875 }
Ian Rogersca190662012-06-26 15:45:57 -07002876
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002877 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2878 // annotalysis.
2879 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002880 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07002881 if (!m->IsRuntimeMethod()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002882 ++single_step_control_->stack_depth;
2883 if (single_step_control_->method == NULL) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08002884 mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002885 single_step_control_->method = m;
2886 *line_number_ = -1;
Elliott Hughes2435a572012-02-17 16:07:41 -08002887 if (dex_cache != NULL) {
Ian Rogers4445a7e2012-10-05 17:19:13 -07002888 const DexFile& dex_file = *dex_cache->GetDexFile();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002889 *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08002890 }
Elliott Hughes86964332012-02-15 19:37:42 -08002891 }
2892 }
Elliott Hughes530fa002012-03-12 11:44:49 -07002893 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08002894 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002895
2896 SingleStepControl* const single_step_control_;
2897 int32_t* const line_number_;
Elliott Hughes86964332012-02-15 19:37:42 -08002898 };
Jeff Hao449db332013-04-12 18:30:52 -07002899
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002900 Thread* const thread = sts.GetThread();
2901 SingleStepControl* const single_step_control = thread->GetSingleStepControl();
2902 DCHECK(single_step_control != nullptr);
2903 int32_t line_number = -1;
2904 SingleStepStackVisitor visitor(thread, single_step_control, &line_number);
Ian Rogers0399dde2012-06-06 17:09:28 -07002905 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08002906
Elliott Hughes2435a572012-02-17 16:07:41 -08002907 //
2908 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
2909 //
2910
2911 struct DebugCallbackContext {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002912 explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number)
2913 : single_step_control_(single_step_control), line_number_(line_number),
2914 last_pc_valid(false), last_pc(0) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002915 }
2916
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002917 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002918 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002919 if (static_cast<int32_t>(line_number) == context->line_number_) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002920 if (!context->last_pc_valid) {
2921 // Everything from this address until the next line change is ours.
2922 context->last_pc = address;
2923 context->last_pc_valid = true;
2924 }
2925 // Otherwise, if we're already in a valid range for this line,
2926 // just keep going (shouldn't really happen)...
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002927 } else if (context->last_pc_valid) { // and the line number is new
Elliott Hughes2435a572012-02-17 16:07:41 -08002928 // Add everything from the last entry up until here to the set
2929 for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002930 context->single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08002931 }
2932 context->last_pc_valid = false;
2933 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002934 return false; // There may be multiple entries for any given line.
Elliott Hughes2435a572012-02-17 16:07:41 -08002935 }
2936
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002937 ~DebugCallbackContext() {
Elliott Hughes2435a572012-02-17 16:07:41 -08002938 // If the line number was the last in the position table...
2939 if (last_pc_valid) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002940 size_t end = MethodHelper(single_step_control_->method).GetCodeItem()->insns_size_in_code_units_;
Elliott Hughes2435a572012-02-17 16:07:41 -08002941 for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002942 single_step_control_->dex_pcs.insert(dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08002943 }
2944 }
2945 }
2946
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002947 SingleStepControl* const single_step_control_;
2948 const int32_t line_number_;
Elliott Hughes2435a572012-02-17 16:07:41 -08002949 bool last_pc_valid;
2950 uint32_t last_pc;
2951 };
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002952 single_step_control->dex_pcs.clear();
Ian Rogersef7d42f2014-01-06 12:55:46 -08002953 mirror::ArtMethod* m = single_step_control->method;
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002954 if (!m->IsNative()) {
2955 DebugCallbackContext context(single_step_control, line_number);
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08002956 MethodHelper mh(m);
2957 mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(),
2958 DebugCallbackContext::Callback, NULL, &context);
2959 }
Elliott Hughes2435a572012-02-17 16:07:41 -08002960
2961 //
2962 // Everything else...
2963 //
2964
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002965 single_step_control->step_size = step_size;
2966 single_step_control->step_depth = step_depth;
2967 single_step_control->is_active = true;
Elliott Hughes86964332012-02-15 19:37:42 -08002968
Elliott Hughes2435a572012-02-17 16:07:41 -08002969 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002970 VLOG(jdwp) << "Single-step thread: " << *thread;
2971 VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size;
2972 VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth;
2973 VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method);
2974 VLOG(jdwp) << "Single-step current line: " << line_number;
2975 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth;
Elliott Hughes2435a572012-02-17 16:07:41 -08002976 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002977 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 -08002978 VLOG(jdwp) << StringPrintf(" %#x", *it);
Elliott Hughes2435a572012-02-17 16:07:41 -08002979 }
2980 }
2981
2982 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002983}
2984
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002985void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
2986 ScopedObjectAccessUnchecked soa(Thread::Current());
2987 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2988 Thread* thread;
2989 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01002990 if (error == JDWP::ERR_NONE) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01002991 SingleStepControl* single_step_control = thread->GetSingleStepControl();
2992 DCHECK(single_step_control != nullptr);
2993 single_step_control->is_active = false;
2994 single_step_control->dex_pcs.clear();
2995 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002996}
2997
Elliott Hughes45651fd2012-02-21 15:48:20 -08002998static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
2999 switch (tag) {
3000 default:
3001 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
3002
3003 // Primitives.
3004 case JDWP::JT_BYTE: return 'B';
3005 case JDWP::JT_CHAR: return 'C';
3006 case JDWP::JT_FLOAT: return 'F';
3007 case JDWP::JT_DOUBLE: return 'D';
3008 case JDWP::JT_INT: return 'I';
3009 case JDWP::JT_LONG: return 'J';
3010 case JDWP::JT_SHORT: return 'S';
3011 case JDWP::JT_VOID: return 'V';
3012 case JDWP::JT_BOOLEAN: return 'Z';
3013
3014 // Reference types.
3015 case JDWP::JT_ARRAY:
3016 case JDWP::JT_OBJECT:
3017 case JDWP::JT_STRING:
3018 case JDWP::JT_THREAD:
3019 case JDWP::JT_THREAD_GROUP:
3020 case JDWP::JT_CLASS_LOADER:
3021 case JDWP::JT_CLASS_OBJECT:
3022 return 'L';
3023 }
3024}
3025
Elliott Hughes88d63092013-01-09 09:55:54 -08003026JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3027 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003028 uint32_t arg_count, uint64_t* arg_values,
3029 JDWP::JdwpTag* arg_types, uint32_t options,
3030 JDWP::JdwpTag* pResultTag, uint64_t* pResultValue,
3031 JDWP::ObjectId* pExceptionId) {
Elliott Hughesd07986f2011-12-06 18:27:45 -08003032 ThreadList* thread_list = Runtime::Current()->GetThreadList();
3033
3034 Thread* targetThread = NULL;
3035 DebugInvokeReq* req = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003036 Thread* self = Thread::Current();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003037 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003038 ScopedObjectAccessUnchecked soa(self);
Ian Rogers50b35e22012-10-04 10:09:15 -07003039 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Elliott Hughes221229c2013-01-08 18:17:50 -08003040 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread);
3041 if (error != JDWP::ERR_NONE) {
3042 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3043 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003044 }
3045 req = targetThread->GetInvokeReq();
3046 if (!req->ready) {
3047 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3048 return JDWP::ERR_INVALID_THREAD;
3049 }
3050
3051 /*
3052 * We currently have a bug where we don't successfully resume the
3053 * target thread if the suspend count is too deep. We're expected to
3054 * require one "resume" for each "suspend", but when asked to execute
3055 * a method we have to resume fully and then re-suspend it back to the
3056 * same level. (The easiest way to cause this is to type "suspend"
3057 * multiple times in jdb.)
3058 *
3059 * It's unclear what this means when the event specifies "resume all"
3060 * and some threads are suspended more deeply than others. This is
3061 * a rare problem, so for now we just prevent it from hanging forever
3062 * by rejecting the method invocation request. Without this, we will
3063 * be stuck waiting on a suspended thread.
3064 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003065 int suspend_count;
3066 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003067 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003068 suspend_count = targetThread->GetSuspendCount();
3069 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003070 if (suspend_count > 1) {
3071 LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003072 return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003073 }
3074
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003075 JDWP::JdwpError status;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003076 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003077 if (receiver == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003078 return JDWP::ERR_INVALID_OBJECT;
3079 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003080
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003081 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id);
Elliott Hughes64f574f2013-02-20 14:57:12 -08003082 if (thread == ObjectRegistry::kInvalidObject) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003083 return JDWP::ERR_INVALID_OBJECT;
3084 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003085 // TODO: check that 'thread' is actually a java.lang.Thread!
3086
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003087 mirror::Class* c = DecodeClass(class_id, status);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003088 if (c == NULL) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003089 return status;
3090 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003091
Brian Carlstromea46f952013-07-30 01:26:50 -07003092 mirror::ArtMethod* m = FromMethodId(method_id);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003093 if (m->IsStatic() != (receiver == NULL)) {
3094 return JDWP::ERR_INVALID_METHODID;
3095 }
3096 if (m->IsStatic()) {
3097 if (m->GetDeclaringClass() != c) {
3098 return JDWP::ERR_INVALID_METHODID;
3099 }
3100 } else {
3101 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3102 return JDWP::ERR_INVALID_METHODID;
3103 }
3104 }
3105
3106 // Check the argument list matches the method.
3107 MethodHelper mh(m);
3108 if (mh.GetShortyLength() - 1 != arg_count) {
3109 return JDWP::ERR_ILLEGAL_ARGUMENT;
3110 }
3111 const char* shorty = mh.GetShorty();
Elliott Hughes09201632013-04-15 15:50:07 -07003112 const DexFile::TypeList* types = mh.GetParameterTypeList();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003113 for (size_t i = 0; i < arg_count; ++i) {
3114 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
3115 return JDWP::ERR_ILLEGAL_ARGUMENT;
3116 }
Elliott Hughes09201632013-04-15 15:50:07 -07003117
3118 if (shorty[i + 1] == 'L') {
3119 // Did we really get an argument of an appropriate reference type?
3120 mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_);
3121 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i]);
3122 if (argument == ObjectRegistry::kInvalidObject) {
3123 return JDWP::ERR_INVALID_OBJECT;
3124 }
Sebastien Hertz0630ab52013-11-28 18:53:35 +01003125 if (argument != NULL && !argument->InstanceOf(parameter_type)) {
Elliott Hughes09201632013-04-15 15:50:07 -07003126 return JDWP::ERR_ILLEGAL_ARGUMENT;
3127 }
3128
3129 // Turn the on-the-wire ObjectId into a jobject.
3130 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3131 v.l = gRegistry->GetJObject(arg_values[i]);
3132 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003133 }
3134
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003135 req->receiver = receiver;
3136 req->thread = thread;
3137 req->klass = c;
3138 req->method = m;
3139 req->arg_count = arg_count;
3140 req->arg_values = arg_values;
3141 req->options = options;
3142 req->invoke_needed = true;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003143 }
3144
3145 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
3146 // away we're sitting high and dry -- but we must release this before the ResumeAllThreads
3147 // call, and it's unwise to hold it during WaitForSuspend.
3148
3149 {
3150 /*
3151 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
Elliott Hughes81ff3182012-03-23 20:35:56 -07003152 * so we can suspend for a GC if the invoke request causes us to
Elliott Hughesd07986f2011-12-06 18:27:45 -08003153 * run out of memory. It's also a good idea to change it before locking
3154 * the invokeReq mutex, although that should never be held for long.
3155 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003156 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003157
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003158 VLOG(jdwp) << " Transferring control to event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003159 {
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003160 MutexLock mu(self, req->lock);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003161
3162 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003163 VLOG(jdwp) << " Resuming all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003164 thread_list->UndoDebuggerSuspensions();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003165 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003166 VLOG(jdwp) << " Resuming event thread only";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003167 thread_list->Resume(targetThread, true);
3168 }
3169
3170 // Wait for the request to finish executing.
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003171 while (req->invoke_needed) {
3172 req->cond.Wait(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003173 }
3174 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003175 VLOG(jdwp) << " Control has returned from event thread";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003176
3177 /* wait for thread to re-suspend itself */
Brian Carlstromdf629502013-07-17 22:39:56 -07003178 SuspendThread(thread_id, false /* request_suspension */);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003179 self->TransitionFromSuspendedToRunnable();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003180 }
3181
3182 /*
3183 * Suspend the threads. We waited for the target thread to suspend
3184 * itself, so all we need to do is suspend the others.
3185 *
3186 * The suspendAllThreads() call will double-suspend the event thread,
3187 * so we want to resume the target thread once to keep the books straight.
3188 */
3189 if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003190 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003191 VLOG(jdwp) << " Suspending all threads";
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003192 thread_list->SuspendAllForDebugger();
3193 self->TransitionFromSuspendedToRunnable();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003194 VLOG(jdwp) << " Resuming event thread to balance the count";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003195 thread_list->Resume(targetThread, true);
3196 }
3197
3198 // Copy the result.
3199 *pResultTag = req->result_tag;
3200 if (IsPrimitiveTag(req->result_tag)) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003201 *pResultValue = req->result_value.GetJ();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003202 } else {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003203 *pResultValue = gRegistry->Add(req->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003204 }
3205 *pExceptionId = req->exception;
3206 return req->error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003207}
3208
3209void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003210 ScopedObjectAccess soa(Thread::Current());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003211
Elliott Hughes81ff3182012-03-23 20:35:56 -07003212 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003213 // to preserve that across the method invocation.
Ian Rogers62d6c772013-02-27 08:32:07 -08003214 SirtRef<mirror::Object> old_throw_this_object(soa.Self(), NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -07003215 SirtRef<mirror::ArtMethod> old_throw_method(soa.Self(), NULL);
Ian Rogers62d6c772013-02-27 08:32:07 -08003216 SirtRef<mirror::Throwable> old_exception(soa.Self(), NULL);
3217 uint32_t old_throw_dex_pc;
3218 {
3219 ThrowLocation old_throw_location;
3220 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location);
3221 old_throw_this_object.reset(old_throw_location.GetThis());
3222 old_throw_method.reset(old_throw_location.GetMethod());
3223 old_exception.reset(old_exception_obj);
3224 old_throw_dex_pc = old_throw_location.GetDexPc();
3225 soa.Self()->ClearException();
3226 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003227
3228 // Translate the method through the vtable, unless the debugger wants to suppress it.
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003229 SirtRef<mirror::ArtMethod> m(soa.Self(), pReq->method);
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003230 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != NULL) {
Sebastien Hertz83a47d82014-03-20 09:57:40 +01003231 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.get());
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003232 if (actual_method != m.get()) {
3233 VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.get()) << " to " << PrettyMethod(actual_method);
3234 m.reset(actual_method);
Elliott Hughes45651fd2012-02-21 15:48:20 -08003235 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08003236 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003237 VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.get())
Sebastien Hertzd38667a2013-11-25 15:43:54 +01003238 << " receiver=" << pReq->receiver
3239 << " arg_count=" << pReq->arg_count;
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003240 CHECK(m.get() != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003241
3242 CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
3243
Sebastien Hertz83a47d82014-03-20 09:57:40 +01003244 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.get()),
Ian Rogers53b8b092014-03-13 23:45:53 -07003245 reinterpret_cast<jvalue*>(pReq->arg_values));
Elliott Hughesd07986f2011-12-06 18:27:45 -08003246
Ian Rogers62d6c772013-02-27 08:32:07 -08003247 mirror::Throwable* exception = soa.Self()->GetException(NULL);
3248 soa.Self()->ClearException();
3249 pReq->exception = gRegistry->Add(exception);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003250 pReq->result_tag = BasicTagFromDescriptor(MethodHelper(m.get()).GetShorty());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003251 if (pReq->exception != 0) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003252 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception
3253 << " " << exception->Dump();
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003254 pReq->result_value.SetJ(0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003255 } else if (pReq->result_tag == JDWP::JT_OBJECT) {
3256 /* if no exception thrown, examine object result more closely */
Ian Rogers98379392014-02-24 16:53:16 -08003257 JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003258 if (new_tag != pReq->result_tag) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003259 VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003260 pReq->result_tag = new_tag;
3261 }
3262
3263 /*
3264 * Register the object. We don't actually need an ObjectId yet,
3265 * but we do need to be sure that the GC won't move or discard the
3266 * object when we switch out of RUNNING. The ObjectId conversion
3267 * will add the object to the "do not touch" list.
3268 *
3269 * We can't use the "tracked allocation" mechanism here because
3270 * the object is going to be handed off to a different thread.
3271 */
Elliott Hughesf24d3ce2012-04-11 17:43:37 -07003272 gRegistry->Add(pReq->result_value.GetL());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003273 }
3274
3275 if (old_exception.get() != NULL) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003276 ThrowLocation gc_safe_throw_location(old_throw_this_object.get(), old_throw_method.get(),
3277 old_throw_dex_pc);
3278 soa.Self()->SetException(gc_safe_throw_location, old_exception.get());
Elliott Hughesd07986f2011-12-06 18:27:45 -08003279 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003280}
3281
Elliott Hughesd07986f2011-12-06 18:27:45 -08003282/*
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003283 * "request" contains a full JDWP packet, possibly with multiple chunks. We
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003284 * need to process each, accumulate the replies, and ship the whole thing
3285 * back.
3286 *
3287 * Returns "true" if we have a reply. The reply buffer is newly allocated,
3288 * and includes the chunk type/length, followed by the data.
3289 *
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08003290 * OLD-TODO: we currently assume that the request and reply include a single
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003291 * chunk. If this becomes inconvenient we will need to adapt.
3292 */
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003293bool Dbg::DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003294 Thread* self = Thread::Current();
3295 JNIEnv* env = self->GetJniEnv();
3296
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003297 uint32_t type = request.ReadUnsigned32("type");
3298 uint32_t length = request.ReadUnsigned32("length");
3299
3300 // Create a byte[] corresponding to 'request'.
3301 size_t request_length = request.size();
3302 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length));
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003303 if (dataArray.get() == NULL) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003304 LOG(WARNING) << "byte[] allocation failed: " << request_length;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003305 env->ExceptionClear();
3306 return false;
3307 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003308 env->SetByteArrayRegion(dataArray.get(), 0, request_length, reinterpret_cast<const jbyte*>(request.data()));
3309 request.Skip(request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003310
3311 // Run through and find all chunks. [Currently just find the first.]
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003312 ScopedByteArrayRO contents(env, dataArray.get());
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003313 if (length != request_length) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08003314 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003315 return false;
3316 }
3317
3318 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Elliott Hugheseac76672012-05-24 21:56:51 -07003319 ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3320 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003321 type, dataArray.get(), 0, length));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003322 if (env->ExceptionCheck()) {
3323 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type);
3324 env->ExceptionDescribe();
3325 env->ExceptionClear();
3326 return false;
3327 }
3328
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003329 if (chunk.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003330 return false;
3331 }
3332
3333 /*
3334 * Pull the pieces out of the chunk. We copy the results into a
3335 * newly-allocated buffer that the caller can free. We don't want to
3336 * continue using the Chunk object because nothing has a reference to it.
3337 *
3338 * We could avoid this by returning type/data/offset/length and having
3339 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07003340 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003341 * if we have responses for multiple chunks.
3342 *
3343 * So we're pretty much stuck with copying data around multiple times.
3344 */
Elliott Hugheseac76672012-05-24 21:56:51 -07003345 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 -08003346 jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
Elliott Hugheseac76672012-05-24 21:56:51 -07003347 length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
Elliott Hugheseac76672012-05-24 21:56:51 -07003348 type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003349
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003350 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 -07003351 if (length == 0 || replyData.get() == NULL) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003352 return false;
3353 }
3354
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003355 const int kChunkHdrLen = 8;
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003356 uint8_t* reply = new uint8_t[length + kChunkHdrLen];
3357 if (reply == NULL) {
3358 LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen);
3359 return false;
3360 }
Elliott Hughesf7c3b662011-10-27 12:04:56 -07003361 JDWP::Set4BE(reply + 0, type);
3362 JDWP::Set4BE(reply + 4, length);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003363 env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003364
3365 *pReplyBuf = reply;
3366 *pReplyLen = length + kChunkHdrLen;
3367
Elliott Hughes4b9702c2013-02-20 18:13:24 -08003368 VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07003369 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003370}
3371
Elliott Hughesa2155262011-11-16 16:26:58 -08003372void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003373 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07003374
3375 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07003376 if (self->GetState() != kRunnable) {
3377 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
3378 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07003379 }
3380
3381 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07003382 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07003383 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
3384 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
3385 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07003386 if (env->ExceptionCheck()) {
3387 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
3388 env->ExceptionDescribe();
3389 env->ExceptionClear();
3390 }
3391}
3392
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003393void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003394 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003395}
3396
3397void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08003398 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07003399 gDdmThreadNotification = false;
3400}
3401
3402/*
Elliott Hughes82188472011-11-07 18:11:48 -08003403 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07003404 *
3405 * Because we broadcast the full set of threads when the notifications are
3406 * first enabled, it's possible for "thread" to be actively executing.
3407 */
Elliott Hughes82188472011-11-07 18:11:48 -08003408void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003409 if (!gDdmThreadNotification) {
3410 return;
3411 }
3412
Elliott Hughes82188472011-11-07 18:11:48 -08003413 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07003414 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003415 JDWP::Set4BE(&buf[0], t->GetThreadId());
Elliott Hughes47fce012011-10-25 18:37:19 -07003416 Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf);
Elliott Hughes82188472011-11-07 18:11:48 -08003417 } else {
3418 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003419 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003420 SirtRef<mirror::String> name(soa.Self(), t->GetThreadName(soa));
Elliott Hughes82188472011-11-07 18:11:48 -08003421 size_t char_count = (name.get() != NULL) ? name->GetLength() : 0;
jeffhao725a9572012-11-13 18:20:12 -08003422 const jchar* chars = (name.get() != NULL) ? name->GetCharArray()->GetData() : NULL;
Elliott Hughes82188472011-11-07 18:11:48 -08003423
Elliott Hughes21f32d72011-11-09 17:44:13 -08003424 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003425 JDWP::Append4BE(bytes, t->GetThreadId());
Elliott Hughes545a0642011-11-08 19:10:03 -08003426 JDWP::AppendUtf16BE(bytes, chars, char_count);
Elliott Hughes21f32d72011-11-09 17:44:13 -08003427 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
3428 Dbg::DdmSendChunk(type, bytes);
Elliott Hughes47fce012011-10-25 18:37:19 -07003429 }
3430}
3431
Elliott Hughes47fce012011-10-25 18:37:19 -07003432void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003433 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07003434 gDdmThreadNotification = enable;
3435 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003436 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
3437 // see a suspension in progress and block until that ends. They then post their own start
3438 // notification.
3439 SuspendVM();
3440 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07003441 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003442 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003443 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003444 threads = Runtime::Current()->GetThreadList()->GetList();
3445 }
3446 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003447 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07003448 for (Thread* thread : threads) {
3449 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003450 }
3451 }
3452 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07003453 }
3454}
3455
Elliott Hughesa2155262011-11-16 16:26:58 -08003456void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003457 if (IsDebuggerActive()) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07003458 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogerscfaa4552012-11-26 21:00:08 -08003459 JDWP::ObjectId id = gRegistry->Add(t->GetPeer());
Elliott Hughes82188472011-11-07 18:11:48 -08003460 gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003461 }
Elliott Hughes82188472011-11-07 18:11:48 -08003462 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07003463}
3464
3465void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003466 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07003467}
3468
3469void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003470 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003471}
3472
Elliott Hughes82188472011-11-07 18:11:48 -08003473void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003474 CHECK(buf != NULL);
3475 iovec vec[1];
3476 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf));
3477 vec[0].iov_len = byte_count;
3478 Dbg::DdmSendChunkV(type, vec, 1);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003479}
3480
Elliott Hughes21f32d72011-11-09 17:44:13 -08003481void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) {
3482 DdmSendChunk(type, bytes.size(), &bytes[0]);
3483}
3484
Brian Carlstromf5293522013-07-19 00:24:00 -07003485void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Elliott Hughes3bb81562011-10-21 18:52:59 -07003486 if (gJdwpState == NULL) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003487 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
Elliott Hughes3bb81562011-10-21 18:52:59 -07003488 } else {
Elliott Hughescccd84f2011-12-05 16:51:54 -08003489 gJdwpState->DdmSendChunkV(type, iov, iov_count);
Elliott Hughes3bb81562011-10-21 18:52:59 -07003490 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003491}
3492
Elliott Hughes767a1472011-10-26 18:49:02 -07003493int Dbg::DdmHandleHpifChunk(HpifWhen when) {
3494 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07003495 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07003496 return true;
3497 }
3498
3499 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
3500 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
3501 return false;
3502 }
3503
3504 gDdmHpifWhen = when;
3505 return true;
3506}
3507
3508bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
3509 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
3510 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
3511 return false;
3512 }
3513
3514 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
3515 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
3516 return false;
3517 }
3518
3519 if (native) {
3520 gDdmNhsgWhen = when;
3521 gDdmNhsgWhat = what;
3522 } else {
3523 gDdmHpsgWhen = when;
3524 gDdmHpsgWhat = what;
3525 }
3526 return true;
3527}
3528
Elliott Hughes7162ad92011-10-27 14:08:42 -07003529void Dbg::DdmSendHeapInfo(HpifWhen reason) {
3530 // If there's a one-shot 'when', reset it.
3531 if (reason == gDdmHpifWhen) {
3532 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
3533 gDdmHpifWhen = HPIF_WHEN_NEVER;
3534 }
3535 }
3536
3537 /*
3538 * Chunk HPIF (client --> server)
3539 *
3540 * Heap Info. General information about the heap,
3541 * suitable for a summary display.
3542 *
3543 * [u4]: number of heaps
3544 *
3545 * For each heap:
3546 * [u4]: heap ID
3547 * [u8]: timestamp in ms since Unix epoch
3548 * [u1]: capture reason (same as 'when' value from server)
3549 * [u4]: max heap size in bytes (-Xmx)
3550 * [u4]: current heap size in bytes
3551 * [u4]: current number of bytes allocated
3552 * [u4]: current number of objects allocated
3553 */
3554 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07003555 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08003556 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08003557 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003558 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08003559 JDWP::Append8BE(bytes, MilliTime());
3560 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003561 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
3562 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003563 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
3564 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08003565 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
3566 Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes);
Elliott Hughes767a1472011-10-26 18:49:02 -07003567}
3568
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003569enum HpsgSolidity {
3570 SOLIDITY_FREE = 0,
3571 SOLIDITY_HARD = 1,
3572 SOLIDITY_SOFT = 2,
3573 SOLIDITY_WEAK = 3,
3574 SOLIDITY_PHANTOM = 4,
3575 SOLIDITY_FINALIZABLE = 5,
3576 SOLIDITY_SWEEP = 6,
3577};
3578
3579enum HpsgKind {
3580 KIND_OBJECT = 0,
3581 KIND_CLASS_OBJECT = 1,
3582 KIND_ARRAY_1 = 2,
3583 KIND_ARRAY_2 = 3,
3584 KIND_ARRAY_4 = 4,
3585 KIND_ARRAY_8 = 5,
3586 KIND_UNKNOWN = 6,
3587 KIND_NATIVE = 7,
3588};
3589
3590#define HPSG_PARTIAL (1<<7)
3591#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
3592
Ian Rogers30fab402012-01-23 15:43:46 -08003593class HeapChunkContext {
3594 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003595 // Maximum chunk size. Obtain this from the formula:
3596 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
3597 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08003598 : buf_(16384 - 16),
3599 type_(0),
3600 merge_(merge) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003601 Reset();
3602 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08003603 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003604 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08003605 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003606 }
3607 }
3608
3609 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08003610 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003611 Flush();
3612 }
3613 }
3614
3615 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08003616 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003617 return;
3618 }
3619
3620 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003621 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
3622 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003623
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003624 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
3625 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003626 // [u4]: length of piece, in allocation units
3627 // 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 -08003628 pieceLenField_ = p_;
3629 JDWP::Write4BE(&p_, 0x55555555);
3630 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003631 }
3632
Ian Rogersb726dcb2012-09-05 08:57:23 -07003633 void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersd636b062013-01-18 17:51:18 -08003634 if (pieceLenField_ == NULL) {
3635 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
3636 CHECK(needHeader_);
3637 return;
3638 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003639 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08003640 CHECK_LE(&buf_[0], pieceLenField_);
3641 CHECK_LE(pieceLenField_, p_);
3642 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003643
Ian Rogers30fab402012-01-23 15:43:46 -08003644 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003645 Reset();
3646 }
3647
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003648 static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003649 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3650 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003651 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08003652 }
3653
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003654 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08003655 enum { ALLOCATION_UNIT_SIZE = 8 };
3656
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003657 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08003658 p_ = &buf_[0];
Ian Rogers15bf2d32012-08-28 17:33:04 -07003659 startOfNextMemoryChunk_ = NULL;
Ian Rogers30fab402012-01-23 15:43:46 -08003660 totalAllocationUnits_ = 0;
3661 needHeader_ = true;
3662 pieceLenField_ = NULL;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003663 }
3664
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003665 void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003666 SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_,
3667 Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08003668 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
3669 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07003670 if (used_bytes == 0) {
3671 if (start == NULL) {
3672 // Reset for start of new heap.
3673 startOfNextMemoryChunk_ = NULL;
3674 Flush();
3675 }
3676 // Only process in use memory so that free region information
3677 // also includes dlmalloc book keeping.
Elliott Hughesa2155262011-11-16 16:26:58 -08003678 return;
Elliott Hughesa2155262011-11-16 16:26:58 -08003679 }
3680
Ian Rogers15bf2d32012-08-28 17:33:04 -07003681 /* If we're looking at the native heap, we'll just return
3682 * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks
3683 */
3684 bool native = type_ == CHUNK_TYPE("NHSG");
3685
3686 if (startOfNextMemoryChunk_ != NULL) {
3687 // Transmit any pending free memory. Native free memory of
3688 // over kMaxFreeLen could be because of the use of mmaps, so
3689 // don't report. If not free memory then start a new segment.
3690 bool flush = true;
3691 if (start > startOfNextMemoryChunk_) {
3692 const size_t kMaxFreeLen = 2 * kPageSize;
3693 void* freeStart = startOfNextMemoryChunk_;
3694 void* freeEnd = start;
Brian Carlstrom2d888622013-07-18 17:02:00 -07003695 size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart);
Ian Rogers15bf2d32012-08-28 17:33:04 -07003696 if (!native || freeLen < kMaxFreeLen) {
3697 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen);
3698 flush = false;
3699 }
3700 }
3701 if (flush) {
3702 startOfNextMemoryChunk_ = NULL;
3703 Flush();
3704 }
3705 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08003706 mirror::Object* obj = reinterpret_cast<mirror::Object*>(start);
Elliott Hughesa2155262011-11-16 16:26:58 -08003707
3708 // Determine the type of this chunk.
3709 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
3710 // If it's the same, we should combine them.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003711 uint8_t state = ExamineObject(obj, native);
3712 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
3713 // allocation then the first sizeof(size_t) may belong to it.
3714 const size_t dlMallocOverhead = sizeof(size_t);
3715 AppendChunk(state, start, used_bytes + dlMallocOverhead);
Brian Carlstrom2d888622013-07-18 17:02:00 -07003716 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + dlMallocOverhead;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003717 }
Elliott Hughesa2155262011-11-16 16:26:58 -08003718
Ian Rogers15bf2d32012-08-28 17:33:04 -07003719 void AppendChunk(uint8_t state, void* ptr, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003720 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003721 // Make sure there's enough room left in the buffer.
3722 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
3723 // 17 bytes for any header.
3724 size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17;
3725 size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3726 if (bytesLeft < needed) {
3727 Flush();
3728 }
3729
3730 bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]);
3731 if (bytesLeft < needed) {
3732 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
3733 << needed << " bytes)";
3734 return;
3735 }
3736 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08003737 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07003738 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
3739 totalAllocationUnits_ += length;
3740 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08003741 *p_++ = state | HPSG_PARTIAL;
3742 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07003743 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08003744 }
Ian Rogers30fab402012-01-23 15:43:46 -08003745 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003746 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003747 }
3748
Ian Rogersef7d42f2014-01-06 12:55:46 -08003749 uint8_t ExamineObject(mirror::Object* o, bool is_native_heap)
3750 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003751 if (o == NULL) {
3752 return HPSG_STATE(SOLIDITY_FREE, 0);
3753 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003754
Elliott Hughesa2155262011-11-16 16:26:58 -08003755 // It's an allocated chunk. Figure out what it is.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003756
Elliott Hughesa2155262011-11-16 16:26:58 -08003757 // If we're looking at the native heap, we'll just return
3758 // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003759 if (is_native_heap) {
Elliott Hughesa2155262011-11-16 16:26:58 -08003760 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
3761 }
3762
Ian Rogers5bfa60f2012-09-02 21:17:56 -07003763 if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003764 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003765 }
3766
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003767 mirror::Class* c = o->GetClass();
Elliott Hughesa2155262011-11-16 16:26:58 -08003768 if (c == NULL) {
3769 // The object was probably just created but hasn't been initialized yet.
3770 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3771 }
3772
Mathieu Chartier590fee92013-09-13 13:46:47 -07003773 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07003774 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08003775 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
3776 }
3777
3778 if (c->IsClassClass()) {
3779 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
3780 }
3781
3782 if (c->IsArrayClass()) {
3783 if (o->IsObjectArray()) {
3784 return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3785 }
3786 switch (c->GetComponentSize()) {
3787 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
3788 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
3789 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
3790 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
3791 }
3792 }
3793
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003794 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
3795 }
3796
Ian Rogers30fab402012-01-23 15:43:46 -08003797 std::vector<uint8_t> buf_;
3798 uint8_t* p_;
3799 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07003800 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08003801 size_t totalAllocationUnits_;
3802 uint32_t type_;
3803 bool merge_;
3804 bool needHeader_;
3805
Elliott Hughesa2155262011-11-16 16:26:58 -08003806 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
3807};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003808
3809void Dbg::DdmSendHeapSegments(bool native) {
3810 Dbg::HpsgWhen when;
3811 Dbg::HpsgWhat what;
3812 if (!native) {
3813 when = gDdmHpsgWhen;
3814 what = gDdmHpsgWhat;
3815 } else {
3816 when = gDdmNhsgWhen;
3817 what = gDdmNhsgWhat;
3818 }
3819 if (when == HPSG_WHEN_NEVER) {
3820 return;
3821 }
3822
3823 // Figure out what kind of chunks we'll be sending.
3824 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what);
3825
3826 // First, send a heap start chunk.
3827 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003828 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003829 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id);
3830
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003831 Thread* self = Thread::Current();
3832
3833 // To allow the Walk/InspectAll() below to exclusively-lock the
3834 // mutator lock, temporarily release the shared access to the
3835 // mutator lock here by transitioning to the suspended state.
3836 Locks::mutator_lock_->AssertSharedHeld(self);
3837 self->TransitionFromRunnableToSuspended(kSuspended);
3838
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003839 // Send a series of heap segment chunks.
Elliott Hughesa2155262011-11-16 16:26:58 -08003840 HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native);
3841 if (native) {
Ian Rogers1d54e732013-05-02 21:10:01 -07003842 dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003843 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07003844 gc::Heap* heap = Runtime::Current()->GetHeap();
3845 const std::vector<gc::space::ContinuousSpace*>& spaces = heap->GetContinuousSpaces();
Ian Rogers1d54e732013-05-02 21:10:01 -07003846 typedef std::vector<gc::space::ContinuousSpace*>::const_iterator It;
3847 for (It cur = spaces.begin(), end = spaces.end(); cur != end; ++cur) {
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003848 if ((*cur)->IsMallocSpace()) {
3849 (*cur)->AsMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07003850 }
3851 }
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07003852 // Walk the large objects, these are not in the AllocSpace.
3853 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08003854 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003855
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07003856 // Shared-lock the mutator lock back.
3857 self->TransitionFromSuspendedToRunnable();
3858 Locks::mutator_lock_->AssertSharedHeld(self);
3859
Elliott Hughes6a5bd492011-10-28 14:33:57 -07003860 // Finally, send a heap end chunk.
3861 Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id);
Elliott Hughes767a1472011-10-26 18:49:02 -07003862}
3863
Elliott Hughesb1a58792013-07-11 18:10:58 -07003864static size_t GetAllocTrackerMax() {
3865#ifdef HAVE_ANDROID_OS
3866 // Check whether there's a system property overriding the number of records.
3867 const char* propertyName = "dalvik.vm.allocTrackerMax";
3868 char allocRecordMaxString[PROPERTY_VALUE_MAX];
3869 if (property_get(propertyName, allocRecordMaxString, "") > 0) {
3870 char* end;
3871 size_t value = strtoul(allocRecordMaxString, &end, 10);
3872 if (*end != '\0') {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003873 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3874 << "' --- invalid";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003875 return kDefaultNumAllocRecords;
3876 }
3877 if (!IsPowerOfTwo(value)) {
Ruben Brunk3e47a742013-09-09 17:56:07 -07003878 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString
3879 << "' --- not power of two";
Elliott Hughesb1a58792013-07-11 18:10:58 -07003880 return kDefaultNumAllocRecords;
3881 }
3882 return value;
3883 }
3884#endif
3885 return kDefaultNumAllocRecords;
3886}
3887
Elliott Hughes545a0642011-11-08 19:10:03 -08003888void Dbg::SetAllocTrackingEnabled(bool enabled) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003889 if (enabled) {
Sebastien Hertzb98063a2014-03-26 10:57:20 +01003890 {
3891 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
3892 if (recent_allocation_records_ == NULL) {
3893 alloc_record_max_ = GetAllocTrackerMax();
3894 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
3895 << kMaxAllocRecordStackDepth << " frames, taking "
3896 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
3897 alloc_record_head_ = alloc_record_count_ = 0;
3898 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
3899 CHECK(recent_allocation_records_ != NULL);
3900 }
Elliott Hughes545a0642011-11-08 19:10:03 -08003901 }
Ian Rogersfa824272013-11-05 16:12:57 -08003902 Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Elliott Hughes545a0642011-11-08 19:10:03 -08003903 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08003904 Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Sebastien Hertzb98063a2014-03-26 10:57:20 +01003905 {
3906 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
3907 delete[] recent_allocation_records_;
3908 recent_allocation_records_ = NULL;
3909 }
Elliott Hughes545a0642011-11-08 19:10:03 -08003910 }
3911}
3912
Ian Rogers0399dde2012-06-06 17:09:28 -07003913struct AllocRecordStackVisitor : public StackVisitor {
Ian Rogers7a22fa62013-01-23 12:16:16 -08003914 AllocRecordStackVisitor(Thread* thread, AllocRecord* record)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003915 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers7a22fa62013-01-23 12:16:16 -08003916 : StackVisitor(thread, NULL), record(record), depth(0) {}
Elliott Hughes545a0642011-11-08 19:10:03 -08003917
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003918 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3919 // annotalysis.
3920 bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes545a0642011-11-08 19:10:03 -08003921 if (depth >= kMaxAllocRecordStackDepth) {
Elliott Hughes530fa002012-03-12 11:44:49 -07003922 return false;
Elliott Hughes545a0642011-11-08 19:10:03 -08003923 }
Brian Carlstromea46f952013-07-30 01:26:50 -07003924 mirror::ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003925 if (!m->IsRuntimeMethod()) {
3926 record->stack[depth].method = m;
3927 record->stack[depth].dex_pc = GetDexPc();
Elliott Hughes530fa002012-03-12 11:44:49 -07003928 ++depth;
Elliott Hughes545a0642011-11-08 19:10:03 -08003929 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003930 return true;
Elliott Hughes545a0642011-11-08 19:10:03 -08003931 }
3932
3933 ~AllocRecordStackVisitor() {
3934 // Clear out any unused stack trace elements.
3935 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
3936 record->stack[depth].method = NULL;
Ian Rogers0399dde2012-06-06 17:09:28 -07003937 record->stack[depth].dex_pc = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08003938 }
3939 }
3940
3941 AllocRecord* record;
3942 size_t depth;
3943};
3944
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003945void Dbg::RecordAllocation(mirror::Class* type, size_t byte_count) {
Elliott Hughes545a0642011-11-08 19:10:03 -08003946 Thread* self = Thread::Current();
3947 CHECK(self != NULL);
3948
Ian Rogers719d1a32014-03-06 12:13:39 -08003949 MutexLock mu(self, *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08003950 if (recent_allocation_records_ == NULL) {
3951 return;
3952 }
3953
3954 // Advance and clip.
Ian Rogers719d1a32014-03-06 12:13:39 -08003955 if (++alloc_record_head_ == alloc_record_max_) {
3956 alloc_record_head_ = 0;
Elliott Hughes545a0642011-11-08 19:10:03 -08003957 }
3958
3959 // Fill in the basics.
Ian Rogers719d1a32014-03-06 12:13:39 -08003960 AllocRecord* record = &recent_allocation_records_[alloc_record_head_];
Elliott Hughes545a0642011-11-08 19:10:03 -08003961 record->type = type;
3962 record->byte_count = byte_count;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07003963 record->thin_lock_id = self->GetThreadId();
Elliott Hughes545a0642011-11-08 19:10:03 -08003964
3965 // Fill in the stack trace.
Ian Rogers7a22fa62013-01-23 12:16:16 -08003966 AllocRecordStackVisitor visitor(self, record);
Ian Rogers0399dde2012-06-06 17:09:28 -07003967 visitor.WalkStack();
Elliott Hughes545a0642011-11-08 19:10:03 -08003968
Ian Rogers719d1a32014-03-06 12:13:39 -08003969 if (alloc_record_count_ < alloc_record_max_) {
3970 ++alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003971 }
3972}
3973
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003974// Returns the index of the head element.
3975//
3976// We point at the most-recently-written record, so if gAllocRecordCount is 1
3977// we want to use the current element. Take "head+1" and subtract count
3978// from it.
3979//
3980// We need to handle underflow in our circular buffer, so we add
Elliott Hughesb1a58792013-07-11 18:10:58 -07003981// gAllocRecordMax and then mask it back down.
Ian Rogers719d1a32014-03-06 12:13:39 -08003982size_t Dbg::HeadIndex() {
3983 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
3984 (Dbg::alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08003985}
3986
3987void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003988 ScopedObjectAccess soa(Thread::Current());
Ian Rogers719d1a32014-03-06 12:13:39 -08003989 MutexLock mu(soa.Self(), *alloc_tracker_lock_);
Elliott Hughes545a0642011-11-08 19:10:03 -08003990 if (recent_allocation_records_ == NULL) {
3991 LOG(INFO) << "Not recording tracked allocations";
3992 return;
3993 }
3994
3995 // "i" is the head of the list. We want to start at the end of the
3996 // list and move forward to the tail.
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07003997 size_t i = HeadIndex();
Ian Rogers719d1a32014-03-06 12:13:39 -08003998 size_t count = alloc_record_count_;
Elliott Hughes545a0642011-11-08 19:10:03 -08003999
Ian Rogers719d1a32014-03-06 12:13:39 -08004000 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")";
Elliott Hughes545a0642011-11-08 19:10:03 -08004001 while (count--) {
4002 AllocRecord* record = &recent_allocation_records_[i];
4003
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004004 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->thin_lock_id, record->byte_count)
Elliott Hughes545a0642011-11-08 19:10:03 -08004005 << PrettyClass(record->type);
4006
4007 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08004008 mirror::ArtMethod* m = record->stack[stack_frame].method;
Elliott Hughes545a0642011-11-08 19:10:03 -08004009 if (m == NULL) {
4010 break;
4011 }
4012 LOG(INFO) << " " << PrettyMethod(m) << " line " << record->stack[stack_frame].LineNumber();
4013 }
4014
4015 // pause periodically to help logcat catch up
4016 if ((count % 5) == 0) {
4017 usleep(40000);
4018 }
4019
Ian Rogers719d1a32014-03-06 12:13:39 -08004020 i = (i + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004021 }
4022}
4023
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -07004024void Dbg::UpdateObjectPointers(IsMarkedCallback* callback, void* arg) {
Ian Rogers719d1a32014-03-06 12:13:39 -08004025 if (recent_allocation_records_ != nullptr) {
4026 MutexLock mu(Thread::Current(), *alloc_tracker_lock_);
4027 size_t i = HeadIndex();
4028 size_t count = alloc_record_count_;
4029 while (count--) {
4030 AllocRecord* record = &recent_allocation_records_[i];
4031 DCHECK(record != nullptr);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -07004032 record->UpdateObjectPointers(callback, arg);
Ian Rogers719d1a32014-03-06 12:13:39 -08004033 i = (i + 1) & (alloc_record_max_ - 1);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08004034 }
4035 }
4036 if (gRegistry != nullptr) {
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -07004037 gRegistry->UpdateObjectPointers(callback, arg);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08004038 }
4039}
4040
4041void Dbg::AllowNewObjectRegistryObjects() {
4042 if (gRegistry != nullptr) {
4043 gRegistry->AllowNewObjects();
4044 }
4045}
4046
4047void Dbg::DisallowNewObjectRegistryObjects() {
4048 if (gRegistry != nullptr) {
4049 gRegistry->DisallowNewObjects();
4050 }
4051}
4052
Elliott Hughes545a0642011-11-08 19:10:03 -08004053class StringTable {
4054 public:
4055 StringTable() {
4056 }
4057
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004058 void Add(const char* s) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004059 table_.insert(s);
4060 }
4061
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004062 size_t IndexOf(const char* s) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004063 auto it = table_.find(s);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004064 if (it == table_.end()) {
4065 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4066 }
4067 return std::distance(table_.begin(), it);
Elliott Hughes545a0642011-11-08 19:10:03 -08004068 }
4069
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004070 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004071 return table_.size();
4072 }
4073
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004074 void WriteTo(std::vector<uint8_t>& bytes) const {
Mathieu Chartier02e25112013-08-14 16:14:24 -07004075 for (const std::string& str : table_) {
4076 const char* s = str.c_str();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004077 size_t s_len = CountModifiedUtf8Chars(s);
4078 UniquePtr<uint16_t> s_utf16(new uint16_t[s_len]);
4079 ConvertModifiedUtf8ToUtf16(s_utf16.get(), s);
4080 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004081 }
4082 }
4083
4084 private:
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004085 std::set<std::string> table_;
Elliott Hughes545a0642011-11-08 19:10:03 -08004086 DISALLOW_COPY_AND_ASSIGN(StringTable);
4087};
4088
4089/*
4090 * The data we send to DDMS contains everything we have recorded.
4091 *
4092 * Message header (all values big-endian):
4093 * (1b) message header len (to allow future expansion); includes itself
4094 * (1b) entry header len
4095 * (1b) stack frame len
4096 * (2b) number of entries
4097 * (4b) offset to string table from start of message
4098 * (2b) number of class name strings
4099 * (2b) number of method name strings
4100 * (2b) number of source file name strings
4101 * For each entry:
4102 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08004103 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08004104 * (2b) allocated object's class name index
4105 * (1b) stack depth
4106 * For each stack frame:
4107 * (2b) method's class name
4108 * (2b) method name
4109 * (2b) method source file
4110 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
4111 * (xb) class name strings
4112 * (xb) method name strings
4113 * (xb) source file strings
4114 *
4115 * As with other DDM traffic, strings are sent as a 4-byte length
4116 * followed by UTF-16 data.
4117 *
4118 * We send up 16-bit unsigned indexes into string tables. In theory there
Elliott Hughesb1a58792013-07-11 18:10:58 -07004119 * can be (kMaxAllocRecordStackDepth * gAllocRecordMax) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08004120 * each table, but in practice there should be far fewer.
4121 *
4122 * The chief reason for using a string table here is to keep the size of
4123 * the DDMS message to a minimum. This is partly to make the protocol
4124 * efficient, but also because we have to form the whole thing up all at
4125 * once in a memory buffer.
4126 *
4127 * We use separate string tables for class names, method names, and source
4128 * files to keep the indexes small. There will generally be no overlap
4129 * between the contents of these tables.
4130 */
4131jbyteArray Dbg::GetRecentAllocations() {
4132 if (false) {
4133 DumpRecentAllocations();
4134 }
4135
Ian Rogers50b35e22012-10-04 10:09:15 -07004136 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08004137 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004138 {
Ian Rogers719d1a32014-03-06 12:13:39 -08004139 MutexLock mu(self, *alloc_tracker_lock_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004140 //
4141 // Part 1: generate string tables.
4142 //
4143 StringTable class_names;
4144 StringTable method_names;
4145 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08004146
Ian Rogers719d1a32014-03-06 12:13:39 -08004147 int count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004148 int idx = HeadIndex();
4149 while (count--) {
4150 AllocRecord* record = &recent_allocation_records_[idx];
Elliott Hughes545a0642011-11-08 19:10:03 -08004151
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004152 class_names.Add(ClassHelper(record->type).GetDescriptor());
Elliott Hughes545a0642011-11-08 19:10:03 -08004153
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004154 MethodHelper mh;
4155 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07004156 mirror::ArtMethod* m = record->stack[i].method;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004157 if (m != NULL) {
4158 mh.ChangeMethod(m);
4159 class_names.Add(mh.GetDeclaringClassDescriptor());
4160 method_names.Add(mh.GetName());
4161 filenames.Add(mh.GetDeclaringClassSourceFile());
4162 }
4163 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004164
Ian Rogers719d1a32014-03-06 12:13:39 -08004165 idx = (idx + 1) & (alloc_record_max_ - 1);
Elliott Hughes545a0642011-11-08 19:10:03 -08004166 }
4167
Ian Rogers719d1a32014-03-06 12:13:39 -08004168 LOG(INFO) << "allocation records: " << alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004169
4170 //
4171 // Part 2: Generate the output and store it in the buffer.
4172 //
4173
4174 // (1b) message header len (to allow future expansion); includes itself
4175 // (1b) entry header len
4176 // (1b) stack frame len
4177 const int kMessageHeaderLen = 15;
4178 const int kEntryHeaderLen = 9;
4179 const int kStackFrameLen = 8;
4180 JDWP::Append1BE(bytes, kMessageHeaderLen);
4181 JDWP::Append1BE(bytes, kEntryHeaderLen);
4182 JDWP::Append1BE(bytes, kStackFrameLen);
4183
4184 // (2b) number of entries
4185 // (4b) offset to string table from start of message
4186 // (2b) number of class name strings
4187 // (2b) number of method name strings
4188 // (2b) number of source file name strings
Ian Rogers719d1a32014-03-06 12:13:39 -08004189 JDWP::Append2BE(bytes, alloc_record_count_);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004190 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004191 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004192 JDWP::Append2BE(bytes, class_names.Size());
4193 JDWP::Append2BE(bytes, method_names.Size());
4194 JDWP::Append2BE(bytes, filenames.Size());
4195
Ian Rogers719d1a32014-03-06 12:13:39 -08004196 count = alloc_record_count_;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004197 idx = HeadIndex();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004198 while (count--) {
4199 // For each entry:
4200 // (4b) total allocation size
4201 // (2b) thread id
4202 // (2b) allocated object's class name index
4203 // (1b) stack depth
4204 AllocRecord* record = &recent_allocation_records_[idx];
4205 size_t stack_depth = record->GetDepth();
Mathieu Chartier590fee92013-09-13 13:46:47 -07004206 ClassHelper kh(record->type);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004207 size_t allocated_object_class_name_index = class_names.IndexOf(kh.GetDescriptor());
4208 JDWP::Append4BE(bytes, record->byte_count);
4209 JDWP::Append2BE(bytes, record->thin_lock_id);
4210 JDWP::Append2BE(bytes, allocated_object_class_name_index);
4211 JDWP::Append1BE(bytes, stack_depth);
4212
4213 MethodHelper mh;
4214 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
4215 // For each stack frame:
4216 // (2b) method's class name
4217 // (2b) method name
4218 // (2b) method source file
4219 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
4220 mh.ChangeMethod(record->stack[stack_frame].method);
4221 size_t class_name_index = class_names.IndexOf(mh.GetDeclaringClassDescriptor());
4222 size_t method_name_index = method_names.IndexOf(mh.GetName());
4223 size_t file_name_index = filenames.IndexOf(mh.GetDeclaringClassSourceFile());
4224 JDWP::Append2BE(bytes, class_name_index);
4225 JDWP::Append2BE(bytes, method_name_index);
4226 JDWP::Append2BE(bytes, file_name_index);
4227 JDWP::Append2BE(bytes, record->stack[stack_frame].LineNumber());
4228 }
4229
Ian Rogers719d1a32014-03-06 12:13:39 -08004230 idx = (idx + 1) & (alloc_record_max_ - 1);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07004231 }
4232
4233 // (xb) class name strings
4234 // (xb) method name strings
4235 // (xb) source file strings
4236 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
4237 class_names.WriteTo(bytes);
4238 method_names.WriteTo(bytes);
4239 filenames.WriteTo(bytes);
Elliott Hughes545a0642011-11-08 19:10:03 -08004240 }
Ian Rogers50b35e22012-10-04 10:09:15 -07004241 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08004242 jbyteArray result = env->NewByteArray(bytes.size());
4243 if (result != NULL) {
4244 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
4245 }
4246 return result;
4247}
4248
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004249} // namespace art